@pelatform/ui 1.5.2 → 1.5.4
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/css/components/image-input.css +1 -1
- package/dist/animation.cjs +8 -192
- package/dist/animation.js +83 -267
- package/dist/base.cjs +5 -5
- package/dist/base.js +5 -5
- package/dist/{chunk-TYEFU7IG.js → chunk-CTHRAJQZ.js} +446 -279
- package/dist/chunk-D373YKDA.js +196 -0
- package/dist/{chunk-DBE4IGCP.cjs → chunk-HILACSFA.cjs} +368 -201
- package/dist/{chunk-S3QFGYE6.js → chunk-UYMAUGVA.js} +12 -0
- package/dist/{chunk-KNS6QRVB.cjs → chunk-WI36EFUS.cjs} +14 -2
- package/dist/chunk-ZBO5IAMA.cjs +196 -0
- package/dist/{components-BgbIL9EW.d.cts → components-CidsRcc3.d.cts} +4 -0
- package/dist/{components-BgbIL9EW.d.ts → components-CidsRcc3.d.ts} +4 -0
- package/dist/components.cjs +500 -100
- package/dist/components.d.cts +172 -4
- package/dist/components.d.ts +172 -4
- package/dist/components.js +698 -298
- package/dist/default.cjs +184 -333
- package/dist/default.js +712 -861
- package/dist/index.cjs +5 -9
- package/dist/index.d.cts +22 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.js +4 -8
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use client';
|
|
3
3
|
|
|
4
|
+
import {
|
|
5
|
+
HoverBackground
|
|
6
|
+
} from "./chunk-D373YKDA.js";
|
|
4
7
|
import {
|
|
5
8
|
Alert,
|
|
6
9
|
AlertDialog,
|
|
@@ -19,6 +22,8 @@ import {
|
|
|
19
22
|
AvatarIndicator,
|
|
20
23
|
AvatarStatus,
|
|
21
24
|
Badge,
|
|
25
|
+
Card,
|
|
26
|
+
CardContent,
|
|
22
27
|
Collapsible,
|
|
23
28
|
CollapsibleContent,
|
|
24
29
|
CollapsibleTrigger,
|
|
@@ -33,12 +38,14 @@ import {
|
|
|
33
38
|
DropdownMenu,
|
|
34
39
|
DropdownMenuContent,
|
|
35
40
|
DropdownMenuItem,
|
|
41
|
+
DropdownMenuRadioGroup,
|
|
42
|
+
DropdownMenuRadioItem,
|
|
36
43
|
DropdownMenuSub,
|
|
37
44
|
DropdownMenuSubContent,
|
|
38
45
|
DropdownMenuSubTrigger,
|
|
39
46
|
DropdownMenuTrigger,
|
|
40
47
|
TooltipProvider
|
|
41
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-CTHRAJQZ.js";
|
|
42
49
|
import {
|
|
43
50
|
Button,
|
|
44
51
|
Input
|
|
@@ -48,8 +55,10 @@ import {
|
|
|
48
55
|
useRecaptchaV2
|
|
49
56
|
} from "./chunk-CD2BCCQU.js";
|
|
50
57
|
import {
|
|
58
|
+
getAssetsUrl,
|
|
59
|
+
getFlagUrl,
|
|
51
60
|
googleTrackEvent
|
|
52
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-UYMAUGVA.js";
|
|
53
62
|
import {
|
|
54
63
|
cn
|
|
55
64
|
} from "./chunk-RQHJBTEU.js";
|
|
@@ -181,7 +190,7 @@ function ScreenLoader({
|
|
|
181
190
|
"div",
|
|
182
191
|
{
|
|
183
192
|
className: cn(
|
|
184
|
-
"fixed inset-0 z-
|
|
193
|
+
"fixed inset-0 z-500 flex flex-col items-center justify-center gap-2 bg-background transition-opacity duration-700 ease-in-out",
|
|
185
194
|
className
|
|
186
195
|
),
|
|
187
196
|
role: "status",
|
|
@@ -195,19 +204,24 @@ function ScreenLoader({
|
|
|
195
204
|
);
|
|
196
205
|
}
|
|
197
206
|
|
|
198
|
-
// src/components/layout/
|
|
199
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
200
|
-
function
|
|
201
|
-
return
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
207
|
+
// src/components/layout/auth.tsx
|
|
208
|
+
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
209
|
+
function LayoutAuth({ children, className, logo }) {
|
|
210
|
+
return /* @__PURE__ */ jsxs4(
|
|
211
|
+
"div",
|
|
212
|
+
{
|
|
213
|
+
className: cn("flex min-h-screen grow flex-col items-center justify-center p-4", className),
|
|
214
|
+
children: [
|
|
215
|
+
logo && /* @__PURE__ */ jsx4("div", { className: "m-5", children: logo }),
|
|
216
|
+
/* @__PURE__ */ jsx4(Card, { className: "w-full max-w-md", children: /* @__PURE__ */ jsx4(CardContent, { className: "p-6", children }) })
|
|
217
|
+
]
|
|
218
|
+
}
|
|
219
|
+
);
|
|
206
220
|
}
|
|
207
221
|
|
|
208
222
|
// src/components/layout/grid.tsx
|
|
209
223
|
import { useId } from "react";
|
|
210
|
-
import { jsx as jsx5, jsxs as
|
|
224
|
+
import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
211
225
|
function Grid({
|
|
212
226
|
cellSize = 12,
|
|
213
227
|
strokeWidth = 1,
|
|
@@ -215,7 +229,7 @@ function Grid({
|
|
|
215
229
|
className
|
|
216
230
|
}) {
|
|
217
231
|
const id = useId();
|
|
218
|
-
return /* @__PURE__ */
|
|
232
|
+
return /* @__PURE__ */ jsxs5(
|
|
219
233
|
"svg",
|
|
220
234
|
{
|
|
221
235
|
className: cn("pointer-events-none absolute inset-0 text-foreground/10", className),
|
|
@@ -248,17 +262,169 @@ function Grid({
|
|
|
248
262
|
);
|
|
249
263
|
}
|
|
250
264
|
|
|
265
|
+
// src/components/layout/blank.tsx
|
|
266
|
+
import { Fragment, jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
267
|
+
function LayoutBlank({ children, footer, className, logo, logoHref }) {
|
|
268
|
+
return /* @__PURE__ */ jsxs6(Fragment, { children: [
|
|
269
|
+
/* @__PURE__ */ jsx6("div", { className: "absolute inset-0 isolate overflow-hidden bg-background", children: /* @__PURE__ */ jsx6(
|
|
270
|
+
"div",
|
|
271
|
+
{
|
|
272
|
+
className: cn(
|
|
273
|
+
"-translate-x-1/2 absolute inset-y-0 start-1/2 w-[1200px]",
|
|
274
|
+
"mask-intersect mask-[linear-gradient(black,transparent_320px),linear-gradient(90deg,transparent,black_5%,black_95%,transparent)]"
|
|
275
|
+
),
|
|
276
|
+
children: /* @__PURE__ */ jsx6(Grid, { cellSize: 60, patternOffset: [0.75, 0], className: "text-foreground/15" })
|
|
277
|
+
}
|
|
278
|
+
) }),
|
|
279
|
+
/* @__PURE__ */ jsxs6(
|
|
280
|
+
"div",
|
|
281
|
+
{
|
|
282
|
+
className: cn(
|
|
283
|
+
"relative flex min-h-screen w-full flex-col items-center justify-between",
|
|
284
|
+
className
|
|
285
|
+
),
|
|
286
|
+
children: [
|
|
287
|
+
/* @__PURE__ */ jsx6("div", { className: "grow basis-0", children: logo && /* @__PURE__ */ jsx6("div", { className: "pt-4", children: /* @__PURE__ */ jsx6("a", { href: logoHref ?? "#", target: "_blank", className: "block", children: logo }) }) }),
|
|
288
|
+
/* @__PURE__ */ jsx6("div", { className: "w-full max-w-4xl px-4 py-16", children }),
|
|
289
|
+
/* @__PURE__ */ jsx6("div", { className: "grow basis-0", children: footer })
|
|
290
|
+
]
|
|
291
|
+
}
|
|
292
|
+
)
|
|
293
|
+
] });
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// src/components/layout/body.tsx
|
|
297
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
298
|
+
function useMode(slug) {
|
|
299
|
+
return Array.isArray(slug) && slug.length > 0 ? slug[0] : void 0;
|
|
300
|
+
}
|
|
301
|
+
function Body({ slug, children, className }) {
|
|
302
|
+
const mode = useMode(slug);
|
|
303
|
+
return /* @__PURE__ */ jsx7("body", { className: cn(mode, className), children });
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
// src/components/layout/comingsoon.tsx
|
|
307
|
+
import { jsx as jsx8, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
308
|
+
function ComingSoon({ className, title, description }) {
|
|
309
|
+
return /* @__PURE__ */ jsx8("div", { className: cn("h-[calc(100vh-54px)] w-full overflow-hidden", className), children: /* @__PURE__ */ jsx8(
|
|
310
|
+
HoverBackground,
|
|
311
|
+
{
|
|
312
|
+
colors: {
|
|
313
|
+
background: "bg-gradient-to-br from-black via-gray-900 to-zinc-900",
|
|
314
|
+
objects: [
|
|
315
|
+
"bg-emerald-500/30",
|
|
316
|
+
"bg-teal-500/30",
|
|
317
|
+
"bg-green-500/30",
|
|
318
|
+
"bg-lime-500/30",
|
|
319
|
+
"bg-cyan-500/30",
|
|
320
|
+
"bg-blue-500/30"
|
|
321
|
+
],
|
|
322
|
+
glow: "shadow-emerald-400/70"
|
|
323
|
+
},
|
|
324
|
+
objectCount: 8,
|
|
325
|
+
children: /* @__PURE__ */ jsxs7("div", { className: "flex h-full flex-col items-center justify-center space-y-4 text-center", children: [
|
|
326
|
+
title && /* @__PURE__ */ jsx8("h2", { className: "font-bold text-4xl text-white/90", children: title }),
|
|
327
|
+
description && /* @__PURE__ */ jsx8("p", { className: "max-w-md text-emerald-100/80 text-lg", children: description })
|
|
328
|
+
] })
|
|
329
|
+
}
|
|
330
|
+
) });
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// src/components/layout/error.tsx
|
|
334
|
+
import { jsx as jsx9, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
335
|
+
function ErrorComponents({
|
|
336
|
+
className,
|
|
337
|
+
type = "default",
|
|
338
|
+
textTitle,
|
|
339
|
+
textSubtitle,
|
|
340
|
+
button
|
|
341
|
+
}) {
|
|
342
|
+
if (type === "404") {
|
|
343
|
+
return /* @__PURE__ */ jsxs8("div", { className: cn("flex h-[95%] grow flex-col items-center justify-center", className), children: [
|
|
344
|
+
/* @__PURE__ */ jsxs8("div", { className: "mb-10", children: [
|
|
345
|
+
/* @__PURE__ */ jsx9(
|
|
346
|
+
"img",
|
|
347
|
+
{
|
|
348
|
+
src: getAssetsUrl("media/illustrations/19.svg"),
|
|
349
|
+
className: "max-h-40 dark:hidden",
|
|
350
|
+
alt: "illustrations"
|
|
351
|
+
}
|
|
352
|
+
),
|
|
353
|
+
/* @__PURE__ */ jsx9(
|
|
354
|
+
"img",
|
|
355
|
+
{
|
|
356
|
+
src: getAssetsUrl("media/illustrations/19-dark.svg"),
|
|
357
|
+
className: "hidden max-h-40 dark:block",
|
|
358
|
+
alt: "illustrations"
|
|
359
|
+
}
|
|
360
|
+
)
|
|
361
|
+
] }),
|
|
362
|
+
/* @__PURE__ */ jsx9(Badge, { variant: "destructive", appearance: "outline", className: "mb-3", children: "404 Error" }),
|
|
363
|
+
/* @__PURE__ */ jsx9("h3", { className: "mb-2 text-center font-semibold text-2xl text-foreground", children: textTitle }),
|
|
364
|
+
/* @__PURE__ */ jsx9("div", { className: "mb-10 text-center text-base text-secondary-foreground", children: textSubtitle })
|
|
365
|
+
] });
|
|
366
|
+
}
|
|
367
|
+
if (type === "500") {
|
|
368
|
+
return /* @__PURE__ */ jsxs8("div", { className: cn("flex h-[95%] grow flex-col items-center justify-center", className), children: [
|
|
369
|
+
/* @__PURE__ */ jsxs8("div", { className: "mb-10", children: [
|
|
370
|
+
/* @__PURE__ */ jsx9(
|
|
371
|
+
"img",
|
|
372
|
+
{
|
|
373
|
+
src: getAssetsUrl("media/illustrations/20.svg"),
|
|
374
|
+
className: "max-h-40 dark:hidden",
|
|
375
|
+
alt: "illustrations"
|
|
376
|
+
}
|
|
377
|
+
),
|
|
378
|
+
/* @__PURE__ */ jsx9(
|
|
379
|
+
"img",
|
|
380
|
+
{
|
|
381
|
+
src: getAssetsUrl("media/illustrations/20-dark.svg"),
|
|
382
|
+
className: "hidden max-h-40 dark:block",
|
|
383
|
+
alt: "illustrations"
|
|
384
|
+
}
|
|
385
|
+
)
|
|
386
|
+
] }),
|
|
387
|
+
/* @__PURE__ */ jsx9(Badge, { variant: "destructive", appearance: "outline", className: "mb-3", children: "500 Error" }),
|
|
388
|
+
/* @__PURE__ */ jsx9("h3", { className: "mb-2 text-center font-semibold text-2xl text-foreground", children: textTitle }),
|
|
389
|
+
/* @__PURE__ */ jsx9("div", { className: "mb-10 text-center text-base text-secondary-foreground", children: textSubtitle }),
|
|
390
|
+
button
|
|
391
|
+
] });
|
|
392
|
+
}
|
|
393
|
+
return /* @__PURE__ */ jsxs8("div", { className: cn("flex h-[95%] grow flex-col items-center justify-center", className), children: [
|
|
394
|
+
/* @__PURE__ */ jsxs8("div", { className: "mb-10", children: [
|
|
395
|
+
/* @__PURE__ */ jsx9(
|
|
396
|
+
"img",
|
|
397
|
+
{
|
|
398
|
+
src: getAssetsUrl("media/illustrations/29.svg"),
|
|
399
|
+
className: "max-h-40 dark:hidden",
|
|
400
|
+
alt: "illustrations"
|
|
401
|
+
}
|
|
402
|
+
),
|
|
403
|
+
/* @__PURE__ */ jsx9(
|
|
404
|
+
"img",
|
|
405
|
+
{
|
|
406
|
+
src: getAssetsUrl("media/illustrations/29-dark.svg"),
|
|
407
|
+
className: "hidden max-h-40 dark:block",
|
|
408
|
+
alt: "illustrations"
|
|
409
|
+
}
|
|
410
|
+
)
|
|
411
|
+
] }),
|
|
412
|
+
/* @__PURE__ */ jsx9("h3", { className: "mb-2 text-center font-semibold text-2xl text-foreground", children: textTitle }),
|
|
413
|
+
/* @__PURE__ */ jsx9("div", { className: "mb-10 text-center text-base text-secondary-foreground", children: textSubtitle })
|
|
414
|
+
] });
|
|
415
|
+
}
|
|
416
|
+
|
|
251
417
|
// src/components/layout/section.tsx
|
|
252
418
|
import { PlusIcon } from "lucide-react";
|
|
253
419
|
|
|
254
420
|
// src/components/ui/grid-background.tsx
|
|
255
|
-
import { jsx as
|
|
421
|
+
import { jsx as jsx10, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
256
422
|
var GridBackground = ({
|
|
257
423
|
columns = 4,
|
|
258
424
|
className = "",
|
|
259
425
|
maxWidthClass = "grid-container"
|
|
260
426
|
}) => {
|
|
261
|
-
const columnElements = Array.from({ length: columns }, (_, i) => /* @__PURE__ */
|
|
427
|
+
const columnElements = Array.from({ length: columns }, (_, i) => /* @__PURE__ */ jsx10(
|
|
262
428
|
"div",
|
|
263
429
|
{
|
|
264
430
|
className: "h-full w-px",
|
|
@@ -270,13 +436,13 @@ var GridBackground = ({
|
|
|
270
436
|
},
|
|
271
437
|
i
|
|
272
438
|
));
|
|
273
|
-
return /* @__PURE__ */
|
|
439
|
+
return /* @__PURE__ */ jsx10("div", { className: cn("stripe-grid -z-50 absolute inset-0 h-full w-full", className), children: /* @__PURE__ */ jsx10("div", { className: "relative h-full w-full overflow-hidden", children: /* @__PURE__ */ jsx10("div", { className: "pointer-events-none absolute top-0 left-0 h-full w-full", "aria-hidden": "true", children: /* @__PURE__ */ jsxs9(
|
|
274
440
|
"div",
|
|
275
441
|
{
|
|
276
442
|
className: cn("relative mx-auto grid h-full grid-cols-4 grid-rows-1", maxWidthClass),
|
|
277
443
|
children: [
|
|
278
444
|
columnElements,
|
|
279
|
-
/* @__PURE__ */
|
|
445
|
+
/* @__PURE__ */ jsx10(
|
|
280
446
|
"div",
|
|
281
447
|
{
|
|
282
448
|
className: "absolute top-0 right-0 h-full w-px",
|
|
@@ -289,70 +455,70 @@ var GridBackground = ({
|
|
|
289
455
|
};
|
|
290
456
|
|
|
291
457
|
// src/components/layout/section.tsx
|
|
292
|
-
import { jsx as
|
|
293
|
-
var Cross = () => /* @__PURE__ */
|
|
294
|
-
/* @__PURE__ */
|
|
295
|
-
/* @__PURE__ */
|
|
296
|
-
/* @__PURE__ */
|
|
458
|
+
import { jsx as jsx11, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
459
|
+
var Cross = () => /* @__PURE__ */ jsxs10("div", { className: "relative h-6 w-6", children: [
|
|
460
|
+
/* @__PURE__ */ jsx11("div", { className: "absolute left-3 h-6 w-px bg-background" }),
|
|
461
|
+
/* @__PURE__ */ jsx11("div", { className: "absolute top-3 h-px w-6 bg-background" }),
|
|
462
|
+
/* @__PURE__ */ jsx11("div", { className: "-translate-x-1/2 -translate-y-1/2 absolute top-1/2 left-1/2", children: /* @__PURE__ */ jsx11(PlusIcon, { size: 20, className: "text-border/70 dark:text-border" }) })
|
|
297
463
|
] });
|
|
298
|
-
var Section = ({ children, sectionClassName, className, ...props }) => /* @__PURE__ */
|
|
299
|
-
/* @__PURE__ */
|
|
300
|
-
/* @__PURE__ */
|
|
301
|
-
/* @__PURE__ */
|
|
302
|
-
/* @__PURE__ */
|
|
464
|
+
var Section = ({ children, sectionClassName, className, ...props }) => /* @__PURE__ */ jsx11("section", { className: sectionClassName, ...props, children: /* @__PURE__ */ jsxs10("div", { className: "grid-container relative mx-auto", children: [
|
|
465
|
+
/* @__PURE__ */ jsx11(GridBackground, { maxWidthClass: "grid-container" }),
|
|
466
|
+
/* @__PURE__ */ jsx11("div", { className: cn(className), children }),
|
|
467
|
+
/* @__PURE__ */ jsx11("div", { className: "-bottom-3 -left-3 absolute z-10 hidden h-6 sm:block", children: /* @__PURE__ */ jsx11(Cross, {}) }),
|
|
468
|
+
/* @__PURE__ */ jsx11("div", { className: "-bottom-3 -right-3 -translate-x-px absolute z-10 hidden h-6 sm:block", children: /* @__PURE__ */ jsx11(Cross, {}) })
|
|
303
469
|
] }) });
|
|
304
470
|
|
|
305
471
|
// src/components/layout/site-footer.tsx
|
|
306
|
-
import { jsx as
|
|
472
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
307
473
|
function SiteFooter({ children, className }) {
|
|
308
|
-
return /* @__PURE__ */
|
|
474
|
+
return /* @__PURE__ */ jsx12("footer", { className: cn("border-border border-t py-5 md:py-0", className), children: /* @__PURE__ */ jsx12("div", { className: "container flex flex-col items-center justify-between gap-4 py-4 md:h-16 md:flex-row", children }) });
|
|
309
475
|
}
|
|
310
476
|
|
|
311
477
|
// src/components/layout/site-header.tsx
|
|
312
|
-
import { jsx as
|
|
478
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
313
479
|
function SiteHeader({ className, children }) {
|
|
314
|
-
return /* @__PURE__ */
|
|
480
|
+
return /* @__PURE__ */ jsx13(
|
|
315
481
|
"header",
|
|
316
482
|
{
|
|
317
483
|
className: cn(
|
|
318
|
-
"sticky top-0 z-50 w-full border-border border-b bg-background/95 backdrop-blur-sm supports-backdrop-filter:bg-background/60
|
|
484
|
+
"sticky top-0 z-50 w-full border-border border-b bg-background/95 backdrop-blur-sm supports-backdrop-filter:bg-background/60",
|
|
319
485
|
className
|
|
320
486
|
),
|
|
321
|
-
children: /* @__PURE__ */
|
|
487
|
+
children: /* @__PURE__ */ jsx13("div", { className: "container flex h-16 items-center justify-between gap-4", children })
|
|
322
488
|
}
|
|
323
489
|
);
|
|
324
490
|
}
|
|
325
491
|
|
|
326
492
|
// src/components/layout/wrapper.tsx
|
|
327
|
-
import { jsx as
|
|
493
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
328
494
|
function MaxWidthWrapper({ className, children }) {
|
|
329
|
-
return /* @__PURE__ */
|
|
495
|
+
return /* @__PURE__ */ jsx14("div", { className: cn("mx-auto w-full max-w-7xl p-3 lg:px-10", className), children });
|
|
330
496
|
}
|
|
331
497
|
|
|
332
498
|
// src/components/mdx/code-display.tsx
|
|
333
|
-
import { jsx as
|
|
499
|
+
import { jsx as jsx15, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
334
500
|
function CodeDisplay({
|
|
335
501
|
children,
|
|
336
502
|
component
|
|
337
503
|
}) {
|
|
338
|
-
return /* @__PURE__ */
|
|
339
|
-
/* @__PURE__ */
|
|
340
|
-
/* @__PURE__ */
|
|
504
|
+
return /* @__PURE__ */ jsxs11("div", { className: "my-6 grid grid-cols-1 gap-6 overflow-hidden md:grid-cols-2", children: [
|
|
505
|
+
/* @__PURE__ */ jsx15("div", { className: "w-full overflow-hidden", children }),
|
|
506
|
+
/* @__PURE__ */ jsx15("div", { className: "my-6 flex w-full items-center justify-center rounded-lg border bg-gray-50 dark:bg-gray-900", children: component })
|
|
341
507
|
] });
|
|
342
508
|
}
|
|
343
509
|
|
|
344
510
|
// src/components/mdx/download.tsx
|
|
345
511
|
import { Download } from "lucide-react";
|
|
346
|
-
import { jsx as
|
|
512
|
+
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
347
513
|
function DownloadFile({ children, className, href }) {
|
|
348
|
-
return /* @__PURE__ */
|
|
349
|
-
/* @__PURE__ */
|
|
514
|
+
return /* @__PURE__ */ jsx16("div", { className: "inline-flex pb-4", children: /* @__PURE__ */ jsx16(Button, { size: "lg", className: cn("rounded-full", className), children: /* @__PURE__ */ jsxs12("a", { href, target: "_blank", rel: "noopener noreferrer", children: [
|
|
515
|
+
/* @__PURE__ */ jsx16(Download, { className: "mr-2 size-5" }),
|
|
350
516
|
children
|
|
351
517
|
] }) }) });
|
|
352
518
|
}
|
|
353
519
|
|
|
354
520
|
// src/components/mdx/link.tsx
|
|
355
|
-
import { jsx as
|
|
521
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
356
522
|
function ExtraLink({
|
|
357
523
|
Link = DefaultLink,
|
|
358
524
|
href,
|
|
@@ -360,7 +526,7 @@ function ExtraLink({
|
|
|
360
526
|
className,
|
|
361
527
|
children
|
|
362
528
|
}) {
|
|
363
|
-
return /* @__PURE__ */
|
|
529
|
+
return /* @__PURE__ */ jsx17(
|
|
364
530
|
Link,
|
|
365
531
|
{
|
|
366
532
|
href,
|
|
@@ -372,15 +538,15 @@ function ExtraLink({
|
|
|
372
538
|
}
|
|
373
539
|
|
|
374
540
|
// src/components/mdx/video.tsx
|
|
375
|
-
import { jsx as
|
|
541
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
376
542
|
function Video({ className, ...props }) {
|
|
377
|
-
return /* @__PURE__ */
|
|
543
|
+
return /* @__PURE__ */ jsx18("video", { className: cn("w-full rounded-lg border", className), controls: true, loop: true, ...props });
|
|
378
544
|
}
|
|
379
545
|
|
|
380
546
|
// src/components/mdx/wrapper.tsx
|
|
381
|
-
import { jsx as
|
|
547
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
382
548
|
function Wrapper({ children, className }) {
|
|
383
|
-
return /* @__PURE__ */
|
|
549
|
+
return /* @__PURE__ */ jsx19(
|
|
384
550
|
"div",
|
|
385
551
|
{
|
|
386
552
|
className: cn(
|
|
@@ -393,9 +559,9 @@ function Wrapper({ children, className }) {
|
|
|
393
559
|
}
|
|
394
560
|
|
|
395
561
|
// src/components/mdx/youtube.tsx
|
|
396
|
-
import { jsx as
|
|
562
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
397
563
|
function Youtube({ id }) {
|
|
398
|
-
return /* @__PURE__ */
|
|
564
|
+
return /* @__PURE__ */ jsx20(
|
|
399
565
|
"iframe",
|
|
400
566
|
{
|
|
401
567
|
src: `https://www.youtube.com/embed/${id}`,
|
|
@@ -417,17 +583,17 @@ function Youtube({ id }) {
|
|
|
417
583
|
import { ChevronLeft } from "lucide-react";
|
|
418
584
|
|
|
419
585
|
// src/components/utils/shared.tsx
|
|
420
|
-
import { jsx as
|
|
421
|
-
var DefaultImage = ({ src, alt, className }) => /* @__PURE__ */
|
|
422
|
-
var DefaultLink = ({ href, className, children }) => /* @__PURE__ */
|
|
586
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
587
|
+
var DefaultImage = ({ src, alt, className }) => /* @__PURE__ */ jsx21("img", { src, alt, className });
|
|
588
|
+
var DefaultLink = ({ href, className, children }) => /* @__PURE__ */ jsx21("a", { href, className, children });
|
|
423
589
|
var DefaultNavigate = (href) => {
|
|
424
590
|
window.location.href = href;
|
|
425
591
|
};
|
|
426
592
|
|
|
427
593
|
// src/components/navigation/back-link.tsx
|
|
428
|
-
import { jsx as
|
|
594
|
+
import { jsx as jsx22, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
429
595
|
function BackLink({ Link = DefaultLink, children, href, className }) {
|
|
430
|
-
return /* @__PURE__ */
|
|
596
|
+
return /* @__PURE__ */ jsxs13(
|
|
431
597
|
Link,
|
|
432
598
|
{
|
|
433
599
|
href,
|
|
@@ -436,16 +602,16 @@ function BackLink({ Link = DefaultLink, children, href, className }) {
|
|
|
436
602
|
className
|
|
437
603
|
),
|
|
438
604
|
children: [
|
|
439
|
-
/* @__PURE__ */
|
|
605
|
+
/* @__PURE__ */ jsx22(
|
|
440
606
|
Button,
|
|
441
607
|
{
|
|
442
608
|
variant: "secondary",
|
|
443
609
|
mode: "icon",
|
|
444
610
|
className: "group-hover:-translate-x-0.5 size-7.5! transition-transform duration-100",
|
|
445
|
-
children: /* @__PURE__ */
|
|
611
|
+
children: /* @__PURE__ */ jsx22(ChevronLeft, {})
|
|
446
612
|
}
|
|
447
613
|
),
|
|
448
|
-
/* @__PURE__ */
|
|
614
|
+
/* @__PURE__ */ jsx22("span", { className: "font-semibold text-lg", children })
|
|
449
615
|
]
|
|
450
616
|
}
|
|
451
617
|
);
|
|
@@ -454,7 +620,7 @@ function BackLink({ Link = DefaultLink, children, href, className }) {
|
|
|
454
620
|
// src/components/navigation/command-menu.tsx
|
|
455
621
|
import * as React from "react";
|
|
456
622
|
import { Search } from "lucide-react";
|
|
457
|
-
import { Fragment, jsx as
|
|
623
|
+
import { Fragment as Fragment2, jsx as jsx23, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
458
624
|
function CommandMenu({
|
|
459
625
|
children,
|
|
460
626
|
classButton,
|
|
@@ -509,8 +675,8 @@ function CommandMenu({
|
|
|
509
675
|
setOpen(true);
|
|
510
676
|
handleButtonClick();
|
|
511
677
|
}, [handleButtonClick]);
|
|
512
|
-
return /* @__PURE__ */
|
|
513
|
-
/* @__PURE__ */
|
|
678
|
+
return /* @__PURE__ */ jsxs14(Fragment2, { children: [
|
|
679
|
+
/* @__PURE__ */ jsxs14(
|
|
514
680
|
Button,
|
|
515
681
|
{
|
|
516
682
|
variant: "outline",
|
|
@@ -521,9 +687,9 @@ function CommandMenu({
|
|
|
521
687
|
"aria-label": `Open command menu (${keyHint})`,
|
|
522
688
|
...props,
|
|
523
689
|
children: [
|
|
524
|
-
/* @__PURE__ */
|
|
525
|
-
/* @__PURE__ */
|
|
526
|
-
/* @__PURE__ */
|
|
690
|
+
/* @__PURE__ */ jsx23(Search, { className: "mr-2 h-4 w-4", "aria-hidden": "true" }),
|
|
691
|
+
/* @__PURE__ */ jsx23("span", { className: "inline-flex text-muted-foreground", children: searchButtonText }),
|
|
692
|
+
/* @__PURE__ */ jsx23(
|
|
527
693
|
"kbd",
|
|
528
694
|
{
|
|
529
695
|
className: "-translate-y-1/2 pointer-events-none absolute top-1/2 right-[5px] hidden h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-medium font-mono text-[10px] opacity-100 sm:flex",
|
|
@@ -534,7 +700,7 @@ function CommandMenu({
|
|
|
534
700
|
]
|
|
535
701
|
}
|
|
536
702
|
),
|
|
537
|
-
/* @__PURE__ */
|
|
703
|
+
/* @__PURE__ */ jsxs14(
|
|
538
704
|
CommandDialog,
|
|
539
705
|
{
|
|
540
706
|
open,
|
|
@@ -544,8 +710,8 @@ function CommandMenu({
|
|
|
544
710
|
classDialog
|
|
545
711
|
),
|
|
546
712
|
children: [
|
|
547
|
-
/* @__PURE__ */
|
|
548
|
-
/* @__PURE__ */
|
|
713
|
+
/* @__PURE__ */ jsx23(CommandInput, { placeholder: commandInputPlaceholder, "aria-label": "Search commands" }),
|
|
714
|
+
/* @__PURE__ */ jsx23(CommandList, { children })
|
|
549
715
|
]
|
|
550
716
|
}
|
|
551
717
|
)
|
|
@@ -554,9 +720,9 @@ function CommandMenu({
|
|
|
554
720
|
|
|
555
721
|
// src/components/navigation/main-nav.tsx
|
|
556
722
|
import { ArrowUpRight, ChevronDown } from "lucide-react";
|
|
557
|
-
import { jsx as
|
|
723
|
+
import { jsx as jsx24, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
558
724
|
function MainNav({ Link = DefaultLink, pathname, items, className }) {
|
|
559
|
-
return /* @__PURE__ */
|
|
725
|
+
return /* @__PURE__ */ jsx24("div", { className: cn("mr-4 hidden items-center justify-center md:flex", className), children: /* @__PURE__ */ jsx24("nav", { className: "flex items-center gap-4 font-medium text-sm xl:gap-6", children: items.map((item) => /* @__PURE__ */ jsx24(NavItemRenderer, { Link, item, pathname, level: 1 }, item.title)) }) });
|
|
560
726
|
}
|
|
561
727
|
function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
562
728
|
const hasChildren = item.children && item.children.length > 0;
|
|
@@ -566,8 +732,8 @@ function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
566
732
|
) ?? false)
|
|
567
733
|
) ?? false : item.href === pathname || item.href !== "/" && item.href && pathname?.startsWith(item.href);
|
|
568
734
|
if (hasChildren && level <= 3) {
|
|
569
|
-
return /* @__PURE__ */
|
|
570
|
-
/* @__PURE__ */
|
|
735
|
+
return /* @__PURE__ */ jsxs15(DropdownMenu, { children: [
|
|
736
|
+
/* @__PURE__ */ jsx24(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxs15(
|
|
571
737
|
"button",
|
|
572
738
|
{
|
|
573
739
|
className: cn(
|
|
@@ -575,13 +741,13 @@ function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
575
741
|
isActive ? "text-foreground" : "text-foreground/60"
|
|
576
742
|
),
|
|
577
743
|
children: [
|
|
578
|
-
item.icon && /* @__PURE__ */
|
|
744
|
+
item.icon && /* @__PURE__ */ jsx24(item.icon, {}),
|
|
579
745
|
item.title,
|
|
580
|
-
/* @__PURE__ */
|
|
746
|
+
/* @__PURE__ */ jsx24(ChevronDown, { className: "size-3.5" })
|
|
581
747
|
]
|
|
582
748
|
}
|
|
583
749
|
) }),
|
|
584
|
-
/* @__PURE__ */
|
|
750
|
+
/* @__PURE__ */ jsx24(
|
|
585
751
|
DropdownMenuContent,
|
|
586
752
|
{
|
|
587
753
|
className: "min-w-[150px] overflow-visible",
|
|
@@ -589,7 +755,7 @@ function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
589
755
|
align: "start",
|
|
590
756
|
sideOffset: 15,
|
|
591
757
|
alignOffset: -10,
|
|
592
|
-
children: item.children?.map((child) => /* @__PURE__ */
|
|
758
|
+
children: item.children?.map((child) => /* @__PURE__ */ jsx24(
|
|
593
759
|
ChildNavItemRenderer,
|
|
594
760
|
{
|
|
595
761
|
item: child,
|
|
@@ -602,7 +768,7 @@ function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
602
768
|
)
|
|
603
769
|
] });
|
|
604
770
|
}
|
|
605
|
-
return /* @__PURE__ */
|
|
771
|
+
return /* @__PURE__ */ jsxs15(
|
|
606
772
|
Link,
|
|
607
773
|
{
|
|
608
774
|
href: item.href ?? "#",
|
|
@@ -613,9 +779,9 @@ function NavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
613
779
|
),
|
|
614
780
|
onClick: () => handleMenuClick(item),
|
|
615
781
|
children: [
|
|
616
|
-
item.icon && /* @__PURE__ */
|
|
782
|
+
item.icon && /* @__PURE__ */ jsx24(item.icon, {}),
|
|
617
783
|
item.title,
|
|
618
|
-
item.external && /* @__PURE__ */
|
|
784
|
+
item.external && /* @__PURE__ */ jsx24(ArrowUpRight, { className: "size-3.5 opacity-60" })
|
|
619
785
|
]
|
|
620
786
|
}
|
|
621
787
|
);
|
|
@@ -626,8 +792,8 @@ function ChildNavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
626
792
|
(grandchild) => grandchild.href === pathname || grandchild.href !== "/" && grandchild.href && pathname?.startsWith(grandchild.href)
|
|
627
793
|
) ?? false);
|
|
628
794
|
if (hasChildren && level <= 3) {
|
|
629
|
-
return /* @__PURE__ */
|
|
630
|
-
/* @__PURE__ */
|
|
795
|
+
return /* @__PURE__ */ jsxs15(DropdownMenuSub, { children: [
|
|
796
|
+
/* @__PURE__ */ jsxs15(
|
|
631
797
|
DropdownMenuSubTrigger,
|
|
632
798
|
{
|
|
633
799
|
className: cn(
|
|
@@ -635,12 +801,12 @@ function ChildNavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
635
801
|
isChildActive && "font-medium text-foreground"
|
|
636
802
|
),
|
|
637
803
|
children: [
|
|
638
|
-
item.icon && /* @__PURE__ */
|
|
804
|
+
item.icon && /* @__PURE__ */ jsx24(item.icon, {}),
|
|
639
805
|
item.title
|
|
640
806
|
]
|
|
641
807
|
}
|
|
642
808
|
),
|
|
643
|
-
/* @__PURE__ */
|
|
809
|
+
/* @__PURE__ */ jsx24(DropdownMenuSubContent, { className: "min-w-[150px]", children: item.children?.map((child) => /* @__PURE__ */ jsx24(
|
|
644
810
|
ChildNavItemRenderer,
|
|
645
811
|
{
|
|
646
812
|
item: child,
|
|
@@ -651,7 +817,7 @@ function ChildNavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
651
817
|
)) })
|
|
652
818
|
] });
|
|
653
819
|
}
|
|
654
|
-
return /* @__PURE__ */
|
|
820
|
+
return /* @__PURE__ */ jsx24(DropdownMenuItem, { asChild: true, children: /* @__PURE__ */ jsxs15(
|
|
655
821
|
Link,
|
|
656
822
|
{
|
|
657
823
|
href: item.href || "",
|
|
@@ -662,9 +828,9 @@ function ChildNavItemRenderer({ Link = DefaultLink, item, pathname, level }) {
|
|
|
662
828
|
),
|
|
663
829
|
onClick: () => handleMenuClick(item),
|
|
664
830
|
children: [
|
|
665
|
-
item.icon && /* @__PURE__ */
|
|
831
|
+
item.icon && /* @__PURE__ */ jsx24(item.icon, {}),
|
|
666
832
|
item.title,
|
|
667
|
-
item.external && /* @__PURE__ */
|
|
833
|
+
item.external && /* @__PURE__ */ jsx24(ArrowUpRight, { className: "size-3.5 opacity-60" })
|
|
668
834
|
]
|
|
669
835
|
}
|
|
670
836
|
) });
|
|
@@ -685,7 +851,7 @@ function handleMenuClick(item) {
|
|
|
685
851
|
// src/components/navigation/mobile-nav.tsx
|
|
686
852
|
import { useCallback as useCallback2, useState as useState2 } from "react";
|
|
687
853
|
import { ArrowUpRight as ArrowUpRight2, ChevronDown as ChevronDown2, Menu } from "lucide-react";
|
|
688
|
-
import { jsx as
|
|
854
|
+
import { jsx as jsx25, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
689
855
|
function MobileNav({ children, className }) {
|
|
690
856
|
const { setMetaColor, metaColor } = useMetaColor();
|
|
691
857
|
const [open, setOpen] = useState2(false);
|
|
@@ -696,15 +862,15 @@ function MobileNav({ children, className }) {
|
|
|
696
862
|
},
|
|
697
863
|
[setMetaColor, metaColor]
|
|
698
864
|
);
|
|
699
|
-
return /* @__PURE__ */
|
|
700
|
-
/* @__PURE__ */
|
|
701
|
-
/* @__PURE__ */
|
|
702
|
-
/* @__PURE__ */
|
|
865
|
+
return /* @__PURE__ */ jsx25("div", { className: cn("flex items-center gap-2.5 md:hidden", className), children: /* @__PURE__ */ jsxs16(Drawer, { open, onOpenChange, children: [
|
|
866
|
+
/* @__PURE__ */ jsx25(DrawerTrigger, { asChild: true, children: /* @__PURE__ */ jsxs16(Button, { variant: "ghost", className: "group/toggle size-8 px-0 text-foreground", children: [
|
|
867
|
+
/* @__PURE__ */ jsx25(Menu, {}),
|
|
868
|
+
/* @__PURE__ */ jsx25("span", { className: "sr-only", children: "Toggle Menu" })
|
|
703
869
|
] }) }),
|
|
704
|
-
/* @__PURE__ */
|
|
705
|
-
/* @__PURE__ */
|
|
706
|
-
/* @__PURE__ */
|
|
707
|
-
/* @__PURE__ */
|
|
870
|
+
/* @__PURE__ */ jsxs16(DrawerContent, { className: "max-h-[60svh] p-0", children: [
|
|
871
|
+
/* @__PURE__ */ jsx25(DrawerTitle, { className: "sr-only", children: "Mobile menu" }),
|
|
872
|
+
/* @__PURE__ */ jsx25("div", { className: "overflow-auto p-6", children }),
|
|
873
|
+
/* @__PURE__ */ jsx25(DrawerDescription, { className: "sr-only", children: "Mobile menu" })
|
|
708
874
|
] })
|
|
709
875
|
] }) });
|
|
710
876
|
}
|
|
@@ -726,8 +892,8 @@ function MobileNavItemRenderer({
|
|
|
726
892
|
) ?? false : item.href === pathname || item.href !== "/" && item.href && pathname?.startsWith(item.href);
|
|
727
893
|
if (hasChildren && level <= 3) {
|
|
728
894
|
console.log(item);
|
|
729
|
-
return /* @__PURE__ */
|
|
730
|
-
/* @__PURE__ */
|
|
895
|
+
return /* @__PURE__ */ jsxs16(Collapsible, { open: isOpen, onOpenChange: setIsOpen, children: [
|
|
896
|
+
/* @__PURE__ */ jsxs16(
|
|
731
897
|
CollapsibleTrigger,
|
|
732
898
|
{
|
|
733
899
|
className: cn(
|
|
@@ -735,9 +901,9 @@ function MobileNavItemRenderer({
|
|
|
735
901
|
isOpen ? "text-foreground" : "text-foreground/60"
|
|
736
902
|
),
|
|
737
903
|
children: [
|
|
738
|
-
item.icon && /* @__PURE__ */
|
|
904
|
+
item.icon && /* @__PURE__ */ jsx25(item.icon, {}),
|
|
739
905
|
item.title,
|
|
740
|
-
/* @__PURE__ */
|
|
906
|
+
/* @__PURE__ */ jsx25(
|
|
741
907
|
ChevronDown2,
|
|
742
908
|
{
|
|
743
909
|
className: cn(
|
|
@@ -749,7 +915,7 @@ function MobileNavItemRenderer({
|
|
|
749
915
|
]
|
|
750
916
|
}
|
|
751
917
|
),
|
|
752
|
-
/* @__PURE__ */
|
|
918
|
+
/* @__PURE__ */ jsx25(CollapsibleContent, { children: /* @__PURE__ */ jsx25("div", { className: cn("flex flex-col space-y-2.5 pt-3", `ps-5`), children: item.children.map((child) => /* @__PURE__ */ jsx25(
|
|
753
919
|
MobileNavItemRenderer,
|
|
754
920
|
{
|
|
755
921
|
item: child,
|
|
@@ -761,7 +927,7 @@ function MobileNavItemRenderer({
|
|
|
761
927
|
)) }) })
|
|
762
928
|
] });
|
|
763
929
|
}
|
|
764
|
-
return /* @__PURE__ */
|
|
930
|
+
return /* @__PURE__ */ jsxs16(
|
|
765
931
|
Link,
|
|
766
932
|
{
|
|
767
933
|
href: item.href || "#",
|
|
@@ -778,9 +944,9 @@ function MobileNavItemRenderer({
|
|
|
778
944
|
isActive ? "text-foreground" : "text-foreground/60"
|
|
779
945
|
),
|
|
780
946
|
children: [
|
|
781
|
-
item.icon && /* @__PURE__ */
|
|
947
|
+
item.icon && /* @__PURE__ */ jsx25(item.icon, {}),
|
|
782
948
|
item.title,
|
|
783
|
-
item.external && /* @__PURE__ */
|
|
949
|
+
item.external && /* @__PURE__ */ jsx25(ArrowUpRight2, { className: "ml-1 size-3.5 opacity-60" })
|
|
784
950
|
]
|
|
785
951
|
}
|
|
786
952
|
);
|
|
@@ -791,7 +957,7 @@ import { useState as useState3 } from "react";
|
|
|
791
957
|
import { QueryCache, QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
792
958
|
import { CircleAlert as CircleAlert2 } from "lucide-react";
|
|
793
959
|
import { toast as toast2 } from "sonner";
|
|
794
|
-
import { jsx as
|
|
960
|
+
import { jsx as jsx26, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
795
961
|
var QueryProvider = ({ children }) => {
|
|
796
962
|
const [queryClient] = useState3(
|
|
797
963
|
() => new QueryClient({
|
|
@@ -836,9 +1002,9 @@ var QueryProvider = ({ children }) => {
|
|
|
836
1002
|
});
|
|
837
1003
|
}
|
|
838
1004
|
toast2.custom(
|
|
839
|
-
() => /* @__PURE__ */
|
|
840
|
-
/* @__PURE__ */
|
|
841
|
-
/* @__PURE__ */
|
|
1005
|
+
() => /* @__PURE__ */ jsxs17(Alert, { variant: "mono", icon: "destructive", close: false, children: [
|
|
1006
|
+
/* @__PURE__ */ jsx26(AlertIcon, { children: /* @__PURE__ */ jsx26(CircleAlert2, {}) }),
|
|
1007
|
+
/* @__PURE__ */ jsx26(AlertTitle, { children: message })
|
|
842
1008
|
] }),
|
|
843
1009
|
{
|
|
844
1010
|
position: "top-center",
|
|
@@ -852,14 +1018,14 @@ var QueryProvider = ({ children }) => {
|
|
|
852
1018
|
})
|
|
853
1019
|
})
|
|
854
1020
|
);
|
|
855
|
-
return /* @__PURE__ */
|
|
1021
|
+
return /* @__PURE__ */ jsx26(QueryClientProvider, { client: queryClient, children });
|
|
856
1022
|
};
|
|
857
1023
|
|
|
858
1024
|
// src/components/providers/theme-provider.tsx
|
|
859
1025
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
|
860
|
-
import { jsx as
|
|
1026
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
861
1027
|
function ThemeProvider({ children, ...props }) {
|
|
862
|
-
return /* @__PURE__ */
|
|
1028
|
+
return /* @__PURE__ */ jsx27(
|
|
863
1029
|
NextThemesProvider,
|
|
864
1030
|
{
|
|
865
1031
|
attribute: "class",
|
|
@@ -870,19 +1036,19 @@ function ThemeProvider({ children, ...props }) {
|
|
|
870
1036
|
storageKey: "theme",
|
|
871
1037
|
themes: [THEME_MODES.LIGHT, THEME_MODES.DARK, THEME_MODES.SYSTEM],
|
|
872
1038
|
...props,
|
|
873
|
-
children: /* @__PURE__ */
|
|
1039
|
+
children: /* @__PURE__ */ jsx27(TooltipProvider, { delayDuration: 0, children })
|
|
874
1040
|
}
|
|
875
1041
|
);
|
|
876
1042
|
}
|
|
877
1043
|
|
|
878
1044
|
// src/components/ui/announcement.tsx
|
|
879
|
-
import { jsx as
|
|
1045
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
880
1046
|
var Announcement = ({
|
|
881
1047
|
variant = "outline",
|
|
882
1048
|
themed = false,
|
|
883
1049
|
className,
|
|
884
1050
|
...props
|
|
885
|
-
}) => /* @__PURE__ */
|
|
1051
|
+
}) => /* @__PURE__ */ jsx28(
|
|
886
1052
|
Badge,
|
|
887
1053
|
{
|
|
888
1054
|
variant,
|
|
@@ -895,7 +1061,7 @@ var Announcement = ({
|
|
|
895
1061
|
...props
|
|
896
1062
|
}
|
|
897
1063
|
);
|
|
898
|
-
var AnnouncementTag = ({ className, ...props }) => /* @__PURE__ */
|
|
1064
|
+
var AnnouncementTag = ({ className, ...props }) => /* @__PURE__ */ jsx28(
|
|
899
1065
|
"div",
|
|
900
1066
|
{
|
|
901
1067
|
className: cn(
|
|
@@ -906,11 +1072,11 @@ var AnnouncementTag = ({ className, ...props }) => /* @__PURE__ */ jsx24(
|
|
|
906
1072
|
...props
|
|
907
1073
|
}
|
|
908
1074
|
);
|
|
909
|
-
var AnnouncementTitle = ({ className, ...props }) => /* @__PURE__ */
|
|
1075
|
+
var AnnouncementTitle = ({ className, ...props }) => /* @__PURE__ */ jsx28("div", { className: cn("flex items-center gap-1 truncate py-1", className), ...props });
|
|
910
1076
|
|
|
911
1077
|
// src/components/ui/background-paths.tsx
|
|
912
1078
|
import { motion } from "motion/react";
|
|
913
|
-
import { jsx as
|
|
1079
|
+
import { jsx as jsx29, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
914
1080
|
function FloatingPaths({
|
|
915
1081
|
position,
|
|
916
1082
|
color = "text-slate-950 dark:text-white"
|
|
@@ -921,7 +1087,7 @@ function FloatingPaths({
|
|
|
921
1087
|
color: `rgba(15,23,42,${0.1 + i * 0.03})`,
|
|
922
1088
|
width: 0.5 + i * 0.03
|
|
923
1089
|
}));
|
|
924
|
-
return /* @__PURE__ */
|
|
1090
|
+
return /* @__PURE__ */ jsx29("div", { className: "-z-50 pointer-events-none absolute inset-0", children: /* @__PURE__ */ jsx29("svg", { className: cn("h-full w-full", color), viewBox: "0 0 696 316", fill: "none", children: paths.map((path) => /* @__PURE__ */ jsx29(
|
|
925
1091
|
motion.path,
|
|
926
1092
|
{
|
|
927
1093
|
d: path.d,
|
|
@@ -944,14 +1110,14 @@ function FloatingPaths({
|
|
|
944
1110
|
)) }) });
|
|
945
1111
|
}
|
|
946
1112
|
function BackgroundPaths({ color = "text-slate-950 dark:text-white" }) {
|
|
947
|
-
return /* @__PURE__ */
|
|
948
|
-
/* @__PURE__ */
|
|
949
|
-
/* @__PURE__ */
|
|
1113
|
+
return /* @__PURE__ */ jsx29("div", { className: "relative flex min-h-screen w-full items-center justify-center overflow-hidden bg-white dark:bg-neutral-950", children: /* @__PURE__ */ jsxs18("div", { className: "absolute inset-0", children: [
|
|
1114
|
+
/* @__PURE__ */ jsx29(FloatingPaths, { position: 1, color }),
|
|
1115
|
+
/* @__PURE__ */ jsx29(FloatingPaths, { position: -1, color })
|
|
950
1116
|
] }) });
|
|
951
1117
|
}
|
|
952
1118
|
|
|
953
1119
|
// src/components/ui/book.tsx
|
|
954
|
-
import { jsx as
|
|
1120
|
+
import { jsx as jsx30, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
955
1121
|
function Book(props) {
|
|
956
1122
|
const {
|
|
957
1123
|
children,
|
|
@@ -963,7 +1129,7 @@ function Book(props) {
|
|
|
963
1129
|
illustration,
|
|
964
1130
|
width
|
|
965
1131
|
} = props;
|
|
966
|
-
return /* @__PURE__ */
|
|
1132
|
+
return /* @__PURE__ */ jsx30(
|
|
967
1133
|
"div",
|
|
968
1134
|
{
|
|
969
1135
|
className: cn("group perspective-[900px] inline-block w-fit"),
|
|
@@ -973,14 +1139,14 @@ function Book(props) {
|
|
|
973
1139
|
"--book-depth": `${depth || 4}cqw`,
|
|
974
1140
|
"--book-width": `${width || 196}px`
|
|
975
1141
|
},
|
|
976
|
-
children: /* @__PURE__ */
|
|
977
|
-
/* @__PURE__ */
|
|
1142
|
+
children: /* @__PURE__ */ jsxs19("div", { className: "transform-3d group-hover:transform-[rotateY(-20deg)_scale(1.066)translateX(-8px)] relative aspect-49/60 w-fit min-w-[calc(var(--book-width))] rotate-0 transition-transform duration-500 ease-out contain-inline-size", children: [
|
|
1143
|
+
/* @__PURE__ */ jsxs19(
|
|
978
1144
|
Stack,
|
|
979
1145
|
{
|
|
980
1146
|
align: "stretch",
|
|
981
1147
|
className: "absolute size-full overflow-hidden rounded-r rounded-l border border-border bg-stone-100 shadow-book dark:bg-stone-800",
|
|
982
1148
|
children: [
|
|
983
|
-
variant !== "simple" && /* @__PURE__ */
|
|
1149
|
+
variant !== "simple" && /* @__PURE__ */ jsxs19(
|
|
984
1150
|
Stack,
|
|
985
1151
|
{
|
|
986
1152
|
shrink: true,
|
|
@@ -990,16 +1156,16 @@ function Book(props) {
|
|
|
990
1156
|
"relative min-w-[calc(var(--book-width))] overflow-hidden bg-(--book-color)"
|
|
991
1157
|
),
|
|
992
1158
|
children: [
|
|
993
|
-
/* @__PURE__ */
|
|
994
|
-
illustration && /* @__PURE__ */
|
|
1159
|
+
/* @__PURE__ */ jsx30("div", { className: "absolute inset-y-0 min-w-[8.2%] bg-book-bind-bg opacity-100 mix-blend-overlay" }),
|
|
1160
|
+
illustration && /* @__PURE__ */ jsx30("div", { className: "object-cover", children: illustration })
|
|
995
1161
|
]
|
|
996
1162
|
}
|
|
997
1163
|
),
|
|
998
|
-
/* @__PURE__ */
|
|
999
|
-
/* @__PURE__ */
|
|
1000
|
-
/* @__PURE__ */
|
|
1164
|
+
/* @__PURE__ */ jsxs19(Stack, { grow: variant === "simple", direction: "row", className: "h-fit", children: [
|
|
1165
|
+
/* @__PURE__ */ jsx30("div", { className: "h-full min-w-[8.2%] bg-book-bind-bg opacity-100 mix-blend-overlay" }),
|
|
1166
|
+
/* @__PURE__ */ jsx30("div", { className: "w-full contain-inline-size", children })
|
|
1001
1167
|
] }),
|
|
1002
|
-
texture && /* @__PURE__ */
|
|
1168
|
+
texture && /* @__PURE__ */ jsx30(
|
|
1003
1169
|
"div",
|
|
1004
1170
|
{
|
|
1005
1171
|
"aria-hidden": true,
|
|
@@ -1009,7 +1175,7 @@ function Book(props) {
|
|
|
1009
1175
|
]
|
|
1010
1176
|
}
|
|
1011
1177
|
),
|
|
1012
|
-
/* @__PURE__ */
|
|
1178
|
+
/* @__PURE__ */ jsx30(
|
|
1013
1179
|
"div",
|
|
1014
1180
|
{
|
|
1015
1181
|
"aria-hidden": true,
|
|
@@ -1019,7 +1185,7 @@ function Book(props) {
|
|
|
1019
1185
|
}
|
|
1020
1186
|
}
|
|
1021
1187
|
),
|
|
1022
|
-
/* @__PURE__ */
|
|
1188
|
+
/* @__PURE__ */ jsx30(
|
|
1023
1189
|
"div",
|
|
1024
1190
|
{
|
|
1025
1191
|
"aria-hidden": true,
|
|
@@ -1047,7 +1213,7 @@ function Stack(props) {
|
|
|
1047
1213
|
className,
|
|
1048
1214
|
...etc
|
|
1049
1215
|
} = props;
|
|
1050
|
-
return /* @__PURE__ */
|
|
1216
|
+
return /* @__PURE__ */ jsx30(
|
|
1051
1217
|
"div",
|
|
1052
1218
|
{
|
|
1053
1219
|
className,
|
|
@@ -1071,7 +1237,7 @@ function Stack(props) {
|
|
|
1071
1237
|
|
|
1072
1238
|
// src/components/ui/dots-pattern.tsx
|
|
1073
1239
|
import { useId as useId2 } from "react";
|
|
1074
|
-
import { jsx as
|
|
1240
|
+
import { jsx as jsx31, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1075
1241
|
function DotsPattern({
|
|
1076
1242
|
dotSize = 2,
|
|
1077
1243
|
gapSize = 10,
|
|
@@ -1079,14 +1245,14 @@ function DotsPattern({
|
|
|
1079
1245
|
className
|
|
1080
1246
|
}) {
|
|
1081
1247
|
const id = useId2();
|
|
1082
|
-
return /* @__PURE__ */
|
|
1248
|
+
return /* @__PURE__ */ jsxs20(
|
|
1083
1249
|
"svg",
|
|
1084
1250
|
{
|
|
1085
1251
|
className: cn("pointer-events-none absolute inset-0 text-foreground/10", className),
|
|
1086
1252
|
width: "100%",
|
|
1087
1253
|
height: "100%",
|
|
1088
1254
|
children: [
|
|
1089
|
-
/* @__PURE__ */
|
|
1255
|
+
/* @__PURE__ */ jsx31("defs", { children: /* @__PURE__ */ jsx31(
|
|
1090
1256
|
"pattern",
|
|
1091
1257
|
{
|
|
1092
1258
|
id: `dots-${id}`,
|
|
@@ -1095,43 +1261,43 @@ function DotsPattern({
|
|
|
1095
1261
|
width: dotSize + gapSize,
|
|
1096
1262
|
height: dotSize + gapSize,
|
|
1097
1263
|
patternUnits: "userSpaceOnUse",
|
|
1098
|
-
children: /* @__PURE__ */
|
|
1264
|
+
children: /* @__PURE__ */ jsx31("rect", { x: 1, y: 1, width: dotSize, height: dotSize, fill: "currentColor" })
|
|
1099
1265
|
}
|
|
1100
1266
|
) }),
|
|
1101
|
-
/* @__PURE__ */
|
|
1267
|
+
/* @__PURE__ */ jsx31("rect", { fill: `url(#dots-${id})`, width: "100%", height: "100%" })
|
|
1102
1268
|
]
|
|
1103
1269
|
}
|
|
1104
1270
|
);
|
|
1105
1271
|
}
|
|
1106
1272
|
|
|
1107
1273
|
// src/components/ui/icons.tsx
|
|
1108
|
-
import { jsx as
|
|
1274
|
+
import { jsx as jsx32, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1109
1275
|
var Icons = {
|
|
1110
|
-
anthropic: (props) => /* @__PURE__ */
|
|
1111
|
-
apple: (props) => /* @__PURE__ */
|
|
1276
|
+
anthropic: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", role: "img", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" }) }),
|
|
1277
|
+
apple: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1112
1278
|
"path",
|
|
1113
1279
|
{
|
|
1114
1280
|
d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701",
|
|
1115
1281
|
fill: "currentColor"
|
|
1116
1282
|
}
|
|
1117
1283
|
) }),
|
|
1118
|
-
aria: (props) => /* @__PURE__ */
|
|
1119
|
-
facebook: (props) => /* @__PURE__ */
|
|
1284
|
+
aria: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M13.966 22.624l-1.69-4.281H8.122l3.892-9.144 5.662 13.425zM8.884 1.376H0v21.248zm15.116 0h-8.884L24 22.624Z" }) }),
|
|
1285
|
+
facebook: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 32 32", fill: "none", ...props, children: /* @__PURE__ */ jsx32(
|
|
1120
1286
|
"path",
|
|
1121
1287
|
{
|
|
1122
1288
|
d: "M16 4C9.4 4 4 9.42714 4 16.0603C4 22.0121 8.404 26.9568 14.08 28V19.4372H11.08V16.0603H14.08V13.407C14.08 10.392 16 8.70352 18.76 8.70352C19.6 8.70352 20.56 8.82412 21.4 8.94472V12.0201H19.84C18.4 12.0201 18.04 12.7437 18.04 13.7085V16.0603H21.22L20.68 19.4372H18.04V27.9879C23.71 26.9387 28 22.0121 28 16.0603C28 9.42714 22.6 4 16 4Z",
|
|
1123
1289
|
fill: "currentColor"
|
|
1124
1290
|
}
|
|
1125
1291
|
) }),
|
|
1126
|
-
facebookColorful: (props) => /* @__PURE__ */
|
|
1127
|
-
/* @__PURE__ */
|
|
1292
|
+
facebookColorful: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 32 32", fill: "none", role: "img", ...props, children: [
|
|
1293
|
+
/* @__PURE__ */ jsx32(
|
|
1128
1294
|
"path",
|
|
1129
1295
|
{
|
|
1130
1296
|
d: "M16 4C9.4 4 4 9.42714 4 16.0603C4 22.0121 8.404 26.9568 14.08 28V19.4372H11.08V16.0603H14.08V13.407C14.08 10.392 16 8.70352 18.76 8.70352C19.6 8.70352 20.56 8.82412 21.4 8.94472V12.0201H19.84C18.4 12.0201 18.04 12.7437 18.04 13.7085V16.0603H21.22L20.68 19.4372H18.04V27.9879C23.71 26.9387 28 22.0121 28 16.0603C28 9.42714 22.6 4 16 4Z",
|
|
1131
1297
|
fill: "url(#paint0_linear_177_3289)"
|
|
1132
1298
|
}
|
|
1133
1299
|
),
|
|
1134
|
-
/* @__PURE__ */
|
|
1300
|
+
/* @__PURE__ */ jsx32("defs", { children: /* @__PURE__ */ jsxs21(
|
|
1135
1301
|
"linearGradient",
|
|
1136
1302
|
{
|
|
1137
1303
|
id: "paint0_linear_177_3289",
|
|
@@ -1141,49 +1307,49 @@ var Icons = {
|
|
|
1141
1307
|
y2: "4",
|
|
1142
1308
|
gradientUnits: "userSpaceOnUse",
|
|
1143
1309
|
children: [
|
|
1144
|
-
/* @__PURE__ */
|
|
1145
|
-
/* @__PURE__ */
|
|
1310
|
+
/* @__PURE__ */ jsx32("stop", { stopColor: "#0062E0" }),
|
|
1311
|
+
/* @__PURE__ */ jsx32("stop", { offset: "1", stopColor: "#19AFFF" })
|
|
1146
1312
|
]
|
|
1147
1313
|
}
|
|
1148
1314
|
) })
|
|
1149
1315
|
] }),
|
|
1150
|
-
github: (props) => /* @__PURE__ */
|
|
1316
|
+
github: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 438.549 438.549", ...props, children: /* @__PURE__ */ jsx32(
|
|
1151
1317
|
"path",
|
|
1152
1318
|
{
|
|
1153
1319
|
fill: "currentColor",
|
|
1154
1320
|
d: "M409.132 114.573c-19.608-33.596-46.205-60.194-79.798-79.8-33.598-19.607-70.277-29.408-110.063-29.408-39.781 0-76.472 9.804-110.063 29.408-33.596 19.605-60.192 46.204-79.8 79.8C9.803 148.168 0 184.854 0 224.63c0 47.78 13.94 90.745 41.827 128.906 27.884 38.164 63.906 64.572 108.063 79.227 5.14.954 8.945.283 11.419-1.996 2.475-2.282 3.711-5.14 3.711-8.562 0-.571-.049-5.708-.144-15.417a2549.81 2549.81 0 01-.144-25.406l-6.567 1.136c-4.187.767-9.469 1.092-15.846 1-6.374-.089-12.991-.757-19.842-1.999-6.854-1.231-13.229-4.086-19.13-8.559-5.898-4.473-10.085-10.328-12.56-17.556l-2.855-6.57c-1.903-4.374-4.899-9.233-8.992-14.559-4.093-5.331-8.232-8.945-12.419-10.848l-1.999-1.431c-1.332-.951-2.568-2.098-3.711-3.429-1.142-1.331-1.997-2.663-2.568-3.997-.572-1.335-.098-2.43 1.427-3.289 1.525-.859 4.281-1.276 8.28-1.276l5.708.853c3.807.763 8.516 3.042 14.133 6.851 5.614 3.806 10.229 8.754 13.846 14.842 4.38 7.806 9.657 13.754 15.846 17.847 6.184 4.093 12.419 6.136 18.699 6.136 6.28 0 11.704-.476 16.274-1.423 4.565-.952 8.848-2.383 12.847-4.285 1.713-12.758 6.377-22.559 13.988-29.41-10.848-1.14-20.601-2.857-29.264-5.14-8.658-2.286-17.605-5.996-26.835-11.14-9.235-5.137-16.896-11.516-22.985-19.126-6.09-7.614-11.088-17.61-14.987-29.979-3.901-12.374-5.852-26.648-5.852-42.826 0-23.035 7.52-42.637 22.557-58.817-7.044-17.318-6.379-36.732 1.997-58.24 5.52-1.715 13.706-.428 24.554 3.853 10.85 4.283 18.794 7.952 23.84 10.994 5.046 3.041 9.089 5.618 12.135 7.708 17.705-4.947 35.976-7.421 54.818-7.421s37.117 2.474 54.823 7.421l10.849-6.849c7.419-4.57 16.18-8.758 26.262-12.565 10.088-3.805 17.802-4.853 23.134-3.138 8.562 21.509 9.325 40.922 2.279 58.24 15.036 16.18 22.559 35.787 22.559 58.817 0 16.178-1.958 30.497-5.853 42.966-3.9 12.471-8.941 22.457-15.125 29.979-6.191 7.521-13.901 13.85-23.131 18.986-9.232 5.14-18.182 8.85-26.84 11.136-8.662 2.286-18.415 4.004-29.263 5.146 9.894 8.562 14.842 22.077 14.842 40.539v60.237c0 3.422 1.19 6.279 3.572 8.562 2.379 2.279 6.136 2.95 11.276 1.995 44.163-14.653 80.185-41.062 108.068-79.226 27.88-38.161 41.825-81.126 41.825-128.906-.01-39.771-9.818-76.454-29.414-110.049z"
|
|
1155
1321
|
}
|
|
1156
1322
|
) }),
|
|
1157
|
-
google: (props) => /* @__PURE__ */
|
|
1323
|
+
google: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1158
1324
|
"path",
|
|
1159
1325
|
{
|
|
1160
1326
|
fill: "currentColor",
|
|
1161
1327
|
d: "M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z"
|
|
1162
1328
|
}
|
|
1163
1329
|
) }),
|
|
1164
|
-
googleColorful: (props) => /* @__PURE__ */
|
|
1165
|
-
/* @__PURE__ */
|
|
1330
|
+
googleColorful: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 32 32", fill: "none", role: "img", ...props, children: [
|
|
1331
|
+
/* @__PURE__ */ jsx32(
|
|
1166
1332
|
"path",
|
|
1167
1333
|
{
|
|
1168
1334
|
d: "M16.2449 13.8184V18.4657H22.8349C22.5455 19.9602 21.6771 21.2257 20.3747 22.0766L24.3487 25.0985C26.6642 23.004 28 19.9276 28 16.273C28 15.4221 27.9221 14.6039 27.7773 13.8185L16.2449 13.8184Z",
|
|
1169
1335
|
fill: "#4285F4"
|
|
1170
1336
|
}
|
|
1171
1337
|
),
|
|
1172
|
-
/* @__PURE__ */
|
|
1338
|
+
/* @__PURE__ */ jsx32(
|
|
1173
1339
|
"path",
|
|
1174
1340
|
{
|
|
1175
1341
|
d: "M5.3137 10.6221C4.47886 12.2366 4.00024 14.0584 4.00024 16.0002C4.00024 17.942 4.47886 19.7639 5.3137 21.3784C5.3137 21.3892 9.388 18.2802 9.388 18.2802C9.14311 17.5602 8.99835 16.7966 8.99835 16.0001C8.99835 15.2036 9.14311 14.44 9.388 13.72L5.3137 10.6221Z",
|
|
1176
1342
|
fill: "#FBBC05"
|
|
1177
1343
|
}
|
|
1178
1344
|
),
|
|
1179
|
-
/* @__PURE__ */
|
|
1345
|
+
/* @__PURE__ */ jsx32(
|
|
1180
1346
|
"path",
|
|
1181
1347
|
{
|
|
1182
1348
|
d: "M16.2448 8.77821C18.0482 8.77821 19.6511 9.3891 20.9313 10.5673L24.4378 7.13097C22.3116 5.18917 19.551 4 16.2448 4C11.4582 4 7.32833 6.69456 5.31348 10.6219L9.38766 13.7201C10.3561 10.8837 13.0611 8.77821 16.2448 8.77821Z",
|
|
1183
1349
|
fill: "#EA4335"
|
|
1184
1350
|
}
|
|
1185
1351
|
),
|
|
1186
|
-
/* @__PURE__ */
|
|
1352
|
+
/* @__PURE__ */ jsx32(
|
|
1187
1353
|
"path",
|
|
1188
1354
|
{
|
|
1189
1355
|
d: "M9.38238 18.2842L8.48609 18.9566L5.31348 21.3784C7.32833 25.2947 11.4579 28.0002 16.2445 28.0002C19.5506 28.0002 22.3224 26.9311 24.3484 25.0984L20.3744 22.0766C19.2835 22.7966 17.892 23.233 16.2445 23.233C13.0609 23.233 10.3559 21.1275 9.38739 18.2911L9.38238 18.2842Z",
|
|
@@ -1191,7 +1357,7 @@ var Icons = {
|
|
|
1191
1357
|
}
|
|
1192
1358
|
)
|
|
1193
1359
|
] }),
|
|
1194
|
-
instagram: (props) => /* @__PURE__ */
|
|
1360
|
+
instagram: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32(
|
|
1195
1361
|
"path",
|
|
1196
1362
|
{
|
|
1197
1363
|
fillRule: "evenodd",
|
|
@@ -1199,14 +1365,14 @@ var Icons = {
|
|
|
1199
1365
|
clipRule: "evenodd"
|
|
1200
1366
|
}
|
|
1201
1367
|
) }),
|
|
1202
|
-
linkedin: (props) => /* @__PURE__ */
|
|
1368
|
+
linkedin: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 32 32", fill: "none", ...props, children: /* @__PURE__ */ jsx32(
|
|
1203
1369
|
"path",
|
|
1204
1370
|
{
|
|
1205
1371
|
d: "M16 4C9.4 4 4 9.42714 4 16.0603C4 22.0121 8.404 26.9568 14.08 28V19.4372H11.08V16.0603H14.08V13.407C14.08 10.392 16 8.70352 18.76 8.70352C19.6 8.70352 20.56 8.82412 21.4 8.94472V12.0201H19.84C18.4 12.0201 18.04 12.7437 18.04 13.7085V16.0603H21.22L20.68 19.4372H18.04V27.9879C23.71 26.9387 28 22.0121 28 16.0603C28 9.42714 22.6 4 16 4Z",
|
|
1206
1372
|
fill: "currentColor"
|
|
1207
1373
|
}
|
|
1208
1374
|
) }),
|
|
1209
|
-
linkedinColorful: (props) => /* @__PURE__ */
|
|
1375
|
+
linkedinColorful: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 32 32", fill: "none", ...props, children: /* @__PURE__ */ jsx32(
|
|
1210
1376
|
"path",
|
|
1211
1377
|
{
|
|
1212
1378
|
fillRule: "evenodd",
|
|
@@ -1215,8 +1381,8 @@ var Icons = {
|
|
|
1215
1381
|
fill: "#0077B5"
|
|
1216
1382
|
}
|
|
1217
1383
|
) }),
|
|
1218
|
-
microsoft: (props) => /* @__PURE__ */
|
|
1219
|
-
nextjs: (props) => /* @__PURE__ */
|
|
1384
|
+
microsoft: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: /* @__PURE__ */ jsx32("path", { fill: "currentColor", d: "M2 3h9v9H2zm9 19H2v-9h9zM21 3v9h-9V3zm0 19h-9v-9h9z" }) }),
|
|
1385
|
+
nextjs: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 15 15", ...props, children: /* @__PURE__ */ jsx32(
|
|
1220
1386
|
"path",
|
|
1221
1387
|
{
|
|
1222
1388
|
fill: "currentColor",
|
|
@@ -1225,37 +1391,37 @@ var Icons = {
|
|
|
1225
1391
|
d: "M0 7.5C0 3.35786 3.35786 0 7.5 0C11.6421 0 15 3.35786 15 7.5C15 10.087 13.6902 12.3681 11.6975 13.7163L4.90687 4.20942C4.78053 4.03255 4.5544 3.95756 4.34741 4.02389C4.14042 4.09022 4 4.28268 4 4.50004V12H5V6.06027L10.8299 14.2221C9.82661 14.7201 8.696 15 7.5 15C3.35786 15 0 11.6421 0 7.5ZM10 10V4H11V10H10Z"
|
|
1226
1392
|
}
|
|
1227
1393
|
) }),
|
|
1228
|
-
npm: (props) => /* @__PURE__ */
|
|
1394
|
+
npm: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1229
1395
|
"path",
|
|
1230
1396
|
{
|
|
1231
1397
|
d: "M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z",
|
|
1232
1398
|
fill: "currentColor"
|
|
1233
1399
|
}
|
|
1234
1400
|
) }),
|
|
1235
|
-
openai: (props) => /* @__PURE__ */
|
|
1236
|
-
paypal: (props) => /* @__PURE__ */
|
|
1401
|
+
openai: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", role: "img", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" }) }),
|
|
1402
|
+
paypal: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1237
1403
|
"path",
|
|
1238
1404
|
{
|
|
1239
1405
|
d: "M7.076 21.337H2.47a.641.641 0 0 1-.633-.74L4.944.901C5.026.382 5.474 0 5.998 0h7.46c2.57 0 4.578.543 5.69 1.81 1.01 1.15 1.304 2.42 1.012 4.287-.023.143-.047.288-.077.437-.983 5.05-4.349 6.797-8.647 6.797h-2.19c-.524 0-.968.382-1.05.9l-1.12 7.106zm14.146-14.42a3.35 3.35 0 0 0-.607-.541c-.013.076-.026.175-.041.254-.93 4.778-4.005 7.201-9.138 7.201h-2.19a.563.563 0 0 0-.556.479l-1.187 7.527h-.506l-.24 1.516a.56.56 0 0 0 .554.647h3.882c.46 0 .85-.334.922-.788.06-.26.76-4.852.816-5.09a.932.932 0 0 1 .923-.788h.58c3.76 0 6.705-1.528 7.565-5.946.36-1.847.174-3.388-.777-4.471z",
|
|
1240
1406
|
fill: "currentColor"
|
|
1241
1407
|
}
|
|
1242
1408
|
) }),
|
|
1243
|
-
pelatform: (props) => /* @__PURE__ */
|
|
1409
|
+
pelatform: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 300 300", ...props, children: /* @__PURE__ */ jsx32(
|
|
1244
1410
|
"path",
|
|
1245
1411
|
{
|
|
1246
1412
|
fill: "currentColor",
|
|
1247
1413
|
d: "M128.522 1.522c-32.588 5.306-62.029 20.107-84.303 42.38C11.915 76.206-4.329 122.766 1.097 167.5c7.82 64.464 55.004 115.796 119.215 129.692 13.77 2.981 43.538 3.228 57.152.476 55.106-11.142 98.806-49.775 115.475-102.085 9.652-30.288 9.28-64.659-1.019-94.282-13.203-37.974-41.238-69.366-77.545-86.829-9.214-4.432-22.787-8.877-35.198-11.527-12.922-2.76-38.101-3.467-50.655-1.423m45.43 23.051c25.127 4.747 47.405 16.665 66.107 35.368 18.907 18.906 30.066 39.63 35.57 66.059 2.173 10.433 2.429 35.004.478 46-1.644 9.273-7.255 26.356-11.31 34.44-12.206 24.332-34.074 46.206-58.297 58.317-37.669 18.832-85.803 16.865-121.763-4.977-32.079-19.483-53.841-50.921-60.419-87.28-2.115-11.696-2.107-33.116.019-45 5.217-29.172 20.878-56.039 43.866-75.257C88.177 35.545 110.634 25.946 136.5 23.05c9.765-1.094 27.393-.377 37.452 1.523M132.5 32.582c-17.187 2.652-35.032 9.653-49.67 19.487-9.019 6.061-25.684 23.052-31.743 32.367-19.802 30.442-24.936 66.068-14.488 100.534 10.763 35.502 38.905 64.97 73.472 76.934 37.229 12.886 76.705 7.51 108.412-14.763 36.802-25.851 55.968-71.116 48.91-115.511-4.458-28.042-18.237-52.604-40.544-72.276-10.285-9.071-26.471-18.003-40.349-22.267-18.878-5.802-36.218-7.248-54-4.505m89.497 40.668c-.003 1.59-4.605 18.817-6.612 24.75-.837 2.475-2.503 5.57-3.703 6.879-4.588 5.002-5.729 5.121-49.15 5.121-22.293 0-40.532.218-40.532.484 0 .677-10.97 43.679-11.611 45.516-.541 1.551-1.105 1.021-12.792-12.019C86.59 131.698 78 118.349 78 113.527c0-3.566 7.168-32.105 8.856-35.259.622-1.162 2.32-3.048 3.773-4.19C93.24 72.023 93.983 72 157.635 72c50.827 0 64.364.263 64.362 1.25m-37.204 62.319c6.763 8.973 10.207 15.902 10.207 20.535 0 4.848-7.331 31.946-9.565 35.355-3.203 4.888-6.075 5.579-25.942 6.24l-18.441.613-.976 3.094c-.537 1.702-3.299 11.644-6.139 22.094s-5.486 19.351-5.879 19.779c-.394.429-4.574-3.222-9.288-8.112-14.649-15.196-22.751-27.719-22.75-35.167 0-1.925 1.971-10.681 4.38-19.457 3.804-13.856 4.792-16.325 7.506-18.75l3.126-2.793h19.505c19.297 0 19.515-.024 20.398-2.25.491-1.238 2.559-8.55 4.596-16.25s4.641-17.333 5.786-21.407l2.083-7.407 8.084 8.476c4.447 4.662 10.436 11.595 13.309 15.407"
|
|
1248
1414
|
}
|
|
1249
1415
|
) }),
|
|
1250
|
-
pnpm: (props) => /* @__PURE__ */
|
|
1416
|
+
pnpm: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1251
1417
|
"path",
|
|
1252
1418
|
{
|
|
1253
1419
|
d: "M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z",
|
|
1254
1420
|
fill: "currentColor"
|
|
1255
1421
|
}
|
|
1256
1422
|
) }),
|
|
1257
|
-
postgresql: (props) => /* @__PURE__ */
|
|
1258
|
-
prisma: (props) => /* @__PURE__ */
|
|
1423
|
+
postgresql: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 32 32", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M22.839 0c-1.245 0.011-2.479 0.188-3.677 0.536l-0.083 0.027c-0.751-0.131-1.516-0.203-2.276-0.219-1.573-0.027-2.923 0.353-4.011 0.989-1.073-0.369-3.297-1.016-5.641-0.885-1.629 0.088-3.411 0.583-4.735 1.979-1.312 1.391-2.009 3.547-1.864 6.485 0.041 0.807 0.271 2.124 0.656 3.837 0.38 1.709 0.917 3.709 1.589 5.537 0.672 1.823 1.405 3.463 2.552 4.577 0.572 0.557 1.364 1.032 2.296 0.991 0.652-0.027 1.24-0.313 1.751-0.735 0.249 0.328 0.516 0.468 0.755 0.599 0.308 0.167 0.599 0.281 0.907 0.355 0.552 0.14 1.495 0.323 2.599 0.135 0.375-0.063 0.771-0.187 1.167-0.359 0.016 0.437 0.032 0.869 0.047 1.307 0.057 1.38 0.095 2.656 0.505 3.776 0.068 0.183 0.251 1.12 0.969 1.953 0.724 0.833 2.129 1.349 3.739 1.005 1.131-0.24 2.573-0.677 3.532-2.041 0.948-1.344 1.375-3.276 1.459-6.412 0.020-0.172 0.047-0.312 0.072-0.448l0.224 0.021h0.027c1.208 0.052 2.521-0.12 3.62-0.631 0.968-0.448 1.703-0.901 2.239-1.708 0.131-0.199 0.281-0.443 0.319-0.86 0.041-0.411-0.199-1.063-0.595-1.364-0.791-0.604-1.291-0.375-1.828-0.26-0.525 0.115-1.063 0.176-1.599 0.192 1.541-2.593 2.645-5.353 3.276-7.792 0.375-1.443 0.584-2.771 0.599-3.932 0.021-1.161-0.077-2.187-0.771-3.077-2.177-2.776-5.235-3.548-7.599-3.573-0.073 0-0.145 0-0.219 0zM22.776 0.855c2.235-0.021 5.093 0.604 7.145 3.228 0.464 0.589 0.6 1.448 0.584 2.511s-0.213 2.328-0.573 3.719c-0.692 2.699-2.011 5.833-3.859 8.652 0.063 0.047 0.135 0.088 0.208 0.115 0.385 0.161 1.265 0.296 3.025-0.063 0.443-0.095 0.767-0.156 1.105 0.099 0.167 0.14 0.255 0.349 0.244 0.568-0.020 0.161-0.077 0.317-0.177 0.448-0.339 0.509-1.009 0.995-1.869 1.396-0.76 0.353-1.855 0.536-2.817 0.547-0.489 0.005-0.937-0.032-1.319-0.152l-0.020-0.004c-0.147 1.411-0.484 4.203-0.704 5.473-0.176 1.025-0.484 1.844-1.072 2.453-0.589 0.615-1.417 0.979-2.537 1.219-1.385 0.297-2.391-0.021-3.041-0.568s-0.948-1.276-1.125-1.719c-0.124-0.307-0.187-0.703-0.249-1.235-0.063-0.531-0.104-1.177-0.136-1.911-0.041-1.12-0.057-2.24-0.041-3.365-0.577 0.532-1.296 0.88-2.068 1.016-0.921 0.156-1.739 0-2.228-0.12-0.24-0.063-0.475-0.151-0.693-0.271-0.229-0.12-0.443-0.255-0.588-0.527-0.084-0.156-0.109-0.337-0.073-0.509 0.041-0.177 0.145-0.328 0.287-0.443 0.265-0.215 0.615-0.333 1.14-0.443 0.959-0.199 1.297-0.333 1.5-0.496 0.172-0.135 0.371-0.416 0.713-0.828 0-0.015 0-0.036-0.005-0.052-0.619-0.020-1.224-0.181-1.771-0.479-0.197 0.208-1.224 1.292-2.468 2.792-0.521 0.624-1.099 0.984-1.713 1.011-0.609 0.025-1.163-0.281-1.631-0.735-0.937-0.912-1.688-2.48-2.339-4.251s-1.177-3.744-1.557-5.421c-0.375-1.683-0.599-3.037-0.631-3.688-0.14-2.776 0.511-4.645 1.625-5.828s2.641-1.625 4.131-1.713c2.672-0.151 5.213 0.781 5.724 0.979 0.989-0.672 2.265-1.088 3.859-1.063 0.756 0.011 1.505 0.109 2.24 0.292l0.027-0.016c0.323-0.109 0.651-0.208 0.984-0.28 0.907-0.215 1.833-0.324 2.76-0.339zM22.979 1.745h-0.197c-0.76 0.009-1.527 0.099-2.271 0.26 1.661 0.735 2.916 1.864 3.801 3 0.615 0.781 1.12 1.64 1.505 2.557 0.152 0.355 0.251 0.651 0.303 0.88 0.031 0.115 0.047 0.213 0.057 0.312 0 0.052 0.005 0.105-0.021 0.193 0 0.005-0.005 0.016-0.005 0.021 0.043 1.167-0.249 1.957-0.287 3.072-0.025 0.808 0.183 1.756 0.235 2.792 0.047 0.973-0.072 2.041-0.703 3.093 0.052 0.063 0.099 0.125 0.151 0.193 1.672-2.636 2.88-5.547 3.521-8.032 0.344-1.339 0.525-2.552 0.541-3.509 0.016-0.959-0.161-1.657-0.391-1.948-1.792-2.287-4.213-2.871-6.24-2.885zM16.588 2.088c-1.572 0.005-2.703 0.48-3.561 1.193-0.887 0.74-1.48 1.745-1.865 2.781-0.464 1.224-0.625 2.411-0.688 3.219l0.021-0.011c0.475-0.265 1.099-0.536 1.771-0.687 0.667-0.157 1.391-0.204 2.041 0.052 0.657 0.249 1.193 0.848 1.391 1.749 0.939 4.344-0.291 5.959-0.744 7.177-0.172 0.443-0.323 0.891-0.443 1.349 0.057-0.011 0.115-0.027 0.172-0.032 0.323-0.025 0.572 0.079 0.719 0.141 0.459 0.192 0.771 0.588 0.943 1.041 0.041 0.12 0.072 0.244 0.093 0.38 0.016 0.052 0.027 0.109 0.027 0.167-0.052 1.661-0.048 3.323 0.015 4.984 0.032 0.719 0.079 1.349 0.136 1.849 0.057 0.495 0.135 0.875 0.188 1.005 0.171 0.427 0.421 0.984 0.875 1.364 0.448 0.381 1.093 0.631 2.276 0.381 1.025-0.224 1.656-0.527 2.077-0.964 0.423-0.443 0.672-1.052 0.833-1.984 0.245-1.401 0.729-5.464 0.787-6.224-0.025-0.579 0.057-1.021 0.245-1.36 0.187-0.344 0.479-0.557 0.735-0.672 0.124-0.057 0.244-0.093 0.343-0.125-0.104-0.145-0.213-0.291-0.323-0.432-0.364-0.443-0.667-0.937-0.891-1.463-0.104-0.22-0.219-0.439-0.344-0.647-0.176-0.317-0.4-0.719-0.635-1.172-0.469-0.896-0.979-1.989-1.245-3.052-0.265-1.063-0.301-2.161 0.376-2.932 0.599-0.688 1.656-0.973 3.233-0.812-0.047-0.141-0.072-0.261-0.151-0.443-0.359-0.844-0.828-1.636-1.391-2.355-1.339-1.713-3.511-3.412-6.859-3.469zM7.735 2.156c-0.167 0-0.339 0.005-0.505 0.016-1.349 0.079-2.62 0.468-3.532 1.432-0.911 0.969-1.509 2.547-1.38 5.167 0.027 0.5 0.24 1.885 0.609 3.536 0.371 1.652 0.896 3.595 1.527 5.313 0.629 1.713 1.391 3.208 2.12 3.916 0.364 0.349 0.681 0.495 0.968 0.485 0.287-0.016 0.636-0.183 1.063-0.693 0.776-0.937 1.579-1.844 2.412-2.729-1.199-1.047-1.787-2.629-1.552-4.203 0.135-0.984 0.156-1.907 0.135-2.636-0.015-0.708-0.063-1.176-0.063-1.473 0-0.011 0-0.016 0-0.027v-0.005l-0.005-0.009c0-1.537 0.272-3.057 0.792-4.5 0.375-0.996 0.928-2 1.76-2.819-0.817-0.271-2.271-0.676-3.843-0.755-0.167-0.011-0.339-0.016-0.505-0.016zM24.265 9.197c-0.905 0.016-1.411 0.251-1.681 0.552-0.376 0.433-0.412 1.193-0.177 2.131 0.233 0.937 0.719 1.984 1.172 2.855 0.224 0.437 0.443 0.828 0.619 1.145 0.183 0.323 0.313 0.547 0.391 0.745 0.073 0.177 0.157 0.333 0.24 0.479 0.349-0.74 0.412-1.464 0.375-2.224-0.047-0.937-0.265-1.896-0.229-2.864 0.037-1.136 0.261-1.876 0.277-2.751-0.324-0.041-0.657-0.068-0.985-0.068zM13.287 9.355c-0.276 0-0.552 0.036-0.823 0.099-0.537 0.131-1.052 0.328-1.537 0.599-0.161 0.088-0.317 0.188-0.463 0.303l-0.032 0.025c0.011 0.199 0.047 0.667 0.063 1.365 0.016 0.76 0 1.728-0.145 2.776-0.323 2.281 1.333 4.167 3.276 4.172 0.115-0.469 0.301-0.944 0.489-1.443 0.541-1.459 1.604-2.521 0.708-6.677-0.145-0.677-0.437-0.953-0.839-1.109-0.224-0.079-0.457-0.115-0.697-0.109zM23.844 9.625h0.068c0.083 0.005 0.167 0.011 0.239 0.031 0.068 0.016 0.131 0.037 0.183 0.073 0.052 0.031 0.088 0.083 0.099 0.145v0.011c0 0.063-0.016 0.125-0.047 0.183-0.041 0.072-0.088 0.14-0.145 0.197-0.136 0.151-0.319 0.251-0.516 0.281-0.193 0.027-0.385-0.025-0.547-0.135-0.063-0.048-0.125-0.1-0.172-0.157-0.047-0.047-0.073-0.109-0.084-0.172-0.004-0.061 0.011-0.124 0.052-0.171 0.048-0.048 0.1-0.089 0.157-0.12 0.129-0.073 0.301-0.125 0.5-0.152 0.072-0.009 0.145-0.015 0.213-0.020zM13.416 9.849c0.068 0 0.147 0.005 0.22 0.015 0.208 0.032 0.385 0.084 0.525 0.167 0.068 0.032 0.131 0.084 0.177 0.141 0.052 0.063 0.077 0.14 0.073 0.224-0.016 0.077-0.048 0.151-0.1 0.208-0.057 0.068-0.119 0.125-0.192 0.172-0.172 0.125-0.385 0.177-0.599 0.151-0.215-0.036-0.412-0.14-0.557-0.301-0.063-0.068-0.115-0.141-0.157-0.219-0.047-0.073-0.067-0.156-0.057-0.24 0.021-0.14 0.141-0.219 0.256-0.26 0.131-0.043 0.271-0.057 0.411-0.052zM25.495 19.64h-0.005c-0.192 0.073-0.353 0.1-0.489 0.163-0.14 0.052-0.251 0.156-0.317 0.285-0.089 0.152-0.156 0.423-0.136 0.885 0.057 0.043 0.125 0.073 0.199 0.095 0.224 0.068 0.609 0.115 1.036 0.109 0.849-0.011 1.896-0.208 2.453-0.469 0.453-0.208 0.88-0.489 1.255-0.817-1.859 0.38-2.905 0.281-3.552 0.016-0.156-0.068-0.307-0.157-0.443-0.267zM14.787 19.765h-0.027c-0.072 0.005-0.172 0.032-0.375 0.251-0.464 0.52-0.625 0.848-1.005 1.151-0.385 0.307-0.88 0.469-1.875 0.672-0.312 0.063-0.495 0.135-0.615 0.192 0.036 0.032 0.036 0.043 0.093 0.068 0.147 0.084 0.333 0.152 0.485 0.193 0.427 0.104 1.124 0.229 1.859 0.104 0.729-0.125 1.489-0.475 2.141-1.385 0.115-0.156 0.124-0.391 0.031-0.641-0.093-0.244-0.297-0.463-0.437-0.52-0.089-0.043-0.183-0.068-0.276-0.084z" }) }),
|
|
1424
|
+
prisma: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "-27 0 310 310", ...props, children: /* @__PURE__ */ jsx32(
|
|
1259
1425
|
"path",
|
|
1260
1426
|
{
|
|
1261
1427
|
fill: "currentColor",
|
|
@@ -1263,10 +1429,10 @@ var Icons = {
|
|
|
1263
1429
|
fillRule: "nonzero"
|
|
1264
1430
|
}
|
|
1265
1431
|
) }),
|
|
1266
|
-
radix: (props) => /* @__PURE__ */
|
|
1267
|
-
/* @__PURE__ */
|
|
1268
|
-
/* @__PURE__ */
|
|
1269
|
-
/* @__PURE__ */
|
|
1432
|
+
radix: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 25 25", fill: "none", ...props, children: [
|
|
1433
|
+
/* @__PURE__ */ jsx32("path", { d: "M12 25C7.58173 25 4 21.4183 4 17C4 12.5817 7.58173 9 12 9V25Z", fill: "currentcolor" }),
|
|
1434
|
+
/* @__PURE__ */ jsx32("path", { d: "M12 0H4V8H12V0Z", fill: "currentcolor" }),
|
|
1435
|
+
/* @__PURE__ */ jsx32(
|
|
1270
1436
|
"path",
|
|
1271
1437
|
{
|
|
1272
1438
|
d: "M17 8C19.2091 8 21 6.20914 21 4C21 1.79086 19.2091 0 17 0C14.7909 0 13 1.79086 13 4C13 6.20914 14.7909 8 17 8Z",
|
|
@@ -1274,22 +1440,22 @@ var Icons = {
|
|
|
1274
1440
|
}
|
|
1275
1441
|
)
|
|
1276
1442
|
] }),
|
|
1277
|
-
radixui: (props) => /* @__PURE__ */
|
|
1443
|
+
radixui: (props) => /* @__PURE__ */ jsx32("svg", { fill: "none", viewBox: "4 0 17 25", ...props, children: /* @__PURE__ */ jsx32(
|
|
1278
1444
|
"path",
|
|
1279
1445
|
{
|
|
1280
1446
|
d: "M12 25a8 8 0 1 1 0-16v16zM12 0H4v8h8V0zM17 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z",
|
|
1281
1447
|
fill: "currentcolor"
|
|
1282
1448
|
}
|
|
1283
1449
|
) }),
|
|
1284
|
-
react: (props) => /* @__PURE__ */
|
|
1450
|
+
react: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1285
1451
|
"path",
|
|
1286
1452
|
{
|
|
1287
1453
|
d: "M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z",
|
|
1288
1454
|
fill: "currentColor"
|
|
1289
1455
|
}
|
|
1290
1456
|
) }),
|
|
1291
|
-
scira: (props) => /* @__PURE__ */
|
|
1292
|
-
/* @__PURE__ */
|
|
1457
|
+
scira: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 910 934", fill: "none", width: "910", height: "934", ...props, children: [
|
|
1458
|
+
/* @__PURE__ */ jsx32(
|
|
1293
1459
|
"path",
|
|
1294
1460
|
{
|
|
1295
1461
|
d: "M647.664 197.775C569.13 189.049 525.5 145.419 516.774 66.8849C508.048 145.419 464.418 189.049 385.884 197.775C464.418 206.501 508.048 250.131 516.774 328.665C525.5 250.131 569.13 206.501 647.664 197.775Z",
|
|
@@ -1299,7 +1465,7 @@ var Icons = {
|
|
|
1299
1465
|
strokeLinejoin: "round"
|
|
1300
1466
|
}
|
|
1301
1467
|
),
|
|
1302
|
-
/* @__PURE__ */
|
|
1468
|
+
/* @__PURE__ */ jsx32(
|
|
1303
1469
|
"path",
|
|
1304
1470
|
{
|
|
1305
1471
|
d: "M516.774 304.217C510.299 275.491 498.208 252.087 480.335 234.214C462.462 216.341 439.058 204.251 410.333 197.775C439.059 191.3 462.462 179.209 480.335 161.336C498.208 143.463 510.299 120.06 516.774 91.334C523.25 120.059 535.34 143.463 553.213 161.336C571.086 179.209 594.49 191.3 623.216 197.775C594.49 204.251 571.086 216.341 553.213 234.214C535.34 252.087 523.25 275.491 516.774 304.217Z",
|
|
@@ -1309,7 +1475,7 @@ var Icons = {
|
|
|
1309
1475
|
strokeLinejoin: "round"
|
|
1310
1476
|
}
|
|
1311
1477
|
),
|
|
1312
|
-
/* @__PURE__ */
|
|
1478
|
+
/* @__PURE__ */ jsx32(
|
|
1313
1479
|
"path",
|
|
1314
1480
|
{
|
|
1315
1481
|
d: "M857.5 508.116C763.259 497.644 710.903 445.288 700.432 351.047C689.961 445.288 637.605 497.644 543.364 508.116C637.605 518.587 689.961 570.943 700.432 665.184C710.903 570.943 763.259 518.587 857.5 508.116Z",
|
|
@@ -1318,7 +1484,7 @@ var Icons = {
|
|
|
1318
1484
|
strokeLinejoin: "round"
|
|
1319
1485
|
}
|
|
1320
1486
|
),
|
|
1321
|
-
/* @__PURE__ */
|
|
1487
|
+
/* @__PURE__ */ jsx32(
|
|
1322
1488
|
"path",
|
|
1323
1489
|
{
|
|
1324
1490
|
d: "M700.432 615.957C691.848 589.05 678.575 566.357 660.383 548.165C642.191 529.973 619.499 516.7 592.593 508.116C619.499 499.533 642.191 486.258 660.383 468.066C678.575 449.874 691.848 427.181 700.432 400.274C709.015 427.181 722.289 449.874 740.481 468.066C758.673 486.258 781.365 499.533 808.271 508.116C781.365 516.7 758.673 529.973 740.481 548.165C722.289 566.357 709.015 589.05 700.432 615.957Z",
|
|
@@ -1327,7 +1493,7 @@ var Icons = {
|
|
|
1327
1493
|
strokeLinejoin: "round"
|
|
1328
1494
|
}
|
|
1329
1495
|
),
|
|
1330
|
-
/* @__PURE__ */
|
|
1496
|
+
/* @__PURE__ */ jsx32(
|
|
1331
1497
|
"path",
|
|
1332
1498
|
{
|
|
1333
1499
|
d: "M889.949 121.237C831.049 114.692 798.326 81.9698 791.782 23.0692C785.237 81.9698 752.515 114.692 693.614 121.237C752.515 127.781 785.237 160.504 791.782 219.404C798.326 160.504 831.049 127.781 889.949 121.237Z",
|
|
@@ -1337,7 +1503,7 @@ var Icons = {
|
|
|
1337
1503
|
strokeLinejoin: "round"
|
|
1338
1504
|
}
|
|
1339
1505
|
),
|
|
1340
|
-
/* @__PURE__ */
|
|
1506
|
+
/* @__PURE__ */ jsx32(
|
|
1341
1507
|
"path",
|
|
1342
1508
|
{
|
|
1343
1509
|
d: "M791.782 196.795C786.697 176.937 777.869 160.567 765.16 147.858C752.452 135.15 736.082 126.322 716.226 121.237C736.082 116.152 752.452 107.324 765.16 94.6152C777.869 81.9065 786.697 65.5368 791.782 45.6797C796.867 65.5367 805.695 81.9066 818.403 94.6152C831.112 107.324 847.481 116.152 867.338 121.237C847.481 126.322 831.112 135.15 818.403 147.858C805.694 160.567 796.867 176.937 791.782 196.795Z",
|
|
@@ -1347,7 +1513,7 @@ var Icons = {
|
|
|
1347
1513
|
strokeLinejoin: "round"
|
|
1348
1514
|
}
|
|
1349
1515
|
),
|
|
1350
|
-
/* @__PURE__ */
|
|
1516
|
+
/* @__PURE__ */ jsx32(
|
|
1351
1517
|
"path",
|
|
1352
1518
|
{
|
|
1353
1519
|
d: "M760.632 764.337C720.719 814.616 669.835 855.1 611.872 882.692C553.91 910.285 490.404 924.255 426.213 923.533C362.022 922.812 298.846 907.419 241.518 878.531C184.19 849.643 134.228 808.026 95.4548 756.863C56.6815 705.7 30.1238 646.346 17.8129 583.343C5.50207 520.339 7.76433 455.354 24.4266 393.359C41.089 331.364 71.7099 274.001 113.947 225.658C156.184 177.315 208.919 139.273 268.117 114.442",
|
|
@@ -1358,43 +1524,43 @@ var Icons = {
|
|
|
1358
1524
|
}
|
|
1359
1525
|
)
|
|
1360
1526
|
] }),
|
|
1361
|
-
scribble: (props) => /* @__PURE__ */
|
|
1362
|
-
/* @__PURE__ */
|
|
1527
|
+
scribble: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 300 300", ...props, children: [
|
|
1528
|
+
/* @__PURE__ */ jsx32(
|
|
1363
1529
|
"path",
|
|
1364
1530
|
{
|
|
1365
1531
|
fill: "#77CBB9",
|
|
1366
1532
|
d: "M97.48 34.45c.98.42.61.77.23.72-.54-.06-1.12-.4-1.7-.63.25-.2.46-.58.78-.56.54.02 1.14.29.69.46-2.3-.18-3.47-.99-3.75-.1-.04.14-.18.28-.13.42.32.86-.9.49-1.55.55-.19.02-.74-.19-.74-.21.03-.36.04-.74.26-1.05.12-.16.74-.13.9-.29.2-.21.34-.52.19-.78-.11-.19-.75-.47-1.13-.51-.39-.04-1.06.13-1.04.27.12 1.05-.96 1.18-2.53 1.04.1.17.25.35.3.51.12.37.99.95-.04 1.01-.57.03-1.79-.13-1.92-.28-.46-.52-.91-.83-1.72-.7-.56.09-1.19.24-1.37.51-.27.41-.46.96-.1 1.45.28.38 1.42.77 2.11 1.19.33.2.74.51.74.67 0 .16-.43.23-.74.27-.82.1-1.54-.08-1.94-.8-.46-.83-1.27-.71-2.07-.72-1.04-.01-.46.45-.17.86.29.4.46.79.69 1.18-1.31-.52-1.59-.34-1.62-.02-.04.05.06.24.14.4.07.16.14.32.22.48.13.31.23.61.23.87 0 .35-.11.73-.28.82-.6.31-.99.88-.36 2.52.64 1.65.61 1.66-.07 2.01-.33.18-1.04-.92-1.04.41 0 2.29-.97.45-1.5.78-.28.57-.59.79-.73.59-.18-.27-.24-.87-.35-1.34.26 0 .52-.05.79.07.07.03.16.56.29.68.04-.99.11-1.46.24-1.86.06-.18.22-.22.33-.32-.44-.49-.88-1.1-1.32-1.44-.19-.15-.54.11-.61.44-.14.72-.05 1.6-.84 1.09-.28-.19-.59.87-.94 1.21-.2.2-.54.25-.78.05-.18-.15-.41-.85-.42-1.23 0-.4.18-.84.37-1.01.33-.32.99-.24 1.02-.67.08-1.28.46-1.23 1.04-1.17.63.06.77-.65.21-1.98-.4-.96-.36-1.53.03-2.17.34-.55.44-1.31.44-2.2l-.02-.69c0-.21-.12-.58.13-.53.34-.09.66-.19.99-.29.78-.24.4-.6-.04-.94-.47-.37-1.27-.68-1.94-1.01-.28.15-.58.29-.83.46.08.77.37 1.74.55 2.58-1.3-1.09-.83 2.17-1.61 2.44.68.45 1.29 1.53 1.18 2.63-.08.77-.79.86-1.39.05-.24.91.28 3.35-1.07 2.02-.56-.56-.68.05-.73.94-.04.78-.12 1.53-.18 2.3 1.5-.54 1.53-.43 1.36 2.35l-.03.42c.54.63 1.68.08 1.36 2.43-.28 2.01-1.05.15-1.57.25l-.22 2.68c.25.12.51.16.74.38.25.26.51.62.67 1.04.05.11-.28.89-.33.85-.78-.65-.68.74-.98 1.19-.26.38-.57.75-.13 1.21.83.89 1.04 2.39 1.51 3.57.04.09.44-.06.44-.13.02-.93 0-1.88-.02-2.82 0-.49-.15-1.27-.02-1.44.87-1.09.63-2.27 0-3.63-.3-.65-.26-.96.11-1.22.29-.2.51-.59.8-.77.46-.29.49-.7.12-1.49-.23-.49-.38-1.1-.61-1.6-.29-.65-.3-1.01.09-1.23.26-.15.49-.64.7.32.35 1.61 1.1 1.94 2.33 1.67.67.03.92.68.85 1.01-.09.44-.4.8-.69.89-.12.04-.44-.75-.67-1.17.25-.37.5-.73.51-.74-.56 2.03-.61 3.35-.66 4.64.65-.91.96.91 1.51.99.06.01.13.66.24.98.08.23.31.59.35.57.34-.24.65-.55.98-.8.43-.32 1.07.23 1.15 1.04.06.59-.07 1.14-.12 1.72.58-.3 1.12-.3 1.39.9.06.27-.02.81-.09.81-.26-.02-.56-.14-.81-.33-.2-.15-.37-.45-.55-.69l-.21 2.76c.87.55 1.54.47 1.91-.69.05-.17.54-.19.68-.02.18.2.24.65.28.99.02.21-.09.42-.14.63.41.16.87.51 1.22.45 1.19-.22.76 1.48 1.47 1.7.67.22.45.7.47 1.13.06 1.26.07 1.21 1.86.89.71-.3.87-.07 1.04.15-.4.19-.81.39-1.22.61-.07-.19-.25-.47-.2-.55.22-.33.52-.59.37-.2-.51 1-.53 1.59-.68 1.6-1.25.19-2.55-.73-3.79-.04-.57-.75-.8-1.83-1.5-2.56-.15-.16-.19-.81-.23-.81-.54.03-.98-1.45-1.58-.35-.8 1.48-1.2.72-1.59-.71-.27-1-1.02-.7-1.56-.96-.12 1.14.12 2.75-1.31 2.07-.1-.05-.33.4-.43.69-.62 1.81-.62 1.87-1.44.35-.17-.31-.36-.61-.47-.97-.37-1.18-.66-.25-.9.11-.48.7.03.61.25.89 1.07 1.37 1.06 1.33.25 3.42l2.56.2c.03-.38.03-.76.08-1.13.05-.35.14-.69.21-1.03.16.18.33.35.49.53.33.38.34.7-.05 1.07-.11.1-.15.4-.22.61.66.25 1.64-.42 1.94.66.11.29-.64 1.05-1.14 1.42-.7.53-.18.82.13 1.08.22.18.6.17.9.24.18-1.16.49-1.42 1.64-1.46-.04-.55.09-.99.61-1.28.21-.14.59-.35.64-.26.17.3.27.61.32.88.04.24-.02.5.74 1.21.35.73.09.91-.16 1.08l-.63-1.28c.17-.07.42-.26.51-.2.36.23.68.53.28.4-1.29-.48-1.8-.52-2.31-.55q-.12 1.53-1.64 1.46c-.15 1.44-.18 1.61-1.27 1.44-1.27-.19-.46.7-.69 1.02-.14.2-.38.33-.57.5-.07-.14-.22-.3-.2-.43.1-.72-.25-1.75-.7-1.52-.76.39-.81-.13-1.12-.38.24-.29.46-.61.74-.85.17-.14.48-.08.68-.19.09-.05.15-.37.09-.46-.13-.17-.41-.42-.53-.37-.59.23-1.25.88-1.71.75-.52-.15-.83-.98-1.27-1.48-.27-.3-.67-.5-.9-.82-.04-.05.02-.16.09-.29.04-.07.08-.12.12-.22.04-.12.08-.24.12-.34-.57-.06-1.16-.27-1.71-.08-.17.24-.21.89-.28 1.31-.04.26-.04.52-.06.78.08 0 .19.05.25 0 .38-.28.77-.86 1.21-.23.18.25.13.92-.08 1.15-.52.57-.83-.06-1.16-.38-.05-.04-.16-.02-.24-.02-.02.34 0 .68-.07 1.01-.2.89.12 1.25 1 1.16.33-.03.66.03.99.05.09-.43-.88-.95.09-1.29.18-.06.47.09.67.21.38.23.3.47-.05.7-.11.07-.13.27-.2.41.09 0 .17 0 .26.02 1.27.2 1.26.2 1.19 1.62-.03.66.52.76.8.47.68-.68.95.06 1.06.35.17.45.04 1 .09 1.51 0 .1.26.17.41.26.31-1.68.72-.17 1.09-.04.66.24.13 1.46 1.15 1.41.02 0 .1.45.08.45-.61.17-1.23.32-1.85.47-.27.41.95.69.1 1.15l-.54.28c-.04-.15-.11-.3-.12-.45 0-.33.03-.67.05-1.01-.34-.02-.68-.01-1.01-.06-.66-.1-1.13-.06-1.12.85 0 .33-.37.91-.64.95-.9.16-1.12 1.17-1.97 1.39-.94.25-.12.87-.12 1.32.73 0 .71 0 1.22-.86.13-.21.42-.53.55-.49.27.07.57.32.67.57.07.16-.19.47-.31.71.31.08.62.19.94.22.51.05 1.03.06 1.86-.83.53-.48.78-.19.72 0-.09.29-.37.53-.61.74-.06.06-.35 0-.4-.09-.14-.22-.34-.55-.26-.72.12-.27.44-.44.55.07-.39 1.05-.42 1.24-.53 1.33-.72.66.29.73.35 1.12.27-.1.67-.11.79-.31.16-.26.02-.69.16-.97.15-.28.47-.49.74-.69.2-.15.45-.23.67-.34-.28-.13-.64-.2-.83-.42s-.26-.57-.32-.88c-.03-.17.02-.41.13-.53.39-.43.86-.78 1.21-1.24.09-.12-.89-.6.08-.71 1.27-.14 1.42.04 1.49 1.46l.03.49c.18-.04.36-.09.55-.11l.95-.13c-.18-.98.67-1.28 1.17-1.8.55-.56 1.03-1.02-.23-1.29-.27-.06-.5-.45-.67-.74-.04-.07.26-.34.42-.5.1-.09.24-.16.37-.2.03-.01.11.12.17.18l1.43 1.38c.41-.44.8-.9 1.25-1.3.15-.13.51-.2.67-.1.15.09.19.42.22.65.08.62-.2.77-.83.9-.82.17-.75.85.3 1.7.18.65-.14.97-.47 1.29l-.68-.76c.38-.19.41-.92 1.04-.73.2.06.37.21.11.2-1.04-.26-1.47-.26-1.89-.31-.48-.06-.85 0-.81.61.08 1.47-.99.69-1.59.82-.03.52-.05 1.04.75 1.93.37.73.08 1.04-.27 1.17-.12.05-.56-.32-.58-.52-.03-.33.17-.67.27-1.01.42.22.84.44.57.36-1.59-.37-2.63-.81-2.46.69.01.1-.48.25-.74.37l-.81.33c.13.29.2.63.4.84.2.21.68.21.8.43.18.33.24.78.18 1.16-.02.15-.49.28-.77.34-.24.05-.5-.01-.75-.02-.17 1.16-.46 1.43-1.62 1.49-.02 1.54-.01 1.54 1.5 1.63.16 0 .33.01.66-.77.45-.41.84-.1.79.09-.07.28-.45.48-.7.71-.07-.35-.18-.69-.2-1.04 0-.15.16-.32.11.24-.23 1.24-1.02 1.7-.16 2.15.28.15.76.21.82.41.13.47.2 1.04.05 1.49-.3.94-.54-.24-.76-.09-.47.32-.39 1.01.31 1.5.69.49.51 1.33.2 1.42-.9.25-1.33.98-2 1.44-.1.07-.39-.04-.52-.16-.21-.18-.59-.4-.12-.73.2-.14.38-.32.59-.46.97-.61.97-.81.1-1.57-.35-.3-.68-.7-.85-1.13-.31-.8-.64-.39-1.12-.2-.63.25-.19 1.27-1.26 1.33-.81.04-.84.86-.12 1.36.19.13.52.08.66.23.13.15.2.52.11.67-.1.15-.42.21-.65.22-.12 0-.24-.21-.38-.3-.29-.2-.59-.55-.88-.55-.36 0-.97.24-1.03.48-.25 1.06-1.76 1.12-1.72 2.34l1.54.05c0-.09-.02-.18.01-.26.52-1.37.63-1.41 1.45-.6.46.46.78 1.16 1.99.11.72-.39 1.03-.1 1.17.25.05.12-.31.57-.51.59-.32.04-.67-.16-1.01-.26.22-.43.43-.86.35-.59-.38 1.37-.4 1.89-.42 2.41.62-.11 1.57.53 1.68-.79 0-.08.58-.14.89-.16.14 0 .29.09.44.15-.13.12-.25.34-.38.35-.89.05-.47 1.08-1.03 1.36.37.47.76.9 1.9-.02 1.27-.86 1.12-.28 1.11.21-.02.85-.64.5-1.07.58-.8.13-.42-.46-.47-.77-.11-.7.26-.88.42-.01-.93 2.41-1.04 2.46-2.11 1.4l-.18-.19c-.41-.41-1.1-.31-1.26.25-.11.4-.04.86.84 1.29.46.4.15.75-.22.97-.07.04-.44-.46-.68-.71.36-.25.7-.54 1.08-.72.1-.05.34.21-.19.46-1.14-.17-1.4-.35-1.65-.53-.09.29-.24.58-.26.88-.02.21.12.62.2.63 1.34.05.6 1.06.77 1.64 1.12.01 1.07-.03 2.12-1.47.45-.62 1.17-1.03 1.79-1.51.02-.02.24.18.34.3.63.72.59 1.14-.15 1.74-.13.11-.24.25-.35.38 1.21.08.84.98.86 1.68 0 .27.03.23.86.72.2.12.86.3.41.9-.39.52-.72.44-1.1.03-.08.57-.09 1.17-.28 1.71-.06.17-.56.19-.86.29-.22.08-.44.17-.66.26.12.3.19.62.37.88.13.19.4.27.58.43.2.19.56.46.52.61-.07.29-.34.61-.61.74-.14.07-.69-.32-.67-.38.4-1.27-2.46-.73-1.28-2.39-.57-.08-1.15-.23-1.71-.17-.14.01-.23.72-.29 1.12-.13.84.12 1.04.83.48.03-.02.44.46.67.71-.31.21-.6.45-.93.6-.13.06-.35-.12-.53-.19-.36 1.01 0 1.68.96 1.95.2.06.37.46.42.72.09.45 0 .9-.61.8-.86-.14-1.01.32-.93 1.04.04.34 0 .69 0 1.04l.43-.17c.28-.11.56-.26.85-.31.05 0 .3.51.24.58-.26.3-.59.57-.94.74-.11.06-.39-.21-.58-.33 0 .34.02.69-.01 1.03-.07.68 0 1.2.89 1.07.32-.05.66-.05.99-.08-.04-.3-.19-.65-.09-.9.08-.2.51-.45.68-.38.23.09.45.43.49.7.03.18-.64.39-.05.65.21.09.51.05.76.02.78-.11.96.22.99.99.04.94-.24 1.26-1.14 1.11-.12-.02-.28.14-.41.21.1.12.18.28.3.36.26.17.6.26.81.47.19.19.36.52.34.78-.01.19-.31.47-.52.51-.21.04-.65-.12-.68-.27-.25-1.05-.94-1.2-1.83-1.05v.25c-.06 1.61-.11 1.64-1.55.79l-.02 2.61.44-.18.88-.31c.07.31.25.64.19.93-.04.23-.35.41-.56.59-.05.04-.18-.03-.25.01-.24.15-.65.29-.68.48-.1.59-.04 1.21-.01 1.81 0 .08.21.16.31.24.06-.15.16-.29.18-.44.03-.45.12-.6.55-.26.63.5.96 1.52 2.46.44.73-.27 1.13.11 1.08.43-.11.76-.82.28-1.24.41-.03-.15-.12-.32-.07-.44.16-.37.37-.72.23-.4-.41 1.36-.41 1.88.53 2.6.51.56.28.85.21.81-.4-.21-.77-.5-1.15-.76.16-.08.34-.25.48-.23.38.06.75.2.45.18-1.4-.16-2.09-.41-1.95.47.06.38.22.82.48 1.09.68.7 1.01 1.21-.29 1.48-.1.02-.2.46-.15.68.06.27.23.55.43.74.05.05.44-.14.57-.31.29-.38.49-.84.8-1.21.05-.06.64.17.73.37.37.88-.3 1.1-.93 1.38-.2.09-.28.47-.42.71.31.09.29.57.93.39.97-.28.25.72.43 1.1.06.12-.27.47-.47.66-.05.05-.34-.05-.42-.16-.23-.32-.37-.73-.64-1.01-.18-.19-.54-.31-.8-.27-.2.03-.49.33-.51.53-.02.23.16.55.35.71.23.19.79.21.82.38.06.33-.1.73-.26 1.06-.21.44-.48.33-.71-.01-.14-.2-.34-.39-.39-.61-.17-.81-.57-.68-1.04-.29-.2.16-.36.37-.54.55-.87.85-.99.9-1.47-.2-.27-.62-.29-.57-.72-.19-.35.31-.85.43-1.26.68-.23.14-.59.37-.6.56 0 .57-.27 1.23.37 1.66.62.41.68.83.05 1.3-.35.27-.66.71-.21 1.04.27.2.78.05 1.19.06-.18-.99 1.37-.8 1.18-1.81-.1-.53.1-.81.67-.77.42.02.76-.06.9.57.16.72.75 1.09 1.53.96.02-1.56 0-1.56 2.15-2.39.43-.43.83-.15.79.05-.05.28-.43.5-.67.75-.1-.34-.21-.68-.25-1.03-.02-.15.14-.32.12.23-.79 1.57-.48 2.13.36 2.32.58.13.7.41.53.83-.12.29-.42.53-.69.71-.05.03-.47-.28-.51-.47-.23-1.1-.98-1.13-1.84-1-.17 1.4-.47 1.62-1.52 1.07-.14.88.66 2.32-1.25 2.16-.06 0-.13.42-.23.63-.31.63-.75 1.07-1.52.94.06.32.03.71.21.94.36.47.88.8 1.25 1.27.28.36.22.64-.29.94-.77.44-.72.54.49 1.52-.08-.54 0-1.02.49-1.32.2-.12.55-.32.62-.25.2.2.32.49.4.77.07.24.02.51.03.76.57-.02 1.25-.22 1.69.01.34.18.31.98.6 1.39.36.52 1.04.82 1.65 2.03.94 1.22.36 1.11-.13 1.13-.85.04-.54-.61-.64-1.04-.19-.8.43-.45.73-.52.68-.15.89.2.04.43-1.44-.46-2.01-.37-1.76.49.1.36.33.77.62.98.71.52.16.82-.16 1.07-.22.17-.6.15-.91.21.16 1.44 1.19 2.11 2.36 2.47.54.17.9.16.87.84-.03.59.03 1.18.06 1.77 1.42-.89 1.46-.87 1.57.73 0 .08 0 .16.82.52.62.5.55.66.44.69-.15.05-.39.06-.48-.03-.28-.29-.52-.62-.77-.94.09 0 .18-.03.25 0 .44.17.88.36.56.29-1.31-.1-2.06-.63-2.32.17-.12.38.07.85.01 1.26-.15 1.08-.78-.51-.91.14-.1.47-.49 1.23.48 1.34.83.1.53.76.51 1.16-.04.62-.63.35-.99.42-.16.03-.34.02-.5.03.17.24.49.48.5.73.09 1.55.76.03 1.48-.11.72-.17.92-.07 1.11.04-.23.25-.42.64-.7.72-.21.06-.54-.26-.81-.41.26-.23.52-.46.39-.34-.36.94-.18 1.59-.35 2.12-.11.35-.75.52-1.12.81-.63.51.11.81.29.84.29.05.63-.2 1.36-1.01.65-.3.97-.01.94.23-.04.33-.3.7-.57.89-.11.08-.51-.27-.78-.43.2-.34.41-.69.41-.7-.37 1.38-.32 2.07-.32 2.76 0 .15-.23.44-.31.43-.23-.05-.45-.64-.65-.02-.05.16.29.63.47.64.86.06.53.71.61 1.14.1.53.08.52 1.03 1.1.22.13.49.5.44.68-.07.24-.4.45-.66.56-.13.05-.36-.15-.55-.24l.03 2.25.96-.36c.08-.03.21-.05.25-.01.59.67 1.26 1.3 1.69 2.07.13.23-.54.84-.67 1.32-.17.6.2 1.09.58 1.56.08.1-.08.47-.21.65-.06.09-.36.1-.48.03-.22-.12-.39-.33-.59-.49-.18-.14-.49-.42-.55-.38-.27.2-.59.46-.66.76-.09.4.03.85.06 1.28q1.09-.68 1.63.22c.2.33.32.73.59.98 1 .93-.11.95-.51 1.28-.13.52.51 1.47-.3 1.51-1.23.06-1.11.67-1.05 1.48.08 1.01.37.65.8.2.1-.1.53-.03.66.1.12.13.13.47.05.67-.09.23-.29.51-.5.56-.21.05-.49-.14-.74-.22-.04.32-.11.65-.11.97 0 .52.06 1.04 1.02 1.64.54.38.27.75.04.73-.33-.03-.63-.36-.94-.56.18-.22.38-.61.56-.61.32 0 .64.25.34.44-1.38-.1-1.96-.84-2.22.09-.06.22.29.68.56.85 1.23.78 1.24.88.03 1.84-.2.16-.43.57-.36.74.1.23.64.53.7.47.35-.32.63-.67.71.14l.37 4.39c.09 1.11.42.49.8.15.15-.14.5-.06.88-.33.19-.19.31-.12.3-.1-.05.12-.13.22-.2.33l-.25-.21c.09-.09.19-.18.15-.02-.12.42-.1.59-.09.75.05.7.2 1.54-.94.87-.47-.27-.48-.11-.52.31-.07.71.31 1.17.84 1.39.64.27.82-.13.84-.76 0-.1.84-.23 1.29-.23.08 0 .16.57.24.88.98.18 1.18-.82 1.79-1.19.67-.4 1.3.05 1.28.88-.02.89-.36.3-.69.22-.16-.04-.44.38-.66.59.22.11.45.34.64.3.73-.14.9.23.87.83-.02.52.42 1.28-.66 1.24-.5-.02-.82.14-.71.73.11.57.05 1.12-.7.91-.82-.23-.8-.84-.39-1.48l-2.05.19.15 1.55c.49.01 1.07-.14 1.44.08.45.25.65 1.08 1.07 1.2 1.02.27.4-1.1 1.07-1.32l.84-.3c.1.39.3.79.26 1.17-.02.17-.56.24-.75.46-.21.25-.28.61-.42.93.3.09.49.84.93.16.02-.03.43.11.42.15-.06.69.75 1.8-.84 1.78-.16 0-.48.32-.45.42.39 1.44-.68 1.2-1.45 1.31.09.31.08.75.29.91 1.06.82 1.07.79 1.03 1.94-.01.34.03.69.11 1.02.05.21.21.4.32.6.06-.23.17-.46.16-.69 0-.41-.16-.9.5-.91.32 0 .86 0 .91.14.13.36.1.81.01 1.2-.03.13-.53.11-.62.27-.17.33-.99.5-.24 1.13.6.51.67-.02.9-.28.29-.31.52-.69.82-.99.37-.38.78-.13.93.57.05.25.06.51.09.77 1.12.3.47 1.21.62 1.83.04.16-.28.45-.22.55.97 1.72.7 1.64.29 3.1-.46 1.66-1.1.11-1.59.31-.24.88 1.01 2.05-.5 2.71 0 0 .13.43.15.42.53-.1.68.13.79.64.29 1.28.33 1.27 1.79 1.16.06-.11-.13-.28-.16-.48-.12-.64.4-.62.77-.61.25.01.61.16.71.35.21.4-.08.6-1.32.73-.09.27-.16.63-.02.76.49.47 1.05.87 1.59 1.29-.43.42-.88.82-1.27 1.27-.08.09.05.33.02.49-.06.29-.17.57-.26.85-.37-.16-.83-.24-1.08-.51-.81-.87-.78-.89-1.2-.59-.49.35-.48.81.03 1.1.61.34 1.51.24 1.73 1.16.14.56.36.4.6.06.15-.21.27-.47.48-.59.27-.16.61-.23.93-.28.14-.02.3.09.45.14-.08.11-.15.23-.24.34-.78.91-.78 1.42.14 2.32.42.41.81.49-.1.86-.61.25-1.86 1.27-2.58 1.3-.17 0-.35.01-.51.07-.22.08-.43.21-.64.32.26.21.49.5.79.61.24.09.63-1.07.84.08.25 1.35.26 1.35-1.35 1.63l.2 1.54c.54.15 1.35-.78 1.62.44.32 1.43-.85.86-1.42 1.1.34.47.52 1.47 1.34.37.12-.16.54-.13.63-.29.41-.73.84-.09.89.09.07.27-.08.76-.31.92-.69.48-.94.74-.66 1.01.36.34.8.97 1.29.07.13-.23.63-.35.63-.53 0-.7.21-.67.66-.29.25.21.55.38.85.51.11.05.34-.05.43-.15.09-.1.16-.37.1-.44-.33-.36-.97-.67-.99-1.03-.03-.46.56-.93.64-1.43.08-.46-.15-.97-.28-1.44-.05-.18-.32-.45-.28-.49.51-.54-.02-1.18.17-1.67.28-.71-.97-.86-.43-1.69.26-.39 0-1.12-.04-1.7-.01-.16 0-.41-.11-.47-.87-.52-.61-1.05-.07-1.62.2-.21.49-.41.05-.75-.3-.23-.58-.61-.65-.97-.08-.4.13-.84.12-1.26 0-.51-.03-1.04-.19-1.51-.25-.74-.27-1.21-.18-1.66.1-.51.8-1.22-.3-1.53-.15-.04-.27-.2-.4-.31 1.08-.58.52-2.62 2.29-2.59-.03-.25.03-.56-.1-.75-.5-.71-1.06-.68-1.42.05-.14.28-.18.6-.27.9-.07-.05-.13-.13-.2-.15-.51-.15-.86-1.02-.42-1.34 1-.71.21-1.49-.09-1.77-.98-.94-.03-1.02.97-2.19.62-.72.81-.58.87-.39.27.82-.23 1.32-1.16 1.19-.1-.01-.23-.12-.27-.21-.18-.53.39-1.35.55-.58-.42 1.3-.42 2.09-.18 2.18.48.17 1.11-.04 1.67-.11 0 0 .03-.29-.03-.33-.83-.52.59-.93.06-1.42.54-.47 1.07-.96 1.64-1.38.03-.02.73.63.67.76-.45.99-.14 1.82.21 2.77.16.42.31 1.36-.71 1.57-.62.13-.25.67-.28 1.04.67-.17 1.09-.09 1.15.77.05.86-.53.66-.97.75l.17 1.52c1.2.16 1.16.16 1.2 1.35.02.65.14 1.32.37 1.93.1.26.29.32.14.73-.43 1.21-.38 1.41.33 2.39.27.38.43.59.2 1.05-.17.33-1.02.51-.35 1.04.08.07.67-.36.91-.65.47-.58 1.26-.88 1.41-1.74.04-.23.23-.56.69-.24.65.45 1.12 1.35 2.15 1-.21-.57.31-1.62-1.02-1.51-.09 0-.32-.69-.31-1.05 0-.15.45-.32.71-.42.23-.08.48-.07.78-.89.39-.47.81-.24.79-.04-.03.28-.38.53-.59.8-.13-.32-.28-.64-.36-.97-.03-.15.11-.33.15.21-.42 1.72-.26 2.02.7 2.23.15.03.31-.03.47-.05q-.14-1.5 1.36-1.7c.17-.02.32-.04.53-.85.39-.47.81-.23.79-.04-.03.28-.38.53-.59.79-.13-.32-.28-.64-.36-.97-.03-.15.11-.33.15.21-.04.87.02.98-.02 1.03-.21.31-.57.49-.03.93.6.48.66-.04.9-.28.35-.35 0-1.24.92-1.19 0 0 .06-.17.1-.37.04-.2.05-.42-.02-.51-.38-.51-.85-.99-1.39-1.34-.15-.1-.62.37-.98.48-.4.12-.96.33-1.23.16-.85-.53-1.47.16-2.13.33-1.18.3-1.15.4-1.8-.75-.72-.08-1.07-.21-1.41-.34l.69-1.17c.28.29.6.56.8.9.07.12-.13.41-.09.61.47-.4.77-.68 1.06-.96.74-.69.36-.81-.39-.92-.11-.02-.28-.98-.08-1.27.22-.32.59-.13.88.35.37.61 1.05 1.04 1.63 1.51.86.69.9.7 1.61-.19.51-.64.94-1.25 1.78-.39.14.15.48.11.73.16-.14-.27-.22-.63-.44-.8-.48-.38-.91-.65-.23-1.26.6-.53.61-1.23-.05-1.69-.68-.48-.94-.84-.18-1.45.16-.13.26-.43.24-.64-.04-.36.13-.95-.55-.86-.19.03-.41.4-.47.64-.09.35.27.93-.43.93-.73 0-.91.33-1.07.99-.15.61-.66.87-1.22.21-.66-.78-1.24-.9-1.85.12-.14.23-.75.19-1.15.27.12-.31.14-.75.37-.92.64-.49.51-1.07.4-1.69l2.3-.25c-.08-.43-.91-.79-.11-1.32.41-.27.82-.42 1.01-1.11.27-1 .69-.95 1.52-.02.54.6 1.07.51 1.4-.27.08-.2-.04-.49-.07-.74-.69.17-1.42-.03-1.47-.69-.03-.46.63-.91 1.31-.81l-.15-1.51c-.21-.09-.5-.13-.62-.29-.2-.28-.3-.64-.44-.97l.91-.25c-.25-.67.14-1.12.58-1.53 1.09-1 1.09-1.02-.3-1.74-.23-.12-.53-.47-.49-.64.06-.24.52-.62.61-.58.38.19.71.57.68-.24 0-.25-.04-.5-.07-.75l-.13-.98c-.3.07-.72.29-.86.18-.36-.29-.52-.81-.88-1.09-.43-.34-.98-.52-1.48-.77l1.13-1.36c.1-.12.27-.34.23-.4-.14-.23-.33-.52-.56-.58-.31-.08-.67.03-1 .23.08.88.26 1.52-.69 1.41-.26-.03-.68-.17-.73-.34-.15-.54.61-1.29 1.16-1.19.14.02.24.25.26.12-.58-1.79-.66-1.82-1.65-.74-.17.19-.3.43-.5.55-.12.07-.39.02-.52-.08-.2-.15-.67-.28-.23-.67.39-.35 1.17-.75 1.13-1.01-.26-1.44.77-1.13 1.51-1.24-.31-.92.48-1.34.93-1.89.3-.36.46-.6-.04-.9-.29-.17-.51-.44-.78-.63-.29-.21-.51-.38-.12-.71.25-.22.48-.48.65-.76.13-.21.29-.58.19-.7-.18-.23-.52-.43-.81-.45-.14-.01-.47.43-.44.63.23 1.42-.91.8-1.36 1.3-.19.49-.46.78-.62.73-.21-.06-.34-.39-.51-.6.25-.13.49-.3.76-.38.07-.02.23.24.36.25-.15-.54-.28-.86-.17-1.03.27-.43.83-.8-.28-.77-.82.03-1.44.16-1.53 1.13-.01.15-.44.37-.66.36-.2-.01-.56-.3-.55-.46.01-.28.24-.55.38-.83-.66 0-1.69.25-1.92-.07-.61-.84.61-1.16.9-1.79.07-.15.23-.25.32-.39.41-.6.73-.99 1.47-.21.79.83.9.75 1.77-.22.34-.39.61-.81 1.09-.16.1.13.25.3.39.32.4.06.99.22 1.18.03.5-.5-.3-.54-.48-.81-.27-.4-.73-.69-.93-1.11-.26-.56-.57-.52-.94-.24-.27.2-.42.57-.69.73-.22.13-.57.05-.86.06.06-.28.04-.64.21-.82.72-.76.86-1.68.24-2-.81-.41-.71-.99-.6-.93.75.41.89.31.85-.54-.05-1.1.02-1.1 1.44-1.26-.18-.84-.15-1.55.9-1.86.26-.08.77-.5.09-.86-.07-.04-.13-.1-.19-.16q-.98-.89-.14-1.92c.64-.78.62-.75-.35-1.36-.41-.26-1.13-.59-.27-1.21.2-.14.31-.4.51-.55.69-.51.16-.81-.22-1.03-.25-.14-.62-.09-.94-.13-.08.51-.04 1.08-.27 1.51-.1.19-.76.08-1.17.1-.08.37-.11.76-.26 1.09-.2.44-.44.43-.87.11-.63-.47.01-.61.12-.89.03-.07 0-.16-.01-.24-.17.01-.34 0-.5.04-.66.18-1.39-.11-1.44-.59-.08-.67.62-.98 1.33-.93-.22-.68.19-1.12.65-1.51.84-.72 1.03-1.41.46-2.07-.12-.14-.45-.11-.69-.15.22-.13.61-.25.63-.4.07-.79.04-1.59.05-2.38-.18.09-.38.28-.52.24-.27-.07-.54-.24-.74-.43-.06-.06.07-.36.17-.52.18-.3.39-.51.72-.11.09.1.29.11.44.17.86.31 1.92.02 2.36-.72.39-.67.17-1.23-.44-1.71-.17-.13-.33-.54-.25-.67.16-.25.47-.48.76-.53.12-.02.48.39.49.61.02.64.23.97.9.78.26-.07.64-.3.65-.48.02-.42.23-.98-.63-1.07-.36-.04-.69-.59-.98-.95-.52-.62-.65-.67-1 .16-.41 1-1.19 1.01-2.03 1.03-.13.59.65 1.63-.82 1.57-1.25-.05-.48-1-1.8.81-1.14 2.17-1.27 2.03-1.27 1.89.02-.37-.18-.71.3-1.07.96-.74.89-.9-.11-1.49-.94-.56-.99-.82-.13-1.54.48-.41 1.03-.75 1.58-1.05.14-.08.6.1.62.21.04.24-.03.58-.2.74-.21.21-.58.25-.83.42-.25.18-.52.4-.08.72.35.24.66.54.95.85.11.12.2.43.13.51-.6.71-1.24 1.39-1.87 2.08-.03.04-.12.03.9-2.26 1.59-2.33 2.1-2.35 2.62-2.38-.09-.89.3-2-1.14-2.24-.04 0-.1-.39-.02-.45.11-.09.33-.04.5-.06.17-.02.48-.05.48-.07 0-.75-.04-1.49-.07-2.24-1.43.41-1.88-1.11-2.92-1.46-.03 0 0-.38.1-.51.16-.2.28-.57.72-.21.61.5 1 1.44 2.66.39.67-.67.85-.51.9-.33.21.83-.32 1.29-1.24 1.1a.382.382 0 01-.25-.23c-.14-.54.49-1.31.59-.54-.58 1.12-.56 1.46-.55 1.8 1.46.3 2.01-.89 2.79-1.69.07-.07 0-.38-.11-.5-.28-.31-.58-.6-.92-.84-.39-.27-.29-.46 0-.71.25-.22.43-.52.7-.71.7-.51.16-.8-.2-1.03-.24-.15-.62-.11-.94-.03.08.97.15 1.51-.78 1.45-.52-.03-.71-.16-.74-.68-.04-.6.09-.96.78-.86.28.04.55.15.74.08.38-1.29 1.12-2.24 2.05-3.02.16-.13.58.05.88.08-.03-.55.09-1.19-.16-1.63-.13-.23-.91-.11-1.39-.14.06 1.49-1.42 1.95-2.07 2.97-.14-.11-.33-.18-.39-.32-.22-.5-.39-1.02-.59-1.54-.35-.11-.7-.21-1.03-.35-.04-.02.03-.29.04-.45l.54.14c.14.05.29.1.44.15-.03-.84-.08-1.69-.37-2.86-.07-.08.11.12.28.33-.26.17-.56.51-.78.46-.28-.06-.5-.42-.75-.65.27-.13.54-.26 1.25-.14.8.48 1.32.63 1.84.79-.25-1.05.76-1.37 1.19-2.03.08-.13.11-.45.03-.51-.69-.47-1.58-.76-1.46-1.86 0-.02-.45-.05-.67-.14-.26-.1-.5-.26-.75-.4.28-.37.54-.76.87-1.09.03-.03.5.24.65.45.73.99 1.68 1.15 1.95.11.32-1.22.98.11 1.03-.35.08-.72 0-1.45-.03-2.17-.12 0-.24.03-.36.01-.94-.13-1.03-.29-.62-1.17l-.74.02c-.73.02-1.55-.16-1.33 1.08.07.4-.93.71-1.32.39-.43-.34-.18-.69.14-1.01.1-.1.11-.28.17-.42-.6.01-1.69.13-1.71.02-.21-1.02-.91-1.55-1.72-2.04-.07-.04-.11-.29-.06-.34.23-.23.46-.49.75-.61.15-.06.48.11.61.26.3.36.44.98.81 1.14.94.42.66-.65 1-.99.62-.63.68-.63 1.32.17.23.28.37 1 1.03.55.91-.61.02-.9-.29-1.23-.85-.89-.86-.9.07-1.53.78-.52.9-1.06.28-1.61-.28-.25-.96-.3-1.01-.54-.31-1.56-1.07-.61-1.69-.21-.21.23-.5.42-.61.35-.21-.13-.31-.42-.45-.64.15-.06.35-.2.43-.15.23.13.41.35.63.44-.04-.99-.05-1.83-.05-2.67-.26.17-.55.51-.76.47-.27-.05-.51-.39-.69-.66-.04-.07.2-.43.36-.49.52-.16 1.06-.24 1.72-1.12.43-.42.83-.14.79.05-.05.27-.43.49-.67.73-.09-.33-.21-.67-.25-1-.02-.15.14-.32.12.23-.3 1.12-.47 1.46-.64 1.8l1.55.49c.22-.5-.48-1.14.59-1.59 1.39-.58 1.34-1.2-.09-1.9-.71-.35-.43-.49-.1-.71.69-.46.8-1.22.53-1.74-.42-.81-.14-1.42.21-2.02.18-.32.37-.45 0-.73-.33-.25-.59-.6-.92-.86-.43-.34-.1-.57.14-.7.34-.18.74-.25 1.12-.36.18-.89-.05-1.48-1.03-1.82-.78-.27-.31-.76.11-1.02.25-.16.62-.13.94-.19q-.01-1.49-1.53-1.52v.24c.05.64-.31 1.11-.87 1.11-.23 0-.48-.72-.66-1.14-.09-.21-.01-.48-.42-.5-.61.03-.85-.21-1.08-.44l.79-.74.7.95c-.27.15-.54.3-.41.23.92-.06 1.44.11 1.95.28-.16-.59.57-1.67-.89-1.52-.6.06-.68-.3-.64-.77.03-.42.01-.84.01-1.25-.26.17-.55.5-.77.46-.27-.05-.51-.4-.68-.67-.04-.07.19-.4.36-.48.34-.16.72-.22 1.09-.33-.09-.7.2-1.38.87-1.35.47.02.85.71.68 1.37.69-.08 1.1.04 1.05.89-.05.85-.6.59-1.06.62-.09.54 0 1.08.54 1.28.65.24 1.04.6 1.25 1.24.06.17.54.38.68.31.46-.25.69-.67.61-1.25-.13-.87-.4-.25-.72-.16-.17.05-.6-.3-.67-.54-.05-.17.24-.53.46-.68.5-.34.93-.68.93-.89 0-.42.04-.84 0-1.26-.02-.16-.21-.31-.32-.47-.54.76-.75-.02-1.09-.23-.41-.25-.84-.47-1.23-.74-.25-.17-.55-.38-.12-.72.33-.26.62-.57.92-.87.57-.58.61-.92-.36-1.12-.49-.1-.36-.58-.06-.97.93-1.2.91-1.21-.01-2.61-.27-.42-.33-.84.27-.9 1.05-.11.59-.84.56-1.3-.02-.26-.45-.48-.67-.74-.08-.09-.11-.24-.16-.36.23-.04.55-.19.68-.09.34.24.59.6.91.88.11.09.36.16.45.1.17-.11.37-.31.4-.5.15-.84-.13-1.46-.3-1.35-.5.35-.67.39-.68-.27-.01-.69.04-1.22.81-.41l.28-2.17c-.35-.04-.71-.03-1.04-.12-1.03-.28-1.14-1.45-1.93-1.98.32-.35.6-.77.98-1.03.63-.42.41-.68.02-1.11-.25-.27-.39-.7-.43-1.07-.1-.86.57-.6 1.04-.62-.11-.37-.24-.74-.32-1.13-.17-.82-1.29-1.73.19-2.45.06-.03.05-.43-.04-.5-1.1-.82-.66-1.66-.12-2.55.17-.28.37-.86.3-.9-1.08-.67-.28-1.37.01-1.95.17-.33.33-.45 0-.74-.38-.33-.99-.75-.97-1.1.03-.44.62-.83.92-1.27.22-.32.39-.68.57-1.02-.2-.12-.48-.2-.57-.38-.16-.31-.2-.68-.29-1.02l.94-.11c-.15-.7.29-1.32.81-1.38 1.49-.19.65-1.23.83-1.88 0-.03-.27-.13-.4-.22-.15-.11-.29-.24-.44-.36.15-.05.3-.12.45-.14.98-.15.45-.92.54-1.4.07-.39.38-1.02-.48-1.13-.44-.06-.63-.38-.07-.46.55-.08.7-.24.72-.74.04-1.42.18-2.84.24-4.27 0-.15-.2-.3-.31-.45-.61.73-1.01-.09-1.03-.31-.09-1.16-.95-.88-1.63-.96-.14.5-.18 1.07-.47 1.46-.13.17-.77-.02-1.17-.04-.03.5-.12 1.01-.09 1.5.05.93.46.11.69.15.26.04.5.36.66.62.04.07-.24.31-.33.5-.38.73-.77-.55-1.07 0-.23.4-.26.91-.47 1.32-.11.2-.37.59-.71.13-.2-.27-.45-.51-.68-.76-1.04-1.14-.99-1.1.17-2.16.29-.26.21-.92-.04-1.29-.46-.46-.57-.84-.59-1.22 0-.1.24-.22.37-.33.19.4.4.8.56 1.22.01.04-.29.19-.34.33.86-.07 1.37-.04 1.88 0 .04-.67.09-1.35-.1-1.99-.44-.14-.58-.27-.73-.39.21-.06.43-.15.64-.15.11 0 .22.18.34.28-.15.09-.3.19-.25.27.74.17 1.24.37 1.74.57l.08-1.24c-.72-.16-1.09-.29-1.47-.44.28-.07.54-.15.87-.16.09 0 .52.16.59.24.1.1.01.2 0 .36 1.66-.06 1.71 0 .72-.44-.06-.03-.11-.05-.18-.08-.67-.22-.3-.26.06-.3.25-.03.41-.1.47-.18.14-.19-.53-.31-.84-.39-.31.12-.59.17-.87.24l-.69-.36c.31-.03.6-.07.94-.06.1 0 .35.11.63.19-.35-.41.46-.27.93-.23.49.03 1.06.17-.19-.42-.14-.06-.33-.32-.23-.32.62.05.84-.15 1.99.45.78.4.47.13.43.03-.02-.04-.6-.42-.94-.66-.15-.1-.32-.2-.46-.18-.07.1-.2.09-.33.08-.23-.23-.46-.47-.66-.71 0 0 .32.12.51.22.75.42.37.34.48.41.05-.16.02-.28.19-.21.24.09.69.38.96.52.18.09.29.11.26.04-.02-.05-.3-.32-.48-.46-.22-.17-.5-.35-.68-.43-.14-.07-.12.02-.25-.02-.42-.14-.77-.46-1.13-.83-.61-.64.05-.09.3.03.38.19.63.24.85.3.07.02-.12-.25-.2-.32-1.12-.95-.9-1.06-.58-.89.44.24.39.06.36-.13-.02-.12-.36-.56-.41-.73-.12-.37.85.79.93.76.25.06.38.01 1.36 1.2.07.08.37.33.45.37.13.06.16.02.23.02-.24-.34-.47-.67-.71-1.02-.03-.04.09.04.14.06l.36.53.29.43c.07 0 .13-.02.22 0 .1.03.11-.04-.3-.65-1.02-1.46-.27-.74-.33-.97-.17-.5-.21-.75-.2-.94 0-.03.26.28.35.45.45.82.12.5.05.55-.03.02-.11-.04-.2-.06.19.24.29.41.4.58.23.37.54.96.68 1.01.09.03.37.34-.08-.52-.11-.21-.18-.41-.25-.61-.11-.3-.14-.48.13-.06.13.2.28.39.37.59.42.88.4.6.47.6.03 0-.04-.27-.09-.42-.18-.43-.33-.98-.6-1.14-.22-.13-.6-.72-.95-1.51l-.37-.16c-.14-.35-.37-.8-.39-1.01-.02-.24.13-.26.06-.72-.15-.42-.13-.59-.06-.65.03-.02.19.22.29.34-.03.22-.05.44-.06.67-.07-.16-.15-.32-.16-.35.31.84.51 1.37.7 1.9.21-.04.69.36.03-1.09-.06-.13-.08-.44-.02-.43.21.03.45.15.67.24.05.34.11.68.18 1.03.01.07.05.16.08.25.21-.23.58.53.83 1.06.28.6.26.32.26-.08 0-.17.02-.37.03-.54 0-.73.21-.16.32.18.08.23.13.61.19.92.12 0 .24 0 .33-.06.01-.66.07-1.04.13-1.42l.23.59c-.07.29-.13.57-.2.87-.02.08-.08-.04-.16-.04.09.54.12 1.19.19 1.44.07.26.17.19.25.13.02-.01.03-.13.04-.27 0-.13.03-.28.16-.35.3-.19.68-.26 1.02-.38 0-.08-.03-.18 0-.24.22-.4.45-.8.67-1.2l.87.93c.88.13 1.52 0 1.85-1.02.16-.5.79-.85 1.21-1.27-.45-.3-1.03-.51-1.31-.92-.24-.35-.15-.94-.62-1.35-.64-.11-.84-.27-1.03-.43.24-.21.52-.62.71-.58.28.06.49.43.73.68-.24.12-.48.24-.41.33.94-.25 1.57-.29 1.97-.62.63-.51 1.15-.25 1.64.05s.94.73 1.29 1.18c.12.16-.05.81-.13.82-1.47.17-.84 1.11-.44 1.57.53.61.8.92.01 1.51-.4.3-1.24.72-.72 1.35.26.32 1.09.17 1.67.23l-.12-.91c1.14-.05 1.32-1.08 1.77-1.79.53-.83.76.34 1.18.13 0-.33.04-.67 0-.99-.14-.88.2-1.22 1.08-1.08.32.05.66 0 .99 0l-.17-.43-.16-.53c.16-.02.43-.1.45-.06.16.33.27.68.39 1.02.42 0 .87-.08 1.26.02.55.14.68.81.32 1.23-.47.55-1.3.88-1.07 1.84.54-.08.95.07 1.31.52 1.09 1.37 1.17 1.35 2.42.16.14-.14.56.02.85.03-.94 1.19.22.77.66.81.3.02.61-.14.92-.21-.16-.35-.26-.75-.49-1.03-.43-.52-1.02-.91-1.4-1.46-.56-.8-.75.38-1.3.13-.06.12.11.31.12.52.05.65-.46.57-.83.51-.25-.04-.65-.26-.67-.43-.09-.85.6-.51 1.38-.6.13-.66.15-1.35.12-2.03 0-.15-.25-.42-.33-.4-.23.06-.42.66-.65.06-.06-.15.29-.66.44-.66.82.02.43-.78.79-1.08.5-.41.86-.82 1.45-.13.25.29.66.44 1 .66.19-.32.35-.66.6-.94.18-.21.55-.5.7-.44.27.12.54.44.62.73.04.16-.26.53-.49.63-.57.25-1.1.55-.97 1.23.03.17.72.16 1.04.36.22.13.32.46.45.72.14.26.22.75.37.77 1.29.16 1.21 1.87 2.43 2.1.12.02.14.55.21.84-.4.06-.81.16-1.2.15-.1 0-.13-.44-.27-.62-.24-.3-.54-.56-.81-.84-.24.41-.52.81-.7 1.24-.09.22-.02.5-.02.76.43.06.88-.94 1.27 0 .07.18-.06.47-.16.68-.21.39-.44.33-.69 0-.08-.1-.27-.12-.41-.17.07.37-.24.99.4 1.01 1.35.05 2.7-.02 4.05-.08.07 0 .12-.27.29-.6-.21-.02-.48.22-.61.16-.36-.17-.67-.45-.99-.7l1.14-.72c.15.29.31.58.46 1.26 1.51.12 1.5.12 1.44-1.23-.05-1.18-.55-.13-.8-.2-.29-.08-.49-.44-.73-.68.29-.22.56-.49.89-.65.11-.06.35.15.53.23l.06-2.23c-.3.04-.62.17-.9.1-.21-.05-.55-.41-.51-.5.12-.28.51-.74.58-.7 1.11.58 1.26-.18 1.49-.95.04-.12.43-.14.66-.21l.02.52c.01.17-.03.43.06.49.33.21.69.48 1.05.51 1.13.08.49.46.17.8-.23.25-.46.51-.73.72-.44.34-.09.51.12.73.56.56.95.69 1.16-.3.07-.32.52-.56.79-.83.24.41.48.83.71 1.24.04.07 0 .17 0 .25.65-.03 1.37.2 1.84-.53.12-.19.47-.45.52-.42.76.57 1.48 1.18 2.22 1.79-.72.64-.31.72.34.71h4.87c.05-.43-.86-.78-.01-1.33.56-.36 1.24-.86 1.04-1.76-.55-.08-.97.08-1.32.54-.84 1.08-.86 1.07-1.78.22-.13-.12-.28-.22-.36-.37-.49-.85-.76.34-1.62.79-.66.27-.97-.03-.93-.28.05-.32.33-.68.62-.85.11-.07.5.3.76.46-.22.33-.44.66-.45.67.45-1.1.4-1.53.46-1.95.04-.27.34-.75.38-.74 1.17.42 1.01-.84 1.55-1.19.16-.1.36-.15.54-.22.32 1.16 1.81 1.27 2.14 2.41.05.16 0 .34 0 .51.38.12.77.2 1.12.37.36.17.64.53 1.01.63.27.08.61-.12.92-.19-.15-.18-.28-.48-.47-.52-1.04-.24-1.19-.94-1.1-1.69-.66-.3-1.04-.58-1.42-.86l.59-.72c.3.31.62.59.87.93.08.1-.04.35-.04.64.75-.15 1.43-.15 2.12-.15-.02-.45-.85-.96.06-1.3.21-.08.83.26.85.44.12 1.23 1.02.76 1.58.7.14-.72.2-1.16.45-1.36.27-.23 1.11.44 1.18.94.08.61-.38.62-.79.57-.28-.04-.54-.17-.83-.14.09.84.09 1.52.09 2.21.42.22.64-.95 1.19-.14.2.3.64.53 1.01.62.26.07.59-.15.88-.24-.22-.08-.5-.11-.66-.25-.62-.55-.85-1.45-.43-1.69.62-.36 1.08-.76 1.45-1.42.35-.64 1.28-.82 1.58-1.62.11-.3.41-.53.71-.09.05.07.12.12.18.18q1.05.96 2 .08c.12-.12.23-.31.37-.34.16-.04.46-.01.52.09.57.9 1.66 1.02 2.24.62 1.07-.76 1.04.08 1.32.6.36.17.7.43 1.07.5 1.12.21-.43.79.13.92.55.13 1.21.19 1.68-.02.23-.11.15-.91.04-1.3-.51-.16-.66-.28-.81-.4l.68-.68c.1.17.28.33.28.5 0 .18-.16.36-.15.58.68-.32 1.5.47 1.76-.73.16-.74 1.02-.59 1.39-.19.6.65 1.59 1 1.71 2.09.01.11.86.13 1.31.19 0-.46.03-.93-.04-1.37-.02-.09-.5-.05-.64-.2-.14-.14-.11-.44-.16-.67.18.02.41-.02.53.07.9.69 1.68.69 2.32-.34.04-.07.13-.11.18-.18.32-.45.57-.12.7.13.18.34.25.74.37 1.12.88.06 1.48-.54 2.2-.88.22-.11.8-.02.83.09.39 1.31 1.02.99 1.79.36.23-.19.41-.92.89-.28.69.92 1.34.87 1.96-.03.57-.83 1.02-.71 1.65 0 .75.84.83.81 1.93 0 .39-.29.67-.42 1.07-.05.78.71 1.38.27 1.93-.35.22-.26.41-.5.73-.08.2.27.48.49.72.73.36.36.75.85 1.2.24.11-.15-.22-.73-.46-1.01-.19-.21-.61-.2-.84-.4-.14-.12-.15-.45-.13-.67 0-.09.25-.2.4-.23 1.14-.18 1.82.64 2.07 1.45.31.99 1.26.57 1.69 1.11.94-.79 2.07-.41 3.12-.53.65-.07.33-.65.28-.99-.38-.29-.61-.58-.84-.86.13-.06.26-.17.4-.18.6-.05.59.37.55.78 0 .09-.13.17-.11.27.29-.03.47-.02.64-.03.46-.03 1.08.22 1.04-.66-.02-.55-.09-.64-.84-.96-.28-.12-.47-.47-.7-.71.22-.08.46-.26.67-.23.99.15.87-.51.86-1.11 0-.51-.11-1.08.73-.97.45.06.9 0 .8-.62-.1-.66-.65-.34-1.02-.4-.17-.03-.34 0-.96.66-.66.27-.97-.03-.93-.28.05-.32.33-.68.62-.85.11-.07.5.29.76.46-.22.33-.44.66-.45.67.47-1.33.21-2.12 1-2.48.72-.33.81.57 1.26.81.14.07.23.27.37.35.41.23.77.29.91-.33.05-.22.18-.45.33-.63.13-.15.35-.23.54-.34.05.24.21.52.13.7-.19.44-.49.83-.73 1.24-.07.12-.12.24-.18.36.15.06.29.13.45.16.17.03.36-.05.51.02.64.27 1.21-.77 1.86-.09.06-.49.07-.99.2-1.46.08-.3.3-.69.54-.77.27-.08.67.1.96.26.23.13.34.45.55.61.23.17.52.26.78.38.04-.29.21-.66.09-.86-.2-.36-.55-.67-.89-.92-.86-.63-.11-1.11.26-1.23.59-.18 1.03-.15.32-.78s-1.42-1.26-1.09-2.37c-.51.17-1.03.34-1.71.43-.03.18.19.43.13.56-.1.22-.45.56-.54.52-.34-.16-.63-.45-.93-.7.33-.13.66-.25 1.34-.38.21-.57.15-1.28.39-1.85.08-.2.92-.07 1.41-.14.11-.02.27-.36.25-.39-.64-.61-.1-.59.32-.62.3-.02.3-.01.51.63.04.12.03.33.08.34.81.26 1.5-.07 1.81-1.03.2-.63.61-.41.98-.45.77-.09.69-.44.39-1-.46-.86-.9-.05-1.79.64-.66.27-.97-.03-.93-.28.05-.32.33-.68.62-.85.11-.07.5.29.76.46-.22.33-.44.66-.45.67.39-1.16.5-1.9.24-2.08-.61-.42-1.23-.07-1.72.5-.44.52-.95.98-1.44 1.45-.43.42-1.08.29-1.24-.29-.11-.4-.02-.85-.02-1.27-.45.05-.88.78-1.37-.05-.22-.37-.86-.89-1.04-.8-.51.26-.84 1.07-1.31 1.13-.47.07-1.01-.66-1.56-.75-.38-.06-.88.32-1.26.6-.28.2-.43.46-.75.05-.26-.34-.63-.59-.89-.92-.35-.44-.5-.05-.74.12-.39.28-.28.48.03.74.39.33.75.71 1.07 1.1.04.04-.23.36-.37.52-.09.1-.3.26-.35.23-.21-.15-.41-.33-.55-.53-.59-.84-1.12-1.04-1.86-.09-.17.21-1 .16-1.32-.06-.6-.42-1.06-1.05-1.56-1.61l.35-.35c.36-.36 1.08-.99 1.04-1.05-.54-.74-.33-.94.48-.86.17.02.37.06.51-.01.24-.13.57-.31.62-.53.07-.28 0-.7-.19-.92-.17-.22-.58-.23-.84-.4-.18-.12-.28-.35-.41-.53.23-.06.46-.15.69-.18.59-.07 1.17-.07 1.57.48.52-.67 1.87-.5 1.79-1.79-.01-.23.13-.66.18-.66 1.18.08 2.05-.2 2.12-1.6 0-.03.47-.01.72-.05.8-.11.73-.54.32-1.01-.22-.25-.41-.77-.92-.17-.51.59-1.04 1.75-2 .36-.1-.14-.67-.16-.83-.02-.77.65-1.89.57-2.38.23-1.08-.74-1.04.09-.55 1.04.89 1.24.32 1.11-.17 1.12-.85.01-.52-.62-.6-1.05-.16-.8.44-.44.75-.49.68-.13.88.23.02.42-2.42-.02-2.46.1-1.47 1.2.22.25.48.61.44.89-.03.22-.46.5-.75.54-.68.09-.55-.48-.53-.86.05-.88-.58-.62-1.04-.66.06.49.1.98.19 1.46.05.22.36.54.3.62-1 1.31-.96 2.42.52 3.34.06.04-.04.5-.18.66-.92 1.05-.99 1.09-.24 1.93.63.7.12.5-.31.81-.54.39-.98 1.21.28 2.52.36.77.27.95.14.99-.44.14-1.2-.5-1.05-.91.09-.25.39-.42.59-.62.3.36.6.73.32.54-1.08-.54-1.59-.5-2.1-.56-.19-.02-.52-.3-.5-.36.39-1.12-.74-1.06-1.16-1.53-.49-.56-.97-1.12-1.43-1.7-.67-.86-1.28-.98-1.97-.33l-.54.54c-.71.65-.41-.17-.6-.37-.32-.32-.75-.67-1.17-.73-1.19-.15-.8-1-1.3-1.67-.42.05-.59-.18-.57-.39.03-.39.16-.77.25-1.15 1.05.44.61-1.75 1.81-1.02.15.09.38.33.36.35-.49.72-1.61 1.04-1.41 2.21h-.44c.94 0 1.45.03 1.95 0 .86-.06.39-.4.12-.68.23-.11.46-.32.69-.32.22 0 .45.21.67.33-.31.3-.68.63.14.67.67.03 1.34 0 2.01 0 .53-.28-1.48-.89.14-1.05.14-.01.29-.31.37-.51.2-.5.35-1.02.4-1.5-.38-.29-.61-.58-.84-.86.13-.06.26-.17.4-.18.6-.05.59.37.55.78 0 .09-.13.17-.11.27.64.14 1.15.32 1.67.49v-2.06q-1.52-.02-1.54-1.54c-.91-.11-1.34.36-1.57 1.18-.05.17-.51.33-.76.3-.19-.02-.47-.31-.51-.51-.04-.22.13-.65.28-.68 1.06-.24 1.16-.96 1.03-1.83-.7-.18-1.12.25-1.49.73-.69.9-.68.91-1.42.22-.31-.29-.71-.9-.89-.84-.43.15-.74.6-1.11.94-.06.06-.13.11-.18.18-.3.44-.48.14-.73-.07-.33-.27-.43-.55 0-.72 1.03-.42 1.42-1.45 2.09-2.19.19-.21-.02-1.24-.18-1.27-1.29-.27-.68-.71-.28-1.34.25-.4 1.13.09.86-.68-.03-.08-.93 0-1.31.21-.59.33-1.37.37-1.59 1.33-.14.62-1.1.58-1.48.02-.13-.19-.17-.44-.29-.65-.42-.73-.8-.3-1.06.11-.16.25-.14.62.57 1.56.65.7.49.87.3.91-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54.52.61-1.11-.62-1.46-.62-1.8-.62l-.51 1.54c.78-.12 1.33.26 1.52.95.22.8-.72.42-.98.81-.14.21-.49.35-.51.55-.15 1.22-.62.86-1.26.34-.98-.8-1.17-.75-1.86.3-.08.12-.03.33-.1.46-.02.05-.23-.01-.34 0-.95.2-1.02.33-.59 1.21.17 0 .34 0 .51-.11.1-.19.2-.27.3-.35.03.11.12.29.09.31-.11.08-.26.11-.39.16v-.11c.06.26.11.4.17.54.11.28.26.56.32.85 0 .05-.5.31-.57.24-.3-.26-.57-.58-.74-.93-.06-.11.2-.39.32-.59-.25 0-.51.04-.75 0-.44-.08-.87-.22-1.31-.33.19-.34.36-.69.58-1.01.56-.77.57-.76-1.01-.97-1.24.89-1.11.32-1.12-.17-.01-.85.62-.52 1.05-.6.8-.16.44.44.49.75.13.68-.23.88-.42.02.43-1.28.43-1.8.43-2.31h-1.54c.09.71-.19 1.41-.86 1.39-.47-.01-.85-.72-.69-1.39-1.64.41-1.7.54-.68 1.63.12.12.28.22.35.37.08.16.17.44.1.52-.39.45-.83.86-1.25 1.28.5.36 1.09.65 1.45 1.12.21.27.04.83.04 1.25h1.35c.35-.73.63-1.11.91-1.49.27.28.6.53.79.86.05.09-.27.53-.5.61-.31.11-.69.03-1.21.03.29.71 0 1.41-.66 1.39-.47-.01-.85-.72-.69-1.39-1.15.11-1.44.39-1.54 1.54.31.05.68.02.92.18.34.24.91.56.18 1.05-.2.14-.35.36-.54.52-.4.34-.68.59-.08 1.09.54.44 1.29.86 2.01 1.91.47.69.21.99-.05 1.29-.3-.3-.62-.58-.88-.92-.05-.07.16-.47.24-.47.44.01.88.1.69.1-1.61-.19-2.52.23-2.59-.98 0-.06-.15-.11-.17-.18-.18-.67-1.54-.24-1.22-1.19.14-.41.99-.54 1.28-.96.25-.36.15-.95.21-1.43-.26 0-.56.09-.76-.02-.65-.34-.72-.78-.29-1.25.67-.73.66-.72-.22-1.82-.24-.3-.34-.72-.56-1.04-.12-.19-.5-.44-.51-.43-.59.63-.65.41-.77-.33-.22-1.27-.6-1.38-1.42-.61-.25.23-.46.52-.74.7-.09.06-.39-.12-.52-.26-.12-.13-.23-.48-.19-.51.32-.24.7-.39 1.01-.63.16-.13.36-.51.32-.56-.19-.2-.47-.42-.72-.43-.26 0-.76.2-.77.34-.13 1.27-1.07.43-1.58.66v1.02c0 .26.02.23.87.66.26.13.61.51.56.69-.06.28-.61.71-.65.68-.4-.31-.78-.86-.8.22-.02.91.41 2.15-1.31 1.92-.06 0-.2.25-.22.4-.11.78-.49.73-1 .36-.39-.28-.76-.66-1.2-.78-.84-.24-.99.32-.89 1 .16 0 .33-.04.47 0 .93.33 1.04.64 1.61 1.78.87.56.83.71.73.79-.43.35-.86.73-1.34 1.01-.38.22-.84.32-1.26.48 0-.62.31-.89.93-1 .57-.1.52-.52.24-.92-.19-.27-.88-.69.15-.59.52.05 1.02.3.55.23q-2.08-.34-2.08-1.79-1.43-.06-1.54-1.17c-.03-.24-.06-.49-.11-.72 0-.01-.23.03-.35.04l-.54.07c.04-.23.07-.66.14-.66.72-.09.97-.45.88-1.16-.06-.5-.01-1.02-.01-1.54-.43-.06-.88.94-1.27 0-.07-.18.06-.47.16-.68.21-.39.44-.33.69 0 .08.1.27.12.41.17 0-.25.03-.5 0-.75-.08-.66-.64-1.11-1.08-.77-.88.66-2.03 1.16-2 2.55.71-.09 1.41.19 1.39.86-.01.47-.72.85-1.39.69 0 .51 0 1.03.77 2.15.66.72.57.88.44.92-.14.05-.41.04-.47-.05-.27-.39-.5-.81-.72-1.23-.02-.03.15-.22.24-.24.59-.13 1.33.58.51.6-1.09-.55-1.68-.49-1.68-.43 0 .63-.02 1.76.16 1.8.78.16.84.26.28.82-.5.51-1.32.88-1.08 1.84.26.17.52.48.79.49.77.03.91.2.3.74-.19.17-.48.33-.51.53-.06.38-.11.9.09 1.16.32.42.72.11 1-.22.76-.92 1.14-.44 2.19.81.89 1.24.32 1.11-.17 1.12-.85.01-.52-.62-.6-1.05-.16-.8.44-.44.75-.49.68-.13.88.23.02.42-1.47-.61-1.92-.2-2.24.31-.13.2.98.74-.19.81-.37.02-1-.18-.89.5.08.53-.63 1.46.61 1.57.08 0 .22.38.18.42-.21.18-.46.34-.72.43-.07.02-.22-.24-.36-.34-1.04-.77-1.65-.72-2.28.21-.27.39-.45.85-.73 1.22-.21.28-.43.34.08.64 1.27.73 1.24.83.16 1.71-.35.28-.73.51-1.08.79-.15.12-.22.32-.33.49-.06-.23-.15-.46-.18-.69-.07-.48.03-.79.63-.82.14 0 .39-.7.36-.71-1.47-.92-1.5-2.02-.52-3.33.07-.09-.43-.52-.44-.79-.01-.44-.37-1.16.34-1.27 1.24-.18.42-1.06.65-1.57q-1.52-.02-1.54-1.54c-1.43-.06-1.5-.05-1.52-1.17-.02-.83-.17-1.03-.87-.46-.03.02-.46-.45-.7-.69.3-.21.58-.57.91-.62.98-.15 1.04-.11 1.02-.52-.01-.22-.66-.47-.02-.63.35-.09.78.13 1.17.21l-.31.72 1 .06c.34.01.68.03 1.02-.01.12-.01.22-.18.33-.28-1.03-1.09 1.22-1.37.59-2.47-.26-.45-.12-1.18-.03-1.76.23-1.43-.51-2.14-1.72-2.58-1.02-.37-.86.36-.1 1.55.65.7.49.87.3.91-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54.52.61q-2.29-.64-2.31-2.16c-1.15-.11-1.44-.39-1.54-1.54-1.64-.41-1.7-.54-.68-1.63.12-.13.23-.25.36-.36.62-.52-.09-.71-.3-.88-.22-.18-.61-.15-.93-.21-.11.63.43 1.49-.84 1.67-.5.07-.88.74-.71 1.42 1.29-.06 1.96.78 2.53 1.75l.4.72c-.32.03-.67.15-.97.08-.45-.1-.86-.41-1.32-.48-.86-.13-.6.56-.64 1.01.57.38 1.43.53.75 1.62-.49.79-.34.87.59 2.07.07.08-.06.38-.17.52-.18.25-.43.58-.71.11-.48-.8-1.25-.73-2.46-.05-.66.27-.97-.03-.93-.28.05-.32.33-.68.62-.85.11-.07.5.29.76.46-.22.33-.44.66-.45.67.45-1.36.45-2.04.45-2.73q-1.52-.02-1.54-1.54c-.53.08-.89-.24-1.33-.46-.5-.25-1.1-.57-1.85-.09-.98.63-1.07.51-1.45-.99-1.35-.12-1.69 1.2-2.55 1.77-.53.36-.36.59-.08 1.11.34.64 1.15 1.57-.16 2.24-.5.25-.09.56.14.68.34.18.74.25 1.24.38.06-.12-.11-.31-.12-.52-.05-.65.46-.57.83-.51.25.04.65.26.67.43.09.85-.6.51-1.38.6-.24.61.23 1.36-.96 1.67-.89.23-.92.88-.15 1.66.67.68.5 1.1-.11 1.61-.32.27-.63.56-.89.89-.31.4-.47.19-.73-.05-.29-.26-.75-.69-.96-.6-.39.16-.65.63-.96.98.51.11 1.1.11 1.51.37.18.12.03.77.03 1.17.51.11 1.1.11 1.51.37.18.12.03.77.03 1.17.16 0 .33.04.47 0 .93-.33 1.04-.64.23-1.95-.14-.73-.02-.92.09-1.11.24.24.61.45.68.73.05.21-.28.52-.45.79l-.32-.41c.58.41.87.34 1.08.43.44.19 1.04.38 1.18.73.11.28-.25 1.06-.56 1.16-1.28.45-1.88 1.63-2.85 2.38-.13.1-.44.18-.52.11-.23-.21-.45-.49-.55-.78-.04-.12.25-.52.35-.5 1.45.25 1.17-.76 1.17-1.57-.51.17-1.03.34-1.96 1.14-.51.11-.63-.17-.59-.43.03-.2.24-.5.39-.51.19-.02.41.21.61.33-.22.33-.38.57-.42.62.42-1.31.42-1.99.42-2.68q-1.52-.02-1.54-1.54c-.55-.01-1.27.15-.95-.84.12-.36.31-.7.44-1.07.27-.79 1.14-1.08 2.06-.66v-2.57c-.42-.25-.63.99-1.13.16l-.3-.53c.15-.05.29-.13.44-.14.33-.02.66 0 .99 0-.02-1.5.01-1.55-1.19-2.45-.77-.58.4-.74.16-1.15-.85-.33-2.15.77-2.63-.8 0-.01-.43.06-.44.11-.1 1.43-1.25.67-1.71.62-.75-.09-.22-.96-.37-1.47-.64-.1-1.59.4-1.62-.85-1.02-.03-.98-1.11-1.56-1.6-.72-.62-.9-.67-1.45.13-.58.85-.54.8-1.56.03-.32-.24-.9-.19-1.35-.16-.08 0-.12.58-.17.9.7-.18 1.13.24 1.49.73.57.78 1.02.77 1.67.02.42-.48 1.05-.42 1.55.09.42.43.86.83 1.26 1.27.41.45.25.96-.42.94-1.47-.06-.76.98-.92 1.58.38.12.84.14 1.11.38.71.61 1.23 1.58 2.23.22.38-.51 1.27.04 1.29.76.01.43.02.85 0 1.28 0 .14-.14.28-.21.42-.1-.19-.17-.4-.3-.56-.1-.12-.27-.18-.42-.26-.44 1.67-1.79.51-2.66.86.05.14.09.29.16.42.55.93.51 1.04-.47 1.12-.24.02-.48 0-.73 0v.24c-.05 1.59-.09 1.62-1.54.79v.26c.05.9.14 1.79-1.05 2.12-.22.06-.38.51-.46.8-.03.09.3.4.46.4.37 0 .88.26 1.05-.36.02-.08-.03-.2 0-.25.26-.3.71-.86.78-.82.51.31.94.75.75 1.45.69 0 1.37 0 1.82-.37-.09-.48.05-.66.17-.64.36.06.7.19 1.05.29l-.72.72c-.21-.21-.41-.41-.5-.37-.21.96-.2 1.37.45 1.91.87.72.8.8 0 1.59-.3.3-.55.71-.91.87-.33.15-.79.03-1.19.03.19-.3.33-.64.58-.88.14-.14.44-.13.67-.19-.1-.35-.15-.72-.3-1.04-.19-.4-.46-.38-.71 0-.09.14-.32.23-.34.36-.13 1.02-.49 1.13-1.25.44-.34-.3-.81-.54-1.26-.62-.86-.15-.6.55.13 1.63.65.7.49.87.3.91-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54.52.61-1.68-.73-2.12-.26-2.35.58-.04.16-.51.2-.79.3-.07-.23-.19-.45-.2-.68-.01-.23.1-.68.13-.68 1.04.06.9-1.01 1.39-1.47 1.01-.96.95-1.02.06-1.96-.12-.12-.31-.22-.34-.37-.03-.13.05-.36.15-.45.32-.24.71-.38 1-.65.14-.13.2-.51.11-.66-.09-.16-.42-.22-.64-.23-.12 0-.24.22-.38.29-1.31.64-1.33.66-2.46-.52-.38-.39-.58-.14-.72.12-.18.34-.25.75.4 1.74.65.7.49.87.3.91-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54.52.61-1.69-.72-2.14-.27-2.34.59-.03.15-.42.35-.56.3-.29-.11-.61-.33-.75-.59-.07-.14.17-.53.37-.69.23-.19.8-.23.82-.39.04-.33-.11-.73-.29-1.04-.19-.33-.3-.37-.62.07-.83 1.13-1.2 1.13-2.06.32-.87-.8-.93-.86-1.53.24-.49.97-.84.63-1.43.16-.29-.23-.74-.46.03-.62.26-.06.57-.15.71-.31.61-.7.49-1.28-.42-1.74-1.14-.58-1.34-.89-.38-1.22 1.21-.41 1.63-.95 1.27-1.73-.94-.3-1.5-.58-2.07-.86l.82-.72c.45.31.94.59 1.3.93.11.1-.05.35-.05.64.21 0 .54-.04.73-.08.19-.04.39-.08.56-.08.34 0 .58.19.5.92-.07.6.3.68.78.65.42-.03.85 0 1.22-.24.11-.44.23-.6.35-.75.07.21.18.42.2.63 0 .11-.17.24-.26.35-.1-.14-.21-.28-.29-.23-.12.75-.29 1.26-.46 1.78 1.08-.23 1.43.75 2.02 1.28.43.38.52-.03.74-.18.43-.29.23-.53-.07-.72-.27-.16-.69-.18-.83-.4-.2-.31-.3-.75-.27-1.13.01-.15.47-.34.74-.38.42-.06.85-.02 1.28-.02l-.33-.95 1.36.18-.51.78c.25 0 .51.02.76 0 .7-.06 1.11.39 1.27.94.24.8-.7.45-.95.81-.1.14-.26.23-.35.37-.06.09-.1.32-.07.34.13.07.33.17.44.12.5-.23.95-.61 1.46-.73 1.06-.26 1.16-.95.72-1.72-.48-.23-.75-.52-.69-.68.08-.21.42-.31.65-.46.11.26.27.52.32.79.01.08-.27.21-.28.34q1.83-.08 1.85 1.44h1.54c0-.24.03-.49 0-.73-.15-.92.47-.83 1.03-.82-.05-.43.84-.75.02-1.34-.51-.37-.71-1.15-1.05-1.75-.51.16-1.2-.4-1.54.38-.57 1.3-.56 1.3-1.49.45-.84-.78-1.34-.78-2.08.23-.23.31-.2.55-.58.2-.31-.29-.49-.44-.12-.93.34-.45 1.36-.03 1.16-.97-.09-.4-1.04-.95.31-.94.4 0 .81-.46 1.21-.7-.29-.44-.53-1.2-.88-1.25-.84-.13-.59-.64-.63-1.09-1.5.37-1.52.4-1.03 1.51.1.22.37.5.31.61-.19.36-.49.89-.78.91-.83.07-.36-.3-.19-.66.06-.13-.44-.52-.68-.79-.24.24-.54.45-.7.74-.11.2 1.03.52.04.73-.88.19-.9.11-2.06 1.24-.11.11-.45.17-.52.1-.18-.19-.38-.47-.37-.71 0-.29.14-.66.35-.86.97-.94-.03-1-.55-1.28-.06 1.52-.06 1.53-1.16 1.54h-2.72c-1.71-.02-1.7-.02-2.41-1.44-.8-.23-1.27-.52-1.19-.68.11-.21.65-.31 1.02-.46.21.26.49.52.59.79.03.08-.41.21-.42.34 1.08-.22 1.72-.29 2.27-.47.41-.13.9-.36.19-.71-.66-.32-1.28-.7-1.85-1.09-.11-.07.12-.39.34-.51.21-.13.59-.18.91-.24.07-.01.2.11.31.17.7.39 1.52.94 1.89 1.09.23.07.74-.62 1.05-1.01.59-.76.85 0 1.06.28.26.34.27.86-.38.84-.68-.02-1.11.03-1.06.91.07 1.09.85.48 1.31.64.08.03.17 0 .25 0 .05-.31 0-.77.18-.91.81-.6 1.35-1.75 2.11-2.01 1.17-.41.67-1.1.8-1.71-.51 0-1.03.03-1.54-.02-.15-.01-.34-.2-.4-.35-.34-.73-.57-.74-.57-.42 0 1.02-.67.76-1.21.79-.82.05-.8.05-.92 1.08-.02.17-.31.45-.44.43-.28-.04-.53-.11-.7-.27-.28-.16-.4-.39-.18-.76.07-.12.22-.34.17-.35-1.2-.37-2.59-.03-3.76.81-.4.28-1.15.4-1.73.6-.21-.2-.56-.4-.61-.61-.11-.54-.08-.95-1.54-.96-1.91-.02-1.28.66-1.15 1.19.15.59.12 1.02-1.2.9-.92-.08-1.13.14-1.16.68-.03.52-.81.43-1.6.13-.9-.35-1.32-.78-1.36-1.32-2.43.21-2.47.34-.28 2.21zm-3.83 123.13c-.11-.06-.21-.14-.31-.22l.22-.23.25.29c-.79-.38-.87-.48-.95-.58.11-.03.28-.12.31-.09.08.1.11.25.16.38h-.23c.65.35.57.46.55.45zm-4.36-57.34c-.11-.06-.2-.16-.3-.24l.24-.22.23.31c-.77-.43-.84-.53-.92-.64.11-.03.29-.11.31-.07.08.11.1.26.14.39h-.23c.63.37.54.48.52.47zm52.05-42.27c.06-.16.22-.29.33-.44.06.14.14.29.16.44.03.16 0 .34 0 .5.34 0 .74-.12 1.01.03.4.21.87.55 1.01.94.21.6-.46.45-.77.65-.5.32-.92.77-.73 1.47 1.2 1.1.96 1.29.71 1.48l-.71-1.23c.17-.08.4-.28.5-.23.37.2.7.48 1.11.77-2.37-.95-3.02-.54-3.1.09-.13 1.03-.8.61-1.26.61-.11 0-.24-.64-.33-1-.04-.15 0-.33 0-.49-.79-.13-1.06-.42-.99-.57.08-.21.42-.31.65-.46.11.26.27.52.32.79.01.08-.27.21-.59.45q2.13-.23 2.15-1.75c-.25 0-.5-.01-.75 0-.44.02-.94-.03-.76-.59.1-.32.56-.57.92-.76.11-.06.39.2.59.32l.51-.51c0-.17-.04-.35.01-.5zM97.29 98.03c-.25.9.57 1.26.95 1.85.07.11 0 .32-.01.48-.18-.02-.39.02-.52-.06-.2-.13-.33-.49-.52-.51-1.54-.16-1.63-1.15-1.42-2.33-.9.28-1.08 0-1-.1.15-.2.42-.32.67-.41.07-.03.22.17.34.27-.26.24-.52.47-.83.77 1.33-.34 1.84-.15 2.35.04l.53-.49c.56-.73.77-.49.99-.26-.25.09-.5.21-.76.25-.05 0-.21-.3-.2-.46 0-.18.14-.35.24-.55-.45 1.19-.63 1.35-.81 1.52zm-7.14-57.46l1.99.17-.21.78c2.7 1.14 2.67 1.38 2.59 1.54-.21.37-.43.74-.71 1.06-.13.15-.58.28-.7.21-.48-.29-.9-.67-1.36-1.01.21-.09.38-.25.65-.25.69 0 1.3 0 .71-.77-.22-.29-1.54-.41-.77-.72.33-.13 1.46.42 2.3.69-2.91-.75-3.19-.75-3.41-.75l-.35.52c-.82.94-1.4.64-1.54.4a.658.658 0 01.21-.85c.1-.07.88.29 1.33.46-.07.33-.14.66-.24 1.34.31-1.51.48-1.68.58-1.85l-1.08-.95zm7.94 123.76l-.69.85c-.08-.08-.25-.17-.24-.23.08-.3.2-.59.31-.89-.36 1.43-.4 1.74-.45 2.05-.35-.1-.72-.14-1.04-.31-.18-.09-.26-.37-.38-.57-2.43 1.45-2.58 1.35-2.67 1.22-.1-.15-.25-.39-.2-.51.09-.22.31-.52.49-.53.82-.05.85-.53.81-1.16-.05-.67.53-.53.88-.49.23.02.58.29.61.49.06.31-.11.96-.18.96-.94 0-1.12.93-1.71 1.33-.12.08-.23.18-.34.27 2.82-1.59 3.33-1.6 3.84-1.62.66-.98.8-.92.93-.86zm5.16-123.34c-.15-.18-.05-.47.05-.68.19-.39.54-.33.97 0 .13.1.41.12.61.17-.09-.42-.31-.87-.24-1.26.1-.59 1.03-.73 1.7-.34.39.23.8.46 1.13.72.64.5 1.8 1.2 1.65 1.51-.38.83-1.73.23-2.63.4.01.08-.01.2.05.25.47.36 1.28.71.59 1.19-.28.19-1.12.19-1.46 0-.86-.48-.17-.83.16-1.19.05-.05-.02-.16-.04-.25l-.8-.51c-.61-.06-.96.94-1.74 0zM92.33 193.03c1.22-1.49 1.4-1.34 1.46-1.16.23.83-.28 1.31-1.21 1.13a.41.41 0 01-.26-.22c-.16-.54.45-1.33 1.14-1.36-1.17 1.92-1.2 2.23-1.23 2.54-.35-.09-.73-.12-1.04-.28-.18-.09-.27-.37-.4-.56-1.35-.77-1.33-.6-.1-1.54l-.1-1.54c-.05-.3-.15-.14-.26.02-.25-.23-.64-.41-.71-.69-.05-.19.34-.49.54-.74.13.13.29.25.37.41.07.14.03.33.05.67.53.32 1.05.28 1.56.25.19-.11.01-.29-.01-.49-.08-.64.43-.6.81-.56.25.03.66.22.69.39.13.84-.59.51-1.18.75-.23 1.43-.22 1.43-1.74 1.55l.1 1.54 1.54-.1zm-.75-77.6l-.74.82c-.08-.08-.24-.19-.22-.24.1-.3.24-.59.37-.88-.54 1.81-.81 2.17-1.08 2.53-.12-.2-.31-.4-.34-.61-.04-.38-.09-.85.54-.81.18.01.35.06.76.13.44-1.07.58-1 .71-.93zm8.51 42.87l.77-.76.73.93c-.26.16-.53.32-.8.49.98-.32 1.15-.16 1.33 0 .96 1.07.67 1.38.42 1.34-.32-.04-.68-.31-.87-.58-.07-.11.28-.5.44-.76.34.21.67.41 1.36.84-1.53-1-1.71-1.17-1.88-1.33-1.02.29-1.26.06-1.5-.17zM96.1 70.67c-.1 0-.23-.19-.34-.3.4-.08.8-.16 1.21-.19.03 0 .19.22.45.5-.28-.91-.14-1.15.71-.89.85.25.57.49.59.76.52.07.93.23 1.26.52.31.27.12.25-.27.23-.36-.01-.7.06-1.04.11 0 .62.02.93-.9.81-.51-.07-.69-.17-.68-.51.01-.39.17-.59.84-.41.27.07.52.17.71.23.05-.42.07-.71.09-1l-1.53-.32c-.35.45-.72.48-1.11.45zm-2.25 159.28c.61-.18 1.53.27 1.58-1 .02-.5.65-.94 1.34-.84.88-1.39 1.05-1.31 1.13-1.17.08.15.17.42.1.51-.2.24-.46.44-.73.61-.13.08-.33.04-.5.06l.41-1.09.22-.5c-.58 2.1-.53 2.61-.48 3.12.38.08.79.1 1.14.25.25.1.61.29.21.68-.3.3-.54.65-.81.97-.85 1.04-.83 1.02-1.99 0-.15-.13-.57-.03-.84.05-.61.19-.15 1.2-.95 1.26-.06 0-.14-.09-.2-.15-.86-.83.47-.96.48-1.49.01-.42-.07-.84-.11-1.26-1.37-.72-1.35-.55-.15-1.53 1.05-1.21 1.48-.87 1.46-.55-.05.76-.79.35-1.2.53-.04-.14-.14-.31-.11-.42.13-.39.31-.76.54-1.29-.64 2.24-.58 2.76-.53 3.27zM91.69 110.1c-.64 0-.45-.57-.4-.91.04-.22.31-.51.53-.57.8-.21.35.46.6.86 1.02-2.03 1.2-1.78 1.38-1.53l-1.24.67c-.08-.17-.28-.41-.22-.5.21-.36.49-.68.8-1.08-.96 2.66-1.2 3.05-1.44 3.06zM82.8 76.61l-1.27.64c-.07-.17-.26-.42-.2-.51.22-.36.52-.67.85-1.06-1.11 2.28-1.39 2.65-1.69 3.01l-.69-.64c.32-.28.62-.59.98-.82.11-.07.35.06.78.15.9-1.28 1.07-1.02 1.24-.76zm13.02 123.18l-1.18.79c-.1-.16-.31-.38-.27-.48.17-.38.43-.73.7-1.15-.72 2.74-.92 3.16-1.17 3.18-.64.07-.5-.52-.48-.86.02-.22.26-.54.47-.62.78-.29.39.42.67.79.83-2.12 1.04-1.89 1.24-1.66zm27.3-144.44l-.83-1.24c.16-.08.41-.27.47-.22.26.19.46.46.67.69-1.87-.86-2.25-1.14-2.63-1.42l.59-.72c.3.31.62.59.87.93.08.1-.04.35-.1.79 1.12.77 1.04.98.95 1.19zm53.58 3.14l1.09.82c-.33.24-.63.53-.99.7-.13.06-.39-.18-.71-.34-.3 1.07-.81 1.07-1.33.36h-1.02c-.69 0-.55-.54-.5-.9.04-.24.3-.58.51-.62.49-.09 1.01-.03 1.52-.03-.26-1.02-.03-1.26.21-1.49l.75.79-.96.71c-.16-.27-.31-.54-.47-.82.3 1.33.13 1.84-.04 2.36h1.54c.06-.89.23-1.22.4-1.54zm-73.73-2.08c-.17-.07-.44-.49-.66-.75-.06-.07-.09-.16-.13-.24.33.11.66.18.99.33.17.08.37.31.79.7-2.63-1.14-3.13-1.42-3.89-2.57l-.93.51c-.24.73-.51.45-.68.19-.12-.2-.16-.5-.04-.51.14-.02.48.21.72.33.05.34.09.67.21 1.24-.53-1.67-.82-2.11-1.05-2.52-.15-.27-.24-.75-.16-.74.82.15.84-.4 1.06-.84.04-.07.55.16.82.32.09.05.24.45.19.46-.69.17-.79.65-.14 1.56 1.02.11 1.41.39 2.11 1.54 1.37 1.03 1.09 1.12.79.99zm-21.74 84.26c.2-.43.45-.84.69-1.26l.73 1.14c-.29.16-.58.32-.92.5-.35.39-.17.91 0 1.42 2.52-.22 2.39.1 2.25.42-.27-.23-.64-.79-.67.11 0 .15.45.29.66.48.57.53.45 1.57-.24 1.86-.13.06-.43-.04-.53-.16-.45-.57-.9-1.15-1.28-1.77-.4-.63-.34-1.01.57-1.01.17 0 .3-.7.55-1 .19-.23.66-.55.77-.47.27.18.4.57.61.9-2.95.63-3.21.61-3.46.64-.48.05-.75-.04-.81-.64-.08-.88.35-1.01 1.04-.92.3-.03 0-.22.02-.25zM98.92 157c-.1.02-.24-.22-.37-.33.39-.23.78-.47 1.18-.66.03-.02.21.26.5.63.75-1.91 1.07-1.65 1.23-1.32.05.12-.28.57-.47.61-.32.05-.68-.12-1.02-.19.19-.43.38-.86.63-1.43-.92 2.5-1.29 2.65-1.68 2.71zM79.5 90.62c-.1 0-.23-.24-.34-.37.41-.2.81-.42 1.23-.59.03-.01.19.28.45.67.89-1.89 1.19-1.61 1.33-1.26.05.12-.32.56-.52.58-.32.03-.67-.17-1.01-.27.22-.42.44-.85.74-1.42-1.11 2.48-1.49 2.6-1.88 2.64zm3.19 6.83l-.69-.62c.32-.29.61-.6.96-.84.11-.07.35.05.78.14.8-1.35 1.1-1.06 1.24-.71.05.12-.31.56-.51.59-.32.03-.67-.16-1.01-.26.21-.42.43-.85.72-1.42-.91 2.39-1.2 2.76-1.49 3.13zm4 32.52c-.12-.2-.32-.39-.35-.61-.05-.38-.1-.85.53-.82.18 0 .35.05.76.12.77-1.36 1.09-1.09 1.24-.75.05.12-.29.57-.49.6-.32.04-.68-.14-1.02-.23.2-.43.4-.86.67-1.43-.82 2.38-1.08 2.75-1.35 3.12zm19.87 96.67c-.86.04-.66-.53-.74-.97l-1.54.15c-.05.79-.31 1.08-.47 1.03-.21-.06-.35-.38-.52-.59.25-.14.49-.31.75-.39.07-.02.23.24.5.53-.31-1.08-.36-1.59-.41-2.09-.7.16-1.42-.05-1.46-.71-.03-.46.63-.9 1.31-.81.15-.27.24-.63.47-.81.47-.37.99-.46.95-1.38-.04-1.09.77-1.32 1.63-.67.33.25.63.55.98.78.66.43.63.87.1 1.38-.24.23-.39.55-.65.75-.77.59.45.68.26 1.11l.95.07c-.08.35-.05.79-.26 1.02-.24.26-.69.32-1.05.47.16.66.08 1.07-.79 1.12zm29.86-168.13c.24.24.62.45.68.73.04.19-.37.47-.58.71-.12-.14-.28-.26-.34-.43-.06-.15-.01-.34-.01-.67-.89-.41-1.22-.58-1.54-.75l.82-1.09c.24.33.53.63.7.99.06.13-.18.39-.34.71.4.09.51-.06.62-.21zm-49.46 58.02c.04.15.03.39-.06.47-.3.27-.65.48-.98.72 0-.09-.02-.18 0-.25.21-.43.41-.86.64-1.34-.67 2.1-.68 2.62-.69 3.13.03.3.14.15.26 0 .24.24.61.46.66.74.03.19-.37.47-.58.71-.12-.14-.28-.27-.34-.43-.06-.15 0-.34 0-.67-.51-.36-1.02-.36-1.54-.37-.02 1.07.09 1.74-.84 1.52-.26-.06-.66-.24-.69-.42-.09-.57.74-1.24 1.28-1.09.14.04.21.28.24.32.14-1.48.43-1.76 1.59-1.85.86-1.39 1.01-1.31 1.04-1.19zm-4.55 39.34c-.08.02-.24-.21-.36-.33l.91-.69c0 .16 0 .32.02.71 1.27-2.16 1.45-2 1.49-1.82.2.85-.34 1.31-1.26 1.09-.1-.02-.22-.14-.25-.24-.14-.55.51-1.32 1.2-1.32-1.31 2.35-1.51 2.53-1.75 2.6zm-1.16-36.68c2.68-2.92 2.94-2.66 3.01-2.37.06.26-.08.82-.14.82-.8.02-1.06.55-1.36 1.18-.11.23-.65.3-1.01.36-.2.03-.73.28-.35-.44.51-.96 1.56-1.42 2.01-2.39.03-.07.12-.12.35-.34-2.63 3.69-2.64 4.29-2.9 4.7-.12.18-.77.02-1.17.02 0 1.07.1 1.75-.83 1.53-.26-.06-.66-.24-.69-.42-.09-.57.72-1.25 1.27-1.1.14.04.22.28.24.32.12-1.49.42-1.77 1.57-1.86zm17.92-83l.71-.72c.57.31 1.17.59 1.66.93.15.1.04.35.06.79 2.63 1.03 2.37 1.2 2.11 1.24-1.2.18-2.03-.37-1.93-1.28.01-.1.16-.22.31-.24.83-.12 2.14.54 2.26 1.23-3.73-1.39-4.52-1.67-5.18-1.95zm27.77 20.47c.3-.07.59-.19.89-.2.2 0 .41.16.61.25-.23.11-.46.23-.75.37 2.17 1.19 2.01 1.37 1.82 1.41-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54 1.29 1.23-2.57-1.27-2.81-1.4-3.04-1.54zm46.25-5.86c-.14-.67.2-1.38.69-1.4.69-.03.95.67.86 1.38l1.54-1.54c-.16 0-.33.04-.47 0-.93-.33-1.04-.64-.56-1.54-.5 0-1.01.06-1.49-.03-.21-.04-.51-.35-.54-.56-.05-.34-.22-1 .41-.92 1.46.17 1.07-.82 1.1-1.57h-1.54c-.9 1.37-1.06 1.22-1.23 1.08-.44-.36-.82-.87-1.33-1.04-.57-.19-.66-.5-.42-.86.12-.19.59-.21.89-.2.84.03 1.04 1.39 2.09 1.02 0 .25.09.56-.02.74-.16.28-.47.47-.75.73.68-2.19.96-2.88 1.63-2.86.47.01.85.72.69 1.39 1.15.11 1.44.39 1.54 1.54.37.12.77.19 1.11.37.24.13.52.31.15.72-.53.58-1.49.93-1.26 2 .59-.17 1.7.56 1.54-.89-.06-.59.28-.72.77-.65.23.04.64.08.66.18.08.38.09 1.13.02 1.14-1.56.27-1.51 2.07-2.65 2.72-.21.12-.34.38-.55.52-.39.26-.81.48-1.22.72.28.36.6.7.83 1.09.1.17.08.53-.05.66-.13.14-.45.16-.66.13-.52-.07-.51-1.51-1.44-.56-.11-.15-.31-.3-.32-.46-.04-.68-.02-1.35-.02-2.03-.43-.06-.88.94-1.27 0-.07-.18.06-.47.16-.68.21-.39.44-.33.69 0 .08.1.27.12.41.17 0-.17.03-.34 0-.5zm-17.47 9.22c-.36-.17-.67-.45-.99-.7l1.14-.72c.15.29.31.58.57 1.08 1.21 1.68 1.04 1.86.85 1.9-.85.18-1.3-.37-1.06-1.28.03-.1.14-.22.24-.24.55-.12 1.31.54 1.29 1.23-1.65-1.44-1.91-1.21-2.04-1.26zM77.04 78.01c-.1 0-.23-.24-.34-.37.41-.2.81-.41 1.23-.58.03-.01.18.28.44.68 1.19-2.04 1.37-1.87 1.39-1.67.12.86-.46 1.29-1.35.99-.1-.03-.21-.16-.22-.26-.09-.56.62-1.28 1.31-1.23-1.71 2.29-2.08 2.4-2.47 2.43zm12.5-41.49c.21-.37.43-.73.66-1.1.57.32 1.2.63 1.65.99.16.13-.06.39-.13.72 3.31 1.09 3.09 1.27 2.85 1.31-1.15.18-2.12-.37-2.26-1.28-.01-.1.11-.22.24-.24.79-.13 2.28.53 2.58 1.22-4.29-1.29-5-1.45-5.58-1.62zm9.3 6.54c-1 .18-1.85-.37-1.97-1.28-.01-.1.09-.22.21-.24.7-.12 1.99.54 2.25 1.23-4.55-1.26-4.68-1.25-5.5-2.77-1.33-.31-1.75-.68-2.05-1.07-.08-.1.19-.24.3-.36.55.39 1.1.78 1.59 1.19.04.03-.27.2-.65.48 1.52-.25 2.26-.26 2.98-.26-.07-.31-.31-.69-.17-.91.18-.32.38-.93 1.42-.19.19.13.42.26.66.35.67.26 1.55.79 1.93.7.98-.22-.02-.98 0-1.49q-2.26-.02-2.92-1.54c-1.4-.06-1.99-.23-2.57-.4.25-.37.52-.73.8-1.1.53.33 1.12.63 1.53.99.15.13-.12.39-.23.71 1.3-.11 2.21-.11 2.94.15.32.12.31.77.45 1.17.48.06 1.02.02 1.42.19.6.24 1.45.57.56 1.05-.33.18-.48.52-.81.69-.97.52.78.74.58 1.15 1.61 1.11 1.27 1.42.95 1.38-.43-.05-.98-.33-1.31-.62-.13-.11.22-.5.36-.76.51.22 1.01.44 2.04.89-2.57-.89-3.22-.91-3.76-.89-.64.03-1.16-.04-1.32-.65-.37-1.46-1.65-.74-2.55-.9l.73 1.54c2.51 1.32 2.31 1.49 2.1 1.53zm4.55 7.66l-1.31-1.24c.13-.08.3-.27.39-.22.34.19.64.46.93.69-1.92-.71-2.49-.71-3-.71-.05.52.39 1.51-1.03.54-.13-.09-.34.03-.51-.03-2.15-.82-2.42-1.01-1.28-2.02.54-.47-.33-1.06-.42-1.57-.96-.12-1.28-.33-1.49-.57-.07-.08.12-.24.2-.36l1.29.92h-.82c1.2.05 1.61.01 1.96.18.49.23 1.31.54.73 1.04-.1.09-.18.22-.21.35-.09.39-.39.87-.14 1.16.62.74 1.12.22 1.72.36-.1-.59-1.41-1.68.24-1.55 1.4.11.88 1.04 1.34 1.55 1.44 1.06 1.4 1.27 1.41 1.48zM91.51 211.25c-.2-.29-.29-.66-.43-.99l.92-.24c-.08-.64.09-1.37-.68-1.78-.37-.2-.7-.48-.17-.88a.58.58 0 00.16-.19l.95-1.67 1.54 1.06c.59.4.9.24 1.45-.77.11-.2.14-.45.21-.67.06.05.17.1.19.17.06.24.2.51.13.71-.2.55-.75 1.14-.65 1.6.1.46.85.77 1.27 1.19.05.05-.09.44-.23.52-.33.2-.72.31-1.09.46-.16.86.6 1.11 1.01 1.6.14.17 0 .56-.01.86-.27-.09-.76-.15-.79-.29-.23-1.24-1.1-.34-1.63-.52q.1 1.51-1.41 1.66l.13 1.53 1.54-.13c.98-1.09 1.19-1.02 1.41-.95l-1.16.93c-.09-.15-.31-.38-.26-.45.17-.27.42-.49.63-.72-.47 1.55-.41 2-.16 2.25.65.64 1.42 1.15 2.06 1.79.26.26 1.01.28.66.98-.26.51-.7.65-1.23.63-.07.7-.3 1.09-.52 1.48-.14-.19-.36-.36-.41-.57-.09-.37-.19-.83.44-.86.18 0 .36.02.77.04-.45-.72-.05-1.65-1.28-1.65-.26 0-.51-.41-.78-.61-.95-.73-.98-.72-1.49.31-.1.21.15.77-.41.44-.23-.13-.8-.21-.38-.87.36-.56.4-1.34.58-2.02-1.36-.74-1.34-.57-.13-1.53l-.13-1.53c-.21-.1-.5-.14-.61-.31zm-7.23-85.19c.12 1.46-.96.73-1.56.89-.39.8-1.07 1.51-1.37 2.25-.42 1.05-1.05.8-1.73.83q-.03 1.53-1.55 1.55-.03 1.53-1.55 1.56c-.14.8-.43 1.07-.58 1-.21-.08-.31-.43-.45-.66.26-.12.52-.27.79-.32.08-.01.21.27.44.59q-.17-2.15 1.35-2.17c.12-1.16.4-1.45 1.55-1.55.43-1.19 1.21-2.13 2.18-2.9.22-.18.62-.13.93-.18v-1.55c-.72-.16-1.1-.45-1.48-.74.28-.27.53-.6.86-.78.09-.05.53.28.6.5.11.3.02.68.02 1.41.51-.16 1.44-.98 1.55.27zm-7.09-5.38c-.84 0-.52-.64-.59-1.07-.14-.81.45-.43.76-.49.69-.12.88.24.78.87-2.25-1.05-2.62-1.35-3-1.64.29-.27.54-.6.87-.78.09-.05.52.28.6.51.1.31.01.68 0 1.42 1.64 1.32 1.07 1.18.58 1.18zm136.69-73.76c.02-.23.09-.46.14-.69l.53.3c.35.22.38.44.02.71-.1.08-.12.27-.18.42.42 0 .87-.08 1.26.02.55.14.68.81.33 1.22-.37.43-.89.84-1.04 1.34-.23.81-.8.51-1.2.47-.62-.06-.32-.64-.38-1.01-.03-.17 0-.34 0-.51l-1.54.51c-.3.03-.15.14 0 .26-.24.24-.45.62-.73.68-.19.04-.47-.37-.71-.58.14-.12.26-.28.43-.34.15-.06.34-.01.67-.01.35-.33.39-.67.34-.99-.14-.88.2-1.22 1.08-1.08.32.05.66 0 .99 0 0-.25-.02-.5 0-.74zm-5.74 6.89c-.29-.07-.54-.34-.76-.57-.06-.06-.01-.35.07-.41.21-.15.52-.36.7-.3.27.11.46.42.87.83-2.86-1.11-3.17-.9-3.37.48.49.06 1.07-.03 1.44.21.73.47 1.38.33 2.1.12.66-.19 1.39.45 1.05.92-.7.97-.72 1.77.02 2.68.08.1-.13.63-.2.63-.62 0-1.32.35-1.83-.28-.14-.17-.17-.44-.25-.66-.09.2-.14.44-.28.61-.5.58-2.21.64-2.51-.02-.22-.48-.36-.67-.84-.58.08.24.3.55.22.71-.26.5-1.02.4-1.67-.13-.39-.31-.24-.48.04-.74.25-.22.46-.48.64-.76.06-.1.02-.4-.07-.45-.2-.12-.45-.19-.68-.18-.13 0-.23.23-.37.34-.96.74-1.05.68-1.44-.87-1.52 0-1.93-1.49-2.95-2.17l.32-.4c.33-.4.61-.87 1.01-1.18.32-.25.42-.99 1.07-.64.51.27.62.76.55 1.31-.02.17 0 .34 0 .51.55-.41 1.09-.61 1.46.19.08.18.05.62-.02.64-.26.07-.57.07-.84.01-.21-.05-.4-.21-.6-.33v2.06c.51-.22 1.31.57 1.6-.64.18-.76 1.41-.56 1.71-.31 1.04.85 1.03-.08 1.31-.59l-.94-.17c.06-.29.05-.62.19-.85.16-.28.42-.55.71-.71.35-.2.4-.98 1.06-.59.5.29.6.76.53 1.3 1.41.78 1.14 1.04.95 1zm-101.23-7.73l-1.08-1.23c.19-.08.43-.28.55-.23.49.2.93.48 1.46.77-4.68.54-4.82.38-4.85.26-.02-.36-.05-1 .11-1 1-.02.37-1.68 1.95-1.07.24.09.45.32.6.52.11.14.09.33.12.5-1.48-.2-1.59.92-2.25 1.43-.04.03-.13.04-.19.05 4.05-.38 3.83-.19 3.57 0zm-15.39 93.7c.39.09.58.11.26.54-.34.46-.77.57-1.29.51l.53 1.53c4.13 3.26 4.19 3.65 4.01 3.87-.23.29-.5 1.02-1.07.27-.2-.27-.5-.46-.72-.72-.48-.55-.54-.3-.68.25-.09.35-.47.71-.81.89-.18.09-.57-.2-.84-.36-.38-.21-.39-.45-.02-.73.27-.21.49-.48.73-.73.57-.6.9-1.09-.33-1.27-.24-.04-.51-.54-.58-.87-.03-.16.34-.48.59-.59.18-.08.64.05.66.15.29 1.28 1.52 1.75 2.26 2.62.11.13.6-.06 1.03-.12-4.9-2.66-5.59-2.67-6.27-2.66-.03 1.05-.19 1.25-.34 1.44-.21-.24-.62-.52-.58-.71.06-.28.43-.49.67-.74l.41.82c-.2-1.5.11-2.23-1.03-2.51-.75-.18-.67-.95.09-1.37.2-.11.5-.02.76-.02-.03-.65.14-1.3-.54-1.83-1.07-.85 0-.96.51-1.24.11-.37.14-.81.35-1.1.37-.5.83-.87 1.2.09.14.36.45.66.72.96.97 1.07.93 1.16-.71 1.59v1.54c.36.17.69.4 1.05.49zm-4.29 71.13c-.78-.97-1.34.73-2.08.17-.09-.07-.17-.24-.15-.34.11-.49 1.4-.74.27-1.47.25-.1.48-.28.74-.3 1.3-.12 1.3-.1 1.41 1.26-2.68-1.41-2.94-1.63-3.19-1.85.33-.3.65-.62 1.01-.89.02-.02.45.33.42.43-.12.41-.35.79-.55 1.22 2.3 1.17 2.22 1.47 2.13 1.77zm-6.59-47.86c.45-.7 1.09-1.29 1.67-1.91.02-.02.25.11.35.21.16.16.43.39.4.52-.06.22-.39.35-.48.58-.19.47-1.51.65-.38 1.46-.15.12-.3.23-.34.27 1.33 1.07 1.04 1.39.79 1.36-.32-.04-.69-.31-.88-.59-.07-.11.28-.51.43-.78.34.21.68.42 1.37.85-2.8-.8-3.34-1.33-2.94-1.96zm3.27-11.6c-.09.09-.56-.04-.68-.2-.36-.48-.46-1.16-1.26-1.23-.07 0-.17-.77-.07-1.13.04-.15.56-.22.87-.22.18 0 .36.18.54.28-.38.29-.54.6-.02.89.27.15.58.22.87.34.11.05.19.14.39.3.98-1.88 1.61-.9 1.61-.9.13.29.31.57.36.87.07.47 1.21-.21.7.67-.05.09-1.2.51-1.28-.58-.01-.14-.52-.39-.75-.35-.7.13-.78-.15-.81-.78-.04-.76.34-.84.91-.8h.25c-1.2 2.22-1.36 2.59-1.63 2.85zm10.15 73.83c-.22 0-.64-.19-.64-.19.28-1.03-1.05-1.33-1.01-2.19.01-.22.46-.41.7-.61.08-.38.1-.78.25-1.13.1-.23.28-.62.68-.22.36.35.79.62 1.15.97.31.3 1.18-.11 1.02.7-.14.69-.64 1.12-1.42 1.07-.11.6.72 1.64-.74 1.61zm17.05-161.4c-.06-.08-.13-.23-.19-.23-.25.02-.32-.39-.35-.82-.02-.23-.04-.54.02-.65.05-.1.23-.07.32.05.21.31.4.68.55 1.06.12.3.2.67.28 1-.15.16-.23.25-.26.29-.51 1.43-.58 1.14-.73.77-.03-.07.09-.45.15-.69.13.35.27.68.36 1.07.02.1-.04.35-.07.71-.4-1.6-.19-2.18-.09-2.57zm79.99-27.15c-.32-.06-.6-.4-.89-.63.2-.2.42-.58.6-.56.32.02.62.29 1.22.62-2.93-.75-3.23-.34-3.36.19-.2.8-.59.64-1.05.27-.31-.26-.55-.42-.15-.94.35-.45 1.29-.02 1.23-.99-.01-.26.31-.97.95-.65.44.22.77 1.45.53 1.8-.02.03-.28-.11-.42-.17 1.86.75 1.56 1.1 1.33 1.06zm-3.09 18.56l-.89-1.17c.17-.08.4-.28.5-.23.38.2.71.49 1.06.74q-3.08-.78-3.1-2.3c-.75-.05-1.76.35-1.61-1.13.03-.26-.8-.6-1.22-.93-.09-.07-.11-.23-.16-.35.15-.05.29-.12.44-.16.69-.18 1.05.3 1.47.71.38.37.76.63 1.1-.12.17-.39.54-.69.82-1.03.46.39.87.79.7 1.47.37.12.77.19 1.11.37.24.13.52.31.15.72-.53.58-1.49.93-1.26 2 1.25 1.07 1.07 1.25.89 1.43zm-89.68 96.55c-.2.4-.48.77-.73 1.14-.09-.16-.26-.33-.24-.47.05-.38.18-.75.35-1.38.19 1.68-.86 2.37-.76 2.64.19.5.83.82 1.2 1.27.09.11-.08.49-.21.69-.07.1-.42.13-.51.05-.22-.22-.45-.49-.54-.78-.17-.6-.5-.53-.93-.32l-.54.24c-.02-.57-.14-1.16 0-1.69.04-.17.74-.18 1.14-.27 1.51-1.41 1.79-1.18 1.76-1.11zm54.18-98.13c-.32-.06-.6-.4-.89-.63.2-.2.42-.58.6-.56.32.03.62.29 1.22.62-2.78-.64-3.02-.47-3.14-.25-.07.12 0 .43.11.51.32.22.74.31 1.03.57.43.38.13.72-.19 1.04-.39.41-.61.51-.69-.2-.02-.16-.3-.29-.46-.43-1.04-.92-1.08-1.27-.25-2.1.3-.3.57-.64.91-.88.15-.11.6-.09.65 0 .14.28.18.62.18.93 0 .17-.15.34-.24.51-.12-.12-.24-.24-.51-.52 2.18 1.09 1.88 1.44 1.65 1.4zm-51.95 146.44c-.14-.5-.18-1.07-.47-1.46-.13-.17-.77.02-1.17.05-.1.73-.36 1.12-.61 1.52-.3-.33-.68-.62-.87-1.01-.11-.23.09-.6.15-.91.45.21.91.42 1.5.7-.26-1.03.08-2.08-1.36-1.78-.12.02-.45-.39-.47-.62-.03-.45.09-.91.15-1.36.12.11.23.28.38.31.3.07.62.07.93.1.03-1.14.29-1.44 1.44-1.62 1.28-1.44 1.5-1.2 1.45-1.05-.09.29-.28.62-.53.79-.24.17-.61.18-.92.26.04-.32-.02-.69.14-.93.2-.31.57-.53.96-.87-1.18 2.57-.71 2.94-.09 3.27.96.51.96.87.1 1.51q-.94.7-.07 1.49c1.08.98 1.05 1.06-.62 1.61.02.24 0 .48.05.71.21.89-.41.85-.98.88.67-.23-.5.63-.39.78.41.59 1.04 1.03 1.57 1.55.07.07.05.38-.03.44-.18.13-.55.3-.63.23-.34-.31-.58-.74-.92-1.05-.19-.18-.64-.38-.77-.29-.39.28-.7.92-.8-.15-.13-1.34-.14-1.34 1.26-1.45.08-1.03.27-1.35 1.63-1.65zm14.56-143.77c-.02-.08.22-.24.34-.36l.67.92h-.71c4.66 1.37 4.46 1.5 4.26 1.53-.13.02-.32-.09-.41-.2-.32-.4-.6-.83-.9-1.26-.24.41-.4.9-.73 1.19-.26.23-.76.3-1.13.25-.61-.08-.3-.65-.38-1.01-.17-.81.45-.48.76-.49.47-.01.76-.05.81-.64.05-.64.82-.51.96-.37.64.63 1.16 1.38 1.81 2.19-5.11-1.32-5.28-1.53-5.34-1.76zm52.18-1.99c-.62.03-.91-.08-.77-.77.14-.7-.01-1.32-.68-1.73-.41-.25-.28-.46.02-.72.24-.2.33-.35.74-.12.55.3.64 1.8 1.76.79.09.38.19.77.22.9-1.21 1.03-1.84 1.52-2.17 1.75-.33.23-.35.21-.35.2.06-.11.15-.21.23-.31l.23.23-.3.24c2.36-.48 2.36-.51 1.06-.46zm-42.19 4.63c.07.18-.06.47-.16.68-.21.39-.44.33-.69 0-.08-.1-.27-.12-.41-.17 0 .51.03 1.01 0 1.52-.03.47-.52.73-.83.46-.38-.33-.72-.71-1.08-1.07-1.27-1.27-1.26-1.24.4-1.96.28-.12.37-.61.62-.85.14-.13.44-.09.67-.12-.03.18-.12.37-.08.54.07.33.2.65.3.97.43.06.88-.94 1.27 0zm-23.08 159.37c-.11-.66.18-1.55-1.01-1.56-.2 0-.52-.27-.57-.47-.38-1.55-1.1-.53-1.72-.23-.23.43-.5.49-.78.52-.03 0-.08-.2-.11-.31.22-.06.43-.15.65-.18.08-.01.18.11.47.31-.25-.51-.26-.67-.27-.83q-.11-1.5 1.41-1.68c1.2-1.51 1.38-1.37 1.44-1.18.25.82-.27 1.31-1.19 1.15-.1-.02-.23-.12-.26-.22-.17-.53.43-1.33 1.12-1.38-.96 1.98-.88 2.6-.66 2.65 1.05.23 1.37 1.2 2.05 1.78 1.09.93 1.04 1.05-.57 1.62 0 1.14-.25 1.45-1.39 1.66.48.63.9 1.31 1.46 1.85.39.38.1.54-.09.73-.12.12-.43.25-.5.19-.84-.72-1.67-.31-2.53-.08-.19.05-.45-.11-.67-.17.21-.11.45-.18.62-.33.15-.14.32-.37.31-.56-.02-.67-.11-1.34-.18-2.01-.79-.05-.97-.24-1.06-.47-.03-.08.19-.25.3-.38l.75.85c-.16.01-.32.03-.7.07 1.23.06 1.76.18 2.29.3q-.13-1.5 1.39-1.66zm3.94 9.6c-.03.28-.39.52-.6.79-.12-.33-.27-.64-.34-.98-.03-.15.11-.33.21-.57-.36 2.55-.18 2.75.05 2.87 1.34.7 1.32.68.24 1.9-.21.24-.37.53-.5.81-.1.22.15.74-.44.41-.22-.12-.53-.29-.57-.47-.04-.25.09-.72.25-.77.97-.3.78-.68.17-1.17l-.78-.63c-.41-.35-.31-1.04.2-1.24.23-.09.5-.09.75-.08.18.01.35.12.53.19-.11.13-.22.26-.47.55.9-2.05 1.32-1.81 1.3-1.61zm-22.13-89.68c-.9.07-2.06-.83-2.13-1.66 0-.12.14-.34.26-.37.24-.06.5-.02.76-.02-.13 1.07.56 1.43 1.41 1.66.05.01.08.11.12.17-1.77-2.32-1.96-2.86-2.26-3.31-.81-1.24-.81-1.23.72-1.62 1.33-1.42 1.5-1.26 1.54-1.07.17.85-.38 1.3-1.29 1.06-.1-.03-.22-.15-.24-.24-.12-.55.55-1.31 1.24-1.3-.97 2.54-.14 2.04.38 2.02 1.15-.05 1.14-.13 1.45 1.07.84.9.71 1.01.57 1.02-.6.05-.6-.37-.56-.78 0-.09.2-.24.22-.23.32.19.63.41 1.03.68-2.05-.68-2.93-1-2.86.46.04.78-.97.23-1.47.39 1.39 1.91 1.26 2.04 1.11 2.05zm11.64-70.74c-.19-.24-.58-.6-.53-.72.07-.18.45-.19.7-.26.1.21.21.43.36.73-.27-2.85-.06-2.71.03-2.52.11.2.1.39.22.58.5.76.65.79 1.25.54.72-.29.87-.14 1.64.87.19.25.47.5.65.73.18.23.28.45.42.67-.43-.24-1.18-.58-1.22-.72-.28-.89-.79-.81-1.28-.69-.6.14-1.06.24-1.32.1-.17-.09-.47-.35-.46-.36.43-.63-.74-1.18-1.09-1.81-.09-.15-.15-.4-.07-.44.18-.11.45-.12.74-.16.29 3.35.15 3.35-.02 3.46zm94.09-23.19c-.11.07-.62-.52-.95-.8-.38-.31-.76-.62-1.15-.91-.32-.24-.42-.45-.03-.73.2-.14.37-.35.54-.53.73-.78.72-.96-.39-1.39-.35-.14-.65-.13-.47-.54.1-.22.4-.47.63-.5.29-.03.63.09.9.25 1.54.92 1.54.93 1.54 2.55-3.96-.54-4.07-.86-4.11-1.2-.07-.6.38-.74.76-.56.2.09.26.62.24.95-.01.23-.25.44-.65 1.09 3.56.5 4.24 1.64 3.15 2.33zm-27.16 4.46l.82-1.09c.24.33.53.63.7.99.06.13-.18.39-.34.71.72-.04 1.08.11 1.42.31.14.08.36.34.34.37-.52.73-1.04 1.46-1.63 2.14-.11.13-.49.01-.72.07-.21.06-.58.27-.56.31.75 2.12-1.75 1.5-2.18 2.6-.18-.07-.4-.11-.53-.23-.13-.13-.28-.47-.23-.51.82-.75 1.23-1.43.4-2.55-.34-.45.37-.99.97-1.17-.09-.69.03-1.1.9-1.05.86.04.6.6.64 1.05q1.52-.02 1.54-1.54c-.89-.06-1.22-.23-1.54-.4zm-45.09 6.05c-.15.04-.39.04-.47-.05-.27-.3-.49-.64-.73-.97.09 0 .18-.03.25 0 .43.2.86.4 1.35.62-4.03.73-4.15.6-4.16.45-.06-.86-.73-.57-1.13-.52-.54.06-1.11-.5-1.26.46-.02.16-.16.3-.24.44-.05-.15-.12-.29-.15-.44-.03-.17-.08-.38-.03-.5.2-.46.65-.88.68-1.35.02-.35-.54-.74-.83-1.14-.06-.08 0-.34.08-.44.08-.1.29-.18.4-.13.21.08.44.21.56.39.41.63.84.58 1.26-.02.15-.2.38-.35.53-.55.26-.37.57-.4.71.01.3.92 1.22 1.16 1.79 1.77.35.37.07.57-.29.98-.47.53-1.68-.02-1.6 1.17 0 .1-.17.21-.27.34 3.74-.72 3.66-.56 3.55-.53zm30.17-6.91c.85.66.81.71.11 1.41-.24.24-.51.45-.71.72-.55.74-.84.73-1.11-.22-.08-.28-.6-.5-.97-.64-1.02-.4-1.02-.38-.41-1.55-.34 0-.68.04-1-.02-.19-.04-.51-.23-.51-.35 0-.39 0-.95.24-1.12.62-.45 1.36-.73 2.06-1.06.03-.01.16.11.17.17.03 1.28 1 .73 1.62.84.3-.64.6-1.03.9-1.41.21.34.61.68.6 1.01-.01.64-.62.34-.99.39-.17.02-.36-.05-.63-.09.15.74-.04 1.4.63 1.92zM87.15 59.56q-.12 1.65 1.35 2.42c-.05-.85.4-1.05 1.02-1.09.91-.06.88-.37.06-1.55-.28-.4-.72-1.2-.66-1.27.32-.34.78-.42 1.43.21-.03-.34.03-.7-.13-1.04-.15-.32-.27-1.15-.82-.92-.29.12-.65.14-.93.31-.36.22-.47-.23-.69-.6-1.02-1.68-1.02-1.73-2.18-1.54-.15.03-.35-.08-.53-.12-.01-.21-.07-.46-.03-.62.09-.33.17-.69.35-.88.97-1.07.99-1.11 1.95-.24.9.81.88.2.92-.48 0-.15.15-.19.23-.27.16.32.36.64.46.95.52 1.56.51 1.54.97 1.95l.95.85c-.06.13-.18.23-.16.42.04.3.13.71.31.94.14.19.5.29.68.28.32-.03.54-.25.87-.23.19 0 .53.65 1.02 1.66.23.47.51.94.8 1.4.54.85.26.55-.28.47-.64-.1-.7.81 0 1.81.41.57.61.91-.04.89-.35-.01-.84 0-.91.26-.24.88-1.03.21-1.69-.08.04.65-.11.96-.95.55-.84-.41-.54-.83-.54-1.28l-1.49-.73c-.07.46.12 1.21-.73.77-.55-.29-1.13-.35-1.57-1.17-.08-.15-.9.19-1.4.25-.13.02-.43-.25-.49-.43-.31-.99-.83-1.84-1.4-2.69-.37-.54-.21-.73.1-.92.28-.17.48-.36.71.32.08.22.18.49.31.62.4.38.31 1.72 1.19 1.18.75-.43-.57-1.38-.08-1.79-.91-1.52-.12-1.81.5-1.79.39.01.63.16.78-.36.19-.61.42.2.59.49.53.86.17 1.36.2 2.02.08.05.18.15.24.14.37-.12.75-.52 1.16.37.17.36.11 1.02-.09 1.16-.51.35-.79-.45-1.11-.97-.04-.07-.15-.1-.23-.14l-.04.53zm4.87-8.02c-.03.07-.05.15-.07.24-.05.06.12.34.16.49.13.35.23.64.18.72-.24.39-.71.57-1.23.54-.22 0-.81-.86-1.23-1.34.09-.34.12-.79.3-.98.21-.21.22-.24-.03-.84-.1-.24-.25-.48-.37-.73-.05-.12-.13-.27-.13-.37.05-.04.14-.07.29-.07 1.03.01 1.04-.02 2.32 1.46-.77-.37-1.39-.65-1.88-.86-.25-.11-.49-.22-.52-.12-.08.04-.14.09-.2.13-.22.17-.26.29-.34.35-.28.18-.61.28-1.01-.9-.78-2.35-.82-2.47-1.65-1.77-.16.14-.11.8-.51-.14-.21-.51-.7-1.33-.05-1.21.21.05.4.01.56-.09 1.27.42 1.56.03.8-.92l-.88-1.02c-.82.32-1.29.04-1.3-.06 0-.2.21-.34.43-.44.06-.03.43.16.66.25-.1.25-.18.5-.28.8 1-.71 3.23.98 2.31-.73-.09-.17.38-.34.73-.33.32.01.83.23 1.2.43.1.05.12.42.02.55-.11.14-.53.1-.59.25-.08.23-.73.41.44.89.47.2.93.49 1.38.7.64.3.95.51.76.92-.22.47-.76.45-1.61.15-.02-.12.02-.23-.07-.36-.32-.45-.66-.64-.77-.47-.19.3 0 .91-.37.96-.55.07-.86.24-.75.66.13.33.54.73.8 1.08h.13c.06.01.16.07.23.11.16.09.3.17.43.25.27.16.49.31.68.45.37.28.61.52.76.72.3.39.26.61.26.61zM78.83 153.38c-.47-.58-.57-1.15.21-1.5.18-.08.65.11.77.3.24.4.33.89.48 1.34.1.3.86.32.34.91-.41.47-.71 1.03-1.11 1.51-.05.06-.41-.17-.64-.22-.16-.03-.48 0-.48.05-.04.25-.06.52 0 .76.17.71-.27 1.12-.72 1.49-.15.13-1.83-1.11-1.84-1.37-.03-.74-.25-1.56.59-2.06s-.37-.74-.16-1.16c-.49-1.14-.38-1.34-.27-1.53.25.24.62.44.7.73.06.22-.27.53-.43.81l-.67-.82c1.52.8 2.38.78 3.24.77zm73.04-94.88l1.72.17c-.21.37-.57.76.06 1.09-.35 1.01 1.01.53 1.12 1.3.05.38.75.67 1.17.98.44.33.14.54-.11.72-.15.11-.37.19-.53.16-.14-.02-.24-.22-.37-.34l-.72-.72c-.4-.39-.45-.14-.55.25-.08.29-.3.61-.55.78-.22.14-.62.19-.85.08-.7-.34-.69-1.3-1.58-1.64-.73-.28-1.23-1.15-1.84-1.74-.33-.32-.34-.47.17-.58.54-.11 1.06-.33 1.58-.5 0-.17-.04-.35.01-.5.06-.16.22-.29.33-.44.06.14.14.29.16.44.03.16 0 .34 0 .5.26 0 .51-.02.77 0zm19.38-11.99c.24.13.52.31.15.72-.53.58-1.49.93-1.26 2 1.37 1.37 1.12 1.58.97 1.52-.29-.11-.6-.32-.77-.58-.16-.25-.14-.62-.2-.94.32.06.7.03.93.2.31.22.49.6.81 1.02-2-1.22-2.34-1.32-2.5-1.2-.58.44-1.1.96-1.64 1.44-.66-.66-1.34-1.32-1.98-2-.08-.09-.04-.43.06-.52.81-.72 1.13-1.44.22-2.33-.08-.08.05-.53.2-.64.14-.1.46-.02.67.05.14.05.27.21.36.35.37.51.66.58 1.11.02.28-.33 0-1.21.79-1 .7.19 1.08.73.96 1.52.37.12.77.19 1.11.37zm-85.9 41.8c-.07.68.2 1.41-.94 1.66-.81.18-1.13 1.54-2.3 1.29-.17 1.1-.4 1.49-.65 1.49-.64 0-.44-.58-.38-.92.04-.22.32-.51.54-.57.81-.2.33.47.58.88-.28-1.85.55-2.19 1.09-2.67.56-.5.71-.93.08-1.43-.88-.7-.58-1.22.16-1.79.63-.48.77-.92-.23-1.17-.17-.04-.33-.52-.31-.79.02-.25.25-.52.46-.7.05-.05.42.17.54.34.13.18.07.51.22.66.22.22.36.91.88.26.21-.26.52-.44.75-.7.33-.37.57-.46.92.01.46.61 1.03 1.14 1.52 1.72.4.47-.02.39-.32.51-.84.35-1.61.77-.59 1.78.12.12 0 .49-.02.75.39.38.3.48.29.47-.11-.07-.2-.16-.3-.24l.24-.22.23.31c-1.04-.84-1.74-.96-2.49-.93zm11.3-9.29c-.18 1.22-1.06.36-1.58.55-.08.31-.07.68-.25.92-.29.4-.63.75-1.09.05-.79-1.21-.82-1.19-1.75-.42-.13.11-.28.21-.38.34-.35.45-.64.37-.91-.07-.34-.55-.71-1.09-.98-1.67-.08-.16.09-.51.25-.69.33-.38.47-.25.55.22.05.3.28.58.48.83.32.39.83.47.97-.04.18-.66.55-.9 1.12-1.16.7-.32.85-1.3.31-1.42-1.04-.22-.56-.84-.63-1.33-.1-.68.31-.76.88-.87.42-.08.76-.67 1.15-.68.27 0 .55.59.85.89 1.22 1.26 1.32 1.34 1.17 1.57-.14.22-.45.52-.64.49-1.46-.21-.83.91-1.02 1.5.59.2 1.71-.45 1.5.98zm92.56-22.66c.08-.21.42-.31.65-.46.11.26.27.52.32.79.01.08-.27.21-.59.45 7.33 1.34 7.08 1.36 6.82 1.33-.88-.08-.36-.4-.13-.7.03-.04-.14-.31-.2-.31-.23.02-.53.05-.67.2-1.04 1.09-1.74 1.12-2.64.1-.41-.47-.87-.59-1.01.18-.15.85-.76.54-1.16.51-.64-.05-.32-.64-.4-1.01-.1-.44.07-.6.51-.52.16.03.41.08.5 0 .47-.47.91-.99 1.35-1.48.48.48.96.97 1.46 1.43.02.02.25-.14.34-.25.15-.16.4-.47.36-.52-.32-.39-.72-.73-1.05-1.11-.12-.14-.15-.35-.22-.53.24-.03.5-.13.72-.08.3.08.61.23.83.44.37.35.51.58 1.13.12 1.57-1.18 2.34-.77 3.1 1.04.1.24-.16.65-.29.97-.64 1.55-.64 1.54-1.76 1.54-7.77-1.67-8.03-1.96-7.97-2.11zm-29.75 5.05c-.28-.68-.44-1.41-1.42-1.45-.1 0-.25-.73-.21-1.11.02-.15.48-.29.76-.37.89-.25.99-.44.45-1.07-.16-.19-.38-.34-.53-.55-.2-.28-.36-.59-.54-.89.5.02 1.18-.51 1.37.46.03.15.09.34.2.42.41.32.85.6 1.29.9-.36.36-.68.76-1.09 1.07-.53.4-.23.63.09.91.25.23.51.46.71.72.1.13.19.41.12.52-.17.26-.43.46-.61.63-.3-.1-.55-.11-.59-.2zm-75.17 46.95c-.47.34-1.78.1-.76 1.31-.31.07-.66.27-.92.19-.37-.11-.67-.43-1-.66.24-.29.46-.79.73-.82.99-.11.89-.44.45-1.14-.33-.52-.47-1.17-.67-1.77.7.03 1.23.67 1.77.76 1.03.17.67.76.76 1.48-.06.13-.13.5-.35.66zm79.92-48.9c-.05-.21.09-.6.26-.69.34-.18.76-.21 1.14-.3.65-.16.16-.36.08-.63-.06-.18.2-.5.39-.69.07-.07.39.02.51.12.2.17.59.32.18.72-.26.26-.32.74-.59.96-.23.19-1.01-.08-.35.61.4.43.83.84 1.2 1.29.08.09.03.35-.04.47-.07.11-.27.15-.59.32-.54-.88-1.9-.95-2.2-2.19zm-82.64-9.7c-.9-.53-1.34.4-2.02.64-.09.03-.35-.35-.47-.61-.22-.44-.42-.85-.03-1.14.52-.4 1.62.39 1.38-1.54.37.18.76.24 1.11.59.18.18.27.85.4 1.25-.16.37-.26.87-.36.81zm15.55 68.39c.41-.95 1.49-.89 1.88-1.68.12.06.26.09.35.18.17.16.46.38.44.53-.14 1.01-1.14 1.72-2.29 1.71-.74.04-.7-.01-.38-.74zm-16.41-16.46c.02-.39.07-.86.29-1.16.35-.47.82-.88 1.3-1.23.22-.16.57-.13.87-.19.04.41.2 1.14.12 1.16-.91.31-1.56.82-1.83 1.77 0 .03-.15.01-.36.03-.1-.09-.4-.25-.39-.39zm64.69-59.92c.08.37-.03 1.11-.16 1.14-.93.17-1.3 1-1.96 1.47-.09.06-.39-.07-.52-.19-.14-.13-.32-.44-.26-.51.53-.7 1.79-.85 1.57-2.11.16-.03.32-.05.66-.11.14.06.63.14.67.32zm-29.25 10.24c-.07-.79-.57-1.03-1.23-1.3-.69-.29-.28-.75.06-1.16.29-.34.45-.34.74 0 .44.51 1.05.91 1.39 1.47.18.3-.08.85-.17 1.44-.42-.23-.78-.33-.79-.46zm-10.82 12.38c-.43-.4-.92-.89-1.4-1.38-.23-.24-.45-.56-.67-.85.18.06.49.14.51.17.72 1.02.8.7 1.09.78.34.1.6.63.83.99.15.23.19.44.3.69-.28-.16-.44-.18-.66-.39zm89.47-15.86c.05.07-.25.51-.47.65-.47.29-1 .48-1.49.73-.24.13.23 1.01-.52.55-.15-.09 0-1.1.1-1.11.95-.13.92-.75.89-1.44 0-.08.25-.17.55-.36.31.3.68.6.95.98zm-92.03 83.72c.13.54 0 .95-.76.89-.49-.04-.8-.08-.77-.66.03-.52-.04-1.08 1.17-.72-.01-.02.29.21.36.5zm33.44-66.98c.05-.24.32-.59.5-.61.49-.03 1.16.76.99 1.14-.1.22-.46.33-.42.3-1.14.21-1.17-.32-1.07-.84zm-40.79 93.34c.04.68-.52.54-.87.5-.24-.03-.44-.3-.66-.46.33-.4.66-.79 1.26-1.52.15.78.26 1.13.28 1.48zm83.99-117.88c.06-.28.17-.67.37-.76.39-.17 1.16.51 1.13 1 0 .22-.31.42-.36.49-.81.07-1.32.03-1.15-.73zm-80 165.13c.04.07-.23.48-.34.47-.41-.02-1.09.43-1.14-.39-.02-.33.34-.68.61-1.17.35.41.65.72.87 1.08zm-6.82-8.77c-.02.21-.44.57-.54.53-.36-.14-.66-.43-.99-.67.33-.32.67-.64 1.23-1.18.16.64.33.99.29 1.32zm9.63 4.98c.05.34.31.95-.3.97-.39.01-.93-.33-1.14-.67-.12-.19.31-.71.62-1.35.52.65.78.84.81 1.06zm-7.99 16c.05.35.34.95-.27.98-.39.02-.94-.32-1.16-.66-.12-.19.29-.72.6-1.38.53.65.8.84.83 1.06zm-3.6-18.82c-.36-.08-.66-.42-.99-.65.36-.29.71-.6 1.1-.83.05-.03.35.38.65.73-.32.33-.6.79-.77.75zm61.04-161.44c.11-.35.46-.63.71-.94.26.38.55.75.75 1.16.02.05-.41.32-.77.6-.31-.34-.74-.65-.69-.82zm.74 8.32c.25.31.56.59.73.94.04.09-.3.52-.51.56-.33.05-.69-.1-1.34-.22.52-.59.83-.93 1.13-1.28zm-1.33-6.21c-.35.02-.98.25-.96-.36.02-.39.41-.9.77-1.09.2-.1.69.35 1.32.71-.7.47-.91.72-1.13.74zm-4.06 2.66c.21-.37.53-.69.81-1.02.23.32.57.61.65.96.04.14-.46.42-.85.75-.29-.31-.66-.62-.62-.69zm-2.25 17.52c.23.32.6.62.65.97.08.65-.51.48-.87.47-.25-.01-.48-.19-1.04-.42.61-.48.94-.75 1.27-1.01zm-57.39 70.7c.31-.25.6-.55.95-.72.09-.04.52.31.55.51.05.33-.1.69-.23 1.34-.59-.52-.93-.83-1.27-1.13zm8.74-74.39c-.19-.26-.25-.43-.28-.57-.03-.15-.07-.3-.1-.45l1.6 1.17c-.09.16-.18.32-.31.57-.2-.16-.45-.35-.6-.45-.13-.08-.24-.16-.31-.27zm7.15 9.62c-.35-.38-.63-.76-.94-1.16.31.16.59.28.93.55.14.11.38.54.67.94-.3-.16-.6-.26-.67-.33zm-6.15-.94c-.35-.34-.63-.72-.94-1.11.32.02.62-.03.96.13.14.06.38.55.67.97-.31 0-.63.08-.69.01zm-.79 49.69c-.36-.22-.66-.55-.97-.83.32-.22.63-.54.98-.61.14-.03.4.48.71.88-.32.26-.64.61-.71.56zm16.72-50.59c.22-.37.54-.67.82-.99.23.32.56.61.64.97.03.14-.48.41-.88.73-.27-.32-.63-.63-.58-.7zM82.02 171.05c.31-.24.6-.63.94-.69.65-.11.5.5.5.86 0 .25-.17.49-.38 1.06-.51-.59-.78-.91-1.06-1.23zm25.3-119.19c.11-.37.35-.69.56-1.02.28.32.64.61.77.96.05.14-.36.42-.63.75-.31-.31-.71-.62-.69-.69zm1.3 6.16c.06-.37.22-.67.36-.99.22.32.48.61.59.97.04.14-.25.41-.44.73-.23-.32-.52-.63-.51-.7zm-27.16 94.42c.32-.23.61-.62.95-.67.65-.1.5.51.49.87 0 .25-.18.49-.4 1.06-.5-.6-.77-.93-1.04-1.25zm82.52-89.93c.16-.35.48-.63.74-.94l.77 1.17c-.32.16-.65.32-1.16.57-.16-.34-.42-.65-.35-.8zm-.8-21c.26.31.57.59.74.94.05.1-.29.54-.49.57-.33.06-.7-.09-1.34-.2.5-.6.8-.95 1.1-1.31zm8.53 7.13c.11-.35.46-.63.71-.94.26.38.55.75.75 1.16.02.05-.41.32-.77.6-.31-.34-.74-.65-.69-.82zm23.08-12.25c.04.08-.32.48-.35.46-.4-.22-.78-.49-1.17-.75l.79-.79c.26.36.54.7.73 1.07zm-92.73 31.13c.38.11.76.23 1.15.39.02 0 .34.37.3.37-.19.03-.48-.01-.75-.01-.3-.32-.5-.54-.7-.76zm-12.15 87.15l-.71-.67c.31-.29.61-.61.96-.85.08-.05.35.17.7.35-.37.45-.66.81-.95 1.16zm21.65-107.85c-.05-.11.47-.44.69-.68.26.38.54.76.75 1.17.03.06-.26.29-.54.59-.35-.41-.69-.71-.89-1.08zm-10.58 6.17c-.1-.11.13-.44.22-.67.42.39.85.76 1.22 1.17.06.06-.09.29-.17.59-.49-.42-.94-.71-1.27-1.08zm68.38 7.05c.25.39.52.77.73 1.17.01.02-.39.38-.48.33-.37-.19-.7-.47-1.06-.74.34-.32.57-.54.81-.77zM88.42 179.02s-.4.4-.46.36c-.36-.22-.71-.49-.96-.82-.05-.06.37-.47.65-.83.3.49.56.88.76 1.29zm-5.16 31.06c-.05-.36-.27-.93.41-.91.19 0 .5.35.54.58.05.31-.1.66-.28 1.63-.44-.82-.64-1.04-.67-1.29zm4.8-84.76c-.11.05-.44-.42-.67-.66.39-.25.76-.53 1.17-.73.06-.03.29.26.59.54-.42.35-.71.69-1.09.85zm.38-2.98c-.68.06-.54-.51-.49-.87.04-.24.32-.43.49-.65.21.27.43.53.76.95-.34.26-.54.55-.76.57zm15.6-51.78c-.11-.02-.42-.3-.64-.47.38.05.75.1 1.16.2.06.01.28.2.56.4-.41-.06-.71-.05-1.08-.13zm-.92 84.64c.32-.28.63-.59.98-.83.05-.04.48.3.46.35-.18.41-.42.8-.65 1.22-.31-.29-.55-.52-.79-.74zm-30.92.64c.38-.27.76-.54 1.15-.77.02-.01.39.39.34.48-.18.38-.46.72-.71 1.09-.33-.34-.56-.57-.78-.8zm32.89 56.13c-.15.01-.32-.17-.46-.28-.04-.03.74-1.1.77-1.07.26.27.53.54 1 1.03-.62.16-.97.29-1.32.32zm32.64-148.08l.67-.69c.29.31.61.6.84.95.06.08-.17.36-.35.71-.45-.38-.8-.67-1.15-.96zm-48 60l-.69-.66c.31-.29.6-.6.94-.83.08-.06.36.17.71.35-.37.45-.67.8-.96 1.14zm10.88 25.97l-.71-.67c.31-.29.61-.6.96-.83.08-.05.35.17.7.35-.37.45-.66.8-.95 1.15zm-2.36-.59c-.01.22-.29.59-.48.61-.68.08-.52-.49-.51-.85 0-.25.18-.48.54-1.32.27.93.47 1.25.45 1.56zm4.59 46.11c-.38-.2-.71-.48-1.05-.74l.65-.73c.32.32.65.63 1.06 1.04-.33.22-.57.47-.66.43zm21.01-133.02l.66-.69c.29.31.61.59.85.94.06.08-.17.36-.34.71-.45-.37-.81-.66-1.16-.95zm-30.83-9.34c-.19-.16-.06-.46-.07-.71.57.38 1.14.75 1.67 1.15.08.06.04.3.09.6-.65-.4-1.25-.73-1.69-1.04zm98.71-21.56l.69-.69c.28.32.6.62.83.97.05.08-.18.35-.37.7-.45-.38-.8-.68-1.15-.98zm-87.57 160.83c.08-.04.5.29.48.32-.19.41-.44.8-.67 1.19-.25-.21-.49-.42-.84-.72.35-.28.66-.57 1.02-.79zm-6.34 1.91l-.74-.64c.3-.3.58-.63.92-.88.08-.06.36.15.72.32-.35.47-.62.83-.9 1.2zM200.99 48.72c.04.08-.32.48-.35.46-.4-.22-.78-.49-1.17-.75l.79-.79c.26.36.54.7.73 1.07zm-79.44 15.94c.25.39.51.77.73 1.17.01.02-.39.38-.48.33-.37-.19-.7-.47-1.06-.74.34-.32.57-.54.81-.77zm80.11-14.92c.36-.02.94-.19.87.49-.02.19-.39.48-.61.49-.32.02-.66-.16-1.59-.42.84-.37 1.08-.55 1.33-.56zM91.3 188.46l-.73-.64c.3-.3.59-.63.93-.88.08-.06.36.16.71.33-.36.47-.64.83-.91 1.2zm-6.08 3.35c-.1.05-.47-.39-.72-.61.36-.28.71-.59 1.1-.82.06-.04.31.24.63.49-.39.38-.65.75-1.01.95zm14.08-47.99c.08-.04.48.31.46.34-.22.4-.48.78-.74 1.16-.23-.23-.47-.45-.79-.77.36-.26.69-.54 1.07-.73zm33.06-86.86c.25.39.51.77.73 1.17.01.02-.4.37-.49.32-.37-.19-.69-.47-1.06-.74.35-.32.58-.54.82-.76zm-50.13-4.55c-.11-.01-.37-.85-.56-1.32.39-.08.78-.18 1.18-.15.06 0 .24.55.5 1.12-.43.15-.75.39-1.12.35zm11.94-5.48l.33-.69c.53.32 1.07.62 1.54.97.11.08.01.35.02.7-.74-.38-1.31-.68-1.89-.97zm1.69 14.01c-.65-.45-.49-.78-.41-1 .05-.15.32-.08.5-.09.19.35.38.7.67 1.25-.33-.07-.54-.01-.75-.16zM91.5 203.1c.37-.28.73-.57 1.12-.82.02-.01.4.36.36.45-.17.38-.42.73-.67 1.11-.35-.31-.58-.53-.82-.75zm-1.78-73.05l-.69-.66c.31-.29.6-.61.94-.84.08-.06.36.17.71.34-.37.45-.67.8-.96 1.15zm1.47 22.42c-.03-.36-.22-.93.47-.88.19.02.48.38.51.6.03.31-.14.65-.38 1.59-.39-.83-.58-1.07-.59-1.31zm-6.02.64c-.11.05-.45-.41-.69-.64.38-.27.74-.55 1.15-.77.06-.03.3.25.6.53-.41.36-.69.71-1.06.88zm9.04 32.12l-.73-.64c.3-.3.59-.63.93-.88.08-.06.36.16.71.33-.36.46-.64.83-.91 1.19zm95.24-148.35c.25.39.51.77.73 1.17.01.02-.39.38-.48.33-.37-.19-.7-.47-1.06-.74.34-.32.57-.54.81-.77zM87.13 50.54l-.58-1.39c.32-.04.63-.12.98-.05.08.02.31.52.61 1.04-.39.14-.7.26-1.01.39zm10.12 8.13c-.11-.07-.39-.7-.59-1.08.37.19.73.37 1.12.64.06.04.26.46.52.92-.4-.18-.69-.24-1.05-.48zm.54 79.02c-.58.14-.71-.28-.62-.74.06-.27.25-.51.38-.76.25.21.51.41.87.71-.29.37-.42.73-.64.78zm6.44 59.13l-.74-.6c.29-.3.55-.64.88-.89.08-.06.37.14.73.29-.34.47-.61.83-.87 1.2zm-3.72-59.12l-.7-.68c.32-.28.62-.59.97-.82.08-.05.35.18.7.36-.38.44-.67.79-.97 1.13zm80.47-97.99c.14-.35.28-.71.49-1.02.31-.47.51-.03.68.16.11.12.23.43.17.5-.25.28-.57.49-.83.7-.26-.17-.51-.31-.5-.34zm-32.41 7.22l.66-.69c.29.31.61.59.85.94.06.08-.17.36-.34.71-.45-.37-.81-.66-1.16-.95zM91.23 77.68c-.11.04-.41-.44-.63-.69.4-.23.79-.49 1.21-.67.06-.03.27.28.55.58-.44.32-.76.64-1.14.78zm16.75 161.37c-.09.06-.49-.36-.74-.56.35-.3.68-.61 1.06-.87.06-.04.32.21.65.45-.37.4-.62.77-.97.98zM74.91 98.74l-.67-.7c.32-.28.63-.59.98-.81.09-.05.35.19.69.38l-1 1.13zm8.82-22.95l-.65-.71c.33-.27.64-.57 1.01-.78.09-.05.34.19.68.4-.4.43-.72.76-1.04 1.1zm23.57-28.1c.34.39.69.77.97 1.17.01.02-.35.38-.44.33-.41-.19-.8-.47-1.24-.74.3-.32.51-.54.71-.77zm-3.71.17c.46.17.89.44 1.32.67-.27.23-.48.56-.81.64-.13.03-.58-.48-1.08-.9.27-.21.44-.45.57-.41zm3.94 8.06c.26-.02.65-.19.75.49.03.19-.17.47-.32.49-.21.03-.48-.15-1.24-.42.49-.37.63-.55.81-.56zM93.37 82.25c0 .09-.43.28-.61.22-.73-.22-.26-.83-.31-1.26 0-.08.38-.2.8-.41.06.58.14 1.02.11 1.45zm-8.98 10.63l-.67-.7c.32-.27.63-.58.99-.8.09-.05.35.19.69.38-.39.43-.7.78-1.01 1.12zm23.24-39.52c.05.08-.17.48-.19.46-.38-.22-.77-.49-1.17-.75l.48-.79c.32.36.64.7.88 1.07zm-1.75-2.63c-.09 0-.4-.42-.41-.6-.02-.75.74-.3 1.15-.37.08-.01.3.37.61.78-.55.09-.93.19-1.35.19zm44.92-15.34c.28.33.58.64.82 1 .03.05-.31.47-.36.45-.42-.19-.8-.43-1.22-.68l.77-.77zM86.93 72.78c-.1.04-.41-.45-.63-.7.4-.23.78-.5 1.2-.69.07-.03.28.29.56.58-.43.33-.75.66-1.13.81zm4.09-1.83c.4-.18.79-.36 1.21-.48.02 0 .35.38.3.44-.21.28-.51.52-.8.82-.3-.33-.51-.55-.72-.78zm123.88-17.6c.04.08-.32.48-.35.46-.4-.22-.78-.49-1.17-.75l.79-.79c.26.36.54.7.73 1.07zM91.39 113.06c-.1.04-.43-.43-.66-.66.38-.25.76-.52 1.17-.72.06-.03.29.26.59.54-.42.35-.72.68-1.09.85zm16.28-68.72c.12-.35.25-.71.47-1.02.34-.47.65-.03.88.16.16.12.32.43.26.5-.29.28-.66.49-.94.7-.34-.17-.67-.31-.66-.34zm32.34 1.86c.28.33.58.64.82 1 .03.05-.31.47-.36.45-.42-.19-.8-.43-1.22-.68l.77-.77zM98.34 174.29l-.72-.62c.3-.3.57-.63.9-.88.08-.06.37.15.73.31-.35.46-.63.82-.91 1.19zM94.37 68.93c-.04-.1.44-.22.67-.33.23.35.49.69.68 1.02.03.05-.27.14-.57.3-.32-.37-.65-.67-.78-.99zm-9.52 32.23c-.24.35-.57.63-.87.94l-.66-.72c.36-.29.72-.57 1.18-.94.18.35.4.63.34.71zm-4.68 1.27c-.2.41-.51.77-.78 1.15-.22-.24-.68-.58-.63-.69.17-.37.52-.66 1.13-1.35.16.47.36.74.28.89zm1.88 1.22s-.36-.43-.32-.49c.25-.34.55-.67.9-.89.06-.04.44.41.77.72-.51.26-.92.49-1.35.66zm3.04 68.52c-.17.42-.46.8-.7 1.2-.24-.22-.72-.52-.68-.64.14-.38.47-.69 1.02-1.42.19.45.41.71.35.86zM214.92 51.82c.23-.36.54-.67.82-1l.69.69c-.34.3-.69.6-1.12.99-.2-.34-.44-.6-.39-.68zM96.71 172.83l-.72-.62c.3-.3.57-.63.9-.88.08-.06.37.15.73.31-.35.46-.63.82-.91 1.19zm-3.65-99.65c-.11.04-.42-.45-.63-.69.4-.24.79-.49 1.21-.6.06 0 .28.18.56.51-.44.32-.75.64-1.13.78zm11.9-22.33c.32.32.66.62.91.97.06.09-.12.33-.18.5-.29-.2-.59-.4-.99-.68.12-.37.19-.58.26-.79zM89.14 158.47c-.07.3-.46.53-.72.79-.23-.24-.66-.5-.63-.7.03-.27.42-.5.72-.81.23.25.68.55.63.72zm-9.54-9.15c-.06.33-.37.62-.58.93-.25-.24-.64-.45-.7-.73-.04-.2.35-.5.87-1.15.17.36.45.68.4.95zm27.28-84.72c-.11-.02-.43-.43-.68-.67-.03-.23-.13-.59-.03-.65.08-.05.4.29.61.46.05.46.2.89.1.87zm-13.31 83.11c-.02.26-.43.49-.67.74-.24-.28-.6-.53-.66-.84-.05-.24.28-.55.45-.85.46.48.89.73.88.95zm11.16-86.65c-.2-.29-.32-.62-.47-.93.34.31.68.6.99.95.07.08.1.35.21.75-.33-.36-.58-.55-.74-.78zm67.6-3.96c.32.06.59.4.89.63-.24.24-.46.64-.73.68-.21.03-.48-.39-1.04-.88.32-.17.64-.47.89-.42zm-74.17-.93c-.19-.26-.07-.49-.07-.73.39.28.85.54 1.13.86.21.24.2.55.31.84-.69-.49-1.21-.75-1.37-.97zm-17.49 95.5c-.3-.08-.53-.47-.79-.73.24-.23.5-.66.7-.63.27.03.5.43.81.73-.25.23-.55.68-.73.63zm91.08-90.88c.02-.26.43-.49.67-.73.23.28.59.54.65.86.04.22-.31.53-.49.81-.43-.45-.85-.71-.84-.93zm-84.58 97.02c-.67.05-.52-.48-.52-.85 0-.22.14-.44.21-.65.31.34.63.67 1.03 1.11-.35.2-.53.39-.72.4zm83.06-98.47v-.17c.39-.06.79-.16 1.18-.14.1 0 .27.39.25.59-.02.17-.26.32-.52.61-.35-.35-.63-.62-.91-.89zM91.36 45.26c.32-.08-.21-.91.82-.35.32.17.7.5.79.71.09.22-.14.38-.27.67l-1.34-1.02zm4.67 4.32c-.08-.06-.04-.22-.06-.34l1.63.68c0 .24 0 .48-.01.9-.62-.49-1.1-.88-1.56-1.24zm10.83 7.45c.26.32.53.62.74.97.05.09-.06.33-.09.5-.23-.2-.45-.4-.77-.68.06-.37.09-.58.12-.79zm-1.35-2.38c-.09-.22.17-.48.28-.72.29.26.67.49.81.8.09.2-.14.51-.21.76-.37-.35-.77-.58-.88-.84zm.58 7.83c-.14-.32-.12-.59-.16-.89.24.24.54.46.69.73.12.21.05.48.13 1.04-.24-.32-.54-.64-.65-.89zm-2.97-7.77c-.08-.3.14-.52.24-.77.29.24.74.51.8.72.08.27-.14.49-.23.79-.28-.25-.77-.56-.82-.74zm69.1-15.76c.36.02.89-.24.98.39.03.19-.16.42-.25.62-.42-.2-.84-.39-1.49-.69.42-.18.6-.33.77-.32zM96.31 163.63c-.26-.01-.5-.41-.76-.64.27-.24.52-.6.83-.67.22-.05.54.29.83.46-.43.44-.68.87-.9.86zm10.56-102.08c-.3-.21-.62-.49-.95-.75.03-.09.03-.26.1-.24.24.05.51.16.9.3-.04.4-.01.72-.05.69zm.33 5.42c-.19-.26-.24-.49-.33-.73.27.28.55.54.78.86.17.24.3.55.47.84-.44-.49-.75-.75-.91-.97zm75.41-23.05c.06-.31.44-.55.68-.83.24.24.67.48.67.73 0 .24-.43.48-.85.9-.18-.27-.55-.58-.51-.8zM81.52 104.47c-.06.28-.45.48-.71.72-.2-.31-.51-.6-.57-.94-.04-.26.24-.58.42-.94.51.66.9.96.86 1.16zm8.65-31.49c-.3-.08-.52-.47-.78-.73.26-.23.53-.63.77-.6.24.01.46.43.85.88-.28.16-.61.51-.83.45zm87.75-21.43c-.02-.22.41-.48.64-.72.25.26.64.49.71.8.05.2-.36.51-.57.76-.35-.35-.76-.58-.78-.84zM79.53 70.54c-.32-.11-.55-.61-.82-.96.26-.32.52-.84.79-.85.21-.01.44.61.96 1.33-.34.19-.68.57-.93.49zm13.59 41.02c-.31-.07-.54-.45-.81-.7.25-.23.5-.66.74-.65.24 0 .47.44.88.87-.27.18-.59.53-.81.48zm6.14.17c-.3-.09-.51-.48-.75-.75.25-.21.53-.62.73-.59.27.05.48.44.78.75-.26.21-.58.64-.76.59zm-1.37 1.07c-.29.05-.62-.09-.93-.14.31-.28.6-.6.94-.83.08-.05.36.18.75.39-.35.27-.54.54-.77.57zM77.97 68.26c-.27-.12-.45-.71-.66-1.11.32-.26.63-.68.96-.7.26-.02.56.44.9.73-.68.63-1 1.18-1.2 1.09zm106.12-19.79c-.02-.22.41-.48.64-.72.25.26.64.49.71.8.05.2-.36.51-.57.76-.35-.35-.76-.58-.78-.84zm-95.28 67.74c-.25-.39-.51-.78-.73-1.18-.01-.02.46-.36.49-.33.24.23.43.52.63.78-.17.33-.28.53-.39.74zm95.28-73.94c.02-.26.43-.49.67-.73.23.28.59.54.65.86.04.22-.31.53-.49.81-.43-.45-.85-.71-.84-.93zM97.18 68.66c-.08.17-.46.22-.71.33l-.68-.71c.25-.09.5-.18.93-.31.17.24.52.56.46.68zm-18.44 49.97c-.04-.3.09-.62.15-.93.28.32.6.62.83.97.05.08-.19.35-.42.75-.27-.36-.53-.56-.56-.79zm23.45 2.25c-.31-.07-.55-.44-.82-.68.25-.23.5-.66.74-.65.24 0 .47.43.89.85-.27.18-.58.53-.81.49zm-27.44-37.3c-.25.35-.58.65-.88.97-.04-.32-.16-.64-.1-.94.04-.23.3-.43.57-.79.23.41.46.69.41.76zm5.22 4.41c-.22 0-.46-.44-.69-.68.27-.24.53-.62.83-.68.2-.04.49.39.73.61-.37.34-.62.74-.88.75zm23.05 2.62c-.22 0-.46-.43-.69-.67.27-.24.53-.6.83-.66.2-.04.49.38.73.59-.37.33-.62.72-.88.73zm-4.43 1.37c-.34-.25-.62-.57-.93-.87.31-.04.64-.16.93-.1.23.05.41.31.76.59-.41.21-.69.44-.77.38zm4.38 1.6c-.31-.08-.54-.46-.8-.71.25-.23.51-.64.76-.63.24.01.46.44.87.87-.28.17-.6.52-.82.46zm-22.6-.13c-.09.3-.49.5-.76.74-.21-.25-.63-.54-.59-.75.05-.27.45-.48.76-.77.21.26.64.6.59.77zm1.72.16c-.01-.22.43-.46.67-.7.24.27.62.52.68.83.04.2-.38.49-.6.74-.34-.37-.74-.61-.75-.88zm1.69-14.69c-.67 0-.49-.53-.46-.9.02-.22.17-.43.27-.64.29.36.57.73.94 1.19-.37.17-.56.34-.75.34zm97.7-36.74c-.02-.21.14-.43.22-.65.26.38.55.74.77 1.15.03.06-.26.29-.64.69-.17-.55-.32-.87-.35-1.19zM80.94 95.35c.03-.37-.21-.9.41-.99.19-.03.42.17.63.26-.2.42-.41.83-.73 1.49-.18-.42-.32-.6-.31-.76zM105.38 77c-.3-.08-.52-.46-.78-.72.26-.22.53-.63.77-.61.24.02.46.45.85.89-.28.16-.61.5-.83.45zM84.24 98.97c-.31-.08-.54-.46-.8-.71.25-.23.51-.66.75-.65.24 0 .47.45.87.88-.28.17-.6.53-.82.48zm-4.68 1.39c-.31-.08-.54-.46-.8-.72.25-.24.51-.66.75-.65s.47.45.87.89c-.28.17-.6.53-.82.48zm17.68-39.49c-.28-.29-.46-.73-.68-1.13.24.05.52 0 .71.19.25.26.44.7.71 1.14-.25-.07-.57-.04-.73-.21zm91.52-10.79v-.17c.39-.06.79-.16 1.18-.14.1 0 .27.39.25.59-.02.17-.26.32-.52.61-.35-.35-.63-.62-.91-.89zm-14.68-8.68c-.3-.08-.52-.47-.77-.74.24-.22.51-.65.72-.62.27.04.49.43.79.74-.25.22-.56.67-.74.62zm-93.64 97.89c-.26-.02-.49-.43-.74-.67.28-.24.53-.6.85-.66.24-.05.55.29.85.46-.48.46-.74.9-.96.88zm-2.29.87c.38-.26.76-.54 1.17-.77.02-.01.37.45.35.48-.22.25-.5.45-.76.66-.34-.17-.54-.27-.75-.37zm3.66-99.25c-.23-.34.09-.56.18-.84.56.24 1.37.48 1.58.72.21.24-.17.48-.36.9-.48-.26-1.29-.59-1.4-.78zm15.98 99.85c-.6.1-.66-.31-.61-.76.03-.23.11-.45.17-.67.34.28.68.56 1.09.9-.32.27-.47.5-.64.53zm92.55-107.64c.06-.31.44-.55.68-.83.24.24.67.48.67.73s-.43.48-.85.9c-.18-.27-.55-.58-.5-.8zM87.39 141.32c-.23.36-.54.67-.82 1-.06-.31-.2-.62-.16-.92.03-.23.27-.44.53-.81.25.39.5.65.46.73zm12.2.06c-.06.33-.38.61-.59.91-.24-.24-.63-.45-.68-.72-.04-.2.36-.48.89-1.12.16.36.44.67.39.93zm-2.13 2.44c-.09-.21-.24-.42-.24-.63 0-.36-.19-.89.48-.87.19 0 .38.18.74.36-.39.45-.68.8-.98 1.15zm1.1-85.97c-.24-.32-.24-.59-.33-.89.37.24.82.46 1.06.73.19.21.13.48.29 1.04-.37-.32-.84-.64-1.03-.89zm-2.9-3.23c.1-.08.16-.22.33-.23.29-.01.6-.16 1.1.51.14.19.15.37.29.73-.68-.4-1.2-.7-1.72-1.01zm-5.16 89.64c-.21.42-.48.8-.74 1.19-.09-.13-.26-.27-.25-.39.04-.4.15-.8.29-1.44.4.36.72.58.69.64zm85.91-91.21c.05-.28.44-.49.68-.74.21.3.54.58.6.91.05.26-.22.58-.38.94-.53-.64-.94-.92-.9-1.12zm-92.08 70.44c-.17.12-.42.39-.51.35-.35-.18-.65-.45-.96-.69.22-.14.44-.29.82-.53.27.36.46.62.65.88zm-5.91-69.94c0-.34.45-.47.7-.68.21.53.55 1.08.59 1.55.02.31-.41.51-.63.78-.3-.69-.66-1.26-.65-1.65zm5.32 1.92c-.3-.27-.52-.87-.78-1.34.26-.16.51-.51.77-.38.2.1.42.81.9 1.75-.32 0-.66.18-.89-.03zm6.57 70.62c-.07.33-.39.61-.61.91-.24-.24-.62-.46-.67-.74-.04-.2.37-.48.9-1.11.16.36.43.68.37.94zm1.85.26c.07-.31.44-.55.69-.82l.72.73c-.24.24-.49.48-.91.89-.18-.27-.55-.58-.5-.8zm-1.61 1.35c.32-.23.62-.5.97-.66.09-.04.33.23.5.36-.2.25-.4.5-.68.86-.37-.26-.58-.41-.79-.55zM84 51.66c-.28-.32-.44-.98-.65-1.51.25-.1.55-.42.74-.22.25.26.42.92.67 1.52-.26.08-.6.39-.76.2zm-8.07 79.75c-.33-.06-.61-.39-.91-.61.24-.24.46-.63.74-.68.2-.04.48.37 1.12.91-.36.16-.69.43-.95.38zm6.1.07c-.3-.08-.51-.48-.77-.74.24-.22.52-.65.72-.62.27.04.49.44.79.74-.25.22-.57.67-.75.62zm3.09 0c-.3-.08-.51-.48-.77-.74.24-.22.52-.65.72-.61.27.04.49.44.79.74-.25.22-.57.66-.75.62zm47.17-82.35c-.28-.05-.49-.44-.74-.68.3-.21.58-.54.91-.6.26-.05.58.22.94.38-.64.53-.92.94-1.12.9zm75.65-10.79c-.26-.02-.49-.43-.73-.67.28-.23.54-.59.86-.65.24-.05.55.29.84.46-.49.46-.75.89-.97.87zM99.55 208.56c-.06.3-.43.55-.67.82-.24-.22-.69-.45-.67-.66.02-.27.39-.52.67-.84.24.23.71.5.68.68zm1.97 2.98c-.04-.22.37-.51.58-.76.27.24.68.43.77.72.06.2-.31.53-.49.81-.39-.32-.82-.51-.86-.77zm33.39-151.5c.29.09.62.15.83.34.15.13.18.45.17.67 0 .12-.2.31-.33.33-.12.02-.33-.1-.41-.22-.15-.26-.24-.55-.39-.92 0 0 .1-.21.13-.21zm28.28 1.46c-.26-.02-.49-.43-.73-.67.28-.23.54-.59.86-.65.24-.05.55.29.84.46-.49.46-.75.89-.97.87zm-60.8 153.65c-.11-.31-.93-.28-.42-.85.16-.18.47-.34.68-.31.22.03.4.3.72.57-.49.3-.74.45-.98.6zm17.58-165.99c-.26-.02-.49-.43-.73-.67.28-.23.54-.59.86-.65.24-.05.55.29.84.46-.49.46-.75.89-.97.87zM83.19 192.93c.04-.31.4-.58.62-.87.26.23.7.44.72.69.02.24-.4.51-.79.96-.2-.26-.59-.55-.56-.77zm15.89-1.73c.31.04.58.4.87.62l-.68.76c-.26-.22-.52-.45-.96-.83.26-.2.54-.58.77-.55zM203.17 52.26c-.11.05-.4-.31-.61-.49.21-.17.41-.43.65-.48.28-.06.6.05 1.09.11-.49.39-.77.7-1.12.86zm-77.64 8.63c.06-.31.44-.55.68-.83l.73.73-.9.9c-.18-.27-.55-.58-.51-.8zm.71-3.88c.23.32.5.62.67.97.04.09-.23.33-.36.5-.25-.2-.51-.4-.86-.68.26-.37.41-.58.55-.79zm-42.8 143.48c-.04.31-.4.59-.62.88-.26-.23-.7-.44-.72-.68-.02-.24.4-.52.79-.97.2.26.59.54.56.77zm43.6-141.17c.08-.3.47-.52.74-.77.22.24.65.51.62.72-.04.27-.43.49-.74.79-.22-.25-.67-.56-.62-.74zm2.51 2.22c-.36-.23-.67-.55-1-.83.31-.06.63-.19.92-.15.23.03.44.28.81.53-.39.25-.66.5-.73.45zM86.8 203.46c0 .26-.4.52-.62.78-.25-.27-.63-.5-.71-.81-.06-.23.25-.57.4-.88.49.45.94.68.93.91zm43.08-158.2c-.06.31-.44.55-.68.83l-.73-.73.9-.9c.18.27.55.58.51.8zm-27.99 201.53c.01.26-.37.53-.58.8-.27-.25-.66-.46-.76-.76-.08-.23.22-.58.35-.89.52.42.97.63.98.85zm47.49-202.32c-.3-.08-.52-.47-.77-.74.24-.22.51-.65.72-.62.27.04.49.43.79.74-.25.22-.56.67-.74.62zm.77 1.32c.32-.23.62-.5.97-.67.09-.04.33.23.5.36-.2.25-.4.51-.68.86-.37-.26-.58-.4-.79-.55zm7.8 7.4c.06-.32.4-.59.63-.89.24.24.64.46.68.73.03.21-.39.48-.88 1.04-.17-.32-.47-.64-.42-.89zm0 9.26c.06-.32.4-.59.63-.89.24.24.64.46.68.73.03.21-.39.48-.88 1.04-.17-.32-.47-.64-.42-.89zm-6.32-12.49c.22-.08.43-.22.65-.23.37-.01.9-.16.86.51-.01.19-.19.37-.39.73-.44-.4-.78-.7-1.12-1.01zm5.37.86c.22-.02.48.41.72.64-.26.25-.49.64-.8.71-.2.05-.51-.36-.76-.57.35-.35.58-.76.84-.78zm-2.66-10.89c-.42-.21-.8-.49-1.19-.75.13-.09.27-.26.39-.24.41.05.81.16 1.44.3-.37.4-.59.72-.65.69zm-16.46 27.16c.06-.32.4-.59.63-.89.24.24.64.46.68.73.03.21-.39.48-.88 1.04-.17-.32-.47-.64-.42-.89zm-.1-15.57c.02-.26.43-.49.67-.73.23.28.59.54.65.86.04.22-.31.53-.49.81-.43-.45-.85-.71-.84-.93zm0-15.41c-.02-.22.41-.48.64-.72.25.26.64.49.71.8.05.21-.36.51-.56.77-.36-.36-.77-.59-.79-.85zm-40.3 184.88c-.03.31-.38.59-.6.88-.26-.22-.72-.42-.74-.66-.02-.24.38-.52.76-.97.21.25.6.52.58.75zm114.4-169.46c-.02-.22.41-.48.64-.72.25.26.64.49.71.8.05.2-.36.51-.57.76-.35-.35-.76-.58-.78-.84zm-72.47-1.45c.06-.31.44-.55.68-.83l.73.73-.9.9c-.18-.27-.55-.58-.5-.8zm.51-9.97c.32.06.59.4.89.63-.24.24-.46.64-.73.68-.21.03-.48-.39-1.04-.88.32-.17.64-.47.89-.42zm21.84 1.25c-.31-.06-.55-.44-.83-.68.24-.24.48-.67.73-.67.24 0 .48.43.9.85-.27.18-.58.55-.8.51zm-61.67 181.92c.31.03.59.38.89.59l-.65.79c-.26-.22-.53-.43-.99-.8.25-.21.52-.6.75-.57zm-11.55 5.1c-.29.08-.62-.02-.94-.04.28-.32.54-.67.87-.94.07-.06.37.15.79.33-.33.31-.49.59-.72.65zm52.35-183.03c.02-.26.43-.49.67-.73.23.28.59.54.65.86.04.22-.31.53-.49.81-.43-.45-.85-.71-.84-.93zm2.02-7.45c-.05-.29.08-.62.13-.93.29.31.61.6.85.95.05.08-.18.35-.41.75-.28-.36-.54-.55-.58-.78zm-39.67 192.95c-.17.43-.41.83-.62 1.25-.1-.12-.28-.24-.28-.36 0-.4.08-.81.16-1.45.43.32.77.51.75.56zM218.75 52.23c-.26-.02-.49-.43-.73-.67.28-.23.54-.59.86-.65.24-.05.55.29.84.46-.49.46-.75.89-.97.87zm-73.28 3.92c.22-.08.43-.22.65-.23.37-.01.9-.16.86.51-.01.19-.19.37-.39.73-.44-.4-.78-.7-1.12-1.01zm50.92-7.45c-.04-.67.5-.51.87-.5.22 0 .43.15.65.23l-1.13 1c-.19-.36-.37-.54-.38-.73zm-28.49-7.31c-.3-.08-.52-.47-.77-.74.24-.22.51-.65.72-.62.27.04.49.43.79.74-.25.22-.56.67-.74.62zm-55.67 9.28c-.28-.05-.49-.44-.73-.68.3-.21.58-.54.91-.6.26-.05.58.22.94.38-.64.53-.92.94-1.12.9zm-4.54-13.73c.34-.02.78.41 1.17.64-.38.25-.68.64-1.13.71-.29.05-.8-.36-1.22-.57.48-.35.78-.76 1.18-.78zm-5.05-1.72c-.51-.08-.96-.47-1.45-.74.34-.22.68-.65 1.03-.62.46.04.92.43 1.48.74-.37.22-.77.67-1.07.62zM91.17 167.61c.31-.24.61-.51.95-.69.08-.04.45.21.48.36.14.85-.54.59-1.08.67l-.34-.34zm-10.29 1.88c.05-.24.3-.44.47-.66.18.21.55.49.5.61-.14.36-.44.65-.82 1.15-.08-.49-.2-.81-.15-1.1zM114.6 31.71c-.02-.67.52-.49.89-.48.21 0 .43.16.64.24-.36.3-.71.6-1.17.98-.18-.36-.35-.55-.36-.74zM81.91 188.88c-.1-.31-.93-.32-.4-.88.16-.18.48-.33.69-.3.22.04.39.32.7.6-.5.29-.75.43-.99.58zm16.34-17.73c-.3-.07-.54-.45-.8-.7.23-.23.49-.66.7-.64.27.03.51.41.82.7-.24.23-.54.68-.72.64zm2.38-.62c.05-.32.38-.6.59-.9.25.23.65.43.7.69.04.21-.37.49-.84 1.06-.18-.31-.49-.61-.45-.86zm-14.03 16.6c-.22.03-.5-.39-.76-.6.25-.27.46-.67.76-.75.2-.06.53.33.8.52-.34.38-.55.8-.81.84zm3.39-7.03c-.04.28-.41.51-.64.77-.23-.29-.57-.56-.65-.88-.06-.26.19-.59.33-.96.57.61.98.87.96 1.08zm26.99-130.99c-.3-.08-.52-.47-.77-.74.24-.22.51-.65.72-.62.27.04.49.43.79.74-.25.22-.56.67-.74.62zM84.9 182.5c-.31-.05-.58-.41-.86-.64l.69-.76c.25.23.51.46.95.86-.26.2-.55.58-.77.55zM200.12 57.08c.32.06.59.4.89.63-.24.24-.46.64-.73.68-.21.03-.48-.39-1.04-.88.32-.17.64-.47.89-.42zM94.96 182.94s.1-.3.18-.31c.33-.05.66-.06.99-.06.06 0 .17.09.18.16.03.22.08.46.03.67-.02.09-.26.14-.4.2-.33-.21-.67-.42-.99-.65zm-17.15-16.96c.31.05.57.42.85.66l-.7.76c-.25-.24-.5-.47-.94-.88.26-.19.56-.58.78-.54zm33.25-108.96s.21.12.22.2c.04.33.04.66.04 1 0 .06-.06.16-.1.17-.14.02-.29.05-.43 0-.06-.03-.1-.26-.15-.41.13-.32.26-.64.41-.95zm-1.28 8.5c-.06-.31 0-.55.02-.83.15.24.35.48.4.73.05.24-.04.48-.06.9-.12-.27-.32-.58-.37-.8zm-.04-11.81c-.26-.06-.52-.44-.79-.68l.54-.73c.23.24.47.48.87.9-.22.18-.44.55-.63.5zm73.8-12.51c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-76.08 187.83c.09.12.13.36.07.49-.1.21-.3.38-.45.57-.11-.2-.27-.38-.3-.59-.05-.29 0-.59 0-1.01.33.25.55.36.68.54zm-29.74-69.42c.23.29.57.55.65.87.04.16-.41.44-.63.66-.11-.29-.22-.57-.34-.87.12-.26.22-.46.32-.67zm5.26 15.27s-.15.04-.16.02c-.08-.13-.22-.32-.18-.4.18-.35.41-.66.63-.99.02-.03.15-.04.16-.01.08.13.13.27.28.58-.21.23-.47.52-.73.8zm13.34-70.76c.22.28.57.55.63.86.03.17-.43.43-.67.64l-.3-.85c.14-.25.24-.45.35-.65zm120.93-56.53c-.21.02-.46-.39-.69-.62.22-.12.43-.3.66-.33.25-.03.51.09.86.17-.36.36-.58.76-.83.78zm-114.9 58.12l-.12-1.15c.17 0 .38-.07.5 0 .2.13.35.35.59.6-.47.27-.72.41-.97.55zm-16.03 54.37c.16-.28.43-.49.66-.73l.71.68c-.3.15-.6.31-1.17.6-.07-.18-.26-.44-.2-.55zM216.44 45.35c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM90.92 230.95c.21-.26.39-.67.63-.72.21-.04.5.34.75.54-.17.17-.34.35-.58.58-.34-.17-.57-.29-.81-.41zm9.03-55.25c-.11-.24-.31-.47-.32-.71 0-.22.19-.44.3-.66l.75.59c-.28.3-.51.54-.73.78zm2.3-62.29c.22.29.54.56.61.88.03.16-.43.41-.66.62-.1-.28-.2-.57-.3-.86.14-.24.24-.44.35-.63zm83.33-52.62c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM97.11 224.8c-.24-.16-.61-.43-.58-.6.05-.28.37-.51.58-.76.14.27.28.53.5.94-.19.17-.45.45-.5.42zm-3.42-110.82c.01.21-.4.45-.63.67-.11-.22-.29-.43-.31-.66-.02-.25.1-.51.18-.85.36.37.74.59.76.84zm-9.95-.97c.22.3.54.57.61.9.03.16-.43.42-.66.63-.1-.29-.2-.58-.3-.88.14-.25.24-.45.35-.65zm4.56 62.5l-.67.73c-.12-.31-.28-.61-.35-.93-.03-.15.13-.33.21-.54.33.3.57.52.81.74zm-6.98-.46c.24.28.59.52.67.84.04.16-.4.45-.62.69-.12-.28-.24-.56-.36-.85.12-.26.21-.47.31-.68zm8.06-18.21c.18-.23.48-.58.65-.54.28.07.49.41.72.63-.28.12-.56.24-.99.43-.16-.21-.42-.48-.39-.52zm6.33 68.26c.25.27.61.5.71.81.05.15-.38.46-.58.7-.13-.27-.26-.55-.4-.83.11-.26.19-.47.27-.68zm.3-113.46l-.13-1.16c.17 0 .38-.08.5 0 .21.13.36.35.6.6-.47.28-.72.42-.96.56zm-.63 45.19c.28-.23.54-.57.87-.64.16-.04.43.4.65.63-.28.11-.57.22-.86.33-.25-.12-.46-.22-.66-.32zm-4.94-46.25c.08.13.09.38.01.5-.12.2-.34.35-.52.52-.08-.21-.22-.42-.23-.64-.01-.3.07-.6.12-1.01.29.29.5.43.61.63zm94.6-55.98c.05.2-.09.45-.14.68l-.87-1.19c.13-.09.26-.17.58-.38.16.31.36.58.43.89zm-98.98 54.58c.01.21-.4.45-.63.68-.11-.22-.29-.44-.31-.67-.02-.25.1-.51.18-.86.36.37.74.6.76.85zm3.69 64.44c-.24.35-.53.67-.8 1-.06-.14-.22-.32-.17-.4.2-.37.45-.72.74-1.15.13.28.29.48.24.55zM91.71 107c-.13 0-.4-.42-.36-.47.16-.21.39-.41.63-.49.09-.03.29.27.64.61-.43.18-.67.35-.91.35zm7.87 61.16c.25.27.61.5.69.81.04.16-.4.45-.62.69l-.37-.83c.12-.26.21-.47.3-.67zm-12.05-5.23c.08.13.11.37.04.5-.11.21-.32.37-.49.55-.09-.21-.24-.41-.27-.62-.03-.3.03-.6.06-1.02.31.27.53.41.65.6zm93.51-114.59l1.17-.16c0 .17.09.38.02.5-.13.21-.34.36-.59.61-.29-.46-.44-.71-.59-.95zm.67 2.41c.22.29.56.56.63.88.03.16-.42.42-.65.64-.1-.29-.21-.57-.32-.87.13-.25.23-.45.34-.65zm-81.67 42.06c-.04.23-.22.44-.35.66-.22-.24-.62-.49-.61-.71.02-.24.43-.44.82-.79.06.35.17.61.13.84zm-9.46-1.18c.21.29.54.57.6.89.03.16-.43.41-.67.62-.1-.29-.19-.58-.29-.87.14-.25.25-.45.36-.64zm.38 74.52c.03.21-.38.47-.59.71-.12-.21-.32-.42-.35-.65-.04-.25.07-.51.13-.87.38.35.78.55.81.8zm4.1 93.05c-.14-.22-.36-.43-.39-.67-.03-.22.14-.47.23-.71l.79.57-.63.82zm2.05-169.1c-.13.07-.38.08-.51 0-.2-.13-.34-.35-.5-.53.21-.08.43-.21.64-.21.3 0 .6.08 1.01.15-.3.28-.45.48-.65.59zm-5.64-.75c-.3.21-.57.54-.9.6-.16.03-.41-.44-.62-.68.29-.09.58-.19.88-.28.25.14.45.25.64.36zm90.51-34.25c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zM95.45 87.25c.21.3.53.58.58.9.03.16-.44.4-.68.6-.09-.29-.18-.58-.27-.88.14-.24.26-.43.37-.63zm100.99-26.4c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73-.76-.76zM90.78 172.82c-.13.08-.37.11-.5.04-.21-.11-.37-.32-.55-.48.21-.09.41-.24.62-.27.3-.03.6.03 1.02.06-.27.31-.4.52-.59.65zm10.3 59.45c.26.26.62.49.72.8.05.15-.37.46-.58.7-.14-.27-.27-.54-.41-.82l.26-.68zm82.2-178.49c-.21.02-.46-.39-.69-.62.22-.12.43-.3.66-.33.25-.03.51.09.86.17-.36.36-.58.76-.83.78zm-81.15 180.69c.25-.26.47-.63.77-.74.16-.05.49.36.74.56l-.81.42c-.27-.1-.49-.17-.7-.25zm.45-133.18c.22.28.57.54.63.86.03.17-.43.42-.67.64l-.3-.85c.14-.25.24-.45.35-.64zm80.95-41.56c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-82.12 175.58c.26.25.64.46.75.76.06.16-.36.48-.57.73l-.43-.8c.1-.27.17-.48.25-.69zm1.28-137.07c.22.29.55.56.61.87.03.16-.43.41-.67.62-.1-.28-.19-.57-.29-.86.14-.25.25-.44.36-.64zm-11.65.31c.01.21-.41.44-.64.67-.11-.22-.29-.44-.3-.67-.02-.25.11-.51.2-.85.35.38.73.61.75.86zm6.01 62.83c.27-.24.52-.6.83-.67.17-.04.45.4.68.62l-.84.36c-.26-.12-.47-.21-.67-.3zM81.11 98.91c-.1-.25-.28-.5-.27-.75 0-.22.22-.43.35-.65l.7.66c-.3.28-.54.51-.79.73zm20.88 140.87c-.13-.23-.35-.45-.37-.69-.02-.22.16-.46.25-.68l.79.54c-.26.32-.46.58-.67.83zm-7.26-77.64c-.25-.01-.48-.4-.72-.62.32-.11.64-.26.98-.33.14-.03.31.13.52.23-.32.32-.56.73-.78.72zm8.58 82.93l-.61.77c-.15-.29-.33-.58-.42-.89-.04-.14.1-.34.17-.55.35.27.6.47.86.67zm-10.54-46.75c.22-.25.41-.65.66-.69.21-.03.49.36.73.56-.18.17-.35.33-.59.56-.33-.18-.56-.31-.79-.43zm-1.29-63.94c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.5.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.29.3-.43.51-.62.62zm100.33-81.26c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73-.76-.76zM89.74 133.06c-.11-.24-.3-.48-.3-.71 0-.23.21-.45.32-.67l.71.66c-.26.26-.5.49-.73.72zm-.37 67.33c-.25-.07-.49-.26-.65-.46-.04-.05.21-.48.34-.48.24-.02.49.15.93.31-.34.36-.53.67-.62.64zm-2.78.04l-.65.75-.74-.65c.19-.16.39-.33.66-.55.3.19.51.32.73.45zm118.04-150.2c.05-.32.2-.63.31-.95.23.23.65.46.65.7 0 .23-.41.46-.73.78-.09-.2-.26-.38-.23-.53zM84.21 201.81c-.04-.13.21-.35.33-.53.22.16.5.28.64.49.06.09-.16.37-.35.79-.3-.35-.55-.52-.62-.76zM190.2 53.06c-.28.23-.55.57-.87.64-.16.04-.43-.42-.65-.65.28-.11.57-.21.86-.32l.66.33zm3.09-6.17c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM98.1 185.77c.28-.24.53-.58.85-.67.16-.04.44.39.67.61-.28.12-.56.24-.85.36-.26-.11-.46-.21-.67-.3zm-8.82 18.2c-.12-.24-.33-.47-.34-.71-.01-.22.18-.45.28-.68l.77.58c-.27.31-.49.56-.7.81zm4.13-17.95c.03.21-.37.48-.58.72-.13-.21-.32-.41-.36-.64-.04-.24.06-.51.12-.87.38.34.79.54.82.78zm6.16-1.85c.27-.24.51-.59.83-.68.16-.04.45.39.69.6-.28.12-.56.24-.84.37l-.68-.29zm90.64-124.93c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zm-99.64 145.1c0-.13.38-.43.43-.4.23.14.44.34.55.58.04.09-.24.32-.54.7-.22-.41-.43-.63-.45-.87zm2.58.2c.26-.25.49-.62.8-.72.17-.05.47.38.72.59l-.82.4c-.27-.11-.48-.19-.69-.27zm-11.36-20.17c.24.27.6.52.69.83.04.16-.39.46-.61.69-.12-.28-.24-.56-.37-.85.11-.26.21-.47.3-.68zM187.66 58.09c.09-.24.29-.47.51-.62.05-.04.46.24.46.37 0 .24-.18.48-.37.91-.34-.36-.63-.57-.6-.66zM86.26 205.82c.25.27.6.51.7.83.05.16-.38.45-.6.69l-.39-.84c.11-.26.2-.47.28-.68zm8.22-14.52c-.25-.22-.65-.41-.69-.66-.03-.21.36-.48.57-.72.17.18.34.36.56.59-.18.33-.31.56-.43.79zm3.05-1.66c.24.27.59.52.68.83.04.15-.39.44-.61.67-.12-.28-.25-.55-.37-.84.11-.25.21-.46.3-.66zM191.82 43.8c.02-.25.41-.47.65-.7.11.33.25.65.3.98.02.14-.14.31-.25.51-.31-.33-.72-.58-.7-.79zM80.41 145.46l-.17-1.17c.17-.01.38-.09.5-.02.21.12.37.34.61.58-.46.3-.7.45-.94.61zm18.42 43.57c-.04-.13.22-.34.34-.52.22.16.49.28.63.49.06.09-.16.36-.37.78-.29-.34-.54-.52-.61-.75zm-14.49.61c.03.21-.37.48-.58.73-.13-.21-.32-.41-.36-.64-.04-.25.06-.52.12-.88.38.34.79.54.82.79zm-3.05-43.31c.28-.23.54-.58.86-.66.16-.04.44.41.66.64-.28.11-.57.22-.86.34l-.66-.33zm-10.03.91c.23.29.56.56.63.88.04.16-.42.44-.64.66-.11-.29-.22-.58-.33-.88.13-.26.23-.46.33-.67zm19.26 48.96c-.23-.11-.39-.37-.58-.57.16-.14.34-.42.48-.4.24.04.45.26.83.51-.39.25-.64.5-.73.46zm10.82-57.68c.24-.11.47-.3.71-.3.23 0 .45.2.68.31l-.66.7c-.27-.26-.5-.48-.73-.71zm-14.59.75c-.13 0-.41-.41-.37-.46.15-.22.37-.42.62-.51.09-.03.3.26.66.59-.42.19-.66.38-.9.38zm2.7 57.78c.03.21-.36.49-.57.73-.13-.21-.33-.41-.37-.64-.05-.24.06-.52.11-.87.39.34.79.53.83.78zm.31-50.08c.23.29.56.55.63.87.04.16-.42.43-.64.65-.11-.28-.22-.57-.33-.86.13-.25.23-.45.33-.65zm100.51-92.29c.23-.11.46-.31.7-.31.23 0 .46.2.7.31l-.7.7-.7-.7zM85.18 188.75c-.12-.23-.33-.46-.34-.7-.01-.23.18-.46.28-.7l.75.63c-.25.28-.47.52-.69.77zm17.08-53.11c-.32-.05-.63-.2-.95-.31l.69-.69c.23.23.47.46.79.76-.2.09-.38.25-.53.23zm-2.85-.49c.08.13.1.37.03.5-.12.2-.33.35-.5.52-.09-.21-.23-.41-.25-.62-.02-.29.05-.59.09-1.01.3.28.51.42.63.61zm-18.26-.09c-.09.24-.29.47-.5.62-.05.04-.46-.24-.46-.37 0-.24.18-.49.37-.91.34.36.63.57.6.66zm.88-12.8c-.23-.29-.57-.55-.64-.88-.03-.16.42-.43.65-.65.11.29.21.57.32.87-.13.25-.23.46-.34.66zM187.1 46.87c-.28.23-.53.59-.85.66-.17.04-.44-.42-.67-.65l.85-.33c.26.13.46.23.67.33zM96.88 177.42c.24.28.59.52.67.84.04.16-.4.44-.62.66l-.36-.84c.12-.25.21-.46.3-.66zm-21.74-56.07c.23-.23.45-.63.7-.65.21-.02.46.4.69.63-.19.15-.38.31-.63.52-.32-.21-.54-.36-.76-.5zm23.88-1.92c.22.28.56.55.62.86.03.16-.42.42-.65.64-.1-.28-.21-.56-.32-.85.13-.25.24-.45.35-.65zm-8.46 99.91c-.13-.23-.35-.45-.37-.68-.02-.23.16-.47.26-.7l.76.6c-.24.29-.44.54-.65.79zm-5.21-42.08c.23-.12.46-.32.7-.33.23-.01.46.18.69.28l-.63.74c-.28-.25-.52-.47-.77-.69zM210.33 53.12c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73-.76-.76zM96.49 116.83c.08.13.09.38.01.5-.12.2-.34.35-.52.52-.08-.21-.22-.42-.23-.63-.01-.29.07-.59.12-1.01.29.29.5.43.61.62zm2.78 37.54c-.12-.23-.32-.45-.32-.68s.19-.46.29-.69l.71.67-.68.7zM211.8 46.87c-.28.23-.53.59-.85.66-.17.04-.44-.42-.67-.65l.85-.33c.26.13.46.23.67.33zM85.09 155.27c-.03-.13.23-.34.35-.51.22.17.48.3.62.52.06.09-.17.36-.39.77-.28-.36-.52-.55-.58-.79zM185.58 45.35c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM97.62 116.3c-.1-.24-.28-.49-.28-.73 0-.22.22-.43.34-.64l.71.64c-.3.28-.54.51-.77.73zm5.86 103.96c.09.12.13.36.07.49-.1.21-.3.38-.45.57-.11-.2-.27-.39-.3-.6-.05-.29 0-.59 0-1.01.33.25.55.37.68.55zm-16.79-93.37c-.11-.24-.3-.48-.3-.72 0-.23.21-.45.32-.67l.71.67c-.26.26-.5.49-.73.72zm107.43-66.82c.23.23.62.45.65.7.02.21-.39.46-.62.69-.15-.19-.31-.38-.52-.63.2-.32.35-.54.49-.76zm-106 148.63c-.13-.23-.34-.45-.36-.69-.02-.23.16-.47.26-.7l.76.61c-.24.28-.45.53-.66.78zm-7.91-82.3c.06-.33.2-.65.31-.97l.69.71c-.24.22-.48.44-.79.74-.07-.15-.24-.33-.21-.47zm106.97-77.98c.02-.25.41-.47.65-.7.11.33.25.65.3.98.02.14-.14.31-.25.51-.31-.33-.72-.58-.7-.79zm-96.69 76.25c.29-.22.56-.55.88-.62.16-.03.42.42.64.65-.29.1-.57.2-.87.31-.25-.13-.45-.24-.65-.34zm-10.33 58.21c.24.27.6.52.69.84.04.16-.39.46-.61.69-.12-.28-.25-.56-.37-.85.11-.26.21-.47.3-.68zM207.7 46.65c.33.05.64.2.96.31l-.7.7c-.22-.24-.44-.48-.73-.79.14-.07.32-.23.46-.21zm-118.09 162c.25.27.6.51.7.83.05.16-.38.45-.6.69-.13-.28-.25-.55-.39-.84.11-.26.2-.47.28-.68zm98.15-148.09c.13 0 .41.41.37.46-.15.21-.38.42-.62.51-.09.03-.3-.26-.66-.6.42-.19.66-.37.91-.37zm-84.03 120.08c.09.12.11.37.05.49-.11.21-.31.37-.48.55-.1-.2-.25-.4-.28-.61-.04-.29.02-.59.05-1.01.31.26.53.39.66.57zm-3.38 29.71c.03-.33.15-.65.23-.97l.75.63c-.22.24-.44.48-.73.79-.09-.14-.26-.3-.25-.44zm-3.29-29.87c.24.28.59.52.67.84.04.16-.4.44-.62.67l-.36-.84c.12-.25.21-.46.3-.66zm-10.33-56.67c-.11-.24-.3-.48-.3-.72 0-.23.21-.45.32-.67l.71.67c-.26.26-.5.49-.73.72zm-6.23-1.55c.22.29.55.57.62.89.03.16-.42.42-.65.64-.1-.29-.2-.58-.31-.88.13-.25.24-.45.34-.65zm-3.04 1.46c-.1-.25-.29-.5-.29-.74 0-.22.21-.44.33-.66l.72.65c-.3.29-.53.53-.76.76zm123.56-62.94c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM97.77 62.67c-.1.09-.3.09-.52.04-.05 0-.43-.48-.42-.57.01-.16.2-.19.4-.33.3.48.57.82.53.86zm.69.21l-.09-.82c.16.13.36.25.47.38.19.24.33.48.55.81-.45-.18-.69-.27-.93-.37zm75.29-25.49c.33.05.64.2.96.31l-.7.7c-.22-.24-.44-.48-.74-.79.15-.07.32-.24.47-.21zM100.14 62.5c.2.35.51.77.57.99.03.11-.41-.12-.64-.19-.09-.24-.18-.48-.27-.73.13-.03.24-.05.34-.07zM85.82 50.58c-.12-.07-.29-.55-.43-.85.18-.11.34-.3.56-.26.09.02.31.52.67 1.12-.37 0-.57.12-.8 0zm60.42-9.15c-.21.02-.46-.39-.69-.62.22-.12.43-.3.66-.33.25-.03.51.09.86.17-.36.36-.58.76-.83.78zm-.25 2.37c.03-.24.21-.45.32-.68.23.23.64.47.63.69-.01.24-.41.47-.78.83-.08-.35-.2-.61-.17-.85zm-41.46 22.19c.2.31.51.69.56.85.03.08-.4-.24-.63-.37-.09-.19-.18-.38-.27-.58.13.03.23.06.33.09zm-2.88-2.12c-.09-.2-.26-.49-.25-.6 0-.1.21-.02.33-.01l.66.94c-.29-.14-.51-.24-.74-.33zm44.84-10.31c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-50.53 4.68c-.12-.11-.36-.66-.32-.67.16-.02.38.04.61.2.08.06.26.46.58 1.02-.41-.25-.64-.34-.87-.55zm-2.79-2.63c-.3-.33-.58-.74-.86-1.12.23 0 .47.01.7.03.2.41.4.81.67 1.36-.19-.1-.37-.13-.51-.28zM81.42 45.2c-.07-.43-.22-.93-.19-1.27.03-.3.24-.42.37-.62l.61 1.52c-.31.14-.55.25-.79.36zm64.8 17.85c-.23 0-.46-.41-.7-.65.31-.11.62-.26.95-.32.15-.02.33.14.53.23-.31.31-.55.73-.78.73zm-43.35 1.07c.06-.08.21-.07.32-.09l.63.95c-.23-.14-.46-.28-.76-.46-.06-.13-.21-.35-.18-.39zm-8.16-8.35c-.3-.35-.57-.76-.86-1.16.23.03.46.07.69.12.2.41.4.81.67 1.36-.19-.12-.37-.17-.51-.33zm9.91 9.74c-.07-.16-.12-.31-.05-.32.08 0 .34.21.51.32l.44.73c-.34-.28-.67-.56-.91-.73zm70.14-9.37c-.28.23-.53.59-.85.66-.17.04-.44-.42-.67-.65l.85-.33c.26.13.46.23.67.33zm-29.31 1.55c-.28.23-.55.57-.87.64-.16.04-.43-.42-.65-.65.28-.11.57-.21.86-.32l.66.33zm16.48 5.12c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-55.47 4.22c-.03-.11-.13-.3-.06-.3.06 0 .29.2.44.32l.42.71c-.29-.26-.55-.5-.8-.73zm-.09-.89c-.07 0-.46-.41-.73-.65.02-.11 0-.26.07-.32.03-.02.22.14.35.23.13.31.37.73.3.73zm-4.87-6.91c0 .23.13.59 0 .66-.07.04-.58-.42-.9-.65l.25-.33c.25.13.45.23.65.33zm42.4-6.17c-.28.23-.55.57-.87.64-.16.04-.43-.42-.65-.65.28-.11.57-.21.86-.32l.66.33zm-43.53 3.03c.01-.23-.08-.63.1-.65.16-.01.6.4.91.63-.05.15-.1.31-.16.51-.35-.21-.6-.35-.85-.5zm-8.77 17.1l.65.74c-.32.09-.64.22-.96.25-.15.02-.32-.16-.51-.26l.83-.73zm-2.42.56c-.25.09-.51.26-.75.25-.22-.01-.42-.23-.64-.36l.68-.69c.27.31.49.56.71.8zm-3.75-.94c.21.3.53.58.58.91.02.17-.45.41-.69.61-.09-.29-.18-.58-.27-.88.15-.25.26-.44.38-.64zm10.88-.74c.21.17.53.48.57.81.02.16-.44.39-.69.59-.09-.29-.17-.58-.26-.88.07-.12.14-.22.2-.32.06-.07.12-.13.17-.19zm52.76-31.21c0-.13.41-.41.46-.37.21.15.42.38.51.62.03.09-.26.3-.6.66-.19-.42-.37-.66-.37-.91zm.49 15.78c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-.94 5.59l1.17-.16c.01.17.09.38.02.5-.13.21-.34.36-.59.61-.29-.46-.44-.71-.59-.95zM95.3 71.26c.07.1.08.28 0 .36-.13.13-.35.22-.53.33-.08-.16-.21-.32-.21-.48 0-.22.08-.44.15-.73.28.25.49.38.59.53zm-6.6-1.31c.21.31.55.6.6.91.03.16-.44.38-.69.59l-.28-.88c.14-.24.26-.43.37-.62zm-5.47.13c0 .26-.43.52-.67.79-.1-.28-.27-.57-.27-.86 0-.32.13-.64.24-1.06.33.51.7.82.71 1.13zm10.84.05c-.01.18-.43.28-.68.43-.09-.26-.23-.53-.26-.8-.02-.12.15-.24.26-.38.29.32.69.57.68.75zm83.85-9.27c.24-.11.48-.3.72-.3.23 0 .45.2.68.32l-.67.71-.73-.73zm-89.76 5.01c0 .22-.42.35-.65.54-.1-.26-.27-.54-.28-.79-.01-.27.13-.52.23-.86.33.51.7.86.7 1.12zm9.99 1.75c.21.26.54.55.59.75.03.1-.42.1-.66.15-.09-.21-.19-.42-.28-.64.14-.1.24-.19.35-.27zm-4.23-2.2c-.31-.18-.6-.43-.9-.66l.72-.24c.21.29.42.57.71.96-.2-.02-.39.03-.53-.05zm54.59-10.81c-.28.23-.53.59-.85.66-.17.04-.44-.42-.67-.65l.85-.33c.26.13.46.23.67.33zm-1.45 6.26c.23-.11.46-.31.7-.31.23 0 .46.2.7.31l-.7.7-.7-.7zm-47.8 4.91c.19-.02.5-.02.66.11.26.2.44.5.65.75-.28-.1-.55-.2-.97-.35-.14-.2-.37-.5-.34-.5zm48.36-8.3c.13 0 .41.41.37.46-.15.21-.38.42-.62.51-.09.03-.3-.26-.66-.6.42-.19.66-.37.91-.37zm-42.61 11.29c0 .07-.41-.12-.64-.18-.1-.17-.23-.37-.28-.52-.02-.07.14-.02.24-.03.29.32.68.65.68.72zM81.23 52.62c.06.23.05.57-.03.7-.14.21-.36.28-.54.42-.06-.34-.17-.71-.16-1.02.01-.43.12-.8.21-1.35.25.59.44.92.53 1.26zm22.32 14.62c-.23-.08-.46-.07-.68-.23-.22-.15-.43-.48-.64-.74.2.08.4.17.68.28.27.28.46.48.65.69zm64.53-7.5c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-49.65-21.36c-.23 0-.46-.41-.7-.65.31-.11.62-.26.95-.32.15-.03.33.14.53.23-.31.31-.55.73-.78.73zm20 18.64c.11.24.3.48.3.72 0 .23-.2.45-.32.68l-.71-.67.73-.73zm-18.52-3.08c.11.24.3.48.3.72 0 .23-.2.45-.32.68l-.71-.67.73-.73zm17.31-.36c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-.94 3.21c.31-.29.6-.6.93-.86.06-.05.27.09.42.14-.25.33-.51.66-.72.94-.34-.13-.48-.18-.62-.23zm-10.37-10.67c-.22-.13-.36-.4-.54-.61.17-.13.37-.4.5-.37.24.06.43.29.8.57-.41.23-.67.46-.76.41zm39.59.79c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zm-1.48 6.23c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73-.76-.76zm-36.06 9.69c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-.27-19.78c.22.29.56.56.63.88.03.16-.42.42-.65.64-.1-.29-.21-.57-.32-.87.13-.25.23-.45.34-.65zm-.26-5.64c.33.05.64.2.96.31l-.7.7c-.22-.24-.44-.48-.74-.79.15-.07.32-.24.47-.21zm3.61 13.07c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm2.59 5.97c.13-.22.4-.36.61-.54.13.17.4.37.37.5-.06.24-.29.43-.57.8-.23-.41-.46-.67-.41-.76zm28.85-11.02c.24-.11.48-.3.72-.3.23 0 .45.2.68.32l-.67.71-.73-.73zm-21.61-9.26c.24-.11.48-.3.72-.3.23 0 .45.2.68.32l-.67.71-.73-.73zm-36.12 22.84c.13.32.19.63.29.95l-.77-.7c.01-.23.03-.46.07-.78.16.2.35.38.41.53zm37.6-16.73c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM102.57 52.3c-.22-.03-.5-.21-.76-.32.1-.23.14-.64.35-.63.23.01.62.41 1.09.78-.28.08-.46.2-.68.17zm68.11-11.18c.09-.24.29-.47.51-.62.05-.04.46.24.46.37 0 .24-.18.48-.37.91-.34-.36-.63-.57-.6-.66zm-63.64 18.13c-.09.23-.12.57-.27.64-.08.04-.41-.42-.64-.65l.39-.32c.2.13.36.23.52.33zm-1.07-3.09c-.12.23-.18.59-.37.66-.1.04-.47-.42-.74-.65l.5-.33c.24.13.42.23.61.33zm-1.43-2.36c-.17.02-.53-.39-.82-.62.14-.12.25-.3.44-.33.2-.03.48.09.81.17-.19.36-.23.76-.42.78zm3.48 5.53c.12-.11.22-.29.36-.29.13 0 .32.21.47.32l-.2.73c-.25-.29-.44-.53-.64-.76zm2.35 5.06c-.04.08-.13.1-.19.02-.1-.12-.2-.33-.31-.51.07-.09.12-.23.21-.24.12-.02.26.05.43.1-.07.3-.09.51-.14.63zm29.68-19.85c-.21.02-.46-.39-.69-.62.22-.12.43-.3.66-.33.25-.03.51.09.86.17-.36.36-.58.76-.83.78zm-31.62 9.39c.23.23.58.45.64.7.05.21-.24.46-.37.69-.16-.19-.31-.38-.52-.63.1-.32.18-.54.25-.76zm-3.84-21.61c.45.23 1.16.45 1.23.7.06.21-.6.46-.93.69-.3-.19-.6-.38-1-.63.29-.32.49-.54.7-.76zm5.88 27.43c-.07.08-.21.1-.29.02-.13-.12-.25-.33-.38-.51.11-.09.22-.23.35-.24.18-.02.37.05.63.1-.15.3-.21.51-.31.63zm-1.56-9.98c.34.05.67.2.99.31l-.61.7c-.25-.24-.49-.48-.82-.79.14-.07.29-.24.44-.21zm31.39 3.81c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zm-29.33-4.37c-.23-.13-.39-.4-.59-.61.17-.13.37-.4.51-.37.25.06.47.29.85.57-.42.23-.68.46-.78.41zm1.29 12.94c.23 0 .46.41.7.65-.31.11-.62.26-.95.32-.19.02-.2-.14-.31-.23.07-.16.12-.34.2-.48.13-.14.24-.25.36-.25zm0-23.77c-.12 0-.23-.1-.35-.24a5.37 5.37 0 00-.51-.41c.54-.11.77-.26 1.11-.32.15-.02.33.14.53.23-.31.31-.55.73-.78.73zm3.08 26.29c.23.28.57.55.64.87.04.16-.42.43-.65.65-.11-.28-.21-.57-.32-.86l.33-.66zm23.43-18.56c-.22-.13-.36-.4-.54-.61.17-.13.37-.4.5-.37.24.06.43.29.8.57-.41.23-.67.46-.76.41zm29.82-2.29c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zm-51.94-4.36c.05-.33.2-.64.31-.96l.7.7c-.24.22-.48.44-.79.74-.07-.15-.24-.32-.21-.47zM86.57 75.47c.08-.33.24-.63.37-.94l.65.74c-.25.21-.5.41-.84.69-.06-.15-.22-.34-.18-.48zm12.61-.23c.22.29.55.56.6.88.03.17-.44.41-.69.62l-.28-.86c.14-.25.26-.44.37-.64zm58.1-20.13c-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1-.28.3-.42.51-.62.63zM88.43 82.78c.07.13.08.38 0 .51-.13.2-.35.34-.53.5-.07-.21-.21-.43-.21-.64 0-.3.08-.6.15-1.01.28.3.49.45.6.65zm10.79-3.51c-.21-.14-.34-.41-.5-.63.17-.12.4-.37.52-.33.23.07.41.31.76.61-.42.2-.69.42-.78.36zm80.23-23.05c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73-.76-.76zm15.9-18.2c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zM87.86 79.56c-.02-.11.15-.25.24-.38l.66.87c-.14.05-.29.1-.63.22-.1-.23-.23-.47-.28-.72zm108.09-32.9c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zM97.08 92.92c-.23-.13-.43-.32-.6-.53-.02-.03.22-.26.34-.4.23.23.46.46.7.69-.18.1-.37.28-.44.24zm-8.3 68.47c.09-.05.28.08.42.13l-.65.89c-.09-.13-.18-.25-.37-.53.19-.16.37-.37.6-.49zm-9.11.75c-.24-.12-.45-.3-.63-.49-.02-.03.2-.28.31-.43l.74.65c-.18.12-.35.31-.42.27zm20.33-2.45c-.15.11-.39.35-.42.32-.2-.17-.39-.37-.52-.6-.04-.07.14-.25.24-.41.24.23.47.46.7.68zm79.93-106.25c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zm-96.3 106.43c-.03-.11.14-.26.21-.4l.73.82c-.14.06-.28.13-.61.28-.11-.22-.27-.45-.33-.69zm-3.09.09c-.03-.11.14-.27.21-.4l.73.82c-.14.06-.28.13-.61.28-.11-.22-.27-.45-.33-.7zm90.12-121.94c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zM79.19 79.69a2.06 2.06 0 01-.58-.56c-.04-.06.11-.27.18-.4l.85.73c-.19.1-.38.27-.45.23zm18.28 78.28c-.03-.11.14-.26.21-.39l.73.81c-.14.06-.28.12-.61.27-.11-.22-.27-.44-.33-.68zm-20.85 1.16c-.26-.1-.56-.19-.73-.39-.07-.08.14-.41.22-.63.24.23.48.46.72.7-.07.11-.18.32-.21.31zm6.93-2.34c-.03-.11.14-.26.21-.4l.73.82c-.14.06-.28.12-.61.27-.11-.22-.27-.45-.33-.69zm-8.51.82c-.26-.1-.56-.19-.74-.39-.07-.08.14-.41.22-.63.24.23.48.46.72.7-.07.11-.18.32-.21.31zM162 43.6c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zm-20.43-3.62c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zM90.71 155.45l.85-.7c.06.14.2.32.15.41-.11.23-.3.43-.45.62a143 143 0 00-.55-.34zm-2.16.29c-.11.03-.26-.13-.4-.21l.82-.73c.06.14.12.28.27.61-.22.11-.45.27-.69.33zM196.89 39.72c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zM97.03 169.28c-.26-.09-.56-.18-.74-.37-.07-.07.13-.4.21-.61l.73.67c-.07.11-.18.32-.2.31zm-6.17.24c-.26-.09-.56-.18-.74-.37-.07-.07.13-.41.21-.62.24.22.48.45.73.68-.07.11-.18.32-.2.31zm-6.16.24c-.27-.09-.57-.17-.75-.36-.07-.07.13-.41.2-.63.23.23.46.46.71.72-.03.06-.13.28-.15.27zM83.33 168l-.81.74c-.06-.14-.21-.31-.17-.41.09-.24.27-.44.41-.65.3.17.44.24.57.32zm26.19-107.86c.09.31.2.62.25.93.02.15-.05.3-.08.45-.1-.3-.2-.61-.39-1.2.04-.04.14-.11.23-.18zm-11.77 107c-.03-.11.13-.26.21-.39l.74.8c-.14.06-.28.13-.61.28-.12-.22-.27-.44-.34-.68zm-2.06.44c-.21.09-.53.31-.61.25-.2-.17-.31-.46-.42-.71-.01-.02.2-.14.28-.2l.75.66zm-9.52.58c-.26-.1-.56-.18-.74-.37-.07-.07.13-.41.21-.62.24.22.48.45.73.68-.07.11-.18.32-.2.31zm-1.59-1.49c-.27-.09-.57-.18-.75-.36-.07-.07.13-.41.2-.62.23.23.46.47.71.72-.03.06-.13.28-.15.27zm-5.35-29.37c-.23-.13-.45-.31-.61-.52-.05-.06.1-.27.16-.41.29.22.58.44.89.68-.18.11-.37.29-.44.25zm23.44 87.94c-.2.1-.51.34-.59.28-.21-.16-.33-.44-.46-.68-.01-.02.19-.15.27-.21.27.21.53.41.79.61zm68.61-172.41c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zm-70.37 28.06c-.25-.12-.54-.23-.7-.44-.06-.08.17-.39.26-.59.22.24.44.49.67.74-.08.1-.2.3-.23.29zm-15.47 56.34c-.24-.12-.45-.31-.62-.51-.02-.03.21-.28.32-.42l.73.67c-.18.11-.36.3-.43.26zm1.81-45.35c-.02-.11.15-.25.24-.38l.67.86c-.14.05-.28.1-.63.23-.1-.23-.24-.46-.29-.71zm-2.9 71.65c-.24-.12-.46-.3-.63-.5-.05-.06.09-.27.14-.42.3.21.6.43.91.65-.18.12-.36.3-.43.27zM96.49 53.56c-.11-.26-.26-.55-.22-.73.02-.07.46.15.7.23-.03.23-.05.47-.07.71-.14-.07-.41-.19-.42-.21zM74.85 148.2c-.26-.1-.55-.2-.73-.39-.07-.08.14-.41.23-.62.23.23.47.46.71.71-.07.11-.19.32-.21.31zM181.48 45.83c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zM98.57 94.49c-.23-.14-.43-.33-.59-.54-.04-.06.11-.26.17-.4.28.23.56.46.86.71-.19.1-.38.27-.45.23zm-19.45 52.45c-.11.03-.27-.15-.41-.24.17-.21.33-.44.53-.61.06-.05.27.1.93.36-.49.23-.76.4-1.05.49zm18.13-.87c-.09-.08.07-.42.12-.64.18.1.37.19.52.32.13.11.22.27.64.83-.78-.28-1.09-.33-1.29-.5zm-9.27-.21c-.03-.11.14-.26.22-.39l.72.82-.61.26c-.11-.22-.26-.45-.32-.69zM191 45.11c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64.3-.78.35-1.09.53-1.28zm1.28 14.61c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zM86.67 145.46c-.09-.21-.3-.54-.23-.61.18-.2.47-.3.73-.4.02 0 .14.2.19.28-.24.25-.46.49-.69.73zm15.38-83.98c-.18-.15-.51-.4-.52-.43-.08-.2-.12-.38-.09-.5 0-.04.26.15.42.25.06.23.13.46.19.68zm2.28 2.89c-.18-.26-.39-.55-.45-.73-.02-.07.29.15.44.23.1.23.2.47.31.71-.1-.07-.28-.19-.29-.21zm-10.2 78.35c-.03-.11.14-.26.22-.39l.72.82-.61.26c-.11-.22-.26-.45-.32-.69zm5.06 88.6c-.03-.1.12-.27.18-.41l.79.75c-.13.07-.27.14-.59.32-.13-.21-.3-.42-.38-.66zM82.79 38.45c.38.3.82.59 1.09.89.19.21.13.43.19.64-.4-.29-.81-.57-1.22-.86-.02-.26-.04-.47-.06-.67zm9.95 102.41c.11.23.29.46.32.7.03.21-.1.45-.15.67-.15-.2-.3-.41-.44-.6.12-.34.2-.56.27-.78zm68.95-84.95c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64.3-.78.35-1.09.53-1.28zm-61.4 84.55c.1-.26.19-.55.38-.73.07-.07.4.14.62.22-.24.22-.48.43-.74.67-.05-.03-.26-.13-.26-.15zm116.7-87.05c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zm-26.24-10.66c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zm0 9.13c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zM86.6 79.04c-.07-.22-.27-.56-.2-.63.19-.19.49-.26.75-.35.02 0 .12.21.17.3-.25.24-.49.46-.73.68zm6.5 75.44c-.12-.23-.3-.45-.33-.69-.03-.21.09-.45.14-.68.16.2.31.41.45.59-.11.34-.19.56-.26.78zm2.55-16.05c-.09-.08.07-.42.12-.64.18.1.37.19.52.32.13.11.22.27.64.84-.78-.29-1.09-.34-1.29-.51zm98.18-92.73c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zM75.26 154.19c-.21.09-.53.31-.61.24-.2-.18-.3-.47-.41-.73 0-.02.2-.14.28-.2.26.24.5.46.74.69zM103 228.2c-.2.1-.51.35-.59.29-.21-.15-.33-.44-.46-.68-.01-.02.19-.15.27-.21.27.21.53.41.79.61zm2.63-148.59c-.26-.12-.55-.22-.72-.42-.06-.07.16-.39.26-.59.21.25.41.5.64.77-.04.05-.16.26-.18.25zm-.53-16.8c-.12-.26-.27-.56-.3-.74 0-.07.28.14.43.22.02.22.05.44.09.68-.05-.03-.21-.14-.22-.16zm2.22 3.27c-.13-.15-.36-.4-.38-.43-.07-.2-.12-.38-.11-.5 0-.04.18.15.29.25.07.23.13.46.2.68zm35.91-16.81c.06.23.18.47.15.68-.03.24-.21.46-.33.69-.07-.22-.15-.44-.27-.79.14-.18.29-.37.45-.57zM92.95 151.49c-.09-.3-.24-.59-.26-.89-.01-.21.14-.43.22-.65.12.28.24.57.36.86-.13.26-.23.47-.33.68zm6.1-12.38c-.11-.23-.29-.45-.32-.7-.03-.21.1-.44.15-.67.15.2.3.41.44.59-.12.34-.2.55-.27.77zM85.6 36.47c.04-.23.17-.44.39-.61.06-.05.49.1.75.16-.15.29-.29.58-.45.89-.3-.18-.71-.37-.7-.43zm6.8 57.74c-.23-.14-.43-.33-.59-.54-.04-.06.11-.26.17-.4.28.23.56.46.86.71-.19.1-.38.27-.45.23zm9.03-35.84c-.17-.15-.5-.4-.51-.43-.03-.2-.01-.38.06-.5.02-.04.27.15.44.25v.68zm-9.57 91.08c-.26-.1-.56-.18-.75-.37-.07-.07.13-.4.21-.62.23.23.45.47.7.73-.03.06-.14.27-.16.26zm11.73-88c-.16-.15-.46-.4-.47-.43-.05-.2-.07-.38-.02-.5.01-.04.24.15.39.25.03.23.06.46.1.68zm39.3-20.27c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zm-42.28 188.76c-.09-.07.04-.43.06-.65.18.09.38.15.55.27.14.1.24.25.72.77-.8-.21-1.12-.23-1.33-.39zM87.2 147.98c-.26-.1-.56-.19-.74-.38-.07-.07.14-.41.22-.62.22.24.44.47.69.73-.03.06-.14.27-.16.27zm-6.17.1c-.26-.1-.56-.19-.74-.38-.07-.07.14-.41.22-.62.22.24.44.48.69.73-.03.06-.14.27-.16.27zm24.28-61.93l-.67-.85c.14-.05.33-.18.42-.13.23.11.42.31.61.46-.19.28-.28.41-.37.53zM92.2 200c-.11.04-.28-.13-.42-.21.16-.22.3-.46.5-.63.05-.05.27.08.95.3-.47.26-.73.44-1.02.54zm87.97-155.42c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm24.78 15.36c-.11-.15-.34-.4-.32-.43.18-.2.39-.38.62-.5.07-.04.25.15.4.25l-.71.68zm4.91-8.65c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zM104.27 213.06c-.24-.11-.47-.27-.65-.46-.05-.05.08-.27.12-.42.31.19.61.39.94.59-.17.12-.35.31-.42.28zm-7.97 2.67c-.08-.3-.21-.6-.23-.91-.01-.15.18-.32.28-.48.1.29.21.59.41 1.16-.09.04-.27.13-.46.22zm40.74-152.7c-.11-.15-.34-.4-.32-.43.18-.2.39-.38.62-.5.07-.04.25.15.4.25l-.71.68zM93.66 195.48c-.24-.11-.46-.28-.65-.46-.02-.02.19-.29.29-.44.25.2.51.41.77.62-.17.12-.34.32-.41.29zm1.09-1.08c-.11-.29-.26-.58-.3-.87-.02-.21.12-.44.19-.65.13.28.27.56.4.84-.12.27-.21.48-.3.69zM91.38 83.43c-.23-.13-.43-.33-.59-.54-.02-.03.22-.26.34-.4.23.23.45.46.69.71-.18.1-.37.27-.44.23zm30.13-20.33c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm87.2-14.67c.21-.08.54-.3.61-.23.2.18.29.47.39.73 0 .02-.2.13-.28.19l-.72-.69zm-28.8-1.17c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zm-47.85-7.58c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zm.78 3.35l-.71-.83c.14-.06.32-.2.41-.16.24.1.44.29.63.43-.18.3-.26.43-.34.56zm-1.22 8.59c.23-.11.46-.29.71-.32.21-.03.45.1.68.16-.21.15-.42.3-.6.44-.34-.12-.56-.2-.78-.28zm.45 3.5c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zm.24 6.45c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-1.78-23.54c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zm0 3.21c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zm0 6.03c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zm.6 8.65c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zm-28.94 29.61c-.25-.12-.54-.23-.7-.43-.06-.08.17-.39.26-.59l.67.73c-.08.1-.2.3-.23.29zM84.91 205.38c-.09.05-.28-.07-.43-.12l.62-.91c.09.12.18.25.39.53-.18.16-.36.37-.58.5zm10.9-2.36c-.27-.09-.57-.16-.75-.34-.07-.07.12-.41.19-.62.25.21.5.43.75.65-.07.11-.17.33-.19.32zm33.4-153.81c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-30.75 163c.3-.08.61-.21.91-.23.15-.01.32.18.48.28-.3.1-.59.21-1.17.41-.04-.09-.13-.27-.22-.45zm-1.21-10.83c-.27-.08-.57-.15-.76-.33-.07-.07.11-.41.18-.63.24.22.47.44.73.68-.03.06-.12.28-.14.27zm-8.99.42c-.21.1-.52.33-.6.27-.21-.16-.32-.45-.44-.7-.01-.02.19-.15.27-.21.27.22.52.43.77.64zm-3.32-22.79c-.24-.12-.46-.29-.64-.49-.05-.06.09-.27.14-.42.3.21.6.42.92.64-.18.12-.35.31-.42.27zm27.32-123.07c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.1.13-.32.21-.81.64.22-.78.33-1.09.49-1.28zM82.68 176.96c-.03-.11.13-.27.2-.4l.75.8c-.14.07-.27.13-.6.29-.12-.22-.28-.44-.35-.69zM198.8 49.75c.23.12.44.31.62.51.02.03-.21.27-.32.42l-.73-.67c.18-.11.36-.29.43-.26zm-86.2 15.44c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zM97.44 175.03c-.14.12-.39.36-.42.33-.21-.16-.4-.37-.53-.6-.04-.07.14-.25.23-.41.24.23.47.45.71.67zm-13.28.31c-.03-.11.13-.27.21-.4l.74.81c-.14.06-.28.13-.61.29-.12-.22-.27-.44-.34-.69zm18.18-92.84c-.25-.12-.54-.23-.7-.43-.06-.08.17-.39.26-.59.22.24.44.48.67.74-.08.1-.2.3-.23.29zm37.76-25.64c-.11-.15-.34-.4-.32-.43.18-.2.39-.38.62-.5.07-.04.25.15.4.25l-.71.68zM89.09 223.41c-.09-.07.04-.43.06-.66.18.09.38.16.55.28.14.1.24.26.72.79-.8-.22-1.12-.24-1.33-.4zm-2.41-132.8c-.15.1-.42.32-.45.3-.19-.18-.36-.41-.47-.65-.03-.07.16-.24.27-.39.22.25.43.5.65.74zm125.88-44.49c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-42.85 11.34c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zM91.47 90.81c.23-.05.47-.16.69-.12.24.05.45.23.67.36-.22.06-.45.13-.81.23-.17-.14-.36-.31-.55-.47zm-11.23 83.75c-.26-.09-.56-.18-.74-.37-.07-.07.13-.41.21-.63.24.22.48.45.73.68-.07.11-.18.33-.2.32zm29.5-118.24c-.03-.11.07-.26.11-.39l.59.83c-.09.06-.18.12-.4.26-.1-.23-.23-.45-.3-.7zM95.19 91.83c-.07-.21-.27-.55-.2-.62.19-.19.49-.27.75-.36.02 0 .12.21.17.29-.25.24-.49.46-.73.69zm13.19-45.16c.28.12.54.31.75.51.03.03-.2.27-.31.42-.29-.22-.59-.44-.89-.67.18-.11.36-.29.45-.26zM95.49 81.53c-.02-.11.15-.25.24-.38l.66.87c-.14.05-.29.1-.63.22-.1-.23-.23-.46-.28-.71zm74.23-30.24c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zm-.6-11.6c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zM99.41 217.82c-.09-.07.04-.43.07-.65.18.09.38.16.54.28.14.1.23.25.71.78-.8-.22-1.12-.24-1.33-.4zm1.22-30.42c-.11.03-.26-.13-.4-.2l.82-.73c.06.14.13.27.28.6-.22.11-.45.27-.69.33zm-2.86.17c-.24-.11-.46-.28-.63-.48-.05-.05.09-.27.14-.41.3.2.6.4.92.62-.18.12-.35.31-.42.27zm20.41-134.1c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zm20.38 1.85c-.11-.15-.34-.4-.32-.43.18-.2.39-.38.62-.5.07-.04.25.15.4.25l-.71.68zM88.75 220c-.03-.11.12-.27.18-.41l.79.77c-.13.07-.27.14-.59.31-.13-.22-.3-.43-.38-.67zm-4.8-33.18c-.26-.09-.56-.17-.75-.36-.07-.07.12-.41.2-.63.24.22.49.44.74.67-.07.11-.17.33-.2.32zm1.33-1.63a2.02 2.02 0 01-.63-.49c-.05-.06.09-.27.14-.42.3.21.6.41.92.63-.18.12-.35.31-.42.28zM115.1 59.63c.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89-.11-.18-.29-.37-.25-.44zM92.71 183.61c-.11.03-.28-.14-.42-.22.16-.21.31-.45.5-.62.06-.05.27.09.95.32-.48.25-.74.43-1.03.52zm-6.16.33c-.11.03-.28-.14-.42-.22.16-.21.31-.45.5-.63.06-.05.27.09.95.32-.48.25-.74.43-1.03.52zm-3.52-.78c-.03-.11.13-.27.2-.4l.75.8c-.14.07-.27.13-.6.29-.12-.22-.28-.44-.35-.69zm8.4-1.38c-.27-.09-.57-.16-.76-.35-.07-.07.12-.41.19-.62.23.23.46.45.72.7-.03.06-.13.28-.15.27zm-3.86-.4c-.03-.11.13-.27.2-.4l.75.8c-.14.07-.27.13-.6.29-.12-.22-.28-.44-.35-.68zm-5.51.88c-.24-.11-.46-.29-.64-.48-.02-.02.19-.29.3-.44l.76.64c-.17.12-.34.31-.42.28zm13.79-2.24a2.12 2.12 0 01-.64-.47c-.02-.02.19-.28.3-.43.25.21.5.41.76.63-.17.12-.35.31-.42.28zm-8.95.13c-.14.12-.38.36-.41.34-.21-.17-.4-.37-.54-.6-.04-.07.14-.26.23-.42.24.23.48.45.72.68zm7.63-1.91c-.14.12-.38.36-.41.33-.21-.16-.4-.37-.53-.6-.04-.07.14-.26.23-.41.24.23.48.45.72.67zm6.2-106.34c-.02-.05.15-.1.23-.15l.68.46c-.14.01-.28.02-.62.05-.1-.11-.24-.24-.29-.36zm48.33-21.52c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zm-57.93 49.65c.23-.05.47-.16.69-.13.24.04.45.23.67.35-.22.07-.45.13-.8.24-.17-.14-.36-.3-.55-.46zm10.18 21.73c-.21.08-.54.28-.62.22-.19-.18-.29-.47-.39-.73 0-.02.2-.13.29-.18.25.24.48.47.72.69zm-6.51-9.5c.09-.04.28.09.42.15l-.69.85c-.08-.13-.17-.26-.35-.54.19-.15.39-.34.62-.45zm-7.2-13.57c-.23-.14-.43-.33-.59-.54-.04-.06.11-.26.17-.4.28.23.56.46.86.71-.19.1-.38.27-.45.23zm-1.19-34.82c-.22-.22-.41-.51-.55-.81-.04-.08.12-.26.19-.4.26.36.53.71.81 1.09-.19.05-.38.18-.45.11zm-.93 42.93c-.11-.15-.33-.41-.31-.44.18-.19.4-.37.64-.49.07-.03.24.16.4.26-.25.22-.49.44-.73.66zm6.21-9.75c-.08-.08.09-.42.15-.64.17.11.36.21.51.34.13.12.2.28.61.87-.76-.33-1.08-.39-1.26-.57zm57.74-59.63c.23.12.44.31.62.51.02.03-.21.27-.32.42l-.73-.67c.18-.11.36-.29.43-.26zM91.65 68.8c.12-.2.22-.44.42-.54.07-.04.39.22.59.34-.25.13-.5.26-.78.4-.05-.04-.25-.18-.24-.19zm87.05-25.82c-.11-.15-.34-.4-.32-.43.18-.2.39-.38.62-.5.07-.04.25.15.4.25l-.71.68zm-83.01 77.17c-.08-.08.09-.42.14-.64.17.11.36.2.51.33.13.11.2.28.63.85-.77-.31-1.09-.36-1.28-.54zm-5.58.18a2.03 2.03 0 01-.6-.53c-.04-.06.11-.27.17-.41.29.22.57.45.87.69-.19.11-.37.28-.44.24zm57.66-69c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64.3-.78.35-1.09.53-1.28zM83.73 71.58c-.02-.1.16-.29.25-.43.21.37.43.64.65.94-.14.05-.29.1-.63.22-.09-.23-.23-.47-.26-.72zm5.6 25.65c-.26-.11-.55-.22-.73-.42-.06-.07.16-.4.25-.61.21.25.42.5.65.77-.04.06-.15.26-.17.26zm-3.22-.13c-.23-.14-.43-.33-.59-.54-.04-.06.11-.26.17-.4.28.23.56.47.86.71-.19.1-.38.27-.45.23zm100.25-38.07c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64.3-.78.35-1.09.53-1.28zm-93.79 64.65c.11-.26.21-.55.41-.72.08-.07.4.15.61.24-.23.23-.47.46-.71.7-.11-.07-.31-.19-.3-.22zm56.49-57.86c.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73c-.11-.18-.29-.36-.26-.43zm-47 44.97c-.02-.11.15-.25.23-.38l.69.84c-.14.05-.28.11-.62.24-.1-.22-.25-.45-.3-.7zM90.79 70.24l-.65-.88c.14-.03.33-.13.42-.07.23.14.41.34.6.5-.2.24-.28.34-.37.45zm-11.38 54.6c-.26-.11-.55-.21-.72-.41-.07-.08.15-.4.24-.62.23.24.46.47.7.72-.07.11-.19.32-.22.3zm15.62 130.8c-.27-.07-.57-.13-.77-.3-.08-.07.09-.42.15-.64.26.2.52.4.79.61-.06.11-.15.34-.17.33zm-.91-131.27c-.02-.11.14-.26.22-.39l.7.83c-.14.06-.28.11-.62.25-.11-.22-.25-.45-.31-.7zm82.73-67.71c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zM102.1 66.83c-.27-.07-.55-.14-.83-.2-.05-.1-.18-.27-.14-.29.11-.05.29-.02.44-.02.28.27.4.39.52.51zm84-28.68c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zM85.38 70.32c-.08-.1.11-.47.18-.72.17.14.35.27.49.43.12.14.19.34.57.99-.75-.39-1.06-.49-1.24-.71zm20.21 168.28c-.14.13-.36.38-.39.36-.22-.15-.42-.34-.57-.56-.04-.06.12-.26.2-.42.26.21.51.42.76.62zM95.5 63c-.1-.17-.3-.5-.28-.51.18-.04.39-.03.63.03.07.02.23.27.37.43-.24.01-.48.03-.72.04zm-13.61 4.97c-.22.07-.56.29-.63.19-.18-.26-.25-.67-.33-1.04 0-.03.21-.14.3-.19.23.36.44.7.66 1.04zm19.33 44.91c-.26-.11-.55-.2-.73-.4-.07-.07.15-.39.24-.6.21.24.43.48.66.74-.04.06-.15.26-.17.26zm-5.95-12.37c-.23-.13-.43-.32-.6-.53-.02-.03.22-.26.34-.4.23.23.46.45.7.69-.18.1-.37.28-.44.24zm9.44-30.82c-.25-.16-.53-.34-.69-.5-.06-.06.15-.06.24-.09.22.2.44.39.67.6-.07 0-.19 0-.22-.01zM79.67 109.3c-.26-.11-.55-.22-.72-.42-.07-.08.16-.4.25-.61.23.24.46.48.69.73-.07.1-.2.31-.22.3zm.84-1.28c.11-.26.21-.55.42-.72.08-.07.4.16.61.25l-.72.69c-.1-.08-.31-.2-.3-.22zm19.8-43.07c-.21-.22-.41-.47-.56-.7-.04-.06.11-.07.17-.11.27.32.53.64.81.98-.18-.07-.36-.11-.43-.18zm1.83 43.14c-.08-.08.09-.42.14-.64.17.11.36.2.51.34.13.11.21.28.62.85-.77-.31-1.08-.37-1.27-.55zm-5.25-.2c-.15.11-.41.33-.44.3-.2-.18-.37-.4-.49-.63-.03-.07.15-.24.26-.39.23.24.45.48.67.72zm-.31-11.4c-.08-.21-.28-.55-.21-.62.18-.19.48-.27.75-.36.02 0 .13.21.18.29l-.72.69zm49.4-36.73c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zm40.1-15.69c-.1.04-.28-.09-.42-.15l.69-.85c.08.13.17.26.35.55-.2.15-.39.34-.62.45zm-7.46-7.19c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-27.41 26.78c.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62.23-.11.45-.26.7-.31zM87.32 96.13c-.08-.22-.28-.55-.21-.62.18-.19.48-.27.75-.36.02 0 .13.21.18.29-.25.24-.48.47-.72.7zm95.93-48.45c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-82.52 55.47c-.02-.11.15-.25.23-.38l.68.84c-.14.05-.28.11-.63.23-.1-.23-.24-.45-.29-.7zm-9.26-.3c-.02-.11.15-.25.23-.38l.68.85c-.14.05-.29.11-.63.24-.1-.23-.24-.46-.29-.71zm9.24 30.83c.09-.05.28.09.42.14l-.67.86c-.09-.13-.17-.25-.36-.53.19-.15.38-.35.61-.46zM84.12 46.27c-.01-.16.16-.2.24-.29l.57 1.67c-.14-.05-.27-.1-.6-.23-.08-.37-.19-.79-.22-1.15zm15.46 50.26c-.05-.31-.14-.62-.12-.92 0-.15.22-.29.33-.43.07.3.14.61.27 1.2-.09.03-.29.1-.48.16zm-20.94 4.71c-.22.08-.55.28-.62.21-.19-.19-.27-.49-.37-.75 0-.02.21-.13.29-.18.24.25.47.49.7.72zm22.95 142.51c-.2.11-.5.35-.58.3-.21-.15-.34-.43-.47-.68-.01-.02.19-.16.26-.22.28.21.54.4.8.6zm-7.3-148.12c-.21.07-.55.27-.62.2-.19-.18-.27-.48-.37-.74 0-.02.21-.13.29-.18.24.25.47.48.7.72zm-1.45 40.49c-.11-.23-.29-.46-.32-.7-.03-.21.1-.45.15-.67.15.21.3.41.44.6-.12.34-.2.56-.27.77zm9.81-18.67c-.26-.11-.55-.21-.72-.41-.07-.08.15-.39.25-.6.23.23.46.47.69.71-.07.1-.2.31-.22.3zm80.6-60.52c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28l-.69.72zm-32.65-7.97c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zM93.99 67.91c-.25-.16-.53-.32-.69-.54-.06-.08.16-.27.26-.41.22.26.43.51.66.78-.08.06-.2.18-.23.17zm.07 33.85c-.22.08-.55.27-.62.21-.19-.18-.27-.48-.37-.74 0-.02.21-.13.29-.18.24.25.47.48.7.71zm-4.08-.5c-.02-.11.15-.25.23-.38l.68.86c-.14.05-.28.11-.63.24-.1-.23-.24-.46-.29-.71zm6.36 31.36c-.26-.1-.56-.19-.74-.38-.07-.07.14-.4.23-.61.22.24.44.47.67.73-.04.06-.14.27-.16.26zm6.17-36.16c.11-.25.21-.54.41-.71.07-.06.4.15.61.24-.25.2-.5.41-.77.63-.05-.03-.26-.15-.25-.17zm-9.55 7.96c-.02-.11.15-.25.23-.38l.68.85c-.14.05-.29.11-.63.24-.1-.23-.24-.46-.29-.7zm-2.32 14.04c.31-.05.62-.15.93-.14.15 0 .3.21.45.32-.31.07-.61.15-1.21.29-.03-.09-.1-.28-.17-.47zm-10.46 13.53c-.02-.11.14-.26.22-.39l.7.84c-.14.06-.28.12-.62.26-.11-.23-.25-.46-.31-.71zm109.27-85.33c.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64.3-.78.35-1.09.53-1.28zM81.16 75.11c-.25-.12-.54-.23-.71-.44-.06-.08.17-.4.26-.61.2.25.41.51.63.79-.04.06-.16.26-.18.25zm17.36-14.83c-.02-.09.14-.03.22-.03l.62 1.13c-.13-.09-.27-.18-.59-.4-.09-.23-.22-.5-.26-.7zm1.84 58.05c-.02-.11.15-.25.23-.38l.69.83c-.14.06-.28.11-.62.24-.1-.22-.25-.45-.3-.69zm-19.33 60.86c-.07 0-.14-.2-.21-.31.22-.07.44-.17.66-.19.06 0 .15.2.27.38-.28.05-.5.13-.73.12zm81.93-121.47c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-49.15 3.85c-.09-.13-.25-.27-.24-.39.02-.22.15-.43.24-.64.09.13.17.26.3.45-.09.17-.19.37-.3.58zm70.75-22.25c0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46-.08-.27-.19-.49-.19-.71zM79.18 115.5c-.13 0-.26-.16-.38-.25.21-.08.43-.21.65-.23.12-.01.25.16.45.3-.27.08-.49.18-.71.18zm2.97.05c-.07 0-.13-.21-.19-.33.23-.05.45-.14.68-.15.06 0 .13.21.25.4-.28.03-.51.09-.73.07zm11.77 59.59c0 .13-.15.26-.23.4-.09-.21-.23-.41-.26-.63-.02-.12.14-.26.27-.47.09.27.21.48.22.7zm-12.8-61.16c-.23-.02-.45-.11-.67-.17.07-.11.13-.32.2-.32.22 0 .45.06.73.1-.12.19-.2.39-.26.39zm58.68-76.31c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-21.6 12.35c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-13.22 32.63c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.12.06 0 .13.21.23.4-.28.02-.51.07-.74.05zm-19.26 32.97c-.23-.02-.45-.11-.67-.17.07-.11.13-.32.2-.32.22 0 .45.06.73.1-.12.19-.2.39-.26.39zm-1.81-4.68c-.13 0-.26-.16-.38-.25.21-.08.43-.21.65-.22.12-.01.25.16.45.3-.27.07-.49.18-.71.18zm6.48 75.27c-.13.09-.26.27-.38.26-.22-.01-.44-.13-.65-.2.13-.09.25-.19.43-.32.18.08.38.17.59.26zm5.9-.09c-.23 0-.45-.07-.68-.12.06-.12.11-.32.18-.33.22-.03.45.02.74.05-.11.19-.17.4-.23.4zm-.97-9.14c-.07 0-.14-.2-.21-.31.22-.07.44-.16.66-.19.06 0 .15.19.27.38-.28.05-.5.12-.73.12zm74.13-134.02c-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19-.16.39-.22.53-.28.68zm15.11-6.37c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm-15.43 18.04c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zM87.17 81.34c-.15.1-.29.26-.46.3-.12.02-.27-.11-.41-.18.09-.18.17-.36.21-.43.38.19.52.25.66.32zm5.08 95.77c-.07 0-.14-.2-.21-.31.22-.07.44-.16.66-.19.06 0 .15.2.27.38-.28.05-.5.12-.73.12zm1.65-78.2c-.23-.02-.45-.12-.67-.18.07-.11.13-.31.21-.31.22 0 .45.06.73.11-.12.18-.21.39-.27.38zm104.53-52.02c.13-.09.27-.25.39-.24.22.02.43.15.64.24-.13.09-.26.17-.45.3-.17-.09-.37-.19-.58-.3zm-84.87-7.57c0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46-.08-.27-.19-.49-.19-.71zM98.3 176.77c-.07-.14-.21-.29-.18-.41.04-.17.19-.3.3-.46.07.14.13.27.32.65-.08.04-.26.12-.43.21zm-9.24-64.49c-.15.11-.29.27-.45.31-.12.03-.28-.11-.42-.17.08-.18.16-.36.2-.44.39.17.53.23.67.3zm.03 63.98c.09.13.26.26.26.38-.01.22-.13.43-.21.65-.09-.13-.19-.25-.32-.44.08-.18.17-.38.27-.59zm11.86-105.29c-.05-.08-.18-.18-.14-.23.05-.07.21-.09.33-.13.05.08.11.16.26.37-.08 0-.26 0-.44-.01zM92.2 179.88c.14-.07.29-.2.41-.18.17.04.31.19.46.3-.14.07-.28.13-.66.31-.04-.08-.13-.26-.21-.43zm-6.89-67.36c-.07 0-.13-.21-.19-.33.23-.05.45-.13.68-.14.06 0 .13.21.25.4-.28.03-.51.09-.73.07zm-2.03 68.12c-.13 0-.27-.14-.4-.22.21-.1.41-.24.63-.27.12-.02.27.14.47.26-.27.09-.48.21-.7.23zm30.29-132.17c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-9.34 170.38c.14-.07.28-.21.4-.19.17.03.32.18.48.27-.13.07-.27.14-.65.34-.04-.08-.14-.25-.23-.42zM82.04 112.12c.14-.06.31-.18.42-.15.16.05.29.22.44.33-.14.06-.28.11-.68.27-.03-.08-.11-.27-.18-.45zM93.8 89.71c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.13.06 0 .13.21.23.4-.28.03-.51.08-.74.05zm-4.41-8.24c.14-.05.31-.17.43-.13.16.05.29.22.43.34-.14.05-.29.1-.69.24-.03-.08-.1-.27-.17-.45zm8.12 103.19c.01.13-.14.27-.22.4-.1-.21-.24-.4-.27-.62-.02-.12.14-.26.26-.47.09.26.21.47.23.69zm65.77-130.74c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm42.97-5.57s.32-.01.32 0c.02.22.03.45 0 .67 0 .02-.22.02-.39.04.02-.27.03-.49.07-.71zm-.08 12.92c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zM92.49 85.02c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.12.06 0 .13.21.23.4-.28.03-.51.07-.74.05zm36.5-33.5c.21-.09.42-.22.64-.24.12-.01.26.15.39.24-.2.1-.41.21-.58.3-.19-.13-.32-.21-.45-.3zm.34-9.44c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm-30.05 63.04c-.05-.14-.18-.3-.14-.42.05-.16.22-.29.34-.43.05.14.11.28.26.67-.08.03-.27.1-.45.17zm-14.85-.38c-.23-.02-.45-.11-.67-.18.07-.11.13-.31.21-.32.22 0 .45.06.73.11-.12.19-.21.39-.27.38zm44.58-49.64c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm26.3.96c.14-.06.3-.19.42-.16.17.04.3.21.45.32-.14.06-.28.12-.68.28-.03-.08-.11-.26-.19-.44zm10.21.59c-.13.09-.27.25-.39.24-.22-.02-.43-.15-.64-.24.13-.09.26-.17.45-.3.17.09.37.19.58.3zm-86.41 48.64c.14-.05.31-.18.42-.15.16.05.29.22.43.34-.14.06-.29.11-.69.26-.03-.08-.1-.27-.17-.45zm77.68-47.59c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-53.56 140.18c-.23 0-.46-.07-.68-.11.06-.12.1-.32.17-.33.22-.03.45.02.74.04-.1.19-.17.4-.23.4zm-14.74 13.15c0 .07-.2.15-.3.22-.08-.22-.18-.43-.21-.66 0-.06.19-.15.37-.29.06.27.14.5.15.72zm9.01-.47c-.1-.2-.25-.4-.29-.61-.02-.12.13-.27.21-.4.12.19.24.38.34.55-.11.2-.19.33-.26.47zm36.37-151.59c.09.21.22.42.24.64.01.12-.15.26-.24.39-.1-.2-.21-.41-.3-.58.13-.19.21-.32.3-.45zM98.41 74.3c-.15.1-.3.26-.47.29-.12.02-.27-.12-.41-.18.09-.18.18-.35.22-.43.38.19.52.25.66.32zM98 207.2c-.21.1-.4.25-.62.29-.12.02-.27-.13-.41-.21.19-.12.39-.24.55-.34.2.11.34.18.47.26zm-16.41 1.3c.21-.1.4-.25.62-.29.12-.02.27.13.41.21-.19.12-.39.24-.55.34-.2-.11-.34-.19-.47-.26zm.55 3.32c-.07 0-.15-.2-.22-.31.22-.08.43-.18.66-.21.06 0 .15.19.29.37-.27.06-.5.14-.72.15zm3.22-108.92c.14-.05.31-.18.42-.14.16.05.29.22.43.34-.14.05-.29.11-.69.26-.03-.08-.1-.27-.17-.45zm3.8-18.31c.03-.23.12-.44.19-.66.11.07.31.14.31.21 0 .22-.07.45-.13.73-.18-.13-.39-.21-.38-.27zm7.57 119.63c0-.23.07-.45.11-.68.12.06.32.1.33.17.03.22-.01.45-.03.73-.2-.1-.41-.16-.41-.22zm38.76-149.79c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zM87.75 205.17c-.1-.12-.27-.25-.27-.37 0-.22.12-.44.19-.66.09.12.19.25.33.43-.07.18-.16.39-.25.6zm12.36-132.2c-.22.07-.43.19-.65.19-.12 0-.25-.17-.37-.26.21-.09.42-.18.6-.26.18.14.31.23.43.32zm30.74-29.34c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm-29.31 65.95c-.13.08-.27.24-.39.23-.22-.03-.42-.16-.64-.25.13-.08.26-.16.46-.28.17.09.37.2.57.31zm2.14-.03c.14-.05.31-.18.42-.14.16.05.29.21.44.33-.14.05-.28.11-.68.26-.03-.08-.11-.26-.18-.44zm77.64-48.54c-.13 0-.26-.16-.39-.24.21-.09.42-.22.64-.24.12-.01.26.15.46.29-.27.08-.49.19-.71.19zm-59.81-5.12c.09.13.25.27.24.39-.02.22-.15.43-.24.64-.09-.13-.17-.26-.3-.45.09-.17.19-.37.3-.58zm63.36 1.62c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm-17.3-.87c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm-47.84 3.64c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zM96.62 188.82c-.14.12-.27.29-.43.34-.12.04-.28-.08-.43-.13.07-.18.14-.37.17-.45.4.14.55.19.69.24zM181.8 58.39c-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19-.16.39-.22.53-.28.68zm-43.54-15.62c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm-35.6 28.99c-.13-.02-.25-.1-.38-.16.21 0 .42 0 .64.02.12.02.25.11.45.19-.27-.02-.49-.01-.71-.05zM89.25 87.95c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.13.06 0 .13.21.23.4-.28.03-.51.08-.74.05zm3.08.15c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.12.06 0 .13.21.23.4-.28.03-.51.08-.74.05zm9.94.16c-.15.1-.29.26-.46.29-.12.03-.27-.11-.41-.18.09-.18.17-.35.21-.43.38.18.52.24.66.31zM87.83 198.97c-.23 0-.46-.07-.68-.11.06-.12.1-.33.17-.33.22-.03.45.02.74.04-.1.2-.17.41-.23.41zm-3.57.27c-.1-.21-.24-.41-.28-.63-.02-.12.14-.27.21-.41.12.2.24.39.34.56-.11.2-.19.34-.27.47zm11.12-92.93c-.15.11-.29.27-.45.31-.12.03-.28-.11-.42-.17.08-.18.17-.36.2-.44.39.17.53.24.67.3zm-9.9 108.37c-.07 0-.15-.2-.22-.31.22-.08.43-.18.66-.22.06 0 .15.19.29.37-.27.06-.5.14-.72.15zM97.9 106.7c-.13 0-.26-.16-.38-.25.21-.08.43-.2.65-.22.12 0 .25.16.45.3-.27.07-.49.17-.71.17zm-10.27 89.2c-.23 0-.46-.07-.68-.11.06-.12.1-.33.17-.33.22-.03.45.02.74.04-.1.2-.17.41-.23.41zm11.9-88c0 .13-.16.25-.25.38-.08-.21-.21-.42-.23-.64-.01-.12.16-.25.3-.45.07.27.18.49.18.71zm24.85-51.71c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zM90 215.52c.14-.07.29-.22.4-.19.17.03.32.18.47.28-.14.07-.27.14-.65.34-.04-.08-.13-.25-.23-.43zm13.21-128.41c-.07 0-.12-.21-.18-.33.23-.05.45-.12.68-.12.06 0 .13.21.23.4-.28.03-.51.07-.74.05zm19.71-23.3s.32-.01.32 0c.02.22.03.45 0 .67 0 .02-.22.02-.39.04.02-.27.03-.49.07-.71zm-28.47 45.53c.14-.05.31-.18.42-.15.16.05.29.21.44.33-.14.05-.28.11-.68.26-.03-.08-.11-.26-.18-.45zm3.27.4c-.07 0-.13-.21-.19-.32.23-.05.45-.13.68-.14.06 0 .13.2.25.39-.28.03-.51.09-.73.07zm6.54-42.62c.14.09.29.17.4.27.16.14.28.3.41.44-.14-.09-.27-.18-.65-.42l-.17-.29zm-9.24 85.37c-.23-.01-.45-.09-.68-.14.06-.11.12-.32.19-.32.22-.02.45.04.73.07-.11.19-.18.4-.24.39zm-6.85-.18c.14-.06.3-.2.42-.17.17.04.3.2.45.31-.14.06-.28.12-.67.29-.04-.08-.12-.26-.2-.44zm-9.43-24.7c.14-.06.3-.19.42-.16.17.05.3.21.44.33-.14.06-.28.12-.68.28-.03-.08-.11-.27-.19-.45zm18.83.43c-.13 0-.26-.15-.39-.24.21-.08.42-.21.64-.23.12-.01.26.15.46.29-.27.08-.49.18-.71.19zM89.7 38.36c-.26-.15-.59-.28-.76-.44-.12-.12-.03-.28-.03-.42.32.08.65.15.79.19v.68zm104.46 12.99c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm-91.3 8.04c-.09-.13-.08-.26-.11-.39.19.21.4.42.55.64.08.12.07.26.13.46-.22-.27-.42-.49-.57-.71zm40.37-3.4c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zm-41.73 9.05c-.08-.12-.23-.32-.21-.37.03-.09.16-.08.25-.11.08.13.15.25.26.44-.09.01-.2.02-.3.04zM90.73 229.48c-.2.11-.4.26-.61.3-.12.03-.27-.13-.41-.2.19-.12.38-.25.55-.36.2.11.34.18.48.25zm-2.43-79.93c-.07 0-.13-.21-.2-.32.22-.06.44-.15.67-.17.06 0 .14.2.26.39-.28.04-.51.11-.73.1zm10.69 79.01c.13-.07.28-.22.4-.2.17.03.32.18.48.27-.13.07-.27.14-.64.35-.04-.08-.14-.25-.23-.42zm-15.38-98.6c-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19-.17.39-.23.53-.29.68zm15.37-.39c-.07 0-.13-.21-.19-.32.22-.06.45-.14.67-.15.06 0 .13.2.25.39-.28.04-.51.1-.73.08zM160.2 42.1c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zM79.73 159.03c-.23 0-.45-.09-.68-.14.06-.12.12-.32.19-.33.22-.02.45.04.73.07-.11.19-.18.4-.24.4zm61.95-107.67c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zM98.45 64.24c.08.13.23.32.21.38-.03.11-.17.16-.26.23-.08-.13-.15-.26-.26-.45.09-.05.2-.1.31-.16zm96.93-4.98c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zM99.26 45.38c-.03-.07.19-.13.3-.19.17.22.36.45.48.67.03.06-.18.14-.34.25-.17-.28-.35-.51-.43-.73zm73.05 9.15s.32-.01.32 0c.02.22.03.45 0 .67 0 .02-.22.02-.39.04.02-.27.03-.49.07-.71zm.16-11.5c-.09-.21-.22-.42-.24-.64-.01-.12.15-.26.24-.39.1.2.21.41.3.58-.13.19-.21.32-.3.45zm0-6.17c-.09-.21-.22-.42-.24-.64-.01-.12.15-.26.24-.39.1.2.21.41.3.58-.13.19-.21.32-.3.45zM147.54 64c0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46-.08-.27-.19-.49-.19-.71zM100.2 237.97c-.07 0-.15-.19-.23-.3.22-.08.43-.19.65-.23.06-.01.16.18.3.36-.27.07-.49.16-.72.17zm87.45-192.12c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm-90.78-1.53c-.1-.23-.11-.45-.15-.67.17.06.46.12.5.19.13.22.17.45.26.73-.29-.12-.58-.19-.61-.25zm-3.4 48.12c.14-.05.31-.17.42-.14.16.05.29.22.43.34-.14.05-.29.1-.68.25-.03-.08-.1-.27-.17-.45zm5.25 33.84c.21-.08.42-.21.64-.23.12-.01.26.15.39.24-.2.1-.41.2-.58.29-.19-.13-.32-.21-.45-.3zM79.6 96.83c-.07 0-.12-.22-.18-.33.23-.05.45-.13.68-.13.06 0 .13.21.24.4-.28.03-.51.08-.74.06zm14.7 36.31c.08.13.25.27.24.38-.03.22-.16.42-.24.64-.09-.13-.17-.26-.3-.45.09-.17.2-.37.3-.57zm-8.21-90.33c-.17-.23-.25-.45-.36-.67.2.06.52.12.58.19.2.22.31.45.49.73-.34-.12-.67-.19-.72-.25zm4.79 5.67c-.06-.07.11-.13.18-.19.25.22.52.44.72.67.05.06-.1.14-.19.25-.27-.28-.53-.51-.71-.73zm2.6 2.98s.29-.01.3 0c.2.22.4.45.56.67.02.02-.18.02-.32.04-.21-.27-.39-.49-.54-.71zm-4.67 82.36c-.15.11-.28.28-.45.32-.12.03-.28-.1-.42-.16.08-.18.16-.36.19-.44.39.16.53.22.67.28zm8.59.31c-.07 0-.13-.21-.19-.32.22-.06.45-.14.67-.16.06 0 .13.2.25.39-.28.04-.51.1-.73.09zM85.79 93.89v-.32c.22-.01.45 0 .67.03.02 0 .02.22.03.4-.27-.03-.49-.05-.71-.1zm3-.12c.14-.05.31-.18.42-.14.16.05.29.22.43.34-.14.05-.29.11-.69.25-.03-.08-.1-.27-.17-.45zm6.26.5v-.32c.22 0 .45 0 .67.03.02 0 .02.22.03.39-.27-.03-.49-.05-.71-.1zm-2.01 44.2c0 .07-.21.13-.32.19-.06-.22-.15-.44-.16-.67 0-.06.2-.14.39-.25.04.28.11.5.09.73zm9.63-75.45c-.18-.15-.38-.28-.55-.45-.12-.12-.21-.28-.31-.42.16.08.31.16.38.19.28.39.38.53.47.68zm-1.7-1c-.2-.16-.4-.29-.61-.49-.11-.11-.23-.33-.35-.5.19.14.39.28.55.4.17.25.29.42.41.59zm60.46-2.28c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zM83.12 43.83c-.09-.3-.23-.63-.25-.89-.02-.19.12-.27.19-.4.16.28.32.56.39.68l-.33.61zm107.64-4.15c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zM88.21 77.01s0-.32.02-.32c.23 0 .45 0 .67.04.02 0 0 .22.01.4-.27-.04-.49-.06-.71-.12zm5.95-19.42c.14.07.3.1.4.23.15.17.27.41.4.62-.14-.07-.27-.14-.65-.34-.03-.09-.09-.3-.15-.51zm-6.61-18.38c-.14-.23-.17-.45-.25-.67.21.06.55.12.61.19.17.22.24.45.38.73-.35-.12-.71-.19-.74-.25zm15.1 108.58c-.23-.01-.45-.09-.67-.15.06-.11.12-.31.19-.32.22-.02.45.04.73.08-.12.19-.19.39-.25.39zm-2.9-.27c-.15.11-.28.28-.44.32-.12.03-.28-.09-.42-.15.08-.18.15-.36.19-.44.39.16.54.21.68.27zm44.71-83.61c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-53.21-8.89c.14.06.3.08.41.21.15.18.27.44.4.66-.14-.06-.27-.13-.66-.3-.03-.1-.09-.34-.15-.57zm5.27-3.65c.15.14.39.3.44.42.07.17.02.3.02.45-.15-.14-.31-.28-.74-.68.05-.03.16-.11.28-.19zm47.94 2.76c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zm-61.81-6.41s.02-.43.03-.42c.21.16.43.34.63.56.02.02 0 .3 0 .54-.25-.25-.46-.44-.66-.68zm8.86 83.12c-.21.08-.42.21-.64.24-.12.01-.26-.15-.39-.24.2-.1.41-.21.58-.3.19.13.32.21.45.3zm2.57 0c.21-.08.42-.21.64-.24.12-.01.26.15.39.24-.2.1-.41.21-.58.29-.19-.13-.32-.21-.45-.3zm1.89 13.99c-.07 0-.13-.21-.2-.32.22-.06.45-.15.67-.16.06 0 .14.2.26.38-.28.04-.51.11-.73.1zm48.49-92.8c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zm-49.9-1.35c-.22-.15-.48-.28-.66-.45-.12-.12-.12-.28-.17-.42.24.08.48.16.59.19.14.39.19.53.24.68zm-7.82 81.92c-.13 0-.26-.16-.39-.24.21-.09.42-.21.64-.24.12-.01.26.15.46.29-.27.08-.49.19-.71.19zm105.88-95.14c.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68.08-.03.26-.11.44-.19zM92.61 132.29c.14-.06.3-.19.42-.16.17.04.3.21.44.32-.14.06-.28.12-.68.28-.03-.08-.11-.26-.19-.44zm7.03 102.36c.13-.07.28-.22.4-.2.17.03.32.17.48.27-.13.07-.27.15-.64.35-.04-.08-.14-.25-.24-.42zm-6.69-114.36c-.11-.15-.27-.28-.31-.45-.03-.12.11-.27.17-.41.18.08.36.16.44.2-.17.39-.23.53-.29.67zm12.5-83.49c-.2-.15-.48-.28-.58-.45-.07-.12.1-.28.17-.42.3.08.6.16.74.19-.19.39-.26.53-.32.68zm-4.29 130.78c-.07 0-.14-.2-.21-.31.22-.07.44-.16.67-.18.06 0 .14.2.27.38-.28.05-.5.12-.73.11zm-11.68.11c-.14.12-.27.29-.43.34-.12.04-.28-.09-.43-.14.07-.18.14-.37.17-.45.4.15.54.2.69.26zm10.37-68.92c0 .13-.16.25-.25.38-.08-.21-.2-.42-.22-.64 0-.12.16-.25.3-.44.07.27.17.49.17.71zm2.88-29.48c-.07-.03-.12-.14-.18-.21.22.08.44.14.66.24.06.03.13.14.24.26-.27-.11-.5-.18-.72-.28zm68.2-12.35c-.09-.21-.22-.42-.24-.64-.01-.12.15-.26.24-.39.1.2.21.41.3.58-.13.19-.21.32-.3.45zm-78.96 183.2c.13-.07.28-.22.4-.2.17.03.32.17.48.27-.13.07-.27.15-.64.36-.04-.08-.14-.25-.24-.42zm8.33-74.29c-.13.09-.26.26-.38.25-.22-.02-.43-.14-.65-.21.13-.09.25-.18.44-.31.18.08.38.18.59.27zm-13.08.7c-.07 0-.14-.2-.21-.31.22-.07.44-.16.67-.18.06 0 .14.2.27.38-.28.05-.5.12-.73.11zm16.14-85.83c.14-.05.31-.17.43-.13.16.05.29.22.43.34-.14.05-.29.1-.69.24-.03-.08-.1-.26-.17-.45zm-22.57 85.79c0-.23.08-.46.13-.68.12.06.32.11.33.18.02.22-.03.46-.06.74-.19-.11-.4-.18-.4-.24zm11.01-1.66c-.07 0-.14-.2-.21-.31.22-.07.44-.16.67-.18.06 0 .14.2.27.38-.28.05-.5.12-.73.11zm-3.29-.21c.14-.06.29-.2.41-.17.17.04.31.2.46.31-.14.06-.28.13-.66.3-.04-.08-.12-.26-.21-.44zm-8.57.61c-.23 0-.45-.09-.68-.14.06-.12.11-.32.18-.33.22-.02.45.03.74.06-.11.19-.18.41-.24.4zm117-113.69c0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25-.04-.28-.1-.51-.09-.73zM85.92 121.57c-.13.08-.27.25-.39.24-.22-.03-.43-.16-.64-.25.13-.08.26-.17.45-.29.17.09.37.2.58.31zm21.98-60.74c-.02-.07.07-.13.11-.19.1.22.21.45.29.67.02.06-.06.14-.12.25-.11-.28-.21-.51-.28-.73zm-8.65 101.94c.14-.06.29-.2.41-.17.17.04.31.2.46.3-.14.06-.28.12-.66.3-.04-.08-.12-.26-.21-.43zm1.96-94.92c-.05-.09-.17-.24-.14-.28.05-.06.21-.03.33-.04.05.09.1.19.25.45a8.84 8.84 0 01-.44-.14zm-11.43 7.49c.14-.05.31-.17.43-.13.16.05.28.23.42.35-.14.05-.29.1-.69.24-.03-.08-.09-.27-.16-.45zm10.93 40.58c-.07 0-.13-.21-.19-.32.23-.05.45-.13.68-.14.06 0 .13.2.25.39-.28.03-.51.09-.73.07zm-5.47 58.02c-.07 0-.14-.2-.21-.31.22-.07.44-.16.67-.19.06 0 .14.2.27.38-.28.05-.5.12-.73.12zM90.78 66.59c0 .12-.17.19-.26.28-.07-.22-.19-.46-.2-.67 0-.12.17-.19.31-.33.06.28.15.51.15.72zm20.4-5.75c0-.07.1-.13.16-.19.04.22.1.45.11.67 0 .06-.1.14-.19.25-.04-.28-.08-.51-.09-.73zM89.61 91.08c-.23-.03-.44-.12-.66-.19.07-.11.14-.31.21-.31.22 0 .45.07.73.12-.13.18-.21.39-.27.38zm-8.99 26.02c-.07 0-.13-.21-.19-.33.23-.06.45-.14.68-.15.06 0 .13.21.25.4-.28.04-.51.09-.73.08zm26.56 123.19c-.23.01-.46-.05-.69-.08.05-.12.09-.32.16-.34.22-.04.45 0 .74 0-.1.2-.15.41-.21.41zm71.21-185.18c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zM87.43 172.7c-.07 0-.14-.2-.21-.31.22-.07.44-.16.67-.19.06 0 .14.2.27.38-.28.05-.5.12-.73.12zm14.68-81.41c-.15.1-.29.26-.46.3-.12.03-.27-.11-.41-.17.09-.18.17-.35.21-.43.38.18.52.24.66.31zm76.28-33.1c.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73-.19-.12-.4-.19-.39-.25zM94.88 170.54c.14-.06.29-.2.41-.17.17.04.31.19.46.3-.14.06-.28.13-.66.31-.04-.08-.12-.26-.21-.43zm-3.16.21c.21-.09.41-.23.63-.26.12-.02.26.14.4.22-.2.11-.4.22-.57.32-.2-.12-.33-.2-.46-.28zm-3.55-52.09v-.32c.22-.02.45-.02.67.01.02 0 .02.22.03.39-.27-.03-.49-.04-.71-.08zm3.28 123.41c-.13.02-.28-.12-.41-.2.2-.11.39-.26.61-.31.12-.03.27.12.49.23-.26.11-.47.24-.68.27zm10.46-172.56c-.13-.01-.27.01-.39-.04-.21-.09-.41-.23-.62-.35.13 0 .26.02.45.03.17.1.36.23.56.35zm84.46-13.11c-.07 0-.13-.21-.19-.32.22-.06.45-.14.67-.16.06 0 .14.2.25.39-.28.04-.51.1-.73.09zM94.15 169.04c-.14.12-.27.29-.43.34-.12.04-.28-.09-.43-.14.07-.18.14-.37.17-.45.4.15.54.2.69.25zm13.5-106.68c-.03-.07.05-.13.08-.19.11.22.23.45.32.67.02.06-.04.14-.08.25-.12-.28-.24-.51-.32-.73zm-22.17 99.09c-.07 0-.13-.21-.2-.32.22-.07.44-.16.67-.18.06 0 .14.2.26.38-.28.05-.51.12-.73.11zm4.33 65.26c-.13.02-.27-.13-.41-.2.2-.11.4-.26.61-.3.12-.02.27.13.49.24-.26.11-.47.24-.69.26zm6.45-66.6c-.07 0-.13-.2-.2-.31.22-.06.44-.15.67-.18.06 0 .14.2.26.38-.28.05-.51.11-.73.11zm3.29 65.32c-.14.13-.25.3-.41.36-.11.04-.29-.07-.43-.11.06-.19.12-.37.15-.46.41.12.55.17.7.21zm80.63-174.68c-.09-.13-.25-.27-.24-.39.02-.22.15-.43.24-.64.09.13.17.26.3.45-.09.17-.19.37-.3.58zM91.71 158.7c-.13 0-.26-.15-.4-.23.21-.09.42-.23.63-.26.12-.02.26.15.47.27-.27.09-.49.2-.71.21zm-5.62-.17c-.14.12-.27.28-.44.33-.12.03-.28-.09-.42-.15.07-.18.15-.37.18-.45.4.15.54.21.68.26zm-3.95.11c.14-.06.3-.2.42-.17.17.04.3.2.45.31-.14.06-.28.13-.67.3-.04-.08-.12-.26-.2-.44zM82.06 56c-.07-.04-.1-.35-.15-.53.22.05.44.07.66.18.06.03.11.34.2.65-.27-.11-.5-.15-.71-.3zm18.23-12.67c-.02-.07.22-.13.34-.19.16.22.35.45.45.67.03.06-.2.14-.39.25-.16-.28-.32-.51-.39-.73zm-7.05 214.1c-.07 0-.16-.19-.23-.29.21-.09.42-.2.65-.25.06-.01.16.18.3.36-.27.08-.49.17-.72.18zm-.67-37.26s-.12-.09-.18-.14c.11-.07.21-.15.33-.19.04-.01.12.09.18.14-.11.07-.21.15-.33.19zm-3.63-2.84s-.09.12-.15.18c-.07-.11-.15-.21-.19-.33-.01-.04.09-.12.15-.18.07.11.15.21.19.33zM209.76 36.09c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18-.33-.18zm-74.59 27.79c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18-.18-.18zm17.07-7.81s.1-.11.16-.17c.06.11.13.22.16.35 0 .04-.1.11-.16.17-.06-.11-.13-.22-.16-.35zm-5.75 9.35c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18.18.18zM88.5 213.91c.06.05.18.11.17.16-.02.12-.08.24-.13.36-.06-.05-.12-.1-.2-.17.05-.11.1-.23.15-.35zm8.99-.51c.05-.06.11-.18.16-.17.12.02.24.08.36.13-.05.06-.1.12-.17.2-.11-.05-.23-.1-.35-.15zM141.6 48.7c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33-.18.18zm-40.93 192.15s-.09.12-.14.19c-.07-.11-.16-.21-.2-.32-.01-.04.09-.12.14-.18.07.11.16.21.2.32zm-10.76-28.61c.06.05.18.11.17.16-.02.12-.08.24-.13.36-.06-.05-.12-.1-.2-.17.05-.11.1-.23.15-.35zm1.16 12.8c-.07-.11-.16-.21-.19-.33-.01-.04.09-.12.14-.18.07.11.14.21.21.31-.06.08-.11.14-.16.2zM160.03 48.6s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zm-7.71 20.06s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zm-51.69 159.03c-.07-.11-.15-.21-.19-.32-.01-.04.09-.12.14-.18.07.1.14.21.21.31-.06.07-.11.14-.16.2zm-7.42-1.83c.06.05.18.11.18.15-.01.12-.08.24-.13.36-.06-.05-.12-.1-.2-.16.05-.11.1-.23.15-.35zm48.3-171.09s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zM85.1 124.88c-.06-.12-.13-.23-.16-.35 0-.04.1-.11.16-.17l.18.33c-.07.07-.13.12-.18.18zm14.67-1.64c-.11.06-.23.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18.18.18zm-3.6-.04c-.11.06-.23.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18.18.18zm-1.79-1.29c-.06-.11-.13-.22-.16-.34 0-.04.1-.11.16-.17l.18.33c-.07.07-.13.12-.18.18zm-3.6-.04c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33c-.07.07-.13.12-.18.18zm3.64-3.02c-.05-.11-.13-.22-.15-.34 0-.04.11-.11.16-.17l.18.33c-.07.07-.13.12-.19.18zm-7.89-54.36c.05.14.11.29.13.43 0 .05-.11.09-.17.13-.05-.14-.1-.29-.15-.42.07-.05.13-.1.19-.14zm6.38 52.8c-.05-.11-.13-.22-.15-.35 0-.04.11-.11.16-.17l.18.33c-.07.07-.13.12-.19.18zm6.84-47.74s-.11.03-.16.04c-.05-.08-.12-.16-.15-.23 0-.03.11-.03.16-.04.05.08.12.16.15.23zm-5.25 45.73c.06.06.17.13.16.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.18.06-.11.13-.22.19-.33zm8.04-44.83s-.11-.08-.16-.12c.11.01.22.02.34.04.04 0 .11.08.16.12-.11-.01-.22-.02-.34-.04zm-2.61 43.67c-.12.05-.23.13-.35.15-.04 0-.11-.1-.17-.16.11-.06.23-.12.34-.17.07.07.12.13.18.18zm-10.03.05c-.05-.12-.13-.23-.15-.35 0-.04.11-.11.16-.17.06.11.12.23.18.33-.07.07-.13.12-.19.18zm-3.17-.16s-.11-.11-.17-.16c.12-.05.23-.13.35-.15.04 0 .11.11.17.16-.12.05-.23.13-.35.15zm.16-3.5c.06.06.17.13.16.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.11.13-.22.19-.33zm-6.17-.15c.06.06.17.13.16.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.11.13-.22.19-.33zm2.9 37.74c-.06-.11-.14-.22-.16-.34 0-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.19zm1.69-1.74s-.1.11-.16.17c-.06-.11-.14-.22-.16-.34 0-.04.1-.11.16-.17.06.11.14.22.16.34zm1.18-105.59c.11-.06.21-.13.35-.16.05 0 .23.1.36.16-.11.06-.21.12-.32.18-.15-.07-.27-.12-.39-.18zm-1.37 102.67c-.06-.11-.14-.22-.16-.34 0-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.19zm10.79-1.64c-.06-.11-.14-.22-.16-.34 0-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.18zm-10.66-1.62s-.1.11-.16.17c-.06-.11-.14-.22-.16-.34 0-.04.1-.11.16-.17.06.11.14.22.16.34zm13.82-80.92c-.02-.06-.08-.17-.04-.16.1.03.23.1.35.16.02.06.03.11.05.18l-.36-.18zm-4.75 77.45c.06.06.17.13.16.17-.03.12-.1.23-.16.34-.06-.06-.12-.11-.18-.18l.18-.33zm1.28-1.28c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18-.33-.18zm95.13-86.99c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18-.33-.18zm.26 12.09c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18.18-.33zm-112.2 73.03s-.11-.1-.17-.16c.11-.06.23-.13.35-.16.04 0 .11.1.17.16-.11.06-.23.14-.35.16zm20.68-1.43c.06.11.13.22.16.34 0 .04-.1.11-.16.17l-.18-.33c.07-.07.13-.12.18-.18zm-1.89-1.19s-.1.11-.16.17c-.06-.11-.13-.22-.16-.34 0-.04.1-.11.16-.17.06.11.13.22.16.34zm-1.44-1.11c-.11.06-.23.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18.18.18zm-3.43-.36s-.11-.1-.17-.16c.11-.06.23-.13.35-.16.04 0 .11.1.17.16-.11.06-.23.13-.35.16zm-7.52-52.54c-.05-.12-.12-.23-.14-.36 0-.04.11-.11.17-.16.05.12.11.23.16.34-.07.06-.13.12-.19.17zm5.28 18.29c.05.06.17.13.15.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.1.13-.21.19-.32zm16.29-17c-.05-.06-.16-.13-.15-.17.03-.12.12-.22.18-.33.05.06.11.12.17.19-.07.1-.14.21-.2.31zm-5.46 16.43c-.05-.11-.13-.23-.15-.35 0-.04.11-.11.17-.16.06.11.12.23.17.33-.07.06-.13.12-.19.17zM80.32 81.32c-.05-.12-.12-.23-.14-.36 0-.04.11-.11.17-.16.06.12.11.23.17.34-.07.07-.13.12-.19.17zm19.67 8.19c.05.06.16.13.15.17-.03.12-.12.22-.18.33-.05-.06-.11-.12-.17-.19.07-.1.13-.21.2-.32zm-1.01-7.34s-.11.1-.17.16c-.05-.12-.12-.23-.14-.35 0-.04.11-.1.17-.16.05.12.12.23.14.35zm1.16 4.3c.05.06.16.13.15.17-.03.12-.12.22-.18.33-.05-.06-.11-.12-.17-.19.06-.1.13-.21.2-.32zm-6.17-.31c.05.06.16.13.15.18-.03.12-.12.22-.18.33-.05-.06-.11-.12-.17-.19.07-.1.13-.21.2-.32zm-2.84.11c-.12.05-.23.12-.35.14-.04 0-.11-.11-.16-.17.11-.06.23-.11.34-.17.07.07.12.13.17.19zm2.73-2.93c.06-.05.14-.16.18-.15.12.03.23.12.34.18-.06.05-.12.11-.19.17-.1-.06-.21-.13-.32-.2zm3.6.19c-.12.05-.23.12-.35.14-.04 0-.11-.11-.16-.17.11-.06.23-.11.34-.16.07.07.12.13.17.19zm1.19 1.85c-.05-.06-.16-.13-.15-.18.03-.12.12-.22.18-.33.05.06.11.12.17.19-.06.1-.13.21-.2.32zm-3.08-.16c-.05-.06-.16-.13-.15-.18.03-.12.12-.22.18-.33.05.06.11.12.17.19-.06.1-.13.21-.2.32zm5.24-1.76c.05.06.16.13.15.18-.03.12-.12.22-.18.33-.05-.06-.11-.12-.17-.19.06-.1.13-.21.2-.32zm2.54.64c-.05-.12-.12-.23-.14-.35 0-.04.11-.1.17-.16.06.11.11.23.17.34-.07.06-.13.12-.19.17zm-14.37 24.93c.06.06.17.13.16.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.11.13-.22.19-.33zm1.06-1.51c.05.12.13.23.15.35 0 .04-.11.11-.16.16-.06-.11-.12-.23-.18-.34.07-.07.13-.12.19-.18zm10.73-.81s-.11-.11-.17-.16c.12-.05.23-.13.35-.15.04 0 .11.11.16.16-.12.05-.23.13-.35.15zm-11.73-.75c.06.06.17.13.15.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.11.13-.22.19-.33zm1.08-1.51c.05.12.13.23.15.35 0 .04-.11.11-.17.16-.06-.11-.12-.23-.17-.34.07-.07.13-.12.19-.18zm-3.09-.09c.06.06.17.13.15.17-.03.12-.11.23-.17.34-.06-.06-.11-.12-.18-.19.06-.11.13-.22.2-.33zm10.84-.69c-.06-.06-.17-.13-.15-.17.03-.12.11-.22.17-.34.06.06.11.12.18.19-.06.1-.13.21-.19.32zm-3.33-.36c.06-.05.13-.16.17-.15.12.03.23.11.34.17-.06.05-.12.11-.19.18-.11-.06-.22-.13-.32-.19zm-6.01-.03s-.11-.11-.16-.17c.12-.05.23-.13.35-.15.04 0 .11.11.16.17-.12.05-.23.13-.35.15zm10.96-1.59c.05.11.13.23.15.35 0 .04-.11.11-.17.16-.06-.11-.12-.22-.17-.33.07-.07.13-.12.19-.17zm-3.1.4c-.05-.12-.13-.23-.15-.35 0-.04.11-.11.17-.16.06.11.12.23.17.33-.07.07-.13.12-.19.17zm4.43-1.63c.06-.05.13-.16.17-.15.12.03.23.11.34.17-.06.05-.12.11-.19.17-.11-.06-.22-.13-.32-.19zm-15.14-1.31c.05.12.13.23.15.35 0 .04-.11.11-.17.16-.06-.11-.12-.23-.17-.34.07-.07.13-.12.19-.18zm94.41-39.74s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zm-78.91 38.27c-.05-.11-.13-.23-.15-.35 0-.04.11-.11.17-.16.06.11.12.22.17.33-.07.07-.13.12-.19.17zm-4.81 97.65c-.06-.11-.15-.21-.18-.33-.01-.04.1-.12.15-.18.07.11.14.21.2.32-.06.07-.12.13-.17.19zm-12.35.3c.06.05.18.12.17.16-.02.12-.09.24-.14.36-.06-.05-.12-.11-.2-.17.05-.11.11-.23.16-.34zm40.6-142.3c-.06-.06-.17-.13-.16-.17.03-.12.1-.23.16-.35l.18.18-.18.33zM88.81 194.02c-.05.06-.11.18-.16.17-.12-.02-.24-.09-.36-.14.05-.06.11-.12.17-.19.11.05.23.11.34.16zm-3.63-.28c.05-.06.11-.18.16-.17.12.02.24.09.36.14-.05.06-.11.12-.17.19-.11-.05-.23-.11-.34-.16zm10.95-1.98c.06.05.18.11.17.16-.02.12-.09.24-.14.35-.06-.05-.12-.11-.2-.17.05-.11.11-.22.16-.34zm-9.24.58c.06.05.18.12.17.16-.02.12-.09.24-.14.36-.06-.05-.12-.11-.2-.17.05-.11.11-.23.16-.34zm1.71-1.39c-.05.06-.11.18-.16.17-.12-.02-.24-.09-.36-.14.05-.06.11-.12.17-.19.11.05.23.11.34.16zm-1.87-1.18c-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18.07.11.14.22.2.32-.07.07-.12.13-.17.19zm7.62-1.99c-.06-.11-.15-.21-.18-.33-.01-.04.1-.12.15-.18.07.11.14.21.2.32-.07.07-.12.13-.17.19zm-6.16.36c-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18.07.11.14.22.2.32-.06.07-.12.13-.17.19zm30.17-128.72s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zm15.26-6.34c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18-.18-.18zm74.59-3.1c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18.33.18zM83.27 207.08c.06.05.18.11.17.16-.02.12-.08.24-.13.36-.06-.05-.12-.11-.2-.17.05-.11.1-.23.15-.35zm6.11-.99c.06.05.18.11.17.16-.02.12-.08.24-.13.36-.06-.05-.12-.11-.2-.17.05-.11.1-.23.16-.34zM207.7 59.24c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18-.33-.18zM90.59 201.37c.06.05.18.11.17.16-.02.12-.09.24-.14.36-.06-.05-.12-.11-.19-.17.05-.11.11-.23.16-.34zM205.22 40.63s.1-.11.16-.17c.06.11.13.22.16.35 0 .04-.1.11-.16.17-.06-.11-.13-.22-.16-.35zM96.54 197.86c.06.05.18.11.17.16-.02.12-.09.24-.14.35-.06-.05-.12-.11-.19-.17.05-.11.11-.23.16-.34zm31.42-144.79c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18.33.18zm-42.27 144.5c-.06-.11-.15-.22-.18-.33-.01-.04.1-.12.15-.18.07.11.14.22.21.32-.06.07-.12.13-.17.2zM204.78 47.05s-.11-.1-.17-.16c.11-.06.22-.13.35-.16.04 0 .11.1.17.16-.11.06-.22.13-.35.16zM126 54.53s.1-.11.16-.17c.06.11.13.22.16.35 0 .04-.1.11-.16.17-.06-.11-.13-.22-.16-.35zM93.66 163.16l-.18-.15c.11-.06.22-.14.34-.17.04-.01.12.1.18.15-.11.06-.22.14-.34.17zm-3.51.21c-.06-.11-.14-.22-.17-.34-.01-.04.1-.11.15-.17.07.11.13.22.2.32-.07.07-.12.13-.18.19zm11.5-116.47c.11-.06.2-.13.33-.16.04 0 .16.1.25.16l-.3.18c-.1-.07-.19-.13-.27-.18zm-8 112.78c.06.06.17.12.16.16-.02.12-.1.23-.15.35-.06-.06-.12-.11-.19-.18l.18-.33zm-3.59.61c-.06-.11-.14-.22-.17-.34-.01-.04.1-.11.16-.17.06.11.13.22.19.32-.07.07-.12.13-.18.19zM195.35 49.46c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18-.18-.18zM80.47 157.2c.06-.06.12-.17.17-.17.12.02.23.1.35.15-.06.06-.11.12-.18.19-.11-.06-.22-.12-.34-.18zm14.02-1.72s-.11-.1-.17-.16c.11-.06.22-.14.34-.17.04-.01.11.1.17.16-.11.06-.22.14-.34.17zm-8.17-1.25c-.06-.11-.14-.22-.17-.34-.01-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.19zm16.47-96.78c.1.11.22.22.3.35.03.04 0 .11 0 .17-.11-.11-.21-.22-.31-.33 0-.07.01-.13.02-.18zm-6.52 93.25c-.11.06-.22.14-.34.17-.04.01-.11-.1-.17-.16.11-.06.22-.13.33-.19.07.07.13.12.19.18zm-6.42.38c-.06-.11-.14-.22-.17-.34-.01-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.19zm4.59-1.62c-.06-.11-.14-.22-.17-.34-.01-.04.1-.11.16-.17.06.11.13.22.19.33-.07.07-.12.13-.18.18zM94.4 48.62s-.19-.1-.29-.16c.08-.06.14-.13.25-.16.04 0 .19.1.29.16-.08.06-.14.13-.25.16zm1.55 98.78c.06.06.17.12.16.16-.03.12-.1.23-.16.34-.06-.06-.12-.11-.18-.18l.18-.33zm20.69-86.6c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18-.33-.18zM89.45 182.92c.06.11.15.22.18.34.01.04-.1.12-.15.18-.07-.11-.14-.22-.2-.32.07-.07.12-.13.17-.19zm4.48-1.35l-.18-.15c.11-.06.22-.14.34-.18.04-.01.12.1.18.15-.11.06-.22.14-.34.18zm19.63-123.85c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18-.18-.18zM90.87 175.41c-.11.06-.22.14-.34.18-.04.01-.12-.1-.18-.15.11-.07.22-.13.32-.2.07.07.13.12.19.17zM112.27 59c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18.18-.33zm86.78.16s.1-.11.16-.17c.06.11.13.22.16.35 0 .04-.1.11-.16.17-.06-.11-.13-.22-.16-.35zM91.59 174.09c-.06-.05-.17-.12-.17-.16.02-.12.09-.23.15-.35.06.05.12.11.19.17-.06.11-.11.22-.17.34zm-5.67-.27c.06.11.14.22.17.34.01.04-.1.12-.15.18-.07-.11-.13-.22-.2-.32.07-.07.12-.13.18-.19zm8.17-1.88c.06.05.17.12.17.16-.02.12-.09.23-.15.35-.06-.05-.12-.11-.19-.17.06-.11.11-.22.17-.34zm-5.27-.91l-.18-.15c.11-.06.22-.14.34-.17.04-.01.12.1.18.15-.11.06-.22.14-.34.17zm-3.26-.03c.05-.06.12-.18.16-.17.12.02.23.09.35.15-.05.06-.11.12-.18.19-.11-.06-.22-.11-.34-.17zm2-1.62c-.05.06-.12.17-.16.17-.12-.02-.23-.09-.35-.15.05-.06.11-.12.18-.19.11.06.22.11.34.17zm17.91-122.21c-.09-.11-.2-.22-.27-.35-.02-.04.09-.11.14-.17.1.11.19.22.29.33-.06.07-.11.13-.16.18zm91.69-1.55c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33-.18.18zM85.57 164.56c.06.06.18.12.17.16-.02.12-.09.23-.15.35-.06-.06-.12-.11-.19-.18.06-.11.11-.22.17-.34zM109.26 62.6c-.05-.11-.12-.22-.16-.35-.02-.04.02-.11.03-.17.06.11.11.22.17.33-.01.07-.03.13-.04.18z"
|
|
1367
1533
|
}
|
|
1368
1534
|
),
|
|
1369
|
-
/* @__PURE__ */
|
|
1535
|
+
/* @__PURE__ */ jsx32(
|
|
1370
1536
|
"path",
|
|
1371
1537
|
{
|
|
1372
1538
|
fill: "#77CBB9",
|
|
1373
1539
|
d: "M157.19 32.41c.38.1.75.23 1.12.34-.17-.44-.41-.87-.48-1.33-.03-.22.34-.72.4-.7 1.19.41 1.03-.82 1.51-1.24.33-.29.51-.36.74.02.16.27.2.71.43.82.39.2 1.02.43 1.29.25.43-.29.64-.9.94-1.37.36.49.7.99 1.1 1.45.14.16.16.07 1.43-.83.3-.21 1.02-.16 1.34.07 1.08.78 1.04.83 1.77-.15.46-.62.81-.61 1.26.05.08.12.03.37.13.45.22.18.49.29.74.43l.27-.9s-1.54-1.68-1.59-1.67c-.37.06-.89-.22-.98.45-.1.8-.53.72-1.01.33-.33-.27-.62-.59-.91-.9-.23-.26-.42-.49-.73-.07-.2.27-.51.47-.71.73-.6.79-1.13.55-1.6-.11-.35-.48-.59-.34-.92.03-.21.24-.49.46-.79.55-.81.26-1.13-.59-1.7-.83-.68-.29-.83 1.26-1.76.75-.07-.04-.12-.16-.18-.17-.65-.09-1.35-.35-1.93-.19-.58.16-1.05.75-1.56 1.15.25.3.47.63.74.9.43.42.9.8.72 1.5.31.06.63.09.94.17zm-.41-1.99c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zM89.54 270.2c.16.67-.07.98-.76.8-.24-.06-.51-.61-.65.02-.04.16.34.6.53.6 1.22-.01 2.43-.67 3.67 0 .09.05.39-.24.55-.41.23-.23.38-.58.64-.72.18-.09.71.83.68-.15-.02-.76.11-1.88-1.33-1.41-.1.03-.43-.27-.44-.43-.07-.92-.57-1.26-1.44-1.38-.63-.09-.18-.51 0-.64.31-.23.7-.36 1.05-.53l-.22-1.53c-1.4-.68-1.38-.5-.22-1.53-.27-1.13-.59-1.37-1.75-1.33.03.46.38 1.12-.49 1.09-.45-.02-.98-.17-1.32-.45-.52-.43-.74-.13-.88.25-.13.36-.11.79-.11 1.18 0 .06.31.19.44.15.29-.1.63-.46.81-.38.48.21.41.63.13 1.03-.05.07.11.42.18.42.34 0 .67-.1 1.01-.11.82-.03.95.24.52 1.04-.68 1.28-.7 1.29.39 2.43.33.34.36.43-.11.61-.36.14-.66.43-.98.65.04.25.06.51.11.76zm2.34-.09c-.07 0-.16-.19-.24-.29.21-.09.42-.21.64-.25.06-.01.16.18.31.35-.27.08-.49.17-.71.19zM71.37 177.06c.06-1.18.33-1.48 1.48-1.64v-.26c0-1.43 1.8-1.52 2.03-2.79.18.06.4.08.54.19.4.33.75.7 1.15 1.03.03.03.25-.11.34-.21.16-.17.32-.36.39-.57.02-.06-.25-.21-.35-.35-.78-1.03-.78-1.03.09-2.49.06-.09-.11-.45-.13-.45-1.02.14-.79-.92-1.2-1.35-.7-.75-.93-.97-1.27-.15-.39.94-.91 1.27-1.83 1.12-.03.68.35 1.42-.79 1.75-.76.22-.66.92.13 1.39.19.12.64.07.66.17.09.39.06.81.08 1.21-.25-.12-.5-.22-.73-.37-.14-.09-.25-.23-.38-.35-.9-.78-1.13-.82-1.58-.11-.42.66.29 1.07.49 1.59.01.03.19-.03.23.01.2.19.38.41.57.62-.25.14-.49.33-.77.42-.24.08-.51.04-.76.05.15 1.17.45 1.44 1.6 1.5zm2.55-4.85c-.42-.19-.81-.46-1.21-.7.38-.28.75-.57 1.16-.8.04-.02.33.42.56.73-.21.32-.46.79-.5.77zm.93-1.71c-.09-.32-.92-.34-.39-.89.17-.17.49-.32.7-.28.22.04.39.33.69.62-.51.28-.75.42-1 .56zM86.26 236.97c.86.39 1.01 1.01.25 1.46-.7.41-.43.85-.36 1.25.12.65.67.26 1.04.29.02-.32-.05-.69.08-.94.2-.38.46-.94 1.03-.28.21.25.57.39.77.64.61.77.69-.47 1.13-.28l-.17-1.54-.91.44.02-1.37.83.42-.29-2.56c-.54.53-1.24.68-1.51-.09-.41-1.17-.77-.81-1.32-.19-.48.54-.73 1.42-1.72 1.29-.03.8.45 1.15 1.12 1.46zm1.37-.19l-.76-.58c.27-.32.52-.67.84-.95.08-.07.38.13.75.26-.32.49-.57.88-.82 1.26zM69.08 112.7l.61.38c.33.2.22.4.11.75-.17.52-.96.86-.43 1.63.25.35.13.39-.62.39-.92 0-1.33.54-1.33 1.46 0 .28.04.75-.5.36-.12-.09-.35-.02-.53-.03.06.24.11.68.18.68.87.01.78.59.84 1.21.08.82-.39.93-.94 1.16-.24.1-.37.47-.55.71.34.18.51 1.07 1.09.28.12.15.33.29.33.44 0 .32-.08.66-.19.96-.03.07-.38.13-.45.06-.59-.56-1.35-.93-1.43-1.98-.05-.65.56-1.07.3-1.76-.2-.53-.24-1.17-.17-1.74.07-.64.34-1.25.53-1.88q1.52 0 1.58-1.55 1.52 0 1.58-1.54zM71.2 220.13l-.21-2.82s.36-.17.46-.11c.78.48.77.49.99-.87.38.09.83.08 1.14.28.55.36.95.82-.04 1.21-.21.08-.38.3-.57.45-.32.26-.39.52.04.73.28.14.58.23.87.36.52.22.53.58.22.98-.31.41-.67.78-.95 1.21-.07.11-.01.44.09.52.25.19.56.34.86.4.09.02.33-.31.36-.5.07-.44-.34-1.13.53-1.1.28 0 .81.41.78.51-.11.42-.33.84-.62 1.16-.59.66-1.39.86-2.16.58-.46-.17-.9-.43-1.33.04l-.33-1.73c-.04-.26-.05-.52-.08-.78.21.1.51.34.62.27.33-.21.63-.51.86-.84.06-.08-.24-.57-.29-.56-.29.08-.55.25-.82.4l-.41.21zM225.69 55.89c.15-.42-.12-.42-.48-.55-.66-.23-.81-1.28-.23-1.44 1.25-.36.78-.77.24-1.31-.54-.55-1.07-1.1-1.64-1.61-.08-.07-.46.02-.51.13-.19.43-.29.9-.47 1.34-.04.1-.33.19-.45.15-.77-.31-1 .25-1.06.75-.08.69.53.47.9.49 1.08.06.54.86.59 1.33.1.96-.3.72-.73.24l-.72.68c.25.11.49.26.75.32.61.13 1.07-.24 1.6-.44.39-.14 1.01.33 1.69.59.19-.23.42-.42.51-.67zm-2.54-2.31c.1-.26.19-.56.39-.74.07-.07.4.14.62.22l-.74.68c-.06-.03-.27-.14-.26-.16zM72.43 195.86c-.69.23-1.32-.14-1.47-.66-.11-.36.4-.94.7-1.38.11-.17.4-.22.61-.32-.06-.06-.12-.12-.19-.17-.27-.18-.53-.43-.83-.52-.13-.04-.41.2-.52.37-.13.19-.09.5-.23.67-.21.27-.33.78-.91.24-.52-.49-.15-.66.08-.96.04-.05 0-.17-.01-.26l.85-.95c-.35-.15-.57-1.01-1.08-.19-.13-.12-.34-.23-.37-.37-.12-.52-.05-.99.42-1.35.45-.36.8-.59 1.07.19.1.29.33.56.56.76.16.14.57.27.63.2.18-.21.28-.52.34-.8.05-.24-.01-.51-.03-.76l1.01-.06c.64-.02.67.43.48.82-.18.37-.54.65-.82.97-.56.64-1.11 1.16.34 1.47.46.1.48 1 0 1.51-.41.43-.82.86-.6 1.55zM201 31.59c-.13-1.46.96-.74 1.55-.9v-1.54c-.48-.05-.99-.03-1.44-.18-1.68-.55-1.95-.51-2.95.72-.39.48-.43.83.33 1.02.36.09.95.57.9.71-.15.48-.52.9-.84 1.31-.07.09-.41.03-.44.1-.1.3-.13.62-.19.93.64-.1 1.44.36 1.67-.85.18-.98.95-.44 1.48-.17.18.09.31.29.45.46.12.15.22.33.32.5l.19-.43.51-1.05c-.51-.22-1.44.6-1.55-.64zm-1.01-1.18c.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71c-.11-.07-.32-.19-.3-.21zM100.07 257.54c-.83.27-.89 0-.79-.21.21-.44.67-.82.73-1.26.11-.8-.87-.23-1.06-.67-.13-.3-.22-.7-.12-.98.06-.18.63-.38.76-.28.3.22.45.63.7.93.21.25.45.46.73 0 .22-.36.52-.67.77-1.01.28-.39.68-.64 1-.21.2.27.17.81.06 1.16-.07.22-.56.27-.77.49-.17.18-.19.49-.27.74.31.07.49.82.95.16.03-.05.41.03.44.11.33 1 .13 1.47-.85 2.15-.38.26-.78.74-1.14.72-.56-.03-.76-1.06-1.61-.74-.05.02-.25-.35.48-1.1.25-.67.02-.34.2.29.09.3-.19.94.58.68.41-.14 1.08.1.96-.73-.07-.48-.01-1.06-1.75-.23zM224.16 32.23c.17-.51.34-1.03.27-1.91.09-.04.29.17.5.37l.72-.72c-.35-.1-.7-.23-1.05-.29-.11-.02-.26.17-.17.64-.01.37-.27.39-.52.37-.4-.04-1.1-.02-1.15-.17-.15-.53-.07-1.12-.08-1.69.24.1.66.34.69.29.57-.79 1.4-.48 2.1-.45 1.19.04 1.72 1.16.89 2.06-.61.67-.63.95.03 1.5.25.21.28.73.3 1.12 0 .14-.26.34-.45.43-.1.05-.4-.05-.42-.13-.26-.84-.61-1.54-1.67-1.39z"
|
|
1374
1540
|
}
|
|
1375
1541
|
),
|
|
1376
|
-
/* @__PURE__ */
|
|
1542
|
+
/* @__PURE__ */ jsx32(
|
|
1377
1543
|
"path",
|
|
1378
1544
|
{
|
|
1379
1545
|
fill: "#77CBB9",
|
|
1380
1546
|
d: "M72.85 175.42c.17 0 .34-.04.51-.02.37.04.94-.29 1.02.36.05.41.39 1.07-.47 1.19-.15.02-.33.1-.41.22-.16.23-.44.58-.36.73.14.27.48.52.77.58.16.03.42-.33.59-.54.2-.25.3-.62.54-.8.21-.15.81-.14.82-.12.17.95 1.05 1.28 1.57 1.92.08.09 0 .4-.1.53-.16.22-.34.65-.7.19-.2-.25-.41-.52-.52-.81-.23-.58-.57-.54-.95-.22-.26.22-.42.57-.7.74-.26.16-.62.18-.94.2-.14.01-.41-.11-.42-.18-.02-1.21-2.17-.79-1.73-2.32q1.52-.09 1.48-1.64zM215.44 28.91c.65.36.4 1.04.57 1.56.04.13.43.21.66.2.82-.03 1.51-.07 1.36 1.16-.07.62.62.36.99.38.16.01.5-.19.49-.24-.19-.92.3-1.3 1.07-1.6.4-.15.52-.45.1-.91-.64-.69-1.31-.94-2.23-.87-.7.06-1.43.76-2.12-.1-.33.15-.61.28-.88.4zm2.69.87c.32-.08.37-.91.9-.35.16.17.3.5.25.71-.05.22-.34.38-.63.67-.26-.52-.39-.77-.52-1.02zM68.85 78.58c0-.09.02-.17.01-.26-.09-.75.15-1.65.8-1.63.43.02.99.99 1.21 1.64.18.51.11 1.29-.18 1.72-.3.46-.28.6.03.97.33.39.56.87.83 1.32-.54.02-.88.14-.96.83-.04.32-.57.61-.91.87-.14.11-.45.21-.52.14-.23-.22-.48-.51-.52-.81-.02-.15.4-.55.58-.52.79.11 1.13-.22.98-.98-.04-.23-.35-.56-.56-.58-.92-.08-.92-.04-.9-.62l.08-1.56c.19.13.45.41.57.35.36-.16.7-.42.97-.7.07-.07-.16-.6-.21-.59-.3.04-.58.17-.87.27l-.43.15zM135.49 32.31s.67.68 1.04 1.03c.6.57 1.15.87 1.23-.36.67-.15 1.06-.56 1.24-1.23.29-1.11-.81-.84-1.19-1.27-.31-.35-.5-1.16-.73-1.16-.78.01-.11.79-.39 1.08-.19.2-.58.29-.88.27-.77-.03-1.43-.03-1.16 1 .06.56-.28 1.62.85.64zm2.25-.85c-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32.25.13.45.23.65.34zM228.79 51.78c0 .59-.05 1.18.01 1.77.12 1.15-.47.39-.87.42-.5.03-.67.76-.29 1.02.32.22.7.34 1.03.55.1.06.16.34.1.44-.1.18-.29.38-.47.42-.51.1-1 .02-1.3-.49-.3-.49-.76-.6-1.3-.53-.23-.84.46-1.19.9-1.68.64-.7.62-.89-.19-1.41l-.58-.4c.34-.21.67-.54 1.03-.58.22-.03.58.33.74.6.52.83.76-.35 1.18-.13zM202.55 29.15c.41-1.08 1.25-.35 1.89-.4.2-.02.28.41.73.15.91-.51.95-.37 2.3.23.35.16.83.02 1.26.02-.14.51.38 1.38-.36 1.47-.47.06-1.6.81-1.72-.61 0-.05-.29-.09-.45-.13-.2 1.57-1.4.54-2.1.82-.11-1.15-.39-1.44-1.54-1.54zM73.55 144.41c0 .44.09.75-.02.95-.09.16-.45.33-.61.27-.29-.12-.53-.38-.77-.61-.77-.69-.75-.67-1.81-.02-.2.12-.57-.02-.86-.05.03-.23-.03-.59.1-.68.93-.67.85-1.22-.02-1.88-.18-.14-.17-.64-.13-.95.02-.17.28-.41.45-.42.18-.01.54.24.53.33-.23 1.43.71 1.18 1.55 1.21.9.03.21.39.15.7-.04.2.37.69.53.68.57-.06 1.35-.62.9.49zM102.08 270.71c-.31 0-.87.06-.89-.03-.12-.42-.17-1.27-.11-1.28 1.31-.25.51-1.13.57-1.73.54 0 .96-.18 1.22-.7.26-.53.35-.95-.45-.96-.63 0-.67-.42-.45-.8.08-.14.57-.14.82-.06.3.11.53.42.82.57 1.31.68 1.3.66.28 1.69-.42.42-.76.9-.49 1.55-1.13.27-1.37.59-1.31 1.74zM75.95 90.98c-.78.09-1.31-.32-1.47-1.02-.24-1.03-.65-.74-1.17-.27-.25.22-.5.44-.79.6-.11.06-.32-.02-.46-.1-.05-.03-.05-.26 0-.34.31-.47.64-.93.96-1.39.42-.61 1.36-.78 1.72-.1.43.82.55 1.19 1.31.33.34-.38.74-1.17 1.38-.63.26.22.1.94.13 1.43-.41.05-.96-.28-1.08.51-.05.34-.35.65-.54.98zM212.55 29.19c1.54-1.26 1.06.92 2.12.49-.03.18 0 .4-.09.53-.4.58-1.63.56-1.23 1.72-.37.1-.76.28-1.12.25-.16-.01-.46-.53-.39-.69.18-.42 1.17-.96-.28-.82-.25.02-.52.05-.75-.01-.2-.05-.48-.21-.51-.36-.04-.19.08-.53.23-.63.73-.46 1.49-.85 2.02-.49-.22 1.17-.22 1.33-.22 1.49l.92-.67c-.12-.12-.27-.36-.36-.34-.24.06-.45.23-.34-.49zM67.6 109.52c.04-.79-.28-1.86 1.19-1.58.09.02.33-.47.39-.74.04-.21-.07-.66-.14-.67-.28-.03-.61.01-.86.15-.35.19-.63.57-.99.7-.27.1-.63-.08-.95-.13.16-.24.28-.53.49-.71.28-.24.93-.42.91-.57-.17-1.51.85-1.13 1.62-1.13.04.32.03.65.14.95.39 1.05 1.16 2.1-.22 3.03-.12.08-.03.48-.03.74l-1.54-.04zM68.06 95.35c-.37-.14-.77-.23-1.11-.42-.25-.15-.49-.36-.1-.74.51-.5 1.51-.49 1.4-1.71-.04-.48 1-.25 1.49.62.16.29.45.73.68.73 1.02 0 .83.72.71 1.24-.17.75-.84.24-1.28.35-.08.02-.17 0-.25 0 .19-.67-.17-1.4-.63-1.44-.67-.05-.98.65-.91 1.38zM69.78 85.98c.64-.1.78.17.75.82-.02.47-.56 1.31.56 1.36.05 0 .09.3.14.46-1.12 0-.94 1.13-1.44 1.67-.18.2-.65.42-.76.34-.31-.25-.54-.63-.7-1-.03-.07.36-.43.61-.52.35-.12.97.22.93-.48-.03-.52-.23-1.12-1.01-.8-.07.03-.18.17-.19.16-.38-.34-.33-1.94.08-2.04.32-.08.68.01 1.03.03z"
|
|
1381
1547
|
}
|
|
1382
1548
|
),
|
|
1383
|
-
/* @__PURE__ */
|
|
1549
|
+
/* @__PURE__ */ jsx32(
|
|
1384
1550
|
"path",
|
|
1385
1551
|
{
|
|
1386
1552
|
fill: "#77CBB9",
|
|
1387
1553
|
d: "M103.39 268.97c.25-.04.5-.12.75-.1.28.03.75.1.79.25.09.36.04 1.1-.05 1.11-1.31.25-1.01 1.88-2.12 2.32-.76.3.39.76.07 1-.27.22-.87.35-1.12.2-.26-.15-.44-.75-.36-1.07.18-.67 1.11-1.08.72-1.98q1.5-.24 1.31-1.74zM70.4 203.87c-.07-.14-.1-.33-.21-.42-.36-.31-.61-.67-.19-1.05.38-.35 1.19-.08 1.35.41.08.23-.03.62.11.74.46.39.99.68 1.5 1.01-.54.72-1.35 1.28-1.49 2.28 0 .02-.58.04-.84-.07-.8-.35-.6-1.14-.67-1.79.68.31 1.55.1 1.4-.27-.14-.35-.63-.55-.96-.82zM73.84 159.72c-.06.67.38 1.51-.81 1.73-.4.07-.73.69-1.06 1.09-.25.32-.42.41-.74.05-.45-.51-1.08-.89-1.42-1.46-.18-.3-.4-1.09.29-1.27.36-.09 1.06-.41 1.17.44.06.45-.19 1.2.66 1.01.73-.16.25-.85.36-1.3.02-.08 0-.17 0-.26l1.54-.04zM87.53 255.58c.06-.38.07-.79.22-1.13.07-.16.5-.33.63-.25.69.39 1.18 1.08 2.08 1.19.16.02.22.87.33 1.34-.8-.02-1.3.44-1.38 1.17-.06.61-.32.73-.79.61-.67-.16-.81-.76-.31-1.24.11-.11.25-.23.4-.26.85-.17.46-.8.38-1.21-.13-.65-.68-.26-1.05-.27-.17 0-.34.04-.51.06zM175.29 30.69h-.77c-1.3-.04-1.26-.04-1.3-1.17-.04-.96.22-.94.88-.41.1.09.53-.29.83-.37.83-.21 1.65-.31 2.26.49.19.25.41.48.62.73-.33.24-.63.55-.99.7-.3.12-.67.02-1.02.02.05-.14.07-.33.17-.41.33-.25.39-.49 0-.69-.2-.11-.5-.24-.68-.16-.94.39.05.84 0 1.27zM73.81 110.72l-.25.94c-1.08-1.05-1.4 1.29-2.41.56-.13-.09-.29-.13-.43-.19.07-.12.12-.26.22-.36.3-.31.59-.64.93-.89.37-.28.34-.48 0-.75-.2-.16-.49-.36-.51-.56-.03-.46.07-.94.13-1.4 0-.02.16-.01.24-.01.69 0 .44.54.54.91.07.25.35.67.48.65.9-.12 1.23.2 1.07 1.11zM145.45 30.7v2.06c-.45-.04-.94-.82-1.34.06-.1.21-.08.5-.22.67-.13.16-.54.33-.59.28-.19-.2-.35-.48-.4-.76-.04-.21.06-.64.17-.66 1.34-.27.93-.79.29-1.46-.25-.27-.4-.7-.46-1.08-.13-.87.55-.62 1.01-.66q.02 1.52 1.54 1.54zM199.47 35.32c-.08-.54.06-.97.53-1.32.4-.3.95-.37.97.09.09 1.8 1.17.67 1.85.72.23.02.46.11.69.18-.13.18-.22.44-.4.53-.86.44-.07.9-.04 1.35h-2.06c0-.41.15-1.06-.03-1.17-.42-.26-1-.26-1.51-.37zM65.96 114.21c.07-.75-.03-1.45-.44-2.12-.12-.2.09-.62.15-.94.11.23.2.47.35.68.14.21.31.41.51.55.18.13.55.32.62.25.19-.2.32-.5.4-.78.06-.24.02-.51.03-.77l1.54.04-.03 1.57c-1.15.08-1.44.37-1.58 1.54l-1.54-.03zM127.45 33.6c-.11-.19-.29-.44-.38-.71-.02-.07.2-.26.34-.35 1.06-.65.99-1.44.33-2.34-.09-.12-.03-.35-.04-.53.23.06.54.05.67.2.2.22.31.8.38.79 1.3-.2 1.36.58 1.24 1.5-.02.19-.19.37-.29.55-1.24-.92-1.21 1.17-2.26.89zM187.63 30.69c-.33 0-.67-.02-1 0-.61.04-1 0-1.16-.82-.17-.83-.87-.64-1.44-.22.03-.46-.19-.95.66-1.07.83-.12 1.55.78 2.44.09.28-.22.95.07 1.44.12-.35.24-.69.51-1.06.72-.85.5.34.76.12 1.17zM85.89 227.63c-.72-.11-1.13.35-1.39.88-.16.33.05.99-.57.84-.4-.1-.78-.54-1.04-.92-.17-.25-.09-.67-.13-1.01.45-.01 1 .74 1.32-.18.1-.3.11-.81.28-.87.53-.18 1.12-.18 1.69-.26l-.19 1.26c-.01.08.01.17.02.25zM164.86 36.95c-.18-.17-.49-.35-.61-.62-.08-.17.06-.52.21-.7.14-.16.41-.23.63-.31.58-.19.56-.55.25-.94-.27-.33-.63-.58-.89-.92-.14-.19-.16-.47-.23-.71.34 0 .97-.04.98 0 .11.89.96.97 1.47 1.4.28.24.41.38.07.74-.49.53-.85 1.18-1.29 1.76-.08.11-.28.14-.59.29zM72.7 183.8l.46.12c-.04.12-.04.28-.11.37-.39.46-1.08.89-1.1 1.36-.02.39.77.79 1.17 1.22.11.12.17.47.1.52-.31.24-.67.42-1.01.63-.09-.17-.24-.33-.27-.51-.09-.46.15-1.1-.72-1.05-.12 0-.36-.48-.4-.76-.08-.56 1.29-1.89 1.89-1.91zM214.65 36.86c-.42 0-.59.01-.76 0-.46-.05-.74-.53-.46-.84.57-.62 1.21-1.18 1.77-1.8.34-.38.57-.45.91 0 .32.42.66.78-.1 1.12-.48.21-1.52.16-.71 1.18-.29.15-.57.31-.66.36zM72.61 169.16c-.5-.22-1-.42-1.5-.66-1.04-.5-1.33-.97-1.17-2 .1-.63.64-.34 1.01-.42.24.32.44.7.74.93.74.55 1.04 1.24.92 2.15zM71.36 213.2c-.27-.23-.63-.4-.76-.68-.08-.18.18-.75.3-.76.79-.03 1.36-.14 1.08-1.19-.03-.13.35-.48.58-.53.28-.05.79.03.86.2.16.37.11.84.15 1.27-1.18-.11-1.41 1.05-2.07 1.62-.05.04-.11.05-.15.06zM123.85 67.74v-1.03c.44.02 1.03-.92 1.27.03.29 1.1.99 1.07 1.81 1v.74c.02.42.04.85-.58.8-.36-.03-.83.21-.97-.41-.18-.81-.67-1.24-1.54-1.13zM81.73 232.74c-.32-.03-.69.03-.95-.1-.44-.22-.95-.67-.2-1.03.94-.45 1.11-1.07.85-1.97l.74-.08c.42-.06.85-.12.85.5 0 .36.29.82-.31 1.02-.79.26-1.16.8-.97 1.66zM221.1 33.08c-.06.25-.08.53-.15.54-.9.18-1.34.76-1.63 1.59-.05.13-.76.08-1.15 0-.1-.02-.15-.42-.18-.66-.07-.48.04-.83.64-.78.57.05 1-.02.92-.78-.03-.24.15-.51.24-.76.45.29.89.58 1.31.85zM101.39 189.4c.84-.03 1.66-.03 2.02-1.05.19-.54.48-.54.81-.04.17.25.17.6.24.91-1.15.17-1.41.47-1.44 1.61l-1.03.06-.61-1.49zM73.92 205.27c.14.12.3.21.38.35.09.15.22.41.15.52-.41.69-1.12 1.14-1.29 2.07-.09.48-.67.23-1-.09-.21-.21-.64-.43-.17-.7.78-.45 1.24-1.12 1.6-1.92.05-.1.21-.15.32-.22zM180.95 29.15c-.15.87.15 1.51.79 2.12.56.53.34.78-.79.96-.11-1.15-.39-1.44-1.54-1.54.11-1.15.39-1.44 1.54-1.54z"
|
|
1388
1554
|
}
|
|
1389
1555
|
),
|
|
1390
|
-
/* @__PURE__ */
|
|
1556
|
+
/* @__PURE__ */ jsx32(
|
|
1391
1557
|
"path",
|
|
1392
1558
|
{
|
|
1393
1559
|
fill: "#77CBB9",
|
|
1394
1560
|
d: "M81.73 232.74c1.52-.14 1.51-.14 1.7 1.39-.87-.14-1.1.63-1.58 1.06-.16.14-.57.01-.86 0 .09-.28.13-.77.27-.8 1.24-.26.31-1.11.48-1.65zM100.8 261.75s-.2-.12-.41-.09c-.6.1-.74-.22-.74-.7 0-.23.05-.47.08-.7.13.05.27.08.38.16.55.4 1.1.8 1.62 1.22.22.18.39.42.58.63-.3.26-.56.64-.91.75-.54.17-1.42.37-.53-.68.04-.04-.02-.16-.08-.6zM231.88 52.29c-.11-1.15-.39-1.44-1.54-1.54.04-.46-.22-1.1.66-1.03.95.08 1.83.97 1.91 1.91.08.88-.57.62-1.03.66zM87.39 241.72c.02.21.12.44.05.54-.5.64-.88 1.35-1.73 1.68-.63.24-1.14.09-1.23-.65 0-.07.32-.29.38-.25.96.63 1.17.23 1.05-.73-.13-1.07.77-.57 1.21-.76.06-.03.19.12.27.17zM70.65 178.6c.37.09.59.07.67.17.41.5.85 1 1.14 1.57.17.33.23.93.04 1.17-.2.24-.75.21-1.15.26-.08 0-.18-.15-.27-.23 1.21-1.07-.01-1.16-.56-1.65-.18-.16.07-.82.12-1.28zM104.97 175.53c-.2-.26-.67-.67-.59-.82.35-.7.82-1.35 1.32-1.96.15-.18.55-.17.83-.24.07.38.33 1.01.19 1.11-.69.5-1.66.74-1.44 1.9-.08 0-.17 0-.31.01zM104.93 254c.42-.67.92-1.47 1.45-2.25.03-.04.39.07.54.19.14.11.31.41.26.47-.54.75-1.11 1.47-1.7 2.19-.05.07-.3.09-.33.04-.09-.12-.11-.29-.21-.65zM73.22 40.62c-.08-.07-.16-.17-.24-.2-.4-.15-.8-.27-1.2-.4.09-1.01.05-2.29.33-2.92.14-.32.86.52 1.32.84l-.22 2.68zM82.01 219.85c.06-.5-.45-1.23.6-1.29.61-.04.78.1.94.73.29 1.08-.72.88-1.07 1.13-.63.45-.28-.4-.48-.58zM73.49 129.48c-.81.05-1.64.16-1.77-1.02-.03-.29-.15-.58-.23-.87.29.16.69.24.86.49.55.81.73-.42 1.15-.17v1.56zM69.15 109.55c.59.18 1.69-.53 1.53.95-.14 1.26-1.05.4-1.56.62l.03-1.57zM105.47 87.74c.5.24 1.46-.52 1.52.71.06 1.43-.99.67-1.59.81l.08-1.51zM173.92 64.64c-.81.12-.68-.45-.69-.94-.01-.85.62-.52 1.05-.6.8-.16.44.44.49.75.13.68-.23.88-.85.79zM228.79 50.75q-1.52-.02-1.54-1.54c.51.11 1.1.11 1.51.37.18.12.03.77.03 1.17zM69.54 96.99q-1.52-.08-1.48-1.63l1.54.06-.06 1.57zM106.36 103.75c.09.8-.48.65-.97.64-.85-.01-.5-.63-.56-1.05-.13-.79.46-.41.77-.46.69-.11.87.25.76.86z"
|
|
1395
1561
|
}
|
|
1396
1562
|
),
|
|
1397
|
-
/* @__PURE__ */
|
|
1563
|
+
/* @__PURE__ */ jsx32(
|
|
1398
1564
|
"path",
|
|
1399
1565
|
{
|
|
1400
1566
|
fill: "#77CBB9",
|
|
@@ -1402,44 +1568,44 @@ var Icons = {
|
|
|
1402
1568
|
transform: "rotate(-6.53 97.218 239.535)"
|
|
1403
1569
|
}
|
|
1404
1570
|
),
|
|
1405
|
-
/* @__PURE__ */
|
|
1406
|
-
/* @__PURE__ */
|
|
1571
|
+
/* @__PURE__ */ jsx32("path", { fill: "#77CBB9", d: "M202.55 30.69H204.09V32.230000000000004H202.55z" }),
|
|
1572
|
+
/* @__PURE__ */ jsx32(
|
|
1407
1573
|
"path",
|
|
1408
1574
|
{
|
|
1409
1575
|
fill: "#77CBB9",
|
|
1410
1576
|
d: "M232.47 54.35c-1.04.07-1.59-.38-1.59-1.4 0-.22.28-.54.5-.64.41-.18.55.05.52.49-.03.46-.24 1.1.64 1.04.11 0 .23.17.35.27l-.42.23zM145.45 35.33h1.54q-.02 1.52-1.54 1.54v-1.54zM109.36 229.86c.61.1 1.62-.72 1.63.72.02 1.22-.99.52-1.47.79l-.16-1.51zM109.07 226.84c.61.1 1.62-.71 1.63.72 0 1.22-.99.52-1.48.79l-.15-1.51zM88.27 249.22l-1.53.19c.09-.61-.77-1.61.69-1.66 1.25-.04.55.98.84 1.47zM103.23 161.95q1.52-.03 1.6 1.47-1.52.03-1.6-1.47zM70.95 166.08c.2-.53-.65-1.44.58-1.6 1.45-.18.77.95.96 1.54l-1.54.05zM91.6 262.86c.61.08 1.59-.78 1.66.68.06 1.25-.97.56-1.44.85l-.22-1.53zM114.59 67.74c-.07 1.59-.07 1.6-1.38 1.54-1.65-.08.35-.75-.16-1.03l1.54-.51zM78.62 32.5c-1.17-.23-1.98-.28-2.56-.53-.64-.27-.19-1.11.67-1.18 1.04-.08 1.42.37 1.65.79.16.28.14.54.23.92zM151.62 30.7c.11-1.15.39-1.44 1.54-1.54-.11.51-.11 1.1-.37 1.51-.12.18-.77.03-1.17.03zM177.86 32.24c.11-1.15.39-1.44 1.54-1.54v1.54h-1.54zM144.32 69.22s-.35-.15-.38-.36c-.09-.57.72-1.25 1.26-1.1.12.03.23.31.24.47.03.57.13 1.22-1.12.99zM72.35 51.32c-.52-.16-.96-.57-1.16-1.63-.08-.42-.2-1.18-.13-1.25.22-.23.52-.27.79-.23.23.04.48.28.72.43l-.22 2.68zM117.67 30.7c.11-1.15.39-1.44 1.54-1.54-.11.51-.11 1.1-.37 1.51-.12.18-.77.03-1.17.03zM150.08 32.24c.11-1.15.39-1.44 1.54-1.54q-.02 1.52-1.54 1.54zM111.09 69.22s-.09-.15-.14-.36c-.15-.57-.1-1.25.06-1.1.03.03.1.31.13.47.09.57.2 1.22-.05.99zM122.31 69.28c.11-1.15.39-1.44 1.54-1.54q-.02 1.52-1.54 1.54zM80.75 62.48l-.1 1.35c-.08.84-.52.77-.86.37-.46-.56-.79-1.33-.55-2.24l1.51.52zM72.71 62.35c.06.23.21.54.23.87.07 1.45-.52 2.1-1.39 1.51-.09-.06-.2-.3-.21-.47-.06-1 .7-2.12 1.38-1.9zM104.85 121.09c1.09-.18 1.2.27 1.08.82-.05.24-.31.43-.48.64l-1.04-1.15c.23-.16.42-.3.44-.31zM83.43 234.13c.52.05 1.1 0 1.55.21.2.1.12.76.16 1.17-1.16.02-1.47-.24-1.71-1.38z"
|
|
1411
1577
|
}
|
|
1412
1578
|
),
|
|
1413
|
-
/* @__PURE__ */
|
|
1579
|
+
/* @__PURE__ */ jsx32(
|
|
1414
1580
|
"path",
|
|
1415
1581
|
{
|
|
1416
1582
|
fill: "#77CBB9",
|
|
1417
1583
|
d: "M102.84 125.55L101.3 125.03 101.31 124.02 102.85 124.04 102.84 125.55z"
|
|
1418
1584
|
}
|
|
1419
1585
|
),
|
|
1420
|
-
/* @__PURE__ */
|
|
1586
|
+
/* @__PURE__ */ jsx32(
|
|
1421
1587
|
"path",
|
|
1422
1588
|
{
|
|
1423
1589
|
fill: "#77CBB9",
|
|
1424
1590
|
d: "M208.7 41.88c.09.84 0 1.31-.74 1.14-.27-.06-.52-.24-.77-.37.35-.39.69-.79 1.07-1.14.03-.02.39.32.44.37zM105.83 131.23s-.16.34-.36.37c-.57.09-1.25-.71-1.09-1.24.03-.12.31-.23.48-.23.57-.03 1.22-.12.98 1.1zM72.3 214.77l.13 1.57c-.52.12-1 .06-1.33-.42-.13-.19-.34-.55-.28-.62.18-.21.46-.36.73-.45.23-.08.5-.05.75-.08zM83.9 223.14c-.52.12-1 .07-1.33-.41-.13-.19-.35-.54-.29-.61.18-.21.46-.36.73-.45.23-.08.5-.06.75-.08l.15 1.55zM225.7 46.12q-.02 1.52-1.54 1.54c.11-1.15.39-1.44 1.54-1.54zM105.5 144.17l-1.1-1.59c.26-.12.51-.3.78-.36.76-.17.83.33.75.86-.03.25-.19.49-.44 1.09zM74.08 167.05c-.06.07-.2.43-.4.47-.56.11-1.28-.69-1.15-1.24.03-.12.3-.25.46-.26 1.04-.07 1.05-.05 1.09 1.03zM75.6 166.43c-.8-.67-1.22-.99-1.57-1.37-.04-.05.25-.61.42-.63.4-.04 1.04-.34 1.09.49.01.34.03.68.06 1.5zM81.88 198.36l-1.03.07c0-.08.01-.18-.02-.25l-.57-1.02c.38-.11.81-.37 1.12-.27.23.07.33.62.45.97.05.15.03.34.04.5zM223.09 49.21c-.07-.06-.42-.21-.45-.42-.09-.57.72-1.25 1.26-1.1.12.03.24.31.24.47.04 1.04.02 1.05-1.06 1.05zM88.19 260.7c-.85-.59-1.3-.86-1.68-1.2-.05-.04.2-.63.37-.66.4-.08 1-.44 1.12.38.04.33.09.67.19 1.48zM74.24 95.11c-.06.07-.23.41-.44.44-.57.07-1.22-.78-1.05-1.33.04-.12.32-.23.48-.23 1.04 0 1.05.03 1.01 1.11zM87.75 255.86c-.16.6-.16 1.04-.38 1.28-.24.26-1.16-.29-1.29-.79-.16-.6.29-.67.71-.67.28 0 .56.1.96.17zM69.32 103.27c-.53.06-1-.06-1.27-.58-.11-.21-.28-.58-.21-.64.21-.19.5-.3.78-.36.24-.05.5 0 .75.01l-.06 1.57zM72.42 102.88c-.06.07-.23.42-.44.44-.57.07-1.22-.77-1.06-1.32.04-.12.32-.23.48-.23 1.04 0 1.05.02 1.01 1.11zM67.57 111.09c-.53.06-1-.05-1.28-.57-.11-.21-.28-.58-.22-.64.2-.19.5-.31.78-.37.24-.06.5 0 .75 0l-.03 1.57zM107.31 185.61s-.14.35-.34.39c-.56.12-1.29-.63-1.17-1.18.03-.12.29-.24.46-.26.56-.06 1.22-.19 1.05 1.05zM106.83 176.56s-.14.35-.34.39c-.56.12-1.29-.65-1.17-1.19.03-.12.3-.24.46-.26.57-.06 1.21-.18 1.04 1.05zM78.49 203.05c.29.3.67.59.63.67-.19.38-.49.71-.75 1.06-.25-.3-.6-.58-.71-.93-.04-.14.45-.45.83-.8zM84.99 218.36c-.7.16-1.42-.06-1.45-.74-.02-.47.64-.92 1.32-.81l.13 1.55zM105.71 272.61c-.27.33-.52.74-.59.71-.4-.15-.75-.42-1.12-.64.28-.28.52-.65.86-.79.14-.06.48.39.86.72zM91.18 259.79c-.69.19-1.42 0-1.48-.67-.05-.47.6-.94 1.29-.87l.2 1.54zM154.71 32.62c-.73-.54-1.11-.83-1.49-1.11.28-.27.53-.6.86-.79.09-.05.53.27.61.5.11.3.03.67.03 1.4zM93.53 252.47c-.18.34-.39.81-.43.8-.44-.15-.85-.38-1.27-.58.35-.3.7-.63 1.08-.88.04-.03.36.38.62.67zM151.24 33.78c.54-.73.83-1.11 1.11-1.49.27.28.6.53.79.86.05.09-.27.53-.5.61-.3.11-.67.03-1.4.03zM87.37 241.52l-.17-1.54c.69-.17 1.42.03 1.47.7.04.47-.62.93-1.3.84zM89.69 234.51q-.02-1.03 1.42-1.19c-.04 1.4-.33 1.64-1.42 1.19zM145.45 29.67c.44.02.84-.86 1.32.02.39.7.31.91-.58 1.01-.25.03-.5 0-.75 0v-1.03zM146.99 32.24c0 .25.02.5 0 .75-.09.89-.36 1.04-1 .53-.24-.19-.36-.51-.54-.77l1.54-.51zM143.91 35.33c-.09-.71.19-1.41.86-1.39.47.01.85.72.69 1.39h-1.54zM110.04 218.51c-.28.31-.55.7-.62.67-.39-.17-.73-.45-1.1-.7.29-.26.55-.61.9-.73.14-.05.46.41.82.76zM139.89 30.93c-.27-.32-.63-.63-.58-.7.22-.37.54-.67.82-.99.23.32.56.61.64.97.03.14-.48.41-.88.73zM138.89 33.78c.54-.73.83-1.11 1.11-1.49.27.28.6.53.79.86.05.09-.27.53-.5.61-.3.11-.67.03-1.4.03zM88.41 269.58c-.05-.44-.97-.72-.17-1.32.64-.48.85-.44 1.08.43.06.24.08.5.11.74l-1.02.15zM106.29 115.91c-.32.26-.64.6-.71.56-.36-.22-.66-.54-.97-.82.32-.22.63-.54.98-.61.14-.03.4.48.71.88zM72.5 54.17c-.63 1.03-.96 1.57-1.28 2.11-.23-.6-.51-1.19-.64-1.86-.04-.19.34-.83.57-.86.32-.05.67.27 1.36.61zM77.52 64.28c-.66-.99-1-1.54-1.34-2.09.31-.34.59-.75.93-.92.09-.04.49.59.54.93.07.49-.05 1.02-.13 2.07zM71.68 64.77c-.62 1.18-.95 1.8-1.27 2.42-.24-.54-.53-1.04-.68-1.67-.04-.17.33-.91.56-1 .32-.13.68.1 1.39.25z"
|
|
1425
1591
|
}
|
|
1426
1592
|
),
|
|
1427
|
-
/* @__PURE__ */
|
|
1593
|
+
/* @__PURE__ */ jsx32(
|
|
1428
1594
|
"path",
|
|
1429
1595
|
{
|
|
1430
1596
|
fill: "#77CBB9",
|
|
1431
1597
|
d: "M72.73 94.36c-.71-.58-1.08-.88-1.45-1.19.29-.27.55-.59.89-.76.09-.05.52.3.59.53.1.32 0 .7-.02 1.42zM89.85 261.54c-.55.08-1.11.26-1.17-.65-.02-.24-.36-.46-.56-.69.52.04 1.1-.04 1.55.17.2.09.13.76.18 1.17zM76.81 197.36c-.55-.24-.88-.39-1.22-.54l.75-1.16c.26.31.56.61.76.96.06.11-.14.38-.29.74zM75.3 188.65c-.33.33-.61.79-.78.75-.36-.09-.66-.43-.98-.67.37-.29.72-.6 1.11-.83.05-.03.34.4.64.75zM71.95 188.03l.08 1.57c-.7.14-1.41-.11-1.43-.79-.01-.48.67-.91 1.35-.78zM118.97 34.14c-.57-.48-.87-.74-1.17-.99.3-.3.58-.62.92-.88.07-.05.47.16.47.24-.01.45-.11.89-.21 1.64zM116.78 69.52c-.29-.31-.66-.62-.62-.69.21-.37.53-.69.81-1.02.23.32.57.61.65.96.04.14-.46.42-.85.75zM77.56 177.17c-.75-.52-1.15-.78-1.54-1.05.27-.29.51-.63.83-.83.09-.06.54.25.63.47.12.31.05.69.09 1.41zM93.95 265.9c-.4.63-.61.97-.82 1.3-.34-.26-.7-.49-1-.79-.06-.06.09-.49.17-.5.44-.05.89-.02 1.65-.02zM104.76 143.97c-.48.56-.73.86-.98 1.16-.3-.29-.63-.56-.89-.89-.05-.06.15-.47.23-.47.45 0 .89.09 1.64.19zM87.49 34.03c-1.06-.27-1.72-.44-2.37-.6.22-.37.45-.73.69-1.1.62.32 1.31.63 1.81.99.18.13-.06.39-.13.72zM84.77 32.05c-1.06.12-1.59.27-2.2.21-.38-.03-1.29-.47-1.28-.57.04-.35.39-.63.64-.94.77.35 1.54.7 2.84 1.3zM223.92 34.13c-.57-.48-.87-.74-1.17-.99.3-.3.58-.62.92-.88.07-.05.47.16.47.24-.01.44-.1.88-.21 1.64zM206.23 63.88c-.7.47-.91.72-1.13.74-.35.02-.98.25-.96-.36.02-.39.41-.9.77-1.09.2-.1.69.35 1.32.71zM217.06 37.09c-.27-.32-.63-.63-.58-.7.22-.37.54-.67.82-.99.23.32.56.61.64.97.03.14-.48.41-.88.73zM227.09 47.04c.34-.34.44-.49.58-.57.16-.09.41-.21.53-.14.61.34.66.93.57 1.54-.01.09-.27.24-.31.21-.47-.33-.92-.69-1.37-1.04zM209.87 33.33c.61-.48.94-.75 1.27-1.01.23.32.6.62.65.97.08.65-.51.48-.87.47-.25-.01-.48-.19-1.04-.42zM166.66 64.2c.61-.48.94-.75 1.27-1.01.23.32.6.62.65.97.08.65-.51.48-.87.47-.25-.01-.48-.19-1.04-.42zM192.49 64.87c-.31-.34-.74-.65-.69-.82.11-.35.46-.63.71-.94.26.38.55.75.75 1.16.02.05-.41.32-.77.6zM230.33 50.75c0 .16.04.33 0 .47-.33.93-.64 1.04-1.54.56v-1.03h1.54zM227.25 49.59c-.73-.54-1.11-.83-1.49-1.11.28-.27.53-.6.86-.79.09-.05.53.27.61.5.11.31.03.69.03 1.4zM186.88 65c-.57-.48-.87-.74-1.17-.99.3-.3.58-.62.92-.88.07-.05.47.16.47.24-.01.44-.1.88-.21 1.64zM186.44 34.31c-.19-.81-.3-1.14-.34-1.47-.07-.6.38-.74.76-.56.2.09.26.62.24.95-.01.23-.25.44-.65 1.09zM133.04 67.03l.77-.77c.28.33.58.64.82 1 .03.05-.31.47-.36.45-.42-.19-.8-.43-1.22-.68zM74.15 218.53c.34-.3.65-.61 1.01-.83.08-.05.5.28.49.32-.19.43-.42.84-.65 1.25-.25-.21-.5-.43-.85-.73zM107.92 214.05c-.38.34-.6.54-.83.75l-.81-1.14c.16-.1.38-.31.48-.27.39.16.73.41 1.17.66zM79.31 61.6c-.15.05-.35.22-.55.18-.64-.15-.51-.87-.41-1.38.07-.35.32-.84.49-.79.84.22.43 1.05.47 2zM75.48 60.69c-.27-.65-.46-1.1-.65-1.55.41-.26.81-.53 1.23-.7.02 0 .32.76.27.87-.23.5-.54.9-.85 1.38zM85.64 219.86l-.65-1.5c.65-.22 1.15.09 1.45.58.06.1-.51.6-.8.92zM106.44 70.86c.36.1.69.19 1.06.33.08.03.46.28.44.28-.25-.03-.5-.07-.75-.1l-.75-.51zM134.65 40.47c.55-.41 1.09-.61 1.46.19.08.18.05.62-.02.64-.26.07-.57.07-.84.01-.21-.05-.4-.21-.6-.33v-.51zM72.96 213.07c.34.38.55.62.76.85l-1.16.82c-.1-.16-.32-.38-.27-.48.17-.39.42-.75.68-1.19zM106.21 118.59c-.42.33-.73.66-1.1.81-.11.04-.43-.42-.66-.65.39-.25.77-.51 1.18-.71.06-.03.28.26.57.55zM74.55 196.41c-.79.25-1.11.38-1.44.44-.59.11-.77-.33-.61-.73.08-.2.6-.3.93-.31.23 0 .46.23 1.13.59zM107.88 190.91c-.35.46-.62.82-.9 1.18l-.74-.63c.3-.3.58-.62.92-.87.08-.06.36.15.72.32zM119.39 67.53c-.58.08-1.01.18-1.45.18-.09 0-.3-.43-.25-.6.2-.73.83-.3 1.26-.36.08-.01.21.38.43.79zM132.56 66.41c-.36-.41-.7-.7-.88-1.07-.05-.1.42-.44.65-.67.26.38.54.75.75 1.15.03.06-.25.29-.53.6zM70.68 154.83c-.14.08-.33.25-.53.27-.65.06-.58-.46-.53-.84.03-.25.24-.66.41-.69.85-.11.52.6.65 1.25zM167.73 33.91c-.23-.24-.63-.47-.64-.72-.02-.64.56-.46.9-.42.22.03.52.29.59.51.24.8-.45.36-.85.62zM108.29 70.07c-.36-.24-.63-.41-.92-.57l-.64-.71c.29.19.57.36.89.61.08.06.34.34.66.67zM127.07 31.52c-.5.28-.9.52-1.32.7-.04.02-.38-.42-.34-.48.24-.34.52-.68.86-.92.06-.04.46.39.8.7zM105.27 250.03c.16.56.32.97.37 1.39.01.09-.38.35-.56.33-.76-.09-.4-.76-.53-1.18-.02-.08.34-.26.72-.54zM195.81 30.9c-.35-.41-.7-.71-.86-1.08-.05-.11.42-.44.65-.68.26.38.54.76.75 1.17.03.06-.26.29-.54.59zM71.05 96.19c.47-.28.81-.66 1.14-.64.81.04.36.74.43 1.16 0 .04-.32.23-.41.18-.37-.17-.71-.42-1.16-.7zM86.35 249.24c.2.3.47.54.43.67-.12.38-.37.72-.56 1.08l-.86-1.05c.27-.19.55-.39 1-.7zM74.15 163.4c-.4.38-.68.74-1.04.93-.1.05-.46-.41-.7-.64.37-.28.73-.57 1.12-.8.06-.04.31.25.62.51zM96.87 240.55c-.37.65-.61 1.05-.84 1.46l-.78-.5c.27-.33.52-.68.83-.97.09-.09.35 0 .79.01zM109.81 67.8c-.24-.4-.38-.65-.52-.89.02-.24.04-.47.08-.71.09.17.22.4.24.5.06.34.13.7.2 1.11zM107.07 235.08c-.36.48-.63.84-.91 1.2l-.79-.62c.35-.25.25-.96.91-.88.21.02.4.15.79.3zM69.13 98.33c.15.33.37.61.31.74-.18.36-.48.66-.73.99l-.68-1.18c.3-.15.6-.3 1.1-.54zM108.4 233.37c-.32.48-.57.86-.82 1.24l-.76-.57c.27-.32.52-.66.84-.93.08-.07.38.12.75.26zM156.25 32.24c.07.52-.04.95-.5 1.29-.43.32-.45.13-.55-.26-.09-.36-.33-.69-.5-1.03h1.54zM101.65 267.4c-.13.09-.3.28-.49.33-.63.14-.63-.37-.63-.75 0-.25.16-.67.33-.72.83-.21.59.52.79 1.14zM154.71 44.58c.69-.09 1.1.03 1.05.9-.04.86-.6.6-1.05.64v-1.54zM153.17 44.58c-.09-.69.03-1.1.9-1.05.86.04.6.6.64 1.05h-1.54zM75.4 81.56c-.38-.58-.56-1.14.27-1.47.19-.07.62-.01.64.06.06.27.04.58-.03.85-.06.21-.24.4-.36.59l-.51-.03zM105.14 94.53c.37-.24.72-.5 1.1-.67.08-.04.47.34.45.36-.24.39-.52.75-.79 1.11-.22-.24-.45-.47-.76-.8zM222.83 34.34c-.41.35-.71.7-1.08.86-.11.05-.44-.42-.68-.65.38-.26.76-.54 1.17-.75.06-.03.29.26.59.54zM159.34 36.87c-.69.09-1.1-.03-1.05-.9.04-.86.6-.6 1.05-.64v1.54zM180.19 63.08c.26.36.54.7.73 1.07.04.08-.32.48-.35.46-.4-.22-.78-.49-1.17-.75l.79-.79zM91.93 31.55c.41-.31.71-.54 1.02-.77.65.33 1.33.64 1.89 1 .08.05-.36.47-.45.45-.8-.18-1.6-.44-2.46-.67zM215.07 32.95c-.22.41-.36.8-.43.79-.44-.06-1.06.36-1.26-.36-.05-.18.15-.6.25-.6.43 0 .87.09 1.45.18zM214.45 43.72c-.37-.84-.55-1.08-.56-1.33-.02-.36-.19-.94.49-.87.19.02.47.39.49.61.03.31-.15.65-.42 1.59zM69.66 175.86c-.62-.43-1.01-.69-1.4-.96l.56-.76c.31.3.64.58.91.91.08.1-.02.35-.07.81zM86.03 223.63c-.79.27-1.1.41-1.43.48-.59.13-.78-.31-.63-.7.07-.2.59-.32.92-.33.23-.01.47.21 1.15.55zM160.91 65.46c-.39.25-.76.51-1.16.71-.05.02-.42-.38-.38-.45.2-.38.49-.72.74-1.07.24.24.47.48.8.81zM74.23 103.54c-.47.6-.76.97-1.05 1.35l-.69-.62c.32-.29.61-.61.96-.86.11-.08.35.05.78.13zM107.02 74.21c-.3-.35-.51-.6-.71-.84l.6-.33c.2-.1.39-.05.6-.07.02 0 .37.07.32.26-.21.35-.52.65-.81.99zM82.25 33.06c-.29.31-.46.49-.63.67l-2.43-1.16c.22-.09.47-.29.67-.24.8.19 1.57.47 2.38.73zM97.09 31.58c.94-.15 1.57-.29 2.24-.34.18-.01.49.22.74.35-.64.22-1.25.45-1.91.64-.06.02-.46-.28-1.07-.65zM195.87 33.78c-.32-.23-.64-.46-.95-.71-.01-.01.12-.3.2-.31.33-.04.66-.02 1 0 .06 0 .16.1.17.17.02.22.05.46 0 .67-.03.09-.26.12-.41.18zM72.78 151.45c-.16-.08-.4-.22-.64-.35.38-.25.76-.51 1.16-.74.01 0 .28.32.33.52.21.78-.42.41-.85.56zM70.11 162.67c.41.36.74.58.71.64-.2.43-.46.83-.7 1.23-.09-.13-.27-.27-.26-.39.03-.42.13-.82.25-1.48zM105.33 151.01c.28.4.63.68.59.91-.05.32-.39.59-.61.88-.21-.19-.59-.4-.58-.58.02-.32.28-.62.59-1.21zM73.9 71.33c-.22.2-.47.42-.72.64l-.7-.85.5-.33c.17-.14.35-.35.52-.52.06.2.12.5.19.62l.21.43zM107.02 71.59c.44.26.86.44.84.47-.02.04-.43-.04-.67-.06-.22-.12-.57-.28-.63-.38-.04-.07.29-.03.46-.03zM71.94 60.4c-.7.71-1.03 1.35-1.23 1.23-.27-.17-.42-.91-.63-1.42.33-.29.65-.77.98-.77.26 0 .54.58.87.97zM74.19 93.11c.28-.17.6-.53.82-.48.31.08.54.47.8.72-.25.23-.51.66-.75.65s-.47-.46-.87-.9zM76.64 95.4c-.36-.27-.57-.43-.77-.59.33-.22.64-.48.99-.64.09-.04.32.25.49.39-.21.25-.42.5-.71.85zM67.28 96.85c.21.27.64.6.59.78-.09.3-.49.51-.77.76-.21-.26-.63-.55-.59-.76.05-.28.45-.49.77-.78zM69.54 96.99c.34.19.68.36 1.01.57.15.1.28.24.42.36-.14.05-.29.1-.43.16l-1.05.48.06-1.57zM73.51 132.38c-.31.22-.6.53-.93.59-.16.03-.4-.43-.6-.67.3-.19.58-.48.9-.53.17-.03.4.37.64.61zM106.21 133.53c-.43.35-.67.63-.73.59-.4-.21-.76-.49-1.14-.75.16-.08.34-.24.49-.22.38.06.75.2 1.39.38zM73.35 136.91c.27-.19.57-.56.8-.51.31.06.56.44.83.69-.24.25-.48.68-.72.68s-.49-.43-.91-.86zM108.83 69.28l.76 1c.14.19.28.4.36.52.04.07-.05 0-.09-.06l-.68-.86c-.17-.22-.29-.41-.43-.61h.09zM80.96 59.72c-.41-.28-.95.93-1.23-.55-.05-.28.11-.64.23-.87.24-.45.46-.25.67.31.06.17.25.28.38.42l-.06.69zM72.53 124.98c.53.65.93.94.89 1.15-.05.28-.44.5-.68.74-.21-.31-.53-.6-.59-.93-.05-.27.23-.59.39-.96zM73.5 127.92c.09-.86.76-.52 1.16-.49.63.06.31.64.38 1.01l-1.54-.53zM107.74 202.61c.24.23.7.5.67.68-.06.3-.43.54-.67.81-.24-.22-.69-.45-.67-.66.02-.27.4-.51.68-.83zM78.6 208.16c-.1-.49-.24-.81-.2-1.1.04-.24.28-.45.44-.68.19.2.57.47.53.59-.13.36-.41.67-.77 1.19zM74.32 209.97c-.39-.34-.82-.54-.86-.8-.04-.22.37-.52.58-.78.27.25.68.45.77.75.06.2-.31.55-.49.83zM101.81 205.87c.3.38.67.65.65.88-.03.32-.35.62-.55.92-.22-.18-.61-.37-.61-.55 0-.32.24-.64.51-1.25zM108.06 205.54c.2.25.6.52.57.74-.04.31-.39.58-.61.86-.26-.22-.71-.42-.73-.66-.02-.24.39-.51.77-.95zM131.48 31.55c.35-.35.58-.76.84-.78.22-.02.48.41.72.64-.26.25-.49.64-.8.71-.2.05-.51-.36-.76-.57zM134.13 36.87h-.51c.06-.43-.94-.88 0-1.27.18-.07.47.06.68.16.39.21.33.44 0 .69-.1.08-.12.27-.17.41zM136.48 43.86c-.41.27-.71.61-.94.57-.32-.06-.6-.4-.89-.63.2-.2.42-.58.6-.56.32.03.62.29 1.22.62zM136.24 34.6c-.25.22-.56.67-.74.62-.3-.08-.52-.47-.77-.74.24-.22.51-.65.72-.62.27.04.49.43.79.74zM77.23 216.83c-.49.31-.73.46-.98.61-.11-.31-.93-.29-.43-.88.16-.18.47-.35.68-.32.22.03.4.31.72.58zM121.9 71.16c-.36-.43-.64-.66-.6-.73.21-.4.5-.77.76-1.14.08.16.25.34.23.49-.06.38-.2.75-.39 1.39zM75.74 195.16c-.37.28-.62.55-.7.5-.38-.21-.71-.51-1.05-.78.3-.08.61-.23.91-.21.23.02.45.25.84.49zM165.11 27.86c-.28-.34-.56-.53-.6-.76-.06-.29.07-.62.12-.93.29.3.62.59.86.93.06.08-.17.36-.38.76zM76.91 203.49c-.38-.34-.81-.54-.85-.8-.03-.22.38-.51.59-.78.27.25.67.45.76.75.06.2-.32.54-.51.82zM162.43 34.29c.43.06.88-.94 1.27 0 .07.18-.06.47-.16.68-.21.39-.44.33-.69 0-.08-.1-.27-.12-.41-.17v-.51zM105.2 201.96c.26-.2.54-.58.77-.55.31.04.58.39.87.61l-.68.77c-.26-.22-.52-.44-.96-.82zM206.95 44.78c-.6-.43-.92-.66-1.22-.91-.01 0 .12-.29.21-.3.33-.04.66-.02 1 0 .06 0 .15.1.17.17.05.15.11.32.08.46-.05.22-.16.43-.22.59zM84.91 239.94c.31.38.69.64.67.87-.02.33-.33.64-.52.96-.22-.18-.62-.35-.63-.54-.01-.33.22-.66.47-1.29zM220.07 37.09c-.27-.33-.5-.47-.53-.65-.09-.6.32-.66.77-.6.23.03.45.11.68.17-.28.34-.57.67-.92 1.08zM106.44 249.61s.02.26-.12.39c-.19.18-.94-.65-.96-1.09 0-.09.11-.23.2-.26.64-.2.89.1.88.96zM90.44 252.99c-.25.22-.5.62-.73.6-.31-.02-.61-.37-.91-.58l.63-.82c.27.21.54.42 1.01.79zM102.82 251.48c-.3.2-.58.54-.83.52-.33-.02-.64-.32-.96-.51.21-.27.38-.69.64-.76.2-.06.53.32 1.15.74zM108.44 254.11c-.4-.2-.63-.32-.86-.44.29-.27.55-.57.88-.78.08-.05.36.18.54.29-.17.27-.33.55-.56.93zM155.23 69.28c.85.08.52.76.49 1.15-.05.63-.64.32-1 .39l.51-1.54zM155.16 49.48c-.23-.4-.47-.67-.42-.75.24-.35.55-.65.84-.97.06.31.19.63.14.93-.04.23-.29.43-.56.79zM80.79 229.96c-.21-.55-.38-.92-.47-1.3-.02-.1.2-.26.31-.39.26.38.53.75.76 1.14.02.03-.25.24-.6.55zM118.26 71.07c-.17-.32-.47-.64-.42-.89.06-.32.4-.59.63-.89.24.24.64.46.68.73.03.21-.39.48-.88 1.04zM197.93 64.14c.23-.32.46-.64.71-.95.01-.01.3.12.31.2.04.33.02.66 0 1 0 .06-.1.16-.17.17-.22.02-.46.05-.67 0-.09-.03-.12-.26-.18-.41zM76.09 174.33c-.47.49-.71.93-.94.92-.26-.01-.5-.42-.76-.65.27-.25.52-.62.83-.7.24-.06.56.27.86.43zM85.73 232.76c.26.1.47.19.68.27-.27.26-.49.62-.81.72-.15.05-.47-.37-.71-.58.27-.13.55-.27.83-.41zM66.63 103.88c.14-.26.24-.47.35-.67.22.29.57.56.62.89.03.17-.43.44-.67.66l-.3-.88zM217.99 33l-.78.78-.7-.7c.31-.11.62-.26.95-.32.15-.02.33.14.53.23zM70.97 157.29c-.42.2-.66.4-.9.4-.13 0-.42-.41-.38-.46.15-.22.37-.43.61-.53.09-.04.3.26.67.59zM183.69 29.66s.2.14.35.26c-.24.24-.45.62-.73.68-.19.04-.47-.37-.71-.58.14-.12.26-.28.43-.34.15-.06.34-.01.67-.01zM112.07 225.79c-.19.11-.35.29-.5.28-.33-.02-.65-.14-.97-.21.21-.25.4-.68.63-.7.23-.02.5.36.84.63zM85.27 230.38c-.27-.1-.48-.18-.69-.27.26-.26.49-.63.8-.73.16-.05.47.37.72.58-.27.14-.55.27-.82.41zM104.96 167.2c.3-.32.52-.73.75-.74.23 0 .48.39.72.61-.31.12-.61.28-.93.34-.15.03-.33-.12-.54-.21zM100.39 252.71l.75.41-.6.77-.78-.6c.18-.17.37-.34.63-.58zM107.05 256.13c-.35-.28-.79-.47-.79-.68 0-.25.35-.51.55-.77.15.31.33.6.42.92.04.13-.1.32-.18.53zM224.81 34.88c-.25-.13-.45-.23-.65-.34.29-.22.56-.56.88-.63.16-.03.42.42.64.65-.29.1-.57.21-.87.32zM103.04 263.48c.09-.26.17-.47.24-.69.26.25.63.47.74.78.06.15-.35.47-.55.72-.14-.27-.29-.53-.43-.81zM226.05 46.12s-.2-.14-.35-.26c.24-.24.45-.62.73-.68.19-.04.47.37.71.58-.14.12-.26.28-.43.34-.15.06-.34.01-.67.01zM93.63 271.91c.33.25.6.45.86.64-.23.14-.44.36-.68.4-.22.03-.46-.14-.7-.22l.52-.81zM234.11 53.91c-.29-.46-.44-.71-.59-.95l1.17-.16c0 .17.09.38.02.5-.13.21-.34.36-.59.61zM66.98 99.93c.29.3.49.45.6.65.07.14.08.39 0 .52-.13.21-.35.35-.53.52-.08-.22-.21-.43-.22-.65-.01-.3.08-.61.14-1.04zM85.49 237.9c-.43.34-.65.52-.88.7l-.29-1.15c.17-.03.37-.13.49-.07.24.12.44.33.67.52zM218.81 43.42c.32.19.51.3.7.41-.24.24-.45.61-.73.68-.21.05-.52-.28-.79-.45.27-.21.54-.43.82-.65zM89.88 249.31c-.33.34-.56.77-.76.76-.28-.02-.54-.37-.81-.59.33-.13.65-.29.99-.36.15-.03.34.11.59.19zM106.36 161.02c-.36.37-.56.76-.81.79-.21.02-.47-.37-.71-.58.22-.12.42-.31.65-.34.25-.04.51.07.87.14zM108.26 247.05c-.33.34-.56.76-.76.74-.28-.02-.54-.37-.81-.57.33-.12.65-.28.99-.36.15-.03.34.1.59.19zM71.24 199.96c-.44.33-.67.5-.91.67l-.24-1.17c.17-.02.37-.12.5-.05.23.13.42.35.65.56zM205.7 32.85c-.2.21-.28.36-.39.39-.15.04-.39.04-.47-.05-.27-.3-.49-.64-.73-.97.09 0 .18-.03.25 0 .43.2.86.4 1.35.62zM78.64 194.53c-.26.32-.39.54-.57.67-.12.09-.37.12-.5.05-.21-.11-.38-.31-.56-.48.2-.1.4-.26.62-.29.29-.04.6.02 1.02.04zM105.08 186.13c.1.19.28.36.26.51-.04.32-.17.63-.27.95l-.73-.64c.22-.24.44-.48.74-.81zM74.55 197.98c.11-.27.19-.48.28-.7.25.27.62.5.71.82.05.17-.39.48-.6.72l-.39-.84zM77.18 197.47l.23-.37c.26.23.65.42.72.69.05.19-.34.5-.53.76-.13-.13-.3-.25-.37-.41-.07-.14-.04-.34-.06-.68zM67.85 118.06c.14-.25.24-.46.35-.66.22.3.54.58.61.91.03.16-.43.42-.66.64-.1-.29-.2-.59-.3-.89zM184.72 32.31c-.29-.46-.44-.71-.59-.95l1.17-.16c0 .17.09.38.02.5-.13.21-.34.36-.59.61zM69.19 176.88c.35.35.65.55.62.64-.08.25-.27.49-.48.65-.05.04-.47-.22-.48-.36-.01-.25.16-.5.33-.94zM107.57 175.37c-.08-.14-.25-.31-.23-.45.04-.32.18-.64.27-.96l.72.65c-.23.23-.46.45-.76.76zM82.39 224.09c-.14.09-.3.27-.45.26-.33-.02-.66-.14-.99-.22l.62-.77c.24.22.49.44.81.72zM206.45 32.28l-.76-.76c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.64.72zM70.73 209.28c.1-.27.19-.49.27-.7.26.27.63.5.73.81.05.17-.38.48-.59.73l-.4-.84zM74.07 185.9c-.27-.11-.48-.2-.68-.29.27-.25.5-.62.81-.71.17-.05.47.4.7.62l-.83.38zM78.93 211.03c-.09-.14-.26-.31-.25-.45.03-.34.14-.66.23-1l.75.65c-.22.24-.44.48-.73.81zM75.41 183.02c.31.27.53.4.66.59.09.13.12.38.05.51-.11.21-.31.38-.48.56-.1-.21-.25-.41-.28-.63-.04-.3.02-.61.05-1.04zM102.23 151.31c.31.35.71.63.67.82-.05.27-.42.49-.66.73-.09-.33-.22-.66-.26-1-.02-.15.14-.32.25-.55zM208.73 33l-.78.78-.7-.7c.31-.11.62-.26.95-.32.15-.02.33.14.53.23zM74.33 215.29c.1-.27.19-.49.27-.7.26.26.63.49.73.8.05.17-.38.48-.59.73l-.4-.83zM76.86 181.38c.31.27.53.4.66.59.09.13.12.38.05.51-.11.21-.31.38-.48.56-.1-.21-.25-.41-.28-.63-.04-.3.02-.61.05-1.03zM143.91 29.15c.08-.85.76-.52 1.15-.49.63.05.32.64.39 1l-1.54-.51zM74.04 33.94c-.42-.08-.67.01-.89-.21-.12-.12-.32-1.11-.28-1.17.17-.23.41-.37.65-.29.08.03.24.75.52 1.68zM161.61 67.35c-.32-.19-.51-.3-.7-.41.24-.24.45-.61.73-.68.21-.05.52.28.79.45l-.82.65zM76.58 70.51c-.3.68.93.81.07 1.31l-.55.27c-.04-.15-.11-.3-.11-.45 0-.36.03-.59.07-1.17l.51.04zM159.59 33.27c-.36.27-.51.47-.69.5-.59.08-.65-.34-.56-.77.02-.11.33-.26.46-.23.24.07.44.26.8.5zM74.42 64.08c.21-.1.41-.32.55-.24.31.17.6.48.89.72l-.76.93c-.2-.42-.41-.85-.68-1.42zM147.82 69.32l-.76-.76c.24-.11.49-.29.73-.29.22 0 .44.21.66.32l-.63.73zM175.8 30.69c-.25.42.99.63.16 1.13l-.53.3c-.05-.15-.13-.29-.14-.44-.02-.33 0-.66 0-.99h.51zM116.81 34.9c-.26-.13-.46-.23-.67-.33.28-.23.53-.59.85-.66.17-.04.44.42.67.65l-.85.33zM118.47 64.68l-.73-.73c.24-.11.48-.3.72-.3.23 0 .45.2.68.32l-.67.71zM124.74 69.71c.25.13.45.23.65.34-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32zM128.82 35.33s-.2-.14-.35-.26c.24-.24.45-.62.73-.68.19-.04.47.37.71.58-.14.12-.26.28-.43.34-.15.06-.34.01-.67.01zM130.88 69.71c.26.13.46.23.67.33-.28.23-.53.59-.85.66-.17.04-.44-.42-.67-.65l.85-.33zM89.4 31.35c-.34.3-.47.51-.74.63-.18.08-.6.1-.87.03-.43-.12-.82-.33-1.23-.5.32-.09.6-.23.98-.25.52-.02 1.1.05 1.87.09zM168.71 26.69c-.28.3-.42.51-.62.63-.13.08-.38.1-.51.02-.21-.12-.36-.33-.53-.51.21-.09.42-.23.63-.24.3-.02.6.05 1.02.1z"
|
|
1432
1598
|
}
|
|
1433
1599
|
),
|
|
1434
|
-
/* @__PURE__ */
|
|
1435
|
-
/* @__PURE__ */
|
|
1600
|
+
/* @__PURE__ */ jsx32("path", { fill: "#77CBB9", d: "M71.64 75.07L71.91 76.06 70.56 75.8 71.12 75.04 71.64 75.07z" }),
|
|
1601
|
+
/* @__PURE__ */ jsx32(
|
|
1436
1602
|
"path",
|
|
1437
1603
|
{
|
|
1438
1604
|
fill: "#77CBB9",
|
|
1439
1605
|
d: "M68.83 79.1c-.25-.01-.5 0-.74-.05-.23-.04-.45-.12-.68-.18l.33-.52c.24-.35.46-.37.71.02.07.11.27.14.41.2l-.03.52zM152.52 69.71c.25.13.45.23.65.34-.29.22-.56.56-.88.63-.16.03-.42-.42-.64-.65.29-.1.57-.21.87-.32zM156.43 42.24c-.21.3-.35.52-.5.73-.23-.23-.63-.46-.65-.7-.01-.22.4-.46.63-.69.15.2.31.4.51.66zM224.7 49.62c.15.19.35.38.47.61.05.09-.09.28-.14.42l-.87-.67c.13-.09.26-.17.54-.36zM106.26 158.05c-.17.11-.35.3-.42.26a2.11 2.11 0 01-.63-.48c-.02-.02.2-.27.31-.42.24.21.49.42.74.64zM141.66 66.13c-.11-.07-.32-.19-.3-.21.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71zM68.43 156.28c-.11-.23-.27-.46-.33-.71-.03-.11.14-.27.21-.4l.73.83c-.14.06-.28.13-.61.28zM196.82 28.84c.13-.34.18-.49.24-.63l.86.68c-.13.08-.28.26-.39.23-.25-.05-.48-.19-.71-.29zM78.93 171.29c-.24.09-.52.3-.63.23-.21-.13-.32-.42-.47-.64.15-.06.34-.21.43-.16.23.13.42.35.68.58zM197.16 32.27c-.11-.18-.29-.37-.25-.44.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89zM213.68 58.4c-.11-.07-.32-.19-.3-.21.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71zM170.1 26.85c.18-.11.36-.29.43-.26.23.12.44.31.62.51.02.03-.21.27-.32.42l-.73-.67zM110.65 69.32c-.08-.18-.17-.37-.18-.44-.05-.23-.08-.44-.08-.61 0-.05.09.1.13.16.04.29.08.58.13.89zM106.26 146.98c-.78-.28-1.09-.32-1.29-.5-.09-.08.07-.42.12-.64.18.1.37.19.52.31.13.11.22.27.64.82zM79.62 234.1c-.13-.22-.3-.43-.38-.67-.04-.11.11-.28.18-.42l.79.77c-.13.07-.27.15-.59.32zM191.06 29.25c-.34-.12-.56-.2-.78-.28.23-.11.46-.29.71-.32.21-.03.45.1.68.16-.21.15-.42.3-.6.44zM74.35 142.59c.25.24.49.47.73.69-.21.09-.54.3-.61.24-.2-.18-.29-.48-.4-.74 0-.02.2-.14.28-.19zM73.44 138.54c-.07.11-.19.32-.21.31-.26-.11-.55-.2-.73-.4-.07-.08.14-.41.23-.62.23.24.47.47.71.71zM84.68 30.64c-.13-.03-.58-.14-.58-.16.02-.26 0-.56.24-.74.09-.07.83.14 1.27.22-.3.22-.6.44-.93.68zM106.05 148.99c-.17.11-.35.29-.42.26-.24-.12-.45-.3-.63-.49-.02-.02.2-.27.31-.42.24.21.49.42.74.64zM71.95 201.76c-.18-.13-.39-.27-.6-.41.22-.07.45-.22.67-.2.24.02.47.18.71.28-.22.09-.43.18-.77.33zM106.23 198.57c-.14.34-.19.47-.25.61l-.88-.65c.07-.08.17-.25.22-.24.31.07.6.18.91.28zM109.17 212.38c-.03.06-.12.28-.14.27-.27-.08-.57-.14-.77-.32-.07-.06.11-.41.17-.62.24.22.48.43.74.67zM227.68 31.53c.23-.11.45-.26.7-.31.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62zM107.82 194.35c-.22.26-.43.51-.64.75-.1-.2-.33-.51-.27-.59.16-.2.45-.31.71-.43.02-.01.15.19.21.27zM80.25 196.16c-.24.1-.51.31-.63.24-.21-.13-.33-.41-.49-.63.14-.06.34-.22.42-.18.24.12.43.33.7.56zM70.84 196.73c-.03.06-.12.28-.14.28-.27-.09-.57-.16-.77-.35-.07-.07.11-.42.18-.64.24.23.47.46.73.71zM165.48 37.66c.18-.11.36-.29.43-.26.23.12.44.31.62.51.02.03-.21.27-.32.42l-.73-.67zM209.54 28.54c.28.12.48.21.69.3-.34.1-.67.24-1.01.28-.15.02-.32-.15-.49-.23.27-.12.55-.24.81-.36zM78.11 218.54c-.13-.22-.29-.43-.37-.68-.03-.11.12-.27.19-.41l.78.78c-.14.07-.27.14-.59.31zM109.97 215.49c-.47.26-.73.45-1.02.55-.11.04-.28-.13-.43-.2.16-.22.29-.45.49-.63.05-.05.28.07.95.28zM71.25 220.65c-.35-.09-.72-.17-1.05-.3-.04-.02.01-.3.02-.47l.54.11c.14.04.29.09.44.13l.05.52zM74.73 211.78c-.13.35-.19.49-.24.63l-.89-.66c.07-.09.16-.26.22-.25.31.07.61.18.92.28zM134.65 70.31l-.43.17-.53.16c-.02-.16-.1-.43-.06-.45.33-.16.68-.27 1.02-.39v.51zM133.82 33.75c-.08-.16-.19-.29-.2-.43-.05-.6.37-.59.78-.55.09 0 .16.15.24.23l-.82.75zM108.95 209.32c-.06.11-.16.32-.19.32-.27-.08-.57-.15-.76-.33-.07-.07.11-.4.18-.62.25.21.5.42.76.63zM70.73 214.09c-.17.13-.33.33-.41.3-.24-.11-.47-.28-.66-.47-.02-.02.18-.3.28-.45.26.2.51.41.78.62zM75.66 207.76c-.13-.22-.29-.44-.37-.68-.03-.11.12-.27.19-.41l.78.79c-.14.07-.27.14-.59.31zM70.07 207.82c-.03.06-.12.29-.14.28-.27-.08-.57-.15-.77-.34-.07-.07.11-.42.17-.64.24.23.48.45.74.7zM77.02 204.85c.18.13.39.27.6.41-.22.07-.45.22-.67.2-.24-.02-.47-.18-.71-.28.22-.09.43-.18.77-.33zM229.57 49.24c-.11-.18-.29-.37-.25-.44.13-.23.31-.44.52-.61.06-.05.27.1.41.16-.22.29-.44.58-.68.89zM103.8 176.35c-.23.24-.45.47-.68.7-.12-.14-.36-.38-.34-.41.17-.2.37-.39.6-.52.07-.04.26.14.42.23zM80.13 222.35c.31.15.45.22.59.29l-.76.79c-.07-.14-.23-.3-.2-.4.08-.25.25-.46.37-.68zM73.25 224.92c-.17.13-.33.33-.4.3-.25-.1-.47-.27-.67-.46-.03-.02.18-.3.28-.46.26.2.52.4.79.61zM84.02 225.45c-.03.06-.12.29-.14.28-.27-.08-.57-.14-.77-.32-.07-.07.1-.42.16-.64.24.22.48.44.75.68zM87.13 225.11c-.06.11-.16.33-.18.33-.27-.08-.57-.15-.76-.33-.07-.07.11-.42.17-.63.25.21.51.42.77.64zM73.64 90.85c.22.25.43.5.65.75-.15.11-.41.33-.44.3-.19-.19-.37-.41-.48-.66-.03-.07.16-.25.27-.4zM76.71 220.24c-.13-.22-.3-.43-.38-.68-.03-.11.12-.28.19-.42l.78.78c-.13.07-.27.14-.59.31zM76.63 190.04c-.07.11-.17.33-.2.32-.26-.09-.56-.17-.75-.36-.07-.07.12-.41.2-.63.24.22.49.44.75.67zM157.09 69.21c-.11-.07-.32-.19-.3-.21.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71zM71.71 182.57c-.24.1-.51.3-.61.23-.21-.13-.36-.4-.47-.64-.03-.07.15-.24.24-.37.26.24.52.48.85.78zM76.51 181.24c-.79-.26-1.11-.3-1.31-.47-.09-.08.05-.43.09-.66.18.1.38.18.54.3.14.11.23.27.68.83zM69.97 180.99c-.07.11-.17.33-.2.32-.26-.09-.56-.18-.75-.37-.07-.08.12-.42.2-.63l.75.69zM73.63 113.51c-.07.11-.2.32-.22.3-.26-.11-.55-.22-.72-.42-.07-.08.16-.4.25-.62.23.24.46.48.69.73zM76.72 74.57c-.04.06-.16.26-.18.26-.25-.12-.54-.23-.71-.44-.06-.08.17-.4.26-.61.2.26.41.51.63.79zM219.53 48.5c.12-.07.33-.24.57-.3.08-.02.24.22.36.34l-.92.67v-.71zM103.91 249.6c-.17.13-.33.33-.4.3-.24-.1-.48-.25-.67-.43-.05-.05.07-.28.11-.42.32.18.63.36.97.56zM84.31 66.13c.08.3.19.61.22.91.01.13-.17.27-.27.4l-.59-1.2c.15-.03.29-.05.64-.12zM73.53 123.22l-.43.17-.53.15c-.02-.16-.1-.44-.06-.46.33-.16.68-.26 1.02-.38v.52zM175.61 35.26c-.11-.07-.32-.19-.3-.21.11-.26.2-.55.4-.73.08-.07.4.15.61.23l-.71.71zM147.79 29.28c-.28-.16-.52-.29-.75-.42.3-.07.59-.19.89-.2.2 0 .41.16.61.25-.23.11-.46.23-.75.37zM75.17 112.02c-.04.06-.15.27-.17.26-.26-.11-.55-.21-.73-.41-.07-.07.15-.4.24-.62.21.25.43.5.66.77zM105.74 99.85l.66.72c-.15.1-.41.32-.44.29a2.11 2.11 0 01-.48-.63c-.03-.07.16-.24.26-.39zM69.26 104.84l.06-1.57c.69.55.67 1.06-.06 1.57zM88.51 244.07c-.13-.21-.31-.42-.39-.66-.04-.11.11-.28.17-.42l.8.75c-.13.07-.27.15-.58.33zM158.23 26.91c.23-.11.45-.26.7-.31.11-.02.26.14.39.22l-.83.71c-.06-.14-.12-.28-.26-.62zM108.06 69.28c-.23-.18-.44-.36-.66-.53-.07-.12-.27-.4-.2-.35.17.13.44.4.69.64.01.01.12.17.17.24zM92.61 246.34c-.16.13-.33.34-.4.31-.25-.09-.47-.25-.67-.43-.03-.02.18-.3.27-.46.26.19.52.38.8.58zM78.24 41.32c-.48-.09-.76-.07-1.04-.21-.1-.05-.23-.48-.35-.73.19-.17.36-.39.58-.46.06-.02.24.4.82 1.4zM88.39 246.77c.1-.28.18-.5.27-.71.12.29.29.57.34.87.03.21-.1.45-.16.67-.15-.27-.3-.55-.45-.83zM222.53 31.5l-.69.72c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28zM65.93 115.78c-.69-.54-.68-1.06.03-1.58l-.03 1.58zM101.18 263.91c-.26.12-.46.25-.68.29-.13.02-.28-.12-.42-.18.2-.11.39-.27.6-.32.12-.03.28.12.5.22zM76.33 113.33c.19.13.32.22.44.31-.21.08-.43.21-.65.23-.12.01-.25-.16-.38-.25.2-.1.41-.2.58-.29zM180.74 28.78c.47-.05.74-.09 1.02-.09.03 0 .06.21.09.32-.22.04-.44.11-.66.12-.08 0-.17-.13-.44-.35zM67.78 87.48c.03.29.07.52.05.75 0 .07-.22.12-.33.18-.05-.23-.12-.46-.12-.69 0-.06.21-.13.4-.24zM163.56 37.65c-.16.39-.22.53-.28.68-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19zM149.78 70.89c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM117.09 29.2c-.19-.13-.32-.21-.45-.3.21-.09.42-.22.64-.24.12-.01.26.15.39.24-.2.1-.41.21-.58.3zM90.08 244.74c.41.12.56.16.7.2-.13.13-.25.31-.41.37-.11.05-.29-.07-.43-.11.06-.19.11-.38.14-.47zM77.26 222.97c-.08.04-.25.14-.42.23-.07-.14-.22-.29-.2-.41.03-.17.18-.32.28-.48.07.14.15.27.35.66zM88.95 265.63c-.26.12-.46.26-.68.29-.13.02-.28-.12-.42-.19.2-.12.39-.27.6-.33.12-.03.28.12.5.22zM138.52 29.26c-.03-.08-.11-.26-.19-.44.14-.06.3-.19.42-.16.17.04.3.21.45.32-.14.06-.28.12-.68.28zM152.55 43.02c-.19-.12-.4-.19-.39-.25.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73zM77.21 185.01c.4.14.55.2.69.25-.14.12-.27.3-.43.35-.12.04-.28-.09-.43-.14l.17-.46zM69.96 204.96c-.17.01-.35.07-.5.03-.17-.05-.31-.2-.46-.31.14-.07.28-.16.42-.2.16-.04.33-.03.5-.04l.04.52zM130.75 64.72c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM76.93 213.64c-.26.1-.47.23-.69.26-.13.01-.27-.14-.41-.21.2-.1.4-.25.62-.3.12-.02.27.13.48.25zM105.2 200.41c-.1.19-.17.4-.23.4-.23 0-.45-.07-.68-.11.06-.12.1-.32.17-.33.22-.03.45.01.74.03zM97.72 250.23c-.09.2-.14.42-.2.42-.23.01-.46-.04-.69-.07.05-.12.08-.33.15-.34.22-.04.45 0 .74 0zM88.14 251.91c-.1.21-.17.35-.24.49-.11-.2-.27-.39-.32-.61-.03-.12.12-.28.19-.42l.37.54zM77.72 201.36l-.22-.44c.14-.07.29-.21.41-.19.17.03.31.19.47.29-.14.07-.27.14-.65.33zM72.42 105.7c-.08.03-.26.11-.45.18-.06-.15-.18-.31-.15-.43.05-.17.22-.3.34-.44.05.14.11.29.26.69zM69.71 201.71c-.28.06-.5.14-.73.14-.07 0-.14-.2-.22-.31.22-.08.44-.18.66-.21.06 0 .15.2.28.38zM91.4 273.31c-.27.02-.49.04-.72.03-.02 0-.06-.32-.05-.32.22-.05.44-.09.67-.1.02 0 .05.21.1.39zM69.21 72.82c-.17-.01-.36.02-.5-.04-.16-.08-.28-.24-.42-.37.15-.05.29-.12.45-.14.16-.02.34.01.5.03l-.03.52zM78.81 83.33c.03.28.07.52.05.74 0 .07-.22.12-.33.18-.05-.23-.12-.46-.12-.69 0-.06.21-.13.4-.24zM105.14 206.95c-.2-.11-.34-.18-.47-.26.21-.1.4-.24.62-.29.12-.02.27.13.41.2-.19.12-.39.24-.55.34zM108.54 74.68c.38.18.52.25.66.32-.15.1-.3.25-.47.29-.12.02-.27-.11-.41-.18.09-.17.18-.35.22-.42zM130.74 33.34c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM135.78 37.66c-.16.39-.22.53-.28.68-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19zM121.83 30.12c-.09.17-.19.37-.3.58-.09-.13-.25-.27-.24-.39.02-.22.15-.43.24-.64.09.13.17.26.3.45zM210.81 42.9c.02-.27.03-.49.07-.71 0-.02.32-.01.32 0 .02.22.03.45 0 .67 0 .02-.22.02-.39.04zM119.01 28.79c.47-.05.74-.09 1.02-.09.03 0 .06.21.09.32-.22.04-.44.11-.66.12-.08 0-.17-.13-.44-.35zM119.11 31.78c.16-.21.28-.37.4-.52.07.21.18.42.2.63 0 .11-.17.24-.26.35-.1-.14-.21-.28-.34-.46zM168.19 36.11c-.16.39-.22.53-.28.68-.11-.15-.28-.28-.32-.45-.03-.12.1-.28.16-.42.18.08.36.16.44.19zM201.74 64.71c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM72.63 86.6c.18.14.31.23.43.32-.22.08-.43.2-.65.21-.12 0-.25-.17-.38-.26.21-.1.42-.19.59-.27zM77.31 199.61c-.28.06-.5.14-.73.14-.07 0-.14-.2-.22-.31.22-.07.44-.18.66-.21.06 0 .15.2.28.38zM73.81 200c-.18-.08-.39-.17-.6-.26.12-.1.25-.27.37-.27.22 0 .44.13.66.2-.12.1-.25.19-.43.33zM98.56 249.03c-.21-.1-.35-.17-.49-.24.2-.11.39-.26.61-.31.12-.03.28.12.42.19l-.54.37zM127.86 70.8c-.19-.12-.4-.19-.39-.25.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73zM163.35 32.22c-.19-.12-.4-.19-.39-.25.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73zM166.44 66.17c-.19-.12-.4-.19-.39-.25.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.22-.05.45-.09.73zM123.03 32.31c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM156.79 38.27c.02-.27.03-.49.07-.71 0-.02.32-.01.32 0 .02.22.03.45 0 .67 0 .02-.22.02-.39.04zM72.12 152.87c-.28.05-.51.11-.73.1-.07 0-.13-.21-.2-.32.22-.06.44-.15.67-.17.06 0 .14.2.26.39zM69.03 152.62c-.11.19-.18.41-.24.4-.23-.01-.45-.09-.68-.15.06-.12.12-.33.19-.33.22-.02.46.04.74.08zM152.96 28.79c.47-.05.74-.09 1.02-.09.03 0 .06.21.09.32-.22.04-.44.11-.66.12-.08 0-.17-.13-.44-.35zM189.29 64.62c-.04-.28-.1-.51-.09-.73 0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25zM107.43 129.22c-.12.18-.2.39-.26.38-.23-.02-.45-.1-.67-.16.07-.11.13-.31.2-.31.22-.01.45.05.73.09zM69.17 158.91c-.11.2-.18.41-.24.41-.23 0-.45-.09-.68-.14.06-.12.12-.33.19-.33.22-.02.46.04.73.07zM141.89 31.66c-.09.17-.19.37-.3.58-.09-.13-.25-.27-.24-.39.02-.22.15-.43.24-.64.09.13.17.26.3.45zM72.05 124.56c-.27.08-.49.19-.71.19-.13 0-.26-.16-.39-.25.21-.09.42-.22.64-.24.12-.01.26.16.46.29zM154.19 71.37c-.2-.11-.33-.18-.46-.25.25-.1.49-.22.75-.29.05-.01.16.15.24.23-.19.11-.37.22-.53.31zM71.38 46.65c-.45-.21-.72-.31-.98-.48-.03-.02-.02-.42-.04-.65.22.06.44.08.65.21.08.05.14.35.37.92zM182.96 33.2c.13-.19.21-.32.3-.45.09.21.22.42.24.64.01.12-.15.26-.24.39-.1-.2-.21-.41-.3-.58zM106.91 153.88c-.04-.08-.12-.25-.2-.43.14-.06.3-.19.42-.16.17.04.3.2.45.3-.14.06-.28.12-.67.29zM106.89 126.05c.17.09.37.19.58.3-.13.08-.27.25-.39.23-.22-.03-.43-.15-.64-.24.13-.08.26-.17.45-.29zM80.18 34.63c.06.39.08.53.1.67-.3-.15-.68-.28-.89-.44-.15-.12-.07-.28-.09-.42.36.08.73.15.89.19zM75.03 140c-.12.19-.19.4-.25.4-.23-.01-.45-.1-.67-.16.06-.11.12-.32.19-.33.22-.02.45.05.73.08zM78.87 36.92c-.31-.28-.62-.51-.8-.73-.06-.07.21-.13.33-.2.29.22.62.44.85.67.06.06-.19.14-.38.26zM157.27 43.59c-.2-.11-.33-.18-.46-.25.25-.1.49-.22.75-.29.05-.01.16.15.24.23-.19.11-.37.22-.53.31zM161.81 27.59c-.19-.12-.4-.19-.39-.25.02-.23.1-.45.16-.67.11.06.32.12.32.19.01.23-.05.45-.09.73zM157.78 34.7c-.28.04-.51.1-.73.09-.07 0-.13-.21-.19-.32.22-.06.45-.14.67-.16.06 0 .14.2.25.39zM72.41 135.68c.12-.19.21-.33.29-.46.09.22.22.43.25.65.01.12-.15.26-.24.39-.11-.21-.21-.41-.3-.59zM215.31 37.65c.08-.03.26-.11.44-.19.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68zM84.8 231.69c-.26.11-.47.24-.69.27-.13.02-.27-.13-.41-.2.2-.11.4-.26.61-.31.12-.03.27.13.49.24zM66.41 95.31c.03.29.08.52.06.75 0 .07-.21.12-.33.19-.05-.23-.13-.46-.13-.69 0-.06.21-.13.4-.24zM111.39 233.49c-.26.11-.47.24-.69.27-.13.02-.28-.12-.41-.19.2-.11.39-.26.61-.3.12-.03.27.12.49.23zM103.08 260.27c.08.27.17.49.19.71 0 .07-.19.16-.29.23-.09-.21-.2-.42-.25-.64-.01-.06.18-.16.35-.3zM72.77 142.11c-.04-.08-.11-.27-.19-.45.14-.06.3-.19.42-.16.17.04.3.21.45.32-.14.06-.28.12-.67.29zM170.56 63.89c.08-.03.26-.11.44-.19.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68zM69.47 168.33c-.11.2-.18.41-.24.41-.23 0-.45-.09-.68-.14.06-.12.11-.33.18-.33.22-.02.46.03.74.06zM68.16 121.7c-.03-.08-.11-.27-.19-.46.14-.06.3-.19.42-.16.17.05.3.22.44.33-.14.06-.28.12-.68.28zM220.15 43.01c-.04-.28-.1-.51-.09-.73 0-.07.21-.13.32-.19.06.22.14.45.16.67 0 .06-.2.14-.39.25zM98.52 242.15c-.46.1-.73.17-1 .21-.03 0-.08-.2-.12-.31.21-.07.43-.16.65-.19.08-.01.19.11.48.3zM83.66 64.65c-.28-.04-.51-.03-.73-.11-.07-.03-.11-.3-.16-.46.22 0 .45-.04.67.02.06.01.12.29.21.56zM68.85 171.29c.4.15.54.21.69.26-.14.12-.27.29-.43.34-.12.04-.28-.09-.43-.14l.17-.46zM95.79 263.22c-.27.08-.49.17-.71.19-.07 0-.16-.19-.24-.29.21-.09.42-.2.64-.25.06-.01.16.18.31.35zM68.52 162.6c-.04-.08-.12-.26-.2-.45.14-.06.3-.2.42-.17.17.04.3.2.45.31-.14.06-.28.13-.67.31zM82.76 227.42c-.17.02-.35.08-.5.04-.17-.05-.31-.19-.47-.29.14-.07.27-.16.42-.21.16-.04.33-.04.5-.06l.05.52zM74.83 162.28c-.19-.11-.4-.18-.4-.25 0-.23.09-.46.14-.69.11.06.32.12.33.19.02.23-.04.46-.07.74zM110.62 70.07v-.19c.06.14.14.3.18.42.04.12.08.29.13.45-.06-.14-.12-.28-.3-.68zM220.6 58.02c-.13.19-.21.32-.3.45-.09-.21-.22-.42-.24-.64-.01-.12.15-.26.24-.39.1.2.21.41.3.58zM106.73 123.68c-.03-.08-.11-.26-.19-.44.14-.06.3-.18.42-.15.17.05.3.21.44.32-.14.06-.28.11-.68.27zM97.74 256.22l.71.19c-.13.13-.24.31-.4.38-.11.05-.29-.06-.44-.1.05-.19.11-.38.13-.46zM69.69 123.29c-.03-.08-.11-.27-.19-.45.14-.06.3-.19.42-.16.17.05.3.22.44.33-.14.06-.28.12-.68.28zM79.93 219.6c-.11.07-.21.15-.33.19-.04.01-.12-.09-.18-.15.11-.07.21-.16.33-.19.04-.01.12.09.18.15zM209.32 40.79l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM141.78 71.15l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM151.03 28.97l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM217.14 27.01l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM98.04 245.89c-.11-.05-.23-.09-.35-.14.05-.06.11-.18.15-.18.12.01.24.07.36.12-.05.06-.1.13-.16.2zM86.57 253.54c-.11-.05-.23-.09-.35-.14.05-.06.1-.19.15-.18.12.01.24.07.36.12-.05.06-.1.13-.16.21zM110.69 246.65c-.05.11-.09.23-.14.34-.06-.05-.18-.1-.18-.14.01-.12.07-.24.12-.36.06.05.13.1.2.16zM86.87 245.56c.05-.11.1-.23.14-.35.06.05.18.11.18.15-.01.12-.08.24-.12.36-.06-.05-.13-.1-.2-.16zM88.44 269.81l-.27.28c-.05-.1-.16-.27-.13-.3.09-.1.24-.14.36-.21l.03.23zM111.72 231.82c.06-.07.11-.14.16-.2.07.11.16.2.2.32.01.04-.09.12-.14.18l-.22-.3zM103.84 255.96c-.08-.06-.14-.11-.2-.16.11-.07.21-.16.32-.2.04-.01.12.09.19.14l-.31.22zM112 224.35c.05-.11.1-.23.15-.34.06.05.18.11.18.15-.02.12-.08.23-.13.35-.06-.05-.12-.1-.2-.16zM141.78 68.58l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM108.08 250.55c-.05.11-.09.23-.14.35-.06-.05-.18-.1-.18-.14.01-.12.07-.24.12-.36.06.05.13.1.2.16zM134.61 37.17c-.06.06-.14.17-.16.16-.11-.06-.21-.15-.31-.23l.23-.23.24.3zM212.84 37.63c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.35-.16.04 0 .11.1.17.16zM228.09 34.36l.18.18c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18zM141.77 28.97l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM226.47 27.09c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM78.77 224.34c-.05.11-.1.23-.15.35-.06-.05-.18-.11-.18-.16.01-.12.08-.24.13-.36.06.05.13.1.2.17zM68.6 212.78c.05-.11.1-.23.15-.35.06.05.18.12.17.16-.02.13-.08.24-.13.36-.06-.05-.12-.11-.2-.17zM156.95 40.91l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM82.96 226.4c.07.05.18.13.17.15-.05.12-.13.22-.2.33l-.25-.21.27-.27zM135.34 29.08l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM159.93 68.58l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM94.83 267.8c-.04.12-.09.23-.13.35-.06-.05-.19-.1-.18-.14 0-.12.07-.24.11-.37.06.05.13.1.21.16zM212.59 40.98c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM212.4 59.17l.18-.18c.06.11.13.22.16.35 0 .04-.1.11-.16.17l-.18-.33zM142.63 70.31c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM210.27 31.46c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.35-.16.04 0 .11.1.17.16zM80.26 225.58c.07.11.16.21.19.33.01.04-.09.12-.14.19-.07-.11-.16-.21-.19-.33-.01-.04.09-.12.14-.19zM212.51 62.14l.33.18c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18zM110.98 222.6c.07.11.15.21.19.32.01.04-.09.12-.14.18-.07-.11-.15-.21-.19-.32-.01-.04.09-.12.14-.18zM87.71 264.71c-.11.07-.2.16-.32.21-.04.02-.13-.09-.19-.14.1-.07.2-.16.32-.21.04-.02.13.09.19.14zM211.04 64.13c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM222.1 28.89c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.35-.16.04 0 .11.1.17.16zM151.04 71.15l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM217.14 42.08l.33.18c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18zM136.89 73.32l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM223.2 36.16l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM214.31 39.25l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM224.6 43.73l-.18.33c-.06-.06-.17-.13-.16-.17.03-.12.1-.23.16-.35l.18.18zM223.39 42.52c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM70.38 217.38c-.06.08-.11.14-.17.2-.07-.11-.15-.22-.19-.34-.01-.04.09-.12.15-.19.07.11.14.22.21.32zM103.68 252.64c-.05.11-.09.23-.14.35-.06-.05-.18-.1-.18-.15.01-.12.07-.24.12-.36.06.05.13.1.2.16zM84.84 242.04l-.28.27c-.04-.1-.15-.27-.12-.3.1-.09.24-.14.37-.2l.03.23zM79.33 213.31c-.05.11-.1.23-.15.35-.06-.05-.18-.11-.17-.16.02-.12.08-.24.13-.36.06.05.12.11.2.17zM69.73 126.25c-.11-.06-.22-.13-.33-.19.06-.06.13-.17.17-.16.12.03.23.11.34.17l-.18.18zM65.73 124.53c-.07.07-.13.13-.18.19-.06-.12-.13-.23-.16-.35 0-.04.1-.11.16-.17.06.11.12.23.18.34zM108.94 71.37c-.07-.03-.12-.06-.18-.09-.05-.05-.13-.12-.15-.15 0-.01.1.05.16.08l.17.16zM76.19 53.99c-.07.07-.14.13-.2.19-.04-.21-.1-.42-.11-.63 0-.07.11-.12.18-.18.05.21.09.42.13.62zM77.42 57.88l-.2.2c-.04-.2-.1-.4-.11-.59 0-.07.11-.12.18-.18.05.2.09.39.14.58zM72.71 120.01c-.07-.07-.12-.13-.18-.19.12-.06.23-.13.35-.16.04 0 .11.11.17.17-.11.06-.23.12-.33.18zM69 119.85c.06-.11.13-.22.19-.33.06.06.17.13.16.17-.03.12-.11.23-.17.35-.06-.06-.11-.12-.18-.19zM69.6 57.5c-.1-.15-.2-.3-.3-.46.06-.08.15-.26.19-.23.11.1.21.28.31.42-.06.08-.13.17-.2.27zM186.43 67.14l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM178.71 29.07l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM69.27 62.96c-.08.11-.14.2-.2.29-.04-.22-.1-.44-.11-.67 0-.08.12-.18.18-.27.04.22.09.44.13.65zM107.12 114.27c-.12.05-.23.13-.35.15-.04 0-.11-.1-.17-.16.12-.05.23-.13.35-.15.04 0 .11.1.17.16zM76.15 110.32c.07.07.12.13.18.19-.12.06-.23.13-.35.15-.04 0-.11-.11-.17-.17.11-.06.23-.12.34-.18zM174 33.26c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM173.93 27.02l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM105.34 140.37l-.18.33c-.06-.06-.17-.12-.16-.16.03-.12.1-.23.16-.34.06.06.12.11.18.18zM71.46 140.68l-.3.24c-.03-.11-.12-.29-.09-.32.11-.08.26-.11.39-.16v.23zM71.75 139.96c.06.06.17.14.16.16-.06.11-.15.21-.23.32l-.23-.23.3-.25zM110.05 71.08l.1.16s-.1-.11-.15-.16c-.04-.06-.09-.13-.1-.16 0 0 .1.1.15.16zM71.87 137.12c-.07.07-.12.13-.18.19-.06-.12-.14-.23-.16-.35 0-.04.1-.11.16-.17.06.11.13.23.19.34zM79 38.39c-.07.1-.14.21-.21.32-.05-.14-.14-.36-.13-.41.04-.16.12-.25.19-.36.05.14.09.28.15.46zM106.91 135.4c-.11.06-.22.13-.34.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.34-.16.04 0 .11.1.17.16zM106.47 132.31c.07-.07.13-.12.18-.18.06.11.13.22.16.34 0 .04-.1.11-.16.17-.06-.11-.12-.22-.18-.32zM190.8 65.34l.18-.18c.06.11.13.22.16.35 0 .04-.1.11-.16.17l-.18-.33zM71.76 130.59c.07.07.13.13.18.19-.11.06-.23.14-.35.16-.04 0-.11-.11-.17-.16l.33-.18zM68.43 75.74c-.07.07-.13.12-.2.18-.05-.12-.12-.24-.14-.36 0-.04.11-.11.17-.16.05.12.11.24.16.35zM183.19 66.78l.33.18c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18zM108.49 77.99c-.07.1-.14.21-.2.31-.05-.06-.16-.13-.15-.17.03-.12.12-.22.18-.33.05.06.11.12.17.19zM180.25 27.02l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM66.43 92.74c.07.07.12.13.18.19-.12.05-.23.13-.35.15-.04 0-.11-.11-.16-.17.11-.06.23-.12.34-.17zM67.3 77.25c-.07.07-.13.12-.19.18-.05-.12-.12-.24-.14-.36 0-.04.11-.11.17-.16.06.12.11.24.17.35zM70.18 91.58c-.07.07-.13.12-.19.18-.05-.12-.13-.23-.15-.36 0-.04.11-.11.17-.17.06.12.12.23.17.35zM108.32 81c-.06.1-.13.21-.2.31-.05-.06-.16-.13-.15-.17.03-.12.12-.22.18-.33.05.06.11.12.17.19zM106.13 91.38c.07.07.12.13.17.19-.12.05-.23.12-.35.14-.04 0-.11-.11-.16-.17.11-.06.23-.11.34-.16zM66.72 86.43c.07.07.12.13.17.2-.12.05-.23.13-.35.15-.04 0-.11-.11-.16-.17.11-.06.23-.12.34-.17zM68.17 81.96c-.12.05-.23.12-.35.15-.04 0-.11-.11-.16-.17.12-.05.23-.12.35-.15.04 0 .11.11.16.17zM67.81 85.28c-.1-.07-.21-.13-.32-.2.06-.06.14-.17.18-.16.12.03.23.12.34.18-.06.06-.12.11-.19.18zM107.2 72.44c.07.03.12.05.18.07-.12 0-.24-.02-.34-.03-.04 0-.11-.04-.17-.06.11 0 .22.02.33.02zM68.9 68.62c-.08.12-.14.22-.2.32-.04-.22-.11-.43-.12-.65 0-.08.12-.19.18-.29.05.21.1.43.14.63zM71.11 68.6c.08-.11.14-.2.2-.3.04.21.11.4.12.62 0 .07-.12.18-.18.28-.05-.2-.1-.4-.14-.6zM66.07 105.61c-.07.07-.13.13-.19.18-.05-.12-.13-.23-.15-.36 0-.04.11-.11.17-.17.06.12.12.23.17.34zM105.57 106.35c-.11-.06-.22-.13-.32-.19.06-.05.13-.16.17-.15.12.03.23.11.34.17-.06.05-.12.11-.19.17zM67.55 70.61c.05.12.12.24.14.36 0 .04-.11.11-.17.16-.05-.12-.12-.24-.14-.36 0-.04.11-.11.17-.16zM66.18 102.46c-.07.07-.13.12-.19.18-.05-.12-.13-.23-.15-.36 0-.04.11-.11.17-.17.06.12.12.23.17.34zM180 67.03l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM66.13 98.96c.05.12.13.23.15.36 0 .04-.11.11-.17.17-.05-.12-.13-.23-.15-.36 0-.04.11-.11.17-.17zM183.44 26.91l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM105.8 97.85c.05.11.13.22.15.34 0 .04-.11.11-.17.16-.05-.11-.13-.22-.15-.34 0-.04.11-.11.17-.16zM68.44 195.14c.11.05.23.11.34.17-.05.06-.11.18-.16.17-.12-.02-.24-.09-.36-.14.05-.06.11-.12.17-.2zM166.21 31.28l.33.18c-.06.06-.13.17-.17.16-.12-.03-.23-.1-.35-.16l.18-.18zM168.09 66.96c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.35-.16.04 0 .11.1.17.16zM79.02 193.16c.05-.11.11-.23.16-.35.06.05.18.12.17.16-.02.12-.09.24-.14.36-.06-.05-.12-.11-.2-.17zM123.26 71.01l-.18.33c-.06-.06-.17-.13-.16-.17.03-.12.1-.23.16-.35l.18.18zM69.42 192.9l-.26-.3c.11-.04.28-.14.3-.11.09.1.13.25.18.39h-.23zM80.46 191.51c.05-.11.11-.23.16-.34.06.05.18.12.17.16-.02.12-.09.24-.14.36-.06-.05-.12-.11-.2-.17zM77.74 191.68c-.06.07-.12.13-.17.2-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18.07.11.14.22.21.32zM107.02 188.81c-.11.06-.22.14-.34.18-.04.01-.12-.09-.18-.15.11-.06.22-.14.34-.18.04-.01.12.09.18.15zM108.39 186.78c-.07.07-.12.13-.17.19-.06-.11-.15-.21-.18-.33-.01-.04.1-.12.15-.17.07.11.13.21.2.31zM77.64 188.48c-.11.06-.22.15-.34.18-.04.01-.12-.1-.18-.15.11-.06.22-.15.34-.18.04-.01.12.1.18.15zM78.91 186.67c.07.07.13.12.19.17-.11.06-.22.15-.34.18-.04.01-.12-.1-.18-.15.11-.07.22-.14.32-.2zM69.66 187.18c.07.07.13.12.19.18-.11.06-.22.15-.34.18-.04.01-.12-.1-.18-.15.11-.07.22-.14.32-.2zM108.24 184.12c-.05.11-.11.22-.17.33-.06-.05-.18-.11-.17-.16.02-.12.09-.23.14-.35.06.05.12.11.19.17zM105.23 184.11l.54.48-.54-.48zM105 184.12l-.25-.29c.11-.04.28-.13.31-.1.09.1.12.25.18.37h-.23zM80.71 211.26c-.06.07-.11.14-.17.2-.07-.11-.15-.21-.19-.33-.01-.04.09-.12.15-.18.07.11.14.21.21.32zM75.63 210.48c.06-.08.11-.14.17-.2.07.11.15.22.19.34.01.04-.09.12-.15.18-.07-.11-.14-.22-.21-.32zM133.8 30.11l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM132.77 34.74l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM68.08 206.49c.05-.11.1-.23.16-.35.06.05.18.12.17.16-.02.13-.08.24-.13.36-.06-.05-.12-.11-.2-.17zM130.97 30l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM75.31 204.04c.06.11.15.22.18.34.01.04-.1.12-.15.18-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18zM129.06 28.97l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM69.92 204.44l.48-.56-.48.56zM80.02 202.46l-.17.2c-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18.07.11.14.22.21.32zM73.66 202.59c.06.11.15.22.18.34.01.04-.1.12-.15.18-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18zM68.1 203.06c.07.07.13.12.2.17-.11.07-.21.15-.33.19-.04.01-.12-.1-.18-.15.11-.07.21-.14.32-.21zM80.87 198.66l-.29.26c-.04-.11-.14-.28-.11-.31.1-.09.25-.13.38-.18l.02.23zM72.01 198.32l-.17.2c-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18.07.11.14.22.21.32zM69 198.45c-.11.07-.21.15-.33.19-.04.01-.12-.1-.18-.15.11-.07.21-.15.33-.19.04-.01.12.1.18.15zM205.05 26.9l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM204.95 67.14l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM95.48 30.11c-.15-.07-.28-.13-.41-.18.19-.06.36-.13.58-.16.07 0 .25.1.37.16l-.54.18zM195.79 26.91l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM107.1 159.38c.07.07.13.12.19.17-.11.06-.22.14-.34.17-.04.01-.11-.1-.17-.15.11-.06.22-.13.33-.19zM106.88 156.37c.11.06.22.11.34.17-.06.06-.12.17-.17.16-.12-.02-.23-.1-.35-.15l.18-.18zM110.38 70.24c-.04-.07-.08-.13-.11-.18-.01-.06-.03-.13-.03-.16 0 0 .07.1.1.16l.04.18zM89.83 30.12c-.16-.07-.29-.12-.43-.18.18-.06.34-.14.55-.16.07 0 .26.1.39.16-.17.06-.35.13-.51.19zM195.69 64.05l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM172.27 28.97l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM68.39 149.72c-.07.07-.12.13-.18.19-.06-.12-.14-.23-.17-.35-.01-.04.1-.12.16-.18.06.11.13.23.19.33zM174.08 67.14l-.33-.18c.06-.06.13-.17.17-.16.12.03.23.1.35.16l-.18.18zM69.61 184.15c-.05.11-.11.23-.16.35-.06-.06-.18-.12-.17-.16.02-.12.09-.24.14-.36.06.06.12.11.19.18zM115.54 70.13l-.18.18c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17l.18.33zM73.96 182.16c.06.11.15.22.18.34.01.04-.1.12-.15.18-.06-.11-.15-.22-.18-.34-.01-.04.1-.12.15-.18zM107.91 177.74c-.07.07-.12.13-.17.19-.06-.11-.15-.21-.18-.33-.01-.04.1-.11.15-.17.07.11.13.21.2.31zM112.09 30l.18-.33c.06.06.17.13.16.17-.03.12-.1.23-.16.35l-.18-.18zM198.77 26.65l.18.18c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16l.33-.18zM198.7 67.21c-.06-.11-.13-.22-.16-.35 0-.04.1-.11.16-.17.06.11.13.22.16.35 0 .04-.1.11-.16.17zM171.18 66.96c-.11.06-.22.13-.35.16-.04 0-.11-.1-.17-.16.11-.06.22-.13.35-.16.04 0 .11.1.17.16zM107.05 165.68c.06-.11.11-.22.17-.33.06.05.17.12.17.16-.02.12-.09.23-.15.34-.06-.05-.12-.11-.19-.17zM101.04 29.75c.21.06.43.12.66.18-.09.06-.19.17-.27.16-.23-.03-.45-.1-.67-.16.09-.06.18-.11.29-.18zM124.25 49.16s-.35-.15-.38-.36c-.09-.57.72-1.25 1.26-1.1.12.03.23.31.24.47.03.57.13 1.22-1.12.99zM123.85 43.04v1.03c-.26.17-.55.51-.76.47-.27-.05-.51-.4-.68-.67-.04-.07.19-.41.35-.49.34-.16.72-.23 1.09-.34zM118.19 41.5h.51c-.06.43.94.88 0 1.27-.18.07-.47-.06-.68-.16-.39-.21-.33-.44 0-.69.1-.08.12-.27.17-.41zM113.89 44.3c-.2-.42-.31-.56-.32-.69-.05-.6.37-.59.78-.55.09 0 .24.2.23.22-.19.32-.41.62-.69 1.02zM112.29 43.08c-.11-.18-.29-.36-.26-.43.12-.23.31-.44.51-.62.03-.02.27.21.42.32l-.67.73zM201.7 44.13c-.94.27-1.28.45-1.59.42-.23-.02-.59-.3-.61-.49-.07-.68.51-.51.87-.49.25.01.49.19 1.33.56zM202.88 39.32c-.43.36-.66.64-.73.6-.4-.21-.77-.5-1.14-.76.16-.08.34-.25.49-.23.38.06.75.2 1.39.39zM199.12 42.49c-.32.21-.59.38-.85.55-.12-.18-.37-.43-.32-.52.19-.37.48-.68.73-1.02l.44.99zM199.88 40.74c.08-.03.26-.11.44-.19.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68zM201.98 46.16c-.19-.13-.32-.21-.45-.3.21-.09.42-.22.64-.24.12-.01.26.15.39.24-.2.1-.41.21-.58.3zM201.42 42.28c.08-.03.26-.11.44-.19.06.14.19.3.16.42-.04.17-.21.3-.32.45-.06-.14-.12-.28-.28-.68zM195.56 43.11c-.08-.27-.19-.49-.19-.71 0-.13.16-.26.24-.39.09.21.22.42.24.64.01.12-.15.26-.29.46zM91.51 63.41l-1.5-.73c-.04-.73.29-1.25.93-.87.45.27.77 1.08.56 1.59zM91.84 60.04c-.41.02-.66.04-.91.07l-.59-1.6c.17.03.4 0 .49.11.34.44.64.92 1 1.42zM92.34 60.95c.27.43.46.66.56.9.07.16.07.37-.01.43-.13.11-.35.12-.53.17-.07-.23-.19-.48-.19-.68 0-.27.09-.49.17-.82zM93.31 59.6c-.08.04-.2.13-.22.1-.24-.27-.51-.55-.66-.85-.06-.12.17-.24.26-.36.21.36.41.73.62 1.1zM89.06 55.02c-.27-.17-.49-.28-.7-.46-.07-.06-.1-.32-.16-.49.22.11.43.19.65.35.06.04.11.31.21.6zM196.57 56.34l-.18-.18c.11-.06.22-.13.35-.16.04 0 .11.1.17.16l-.33.18zM124.11 37.15c.3-.78.35-1.09.53-1.28.08-.09.43.08.65.13-.11.17-.19.37-.33.52-.11.13-.28.21-.85.64zM95.16 78.03l-.08 1.53c-.71.05-1.39-.27-1.34-.93.04-.46.77-.8 1.42-.6zM95.34 75.73c-.19.1-.39.26-.45.22-.22-.14-.42-.34-.57-.55-.04-.06.12-.26.19-.4.27.24.55.47.84.73zM85.33 88.8c-.74-.73-1.13-1.07-1.44-1.48-.04-.05.31-.58.48-.58.41 0 1.06-.25 1.04.58-.02.34-.03.67-.07 1.49zM86.68 85.06c.17.36.39.64.33.72-.25.34-.58.62-.88.93l-.65-.73c.37-.28.73-.56 1.2-.91zM96.45 236.98c-.04-.08-.14-.25-.24-.42.13-.07.28-.22.4-.2.17.03.32.17.48.27-.13.07-.27.15-.64.35zM169.01 47.61s-.35-.15-.38-.36c-.09-.57.72-1.25 1.26-1.1.12.03.23.31.24.47.03.57.13 1.22-1.12.99zM166.66 48.77c.61-.48.94-.75 1.27-1.01.23.32.6.62.65.97.08.65-.51.48-.87.47-.25-.01-.48-.19-1.04-.42zM150.6 58.47h.51c-.06.43.94.88 0 1.27-.18.07-.47-.06-.68-.16-.39-.21-.33-.44 0-.69.1-.08.12-.27.17-.41zM153.3 60.92c-.27.18-.58.55-.8.5-.31-.06-.55-.44-.83-.68.24-.24.48-.67.73-.67s.48.43.9.85zM80.11 154.03c-.42.21-.55.33-.69.34-.6.06-.6-.36-.57-.77 0-.09.19-.25.22-.24.32.19.63.4 1.04.67zM77.77 155.96c-.19-.11-.4-.19-.4-.25 0-.23.09-.46.14-.68.11.06.32.12.33.19.02.23-.04.46-.07.74zM173.23 51.78v-.51l1.54-.51c0 .16.04.33 0 .47-.33.93-.64 1.04-1.54.56zM87.25 58.45l-.05.56c-.4-.32-.92.57-1.21-.71-.05-.24.1-.51.22-.68.23-.32.45-.1.66.4.07.16.25.29.38.43zM112.45 36.03l-.18.33c-.06-.06-.17-.13-.16-.17.03-.12.1-.23.16-.35l.18.18zM143.9 46.91c.2-.2.35-.43.57-.54.13-.07.46 0 .51.08.2.42.34.87.46 1.32.01.05-.35.27-.38.24-.4-.35-.77-.73-1.14-1.1zM146.91 48.49l-.69.72c-.08-.21-.3-.54-.23-.61.18-.2.47-.29.73-.39.02 0 .13.2.19.28zM100.27 196.7s-.13.35-.33.4c-.56.13-1.3-.63-1.18-1.17.02-.12.29-.25.46-.27.56-.07 1.21-.21 1.06 1.04zM113.66 54.08c-.27-.32-.63-.63-.58-.7.22-.37.54-.67.82-.99.23.32.56.61.64.97.03.14-.48.41-.88.73zM95.11 209.75l-1.54.13-.13-1.53q1.52-.1 1.67 1.41z"
|
|
1440
1606
|
}
|
|
1441
1607
|
),
|
|
1442
|
-
/* @__PURE__ */
|
|
1608
|
+
/* @__PURE__ */ jsx32(
|
|
1443
1609
|
"path",
|
|
1444
1610
|
{
|
|
1445
1611
|
fill: "#77CBB9",
|
|
@@ -1447,21 +1613,21 @@ var Icons = {
|
|
|
1447
1613
|
transform: "rotate(-4.74 92.929 210.782)"
|
|
1448
1614
|
}
|
|
1449
1615
|
),
|
|
1450
|
-
/* @__PURE__ */
|
|
1616
|
+
/* @__PURE__ */ jsx32(
|
|
1451
1617
|
"path",
|
|
1452
1618
|
{
|
|
1453
1619
|
fill: "#77CBB9",
|
|
1454
1620
|
d: "M93.48 208.73c-.77-.48-1.18-.73-1.58-.98.26-.29.48-.64.79-.85.09-.06.55.23.65.44.13.3.08.68.14 1.39zM160.89 50.76h1.54c.09.71-.19 1.41-.86 1.39-.47-.01-.85-.72-.69-1.39z"
|
|
1455
1621
|
}
|
|
1456
1622
|
),
|
|
1457
|
-
/* @__PURE__ */
|
|
1623
|
+
/* @__PURE__ */ jsx32(
|
|
1458
1624
|
"path",
|
|
1459
1625
|
{
|
|
1460
1626
|
fill: "#77CBB9",
|
|
1461
1627
|
d: "M107.39 225.49L105.85 225.64 105.7 224.13 107.75 223.93 107.39 225.49z"
|
|
1462
1628
|
}
|
|
1463
1629
|
),
|
|
1464
|
-
/* @__PURE__ */
|
|
1630
|
+
/* @__PURE__ */ jsx32(
|
|
1465
1631
|
"path",
|
|
1466
1632
|
{
|
|
1467
1633
|
fill: "#77CBB9",
|
|
@@ -1469,15 +1635,15 @@ var Icons = {
|
|
|
1469
1635
|
}
|
|
1470
1636
|
)
|
|
1471
1637
|
] }),
|
|
1472
|
-
supabaseColorful: (props) => /* @__PURE__ */
|
|
1473
|
-
/* @__PURE__ */
|
|
1638
|
+
supabaseColorful: (props) => /* @__PURE__ */ jsxs21("svg", { viewBox: "0 0 109 113", width: "109", height: "113", fill: "none", ...props, children: [
|
|
1639
|
+
/* @__PURE__ */ jsx32(
|
|
1474
1640
|
"path",
|
|
1475
1641
|
{
|
|
1476
1642
|
d: "M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z",
|
|
1477
1643
|
fill: "url(#paint0_linear)"
|
|
1478
1644
|
}
|
|
1479
1645
|
),
|
|
1480
|
-
/* @__PURE__ */
|
|
1646
|
+
/* @__PURE__ */ jsx32(
|
|
1481
1647
|
"path",
|
|
1482
1648
|
{
|
|
1483
1649
|
d: "M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z",
|
|
@@ -1485,15 +1651,15 @@ var Icons = {
|
|
|
1485
1651
|
fillOpacity: "0.2"
|
|
1486
1652
|
}
|
|
1487
1653
|
),
|
|
1488
|
-
/* @__PURE__ */
|
|
1654
|
+
/* @__PURE__ */ jsx32(
|
|
1489
1655
|
"path",
|
|
1490
1656
|
{
|
|
1491
1657
|
d: "M45.317 2.07103C48.1765 -1.53037 53.9745 0.442937 54.0434 5.041L54.4849 72.2922H9.83113C1.64038 72.2922 -2.92775 62.8321 2.1655 56.4175L45.317 2.07103Z",
|
|
1492
1658
|
fill: "#3ECF8E"
|
|
1493
1659
|
}
|
|
1494
1660
|
),
|
|
1495
|
-
/* @__PURE__ */
|
|
1496
|
-
/* @__PURE__ */
|
|
1661
|
+
/* @__PURE__ */ jsxs21("defs", { children: [
|
|
1662
|
+
/* @__PURE__ */ jsxs21(
|
|
1497
1663
|
"linearGradient",
|
|
1498
1664
|
{
|
|
1499
1665
|
id: "paint0_linear",
|
|
@@ -1503,12 +1669,12 @@ var Icons = {
|
|
|
1503
1669
|
y2: "71.8295",
|
|
1504
1670
|
gradientUnits: "userSpaceOnUse",
|
|
1505
1671
|
children: [
|
|
1506
|
-
/* @__PURE__ */
|
|
1507
|
-
/* @__PURE__ */
|
|
1672
|
+
/* @__PURE__ */ jsx32("stop", { stopColor: "#249361" }),
|
|
1673
|
+
/* @__PURE__ */ jsx32("stop", { offset: "1", stopColor: "#3ECF8E" })
|
|
1508
1674
|
]
|
|
1509
1675
|
}
|
|
1510
1676
|
),
|
|
1511
|
-
/* @__PURE__ */
|
|
1677
|
+
/* @__PURE__ */ jsxs21(
|
|
1512
1678
|
"linearGradient",
|
|
1513
1679
|
{
|
|
1514
1680
|
id: "paint1_linear",
|
|
@@ -1518,38 +1684,38 @@ var Icons = {
|
|
|
1518
1684
|
y2: "65.0806",
|
|
1519
1685
|
gradientUnits: "userSpaceOnUse",
|
|
1520
1686
|
children: [
|
|
1521
|
-
/* @__PURE__ */
|
|
1522
|
-
/* @__PURE__ */
|
|
1687
|
+
/* @__PURE__ */ jsx32("stop", {}),
|
|
1688
|
+
/* @__PURE__ */ jsx32("stop", { offset: "1", stopOpacity: "0" })
|
|
1523
1689
|
]
|
|
1524
1690
|
}
|
|
1525
1691
|
)
|
|
1526
1692
|
] })
|
|
1527
1693
|
] }),
|
|
1528
|
-
tailwind: (props) => /* @__PURE__ */
|
|
1694
|
+
tailwind: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1529
1695
|
"path",
|
|
1530
1696
|
{
|
|
1531
1697
|
d: "M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z",
|
|
1532
1698
|
fill: "currentColor"
|
|
1533
1699
|
}
|
|
1534
1700
|
) }),
|
|
1535
|
-
telegram: (props) => /* @__PURE__ */
|
|
1536
|
-
twitter: (props) => /* @__PURE__ */
|
|
1701
|
+
telegram: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.287 5.906q-1.168.486-4.666 2.01-.567.225-.595.442c-.03.243.275.339.69.47l.175.055c.408.133.958.288 1.243.294q.39.01.868-.32 3.269-2.206 3.374-2.23c.05-.012.12-.026.166.016s.042.12.037.141c-.03.129-1.227 1.241-1.846 1.817-.193.18-.33.307-.358.336a8 8 0 0 1-.188.186c-.38.366-.664.64.015 1.088.327.216.589.393.85.571.284.194.568.387.936.629q.14.092.27.187c.331.236.63.448.997.414.214-.02.435-.22.547-.82.265-1.417.786-4.486.906-5.751a1.4 1.4 0 0 0-.013-.315.34.34 0 0 0-.114-.217.53.53 0 0 0-.31-.093c-.3.005-.763.166-2.984 1.09" }) }),
|
|
1702
|
+
twitter: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 1200 1227", ...props, children: /* @__PURE__ */ jsx32(
|
|
1537
1703
|
"path",
|
|
1538
1704
|
{
|
|
1539
1705
|
fill: "currentcolor",
|
|
1540
1706
|
d: "M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"
|
|
1541
1707
|
}
|
|
1542
1708
|
) }),
|
|
1543
|
-
whatsApp: (props) => /* @__PURE__ */
|
|
1544
|
-
x: (props) => /* @__PURE__ */
|
|
1545
|
-
yarn: (props) => /* @__PURE__ */
|
|
1709
|
+
whatsApp: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" }) }),
|
|
1710
|
+
x: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32("path", { d: "M13.6823 10.6218L20.2391 3H18.6854L12.9921 9.61788L8.44486 3H3.2002L10.0765 13.0074L3.2002 21H4.75404L10.7663 14.0113L15.5685 21H20.8131L13.6819 10.6218H13.6823ZM11.5541 13.0956L10.8574 12.0991L5.31391 4.16971H7.70053L12.1742 10.5689L12.8709 11.5655L18.6861 19.8835H16.2995L11.5541 13.096V13.0956Z" }) }),
|
|
1711
|
+
yarn: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx32(
|
|
1546
1712
|
"path",
|
|
1547
1713
|
{
|
|
1548
1714
|
d: "M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0zm.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a5.51 5.51 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.686 1.686 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.078 1.078 0 0 1-.58-1.153 1.243 1.243 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.522 5.522 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.418 3.418 0 0 1 2.298-1.103c.037-.093.079-.185.125-.283.31-.658.639-1.029 1.024-1.168a.94.94 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.271.271 0 0 0-.157-.046z",
|
|
1549
1715
|
fill: "currentColor"
|
|
1550
1716
|
}
|
|
1551
1717
|
) }),
|
|
1552
|
-
youtube: (props) => /* @__PURE__ */
|
|
1718
|
+
youtube: (props) => /* @__PURE__ */ jsx32("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx32(
|
|
1553
1719
|
"path",
|
|
1554
1720
|
{
|
|
1555
1721
|
fillRule: "evenodd",
|
|
@@ -1565,7 +1731,7 @@ import {
|
|
|
1565
1731
|
useRef,
|
|
1566
1732
|
useState as useState4
|
|
1567
1733
|
} from "react";
|
|
1568
|
-
import { Fragment as
|
|
1734
|
+
import { Fragment as Fragment3, jsx as jsx33, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1569
1735
|
var DEFAULT_NULL_INDEX = -1;
|
|
1570
1736
|
var DEFAULT_DATA_URL_KEY = "dataURL";
|
|
1571
1737
|
var openFileDialog = (inputRef) => {
|
|
@@ -1701,8 +1867,8 @@ var ImageInput = ({
|
|
|
1701
1867
|
e.stopPropagation();
|
|
1702
1868
|
e.dataTransfer.clearData();
|
|
1703
1869
|
};
|
|
1704
|
-
return /* @__PURE__ */
|
|
1705
|
-
/* @__PURE__ */
|
|
1870
|
+
return /* @__PURE__ */ jsxs22(Fragment3, { children: [
|
|
1871
|
+
/* @__PURE__ */ jsx33(
|
|
1706
1872
|
"input",
|
|
1707
1873
|
{
|
|
1708
1874
|
ref: inputRef,
|
|
@@ -1734,16 +1900,159 @@ var ImageInput = ({
|
|
|
1734
1900
|
] });
|
|
1735
1901
|
};
|
|
1736
1902
|
|
|
1903
|
+
// src/components/ui/language-switcher.tsx
|
|
1904
|
+
import { useTransition } from "react";
|
|
1905
|
+
import { Globe, Languages } from "lucide-react";
|
|
1906
|
+
import { jsx as jsx34, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1907
|
+
function LanguageSwitcher({
|
|
1908
|
+
className,
|
|
1909
|
+
type = "dropdown",
|
|
1910
|
+
variant = "ghost",
|
|
1911
|
+
size = "md",
|
|
1912
|
+
showNames = true,
|
|
1913
|
+
showFlags = true,
|
|
1914
|
+
label = "Language",
|
|
1915
|
+
i18nEnabled = true,
|
|
1916
|
+
currentLocale,
|
|
1917
|
+
locales,
|
|
1918
|
+
onLocaleChange,
|
|
1919
|
+
// flagsBasePath = '/flags',
|
|
1920
|
+
Image: Image2 = DefaultImage
|
|
1921
|
+
}) {
|
|
1922
|
+
const [isPending, startTransition] = useTransition();
|
|
1923
|
+
const languages = locales ?? [];
|
|
1924
|
+
const currentLanguage = languages.find((l) => l.code === currentLocale);
|
|
1925
|
+
function handleLanguageChange(newLocale) {
|
|
1926
|
+
if (newLocale === currentLocale) return;
|
|
1927
|
+
startTransition(() => {
|
|
1928
|
+
const maybePromise = onLocaleChange?.(newLocale);
|
|
1929
|
+
return maybePromise;
|
|
1930
|
+
});
|
|
1931
|
+
}
|
|
1932
|
+
if (!i18nEnabled && (languages?.length ?? 0) <= 1) {
|
|
1933
|
+
return null;
|
|
1934
|
+
}
|
|
1935
|
+
if (type === "dropdown") {
|
|
1936
|
+
return /* @__PURE__ */ jsxs23(DropdownMenu, { children: [
|
|
1937
|
+
/* @__PURE__ */ jsx34(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxs23(
|
|
1938
|
+
Button,
|
|
1939
|
+
{
|
|
1940
|
+
variant,
|
|
1941
|
+
size,
|
|
1942
|
+
className: cn(
|
|
1943
|
+
"group/toggle size-8 px-0 text-foreground ring-0! focus:outline-none! focus:ring-0! focus-visible:outline-none! focus-visible:ring-0! focus-visible:ring-offset-0!",
|
|
1944
|
+
isPending && "cursor-not-allowed opacity-50",
|
|
1945
|
+
className
|
|
1946
|
+
),
|
|
1947
|
+
disabled: isPending,
|
|
1948
|
+
children: [
|
|
1949
|
+
/* @__PURE__ */ jsx34(Languages, { className: "size-4" }),
|
|
1950
|
+
/* @__PURE__ */ jsx34("span", { className: "sr-only", children: isPending ? "Changing language..." : "Language dropdown" })
|
|
1951
|
+
]
|
|
1952
|
+
}
|
|
1953
|
+
) }),
|
|
1954
|
+
/* @__PURE__ */ jsx34(
|
|
1955
|
+
DropdownMenuContent,
|
|
1956
|
+
{
|
|
1957
|
+
align: "end",
|
|
1958
|
+
className: "min-w-[150px]",
|
|
1959
|
+
onCloseAutoFocus: (e) => e.preventDefault(),
|
|
1960
|
+
children: languages.map((lang) => /* @__PURE__ */ jsxs23(
|
|
1961
|
+
DropdownMenuItem,
|
|
1962
|
+
{
|
|
1963
|
+
onClick: () => handleLanguageChange(lang.code),
|
|
1964
|
+
className: cn("gap-2", currentLocale === lang.code && "bg-accent"),
|
|
1965
|
+
children: [
|
|
1966
|
+
showFlags && lang.flag ? /* @__PURE__ */ jsx34(
|
|
1967
|
+
Image2,
|
|
1968
|
+
{
|
|
1969
|
+
src: getFlagUrl(lang.flag),
|
|
1970
|
+
alt: `${lang.name} flag`,
|
|
1971
|
+
className: "size-4 rounded-full object-cover",
|
|
1972
|
+
width: 24,
|
|
1973
|
+
height: 24
|
|
1974
|
+
}
|
|
1975
|
+
) : showFlags ? /* @__PURE__ */ jsx34(Globe, { className: "size-4" }) : null,
|
|
1976
|
+
showNames && /* @__PURE__ */ jsx34("span", { className: "text-sm", children: lang.name }),
|
|
1977
|
+
currentLocale === lang.code && /* @__PURE__ */ jsx34("span", { className: "ms-auto text-muted-foreground text-xs", children: "\u2713" })
|
|
1978
|
+
]
|
|
1979
|
+
},
|
|
1980
|
+
lang.code
|
|
1981
|
+
))
|
|
1982
|
+
}
|
|
1983
|
+
)
|
|
1984
|
+
] });
|
|
1985
|
+
}
|
|
1986
|
+
return /* @__PURE__ */ jsxs23(DropdownMenuSub, { children: [
|
|
1987
|
+
/* @__PURE__ */ jsxs23(
|
|
1988
|
+
DropdownMenuSubTrigger,
|
|
1989
|
+
{
|
|
1990
|
+
className: cn(
|
|
1991
|
+
"flex items-center gap-2 data-[state=open]:**:data-[slot=badge]:border-input **:data-[slot=dropdown-menu-sub-trigger-indicator]:hidden hover:**:data-[slot=badge]:border-input",
|
|
1992
|
+
className
|
|
1993
|
+
),
|
|
1994
|
+
children: [
|
|
1995
|
+
/* @__PURE__ */ jsx34(Globe, { className: "size-4" }),
|
|
1996
|
+
/* @__PURE__ */ jsxs23("span", { className: "relative flex grow items-center justify-between gap-2", children: [
|
|
1997
|
+
label,
|
|
1998
|
+
currentLanguage && /* @__PURE__ */ jsxs23(Badge, { appearance: "outline", className: "-translate-y-1/2 absolute end-0 top-1/2", children: [
|
|
1999
|
+
currentLanguage.name,
|
|
2000
|
+
showFlags && currentLanguage.flag && /* @__PURE__ */ jsx34(
|
|
2001
|
+
Image2,
|
|
2002
|
+
{
|
|
2003
|
+
src: getFlagUrl(currentLanguage.flag),
|
|
2004
|
+
alt: currentLanguage.name,
|
|
2005
|
+
className: "ms-1 size-3.5 rounded-full",
|
|
2006
|
+
width: 24,
|
|
2007
|
+
height: 24
|
|
2008
|
+
}
|
|
2009
|
+
)
|
|
2010
|
+
] })
|
|
2011
|
+
] })
|
|
2012
|
+
]
|
|
2013
|
+
}
|
|
2014
|
+
),
|
|
2015
|
+
/* @__PURE__ */ jsx34(DropdownMenuSubContent, { className: "w-48", children: /* @__PURE__ */ jsx34(
|
|
2016
|
+
DropdownMenuRadioGroup,
|
|
2017
|
+
{
|
|
2018
|
+
value: currentLocale,
|
|
2019
|
+
onValueChange: (value) => handleLanguageChange(value),
|
|
2020
|
+
children: languages.map((item) => /* @__PURE__ */ jsxs23(
|
|
2021
|
+
DropdownMenuRadioItem,
|
|
2022
|
+
{
|
|
2023
|
+
value: item.code,
|
|
2024
|
+
className: "flex items-center gap-2",
|
|
2025
|
+
children: [
|
|
2026
|
+
showFlags && item.flag ? /* @__PURE__ */ jsx34(
|
|
2027
|
+
Image2,
|
|
2028
|
+
{
|
|
2029
|
+
src: getFlagUrl(item.flag),
|
|
2030
|
+
alt: `${item.name} flag`,
|
|
2031
|
+
className: "size-4 rounded-full object-cover",
|
|
2032
|
+
width: 24,
|
|
2033
|
+
height: 24
|
|
2034
|
+
}
|
|
2035
|
+
) : showFlags ? /* @__PURE__ */ jsx34(Globe, { className: "size-4" }) : null,
|
|
2036
|
+
/* @__PURE__ */ jsx34("span", { children: item.name })
|
|
2037
|
+
]
|
|
2038
|
+
},
|
|
2039
|
+
item.code
|
|
2040
|
+
))
|
|
2041
|
+
}
|
|
2042
|
+
) })
|
|
2043
|
+
] });
|
|
2044
|
+
}
|
|
2045
|
+
|
|
1737
2046
|
// src/components/ui/logo.tsx
|
|
1738
|
-
import { jsx as
|
|
2047
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
1739
2048
|
function Logo({ className }) {
|
|
1740
|
-
return /* @__PURE__ */
|
|
2049
|
+
return /* @__PURE__ */ jsx35(
|
|
1741
2050
|
"svg",
|
|
1742
2051
|
{
|
|
1743
2052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1744
2053
|
viewBox: "0 0 300 300",
|
|
1745
2054
|
className: cn("size-8 text-primary", className),
|
|
1746
|
-
children: /* @__PURE__ */
|
|
2055
|
+
children: /* @__PURE__ */ jsx35(
|
|
1747
2056
|
"path",
|
|
1748
2057
|
{
|
|
1749
2058
|
fill: "currentColor",
|
|
@@ -1758,12 +2067,18 @@ function Logo({ className }) {
|
|
|
1758
2067
|
import * as React2 from "react";
|
|
1759
2068
|
import { Monitor, Moon, Sun } from "lucide-react";
|
|
1760
2069
|
import { useTheme } from "next-themes";
|
|
1761
|
-
import { jsx as
|
|
2070
|
+
import { Fragment as Fragment4, jsx as jsx36, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1762
2071
|
function ModeSwitcher({
|
|
1763
2072
|
className,
|
|
1764
2073
|
variant = "ghost",
|
|
1765
2074
|
size = "md",
|
|
1766
|
-
cycleOrder = [THEME_MODES.SYSTEM, THEME_MODES.LIGHT, THEME_MODES.DARK]
|
|
2075
|
+
cycleOrder = [THEME_MODES.SYSTEM, THEME_MODES.LIGHT, THEME_MODES.DARK],
|
|
2076
|
+
type = "toogle",
|
|
2077
|
+
label = {
|
|
2078
|
+
system: "System",
|
|
2079
|
+
dark: "Dark",
|
|
2080
|
+
light: "Light"
|
|
2081
|
+
}
|
|
1767
2082
|
}) {
|
|
1768
2083
|
const { setTheme, theme } = useTheme();
|
|
1769
2084
|
const toggleTheme = React2.useCallback(() => {
|
|
@@ -1772,27 +2087,107 @@ function ModeSwitcher({
|
|
|
1772
2087
|
const nextTheme = cycleOrder[nextIndex];
|
|
1773
2088
|
setTheme(nextTheme);
|
|
1774
2089
|
}, [theme, setTheme, cycleOrder]);
|
|
1775
|
-
const getCurrentIcon = () => {
|
|
2090
|
+
const getCurrentIcon = (withLabel = false) => {
|
|
1776
2091
|
if (theme === THEME_MODES.SYSTEM) {
|
|
1777
|
-
return /* @__PURE__ */
|
|
2092
|
+
return /* @__PURE__ */ jsxs24(Fragment4, { children: [
|
|
2093
|
+
/* @__PURE__ */ jsx36(Monitor, {}),
|
|
2094
|
+
" ",
|
|
2095
|
+
withLabel ?? /* @__PURE__ */ jsx36("span", { children: label.system })
|
|
2096
|
+
] });
|
|
1778
2097
|
}
|
|
1779
2098
|
if (theme === THEME_MODES.DARK) {
|
|
1780
|
-
return /* @__PURE__ */
|
|
2099
|
+
return /* @__PURE__ */ jsxs24(Fragment4, { children: [
|
|
2100
|
+
/* @__PURE__ */ jsx36(Moon, {}),
|
|
2101
|
+
" ",
|
|
2102
|
+
withLabel ?? /* @__PURE__ */ jsx36("span", { children: label.dark })
|
|
2103
|
+
] });
|
|
1781
2104
|
}
|
|
1782
|
-
return /* @__PURE__ */
|
|
2105
|
+
return /* @__PURE__ */ jsxs24(Fragment4, { children: [
|
|
2106
|
+
/* @__PURE__ */ jsx36(Sun, {}),
|
|
2107
|
+
" ",
|
|
2108
|
+
withLabel ?? /* @__PURE__ */ jsx36("span", { children: label.light })
|
|
2109
|
+
] });
|
|
1783
2110
|
};
|
|
1784
|
-
|
|
1785
|
-
|
|
2111
|
+
const isActive = (val) => theme === val;
|
|
2112
|
+
if (type === "toogle") {
|
|
2113
|
+
return /* @__PURE__ */ jsxs24(
|
|
2114
|
+
Button,
|
|
2115
|
+
{
|
|
2116
|
+
variant,
|
|
2117
|
+
size,
|
|
2118
|
+
className: cn("group/toggle size-8 px-0 text-foreground", className),
|
|
2119
|
+
onClick: toggleTheme,
|
|
2120
|
+
"aria-label": "Switch theme",
|
|
2121
|
+
children: [
|
|
2122
|
+
getCurrentIcon(),
|
|
2123
|
+
/* @__PURE__ */ jsx36("span", { className: "sr-only", children: "Toggle theme" })
|
|
2124
|
+
]
|
|
2125
|
+
}
|
|
2126
|
+
);
|
|
2127
|
+
}
|
|
2128
|
+
if (type === "dropdown") {
|
|
2129
|
+
return /* @__PURE__ */ jsxs24(DropdownMenu, { children: [
|
|
2130
|
+
/* @__PURE__ */ jsx36(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxs24(
|
|
2131
|
+
Button,
|
|
2132
|
+
{
|
|
2133
|
+
variant,
|
|
2134
|
+
size,
|
|
2135
|
+
className: cn(
|
|
2136
|
+
"group/toggle size-8 px-0 text-foreground ring-0! focus:outline-none! focus:ring-0! focus-visible:outline-none! focus-visible:ring-0! focus-visible:ring-offset-0!",
|
|
2137
|
+
className
|
|
2138
|
+
),
|
|
2139
|
+
children: [
|
|
2140
|
+
getCurrentIcon(),
|
|
2141
|
+
/* @__PURE__ */ jsx36("span", { className: "sr-only", children: "Toggle theme" })
|
|
2142
|
+
]
|
|
2143
|
+
}
|
|
2144
|
+
) }),
|
|
2145
|
+
/* @__PURE__ */ jsxs24(DropdownMenuContent, { align: "end", onCloseAutoFocus: (e) => e.preventDefault(), children: [
|
|
2146
|
+
/* @__PURE__ */ jsxs24(
|
|
2147
|
+
DropdownMenuItem,
|
|
2148
|
+
{
|
|
2149
|
+
className: isActive("light") ? "bg-accent" : "",
|
|
2150
|
+
onClick: () => setTheme("light"),
|
|
2151
|
+
children: [
|
|
2152
|
+
/* @__PURE__ */ jsx36(Sun, {}),
|
|
2153
|
+
label.light
|
|
2154
|
+
]
|
|
2155
|
+
}
|
|
2156
|
+
),
|
|
2157
|
+
/* @__PURE__ */ jsxs24(
|
|
2158
|
+
DropdownMenuItem,
|
|
2159
|
+
{
|
|
2160
|
+
className: isActive("dark") ? "bg-accent" : "",
|
|
2161
|
+
onClick: () => setTheme("dark"),
|
|
2162
|
+
children: [
|
|
2163
|
+
/* @__PURE__ */ jsx36(Moon, {}),
|
|
2164
|
+
label.dark
|
|
2165
|
+
]
|
|
2166
|
+
}
|
|
2167
|
+
),
|
|
2168
|
+
/* @__PURE__ */ jsxs24(
|
|
2169
|
+
DropdownMenuItem,
|
|
2170
|
+
{
|
|
2171
|
+
className: isActive("system") ? "bg-accent" : "",
|
|
2172
|
+
onClick: () => setTheme("system"),
|
|
2173
|
+
children: [
|
|
2174
|
+
/* @__PURE__ */ jsx36(Monitor, {}),
|
|
2175
|
+
label.system
|
|
2176
|
+
]
|
|
2177
|
+
}
|
|
2178
|
+
)
|
|
2179
|
+
] })
|
|
2180
|
+
] });
|
|
2181
|
+
}
|
|
2182
|
+
return /* @__PURE__ */ jsx36(
|
|
2183
|
+
DropdownMenuItem,
|
|
1786
2184
|
{
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
children:
|
|
1793
|
-
getCurrentIcon(),
|
|
1794
|
-
/* @__PURE__ */ jsx31("span", { className: "sr-only", children: "Toggle theme" })
|
|
1795
|
-
]
|
|
2185
|
+
className,
|
|
2186
|
+
onSelect: (e) => {
|
|
2187
|
+
e.preventDefault();
|
|
2188
|
+
toggleTheme();
|
|
2189
|
+
},
|
|
2190
|
+
children: getCurrentIcon(true)
|
|
1796
2191
|
}
|
|
1797
2192
|
);
|
|
1798
2193
|
}
|
|
@@ -1806,7 +2201,7 @@ import {
|
|
|
1806
2201
|
useMotionValue,
|
|
1807
2202
|
useTransform
|
|
1808
2203
|
} from "motion/react";
|
|
1809
|
-
import { Fragment as
|
|
2204
|
+
import { Fragment as Fragment5, jsx as jsx37, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1810
2205
|
function MovingLabel({
|
|
1811
2206
|
borderRadius = "1.75rem",
|
|
1812
2207
|
children,
|
|
@@ -1817,7 +2212,7 @@ function MovingLabel({
|
|
|
1817
2212
|
className,
|
|
1818
2213
|
...otherProps
|
|
1819
2214
|
}) {
|
|
1820
|
-
return /* @__PURE__ */
|
|
2215
|
+
return /* @__PURE__ */ jsxs25(
|
|
1821
2216
|
Component,
|
|
1822
2217
|
{
|
|
1823
2218
|
className: cn("relative h-9 overflow-hidden bg-transparent p-px text-xl", containerClassName),
|
|
@@ -1826,7 +2221,7 @@ function MovingLabel({
|
|
|
1826
2221
|
},
|
|
1827
2222
|
...otherProps,
|
|
1828
2223
|
children: [
|
|
1829
|
-
/* @__PURE__ */
|
|
2224
|
+
/* @__PURE__ */ jsx37("div", { className: "absolute inset-0", style: { borderRadius: `calc(${borderRadius} * 0.96)` }, children: /* @__PURE__ */ jsx37(MovingBorder, { duration, rx: "30%", ry: "30%", children: /* @__PURE__ */ jsx37(
|
|
1830
2225
|
"div",
|
|
1831
2226
|
{
|
|
1832
2227
|
className: cn(
|
|
@@ -1835,7 +2230,7 @@ function MovingLabel({
|
|
|
1835
2230
|
)
|
|
1836
2231
|
}
|
|
1837
2232
|
) }) }),
|
|
1838
|
-
/* @__PURE__ */
|
|
2233
|
+
/* @__PURE__ */ jsx37(
|
|
1839
2234
|
"div",
|
|
1840
2235
|
{
|
|
1841
2236
|
className: cn(
|
|
@@ -1871,8 +2266,8 @@ var MovingBorder = ({
|
|
|
1871
2266
|
const x = useTransform(progress, (val) => pathRef.current?.getPointAtLength(val).x);
|
|
1872
2267
|
const y = useTransform(progress, (val) => pathRef.current?.getPointAtLength(val).y);
|
|
1873
2268
|
const transform = useMotionTemplate`translateX(${x}px) translateY(${y}px) translateX(-50%) translateY(-50%)`;
|
|
1874
|
-
return /* @__PURE__ */
|
|
1875
|
-
/* @__PURE__ */
|
|
2269
|
+
return /* @__PURE__ */ jsxs25(Fragment5, { children: [
|
|
2270
|
+
/* @__PURE__ */ jsx37(
|
|
1876
2271
|
"svg",
|
|
1877
2272
|
{
|
|
1878
2273
|
preserveAspectRatio: "none",
|
|
@@ -1880,10 +2275,10 @@ var MovingBorder = ({
|
|
|
1880
2275
|
width: "100%",
|
|
1881
2276
|
height: "100%",
|
|
1882
2277
|
...otherProps,
|
|
1883
|
-
children: /* @__PURE__ */
|
|
2278
|
+
children: /* @__PURE__ */ jsx37("rect", { fill: "none", width: "100%", height: "100%", rx, ry, ref: pathRef })
|
|
1884
2279
|
}
|
|
1885
2280
|
),
|
|
1886
|
-
/* @__PURE__ */
|
|
2281
|
+
/* @__PURE__ */ jsx37(
|
|
1887
2282
|
motion2.div,
|
|
1888
2283
|
{
|
|
1889
2284
|
style: {
|
|
@@ -1908,7 +2303,7 @@ import { toast as toast4 } from "sonner";
|
|
|
1908
2303
|
import { CircleAlert as CircleAlert3 } from "lucide-react";
|
|
1909
2304
|
import { Popover } from "radix-ui";
|
|
1910
2305
|
import { toast as toast3 } from "sonner";
|
|
1911
|
-
import { jsx as
|
|
2306
|
+
import { jsx as jsx38, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1912
2307
|
function RecaptchaPopover({
|
|
1913
2308
|
open,
|
|
1914
2309
|
onOpenChange,
|
|
@@ -1933,9 +2328,9 @@ function RecaptchaPopover({
|
|
|
1933
2328
|
const token = getToken();
|
|
1934
2329
|
if (!token) {
|
|
1935
2330
|
toast3.custom(
|
|
1936
|
-
() => /* @__PURE__ */
|
|
1937
|
-
/* @__PURE__ */
|
|
1938
|
-
/* @__PURE__ */
|
|
2331
|
+
() => /* @__PURE__ */ jsxs26(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2332
|
+
/* @__PURE__ */ jsx38(AlertIcon, { children: /* @__PURE__ */ jsx38(CircleAlert3, {}) }),
|
|
2333
|
+
/* @__PURE__ */ jsx38(AlertTitle, { children: "Please complete the reCAPTCHA verification." })
|
|
1939
2334
|
] }),
|
|
1940
2335
|
{
|
|
1941
2336
|
position: "top-center"
|
|
@@ -1947,9 +2342,9 @@ function RecaptchaPopover({
|
|
|
1947
2342
|
} catch (error) {
|
|
1948
2343
|
console.error("Error getting reCAPTCHA token:", error);
|
|
1949
2344
|
toast3.custom(
|
|
1950
|
-
() => /* @__PURE__ */
|
|
1951
|
-
/* @__PURE__ */
|
|
1952
|
-
/* @__PURE__ */
|
|
2345
|
+
() => /* @__PURE__ */ jsxs26(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2346
|
+
/* @__PURE__ */ jsx38(AlertIcon, { children: /* @__PURE__ */ jsx38(CircleAlert3, {}) }),
|
|
2347
|
+
/* @__PURE__ */ jsx38(AlertTitle, { children: "Please complete the reCAPTCHA verification." })
|
|
1953
2348
|
] }),
|
|
1954
2349
|
{
|
|
1955
2350
|
position: "top-center"
|
|
@@ -1958,9 +2353,9 @@ function RecaptchaPopover({
|
|
|
1958
2353
|
return;
|
|
1959
2354
|
}
|
|
1960
2355
|
};
|
|
1961
|
-
return /* @__PURE__ */
|
|
1962
|
-
/* @__PURE__ */
|
|
1963
|
-
/* @__PURE__ */
|
|
2356
|
+
return /* @__PURE__ */ jsxs26(Popover.Root, { open, onOpenChange: handleOpenChange, children: [
|
|
2357
|
+
/* @__PURE__ */ jsx38(Popover.Trigger, { asChild: true, children: trigger }),
|
|
2358
|
+
/* @__PURE__ */ jsx38(Popover.Portal, { children: /* @__PURE__ */ jsxs26(
|
|
1964
2359
|
Popover.Content,
|
|
1965
2360
|
{
|
|
1966
2361
|
className: "z-50 rounded-lg bg-white p-4 shadow-lg",
|
|
@@ -1972,11 +2367,11 @@ function RecaptchaPopover({
|
|
|
1972
2367
|
}
|
|
1973
2368
|
},
|
|
1974
2369
|
children: [
|
|
1975
|
-
/* @__PURE__ */
|
|
1976
|
-
/* @__PURE__ */
|
|
1977
|
-
/* @__PURE__ */
|
|
2370
|
+
/* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-4", children: [
|
|
2371
|
+
/* @__PURE__ */ jsx38("div", { ref: containerRef, className: "min-h-[78px]" }),
|
|
2372
|
+
/* @__PURE__ */ jsx38(Button, { type: "button", variant: "mono", onClick: handleVerify, className: "w-full", children: verifyButtonText })
|
|
1978
2373
|
] }),
|
|
1979
|
-
/* @__PURE__ */
|
|
2374
|
+
/* @__PURE__ */ jsx38(Popover.Arrow, { className: "fill-white" })
|
|
1980
2375
|
]
|
|
1981
2376
|
}
|
|
1982
2377
|
) })
|
|
@@ -1984,7 +2379,7 @@ function RecaptchaPopover({
|
|
|
1984
2379
|
}
|
|
1985
2380
|
|
|
1986
2381
|
// src/components/ui/subscribe.tsx
|
|
1987
|
-
import { jsx as
|
|
2382
|
+
import { jsx as jsx39, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1988
2383
|
function Subscribe({
|
|
1989
2384
|
heading = "Stay notified on every new release",
|
|
1990
2385
|
subheading = "Only the updates worth knowing",
|
|
@@ -2005,9 +2400,9 @@ function Subscribe({
|
|
|
2005
2400
|
const validateEmail = () => {
|
|
2006
2401
|
if (!email.match(/^[^\s@]+@[^\s@]+\.[^\s@]+$/)) {
|
|
2007
2402
|
toast4.custom(
|
|
2008
|
-
() => /* @__PURE__ */
|
|
2009
|
-
/* @__PURE__ */
|
|
2010
|
-
/* @__PURE__ */
|
|
2403
|
+
() => /* @__PURE__ */ jsxs27(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2404
|
+
/* @__PURE__ */ jsx39(AlertIcon, { children: /* @__PURE__ */ jsx39(CircleAlert4, {}) }),
|
|
2405
|
+
/* @__PURE__ */ jsx39(AlertTitle, { children: invalidEmailMessage })
|
|
2011
2406
|
] }),
|
|
2012
2407
|
{
|
|
2013
2408
|
position: "top-center"
|
|
@@ -2028,9 +2423,9 @@ function Subscribe({
|
|
|
2028
2423
|
const handleVerifiedSubmit = async (token) => {
|
|
2029
2424
|
if (!token) {
|
|
2030
2425
|
toast4.custom(
|
|
2031
|
-
() => /* @__PURE__ */
|
|
2032
|
-
/* @__PURE__ */
|
|
2033
|
-
/* @__PURE__ */
|
|
2426
|
+
() => /* @__PURE__ */ jsxs27(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2427
|
+
/* @__PURE__ */ jsx39(AlertIcon, { children: /* @__PURE__ */ jsx39(CircleAlert4, {}) }),
|
|
2428
|
+
/* @__PURE__ */ jsx39(AlertTitle, { children: recaptchaMessage })
|
|
2034
2429
|
] }),
|
|
2035
2430
|
{
|
|
2036
2431
|
position: "top-center"
|
|
@@ -2060,9 +2455,9 @@ function Subscribe({
|
|
|
2060
2455
|
const data = await res.json();
|
|
2061
2456
|
if (res.ok) {
|
|
2062
2457
|
toast4.custom(
|
|
2063
|
-
() => /* @__PURE__ */
|
|
2064
|
-
/* @__PURE__ */
|
|
2065
|
-
/* @__PURE__ */
|
|
2458
|
+
() => /* @__PURE__ */ jsxs27(Alert, { variant: "mono", icon: "success", children: [
|
|
2459
|
+
/* @__PURE__ */ jsx39(AlertIcon, { children: /* @__PURE__ */ jsx39(CircleCheck2, {}) }),
|
|
2460
|
+
/* @__PURE__ */ jsx39(AlertTitle, { children: successMessage })
|
|
2066
2461
|
] }),
|
|
2067
2462
|
{
|
|
2068
2463
|
position: "top-center"
|
|
@@ -2079,9 +2474,9 @@ function Subscribe({
|
|
|
2079
2474
|
setEmail("");
|
|
2080
2475
|
} else {
|
|
2081
2476
|
toast4.custom(
|
|
2082
|
-
() => /* @__PURE__ */
|
|
2083
|
-
/* @__PURE__ */
|
|
2084
|
-
/* @__PURE__ */
|
|
2477
|
+
() => /* @__PURE__ */ jsxs27(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2478
|
+
/* @__PURE__ */ jsx39(AlertIcon, { children: /* @__PURE__ */ jsx39(CircleAlert4, {}) }),
|
|
2479
|
+
/* @__PURE__ */ jsx39(AlertTitle, { children: data.message || errorMessage })
|
|
2085
2480
|
] }),
|
|
2086
2481
|
{
|
|
2087
2482
|
position: "top-center"
|
|
@@ -2091,9 +2486,9 @@ function Subscribe({
|
|
|
2091
2486
|
} catch (err) {
|
|
2092
2487
|
console.error("Newsletter subscription error:", err);
|
|
2093
2488
|
toast4.custom(
|
|
2094
|
-
() => /* @__PURE__ */
|
|
2095
|
-
/* @__PURE__ */
|
|
2096
|
-
/* @__PURE__ */
|
|
2489
|
+
() => /* @__PURE__ */ jsxs27(Alert, { variant: "mono", icon: "destructive", children: [
|
|
2490
|
+
/* @__PURE__ */ jsx39(AlertIcon, { children: /* @__PURE__ */ jsx39(CircleAlert4, {}) }),
|
|
2491
|
+
/* @__PURE__ */ jsx39(AlertTitle, { children: errorMessage })
|
|
2097
2492
|
] }),
|
|
2098
2493
|
{
|
|
2099
2494
|
position: "top-center"
|
|
@@ -2106,18 +2501,18 @@ function Subscribe({
|
|
|
2106
2501
|
const style = {
|
|
2107
2502
|
backgroundImage: `linear-gradient(0deg, transparent 0%, transparent 60%, rgba(183, 183, 183, 0.05) 60%, rgba(183, 183, 183, 0.05) 93%, transparent 93%, transparent 100%), linear-gradient(135deg, transparent 0%, transparent 55%, rgba(183, 183, 183, 0.05) 55%, rgba(183, 183, 183, 0.05) 84%, transparent 84%, transparent 100%), linear-gradient(0deg, transparent 0%, transparent 80%, rgba(183, 183, 183, 0.05) 80%, rgba(183, 183, 183, 0.05) 94%, transparent 94%, transparent 100%), linear-gradient(90deg, rgb(0,0,0), rgb(0,0,0))`
|
|
2108
2503
|
};
|
|
2109
|
-
return /* @__PURE__ */
|
|
2504
|
+
return /* @__PURE__ */ jsx39("footer", { children: /* @__PURE__ */ jsx39("div", { className: "container pt-10", children: /* @__PURE__ */ jsxs27(
|
|
2110
2505
|
"div",
|
|
2111
2506
|
{
|
|
2112
2507
|
className: `mt-10 mb-8 flex flex-wrap items-center justify-between gap-7 rounded-xl px-10 py-16 md:px-20 ${className || ""}`,
|
|
2113
2508
|
style,
|
|
2114
2509
|
children: [
|
|
2115
|
-
/* @__PURE__ */
|
|
2116
|
-
/* @__PURE__ */
|
|
2117
|
-
/* @__PURE__ */
|
|
2510
|
+
/* @__PURE__ */ jsxs27("div", { className: "flex flex-col gap-1.5", children: [
|
|
2511
|
+
/* @__PURE__ */ jsx39("h2", { className: "font-medium text-3xl text-white", children: heading }),
|
|
2512
|
+
/* @__PURE__ */ jsx39("div", { className: "font-medium text-2xl text-white/50", children: subheading })
|
|
2118
2513
|
] }),
|
|
2119
|
-
/* @__PURE__ */
|
|
2120
|
-
/* @__PURE__ */
|
|
2514
|
+
/* @__PURE__ */ jsxs27("form", { onSubmit: handleSubmit, className: "flex gap-2.5", children: [
|
|
2515
|
+
/* @__PURE__ */ jsx39(
|
|
2121
2516
|
Input,
|
|
2122
2517
|
{
|
|
2123
2518
|
type: "email",
|
|
@@ -2131,7 +2526,7 @@ function Subscribe({
|
|
|
2131
2526
|
required: true
|
|
2132
2527
|
}
|
|
2133
2528
|
),
|
|
2134
|
-
/* @__PURE__ */
|
|
2529
|
+
/* @__PURE__ */ jsx39(
|
|
2135
2530
|
RecaptchaPopover,
|
|
2136
2531
|
{
|
|
2137
2532
|
open: showRecaptcha,
|
|
@@ -2142,7 +2537,7 @@ function Subscribe({
|
|
|
2142
2537
|
},
|
|
2143
2538
|
onVerify: handleVerifiedSubmit,
|
|
2144
2539
|
verifyButtonText,
|
|
2145
|
-
trigger: /* @__PURE__ */
|
|
2540
|
+
trigger: /* @__PURE__ */ jsx39(
|
|
2146
2541
|
Button,
|
|
2147
2542
|
{
|
|
2148
2543
|
type: "submit",
|
|
@@ -2160,29 +2555,29 @@ function Subscribe({
|
|
|
2160
2555
|
}
|
|
2161
2556
|
|
|
2162
2557
|
// src/components/ui/toolbar.tsx
|
|
2163
|
-
import { jsx as
|
|
2558
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
2164
2559
|
var Toolbar = ({ children }) => {
|
|
2165
|
-
return /* @__PURE__ */
|
|
2560
|
+
return /* @__PURE__ */ jsx40("div", { className: "flex grow items-center justify-between gap-2.5 pb-5", children });
|
|
2166
2561
|
};
|
|
2167
2562
|
var ToolbarHeading = ({ children, className }) => {
|
|
2168
|
-
return /* @__PURE__ */
|
|
2563
|
+
return /* @__PURE__ */ jsx40("div", { className: cn("flex flex-col flex-wrap gap-px", className), children });
|
|
2169
2564
|
};
|
|
2170
2565
|
var ToolbarTitle = ({ className, children }) => {
|
|
2171
|
-
return /* @__PURE__ */
|
|
2566
|
+
return /* @__PURE__ */ jsx40("h1", { className: cn("font-semibold text-foreground text-lg", className), children });
|
|
2172
2567
|
};
|
|
2173
2568
|
var ToolbarActions = ({ children }) => {
|
|
2174
|
-
return /* @__PURE__ */
|
|
2569
|
+
return /* @__PURE__ */ jsx40("div", { className: "flex flex-wrap items-center gap-1.5 lg:gap-3.5", children });
|
|
2175
2570
|
};
|
|
2176
2571
|
|
|
2177
2572
|
// src/components/ui/user-avatar.tsx
|
|
2178
|
-
import { jsx as
|
|
2573
|
+
import { jsx as jsx41, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2179
2574
|
function UserAvatar({ className, indicator = false, src, alt }) {
|
|
2180
2575
|
const name = alt ?? "User";
|
|
2181
2576
|
const initial = getInitials(name);
|
|
2182
|
-
return /* @__PURE__ */
|
|
2183
|
-
/* @__PURE__ */
|
|
2184
|
-
/* @__PURE__ */
|
|
2185
|
-
indicator && /* @__PURE__ */
|
|
2577
|
+
return /* @__PURE__ */ jsxs28(Avatar, { className, children: [
|
|
2578
|
+
/* @__PURE__ */ jsx41(AvatarImage, { src: src ?? void 0, alt: name }),
|
|
2579
|
+
/* @__PURE__ */ jsx41(AvatarFallback, { children: initial }),
|
|
2580
|
+
indicator && /* @__PURE__ */ jsx41(AvatarIndicator, { className: "-end-2 -top-2", children: /* @__PURE__ */ jsx41(AvatarStatus, { variant: "online", className: "size-2.5" }) })
|
|
2186
2581
|
] });
|
|
2187
2582
|
}
|
|
2188
2583
|
var getInitials = (name, count) => {
|
|
@@ -2194,7 +2589,7 @@ var getInitials = (name, count) => {
|
|
|
2194
2589
|
};
|
|
2195
2590
|
|
|
2196
2591
|
// src/components/utils/fonts.tsx
|
|
2197
|
-
import { jsx as
|
|
2592
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
2198
2593
|
var satoshiFontUrl = "https://assets.pelatform.com/fonts/satoshi/Satoshi-Variable.woff2";
|
|
2199
2594
|
var cssFontFace = `
|
|
2200
2595
|
@font-face {
|
|
@@ -2206,7 +2601,7 @@ var cssFontFace = `
|
|
|
2206
2601
|
}
|
|
2207
2602
|
`;
|
|
2208
2603
|
function SatoshiFontCSS() {
|
|
2209
|
-
return /* @__PURE__ */
|
|
2604
|
+
return /* @__PURE__ */ jsx42("style", { dangerouslySetInnerHTML: { __html: cssFontFace } });
|
|
2210
2605
|
}
|
|
2211
2606
|
export {
|
|
2212
2607
|
AlertComingsoon,
|
|
@@ -2220,6 +2615,7 @@ export {
|
|
|
2220
2615
|
Body,
|
|
2221
2616
|
Book,
|
|
2222
2617
|
CodeDisplay,
|
|
2618
|
+
ComingSoon,
|
|
2223
2619
|
CommandMenu,
|
|
2224
2620
|
ConfirmDismissDialog,
|
|
2225
2621
|
DEFAULT_DATA_URL_KEY,
|
|
@@ -2229,12 +2625,16 @@ export {
|
|
|
2229
2625
|
DefaultNavigate,
|
|
2230
2626
|
DotsPattern,
|
|
2231
2627
|
DownloadFile,
|
|
2628
|
+
ErrorComponents,
|
|
2232
2629
|
ExtraLink,
|
|
2233
2630
|
FloatingPaths,
|
|
2234
2631
|
Grid,
|
|
2235
2632
|
GridBackground,
|
|
2236
2633
|
Icons,
|
|
2237
2634
|
ImageInput,
|
|
2635
|
+
LanguageSwitcher,
|
|
2636
|
+
LayoutAuth,
|
|
2637
|
+
LayoutBlank,
|
|
2238
2638
|
Logo,
|
|
2239
2639
|
MainNav,
|
|
2240
2640
|
MaxWidthWrapper,
|