This commit is contained in:
metacryst
2025-06-22 18:09:19 -05:00
parent a695368462
commit 760563167c
24 changed files with 1110 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.DS_Store
package-lock.json

2
_/all.svg Normal file
View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg fill="#000000" width="800px" height="800px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M235.52 143.36h757.76c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72H235.52c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72zm0 225.28h757.76c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72H235.52c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72zm0 235.52h757.76c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72H235.52c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72zm0 225.28h757.76c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72H235.52c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72zM61.44 235.52C27.508 235.52 0 208.012 0 174.08s27.508-61.44 61.44-61.44 61.44 27.508 61.44 61.44-27.508 61.44-61.44 61.44zm0 225.28C27.508 460.8 0 433.292 0 399.36s27.508-61.44 61.44-61.44 61.44 27.508 61.44 61.44-27.508 61.44-61.44 61.44zm0 235.52C27.508 696.32 0 668.812 0 634.88s27.508-61.44 61.44-61.44 61.44 27.508 61.44 61.44-27.508 61.44-61.44 61.44zm0 225.28C27.508 921.6 0 894.092 0 860.16s27.508-61.44 61.44-61.44 61.44 27.508 61.44 61.44-27.508 61.44-61.44 61.44z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

6
_/build/imports.js Normal file
View File

@@ -0,0 +1,6 @@
import "./nav/header.js";
import "./pages/[].js";
window.routes = {
"/": "Home"
};

149
_/build/nav/header.js Normal file
View File

@@ -0,0 +1,149 @@
class Header extends Shadow {
render() {
HStack(() => {
HStack(() => {
img(darkMode ? "_/lightLogo.svg" : "_/logo.svg", 100, 100)
.marginLeft(2, "vw")
// p("Hyperia")
// .marginLeft(10, "px")
// .fontWeight(800)
// .fontSize("2xl")
})
.alignItems("center")
.flex(1)
VStack(() => {
input("", {width: "60vw", height: "35px"})
.background(Colors.searchBackground)
.borderRadius(6, px)
.border(`1px solid ${Colors.searchBorder}`)
.paddingLeft(1, "em")
.color(darkMode ? Colors.accent : Colors.oak)
.fontSize("l")
.marginTop(47, px)
.outline("none")
.transition("border .2s")
.onFocus(function () {
this.style.border = `1px solid ${darkMode ? "rgb(225 19 0)" : "white"}`
})
.onBlur(function () {
this.style.border = `1px solid ${Colors.searchBorder}`
})
.onKeyDown(function (e) {
console.log(e.key)
if(e.key === "Enter") {
navigateTo("/search/" + this.value)
}
})
HStack(() => {
a("/", () => {
img("_/all.svg", 20, 20)
.backgroundColor(window.location.pathname === "/" ? Colors.base : Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/" ? Colors.oak : "none")
.marginRight("20", "px")
a("Images", () => {
img("_/picture.svg", 20, 20)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Images" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Videos", () => {
img("_/video.svg", 20, 20)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Videos" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Products", () => {
img("_/shopping.svg", 17, 17)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(3)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Producrs" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Jobs", () => {
img("_/jobs.svg", 24, 24)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Jobs" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Files", () => {
img("_/doc.svg", 18, 18)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(3)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Files" ? Colors.oak : "none")
.marginRight("30", "px")
.color(Colors.ash)
})
.marginTop(20, px)
.justifyContent("center")
})
.flex(1)
HStack(() => {
button(() => {
img("_/silo2.svg", 48, 32)
.backgroundColor(Colors.base)
})
.addStyle(buttonStyle)
.height(40, "px")
.padding("horizontal", 18)
.paddingTop(2)
})
.flex(1)
.justifyContent("center")
})
.alignItems("center")
.gap("10px")
.width(100, 'vw')
.height(1.4, "in")
}
}
function buttonStyle(el) {
el.borderRadius(7, px)
.border(`1px solid ${Colors.searchBorder}`)
.backgroundColor(Colors.oak)
.color(darkMode ? Colors.ash : Colors.base)
.fontSize("15", "px")
.transition("scale .3s")
.onHover((hovering) => {
el.style.transition
if(hovering) {
el
.scale("1.05")
.backgroundColor(Colors.darkerBlue)
} else {
el
.scale("")
.backgroundColor(Colors.blue)
}
})
return el
}
registerShadow(Header);

19
_/build/pages/[].js Normal file
View File

@@ -0,0 +1,19 @@
css(`
home- {
margin: 0px;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
background-color: ${Colors.base};
font-family: system-ui;
}
`)
class Home extends Page {
render() {
Header()
}
}
registerPage(Home);

15
_/doc.svg Normal file
View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
]>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg fill="#000000" version="1.1" baseProfile="tiny" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="800px" height="800px" viewBox="0 0 42 42" xml:space="preserve">
<path fill-rule="evenodd" d="M22.5,1.5h-14c-2.55,0-3,0.561-3,3v32c0,2.49,0.55,3,3,3h24c2.5,0,3-0.47,3-3v-22h-13V1.5z M35.5,11.5
l-10-10v10H35.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 980 B

2
_/jobs.svg Normal file
View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg fill="#000000" width="800px" height="800px" viewBox="-2 0 19 19" xmlns="http://www.w3.org/2000/svg" class="cf-icon-svg"><path d="M13.995 5.356v9.366a.476.476 0 0 1-.475.475H1.48a.476.476 0 0 1-.475-.475V5.356a.476.476 0 0 1 .475-.475h3.788V3.239a.476.476 0 0 1 .475-.475h3.515a.476.476 0 0 1 .475.475v1.642h3.787a.476.476 0 0 1 .475.475zm-7.62-.475h2.25V3.873h-2.25z"/></svg>

After

Width:  |  Height:  |  Size: 499 B

241
_/lightlogo.svg Normal file
View File

@@ -0,0 +1,241 @@
<svg width="956" height="832" viewBox="0 0 956 832" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M194 418.75C206.167 418.833 218.342 419.196 230.494 418.804C233.536 418.706 236.499 419.089 239.5 419.085C313.167 418.976 386.833 419 460.5 419C504.833 419 549.167 419 593.5 419C599.833 419 606.167 419.063 612.5 418.986C623.667 418.852 634.845 419.455 646 418.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M484.5 412C519.333 377.333 554.162 342.662 589.006 308.006C593.936 303.102 598.943 298.276 604.019 293.311C592.96 282.756 580.35 280.053 565.994 285.986C560.506 288.255 556.572 292.45 552.5 296.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478 419.5C478 492.5 478 565.5 478 638.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M428.75 136.5C428.833 152.833 428.925 169.167 428.996 185.5C429.029 192.926 430.074 193.996 437.5 193.999C450.833 194.003 464.167 194 478 194C478 202.327 477.894 210.665 478.025 219C478.224 231.666 477.478 244.338 478.435 257.005C478.697 260.473 478.024 264 478.022 267.5C477.989 311.167 478.008 354.833 477.989 398.5C477.987 403.362 478.286 408.186 478.943 413.008C479.187 414.798 479.343 416.728 478.5 418.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M430.5 323.5C425.229 318.008 419.664 312.856 411.992 311.035C400.897 308.402 390.737 310.234 381.99 317.989C381.02 318.85 379.917 319.562 379.142 320.143C409.833 350.834 440.416 381.417 471 412" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M485 426C521 461.667 557 497.333 593 533" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M767.5 370C750.008 368.968 732.5 369.71 715 369.516C708.932 369.448 708.016 370.385 708.011 376.5C707.986 404.5 707.986 432.5 708.011 460.5C708.016 466.582 709.418 467.979 715.5 467.989C732.833 468.02 750.167 468 767.5 468" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M471 426C435.667 461.333 400.333 496.667 365 532" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M527.5 138C527.5 154.333 527.4 170.668 527.555 186.999C527.609 192.623 524.538 193.98 520 193.99C506.167 194.018 492.333 194 478.25 194C478.25 180.002 478.25 166.001 478.25 152" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M333 273C343.498 262.666 345.597 250.395 340.405 237.037C335.854 225.326 326.601 217.924 314.461 216.294C303.574 214.832 292.614 215.979 285.768 227.36C284.337 229.74 280.6 230.97 278.978 233.988C267.829 254.727 281.674 279.591 302.974 283.153C314.584 285.095 323.705 281.421 332 274" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M193 513.75C203.833 513.833 214.667 513.969 225.5 513.972C229.36 513.974 230.596 511.708 230.552 507.999C230.411 496.168 231.085 484.295 230.313 472.512C229.707 463.284 230.921 454.181 230.625 444.996C230.33 435.85 230.894 426.637 230.767 417.503C230.587 404.502 231.397 391.445 230.273 378.52C229.582 370.58 230.902 362.844 230.572 354.997C230.244 347.177 230.503 339.333 230.499 331.5C230.495 324.794 229.733 324.046 223 323.998C211.499 323.916 199.991 324.313 188.5 323.5" stroke="#F2DAC8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M323.75 173.5C323.462 176.144 325.437 177.479 327.01 178.99C347.662 198.838 368.349 218.651 388.991 238.509C395.446 244.719 402.394 250.467 407.898 257.579C409.039 259.054 410.026 258.09 411 258.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M234.75 265.5C234.661 267.72 236.048 269.092 237.488 270.512C251.841 284.659 266.128 298.872 280.512 312.987C291.617 323.884 302.926 334.574 313.897 345.602C315.497 347.21 317.227 347.677 319 348.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M525.5 696C525.5 687 525.544 678 525.483 669C525.448 663.958 524.038 662.454 519.001 662.535C506.001 662.742 492.988 662.754 480 662.755C466.345 662.756 452.66 662.929 439.003 662.429C433.443 662.225 430.928 664.259 430.976 670.5C431.061 681.499 431 692.5 431 703.5" stroke="#F2DAC8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M441.5 524.5C441.401 526.052 441.772 527.585 440.531 529.027C431.352 539.685 419.954 546.975 405.98 548.291C391.329 549.671 377.434 546.624 366.489 535.511C366.076 535.092 365.5 534.833 365 534.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M363.5 460.5C351.157 473.689 346.057 489.053 349.495 507.001C351.341 516.636 355.57 525.017 362.5 532" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M573 692C573 677 573.011 662 572.995 647C572.988 640.247 571.746 638.832 565.002 639.056C557.826 639.294 550.593 637.997 543.459 640.377C540.589 641.335 537.751 638.822 534.498 638.873C517.169 639.143 499.833 639 482.5 639C462.5 639 442.5 638.995 422.5 639.006C419.962 639.008 417.306 638.579 415.035 640.055C414.306 640.528 413.575 640.676 413.016 640.458C405.489 637.515 397.667 639.429 389.996 639.077C384.507 638.825 383.519 640.065 383.51 645.5C383.482 660.833 383.5 676.167 383.5 691.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M732 419C703.667 419 675.333 419 647 419" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M565 452.5C582.403 454.977 602.281 442.506 603.233 419.51C604.01 400.757 587.608 384.055 568.999 384.988C567.171 385.079 565.333 385 563.5 385" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M354 544.5C360.488 549.998 363.456 557.45 363.837 565.508C364.321 575.753 360.496 584.797 352.916 591.91C352.035 592.737 350 592.333 348.5 592.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M682 384.75C670.839 384.987 661.192 388.517 653.993 397.494C648.581 404.242 646.538 411.63 646.764 420.506C647.158 436.022 655.699 445.014 668.57 450.846C673.568 453.111 679.33 453.873 685 452.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M351.5 542C342.115 530.86 321.68 530.153 309.492 539.991C307.282 541.775 305.677 544.27 303 545.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M378 322.5C370.359 330.22 367.744 339.147 369.818 350.035C371.247 357.53 375.518 363.074 379.5 369" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M604 340.5C614.625 329.157 616.727 315.87 610.52 302.491C609.222 299.693 607.4 297.388 605 295.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M286.5 228.5C301.333 243.167 316.167 257.833 331 272.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M408 259C406.57 263.012 403.272 265.725 400.395 268.386C388.091 279.769 376.959 292.292 365 304" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M363 306C350.667 318.333 338.259 330.594 326.066 343.064C323.754 345.429 320.462 346.795 319 350" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M716.5 253.5C714.015 253.169 712.277 254.046 710.433 255.934C699.234 267.399 687.695 278.534 676.622 290.117C674.53 292.306 670.918 292.647 670 296" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M642.5 185C630 197.333 617.494 209.661 605.008 222.008C603.63 223.371 602.685 225.009 602.5 227" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M623 378.5C622.917 404.167 622.833 429.833 622.75 455.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M228.5 466C215.5 466 202.5 466 189.5 466" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316 579C306.5 569.5 297.021 559.978 287.491 550.509C282.686 545.735 281.311 545.732 276.509 550.509C265.48 561.48 254.5 572.5 243.5 583.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M228.5 370.5C215.5 370.5 202.5 370.5 189.5 370.5" stroke="#F2DAC8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M613 623C616.348 624.237 617.038 627.867 619.396 630.109C629.473 639.686 639.092 649.744 649.066 659.432C650.961 661.272 651.831 663.015 651.5 665.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M649 587C658.167 577.667 667.19 568.186 676.549 559.051C683.013 552.742 683.211 554.189 687.989 559.011C698.856 569.977 709.667 581 720.5 592" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M318 581.5C329.022 592.327 340.714 602.514 350.768 614.969C338.591 628.722 325.395 640.726 313 653.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M801.5 244C805.504 247.861 808.474 252.316 808.936 258.005C809.048 259.379 809.849 260.052 810.466 261.022C811.907 263.287 813.369 265.576 814.461 268.017C817.571 274.968 820.368 282.061 823.575 288.965C824.635 291.247 824.575 293.276 824 295.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M646.5 589C637.5 598.167 628.498 607.332 619.501 616.501C617.574 618.466 615.371 620.221 614.5 623" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M686 115.5C684.109 112.022 681.01 109.901 677.484 108.541C668.87 105.22 662.793 96.9794 653 96C650.789 92.3703 647.348 90.1492 643.477 89.0855C635.241 86.8231 628.701 80.6137 620.009 79.4306C616.524 78.9561 614.562 75.1355 610.999 74.5056C601.541 72.8336 593.283 67.169 583.506 66.4197C579.604 66.1206 577.029 62.4447 572.509 62.2721C563.005 61.9091 554.356 56.487 544.494 56.8438C541.378 56.9565 538.677 54.2391 534.995 54.352C525.615 54.6397 516.492 51.6757 506.999 51.7219C502.978 51.7415 498.724 50.1147 494.505 50.5466C486.006 51.4169 477.532 48.681 468.957 50.8276C465.9 51.5928 462.438 49.9775 458.99 50.4186C451.69 51.3524 444.182 51.1437 437.046 52.7116C431.008 54.0384 424.74 52.0894 419.021 54.5499C410.999 58.0017 401.831 56.1931 393.959 60.4236C390.338 62.3695 385.782 60.3447 381.991 62.4843C374.176 66.8952 364.526 66.2355 356.977 71.4672C356.146 72.0435 354.947 72.5606 354.009 72.4342C348.996 71.7588 344.943 74.2275 341.069 76.6116C338.331 78.2962 335.662 79.5023 332.51 80.0577C328.616 80.744 325.297 83.0094 322.051 85.0799C318.374 87.4251 319.071 91.9577 318.171 95.5429C317.652 97.6113 317.243 99.725 316.5 101.75" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M399.5 742.5C398.84 744.173 397.503 745.103 396.022 746.034C391.88 748.639 388.05 751.384 387.414 756.99C386.876 761.741 383.415 764.589 379.544 767.068C377.695 768.252 375.038 768.746 374.5 771.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601 226.75C610 235.833 618.997 244.92 628.002 253.998C630.338 256.352 632.614 258.779 635.5 260.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M352 545C340.667 556.333 329.333 567.667 318 579" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M647 250C643.48 254.146 639.959 258.293 636.229 262.686C647.294 272.025 657.068 284.632 669.5 294.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M802.5 498.25C799.923 498.174 799.031 499.895 798.501 502C798.252 502.986 798.152 504.131 798.138 505.002C797.995 513.608 791.937 520.537 791.515 529.001C791.397 531.365 788.845 532.023 788.354 534.471C786.409 544.167 780.895 552.597 777.95 561.984C777.193 564.397 774.093 565.372 773.518 568.004C771.568 576.919 764.707 583.44 761.932 591.978C760.879 595.215 756.596 595.981 755.466 599.489C752.797 607.773 744.983 612.85 741.91 620.966C741.167 622.929 738.265 623.056 736.966 624.977C732.111 632.164 726.353 638.608 720.623 645.109C717.672 648.458 713.638 650.409 710.955 653.966C709.529 655.858 707.364 657.24 707.5 660" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M665.5 693.5C660.856 693.945 657.221 696.572 654.063 699.567C648.664 704.687 640.502 705.676 636 712C629.623 711.383 625.901 716.499 620.881 718.733C615.571 721.098 610.216 724.65 604.922 725.534C596.613 726.922 590.493 733.5 582 733.545C580.999 733.55 579.898 733.997 579.017 734.529C574.695 737.136 569.922 738.212 564.997 738.416C562.933 738.501 561.003 739.083 559.579 740.109C557.213 741.812 554.698 742.189 552.003 742.527C547.737 743.062 543.6 744.032 539.427 745.248C535.241 746.468 530.244 744.716 526.04 746.59C519.094 749.689 511.385 747.006 504.484 749.962C502.526 750.801 500.456 749.506 498.531 749.258C493.488 748.607 489.01 751.823 483.986 750.556C479.179 749.344 474.308 750.707 469.498 750.749C465.597 750.782 461.588 749.017 457.504 749.535C452.356 750.187 447.235 747.818 442.538 748.343C434.006 749.297 426.433 743.408 418 746C411.178 741.485 402.27 744.411 395.43 739.599C393.556 738.28 390.751 737.399 388.515 737.639C380.643 738.483 374.824 732.109 367.004 732.037C364.501 732.014 360.907 728.788 357.571 727.337C355.436 726.408 353.533 726.633 351.5 726.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M595 535C600.18 540.321 605.741 545.272 610.381 551.208C614.027 547.36 617.442 543.608 621.041 540.041C622.208 538.884 623.561 537.622 625.5 537.75" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.5 391.5C107.594 395.704 109.78 400.852 109.753 405.501C109.741 407.493 109.997 409.392 109.64 411.523C108.983 415.441 108.99 419.503 109.048 423.499C109.11 427.783 112.352 429.719 115.405 432.12C119.664 435.47 123.944 438.448 129.485 437.417C137.649 435.897 141.863 442.185 146.757 446.289C148.872 448.063 149.415 453.223 148.751 456.449C147.705 461.534 150.508 465.474 151.017 469.998C151.056 470.346 151.536 470.715 151.471 470.993C149.487 479.379 154.983 486.796 154.543 495.002C154.321 499.132 158.391 501.795 158.561 505.997C158.894 514.212 164.159 521.248 164.467 529.501C164.501 530.431 164.951 530.863 165.443 531.542C168.24 535.4 170.755 539.414 170.518 544.501C170.442 546.142 171.678 547.222 172.437 548.536C173.812 550.914 175.574 553.009 176.121 555.978C176.935 560.398 180.827 563.785 182.139 567.623C185.073 576.213 191.229 582.962 194.111 591.462C195.119 594.435 198.798 595.641 200.108 598.957C203.335 607.127 210.838 612.704 214.016 620.994C214.786 623.003 217.363 622.421 218.621 624.424C223.357 631.969 229.736 638.246 235.437 645.052C238.745 649.001 243.674 651.021 246.558 655.462C250.859 662.083 257.269 667.08 263.263 671.655C272.339 678.583 280.343 687.254 290.241 692.549C297.096 696.217 302.878 701.342 309.902 704.705C316.467 707.848 322.271 712.515 329.464 714.622C331.205 715.133 332.5 717.167 334 718.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224 153C222.5 153.833 220.67 154.358 219.554 155.551C212.944 162.615 206.462 169.799 200.024 177.021C198.166 179.106 197.407 181.347 199.401 184.072C200.174 185.129 199.646 187.051 200.035 188.491C201.215 192.856 202.587 197.181 207.006 199.489C210.685 201.41 212.039 204.532 212.025 208.5C212.022 209.499 212.081 210.638 212.541 211.478C215.723 217.293 212.667 221.812 208.9 225.395C202.76 231.235 199.83 239.185 194.97 245.843C189.88 252.815 186.073 261.277 182.117 269.311C178.813 276.02 176.594 283.402 172.01 289.508C169.466 292.897 171.142 297.488 168.629 301.09C167.264 303.047 166.675 305.561 164.5 307" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M503 87.5C499.391 88.9334 495.547 89.2558 492.047 87.88C488.652 86.5452 485.338 86.5054 482.015 87.0856C479.11 87.5927 476.334 87.5218 473.5 87.0026C472.502 86.8199 471.337 86.2492 470.525 86.5655C463.517 89.2958 456.161 87.7738 448.998 88.4816C446.176 88.7605 443.335 88.9323 440.5 88.9785C435.303 89.0631 430.454 90.8189 425.528 92.1058C424.125 92.4723 422.663 92.7464 421.531 92.3999C418.581 91.4973 416.162 92.908 413.472 93.3197C404.094 94.7552 395.371 98.7927 385.978 99.7943C384.752 99.9251 383.459 100.127 382.542 100.584C377.6 103.043 372.438 104.514 367.041 105.689C363.925 106.368 361.619 109.768 358 109.993C350.988 110.429 345.932 115.814 339.468 117.366C334.959 118.448 331.947 121.705 328.012 123.526C322.45 126.101 316.636 127.934 311.808 132.287C309.121 134.711 304.707 136.609 300.458 133.558C299.231 132.678 297.528 132.201 295.995 132.058C291.994 131.686 289.304 129.85 287.991 126.003C286.365 121.236 282.223 119.307 277.975 118.089C271.272 116.167 264.539 115.594 259.512 122.01C255.774 126.781 249.508 128.287 245.593 132.585C239.965 138.765 232.502 142.74 226.967 148.971C224.9 151.298 224.136 153.393 225.392 156.543C226.697 159.819 226.022 163.491 226 167" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M745 203C743.616 207.33 743.891 211.992 742.111 216.296C741.389 218.041 742.851 220.248 744.081 221.415C749.372 226.432 752.737 232.662 755.991 239.005C756.228 239.468 756.179 240.253 756.523 240.463C763.724 244.863 764.093 253.855 769.415 259.579C771.857 262.205 770.893 266.696 773.508 269.493C779.114 275.487 779.413 284.266 784.556 290.453C785.686 291.811 785.538 292.946 785.708 294.477C785.986 296.991 786.287 299.844 788.02 301.984C793.24 308.431 791.553 317.668 797 324C795.735 327.752 796.702 331.344 798.57 334.458C802.854 341.597 801.075 350.212 804.743 357.627C806.35 360.876 803.903 365.442 805.334 369.558C806.029 371.557 806.187 373.612 808 375" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M487.5 86C489.405 81.8772 492.642 78.8874 495.997 75.4958C498.654 79.215 501.104 82.5884 503.49 86.0067C505.093 88.3025 507.581 88.6462 510.006 88.9548C511.81 89.1844 513.667 88.9913 515.5 89.0017C520.693 89.0311 525.559 90.7629 530.472 92.1033C531.878 92.4869 533.337 92.7464 534.469 92.3998C537.419 91.4973 539.869 93.0104 542.522 93.3027C552.109 94.3594 560.731 99.5314 570.5 99.5001C570.667 99.4995 570.876 99.4335 570.994 99.5095C577.427 103.672 585.325 103.987 591.996 107.507C595.461 109.335 598.941 111.067 603 111.001C603.333 110.995 603.768 110.861 603.985 111.02C609.784 115.267 616.867 116.934 622.995 120.509C624.031 121.113 624.917 122.058 626.013 122.464C634.675 125.678 642.147 131.209 650.524 134.946C652.863 135.989 653.965 138.335 656.025 139.453C663.782 143.665 670.488 149.461 678.068 153.884C680.624 155.376 681.769 157.97 684.022 159.466C691.963 164.741 698.42 171.793 705.931 177.589C708.209 179.347 709.235 182.811 711.58 184.381C718.99 189.339 723.567 197.081 730.302 202.736C732.848 204.875 733.746 209.253 736.432 212.065C737.968 213.672 739.2 215.458 741.5 216" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M634 236.5C640.833 243 647.824 249.347 654.398 256.1C656.215 257.967 658.424 259.409 660 261.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M606 522.5C598.5 530 590.902 537.406 583.569 545.066C581.74 546.978 579.985 547.831 577.5 547.5" stroke="#F2DAC8" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478.5 663.5C477.557 672.986 478.177 682.5 478 692" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M581.5 66.5C579.634 70.2919 575.378 70.9913 572.426 73.41C568.986 76.2293 566.466 85.9854 568.441 90.0289C569.915 93.0464 572.042 95.8879 572 99.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M468.5 752C467.985 754.321 466.052 755.584 464.459 756.953C460.385 760.455 458.975 764.832 459.507 769.999C459.776 772.61 459.56 774.955 457.024 776.538C456.365 776.95 455.922 777.789 455.512 778.507C450.967 786.45 443.875 787.17 436.012 785.201C432.207 784.247 428.394 783.833 424.515 783.375C413.815 782.11 403.175 780.386 392.964 776.598C390.547 775.702 387.632 777.187 384.994 776.014C375.579 771.827 365.062 770.96 355.794 765.875C353.315 764.515 348.91 764.534 345.516 763.451C342.845 762.599 340.231 761.436 338.5 759" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M433.5 749C432.077 752.463 429.078 754.646 426.402 756.883C424.279 758.659 423.253 760.508 423.542 762.995C424.236 768.945 420.923 772.532 416.486 775.478C414.656 776.693 413.087 778.087 412 780" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M488.5 52C489.167 53.3333 489.501 55.0754 490.554 55.9332C497.05 61.2207 497.335 68.1064 496 75.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M557 743C557.782 745.483 560.261 746.171 562.058 747.416C565.545 749.831 568.186 752.314 568.609 756.99C569.117 762.595 573.787 765.2 577.964 768.053C579.286 768.956 581.507 769.159 581.5 771.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478.5 639.5C477.651 647.152 478.112 654.832 478 662.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148 463C145.005 465.005 142.674 467.668 140.49 470.492C138.991 472.431 136.995 473.838 134.508 473.449C127.593 472.367 123.997 476.758 120.483 481.487C119.429 482.904 118.167 484.167 117 485.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316 581C308.5 588.333 301 595.667 293.5 603" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M496 259C482.5 259 469 259 455.5 259" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M806 359C809.659 358.578 811.624 361.854 814.362 363.268C817.404 364.838 820.253 365.172 822.956 364.355C826.949 363.15 829.987 363.1 833.669 365.766C835.809 367.315 838.212 369.071 840.955 370.117C844.56 371.491 844.87 375.759 844.756 378.49C844.429 386.285 847.188 393.845 846.347 401.483C845.6 408.271 847.539 414.819 846.986 421.499C846.678 425.217 847.142 429.346 842.021 430.586C841.043 430.822 840.354 432.189 839.497 432.996C835.086 437.151 829.87 438.505 824.007 437.216C822.028 436.781 820.387 436.937 818.995 438.496C818.525 439.023 818.089 439.698 817.486 439.97C810.777 442.992 807.099 447.893 807.481 455.501C807.667 459.211 806.619 463.273 810.986 465.526C811.585 465.835 812.109 466.43 812.483 467.011C815.658 471.951 820.184 473.952 826.001 473.801C831.183 473.665 832.513 478.704 835.481 481.52C836.761 482.734 837.833 484.167 839 485.5" stroke="#F2DAC8" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M477.5 236C470.167 236 462.833 236 455.5 236" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M402 693.5C396.451 693.976 390.87 695.147 385.487 692.527C384.748 692.167 383.631 691.762 383.031 692.062C376.032 695.561 368.713 693.659 361.5 693.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M402 670.5C400.397 671.301 398.664 671.079 397.002 670.973C385.174 670.22 373.318 671.738 361.5 670.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M456.5 615.5C468.321 614.473 480.169 615.35 492.001 615.019C493.671 614.972 495.397 614.699 497 615.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M497 592.5C493.88 591.448 490.653 591.959 487.502 592.054C477.169 592.366 466.819 591.426 456.5 592.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M554 670.5C559.635 671.745 565.35 670.958 570.998 670.882C578.829 670.778 586.687 671.623 594.5 670.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M497 693.5C491.309 694.172 485.583 694.804 480.033 692.903C478.949 692.532 477.791 692.265 477.031 692.575C470.269 695.331 463.357 693.659 456.5 693.5" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M803.5 499C804.667 500.5 805.866 501.976 806.994 503.504C811.554 509.678 819.807 511.127 827.059 508.676C835.735 505.743 839.263 500.306 839.062 491.499C838.928 485.571 842.58 480.424 843.149 474.514C843.376 472.16 843.408 470.11 842.5 468" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.5 430C109.075 435.548 108.443 441.091 111.031 446.485C111.639 447.752 111.187 448.794 111.111 450.007C110.819 454.712 110.907 459.409 112.415 464.028C113.091 466.1 114.227 467.273 115.986 468.274C119.202 470.105 122.333 472.083 125.5 474" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150 359C146.341 358.578 144.189 361.725 141.679 363.287C138.565 365.225 135.594 365.24 133.069 364.312C128.775 362.733 125.592 363.58 121.911 365.857C119.652 367.255 117.588 368.999 115.064 370.142C112.04 371.513 111.927 375.069 111.541 378.005C110.747 384.047 110.055 389.376 116.232 394.334C121.094 398.238 125.102 401.359 131.509 400.572C134.334 400.225 136.565 401.914 138.532 403.969C140.654 406.186 142.531 408.742 145.5 410" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M845.5 430C846.948 435.167 847.221 440.345 845.486 445.495C844.595 448.139 844.938 450.846 845.049 453.498C845.377 461.309 843.866 467.94 835.518 471.049C833.727 471.715 832.167 473 830.5 474" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M125.5 522.5C125.361 526.153 125.834 529.734 127.527 532.986C131.156 539.95 131.217 548.309 135.206 554.875C139.63 562.16 140.168 571.112 146.247 577.732C148.021 579.664 147.392 584.409 149.578 586.932C155.757 594.064 157.377 603.848 164.22 610.777C166.493 613.079 167.165 617.784 169.445 621.039C170.901 623.117 171.991 625.393 174.75 626" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M554 693.5C559.691 694.172 565.421 694.816 570.968 692.906C572.225 692.473 573.586 692.212 574.462 692.589C580.706 695.278 587.145 693.667 593.5 693.75" stroke="#F2DAC8" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M451 785.5C455.318 788.874 460.345 787.795 464.965 787.037C467.441 786.631 469.639 786.398 472.002 786.993C472.825 787.201 473.69 787.553 474.496 787.466C483.335 786.52 492.398 788.778 500.933 787.151C509.108 785.593 517.817 787.799 525.5 783.501C527.497 782.384 529.308 784.114 531.533 783.66C542.079 781.508 552.883 780.682 563.05 776.625C565.207 775.765 568.229 777.158 570.459 776.381C578.234 773.673 586.262 771.663 593.91 768.763C599.546 766.625 605.161 764.837 610.985 763.436C613.71 762.78 615.78 760.676 618 759" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M831 315.5C834.932 319.358 835.531 324.637 835.659 329.509C835.711 331.486 835.902 333.345 836.588 334.963C837.966 338.211 839.029 341.485 838.972 345C838.87 351.342 842.435 356.795 843.141 362.984C843.46 365.777 843.566 368.164 842 370.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.5 468C110.875 473.037 113.318 477.976 114.792 482.403C116.034 486.127 116.447 489.77 116.999 493.5C117.514 496.979 117.847 500.549 120.036 503.473C121.053 504.831 120.719 506.006 120.601 507.508C120.216 512.416 121.694 516.906 124.442 521.039C125.115 522.05 125.589 522.151 126.5 521.75" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M830.5 522.5C830.476 527.452 829.82 532.191 827.038 536.524C823.94 541.349 825.411 547.831 822.346 552.397C817.156 560.131 816.004 569.662 810.201 577.156C807.852 580.19 808.141 585.007 805.647 588.602C804.387 590.417 803.392 592.281 801.5 593.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M133.5 327C130.167 328.667 126.937 330.607 123.471 331.923C120.02 333.232 118.428 335.515 117.986 338.998C116.887 347.653 114.887 356.114 112.565 364.518C112.004 366.552 112.554 368.736 114 370.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M194 593.5C193.377 594.614 192.601 595.584 192.46 596.996C191.758 604.02 187.89 608.852 181.459 611.398C179.496 612.175 179.027 613.447 178.508 615.003C177.338 618.502 177.709 622.443 175.111 625.591C174.524 626.303 175.194 628.206 175.553 629.485C175.763 630.233 176.504 630.83 176.999 631.5C182.667 639.166 187.534 647.642 194.235 654.262C200.379 660.332 205.806 667.1 211.595 673.373C218.438 680.787 226.032 687.349 233.242 694.247C237.962 698.764 242.197 704.511 248.103 707.281C256.424 711.185 261.059 720.365 270.7 722.256C271.611 722.434 272.63 725.546 274.504 726.491C283.785 731.171 291.763 738.222 301.567 741.818C304.376 742.848 304.983 745.641 307.494 746.517C315.761 749.398 323.637 753.211 331.459 757.082C334.992 758.83 337.786 758.156 341.03 756.56C347.392 753.431 352.666 749.531 354.005 742.001C354.696 738.114 358.638 737.735 361.147 736.248C362.998 735.151 364.403 733.766 366 732.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M781.5 212C786.565 213.424 787.926 218.03 789.639 222.047C790.801 224.773 791.775 227.493 794.016 229.482C796.952 232.089 798.203 235.717 799.966 239.018C801.722 242.306 800.107 245.401 799.013 248.504C797.104 253.92 794.714 258.32 788.627 260.811C784.726 262.408 781.498 261.249 777.996 261.419C775.851 261.523 773.667 260.833 771.5 260.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M777 613C778.112 617.016 778.171 621.411 780.577 624.947C781.803 626.748 780.838 628.394 780.343 629.425C778.96 632.308 777.075 635.048 774.943 637.449C771.845 640.937 769.249 644.793 766.352 648.381C759.841 656.444 753.643 664.853 745.542 671.551C742.539 674.034 741.479 678.163 738.06 680.584C732.469 684.543 728.443 690.572 722.85 694.274C715.634 699.05 711.188 706.86 702.663 710.393C698.325 712.191 695.254 717.602 690.487 719.973C687.425 721.495 684.814 723.344 682.349 725.852C679.933 728.311 677.081 730.766 673.014 731.145C670.73 731.359 668.794 733.315 666.977 734.975C663.824 737.856 660.231 739.959 656.01 741.04C651.89 742.096 649.68 746.153 645.557 747.656C639.14 749.994 632.852 752.755 626.915 756.359C622.961 758.759 618.269 759.307 613.983 756.022C609.895 752.889 604.322 751.404 603.427 745.01C602.762 740.262 598.575 738.309 595.007 735.99C593.302 734.882 591.667 733.667 590 732.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M786.5 292.5C787.333 292.5 788.296 292.224 788.98 292.543C795.599 295.629 802.053 295.307 808.514 292.027C811.298 290.613 813.981 292.617 816.448 293.216C825.255 295.354 830.994 304.3 830.545 313.502C830.439 315.67 828.781 316.836 827.889 318.438C826.282 321.324 824 323.833 822 326.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.5 401C137.652 397.942 140.709 396.085 143.992 394.483C146.032 393.488 147.475 392.049 147.528 389.501C147.611 385.486 149.212 381.728 148.736 377.474C148.377 374.274 150.162 370.832 151.005 367.501C151.134 366.992 151.573 366.44 151.464 366.009C149.63 358.741 154.565 352.381 154.315 345.507C154.109 339.822 158.824 336.064 158.609 330.496C158.381 324.588 161.519 319.38 163.596 314.037C165.056 310.282 164.621 306.908 162.415 304.066C159.082 299.774 157.25 294.202 150.555 292.745C146.318 291.823 142.829 292.844 138.995 293.471C130.962 294.783 127.146 300.843 126.346 307.541C125.586 313.901 121.967 318.949 120.924 324.987C120.478 327.566 120.166 330 121 332.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M779 564.5C779.665 565.501 780.602 566.145 781.118 567.453C782.828 571.79 784.705 575.893 789.961 577.617C797.106 579.961 798.014 587.624 800.929 593.169C802.559 596.27 799.804 601.443 797.289 603.773C792.001 608.671 790.751 615.578 786.901 621.105C785.361 623.317 783.977 625.097 781.5 626" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M807.5 463.5C804.402 467.163 805.067 471.762 804.645 476.014C804.522 477.254 805.126 478.586 804.534 480.014C802.187 485.68 801.782 491.758 801 497.75" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M319 87.5C312.938 86.9266 308.743 90.5334 304.529 94.035C304.144 94.3552 304.164 95.6776 304 95.6768C295.272 95.6365 290.367 103.236 283.091 106.221C278.289 108.191 272.334 109.751 270.5 116" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M197.5 181.5C193.085 182.486 190.792 186.25 189.212 189.6C186.953 194.388 182.528 197.239 180.114 201.564C176.512 208.015 170.602 213.085 167.803 219.63C164.18 228.102 156.349 234.136 154.733 243.705C154.515 244.992 151.22 246.688 150.635 248.543C147.467 258.582 140.594 266.987 138.303 277.457C137.691 280.253 134.524 282.483 133.547 285.515C132.51 288.732 130.515 291.869 132 295.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M817 365.5C815.25 368.677 812.761 371.35 809.925 373.395C806.843 375.618 806.734 379.04 807.27 381.44C808.051 384.937 806.894 388.977 809.545 391.961C810.503 393.04 809.782 393.794 809.456 394.479C807.597 398.388 808.089 402.626 808.666 406.475C809.927 414.889 809.639 423.119 808.672 431.52C808.187 435.739 807.234 440.428 810 444.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M654.5 135C661.683 132.02 667.798 128.231 672.338 121.219C674.919 117.233 681.621 117.311 686.55 116.226C689.625 115.548 692.449 118.586 694.965 120.545C704.884 128.269 715.009 135.783 724.37 144.146C729.88 149.068 735.616 154.076 740.249 159.707C745.974 166.665 753.902 171.637 758.106 179.946C759.05 181.812 761.593 182.797 762.954 184.536C768.234 191.281 773.505 198.047 778.417 205.058C780.424 207.923 782.631 211.233 779.567 215.054C778.786 216.028 778.842 217.669 778.498 219C777.571 222.588 776.312 225.841 772.516 227.536C766.986 230.006 764.019 234.269 763.909 240.498C763.891 241.51 762.667 242.5 762 243.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.5 394C148.24 398.247 148.162 402.837 147.022 406.937C146.141 410.106 146.839 413.007 146.502 416C146.484 416.165 146.494 416.334 146.501 416.5C146.833 424.333 147.149 432.167 147.513 439.999C147.594 441.728 146.889 443.13 146 444.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M323 724.5C325.852 724.709 328.065 722.866 329.893 721.369C333.469 718.439 336.82 718.933 340.499 720.503C340.841 720.649 341.15 720.909 341.503 720.989C348.725 722.614 352.232 727.385 353.004 734.5C353.204 736.346 353.997 737.968 355 739.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M835 506C836.861 511.028 834.149 515.423 832.874 519.965C832.619 520.872 831.484 522.802 829.5 521.75" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304 135.5C302.441 139.099 299.103 141.061 295.935 142.338C290.355 144.588 286.216 148.657 281.508 152.011C278.399 154.226 275.364 156.185 271.478 153.532C270.011 152.531 268.041 153.47 266.522 152.937C258.355 150.07 253.288 144.203 254.02 134.001C254.144 132.281 254.572 130.576 253.5 129" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M743 672.5C741.333 672 739.617 670.951 738.009 671.096C731.322 671.7 726.521 669.014 722.976 663.515C721.853 661.774 720.046 661.418 717.999 661.451C715.503 661.491 712.834 661.66 710.537 660.889C706.698 659.6 703.592 660.614 701.58 663.555C696.061 671.622 686.155 674.458 680.154 682.233C677.927 685.118 672.949 686.85 669.531 689.539C667.204 691.369 665.814 693.31 666.177 697.032C666.476 700.093 666.949 703.884 665 707" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M235.5 176.5C233.577 179.456 235.474 182.49 236.257 184.917C237.575 189.002 236.523 191.912 233.953 194.452C228.089 200.246 223.386 206.935 218.463 213.472C217.525 214.717 216.441 216.138 214.5 216" stroke="#F2DAC8" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M275 155.5C273.273 159.544 269.879 162.605 266.391 164.273C259.431 167.603 255.463 174.22 249.209 178.318C246.728 179.944 245.037 183.95 242.499 186.499C241.086 187.92 239.744 189.462 237.5 189.5" stroke="#F2DAC8" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M636.5 87.5C637.348 92.2464 637.556 97.1527 640 101.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M226 671C226.765 675.802 225.803 680.419 224.5 685" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M187.5 194.5C192 195.483 196.5 195.014 201 194.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M716.25 139C711.869 140.927 707.227 141.656 702.5 142" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M179 225C174.601 226.7 170.018 225.912 165.5 226" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M284 718C285.213 722.435 285.861 726.911 285 731.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M702 696C702.243 700.507 701.203 705.108 703 709.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M254 696C253.912 700.503 254.834 705.043 253.5 709.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M665 131C666.7 135.399 665.912 139.982 666 144.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M160.5 257C156.134 258.605 151.701 259.902 147 260" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M291 131C289.774 135.461 289.057 139.94 290.5 144.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M672 718C670.813 722.437 670.587 726.945 671 731.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M730 671C730.1 675.584 729.009 680.344 732 684.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M702.5 128C700.642 130.906 702.083 134.021 702.104 136.999C702.131 140.768 701.531 144.03 698.497 146.497C694.076 150.092 693.478 154.812 694.51 159.998C694.906 161.987 693.745 163.651 693.5 165.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M639.5 736.5C637.983 740.873 636.872 745.322 637 750" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M285.5 106.5C285.497 111.098 285.447 115.69 283.5 120" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601 73C602.5 77.5833 604 82.1667 605.5 86.75" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316.5 736.5C318.303 740.82 319.092 745.329 319 750" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M172.5 574.5C176.635 576.364 180.88 577.658 185.5 577" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M731.5 154C729.249 158.131 730.108 162.621 730 167" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.5 577.5C151.945 578.018 156.295 578.945 160.5 580.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M808.5 577.5C804.055 578.018 799.705 578.945 795.5 580.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M275.5 682.5C274.167 683 272.869 683.769 271.494 683.953C265.847 684.708 260.377 685.526 257.47 691.485C255.033 696.483 249.797 695.919 245.478 696.902C243.614 697.327 241.842 697.522 240.5 699" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M350.5 752C352.317 756.224 354.229 760.414 355 765" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M790.5 611.5C787.833 611.667 785.151 611.704 782.503 612.023C773.074 613.161 765.128 606.746 764.015 598.498C763.799 596.902 763.197 595.568 762 594.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M777.5 225C781.723 226.763 786.146 225.93 790.5 226" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M178.5 613C174.294 611.398 169.892 611.495 165.5 611.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M237.5 648.5C236.665 652.807 233.871 656.813 235.5 661.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M200.5 643.5C196.177 643.053 191.892 641.643 187.5 643" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M605.5 751.5C604.031 755.792 601.915 759.884 601.5 764.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M240.5 139C244.645 140.818 248.913 142.1 253.5 142" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M262 152.5C261.036 156.877 261.197 161.21 262.5 165.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M755.5 194.5C759.833 195.169 764.167 195.362 768.5 194.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M766 605.5C761.735 606.725 757.444 607.606 753 606.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224.5 203.5C220.287 201.604 215.895 202.037 211.5 202.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M719 648.5C719.92 652.794 721.125 657.045 721 661.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M355 73C353.833 76.6667 352.791 80.3796 351.456 83.9835C350.584 86.3355 350.9 88.3738 351.974 90.513C352.693 91.9448 353.434 93.4563 353.688 95.0102C354.076 97.3876 355.11 98.7503 357.477 99.5674C360.813 100.719 363.822 102.572 366 105.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M290.5 694C289.807 698.366 289.433 702.721 291 707" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M248.5 659.5C245.561 662.14 241.8 660.658 238.466 661.334C236.399 661.753 234.104 661.92 233.09 663.556C229.067 670.045 222.957 671.534 216 671.546C214.999 671.548 214 672.167 213 672.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M604.5 727C604.855 731.593 602.679 735.477 601 739.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M158.5 513C155 511.667 151.292 510.698 148.078 508.863C146.153 507.764 144.635 507.921 143.015 508.539C137.057 510.814 131.413 510.87 125.962 507.054C124.72 506.185 123 506 121.5 505.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M693.5 673C694.897 677.167 695.236 681.333 693.5 685.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M262.5 673C261.862 677.148 261.274 681.298 262 685.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M681.5 682C682.568 683.197 683.892 683.861 685.5 684.005C691.384 684.531 696.447 686.769 699.433 692.038C702.021 696.602 706.641 695.862 710.529 696.89C712.356 697.373 714.158 697.522 715.5 699" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M522.5 749C523.638 752.615 527.113 754.109 529.613 756.375C531.474 758.06 532.675 759.715 532.442 761.994C531.88 767.495 533.956 771.507 538.476 774.536C540.127 775.643 541.5 777.167 543 778.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M758 181.5C755.795 183.93 756.311 187.161 755.515 190.004C753.185 198.323 747.065 203.12 738.517 202.322C735.977 202.085 734.129 202.92 732 203.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M391.5 62C391.719 65.9542 388.879 68.7498 387.305 71.9026C385.898 74.721 385.718 77.0383 387.046 79.4751C389.848 84.6169 388.947 89.4838 385.895 93.928C384.605 95.8063 384.538 97.5406 384.5 99.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M203 606.5C198.709 607.718 194.585 606.854 190.5 605.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M796 257.5C800.036 258.983 804.268 259.239 808.5 259.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M844.5 391C841.201 392.157 838.616 394.404 836.572 397.055C834.677 399.512 832.265 400.829 829.515 400.404C822.96 399.389 818.591 402.779 814.52 407.019C813.33 408.259 812.041 409.277 810.5 410" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M164 531.5C162.461 532.71 161.257 534.195 160.506 536.003C156.713 545.138 146.457 547.869 138.07 543.853C136.146 542.932 134.459 542.538 132.5 542.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M811 547C811.992 551.783 815.55 555.068 818 559" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M527 55C527.757 59.9685 532.17 63.0734 533.5 67.75" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M768.5 643.5C764.167 643.164 759.833 641.771 755.308 643.208C754.885 642.925 754.015 642.601 753.527 641.979C748.332 635.351 741.247 634.268 733.497 634.97C732.851 635.029 732.167 634.667 731.5 634.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M634 113.5C634.976 117.617 637.018 121.564 636 126" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M721 177C721.503 181.354 719.631 185.328 719 189.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M570 763.5C567.824 767.582 564.911 771.31 564 776" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M386 763.5C388.598 767.379 390.754 771.472 392 776" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M155 244.5C156.873 245.857 156.865 248.23 157.969 250.019C160.177 253.595 161.05 257.484 165.799 259.896C170.175 262.118 173.923 261.808 177.987 261.374C180.169 261.142 182.316 260.937 184.5 261" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M743 165.5C741.27 166.4 739.382 166.334 737.508 166.564C733.342 167.073 728.728 166.693 726.003 171.002C723.065 175.646 718.494 176.584 713.5 176.482C711.578 176.443 709.73 176.6 708 177.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M487.5 752C488.46 754.906 491.021 756.488 493.044 758.455C495.664 761.004 496.962 764.1 496.403 767.484C495.531 772.756 498.203 776.278 501.561 779.435C503.4 781.164 505.541 782.523 506.5 785" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M213 165.5C214.458 166.024 215.862 166.539 217.5 166.547C222.961 166.571 228.233 167.287 231.49 172.506C234.137 176.748 238.58 175.961 242.508 176.436C244.383 176.662 246.27 176.6 248 177.5" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M792 530.5C793.167 532.333 794.809 534.023 795.414 536.026C797.562 543.127 803.984 543.938 809.524 545.934C812.551 547.026 815.081 544.357 817.943 543.736C819.671 543.36 821.637 542.584 823.5 542" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M755 644C755.467 648.295 755.889 652.6 758 656.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304 702C302.667 702.667 301.4 703.591 299.989 703.956C293.578 705.61 288.668 709.021 285.443 714.969C283.503 718.548 279.273 718.606 275.955 719.883C274.387 720.487 272.711 720.684 271.5 722" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M412 57.5C413.535 61.298 417.455 62.7073 420.108 65.3934C422.351 67.6642 423.625 70.0178 423.445 72.9966C423.195 77.1101 424.573 80.0526 427.917 82.608C430.101 84.2761 432.658 85.9942 433.5 89" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M784 574.5C779.923 575.78 775.961 577.64 771.5 577" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126 315.5C127.667 317.667 129.348 319.822 130.997 322.002C136.355 329.081 143.861 330.844 152.011 327.022C154.107 326.039 156.333 325.333 158.5 324.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224 634.5C222.397 635.301 220.626 635.209 219.008 634.949C211.647 633.767 206.542 637.627 202.065 642.559C200.293 644.511 200.328 647.469 200.103 650.009C199.911 652.166 199.238 654.06 198.5 656" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M170 292C165.898 292.816 161.753 293.487 158 295.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M544 57.5C542.325 61.4914 537.953 62.7628 535.454 65.9643C534.235 67.5258 532.495 68.9113 532.808 70.9913C533.892 78.2046 528.892 81.895 524.513 86.0139C523.637 86.8382 522.33 87.4422 522.5 89" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M214.5 622.5C212.417 626.229 211.36 630.215 211.5 634.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M652.5 702C653.558 703.629 655.453 704.07 657.02 704.407C662.779 705.646 667.051 708.412 669.56 713.973C671.51 718.294 676.29 718.445 680.043 719.887C681.613 720.49 683.289 720.684 684.5 722" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M742 622.5C744.25 626.205 744.248 630.379 744.5 634.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M765 232C761.066 230.974 757.118 230.06 753 230.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M203 231C198.965 230.919 194.897 230.429 191 232" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M320 712.5C319.098 716.2 321.051 719.527 321.748 722.949C322.08 724.577 321.902 726.037 321.392 726.939C318.303 732.405 315.723 738.571 308.005 739.082C307.132 739.14 306.333 740.333 305.5 741" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M693.5 152C689.17 152.037 685.258 153.504 681.5 155.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M839.5 352.5C835.326 355.088 833.109 359.448 830 363" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M834.5 332C832.526 332.102 831.11 330.898 829.434 330.148C825.238 328.27 821.191 325.799 815.91 328.31C812.039 330.15 807.49 329.293 803.479 327.038C801.603 325.983 799.5 325.333 797.5 324.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M322 113.5C320.952 117.436 319.388 121.287 320 125.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M429.5 55C427.858 59.403 424.735 62.9427 422.5 67" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M533.5 771C531.569 775.128 527.561 778.13 527 783" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M459.5 63.75C459.671 66.8331 459.057 69.9636 460.007 72.9978C460.598 74.8861 459.258 76.0669 458.522 77.5112C456.81 80.8682 453.397 83.1364 452.5 87" stroke="#F2DAC8" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M175 212.5C177.837 214.626 177.768 218.351 178.628 221.116C179.686 224.512 181.468 226.73 184.062 227.857C188.558 229.81 191.052 233.318 191.773 237.539C192.253 240.347 194.024 241.989 195 244.25" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M571.5 738.5C571.054 743.009 569.27 746.96 566.5 750.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601.5 99C602.645 102.796 604.796 106.329 604.5 110.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M374.5 66.5C377.105 70.2537 381.274 71.8168 385 74" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M564.5 62C564.932 66.5035 567.746 69.868 570 73.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M158.5 542C162.244 543.461 165.67 545.967 170 545.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M177 564.5C176.335 565.501 175.364 566.105 174.888 567.461C173.32 571.92 171.351 576.021 166.034 577.615C161.868 578.863 159.579 582.809 158.199 586.573C157.38 588.809 156.171 590.586 155 592.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M636 712.5C636.698 716.666 635.271 720.371 633.5 724" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145 547C143.781 551.227 141.67 554.926 138.5 558" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M798.5 296C796.646 299.693 795.245 303.668 792 306.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M354.5 99C353.446 102.819 351.339 106.364 351.5 110.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M418 746.5C419.272 750.839 421.826 754.453 424.5 758" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M622.5 719C625.253 720.994 627.881 723.13 631.495 723.541C634.892 723.927 635.503 727.386 636.312 729.57C638.349 735.071 642.069 737.823 647.486 739.06C648.581 739.31 649.5 740.333 650.5 741" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122 400.5C118.423 403.289 115.319 406.73 111 408.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M496.5 774.5C493.972 778.429 490.016 781.366 488.5 786" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304.5 96C305.212 96.7016 305.967 97.1941 306.98 97.5559C313.048 99.7241 318.317 102.806 320.539 109.487C322.007 113.904 326.675 114.085 330.033 115.94C331.121 116.54 332.16 117.093 333 118" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117 352.5C119.942 356.05 124.325 358.364 126 363" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145.5 428C142.021 430.838 137.567 432.593 135.5 437" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M617 80C615.37 82.2057 612.677 82.9597 610.438 83.8421C605.566 85.7618 603.69 89.8729 602.715 94.0502C601.929 97.4216 600.294 98.8411 597.518 100.042C594.644 101.287 591.953 102.921 590 105.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M503.5 751C501.733 755.023 499.147 758.462 496 761.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M845 408.5C840.47 406.834 837.573 402.823 833.5 400.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M820.5 437C818.28 432.762 814.471 430.291 810.5 428" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M423 771.5C425.107 775.108 428.328 778.109 429 782.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M506 52.5C503.807 56.5183 500.229 59.4152 497.5 63" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M817 280C814.293 283.348 812.311 287.123 810.5 291" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M816.5 473C812.904 474.974 810.037 478.407 805.5 478.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M400 95.5C397.3 91.6779 393.059 89.7611 389.5 87" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M797.5 542C793.994 543.673 790.591 545.666 786.5 545.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M538 746.5C536.782 750.798 534.279 754.354 531.5 757.75" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M452.5 751C454.203 755.069 456.88 758.443 460 761.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M384.5 738.5C384.806 742.655 386.504 746.241 389 749.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M651.5 96C650.6 97.1338 649.327 97.5827 648.004 98.0122C642.093 99.9317 637.694 103.504 635.49 109.496C634.299 112.731 631.373 113.75 628.541 115.086C626.477 116.059 623.994 116.465 622.5 118.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M450 52.5C452.833 56 455.667 59.5 458.5 63" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M566.5 87C563.093 89.747 558.898 91.5663 556.5 95.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M834 438C837.916 440.515 840.194 444.941 844.5 447" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M532 80.5C534.043 84.2399 537.538 87.1215 538.5 91.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M424 80.5C421.957 84.2399 418.462 87.1215 417.5 91.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139 365.5C141.806 368.694 143.939 372.561 148 374.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M467.5 52C466.157 56.3266 462.535 59.025 460 62.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M810.5 393.5C814.159 395.566 817.916 397.501 820.5 401" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.5 473C142.629 475.542 146.297 477.054 150 478.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.5 498C150.702 500.214 148.527 503.795 146.5 507.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M339.5 80C342.65 82.6127 346.047 84.7926 350 86" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M808.5 508C805.295 510.189 802.141 512.495 798 512.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M172 263C173.183 266.73 174.48 270.406 177 273.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122 438C118.597 440.752 116.374 444.891 112 446.5" stroke="#F2DAC8" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M784 263C782.817 266.73 781.52 270.406 779 273.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M460 775.5C462.555 778.96 466.249 781.608 467.5 786" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M460.5 76C463.51 79.0589 466.785 81.9051 468.5 86" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.5 330.5C148.321 334.379 151.308 337.276 154.5 340" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M809.5 330C808.434 334.409 804.37 336.569 802 340" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.5 279C141.423 282.656 143.579 286.76 145.5 291" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M822 511C823.665 514.659 826.306 517.599 829 520.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M134 511C132.519 514.794 129.825 517.696 127 520.5" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M670.5 106C670.157 110.811 670.887 115.469 672.5 120" stroke="#F2DAC8" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

241
_/logo.svg Normal file
View File

@@ -0,0 +1,241 @@
<svg width="956" height="832" viewBox="0 0 956 832" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M194 418.75C206.167 418.833 218.342 419.196 230.494 418.804C233.536 418.706 236.499 419.089 239.5 419.085C313.167 418.976 386.833 419 460.5 419C504.833 419 549.167 419 593.5 419C599.833 419 606.167 419.063 612.5 418.986C623.667 418.852 634.845 419.455 646 418.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M484.5 412C519.333 377.333 554.162 342.662 589.006 308.006C593.936 303.102 598.943 298.276 604.019 293.311C592.96 282.756 580.35 280.053 565.994 285.986C560.506 288.255 556.572 292.45 552.5 296.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478 419.5C478 492.5 478 565.5 478 638.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M428.75 136.5C428.833 152.833 428.925 169.167 428.996 185.5C429.029 192.926 430.074 193.996 437.5 193.999C450.833 194.003 464.167 194 478 194C478 202.327 477.894 210.665 478.025 219C478.224 231.666 477.478 244.338 478.435 257.005C478.697 260.473 478.024 264 478.022 267.5C477.989 311.167 478.008 354.833 477.989 398.5C477.987 403.362 478.286 408.186 478.943 413.008C479.187 414.798 479.343 416.728 478.5 418.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M430.5 323.5C425.229 318.008 419.664 312.856 411.992 311.035C400.897 308.402 390.737 310.234 381.99 317.989C381.02 318.85 379.917 319.562 379.142 320.143C409.833 350.834 440.416 381.417 471 412" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M485 426C521 461.667 557 497.333 593 533" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M767.5 370C750.008 368.968 732.5 369.71 715 369.516C708.932 369.448 708.016 370.385 708.011 376.5C707.986 404.5 707.987 432.5 708.011 460.5C708.016 466.582 709.418 467.979 715.5 467.989C732.833 468.02 750.167 468 767.5 468" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M471 426C435.667 461.333 400.333 496.667 365 532" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M527.5 138C527.5 154.333 527.4 170.668 527.555 186.999C527.609 192.623 524.538 193.98 520 193.99C506.167 194.018 492.333 194 478.25 194C478.25 180.002 478.25 166.001 478.25 152" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M333 273C343.498 262.666 345.597 250.395 340.405 237.037C335.854 225.326 326.601 217.924 314.461 216.294C303.574 214.832 292.614 215.979 285.768 227.36C284.337 229.74 280.6 230.97 278.978 233.988C267.829 254.727 281.674 279.591 302.974 283.153C314.584 285.095 323.705 281.421 332 274" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M193 513.75C203.833 513.833 214.667 513.969 225.5 513.972C229.36 513.974 230.596 511.708 230.552 507.999C230.411 496.168 231.085 484.295 230.313 472.512C229.707 463.284 230.921 454.181 230.625 444.996C230.33 435.85 230.894 426.637 230.767 417.503C230.587 404.502 231.397 391.445 230.273 378.52C229.582 370.58 230.902 362.844 230.572 354.997C230.244 347.177 230.503 339.333 230.499 331.5C230.495 324.794 229.733 324.046 223 323.998C211.499 323.916 199.991 324.313 188.5 323.5" stroke="black" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M323.75 173.5C323.462 176.144 325.437 177.479 327.01 178.99C347.662 198.838 368.349 218.651 388.991 238.509C395.446 244.719 402.394 250.467 407.898 257.579C409.039 259.054 410.026 258.09 411 258.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M234.75 265.5C234.661 267.72 236.048 269.092 237.488 270.512C251.841 284.659 266.128 298.872 280.512 312.987C291.617 323.884 302.926 334.574 313.897 345.602C315.497 347.21 317.227 347.677 319 348.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M525.5 696C525.5 687 525.544 678 525.483 669C525.448 663.958 524.039 662.454 519.001 662.535C506.001 662.742 492.988 662.754 480 662.755C466.345 662.756 452.66 662.929 439.003 662.429C433.443 662.226 430.928 664.259 430.976 670.5C431.061 681.5 431 692.5 431 703.5" stroke="black" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M441.5 524.5C441.401 526.052 441.772 527.585 440.531 529.027C431.352 539.685 419.954 546.975 405.98 548.291C391.329 549.671 377.434 546.624 366.489 535.511C366.076 535.092 365.5 534.833 365 534.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M363.5 460.5C351.157 473.689 346.057 489.053 349.495 507.001C351.341 516.636 355.57 525.017 362.5 532" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M573 692C573 677 573.011 662 572.995 647C572.988 640.247 571.746 638.832 565.002 639.056C557.826 639.294 550.593 637.997 543.459 640.377C540.589 641.335 537.751 638.822 534.498 638.873C517.169 639.143 499.833 639 482.5 639C462.5 639 442.5 638.995 422.5 639.006C419.962 639.008 417.306 638.579 415.035 640.055C414.306 640.528 413.575 640.676 413.016 640.458C405.489 637.515 397.667 639.429 389.996 639.077C384.507 638.825 383.519 640.065 383.51 645.5C383.482 660.833 383.5 676.167 383.5 691.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M732 419C703.667 419 675.333 419 647 419" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M565 452.5C582.403 454.977 602.281 442.506 603.233 419.51C604.01 400.757 587.608 384.055 568.999 384.988C567.171 385.079 565.333 385 563.5 385" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M354 544.5C360.488 549.998 363.456 557.45 363.837 565.508C364.321 575.753 360.496 584.797 352.916 591.91C352.035 592.737 350 592.333 348.5 592.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M682 384.75C670.839 384.987 661.192 388.517 653.993 397.494C648.581 404.242 646.538 411.63 646.764 420.506C647.158 436.022 655.699 445.014 668.57 450.846C673.568 453.111 679.33 453.873 685 452.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M351.5 542C342.115 530.86 321.68 530.153 309.492 539.991C307.282 541.775 305.677 544.27 303 545.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M378 322.5C370.359 330.22 367.744 339.147 369.818 350.035C371.247 357.53 375.518 363.074 379.5 369" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M604 340.5C614.625 329.157 616.727 315.87 610.52 302.491C609.222 299.693 607.4 297.388 605 295.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M286.5 228.5C301.333 243.167 316.167 257.833 331 272.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M408 259C406.57 263.012 403.272 265.725 400.395 268.386C388.091 279.769 376.959 292.292 365 304" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M363 306C350.667 318.333 338.259 330.594 326.066 343.064C323.754 345.429 320.462 346.795 319 350" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M716.5 253.5C714.015 253.169 712.277 254.046 710.433 255.934C699.234 267.399 687.695 278.534 676.622 290.117C674.53 292.306 670.918 292.647 670 296" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M642.5 185C630 197.333 617.494 209.661 605.008 222.008C603.63 223.371 602.685 225.009 602.5 227" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M623 378.5C622.917 404.167 622.833 429.833 622.75 455.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M228.5 466C215.5 466 202.5 466 189.5 466" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316 579C306.5 569.5 297.021 559.978 287.491 550.509C282.686 545.735 281.311 545.732 276.509 550.509C265.48 561.48 254.5 572.5 243.5 583.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M228.5 370.5C215.5 370.5 202.5 370.5 189.5 370.5" stroke="black" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M613 623C616.348 624.237 617.038 627.867 619.396 630.109C629.473 639.686 639.092 649.744 649.066 659.432C650.961 661.272 651.831 663.015 651.5 665.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M649 587C658.167 577.667 667.19 568.186 676.549 559.051C683.013 552.742 683.211 554.189 687.989 559.011C698.856 569.977 709.667 581 720.5 592" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M318 581.5C329.022 592.327 340.714 602.514 350.768 614.969C338.591 628.722 325.395 640.726 313 653.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M801.5 244C805.504 247.861 808.474 252.316 808.936 258.005C809.048 259.379 809.849 260.052 810.466 261.022C811.907 263.287 813.369 265.576 814.461 268.017C817.571 274.968 820.368 282.061 823.575 288.965C824.635 291.247 824.575 293.276 824 295.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M646.5 589C637.5 598.167 628.498 607.332 619.501 616.501C617.574 618.466 615.371 620.221 614.5 623" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M686 115.5C684.109 112.022 681.01 109.901 677.484 108.541C668.87 105.22 662.793 96.9794 653 96C650.789 92.3703 647.348 90.1492 643.477 89.0855C635.241 86.8231 628.701 80.6137 620.009 79.4306C616.524 78.9561 614.562 75.1355 610.999 74.5056C601.541 72.8336 593.283 67.169 583.506 66.4197C579.604 66.1206 577.029 62.4447 572.509 62.2721C563.005 61.9091 554.356 56.487 544.494 56.8438C541.378 56.9565 538.677 54.2391 534.995 54.352C525.615 54.6397 516.492 51.6757 506.999 51.7219C502.978 51.7415 498.724 50.1147 494.505 50.5466C486.006 51.4169 477.532 48.681 468.957 50.8276C465.9 51.5928 462.438 49.9775 458.99 50.4186C451.69 51.3524 444.182 51.1437 437.046 52.7116C431.008 54.0384 424.74 52.0894 419.021 54.5499C410.999 58.0017 401.831 56.1931 393.959 60.4236C390.338 62.3695 385.782 60.3447 381.991 62.4843C374.176 66.8952 364.526 66.2355 356.977 71.4672C356.146 72.0435 354.947 72.5606 354.009 72.4342C348.996 71.7588 344.943 74.2275 341.069 76.6116C338.331 78.2962 335.662 79.5023 332.51 80.0577C328.616 80.744 325.297 83.0094 322.051 85.0799C318.374 87.4251 319.071 91.9577 318.171 95.5429C317.652 97.6113 317.243 99.725 316.5 101.75" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M399.5 742.5C398.84 744.173 397.503 745.103 396.022 746.034C391.88 748.639 388.05 751.384 387.414 756.99C386.876 761.741 383.415 764.589 379.544 767.068C377.695 768.252 375.038 768.746 374.5 771.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601 226.75C610 235.833 618.997 244.92 628.002 253.998C630.338 256.352 632.614 258.779 635.5 260.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M352 545C340.667 556.333 329.333 567.667 318 579" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M647 250C643.48 254.146 639.959 258.293 636.229 262.686C647.294 272.025 657.068 284.632 669.5 294.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M802.5 498.25C799.923 498.174 799.031 499.895 798.501 502C798.252 502.986 798.152 504.131 798.138 505.002C797.995 513.608 791.937 520.537 791.515 529.001C791.397 531.365 788.845 532.023 788.354 534.471C786.409 544.167 780.895 552.597 777.95 561.984C777.193 564.397 774.093 565.372 773.518 568.004C771.568 576.919 764.707 583.44 761.932 591.978C760.879 595.215 756.597 595.981 755.466 599.489C752.797 607.773 744.983 612.85 741.91 620.966C741.167 622.929 738.265 623.056 736.966 624.977C732.111 632.164 726.353 638.608 720.624 645.109C717.672 648.458 713.638 650.409 710.955 653.966C709.529 655.858 707.364 657.24 707.5 660" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M665.5 693.5C660.856 693.945 657.221 696.572 654.063 699.567C648.664 704.687 640.502 705.676 636 712C629.623 711.383 625.901 716.499 620.881 718.733C615.571 721.098 610.216 724.65 604.922 725.534C596.613 726.922 590.493 733.5 582 733.545C580.999 733.55 579.898 733.997 579.017 734.529C574.695 737.136 569.922 738.212 564.997 738.416C562.933 738.501 561.003 739.083 559.579 740.109C557.213 741.812 554.698 742.189 552.003 742.527C547.737 743.062 543.6 744.032 539.427 745.248C535.241 746.468 530.244 744.716 526.04 746.59C519.094 749.689 511.385 747.006 504.484 749.962C502.526 750.801 500.456 749.506 498.531 749.258C493.488 748.607 489.01 751.823 483.986 750.556C479.179 749.344 474.308 750.707 469.498 750.749C465.597 750.782 461.588 749.017 457.504 749.535C452.356 750.187 447.235 747.818 442.538 748.343C434.006 749.297 426.433 743.408 418 746C411.178 741.485 402.27 744.411 395.43 739.599C393.556 738.28 390.751 737.399 388.515 737.639C380.643 738.483 374.824 732.109 367.004 732.037C364.501 732.014 360.907 728.788 357.571 727.337C355.436 726.408 353.533 726.633 351.5 726.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M595 535C600.18 540.321 605.741 545.272 610.381 551.208C614.027 547.36 617.442 543.608 621.041 540.041C622.208 538.884 623.561 537.622 625.5 537.75" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M111.5 391.5C107.594 395.704 109.78 400.852 109.753 405.501C109.741 407.493 109.997 409.392 109.64 411.523C108.983 415.441 108.99 419.503 109.048 423.499C109.11 427.783 112.352 429.719 115.405 432.12C119.664 435.47 123.944 438.448 129.485 437.417C137.649 435.897 141.863 442.185 146.757 446.289C148.872 448.063 149.415 453.223 148.751 456.449C147.705 461.534 150.508 465.474 151.017 469.998C151.056 470.346 151.536 470.715 151.471 470.993C149.487 479.379 154.983 486.796 154.543 495.002C154.321 499.132 158.391 501.795 158.561 505.997C158.894 514.212 164.159 521.248 164.467 529.501C164.501 530.431 164.951 530.863 165.443 531.542C168.24 535.4 170.755 539.414 170.518 544.501C170.442 546.142 171.678 547.222 172.437 548.536C173.812 550.914 175.574 553.009 176.121 555.978C176.935 560.398 180.827 563.785 182.139 567.623C185.073 576.213 191.229 582.962 194.111 591.462C195.119 594.435 198.798 595.641 200.108 598.957C203.335 607.127 210.838 612.704 214.016 620.994C214.786 623.003 217.363 622.421 218.621 624.424C223.357 631.969 229.736 638.246 235.437 645.052C238.745 649.001 243.674 651.021 246.558 655.462C250.859 662.083 257.269 667.08 263.263 671.655C272.339 678.583 280.343 687.254 290.241 692.549C297.096 696.217 302.878 701.342 309.902 704.705C316.467 707.848 322.271 712.515 329.464 714.622C331.205 715.133 332.5 717.167 334 718.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224 153C222.5 153.833 220.67 154.358 219.554 155.551C212.944 162.615 206.462 169.799 200.024 177.021C198.166 179.106 197.407 181.347 199.401 184.072C200.174 185.129 199.646 187.051 200.035 188.491C201.215 192.856 202.587 197.181 207.006 199.489C210.685 201.41 212.039 204.532 212.025 208.5C212.022 209.499 212.081 210.638 212.541 211.478C215.723 217.293 212.667 221.812 208.9 225.395C202.76 231.235 199.83 239.185 194.97 245.843C189.88 252.815 186.073 261.277 182.117 269.311C178.813 276.02 176.594 283.402 172.01 289.508C169.466 292.897 171.142 297.488 168.629 301.09C167.264 303.047 166.675 305.561 164.5 307" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M503 87.5C499.391 88.9334 495.547 89.2558 492.047 87.88C488.652 86.5452 485.338 86.5054 482.015 87.0856C479.11 87.5927 476.334 87.5218 473.5 87.0026C472.502 86.8199 471.337 86.2492 470.526 86.5655C463.517 89.2958 456.161 87.7738 448.998 88.4816C446.176 88.7605 443.335 88.9323 440.5 88.9785C435.303 89.0631 430.454 90.8189 425.528 92.1058C424.125 92.4723 422.663 92.7464 421.531 92.3999C418.581 91.4973 416.162 92.908 413.472 93.3197C404.094 94.7552 395.371 98.7927 385.978 99.7943C384.752 99.9251 383.459 100.127 382.542 100.584C377.6 103.043 372.438 104.514 367.041 105.689C363.925 106.368 361.619 109.768 358 109.993C350.988 110.429 345.932 115.814 339.468 117.366C334.959 118.448 331.947 121.705 328.012 123.526C322.45 126.101 316.636 127.934 311.808 132.287C309.121 134.711 304.707 136.609 300.458 133.558C299.231 132.678 297.528 132.201 295.995 132.058C291.994 131.686 289.304 129.85 287.991 126.003C286.365 121.236 282.223 119.307 277.975 118.089C271.272 116.167 264.539 115.594 259.512 122.01C255.774 126.781 249.508 128.287 245.593 132.585C239.965 138.765 232.502 142.74 226.967 148.971C224.9 151.298 224.136 153.393 225.392 156.543C226.697 159.819 226.022 163.491 226 167" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M745 203C743.616 207.33 743.891 211.992 742.111 216.296C741.389 218.041 742.851 220.248 744.081 221.415C749.372 226.432 752.737 232.662 755.991 239.005C756.228 239.468 756.179 240.253 756.523 240.463C763.724 244.863 764.093 253.855 769.415 259.579C771.857 262.205 770.893 266.696 773.508 269.493C779.114 275.487 779.413 284.266 784.556 290.453C785.686 291.811 785.538 292.946 785.708 294.477C785.986 296.991 786.287 299.844 788.02 301.984C793.24 308.431 791.553 317.668 797 324C795.735 327.752 796.702 331.344 798.57 334.458C802.854 341.597 801.075 350.212 804.743 357.627C806.35 360.876 803.903 365.442 805.334 369.558C806.029 371.557 806.187 373.612 808 375" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M487.5 86C489.405 81.8772 492.642 78.8874 495.997 75.4958C498.654 79.215 501.104 82.5884 503.49 86.0067C505.093 88.3025 507.581 88.6462 510.006 88.9548C511.81 89.1844 513.667 88.9913 515.5 89.0017C520.693 89.0311 525.559 90.7629 530.472 92.1033C531.878 92.4869 533.337 92.7464 534.469 92.3998C537.419 91.4973 539.869 93.0104 542.522 93.3027C552.109 94.3594 560.731 99.5314 570.5 99.5001C570.667 99.4995 570.876 99.4335 570.994 99.5095C577.427 103.672 585.325 103.987 591.996 107.507C595.461 109.335 598.941 111.067 603 111.001C603.333 110.995 603.768 110.861 603.985 111.02C609.784 115.267 616.867 116.934 622.995 120.509C624.031 121.113 624.917 122.058 626.013 122.464C634.675 125.678 642.147 131.209 650.524 134.946C652.863 135.989 653.965 138.335 656.025 139.453C663.782 143.665 670.488 149.461 678.068 153.884C680.624 155.376 681.769 157.97 684.022 159.466C691.963 164.741 698.42 171.793 705.931 177.589C708.209 179.347 709.235 182.811 711.58 184.381C718.99 189.339 723.567 197.081 730.302 202.736C732.848 204.875 733.746 209.253 736.432 212.065C737.968 213.672 739.2 215.458 741.5 216" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M634 236.5C640.833 243 647.824 249.347 654.398 256.1C656.215 257.967 658.424 259.409 660 261.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M606 522.5C598.5 530 590.902 537.406 583.569 545.066C581.74 546.978 579.985 547.831 577.5 547.5" stroke="black" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478.5 663.5C477.557 672.986 478.177 682.5 478 692" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M581.5 66.5C579.634 70.2919 575.378 70.9913 572.426 73.41C568.986 76.2293 566.466 85.9854 568.441 90.0289C569.915 93.0464 572.042 95.8879 572 99.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M468.5 752C467.985 754.321 466.052 755.584 464.459 756.953C460.385 760.455 458.975 764.832 459.507 769.999C459.776 772.61 459.56 774.955 457.024 776.538C456.365 776.95 455.922 777.789 455.512 778.507C450.967 786.45 443.875 787.17 436.012 785.201C432.207 784.247 428.394 783.833 424.515 783.375C413.815 782.11 403.175 780.386 392.964 776.598C390.547 775.702 387.632 777.187 384.994 776.014C375.579 771.827 365.062 770.96 355.794 765.875C353.315 764.515 348.91 764.534 345.516 763.451C342.845 762.599 340.231 761.436 338.5 759" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M433.5 749C432.077 752.463 429.078 754.646 426.402 756.883C424.279 758.659 423.253 760.508 423.542 762.995C424.236 768.945 420.923 772.532 416.486 775.478C414.656 776.693 413.087 778.087 412 780" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M488.5 52C489.167 53.3333 489.501 55.0754 490.554 55.9332C497.05 61.2207 497.335 68.1064 496 75.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M557 743C557.782 745.483 560.261 746.171 562.058 747.416C565.545 749.831 568.186 752.314 568.609 756.99C569.117 762.595 573.787 765.2 577.964 768.053C579.286 768.956 581.507 769.159 581.5 771.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M478.5 639.5C477.651 647.152 478.112 654.832 478 662.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M148 463C145.005 465.005 142.674 467.668 140.49 470.492C138.991 472.431 136.995 473.838 134.508 473.449C127.593 472.367 123.997 476.758 120.483 481.487C119.429 482.904 118.167 484.167 117 485.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316 581C308.5 588.333 301 595.667 293.5 603" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M496 259C482.5 259 469 259 455.5 259" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M806 359C809.659 358.578 811.624 361.854 814.362 363.268C817.404 364.838 820.253 365.172 822.956 364.355C826.949 363.15 829.987 363.1 833.669 365.766C835.809 367.315 838.212 369.071 840.955 370.117C844.56 371.491 844.87 375.759 844.756 378.49C844.429 386.285 847.188 393.845 846.347 401.483C845.6 408.271 847.539 414.819 846.986 421.499C846.678 425.217 847.142 429.346 842.021 430.586C841.043 430.822 840.354 432.189 839.497 432.996C835.086 437.151 829.87 438.505 824.007 437.216C822.028 436.781 820.387 436.937 818.995 438.496C818.525 439.023 818.089 439.698 817.486 439.97C810.777 442.992 807.099 447.893 807.481 455.501C807.667 459.211 806.619 463.273 810.986 465.526C811.585 465.835 812.109 466.43 812.483 467.011C815.658 471.951 820.184 473.952 826.001 473.801C831.183 473.665 832.513 478.704 835.481 481.52C836.761 482.734 837.833 484.167 839 485.5" stroke="black" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M477.5 236C470.167 236 462.833 236 455.5 236" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M402 693.5C396.451 693.976 390.87 695.147 385.487 692.527C384.748 692.167 383.631 691.762 383.031 692.062C376.032 695.561 368.713 693.659 361.5 693.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M402 670.5C400.397 671.301 398.664 671.079 397.002 670.973C385.174 670.22 373.318 671.738 361.5 670.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M456.5 615.5C468.321 614.473 480.169 615.35 492.001 615.019C493.671 614.972 495.397 614.699 497 615.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M497 592.5C493.88 591.448 490.653 591.959 487.502 592.054C477.169 592.366 466.819 591.426 456.5 592.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M554 670.5C559.635 671.745 565.35 670.958 570.998 670.882C578.829 670.778 586.687 671.623 594.5 670.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M497 693.5C491.309 694.172 485.583 694.804 480.033 692.903C478.949 692.532 477.791 692.265 477.031 692.575C470.269 695.331 463.357 693.659 456.5 693.5" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M803.5 499C804.667 500.5 805.866 501.976 806.994 503.504C811.554 509.678 819.807 511.127 827.059 508.676C835.735 505.743 839.263 500.306 839.062 491.499C838.928 485.571 842.58 480.424 843.149 474.514C843.376 472.16 843.408 470.11 842.5 468" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M110.5 430C109.075 435.548 108.443 441.091 111.031 446.485C111.639 447.752 111.187 448.794 111.111 450.007C110.819 454.712 110.907 459.409 112.414 464.028C113.091 466.1 114.227 467.273 115.986 468.274C119.202 470.105 122.333 472.083 125.5 474" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M150 359C146.341 358.578 144.189 361.725 141.679 363.287C138.565 365.225 135.594 365.24 133.069 364.312C128.775 362.733 125.592 363.58 121.911 365.857C119.652 367.255 117.588 368.999 115.065 370.142C112.04 371.513 111.927 375.069 111.541 378.005C110.747 384.047 110.055 389.376 116.232 394.334C121.094 398.238 125.102 401.359 131.509 400.572C134.334 400.225 136.565 401.914 138.532 403.969C140.654 406.186 142.531 408.742 145.5 410" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M845.5 430C846.948 435.167 847.221 440.345 845.486 445.495C844.595 448.139 844.938 450.846 845.049 453.498C845.377 461.309 843.866 467.94 835.518 471.049C833.727 471.715 832.167 473 830.5 474" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M125.5 522.5C125.361 526.153 125.834 529.734 127.528 532.986C131.156 539.95 131.217 548.309 135.206 554.875C139.63 562.16 140.168 571.112 146.247 577.732C148.021 579.664 147.392 584.409 149.578 586.932C155.757 594.064 157.377 603.848 164.22 610.777C166.493 613.079 167.165 617.784 169.445 621.039C170.901 623.117 171.991 625.393 174.75 626" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M554 693.5C559.691 694.172 565.421 694.816 570.968 692.906C572.225 692.473 573.586 692.212 574.462 692.589C580.706 695.278 587.145 693.667 593.5 693.75" stroke="black" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M451 785.5C455.318 788.874 460.345 787.795 464.965 787.037C467.441 786.631 469.639 786.398 472.002 786.993C472.825 787.201 473.69 787.553 474.496 787.466C483.335 786.52 492.398 788.778 500.933 787.151C509.108 785.593 517.817 787.799 525.5 783.501C527.497 782.384 529.308 784.114 531.533 783.66C542.079 781.508 552.883 780.682 563.05 776.625C565.207 775.765 568.229 777.158 570.459 776.381C578.234 773.673 586.262 771.663 593.91 768.763C599.546 766.625 605.161 764.837 610.985 763.436C613.71 762.78 615.78 760.676 618 759" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M831 315.5C834.932 319.358 835.531 324.637 835.659 329.509C835.711 331.486 835.902 333.345 836.588 334.963C837.966 338.211 839.029 341.485 838.972 345C838.87 351.342 842.435 356.795 843.141 362.984C843.46 365.777 843.566 368.164 842 370.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M113.5 468C110.875 473.037 113.318 477.976 114.792 482.403C116.034 486.127 116.447 489.77 116.999 493.5C117.514 496.979 117.847 500.549 120.036 503.473C121.053 504.831 120.719 506.006 120.601 507.508C120.216 512.416 121.694 516.906 124.442 521.039C125.115 522.05 125.589 522.151 126.5 521.75" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M830.5 522.5C830.476 527.452 829.82 532.191 827.038 536.524C823.94 541.349 825.411 547.831 822.346 552.397C817.156 560.131 816.004 569.662 810.201 577.156C807.852 580.19 808.141 585.007 805.647 588.602C804.387 590.417 803.392 592.281 801.5 593.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M133.5 327C130.167 328.667 126.937 330.607 123.471 331.923C120.02 333.232 118.428 335.515 117.986 338.998C116.887 347.653 114.887 356.114 112.565 364.518C112.004 366.552 112.554 368.736 114 370.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M194 593.5C193.377 594.614 192.601 595.584 192.46 596.996C191.758 604.02 187.89 608.852 181.459 611.398C179.496 612.175 179.027 613.447 178.508 615.003C177.338 618.502 177.709 622.443 175.111 625.591C174.524 626.303 175.194 628.206 175.553 629.485C175.762 630.233 176.504 630.83 176.999 631.5C182.667 639.166 187.534 647.642 194.235 654.262C200.379 660.332 205.806 667.1 211.595 673.373C218.438 680.787 226.032 687.349 233.242 694.247C237.962 698.764 242.197 704.511 248.103 707.281C256.424 711.185 261.059 720.365 270.7 722.256C271.611 722.434 272.63 725.546 274.504 726.491C283.785 731.171 291.763 738.222 301.567 741.818C304.376 742.848 304.983 745.641 307.494 746.517C315.761 749.398 323.637 753.211 331.459 757.082C334.992 758.83 337.786 758.156 341.03 756.56C347.392 753.431 352.666 749.531 354.005 742.001C354.696 738.114 358.638 737.735 361.147 736.248C362.998 735.151 364.403 733.766 366 732.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M781.5 212C786.565 213.424 787.926 218.03 789.639 222.047C790.801 224.773 791.775 227.493 794.016 229.482C796.952 232.089 798.203 235.717 799.966 239.018C801.722 242.306 800.107 245.401 799.013 248.504C797.104 253.92 794.714 258.32 788.627 260.811C784.726 262.408 781.498 261.249 777.996 261.419C775.851 261.523 773.667 260.833 771.5 260.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M777 613C778.112 617.016 778.171 621.411 780.577 624.947C781.803 626.748 780.838 628.394 780.343 629.425C778.96 632.308 777.075 635.048 774.943 637.449C771.845 640.937 769.249 644.793 766.352 648.381C759.841 656.444 753.643 664.853 745.542 671.551C742.539 674.034 741.479 678.163 738.06 680.584C732.469 684.543 728.443 690.572 722.85 694.274C715.634 699.05 711.188 706.86 702.663 710.393C698.325 712.191 695.254 717.602 690.487 719.973C687.425 721.495 684.814 723.344 682.349 725.852C679.933 728.311 677.081 730.766 673.014 731.145C670.73 731.359 668.794 733.315 666.977 734.975C663.824 737.856 660.231 739.959 656.01 741.04C651.89 742.096 649.68 746.153 645.557 747.656C639.14 749.994 632.852 752.755 626.915 756.359C622.961 758.759 618.269 759.307 613.983 756.022C609.895 752.889 604.322 751.404 603.427 745.01C602.762 740.262 598.575 738.309 595.007 735.99C593.302 734.882 591.667 733.667 590 732.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M786.5 292.5C787.333 292.5 788.296 292.224 788.98 292.543C795.599 295.629 802.053 295.307 808.514 292.027C811.298 290.613 813.981 292.617 816.448 293.216C825.255 295.354 830.994 304.3 830.545 313.502C830.439 315.67 828.781 316.836 827.889 318.438C826.282 321.324 824 323.833 822 326.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M135.5 401C137.652 397.942 140.709 396.085 143.992 394.483C146.032 393.488 147.475 392.049 147.528 389.501C147.611 385.486 149.212 381.728 148.736 377.474C148.377 374.274 150.162 370.832 151.005 367.501C151.134 366.992 151.573 366.44 151.464 366.009C149.63 358.741 154.565 352.381 154.315 345.507C154.109 339.822 158.824 336.064 158.609 330.496C158.381 324.588 161.519 319.38 163.596 314.037C165.056 310.282 164.621 306.908 162.415 304.066C159.082 299.774 157.25 294.202 150.555 292.745C146.318 291.823 142.829 292.844 138.995 293.471C130.962 294.783 127.146 300.843 126.346 307.541C125.586 313.901 121.967 318.949 120.924 324.987C120.478 327.566 120.166 330 121 332.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M779 564.5C779.665 565.501 780.602 566.145 781.118 567.453C782.828 571.79 784.705 575.893 789.961 577.617C797.106 579.961 798.014 587.624 800.929 593.169C802.559 596.27 799.804 601.443 797.289 603.773C792.001 608.671 790.751 615.578 786.901 621.105C785.361 623.317 783.977 625.097 781.5 626" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M807.5 463.5C804.402 467.163 805.067 471.762 804.645 476.014C804.522 477.254 805.126 478.586 804.534 480.014C802.187 485.68 801.782 491.758 801 497.75" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M319 87.5C312.938 86.9266 308.743 90.5334 304.529 94.035C304.144 94.3552 304.164 95.6776 304 95.6768C295.272 95.6365 290.367 103.236 283.091 106.221C278.289 108.191 272.334 109.751 270.5 116" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M197.5 181.5C193.085 182.486 190.792 186.25 189.212 189.6C186.953 194.388 182.528 197.239 180.114 201.564C176.512 208.015 170.602 213.085 167.803 219.63C164.18 228.102 156.349 234.136 154.733 243.705C154.515 244.992 151.22 246.688 150.635 248.543C147.467 258.582 140.594 266.987 138.303 277.457C137.691 280.253 134.524 282.483 133.547 285.515C132.51 288.732 130.515 291.869 132 295.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M817 365.5C815.249 368.677 812.761 371.35 809.925 373.395C806.843 375.618 806.734 379.04 807.27 381.44C808.051 384.937 806.894 388.977 809.544 391.961C810.503 393.04 809.782 393.794 809.456 394.479C807.597 398.388 808.089 402.626 808.666 406.475C809.926 414.889 809.639 423.119 808.672 431.52C808.187 435.739 807.234 440.428 810 444.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M654.5 135C661.683 132.02 667.798 128.231 672.338 121.219C674.919 117.233 681.621 117.311 686.55 116.226C689.625 115.548 692.449 118.586 694.965 120.545C704.884 128.269 715.009 135.783 724.37 144.146C729.88 149.068 735.616 154.076 740.249 159.707C745.974 166.665 753.902 171.637 758.106 179.946C759.05 181.812 761.593 182.797 762.954 184.536C768.234 191.281 773.505 198.047 778.417 205.058C780.424 207.923 782.631 211.233 779.567 215.054C778.786 216.028 778.842 217.669 778.498 219C777.571 222.588 776.312 225.841 772.516 227.536C766.986 230.006 764.019 234.269 763.909 240.498C763.891 241.51 762.667 242.5 762 243.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.5 394C148.24 398.247 148.162 402.837 147.022 406.937C146.141 410.106 146.839 413.007 146.502 416C146.484 416.165 146.494 416.334 146.501 416.5C146.833 424.333 147.149 432.167 147.513 439.999C147.594 441.728 146.889 443.13 146 444.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M323 724.5C325.852 724.709 328.065 722.866 329.893 721.369C333.469 718.439 336.82 718.933 340.499 720.503C340.841 720.649 341.15 720.909 341.503 720.989C348.725 722.613 352.232 727.385 353.004 734.5C353.204 736.346 353.997 737.968 355 739.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M835 506C836.861 511.028 834.149 515.423 832.874 519.965C832.619 520.872 831.484 522.802 829.5 521.75" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304 135.5C302.441 139.099 299.103 141.061 295.935 142.338C290.355 144.588 286.216 148.657 281.508 152.011C278.399 154.226 275.364 156.185 271.478 153.532C270.011 152.531 268.041 153.47 266.522 152.937C258.355 150.07 253.288 144.203 254.02 134.001C254.144 132.281 254.572 130.576 253.5 129" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M743 672.5C741.333 672 739.617 670.951 738.009 671.096C731.322 671.7 726.521 669.014 722.976 663.515C721.853 661.774 720.046 661.418 717.999 661.451C715.503 661.491 712.834 661.66 710.537 660.889C706.698 659.6 703.592 660.614 701.58 663.555C696.061 671.622 686.155 674.458 680.154 682.233C677.927 685.118 672.949 686.85 669.531 689.539C667.204 691.369 665.814 693.31 666.177 697.032C666.476 700.093 666.949 703.884 665 707" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M235.5 176.5C233.577 179.456 235.474 182.49 236.257 184.917C237.575 189.002 236.523 191.912 233.953 194.452C228.089 200.246 223.386 206.935 218.463 213.472C217.525 214.717 216.441 216.138 214.5 216" stroke="black" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M275 155.5C273.273 159.544 269.879 162.605 266.391 164.273C259.431 167.603 255.463 174.22 249.209 178.318C246.728 179.944 245.037 183.95 242.499 186.499C241.086 187.92 239.744 189.462 237.5 189.5" stroke="black" stroke-width="7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M636.5 87.5C637.348 92.2464 637.556 97.1527 640 101.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M226 671C226.765 675.802 225.803 680.419 224.5 685" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M187.5 194.5C192 195.483 196.5 195.014 201 194.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M716.25 139C711.869 140.927 707.227 141.656 702.5 142" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M179 225C174.601 226.7 170.018 225.912 165.5 226" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M284 718C285.213 722.435 285.861 726.911 285 731.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M702 696C702.243 700.507 701.203 705.108 703 709.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M254 696C253.912 700.503 254.834 705.043 253.5 709.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M665 131C666.7 135.399 665.912 139.982 666 144.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M160.5 257C156.134 258.605 151.701 259.902 147 260" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M291 131C289.774 135.461 289.057 139.94 290.5 144.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M672 718C670.813 722.437 670.587 726.945 671 731.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M730 671C730.1 675.584 729.009 680.344 732 684.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M702.5 128C700.642 130.906 702.083 134.021 702.104 136.999C702.131 140.768 701.531 144.03 698.497 146.497C694.076 150.092 693.478 154.812 694.51 159.998C694.906 161.987 693.745 163.651 693.5 165.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M639.5 736.5C637.983 740.873 636.872 745.322 637 750" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M285.5 106.5C285.497 111.098 285.447 115.69 283.5 120" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601 73C602.5 77.5833 604 82.1667 605.5 86.75" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M316.5 736.5C318.303 740.82 319.092 745.329 319 750" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M172.5 574.5C176.635 576.364 180.88 577.658 185.5 577" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M731.5 154C729.249 158.131 730.108 162.621 730 167" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M147.5 577.5C151.945 578.018 156.295 578.945 160.5 580.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M808.5 577.5C804.055 578.018 799.705 578.945 795.5 580.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M275.5 682.5C274.167 683 272.869 683.769 271.494 683.953C265.847 684.708 260.377 685.526 257.47 691.485C255.033 696.483 249.797 695.919 245.478 696.902C243.614 697.327 241.842 697.522 240.5 699" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M350.5 752C352.317 756.224 354.229 760.414 355 765" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M790.5 611.5C787.833 611.667 785.151 611.704 782.503 612.023C773.074 613.161 765.128 606.746 764.015 598.498C763.799 596.902 763.197 595.568 762 594.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M777.5 225C781.723 226.763 786.146 225.93 790.5 226" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M178.5 613C174.294 611.398 169.892 611.495 165.5 611.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M237.5 648.5C236.665 652.807 233.871 656.813 235.5 661.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M200.5 643.5C196.177 643.053 191.892 641.643 187.5 643" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M605.5 751.5C604.031 755.792 601.915 759.884 601.5 764.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M240.5 139C244.645 140.818 248.913 142.1 253.5 142" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M262 152.5C261.036 156.877 261.196 161.21 262.5 165.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M755.5 194.5C759.833 195.169 764.167 195.362 768.5 194.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M766 605.5C761.735 606.725 757.444 607.606 753 606.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224.5 203.5C220.287 201.604 215.895 202.037 211.5 202.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M719 648.5C719.92 652.794 721.125 657.045 721 661.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M355 73C353.833 76.6667 352.791 80.3796 351.456 83.9835C350.584 86.3355 350.9 88.3738 351.974 90.513C352.693 91.9448 353.434 93.4563 353.688 95.0102C354.076 97.3876 355.11 98.7503 357.477 99.5674C360.813 100.719 363.822 102.572 366 105.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M290.5 694C289.807 698.366 289.433 702.721 291 707" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M248.5 659.5C245.561 662.14 241.8 660.658 238.466 661.334C236.399 661.753 234.104 661.92 233.09 663.556C229.067 670.045 222.957 671.534 216 671.546C214.999 671.548 214 672.167 213 672.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M604.5 727C604.855 731.593 602.679 735.477 601 739.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M158.5 513C155 511.667 151.292 510.698 148.078 508.863C146.153 507.764 144.635 507.921 143.015 508.539C137.057 510.814 131.413 510.87 125.962 507.054C124.72 506.185 123 506 121.5 505.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M693.5 673C694.897 677.167 695.236 681.333 693.5 685.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M262.5 673C261.862 677.148 261.274 681.298 262 685.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M681.5 682C682.568 683.197 683.892 683.861 685.5 684.005C691.384 684.531 696.447 686.769 699.433 692.038C702.021 696.602 706.641 695.862 710.529 696.89C712.356 697.373 714.158 697.522 715.5 699" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M522.5 749C523.638 752.615 527.113 754.109 529.613 756.375C531.474 758.06 532.675 759.715 532.442 761.994C531.88 767.495 533.956 771.507 538.476 774.536C540.127 775.643 541.5 777.167 543 778.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M758 181.5C755.795 183.93 756.311 187.161 755.515 190.004C753.185 198.323 747.065 203.12 738.517 202.322C735.977 202.085 734.129 202.92 732 203.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M391.5 62C391.719 65.9542 388.879 68.7498 387.305 71.9026C385.898 74.721 385.718 77.0383 387.046 79.4751C389.848 84.6169 388.947 89.4838 385.895 93.928C384.605 95.8063 384.538 97.5406 384.5 99.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M203 606.5C198.709 607.718 194.585 606.854 190.5 605.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M796 257.5C800.036 258.983 804.268 259.239 808.5 259.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M844.5 391C841.201 392.157 838.616 394.404 836.572 397.055C834.677 399.512 832.265 400.829 829.515 400.404C822.96 399.389 818.591 402.779 814.52 407.019C813.33 408.259 812.041 409.277 810.5 410" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M164 531.5C162.461 532.71 161.257 534.195 160.506 536.003C156.713 545.138 146.457 547.869 138.07 543.853C136.146 542.932 134.459 542.538 132.5 542.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M811 547C811.992 551.783 815.55 555.068 818 559" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M527 55C527.757 59.9685 532.17 63.0734 533.5 67.75" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M768.5 643.5C764.167 643.164 759.833 641.771 755.308 643.208C754.885 642.925 754.015 642.601 753.527 641.979C748.332 635.351 741.247 634.268 733.497 634.97C732.851 635.029 732.167 634.667 731.5 634.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M634 113.5C634.976 117.617 637.018 121.564 636 126" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M721 177C721.503 181.354 719.631 185.328 719 189.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M570 763.5C567.824 767.582 564.911 771.31 564 776" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M386 763.5C388.598 767.379 390.754 771.472 392 776" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M155 244.5C156.873 245.857 156.865 248.23 157.969 250.019C160.177 253.595 161.05 257.484 165.799 259.896C170.175 262.118 173.923 261.808 177.987 261.374C180.169 261.142 182.316 260.937 184.5 261" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M743 165.5C741.27 166.4 739.382 166.334 737.508 166.564C733.342 167.073 728.728 166.693 726.003 171.002C723.065 175.646 718.494 176.584 713.5 176.482C711.578 176.443 709.73 176.6 708 177.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M487.5 752C488.46 754.906 491.021 756.488 493.044 758.455C495.664 761.004 496.962 764.1 496.403 767.484C495.531 772.756 498.203 776.278 501.561 779.435C503.4 781.164 505.541 782.523 506.5 785" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M213 165.5C214.458 166.024 215.862 166.539 217.5 166.547C222.961 166.571 228.233 167.287 231.49 172.506C234.137 176.748 238.58 175.961 242.508 176.436C244.383 176.662 246.27 176.6 248 177.5" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M792 530.5C793.167 532.333 794.809 534.023 795.414 536.026C797.562 543.127 803.984 543.938 809.524 545.934C812.551 547.026 815.081 544.357 817.943 543.736C819.671 543.36 821.637 542.584 823.5 542" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M755 644C755.467 648.295 755.889 652.6 758 656.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304 702C302.667 702.667 301.4 703.591 299.989 703.956C293.578 705.61 288.668 709.021 285.443 714.969C283.503 718.548 279.273 718.606 275.955 719.883C274.387 720.487 272.711 720.684 271.5 722" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M412 57.5C413.535 61.298 417.455 62.7073 420.108 65.3934C422.351 67.6642 423.625 70.0178 423.445 72.9966C423.195 77.1101 424.573 80.0526 427.917 82.608C430.101 84.2761 432.658 85.9942 433.5 89" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M784 574.5C779.923 575.78 775.961 577.64 771.5 577" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M126 315.5C127.667 317.667 129.348 319.822 130.997 322.002C136.355 329.081 143.861 330.844 152.011 327.022C154.107 326.039 156.333 325.333 158.5 324.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M224 634.5C222.397 635.301 220.626 635.209 219.008 634.949C211.647 633.767 206.542 637.627 202.065 642.559C200.293 644.511 200.328 647.469 200.103 650.009C199.911 652.166 199.238 654.06 198.5 656" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M170 292C165.898 292.816 161.753 293.487 158 295.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M544 57.5C542.325 61.4914 537.953 62.7628 535.454 65.9643C534.236 67.5258 532.495 68.9113 532.808 70.9913C533.892 78.2046 528.892 81.895 524.513 86.0139C523.637 86.8382 522.33 87.4422 522.5 89" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M214.5 622.5C212.417 626.229 211.36 630.215 211.5 634.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M652.5 702C653.558 703.629 655.453 704.07 657.02 704.407C662.779 705.646 667.051 708.412 669.56 713.973C671.51 718.294 676.29 718.445 680.043 719.887C681.613 720.49 683.289 720.684 684.5 722" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M742 622.5C744.25 626.205 744.248 630.379 744.5 634.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M765 232C761.066 230.974 757.118 230.06 753 230.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M203 231C198.965 230.919 194.897 230.429 191 232" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M320 712.5C319.098 716.2 321.051 719.527 321.748 722.949C322.08 724.577 321.902 726.037 321.392 726.939C318.303 732.405 315.723 738.571 308.005 739.082C307.132 739.14 306.333 740.333 305.5 741" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M693.5 152C689.17 152.037 685.258 153.504 681.5 155.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M839.5 352.5C835.326 355.088 833.109 359.448 830 363" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M834.5 332C832.526 332.102 831.11 330.898 829.434 330.148C825.238 328.27 821.191 325.799 815.91 328.31C812.039 330.15 807.49 329.293 803.479 327.038C801.603 325.983 799.5 325.333 797.5 324.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M322 113.5C320.952 117.436 319.388 121.287 320 125.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M429.5 55C427.858 59.403 424.735 62.9427 422.5 67" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M533.5 771C531.569 775.128 527.561 778.13 527 783" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M459.5 63.75C459.671 66.8331 459.057 69.9636 460.007 72.9978C460.598 74.8861 459.258 76.0669 458.522 77.5112C456.81 80.8682 453.397 83.1364 452.5 87" stroke="black" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M175 212.5C177.837 214.626 177.768 218.351 178.628 221.116C179.686 224.512 181.468 226.73 184.062 227.857C188.558 229.81 191.052 233.318 191.773 237.539C192.253 240.347 194.024 241.989 195 244.25" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M571.5 738.5C571.054 743.009 569.27 746.96 566.5 750.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M601.5 99C602.645 102.796 604.796 106.329 604.5 110.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M374.5 66.5C377.105 70.2537 381.274 71.8168 385 74" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M564.5 62C564.932 66.5035 567.746 69.868 570 73.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M158.5 542C162.244 543.461 165.67 545.967 170 545.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M177 564.5C176.335 565.501 175.364 566.105 174.888 567.461C173.32 571.92 171.351 576.021 166.034 577.615C161.868 578.863 159.579 582.809 158.199 586.573C157.38 588.809 156.171 590.586 155 592.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M636 712.5C636.698 716.666 635.271 720.371 633.5 724" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145 547C143.781 551.227 141.67 554.926 138.5 558" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M798.5 296C796.646 299.693 795.245 303.668 792 306.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M354.5 99C353.446 102.819 351.339 106.364 351.5 110.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M418 746.5C419.272 750.839 421.826 754.453 424.5 758" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M622.5 719C625.253 720.994 627.881 723.13 631.495 723.541C634.892 723.927 635.503 727.386 636.312 729.57C638.349 735.071 642.069 737.823 647.486 739.06C648.581 739.31 649.5 740.333 650.5 741" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122 400.5C118.423 403.289 115.319 406.73 111 408.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M496.5 774.5C493.972 778.429 490.016 781.366 488.5 786" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M304.5 96C305.212 96.7016 305.967 97.1941 306.98 97.5559C313.048 99.7241 318.317 102.806 320.539 109.487C322.007 113.904 326.675 114.085 330.033 115.94C331.121 116.54 332.16 117.093 333 118" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M117 352.5C119.942 356.05 124.325 358.364 126 363" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M145.5 428C142.021 430.838 137.567 432.593 135.5 437" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M617 80C615.37 82.2057 612.677 82.9597 610.438 83.8421C605.566 85.7618 603.69 89.8729 602.715 94.0502C601.929 97.4216 600.294 98.8411 597.518 100.042C594.644 101.287 591.953 102.921 590 105.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M503.5 751C501.733 755.023 499.147 758.462 496 761.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M845 408.5C840.47 406.834 837.573 402.823 833.5 400.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M820.5 437C818.28 432.762 814.471 430.291 810.5 428" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M423 771.5C425.107 775.108 428.328 778.109 429 782.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M506 52.5C503.807 56.5183 500.229 59.4152 497.5 63" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M817 280C814.293 283.348 812.311 287.123 810.5 291" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M816.5 473C812.904 474.974 810.037 478.407 805.5 478.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M400 95.5C397.3 91.6779 393.059 89.7611 389.5 87" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M797.5 542C793.994 543.673 790.591 545.666 786.5 545.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M538 746.5C536.782 750.798 534.279 754.354 531.5 757.75" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M452.5 751C454.203 755.069 456.88 758.443 460 761.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M384.5 738.5C384.806 742.655 386.504 746.241 389 749.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M651.5 96C650.6 97.1338 649.327 97.5827 648.004 98.0122C642.093 99.9317 637.694 103.504 635.49 109.496C634.299 112.731 631.373 113.75 628.541 115.086C626.477 116.059 623.994 116.465 622.5 118.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M450 52.5C452.833 56 455.667 59.5 458.5 63" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M566.5 87C563.093 89.747 558.898 91.5663 556.5 95.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M834 438C837.916 440.515 840.194 444.941 844.5 447" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M532 80.5C534.043 84.2399 537.538 87.1215 538.5 91.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M424 80.5C421.957 84.2399 418.462 87.1215 417.5 91.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139 365.5C141.806 368.694 143.939 372.561 148 374.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M467.5 52C466.157 56.3266 462.535 59.025 460 62.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M810.5 393.5C814.159 395.566 817.916 397.501 820.5 401" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M139.5 473C142.629 475.542 146.297 477.054 150 478.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M154.5 498C150.702 500.214 148.527 503.795 146.5 507.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M339.5 80C342.65 82.6127 346.047 84.7926 350 86" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M808.5 508C805.295 510.189 802.141 512.495 798 512.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M172 263C173.183 266.73 174.48 270.406 177 273.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M122 438C118.597 440.752 116.374 444.891 112 446.5" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M784 263C782.817 266.73 781.52 270.406 779 273.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M460 775.5C462.555 778.96 466.249 781.608 467.5 786" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M460.5 76C463.51 79.0589 466.785 81.9051 468.5 86" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M146.5 330.5C148.321 334.379 151.308 337.276 154.5 340" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M809.5 330C808.434 334.409 804.37 336.569 802 340" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M138.5 279C141.423 282.656 143.579 286.76 145.5 291" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M822 511C823.665 514.659 826.306 517.599 829 520.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M134 511C132.519 514.794 129.825 517.696 127 520.5" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M670.5 106C670.157 110.811 670.887 115.469 672.5 120" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

185
_/man.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 128 KiB

7
_/picture.svg Normal file
View File

@@ -0,0 +1,7 @@
<svg width="800" height="800" viewBox="0 0 800 800" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M716.029 172.201C721.697 172.201 726.308 176.663 726.308 182.148V623.369C726.308 628.854 721.697 633.315 716.029 633.315H82.5923C76.9233 633.315 72.3119 628.854 72.3119 623.369V182.148C72.3119 176.663 76.9233 172.201 82.5923 172.201H716.029ZM716.029 151.574H82.5923C65.5238 151.574 51.6846 165.264 51.6846 182.148V623.369C51.6846 640.257 65.5238 653.942 82.5923 653.942H716.029C733.097 653.942 746.936 640.257 746.936 623.369V182.148C746.936 165.264 733.097 151.574 716.029 151.574Z" fill="black"/>
<path d="M730.387 622.517C730.387 631.996 719.747 639.68 706.62 639.68H94.0559C80.9302 639.68 70.2889 631.996 70.2889 622.517V557.248C70.2889 557.248 146.904 428.434 202.467 431.262C228.679 432.596 321.22 499.546 388.413 499.546C454.08 499.546 484.763 359.412 573.695 359.412C621.394 359.412 730.386 445.283 730.386 445.283V622.517H730.387Z" fill="black"/>
<path d="M706.624 649.998H94.0559C74.9396 649.998 59.9733 637.932 59.9733 622.522V557.248C59.9733 555.395 60.4772 553.572 61.4235 551.981C69.501 538.384 143.437 417.62 202.991 420.963C214.926 421.567 233.498 430.965 259.201 443.967C296.96 463.068 348.677 489.234 388.41 489.234C413.66 489.234 435.223 461.024 458.056 431.156C487.445 392.692 520.772 349.097 573.699 349.097C623.533 349.097 725.328 428.164 736.769 437.178C737.993 438.145 738.982 439.376 739.662 440.779C740.342 442.182 740.696 443.721 740.697 445.281V622.522C740.696 637.932 725.73 649.998 706.624 649.998ZM80.5998 560.109V622.522C80.5998 625.252 85.968 629.371 94.0559 629.371H706.624C714.712 629.371 720.07 625.252 720.07 622.522V450.317C687.558 425.233 608.375 369.723 573.698 369.723C530.964 369.723 502.229 407.321 474.442 443.68C448.427 477.712 423.852 509.861 388.41 509.861C343.753 509.861 289.507 482.416 249.885 462.373C230.033 452.332 209.517 441.947 201.944 441.56L200.654 441.53C160.952 441.53 101.962 524.883 80.5998 560.109Z" fill="black"/>
<path d="M175.995 298.879C175.995 305.6 177.318 312.255 179.891 318.465C182.463 324.674 186.233 330.317 190.985 335.069C195.738 339.822 201.38 343.592 207.59 346.164C213.799 348.736 220.455 350.06 227.176 350.06C233.897 350.06 240.553 348.736 246.762 346.164C252.972 343.592 258.614 339.822 263.367 335.069C268.119 330.317 271.889 324.674 274.462 318.465C277.034 312.255 278.358 305.6 278.358 298.879C278.358 285.304 272.965 272.286 263.367 262.688C253.768 253.089 240.75 247.697 227.176 247.697C213.602 247.697 200.584 253.089 190.985 262.688C181.387 272.286 175.995 285.304 175.995 298.879Z" fill="black"/>
<path d="M227.193 360.372L226.216 360.368C209.789 360.111 194.45 353.474 183.019 341.675C171.587 329.881 165.433 314.335 165.685 297.913C166.209 264.541 193.785 237.388 227.163 237.388C244.566 237.649 259.905 244.287 271.337 256.086C282.768 267.88 288.912 283.42 288.66 299.842C288.137 333.219 260.56 360.372 227.193 360.372ZM227.807 258.019C204.975 258.019 186.654 276.057 186.312 298.235C186.141 309.153 190.23 319.482 197.834 327.317C205.428 335.158 215.621 339.569 226.538 339.74L227.192 350.058V339.745C249.37 339.745 267.69 321.702 268.032 299.519C268.204 288.607 264.114 278.278 256.521 270.438C248.927 262.602 238.734 258.19 227.817 258.019H227.807Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

4
_/shopping.svg Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 1H15V10H4.60087L4.17982 12H12C13.1046 12 14 12.8954 14 14C14 15.1046 13.1046 16 12 16C10.8954 16 10 15.1046 10 14H6C6 15.1046 5.10457 16 4 16C2.89543 16 2 15.1046 2 14V12.6459L2.98262 7.97846L2.15287 3H0V1Z" fill="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 467 B

5
_/silo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

5
_/silo2.svg Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="300px" height="200px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
<g><path style="opacity:0.998" fill="#f8e5ca" d="M 148.5,41.5 C 157.963,41.709 166.963,43.8757 175.5,48C 177.81,48.4966 180.143,48.6633 182.5,48.5C 182.663,50.8568 182.497,53.1902 182,55.5C 180.357,57.9768 178.524,60.3102 176.5,62.5C 178.069,68.3734 178.902,74.3734 179,80.5C 180.484,83.4689 181.984,86.4689 183.5,89.5C 182.52,90.9814 181.353,92.3147 180,93.5C 179.392,99.9978 177.226,105.831 173.5,111C 170.167,111.333 166.833,111.667 163.5,112C 162.39,114.737 162.223,117.571 163,120.5C 164.873,122.709 167.04,124.542 169.5,126C 176.98,129.095 184.314,132.262 191.5,135.5C 180.195,142.155 169.195,149.322 158.5,157C 155.634,158.457 152.634,158.79 149.5,158C 136.132,149.317 122.465,141.15 108.5,133.5C 108.977,132.522 109.643,131.689 110.5,131C 116.579,128.794 122.245,125.794 127.5,122C 129.102,120.065 130.269,117.899 131,115.5C 131.667,110.167 131.667,104.833 131,99.5C 121.826,87.1428 118.826,73.4762 122,58.5C 127.666,47.916 136.499,42.2493 148.5,41.5 Z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
_/user.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

5
_/user.svg Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="512px" height="512px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
<g><path style="opacity:0.973" fill="#ffffff" d="M 240.5,19.5 C 302.67,17.8199 347.837,44.4866 376,99.5C 397.17,153.173 389.503,202.173 353,246.5C 347.096,253.074 340.596,258.908 333.5,264C 400.542,291.374 445.042,339.541 467,408.5C 473.226,430.08 475.893,452.08 475,474.5C 470.821,487.327 461.988,492.827 448.5,491C 439.207,488.264 433.707,482.098 432,472.5C 430.75,406.14 402.583,354.974 347.5,319C 298.809,290.998 247.809,285.998 194.5,304C 135.61,327.896 98.4428,370.73 83,432.5C 80.4326,445.373 79.0993,458.373 79,471.5C 75.5685,486.809 66.0685,492.975 50.5,490C 39.2226,485.289 34.2226,476.789 35.5,464.5C 39.6809,385.605 74.6809,324.771 140.5,282C 150.716,275.789 161.383,270.455 172.5,266C 125.947,229.016 108.447,181.183 120,122.5C 138.435,62.5593 178.601,28.226 240.5,19.5 Z M 240.5,63.5 C 285.016,61.1666 317.183,79.8333 337,119.5C 351.517,160.596 343.017,196.096 311.5,226C 282.965,248.03 251.632,253.03 217.5,241C 173.322,219.482 154.822,184.316 162,135.5C 173.431,95.229 199.597,71.229 240.5,63.5 Z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

4
_/video.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="139" height="139" viewBox="0 0 139 139" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M86.875 26.0625H0V112.938H86.875V26.0625Z" fill="black"/>
<path d="M130.312 26.0625L104.25 52.125V86.875L130.312 112.938H139V26.0625H130.312Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 274 B

View File

@@ -1 +0,0 @@
hi

9
index.js Normal file
View File

@@ -0,0 +1,9 @@
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const modulePath = process.env.QUILL_PATH;
const { default: Server } = await import(modulePath);
const server = new Server(__dirname, 3003);

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "hyperia.so",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}

30
ui/index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hyperia</title>
<link rel="icon" href="_/lightlogo.svg">
<link rel="stylesheet" href="">
<script src="quill.js"></script>
<script type="module" src="_/build/imports.js"></script>
<script type="module" src="index.js"></script>
<script>
window.Colors = {
base: darkMode ? "#6e150b" : "#f8e5ca",
accent: darkMode ? "#f2dac8" : "#000000",
ash: darkMode ? "rgb(179 162 150)" : "rgb(119 109 103)",
oak: "rgb(73 18 18)",
searchBorder: darkMode ? "rgb(154 36 22)" : "#a18d8d",
yellowAccent: "rgb(202 97 18)",
searchBackground: darkMode ? "rgb(73 18 18)" : "rgb(185 191 152)",
}
</script>
<style>
body {
margin: 0;
overflow-x: hidden;
}
</style>
</head>
<body>
</body>
</html>

0
ui/index.js Normal file
View File

148
ui/nav/header.js Normal file
View File

@@ -0,0 +1,148 @@
class Header extends Shadow {
render() {
HStack(() => {
HStack(() => {
img(darkMode ? "_/lightLogo.svg" : "_/logo.svg", 100, 100)
.marginLeft(2, "vw")
// p("Hyperia")
// .marginLeft(10, "px")
// .fontWeight(800)
// .fontSize("2xl")
})
.alignItems("center")
.flex(1)
VStack(() => {
input("", {width: "60vw", height: "35px"})
.background(Colors.searchBackground)
.borderRadius(6, px)
.border(`1px solid ${Colors.searchBorder}`)
.paddingLeft(1, "em")
.color(darkMode ? Colors.accent : Colors.oak)
.fontSize("l")
.marginTop(47, px)
.outline("none")
.transition("border .2s")
.onFocus(function () {
this.style.border = `1px solid ${darkMode ? "rgb(225 19 0)" : "white"}`
})
.onBlur(function () {
this.style.border = `1px solid ${Colors.searchBorder}`
})
.onKeyDown(function (e) {
console.log(e.key)
if(e.key === "Enter") {
navigateTo("/search/" + this.value)
}
})
HStack(() => {
a("/", () => {
img("_/all.svg", 20, 20)
.backgroundColor(window.location.pathname === "/" ? Colors.base : Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/" ? Colors.oak : "none")
.marginRight("20", "px")
a("Images", () => {
img("_/picture.svg", 20, 20)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Images" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Videos", () => {
img("_/video.svg", 20, 20)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(1)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Videos" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Products", () => {
img("_/shopping.svg", 17, 17)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(3)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Producrs" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Jobs", () => {
img("_/jobs.svg", 24, 24)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Jobs" ? Colors.oak : "none")
.marginRight("20", "px")
.color(Colors.ash)
a("Files", () => {
img("_/doc.svg", 18, 18)
.backgroundColor(Colors.oak)
.padding("horizontal", 10)
.paddingTop(3)
})
.borderRadius(12, px)
.backgroundColor(window.location.pathname === "/Files" ? Colors.oak : "none")
.marginRight("30", "px")
.color(Colors.ash)
})
.marginTop(20, px)
.justifyContent("center")
})
.flex(1)
HStack(() => {
button(() => {
img("_/silo2.svg", 48, 32)
.backgroundColor(Colors.base)
})
.addStyle(buttonStyle)
.height(40, "px")
.padding("horizontal", 18)
.paddingTop(2)
})
.flex(1)
.justifyContent("center")
})
.alignItems("center")
.gap("10px")
.width(100, 'vw')
.height(1.4, "in")
}
}
function buttonStyle(el) {
el.borderRadius(7, px)
.border(`1px solid ${Colors.searchBorder}`)
.backgroundColor(Colors.oak)
.color(darkMode ? Colors.ash : Colors.base)
.fontSize("15", "px")
.transition("scale .3s")
.onHover((hovering) => {
el.style.transition
if(hovering) {
el
.scale("1.05")
.backgroundColor(Colors.darkerBlue)
} else {
el
.scale("")
.backgroundColor(Colors.blue)
}
})
return el
}

18
ui/pages/[].js Normal file
View File

@@ -0,0 +1,18 @@
css(`
home- {
margin: 0px;
position: absolute;
left: 0px;
top: 0px;
width: 100vw;
height: 100vh;
background-color: ${Colors.base};
font-family: system-ui;
}
`)
class Home extends Page {
render() {
Header()
}
}