minecodex 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +56 -0
- package/apps/dashboard/app.js +387 -0
- package/apps/dashboard/favicon.svg +18 -0
- package/apps/dashboard/index.html +70 -0
- package/apps/dashboard/styles.css +297 -0
- package/features/images/README.md +106 -0
- package/features/images/codex-feature.json +24 -0
- package/features/images/src/http-server.mjs +302 -0
- package/features/images/src/image-library.mjs +582 -0
- package/features/images/src/main.mjs +52 -0
- package/features/images/src/prompt-index.mjs +182 -0
- package/features/images/src/save-as.mjs +40 -0
- package/features/images/src/thread-metadata.mjs +93 -0
- package/features/images/web/app.js +1045 -0
- package/features/images/web/index.html +162 -0
- package/features/images/web/styles.css +994 -0
- package/features/model-slider/README.md +30 -0
- package/features/model-slider/THIRD_PARTY_NOTICES.md +24 -0
- package/features/model-slider/assets/providers/anthropic.svg +1 -0
- package/features/model-slider/assets/providers/deepseek.svg +1 -0
- package/features/model-slider/assets/providers/gemini.svg +1 -0
- package/features/model-slider/assets/providers/grok.svg +1 -0
- package/features/model-slider/assets/providers/hunyuan.svg +1 -0
- package/features/model-slider/assets/providers/kimi.svg +1 -0
- package/features/model-slider/assets/providers/minimax.svg +1 -0
- package/features/model-slider/assets/providers/openai.svg +1 -0
- package/features/model-slider/assets/providers/qwen.svg +1 -0
- package/features/model-slider/assets/providers/xiaomimimo.svg +1 -0
- package/features/model-slider/assets/providers/zhipu.svg +1 -0
- package/features/model-slider/assets/ui/sparkles.svg +18 -0
- package/features/model-slider/assets/ui/star-off.svg +17 -0
- package/features/model-slider/assets/ui/star.svg +15 -0
- package/features/model-slider/codex-feature.json +56 -0
- package/features/model-slider/vendor/cc-switch-LICENSE +21 -0
- package/features/model-slider/vendor/lucide-LICENSE +35 -0
- package/features/notes/README.md +106 -0
- package/features/notes/assets/icons/circle.svg +15 -0
- package/features/notes/assets/icons/ellipsis.svg +17 -0
- package/features/notes/assets/icons/external-link.svg +17 -0
- package/features/notes/assets/icons/list-todo.svg +19 -0
- package/features/notes/assets/icons/message-square-quote.svg +17 -0
- package/features/notes/assets/icons/paperclip.svg +15 -0
- package/features/notes/assets/icons/star-off.svg +17 -0
- package/features/notes/assets/icons/star.svg +15 -0
- package/features/notes/assets/icons/sticky-note.svg +16 -0
- package/features/notes/assets/icons/trash-2.svg +19 -0
- package/features/notes/codex-feature.json +90 -0
- package/features/notes/src/http-server.mjs +541 -0
- package/features/notes/src/main.mjs +54 -0
- package/features/notes/src/product.mjs +771 -0
- package/features/notes/web/app.js +1495 -0
- package/features/notes/web/codex-artifact-document.svg +1 -0
- package/features/notes/web/codex-attachment.svg +1 -0
- package/features/notes/web/codex-build.svg +1 -0
- package/features/notes/web/codex-code.svg +1 -0
- package/features/notes/web/codex-cplusplus.svg +1 -0
- package/features/notes/web/codex-css.svg +1 -0
- package/features/notes/web/codex-document.svg +1 -0
- package/features/notes/web/codex-file.svg +1 -0
- package/features/notes/web/codex-folder.svg +1 -0
- package/features/notes/web/codex-hashes.svg +1 -0
- package/features/notes/web/codex-html.svg +1 -0
- package/features/notes/web/codex-image.svg +1 -0
- package/features/notes/web/codex-java.svg +1 -0
- package/features/notes/web/codex-javascript.svg +1 -0
- package/features/notes/web/codex-json.svg +1 -0
- package/features/notes/web/codex-notebook.svg +1 -0
- package/features/notes/web/codex-pdf.svg +1 -0
- package/features/notes/web/codex-pencil.svg +3 -0
- package/features/notes/web/codex-php.svg +1 -0
- package/features/notes/web/codex-plus.svg +3 -0
- package/features/notes/web/codex-presentation.svg +1 -0
- package/features/notes/web/codex-python.svg +1 -0
- package/features/notes/web/codex-react.svg +1 -0
- package/features/notes/web/codex-rust.svg +1 -0
- package/features/notes/web/codex-shell.svg +1 -0
- package/features/notes/web/codex-skill.svg +1 -0
- package/features/notes/web/codex-spreadsheet.svg +1 -0
- package/features/notes/web/codex-task.svg +3 -0
- package/features/notes/web/codex-terminal.svg +1 -0
- package/features/notes/web/codex-toml.svg +1 -0
- package/features/notes/web/codex-typescript.svg +1 -0
- package/features/notes/web/codex-view-all.svg +3 -0
- package/features/notes/web/index.html +15 -0
- package/features/notes/web/styles.css +1155 -0
- package/package.json +67 -0
- package/packages/cli/bin/mcx.mjs +7 -0
- package/packages/cli/src/browser-exchange.mjs +31 -0
- package/packages/cli/src/commands.mjs +389 -0
- package/packages/cli/src/config.mjs +101 -0
- package/packages/cli/src/control-server.mjs +371 -0
- package/packages/cli/src/npm-adapter.mjs +40 -0
- package/packages/cli/src/paths.mjs +33 -0
- package/packages/cli/src/platform.mjs +368 -0
- package/packages/cli/src/runtime-manager.mjs +338 -0
- package/packages/runtime-host/README.md +171 -0
- package/packages/runtime-host/src/codex-runtime.mjs +4311 -0
- package/packages/runtime-host/src/feature-registry.mjs +827 -0
- package/packages/runtime-host/src/main.mjs +98 -0
- package/packages/runtime-host/src/pid-file.mjs +23 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0039 2.59375C13.2705 2.59375 13.5415 2.66842 13.8164 2.81836C14.0914 2.96836 14.3995 3.21061 14.7412 3.54395L19.6914 8.44336C20.2331 8.98503 20.5039 9.53542 20.5039 10.0938V17.5439C20.5039 18.2689 20.3251 18.94 19.9668 19.5566C19.6085 20.1649 19.1205 20.6476 18.5039 21.0059C17.8956 21.3642 17.2289 21.5439 16.5039 21.5439H7.50391C6.77891 21.5439 6.10788 21.3642 5.49121 21.0059C4.88307 20.6476 4.39928 20.1648 4.04102 19.5566C3.68271 18.94 3.50394 18.2689 3.50391 17.5439V6.59375C3.50391 5.86882 3.68275 5.20204 4.04102 4.59375C4.39935 3.97708 4.88288 3.48919 5.49121 3.13086C6.10787 2.77254 6.77892 2.59375 7.50391 2.59375H13.0039Z" fill="url(#paint0_linear_4603_166861)"/><path d="M14.6758 8.59375H9.33203C8.32239 8.59375 7.50391 9.41223 7.50391 10.4219V15.7656C7.50391 16.7753 8.32239 17.5938 9.33203 17.5938H14.6758C15.6854 17.5938 16.5039 16.7753 16.5039 15.7656V10.4219C16.5039 9.41223 15.6854 8.59375 14.6758 8.59375Z" fill="url(#paint1_radial_4603_166861)"/><path d="M14.6758 8.59375H9.33203C8.32239 8.59375 7.50391 9.41223 7.50391 10.4219V15.7656C7.50391 16.7753 8.32239 17.5938 9.33203 17.5938H14.6758C15.6854 17.5938 16.5039 16.7753 16.5039 15.7656V10.4219C16.5039 9.41223 15.6854 8.59375 14.6758 8.59375Z" fill="url(#paint2_radial_4603_166861)" fill-opacity="0.65"/><path d="M15.0894 10.5215L13.9817 15.6637L12.6576 15.6643L12.0037 12.5786L11.3191 15.6643H9.98242L8.91797 10.5221H10.0098L10.6665 13.9158L11.3191 10.5221H12.6576L13.3408 13.9158L13.9817 10.5221L15.0894 10.5215Z" fill="white"/><path d="M13.0039 2.59375C13.2706 2.59375 13.5414 2.66875 13.8164 2.81875C14.0914 2.96875 14.3997 3.21042 14.7414 3.54375L19.6914 8.44375C20.2331 8.98542 20.5039 9.53542 20.5039 10.0938H15.7164C14.8831 10.0938 14.2206 9.85208 13.7289 9.36875C13.2456 8.87708 13.0039 8.21458 13.0039 7.38125V2.59375Z" fill="url(#paint3_linear_4603_166861)"/><defs><linearGradient id="paint0_linear_4603_166861" x1="4.50391" y1="20.5938" x2="16.0039" y2="7.09375" gradientUnits="userSpaceOnUse"><stop stop-color="#1293F1"/><stop offset="1" stop-color="#043CCC"/></linearGradient><radialGradient id="paint1_radial_4603_166861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.50391 8.59375) rotate(45) scale(12.7279)"><stop offset="0.0811439" stop-color="#367AF2"/><stop offset="0.871875" stop-color="#001A8F"/></radialGradient><radialGradient id="paint2_radial_4603_166861" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.0039 13.9937) rotate(90) scale(6.3 7.18031)"><stop offset="0.586954" stop-color="#2763E5" stop-opacity="0"/><stop offset="0.973806" stop-color="#58AAFE"/></radialGradient><linearGradient id="paint3_linear_4603_166861" x1="16.5039" y1="6.09375" x2="13.5039" y2="9.59375" gradientUnits="userSpaceOnUse"><stop offset="0.0673077" stop-color="#59B6FB"/><stop offset="0.721154" stop-color="#7A7CF4"/></linearGradient></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.43945 12.8041V7.68261C4.43945 7.30642 4.74446 7.00141 5.12066 7.00141C5.49685 7.00141 5.80186 7.30642 5.80186 7.68261V12.8041C5.80186 15.2565 7.78984 17.2445 10.2422 17.2445C12.6945 17.2445 14.6825 15.2565 14.6825 12.8041V5.9751C14.6823 4.46587 13.4589 3.24247 11.9497 3.24229C10.4403 3.24229 9.21606 4.46576 9.21588 5.9751V12.8041C9.21588 13.3708 9.67553 13.8304 10.2422 13.8304C10.8088 13.8304 11.2685 13.3708 11.2685 12.8041V7.68261C11.2685 7.30642 11.5735 7.00141 11.9497 7.00141C12.3257 7.00159 12.6309 7.30653 12.6309 7.68261V12.8041C12.6309 14.1232 11.5612 15.1929 10.2422 15.1929C8.92314 15.1929 7.85347 14.1232 7.85347 12.8041V5.9751C7.85365 3.71337 9.68791 1.87988 11.9497 1.87988C14.2113 1.88006 16.0447 3.71348 16.0449 5.9751V12.8041C16.0449 16.0089 13.4469 18.6069 10.2422 18.6069C7.03745 18.6069 4.43945 16.0089 4.43945 12.8041Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.99986 2.88433C9.10247 1.97478 10.3722 1.70537 11.5249 1.95855C12.7982 2.2383 13.8858 3.14609 14.4053 4.42261C15.4705 7.04 14.1018 10.8376 8.25689 14.0656C8.09686 14.1539 7.90284 14.1539 7.74282 14.0656C1.89791 10.8376 0.529244 7.04 1.59439 4.42261C2.11395 3.14608 3.20152 2.2383 4.47485 1.95855C5.62752 1.70538 6.89724 1.97479 7.99986 2.88433ZM11.2967 2.99761C10.3844 2.79718 9.31564 3.03703 8.37564 3.97652C8.16793 4.18398 7.83178 4.18398 7.62407 3.97652C6.68406 3.03703 5.61535 2.79719 4.70298 2.99761C3.77814 3.2008 2.9704 3.86519 2.58032 4.82339C1.83801 6.64719 2.55863 9.89524 7.99986 12.9875C13.4411 9.89523 14.1617 6.6472 13.4194 4.82339C13.0293 3.86519 12.2216 3.2008 11.2967 2.99761Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.9025 5.3302C12.0658 5.06755 12.3961 4.94629 12.6975 5.05774C13.0419 5.1853 13.2176 5.56881 13.09 5.91321L9.75703 14.9132L9.69745 15.0333C9.53415 15.296 9.20387 15.4172 8.90253 15.3058C8.55813 15.1782 8.3824 14.7947 8.50995 14.4503L11.843 5.45032L11.9025 5.3302ZM5.21894 5.35853C5.3974 5.03773 5.8023 4.92241 6.12324 5.10071C6.44404 5.27917 6.55935 5.68407 6.38105 6.00501L4.05976 10.1818L6.38105 14.3585L6.43476 14.4825C6.52764 14.7774 6.4039 15.1067 6.12324 15.2628C5.84224 15.4189 5.49646 15.3503 5.29511 15.1154L5.21894 15.005L2.71894 10.505C2.60736 10.3042 2.60736 10.0594 2.71894 9.85853L5.21894 5.35853ZM15.4768 5.10071C15.7578 4.9446 16.1035 5.01323 16.3049 5.24817L16.381 5.35853L18.881 9.85853C18.9926 10.0594 18.9926 10.3042 18.881 10.505L16.381 15.005C16.2026 15.3258 15.7977 15.4411 15.4768 15.2628C15.156 15.0844 15.0406 14.6795 15.2189 14.3585L17.5393 10.1818L15.2189 6.00501L15.1652 5.88099C15.0723 5.58611 15.1961 5.25684 15.4768 5.10071Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.99302 1.69976C8.37753 1.34747 7.6215 1.34747 7.00601 1.69976L3.00601 3.98924C2.38355 4.34551 1.99951 5.00781 1.99951 5.72502V10.274C1.99951 10.9912 2.38355 11.6535 3.006 12.0098L7.00601 14.2993C7.6215 14.6516 8.37753 14.6516 8.99302 14.2993L12.993 12.0098C13.6155 11.6535 13.9995 10.9912 13.9995 10.274V5.72502C13.9995 5.00781 13.6155 4.34551 12.993 3.98924L8.99302 1.69976ZM11.6191 8.3816H12.6291V7.75232H11.6191V6.74646H10.9891V7.75232H9.97412V8.3816H10.9891V9.3825H11.6191V8.3816ZM9.48711 8.3816H8.47711V9.3825H7.84711V8.3816H6.83211V7.75232H7.84711V6.74646H8.47711V7.75232H9.48711V8.3816ZM4.98297 9.11495C4.48297 9.11495 4.12797 8.67891 4.12797 8.00008C4.12797 7.32125 4.48297 6.88522 4.98297 6.88522C5.35297 6.88522 5.61797 7.1181 5.70297 7.49468L6.48797 7.23702C6.26797 6.58792 5.75797 6.16675 4.98797 6.16675C4.00297 6.16675 3.29297 6.92486 3.29297 8.00008C3.29297 9.07531 4.00297 9.83342 4.98797 9.83342C5.75797 9.83342 6.26797 9.41224 6.48797 8.76315L5.70297 8.50549C5.61797 8.88206 5.35297 9.11495 4.98297 9.11495Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.99984 2.3335L4.6665 13.6668" stroke="currentColor" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.3333 2.3335L10 13.6668" stroke="currentColor" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.6665 5.3335H13.3332" stroke="currentColor" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.6665 10.6665H13.3332" stroke="currentColor" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.685 13.9927V7.82571C3.685 7.13661 3.68435 6.57966 3.72113 6.12942C3.75854 5.67162 3.83792 5.2658 4.02972 4.88918L4.1518 4.67043C4.45589 4.17472 4.89248 3.77087 5.41351 3.50539L5.55609 3.43899C5.89238 3.29475 6.2531 3.22954 6.65375 3.1968C7.10399 3.16001 7.66095 3.16067 8.35004 3.16067H11.8598C12.4396 3.16067 12.8381 3.15683 13.2202 3.24856L13.4594 3.31594C13.6957 3.39275 13.9228 3.49733 14.1352 3.62746L14.2582 3.70754C14.5417 3.90517 14.7998 4.16808 15.1586 4.52688L16.1489 5.51711L16.433 5.80325C16.6956 6.07017 16.8943 6.28943 17.0483 6.54055L17.1704 6.75832C17.283 6.97956 17.3691 7.21362 17.4272 7.45559L17.4575 7.60012C17.5181 7.94023 17.5151 8.3086 17.5151 8.81594V13.9927C17.5151 14.6816 17.5157 15.2388 17.4789 15.689C17.4462 16.0896 17.381 16.4504 17.2368 16.7866L17.1704 16.9292C16.9049 17.4502 16.5009 17.8859 16.0053 18.19L15.7866 18.312C15.4099 18.5039 15.0042 18.5832 14.5463 18.6206C14.0961 18.6574 13.5391 18.6577 12.85 18.6577H8.35004C7.66095 18.6577 7.10399 18.6574 6.65375 18.6206C6.25317 18.5879 5.89234 18.5236 5.55609 18.3794L5.41351 18.312C4.89231 18.0465 4.4559 17.6429 4.1518 17.147L4.02972 16.9292C3.83787 16.5526 3.75856 16.1468 3.72113 15.689C3.68435 15.2388 3.685 14.6816 3.685 13.9927ZM11.433 11.9107L11.5678 11.9243C11.8706 11.9865 12.0981 12.2545 12.0981 12.5757C12.0981 12.8969 11.8706 13.1649 11.5678 13.2271L11.433 13.2407H8.10004C7.73277 13.2407 7.435 12.943 7.435 12.5757C7.435 12.2084 7.73277 11.9107 8.10004 11.9107H11.433ZM13.1 8.57766L13.2338 8.59133C13.5369 8.65329 13.7651 8.92129 13.7651 9.2427C13.7649 9.56401 13.5369 9.83218 13.2338 9.89407L13.1 9.90774H8.10004C7.73288 9.90774 7.43517 9.60982 7.435 9.2427C7.435 8.87543 7.73277 8.57766 8.10004 8.57766H13.1ZM5.01508 13.9927C5.01508 14.7036 5.01597 15.1971 5.0473 15.5806C5.07801 15.9561 5.13479 16.1677 5.21527 16.3257L5.28558 16.4517C5.4619 16.7392 5.71484 16.9735 6.01703 17.1275L6.14691 17.1831C6.29069 17.2346 6.48014 17.2724 6.76215 17.2954C7.14567 17.3268 7.639 17.3277 8.35004 17.3277H12.85C13.5611 17.3277 14.0544 17.3268 14.4379 17.2954C14.8136 17.2647 15.025 17.208 15.183 17.1275L15.309 17.0562C15.5964 16.8799 15.8308 16.6277 15.9848 16.3257L16.0414 16.1948C16.0928 16.0512 16.1298 15.8619 16.1528 15.5806C16.1841 15.1971 16.185 14.7036 16.185 13.9927V8.81594C16.185 8.33361 16.1823 8.0931 16.1616 7.92141L16.1342 7.76614C16.1005 7.62577 16.0502 7.49017 15.9848 7.36184L15.9145 7.23586C15.8625 7.15105 15.7996 7.07018 15.6928 6.95364L15.2084 6.45754L14.2182 5.46731C13.8769 5.12597 13.7049 4.95778 13.5688 4.8511L13.4399 4.76125C13.3167 4.68579 13.1853 4.62512 13.0483 4.58059L12.9096 4.54153C12.7162 4.4951 12.5029 4.49075 11.8598 4.49075H8.35004C7.639 4.49075 7.14567 4.49164 6.76215 4.52297C6.48029 4.546 6.29066 4.58286 6.14691 4.6343L6.01703 4.69094C5.71477 4.84496 5.4619 5.07908 5.28558 5.36672L5.21527 5.4927C5.13476 5.65071 5.07801 5.86211 5.0473 6.23782C5.01597 6.62134 5.01508 7.11467 5.01508 7.82571V13.9927Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.62988 1.12599C5.9198 1.12599 6.11903 1.12407 6.31006 1.16993L6.42969 1.20362C6.54783 1.24203 6.66141 1.29433 6.76758 1.35939L6.8291 1.39943C6.97079 1.49824 7.09992 1.62972 7.2793 1.80909L7.77442 2.30421L7.91651 2.44728C8.04775 2.58071 8.14716 2.69039 8.22412 2.81593L8.28516 2.92482C8.34146 3.0354 8.38453 3.1525 8.41358 3.27345L8.42871 3.34571C8.459 3.51573 8.45752 3.70002 8.45752 3.95362V6.542C8.45752 6.88641 8.45784 7.16509 8.43945 7.39015C8.42307 7.59041 8.39048 7.77088 8.31836 7.93898L8.28516 8.01027C8.15244 8.27068 7.95039 8.48862 7.70264 8.64064L7.59326 8.70167C7.40494 8.7976 7.20206 8.83726 6.97315 8.85597C6.74803 8.87436 6.46954 8.87452 6.125 8.87452H3.875C3.53046 8.87452 3.25197 8.87436 3.02686 8.85597C2.82659 8.8396 2.64613 8.80745 2.47803 8.73536L2.40674 8.70167C2.14617 8.56891 1.92793 8.36707 1.77588 8.11915L1.71484 8.01027C1.61894 7.822 1.57927 7.61897 1.56055 7.39015C1.54216 7.16509 1.54248 6.88641 1.54248 6.542V3.45851C1.54248 3.11403 1.54217 2.83546 1.56055 2.61036C1.57925 2.38151 1.61898 2.17852 1.71484 1.99025C1.86655 1.6925 2.109 1.45007 2.40674 1.29835C2.59504 1.20245 2.79796 1.16276 3.02686 1.14405C3.25198 1.12566 3.53045 1.12599 3.875 1.12599H5.62988ZM3.875 1.79103C3.51948 1.79103 3.27281 1.79147 3.08106 1.80714C2.89321 1.82249 2.7875 1.85087 2.7085 1.89112C2.5359 1.97909 2.39557 2.1194 2.30762 2.292C2.26739 2.37099 2.23898 2.4768 2.22363 2.66456C2.20798 2.8563 2.20752 3.10308 2.20752 3.45851V6.542C2.20752 6.89736 2.20797 7.14424 2.22363 7.33595C2.23899 7.52361 2.26738 7.62955 2.30762 7.70851L2.34277 7.7715C2.43093 7.91522 2.55744 8.03242 2.7085 8.10939L2.77344 8.13722C2.84532 8.16295 2.94008 8.18185 3.08106 8.19337C3.27281 8.20904 3.51949 8.20948 3.875 8.20948H6.125C6.48051 8.20948 6.72719 8.20904 6.91895 8.19337C7.10673 8.17803 7.21251 8.14961 7.29151 8.10939L7.35449 8.07374C7.49817 7.98564 7.6154 7.85948 7.69238 7.70851L7.7207 7.64308C7.74635 7.57129 7.76487 7.47652 7.77637 7.33595C7.79203 7.14424 7.79248 6.89736 7.79248 6.542V4.27882L6.67529 4.1548C6.12859 4.09405 5.69878 3.65917 5.64404 3.11183L5.51172 1.79103H3.875ZM6.30567 3.04591C6.32918 3.281 6.51374 3.46752 6.74854 3.49366L7.78809 3.60939C7.78635 3.56879 7.7843 3.53557 7.78076 3.50636L7.76709 3.42872C7.75025 3.35858 7.72504 3.29071 7.69238 3.22657L7.65723 3.16359C7.63125 3.1212 7.59976 3.0807 7.54639 3.02247L7.3042 2.77443L6.80908 2.27931C6.63847 2.1087 6.55244 2.02455 6.48438 1.9712L6.41992 1.92628C6.35836 1.88856 6.29263 1.85821 6.22412 1.83595L6.18359 1.82423L6.30567 3.04591Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6182 9.33203H3.38184V12.7002C3.38184 13.3753 3.38238 13.8438 3.41211 14.208C3.44124 14.5646 3.49494 14.766 3.57129 14.916L3.63867 15.0361C3.80618 15.3094 4.04683 15.5324 4.33399 15.6787L4.45703 15.7314C4.59362 15.7803 4.77411 15.816 5.04199 15.8379C5.40624 15.8676 5.87469 15.8682 6.54981 15.8682H13.4502C14.1253 15.8682 14.5938 15.8676 14.958 15.8379C15.3146 15.8088 15.516 15.7551 15.666 15.6787L15.7861 15.6113C16.0594 15.4438 16.2824 15.2032 16.4287 14.916L16.4814 14.793C16.5303 14.6564 16.566 14.4759 16.5879 14.208C16.6176 13.8438 16.6182 13.3753 16.6182 12.7002V9.33203ZM17.8818 12.7002C17.8818 13.3547 17.8826 13.8838 17.8477 14.3115C17.8165 14.6922 17.7543 15.0349 17.6172 15.3545L17.5537 15.4902C17.3015 15.9852 16.9182 16.3996 16.4473 16.6885L16.2402 16.8037C15.8824 16.9861 15.4966 17.0621 15.0615 17.0977C14.6338 17.1326 14.1047 17.1318 13.4502 17.1318H6.54981C5.89526 17.1318 5.36616 17.1326 4.93848 17.0977C4.55777 17.0665 4.21506 17.0043 3.89551 16.8672L3.75977 16.8037C3.26483 16.5515 2.85036 16.1682 2.56152 15.6973L2.44629 15.4902C2.26394 15.1324 2.1879 14.7466 2.15235 14.3115C2.1174 13.8838 2.11817 13.3547 2.11817 12.7002V7.29981C2.11817 6.64526 2.1174 6.11616 2.15235 5.68848C2.1879 5.25344 2.26394 4.86765 2.44629 4.50977L2.56152 4.30274C2.85036 3.83179 3.26483 3.44854 3.75977 3.19629L3.89551 3.13281C4.21506 2.99571 4.55777 2.93346 4.93848 2.90235C5.36616 2.8674 5.89526 2.86817 6.54981 2.86817H7.24512C7.38876 2.86816 7.48717 2.86807 7.58399 2.87402L7.83496 2.90039C8.41501 2.98537 8.96006 3.23832 9.40039 3.63086L9.64356 3.86817C9.75546 3.98103 9.79343 4.0181 9.83008 4.05078L9.94238 4.14356C10.2142 4.34787 10.5413 4.46917 10.8828 4.49024L11.1445 4.49317H13.4502C14.1047 4.49317 14.6338 4.4924 15.0615 4.52735C15.4966 4.5629 15.8824 4.63894 16.2402 4.82129L16.4473 4.93652C16.9182 5.22536 17.3015 5.63983 17.5537 6.13477L17.6172 6.27051C17.7543 6.59006 17.8165 6.93277 17.8477 7.31348C17.8826 7.74116 17.8818 8.27026 17.8818 8.92481V12.7002ZM3.38184 8.06836H16.6143C16.6105 7.81516 16.603 7.60256 16.5879 7.41699C16.566 7.14911 16.5303 6.96862 16.4814 6.83203L16.4287 6.70899C16.2824 6.42183 16.0594 6.18118 15.7861 6.01367L15.666 5.94629C15.516 5.86994 15.3146 5.81624 14.958 5.78711C14.5938 5.75738 14.1253 5.75684 13.4502 5.75684H11.1445L10.8047 5.75098C10.2158 5.71466 9.65236 5.50645 9.1836 5.1543L8.98926 4.99414C8.91673 4.92948 8.84746 4.85908 8.7461 4.75684L8.55957 4.57422C8.30416 4.34653 7.98784 4.19959 7.65137 4.15039L7.50684 4.13477C7.45779 4.13174 7.4043 4.13184 7.24512 4.13184H6.54981C5.87469 4.13184 5.40624 4.13238 5.04199 4.16211C4.77411 4.184 4.59362 4.21966 4.45703 4.26856L4.33399 4.32129C4.04683 4.4676 3.80618 4.69061 3.63867 4.96387L3.57129 5.08399C3.49494 5.23405 3.44124 5.43543 3.41211 5.79199C3.38238 6.15624 3.38184 6.62469 3.38184 7.29981V8.06836Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.6665 3.6665H13.3332" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round"/><path d="M2.6665 12.3335H13.3332" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round"/><path d="M2.6665 8H7.99984" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.88209 4.11875C9.01273 3.90863 9.27695 3.81162 9.51802 3.90078C9.79355 4.00283 9.93413 4.30963 9.83209 4.58516L7.16568 11.7852L7.11802 11.8813C6.98738 12.0914 6.72316 12.1884 6.48209 12.0992C6.20656 11.9972 6.06598 11.6904 6.16802 11.4148L8.83443 4.21485L8.88209 4.11875ZM3.53521 4.14141C3.67798 3.88477 4.0019 3.79252 4.25865 3.93516C4.51529 4.07792 4.60754 4.40184 4.4649 4.6586L2.60787 8L4.4649 11.3414L4.50787 11.4406C4.58217 11.6765 4.48318 11.9399 4.25865 12.0648C4.03385 12.1897 3.75722 12.1348 3.59615 11.9469L3.53521 11.8586L1.53521 8.2586C1.44595 8.09792 1.44595 7.90209 1.53521 7.74141L3.53521 4.14141ZM11.7415 3.93516C11.9663 3.81027 12.2429 3.86517 12.404 4.05313L12.4649 4.14141L14.4649 7.74141C14.5542 7.90209 14.5542 8.09792 14.4649 8.2586L12.4649 11.8586C12.3221 12.1152 11.9982 12.2075 11.7415 12.0648C11.4848 11.9221 11.3926 11.5982 11.5352 11.3414L13.3915 8L11.5352 4.6586L11.4922 4.55938C11.4179 4.32348 11.5169 4.06006 11.7415 3.93516Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0012 7.78796C16.0012 7.07693 16.0013 6.58359 15.97 6.20007C15.9469 5.91812 15.9091 5.72861 15.8577 5.58484L15.802 5.45496C15.6481 5.15285 15.4137 4.89982 15.1262 4.72351L14.9993 4.6532C14.8413 4.57274 14.6297 4.51592 14.2542 4.48523C13.8707 4.45391 13.3771 4.453 12.6663 4.453H7.33325C6.62221 4.453 6.12888 4.4539 5.74536 4.48523C5.46351 4.50826 5.27388 4.54512 5.13013 4.59656L5.00024 4.6532C4.69799 4.80722 4.44511 5.04134 4.2688 5.32898L4.19849 5.45496C4.11798 5.61296 4.06122 5.82437 4.03052 6.20007C3.99918 6.58359 3.99829 7.07693 3.99829 7.78796V12.1815L5.01782 11.1629L5.19458 11.0028C6.1104 10.2557 7.46195 10.3092 8.31567 11.1629L13.6038 16.451C13.8548 16.4469 14.0675 16.4399 14.2542 16.4247C14.6295 16.394 14.8413 16.3371 14.9993 16.2567L15.1262 16.1854C15.4136 16.0091 15.6481 15.756 15.802 15.454L15.8577 15.3241C15.9091 15.1803 15.9469 14.9906 15.97 14.7088C16.0013 14.3254 16.0012 13.8318 16.0012 13.121V7.78796ZM7.37525 12.1034C7.00846 11.7366 6.42786 11.714 6.03442 12.035L5.95825 12.1034L4.0022 14.0594C4.00634 14.3101 4.0153 14.5224 4.03052 14.7088C4.0612 15.0844 4.11803 15.296 4.19849 15.454L4.2688 15.5809C4.44511 15.8683 4.69813 16.1028 5.00024 16.2567L5.13013 16.3124C5.2739 16.3638 5.46341 16.4016 5.74536 16.4247C6.12888 16.456 6.62222 16.4559 7.33325 16.4559H11.7268L7.37525 12.1034ZM13.0852 8.37097C13.085 7.81792 12.6363 7.37 12.0833 7.37C11.5302 7.37 11.0815 7.81792 11.0813 8.37097C11.0813 8.92418 11.53 9.37293 12.0833 9.37293C12.6365 9.37293 13.0852 8.92418 13.0852 8.37097ZM14.4153 8.37097C14.4153 9.65872 13.371 10.703 12.0833 10.703C10.7955 10.703 9.75122 9.65872 9.75122 8.37097C9.7514 7.08338 10.7956 6.03992 12.0833 6.03992C13.3709 6.03992 14.4151 7.08338 14.4153 8.37097ZM17.3313 13.121C17.3313 13.81 17.3319 14.367 17.2952 14.8172C17.2624 15.2182 17.1974 15.5794 17.053 15.9159L16.9866 16.0585C16.7211 16.5794 16.3172 17.0151 15.8215 17.3192L15.6038 17.4413C15.227 17.6332 14.8206 17.7124 14.3625 17.7499C13.9123 17.7866 13.3553 17.786 12.6663 17.786H7.33325C6.64416 17.786 6.0872 17.7866 5.63696 17.7499C5.23628 17.7171 4.87563 17.6519 4.53931 17.5077L4.39673 17.4413C3.87561 17.1757 3.43911 16.772 3.13501 16.2762L3.01294 16.0585C2.82097 15.6817 2.74177 15.2752 2.70435 14.8172C2.66758 14.367 2.66821 13.8099 2.66821 13.121V7.78796C2.66821 7.09887 2.66756 6.54192 2.70435 6.09168C2.74176 5.63388 2.82113 5.22806 3.01294 4.85144L3.13501 4.63269C3.4391 4.13698 3.87569 3.73313 4.39673 3.46765L4.53931 3.40125C4.8756 3.25701 5.23632 3.1918 5.63696 3.15906C6.0872 3.12227 6.64416 3.12293 7.33325 3.12293H12.6663C13.3553 3.12293 13.9123 3.12229 14.3625 3.15906C14.8206 3.19648 15.227 3.27568 15.6038 3.46765L15.8215 3.58972C16.3174 3.89382 16.7211 4.33032 16.9866 4.85144L17.053 4.99402C17.1973 5.33034 17.2624 5.69099 17.2952 6.09168C17.332 6.54192 17.3313 7.09887 17.3313 7.78796V13.121Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.7598 4.97168C14.4831 7.0632 13.7726 9.77032 11.7715 11.7715C9.16799 14.3749 5.36889 14.7966 3.28613 12.7139C3.16772 12.5955 3.05833 12.4708 2.95605 12.3418C4.33809 10.151 6.20011 9.41504 8.24121 8.62109C10.1308 7.88607 12.1721 7.10139 13.7598 4.97168ZM4.22852 4.22852C6.83197 1.62506 10.6311 1.20344 12.7139 3.28613C12.8319 3.40419 12.9409 3.52867 13.043 3.65723C11.6609 5.84802 9.79985 6.584 7.75879 7.37793C5.8692 8.11294 3.82786 8.89852 2.24023 11.0283C1.51694 8.93686 2.22748 6.22965 4.22852 4.22852Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.77431 2H11.2257C11.5771 1.99999 11.8803 1.99998 12.13 2.02038C12.3936 2.04192 12.6557 2.08946 12.908 2.21799C13.2843 2.40974 13.5903 2.7157 13.782 3.09202C13.9105 3.34427 13.9581 3.60642 13.9796 3.86998C14 4.11969 14 4.42287 14 4.77429V11.2257C14 11.5771 14 11.8803 13.9796 12.13C13.9581 12.3936 13.9105 12.6557 13.782 12.908C13.5903 13.2843 13.2843 13.5903 12.908 13.782C12.6557 13.9105 12.3936 13.9581 12.13 13.9796C11.8803 14 11.5771 14 11.2257 14H4.77429C4.42287 14 4.11969 14 3.86998 13.9796C3.60642 13.9581 3.34427 13.9105 3.09202 13.782C2.7157 13.5903 2.40974 13.2843 2.21799 12.908C2.08946 12.6557 2.04192 12.3936 2.02038 12.13C1.99998 11.8803 1.99999 11.5771 2 11.2257V4.77428C1.99999 4.42287 1.99998 4.11969 2.02038 3.86998C2.04192 3.60642 2.08946 3.34427 2.21799 3.09202C2.40974 2.7157 2.7157 2.40974 3.09202 2.21799C3.34427 2.08946 3.60642 2.04192 3.86998 2.02038C4.11969 1.99998 4.4229 1.99999 4.77431 2ZM6.37311 11.13V11.994C6.54111 12.024 6.73311 12.036 6.93111 12.036C7.84311 12.036 8.41911 11.64 8.41911 10.734V7.692H7.41711V10.584C7.41711 11.016 7.22511 11.166 6.80511 11.166C6.64911 11.166 6.54111 11.154 6.37311 11.13ZM9.36805 10.578L8.75005 11.268C9.10405 11.76 9.88405 12.066 10.598 12.066C11.552 12.066 12.338 11.544 12.338 10.644C12.338 9.70036 11.5058 9.52362 10.8294 9.37999L10.82 9.378L10.799 9.37343C10.2606 9.25643 9.97405 9.19417 9.97405 8.898C9.97405 8.622 10.238 8.454 10.616 8.454C11.072 8.454 11.426 8.67 11.69 9.006L12.296 8.346C11.978 7.944 11.39 7.626 10.646 7.626C9.72805 7.626 8.99605 8.154 8.99605 9C8.99605 9.864 9.69205 10.074 10.328 10.212C10.3824 10.224 10.4348 10.2353 10.4852 10.2462C11.0404 10.366 11.348 10.4324 11.348 10.746C11.348 11.07 11.054 11.238 10.64 11.238C10.178 11.238 9.70405 11.01 9.36805 10.578Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.53574 12.0004V10.0004C3.53574 9.7426 3.40119 9.50225 3.17715 9.35195L3.07559 9.29258C2.69921 9.10638 2.13588 8.6867 2.13574 8.00039C2.13574 7.31387 2.69917 6.89361 3.07559 6.70742L3.17715 6.64883C3.40126 6.49859 3.53565 6.25818 3.53574 6.00039V4.00039C3.53574 2.94641 4.42592 2.13477 5.46777 2.13477C5.76159 2.13477 5.9998 2.37299 5.9998 2.6668C5.9998 2.96061 5.76159 3.19883 5.46777 3.19883C4.96403 3.19883 4.5998 3.58237 4.5998 4.00039V6.00039C4.59971 6.68944 4.21449 7.27922 3.66074 7.60039L3.54746 7.66133C3.42742 7.7207 3.32888 7.79335 3.26699 7.86445C3.20767 7.93263 3.1998 7.97695 3.1998 8.00039C3.19986 8.02387 3.20801 8.06771 3.26699 8.13555C3.32889 8.20666 3.42739 8.28008 3.54746 8.33945L3.66074 8.39961C4.21462 8.72081 4.5998 9.31119 4.5998 10.0004V12.0004C4.59994 12.3921 4.91991 12.7536 5.3748 12.7973L5.46777 12.8012L5.5748 12.8121C5.81725 12.8616 5.99968 13.0762 5.9998 13.3332C5.9998 13.5903 5.81728 13.8047 5.5748 13.8543L5.46777 13.8652L5.27402 13.8559C4.31802 13.7627 3.53588 12.9882 3.53574 12.0004ZM11.3997 12.0004V10.0004C11.3997 9.26522 11.8383 8.64304 12.4521 8.33945L12.538 8.29258C12.6192 8.24368 12.6861 8.18888 12.7326 8.13555C12.7915 8.06771 12.7997 8.02388 12.7997 8.00039C12.7997 7.97695 12.7919 7.93262 12.7326 7.86445C12.6862 7.81117 12.6191 7.75707 12.538 7.7082L12.4521 7.66133C11.8383 7.35781 11.3998 6.73551 11.3997 6.00039V4.00039C11.3997 3.60856 11.0797 3.24726 10.6247 3.20352L10.5318 3.19883L10.4247 3.18789C10.1822 3.13834 9.99974 2.92394 9.99974 2.6668C9.99974 2.37298 10.238 2.13477 10.5318 2.13477L10.7255 2.14414C11.6816 2.2373 12.4638 3.01241 12.4638 4.00039V6.00039C12.4639 6.29497 12.6397 6.56684 12.924 6.70742L13.0724 6.78789C13.4324 7.00237 13.8638 7.39958 13.8638 8.00039C13.8637 8.60099 13.4324 8.99765 13.0724 9.21211L12.924 9.29258C12.6396 9.43321 12.4638 9.70571 12.4638 10.0004V12.0004C12.4637 13.0542 11.5735 13.8652 10.5318 13.8652C10.238 13.8652 9.99974 13.627 9.99974 13.3332C9.99988 13.0395 10.238 12.8012 10.5318 12.8012C11.0354 12.8012 11.3996 12.4183 11.3997 12.0004Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.5847 6.59094C15.5847 5.8799 15.5847 5.38657 15.5534 5.00305C15.5304 4.7211 15.4926 4.53159 15.4411 4.38782L15.3854 4.25794C15.2315 3.95582 14.9971 3.7028 14.7097 3.52649L14.5827 3.45618C14.4247 3.37572 14.2132 3.3189 13.8376 3.28821C13.4541 3.25689 12.9606 3.25598 12.2497 3.25598H7.74969C7.03883 3.25598 6.54527 3.25688 6.1618 3.28821C5.8805 3.31121 5.69117 3.34822 5.54755 3.39954L5.41669 3.45618C5.11465 3.61015 4.86247 3.84453 4.68622 4.13196L4.61493 4.25794C4.53444 4.41594 4.47766 4.6274 4.44696 5.00305C4.42353 5.28987 4.4193 5.63813 4.41766 6.0929H4.58368C4.9508 6.09307 5.24872 6.39077 5.24872 6.75794C5.24854 7.12495 4.95069 7.4228 4.58368 7.42297H4.41473V9.4259H4.58368L4.71747 9.43958C5.02044 9.50163 5.24872 9.76962 5.24872 10.0909C5.24872 10.4123 5.02044 10.6803 4.71747 10.7423L4.58368 10.756H4.41473V12.7589H4.58368C4.95069 12.7591 5.24854 13.0569 5.24872 13.424C5.24872 13.7911 4.9508 14.0888 4.58368 14.089H4.41766C4.4193 14.5438 4.42353 14.892 4.44696 15.1788C4.47766 15.5545 4.53444 15.766 4.61493 15.924L4.68622 16.0499C4.86247 16.3374 5.11465 16.5717 5.41669 16.7257L5.54755 16.7823C5.69117 16.8337 5.8805 16.8707 6.1618 16.8937C6.54526 16.925 7.03883 16.9259 7.74969 16.9259H12.2497C12.9606 16.9259 13.4541 16.925 13.8376 16.8937C14.2132 16.863 14.4247 16.8062 14.5827 16.7257L14.7097 16.6554C14.9971 16.4791 15.2315 16.2261 15.3854 15.924L15.4411 15.7941C15.4926 15.6503 15.5304 15.4608 15.5534 15.1788C15.5847 14.7953 15.5847 14.302 15.5847 13.5909V6.59094ZM10.4997 9.1759C10.867 9.1759 11.1647 9.47368 11.1647 9.84094C11.1647 10.2082 10.867 10.506 10.4997 10.506H7.99969C7.63254 10.5058 7.33466 10.2081 7.33466 9.84094C7.33466 9.47376 7.63254 9.17604 7.99969 9.1759H10.4997ZM11.9997 6.0929L12.1335 6.10657C12.4367 6.16843 12.6647 6.43644 12.6647 6.75794C12.6646 7.07933 12.4367 7.34751 12.1335 7.4093L11.9997 7.42297H7.99969C7.63265 7.42284 7.33483 7.12497 7.33466 6.75794C7.33466 6.39075 7.63254 6.09303 7.99969 6.0929H11.9997ZM16.9147 13.5909C16.9147 14.28 16.9154 14.837 16.8786 15.2872C16.8459 15.6879 16.7807 16.0486 16.6364 16.3849L16.57 16.5275C16.3045 17.0486 15.9008 17.4851 15.405 17.7892L15.1872 17.9113C14.8104 18.1032 14.404 18.1824 13.946 18.2198C13.4958 18.2566 12.9387 18.256 12.2497 18.256H7.74969C7.06075 18.256 6.50358 18.2566 6.05341 18.2198C5.65278 18.1871 5.29203 18.1219 4.95575 17.9777L4.81317 17.9113C4.29224 17.6458 3.85652 17.2418 3.55243 16.7462L3.43036 16.5275C3.23846 16.1508 3.15919 15.7451 3.12177 15.2872C3.09429 14.9509 3.0892 14.555 3.08759 14.089H2.91669C2.54942 14.089 2.25165 13.7912 2.25165 13.424C2.25182 13.0568 2.54953 12.7589 2.91669 12.7589H3.08466V10.756H2.91669C2.54942 10.756 2.25165 10.4582 2.25165 10.0909C2.25165 9.72367 2.54942 9.4259 2.91669 9.4259H3.08466V7.42297H2.91669C2.54953 7.42297 2.25182 7.12506 2.25165 6.75794C2.25165 6.39067 2.54942 6.0929 2.91669 6.0929H3.08759C3.0892 5.62692 3.09429 5.23098 3.12177 4.89465C3.15919 4.43678 3.23846 4.03109 3.43036 3.65442L3.55243 3.43567C3.85652 2.94009 4.29224 2.53606 4.81317 2.27063L4.95575 2.20422C5.29203 2.05994 5.65278 1.9948 6.05341 1.96204C6.50358 1.92526 7.06075 1.9259 7.74969 1.9259H12.2497C12.9387 1.9259 13.4958 1.92527 13.946 1.96204C14.404 1.99946 14.8104 2.07866 15.1872 2.27063L15.405 2.3927C15.9008 2.6968 16.3045 3.1333 16.57 3.65442L16.6364 3.797C16.7807 4.13332 16.8459 4.49397 16.8786 4.89465C16.9154 5.3449 16.9147 5.90185 16.9147 6.59094V13.5909Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="#F75858" d="M13 2.594c.267 0 .538.074.813.224.274.15.583.393.924.726l4.95 4.9c.542.541.813 1.091.813 1.65v7.45c0 .725-.179 1.396-.537 2.013a4.001 4.001 0 0 1-1.463 1.449 3.87 3.87 0 0 1-2 .538h-9c-.725 0-1.396-.18-2.013-.538a4.031 4.031 0 0 1-1.45-1.45 3.937 3.937 0 0 1-.537-2.012V6.594c0-.725.179-1.392.537-2a4.002 4.002 0 0 1 1.45-1.463A3.936 3.936 0 0 1 7.5 2.594H13Z"/><path fill="#FF928C" d="M13 2.594c.267 0 .537.075.813.225.274.15.583.391.925.725l4.95 4.9c.541.541.812 1.091.812 1.65h-4.787c-.834 0-1.496-.242-1.988-.725C13.242 8.877 13 8.215 13 7.38V2.594Z"/><path fill="#fff" d="M14.314 17.96v-3.687H17v.632h-1.975v.948h1.712v.632h-1.712v1.474h-.711Zm-3.844 0v-3.687h1.263c1.106 0 1.87.632 1.87 1.843 0 1.211-.737 1.843-1.843 1.843h-1.29Zm1.21-.633c.712 0 1.212-.29 1.212-1.211 0-.922-.5-1.211-1.211-1.211h-.5v2.422h.5ZM7 17.96v-3.687h1.659c.711 0 1.185.421 1.185 1.158 0 .738-.474 1.164-1.185 1.164h-.948v1.364H7Zm1.58-1.997c.369 0 .553-.216.553-.532 0-.316-.184-.526-.553-.526h-.869v1.058h.869Z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.7313 4.20472C13.1489 2.92391 15.3377 2.96644 16.7039 4.33265L16.8318 4.46742C18.0713 5.8393 18.0713 7.93343 16.8318 9.30531L16.7039 9.44007L10.4119 15.7311C10.0884 16.0546 9.85387 16.2917 9.62188 16.4821L9.3875 16.6588C9.18236 16.799 8.96432 16.9196 8.73711 17.0192L8.50762 17.1119C8.32585 17.1785 8.13845 17.2266 7.92168 17.2711L7.15703 17.4069L4.76348 17.8053C4.62062 17.8291 4.46916 17.8552 4.34063 17.8649C4.24185 17.8723 4.10835 17.875 3.9627 17.8395L3.81426 17.7907C3.59124 17.695 3.40749 17.5271 3.2918 17.316L3.2459 17.2223C3.1596 17.0209 3.16176 16.8276 3.17168 16.6959C3.18138 16.5674 3.20744 16.4159 3.23125 16.2731L3.62969 13.8795L3.76445 13.1149C3.80902 12.898 3.85797 12.7108 3.92461 12.5289L4.01738 12.2985C4.11693 12.0715 4.23774 11.854 4.37774 11.6491L4.55352 11.4147C4.74395 11.1825 4.98173 10.9484 5.30547 10.6246L11.5965 4.33265L11.7313 4.20472ZM6.2459 11.5651C5.89673 11.9142 5.71261 12.0998 5.58672 12.2526L5.47539 12.3991C5.38197 12.5358 5.30159 12.6812 5.23516 12.8327L5.17363 12.9869C5.1333 13.0971 5.1025 13.2125 5.06817 13.3815L4.94121 14.0983L4.54277 16.4918L4.5418 16.4938H4.54473L6.93828 16.0944L7.65508 15.9684C7.82408 15.9341 7.93949 15.9033 8.04961 15.8629L8.20293 15.8014C8.35464 15.7349 8.49956 15.6538 8.63652 15.5602L8.78399 15.4498C8.93677 15.3239 9.12233 15.1398 9.47149 14.7907L14.4588 9.80238L11.2332 6.57679L6.2459 11.5651ZM15.7635 5.27308C14.9282 4.43776 13.6058 4.38573 12.7098 5.11683L12.5369 5.27308L12.1736 5.63636L15.4002 8.86195L15.7635 8.49964L15.9197 8.32581C16.6016 7.48961 16.6016 6.28311 15.9197 5.44691L15.7635 5.27308Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.54553 10.6872C5.47678 10.2386 5.28772 9.87424 4.82881 9.69804C4.6492 9.62929 4.49365 9.50382 4.31662 9.42476C4.11553 9.33453 3.911 9.24859 3.69873 9.19273C3.53803 9.14976 3.3885 9.22195 3.29311 9.36289C3.20287 9.49523 3.26818 9.61984 3.34381 9.7307C3.42889 9.85531 3.52342 9.9739 3.61881 10.0908C3.77693 10.285 3.94451 10.4715 4.09834 10.6683C4.24529 10.8565 4.37076 11.0653 4.34928 11.3146C4.30201 11.8611 4.05451 12.314 3.65576 12.6827C3.61193 12.7222 3.53459 12.7506 3.47787 12.7454C3.2235 12.7179 2.99232 12.6217 2.80584 12.4438C2.59186 12.2401 2.62451 12.0003 2.88061 11.8517C2.94162 11.8164 3.00522 11.7838 3.06108 11.7408C3.21748 11.6231 3.2699 11.422 3.18483 11.2475C3.14443 11.1633 3.09889 11.0722 3.03186 11.0112C2.70443 10.713 2.383 10.4053 2.03237 10.1338C1.18242 9.47374 0.745889 8.60065 0.678829 7.54359C0.603204 6.36965 0.875626 5.27395 1.49524 4.27103C1.72985 3.89032 2.00313 3.52764 2.4225 3.33947C2.70781 3.21142 3.02063 3.13923 3.32573 3.05931C4.16537 2.83845 5.01269 2.67259 5.8867 2.8204C6.63951 2.94673 7.1904 3.33431 7.44306 4.07423C7.60892 4.55806 7.64845 5.05822 7.59689 5.57043C7.49548 6.57679 6.75212 7.47656 5.78272 7.74296C5.36248 7.85812 5.13303 7.79367 4.88037 7.4439C4.69904 7.1921 4.54865 6.91796 4.38623 6.65239C4.36217 6.61285 4.34498 6.56731 4.32436 6.5252C4.30459 6.48309 4.28311 6.4427 4.26248 6.40059C4.3235 6.83715 4.4249 7.25742 4.66295 7.63207C4.79186 7.83575 4.96373 7.98614 5.21553 8.00848C6.14194 8.09184 6.924 7.78762 7.47915 7.04251C8.10048 6.20889 8.23715 5.24983 8.05751 4.24006C8.02228 4.04069 7.96298 3.84561 7.92087 3.64709C7.89251 3.51905 7.94322 3.42451 8.06954 3.37983C8.12798 3.36006 8.18814 3.34373 8.24658 3.3317C9.00457 3.16842 9.77114 3.11428 10.5437 3.19248C11.4203 3.28014 12.2496 3.52076 12.9912 4.00806C14.1523 4.77204 14.8716 5.85918 15.2626 7.17406C15.3193 7.36484 15.3279 7.57367 15.3331 7.77479C15.3365 7.90885 15.2506 7.94408 15.1483 7.85987C15.0357 7.76791 14.9326 7.66307 14.8355 7.55479C14.7453 7.45252 14.6731 7.33565 14.5854 7.22823C14.5175 7.14401 14.4582 7.1569 14.4256 7.26174C14.4049 7.32533 14.3869 7.38807 14.3689 7.45166C14.166 8.17526 13.8464 8.83526 13.3281 9.3913C13.256 9.46951 13.1915 9.58552 13.1829 9.68865C13.1606 9.97396 13.1442 10.2653 13.1717 10.5497C13.2285 11.1608 13.317 11.7692 13.3857 12.3794C13.4244 12.724 13.3135 12.9268 12.9896 13.0463C12.7618 13.1296 12.5178 13.1907 12.2771 13.2078C11.8939 13.2345 11.5071 13.2156 11.1221 13.2156C11.1118 12.7859 11.1488 12.3639 10.7449 12.1336C10.8231 11.8148 10.9133 11.5123 10.9674 11.2029C11.0121 10.9459 10.9743 10.6933 10.7939 10.4827C10.6246 10.2842 10.4123 10.2301 10.218 10.3435C9.63281 10.6847 9.02434 10.6864 8.40473 10.463C8.12028 10.3598 7.92176 10.4183 7.76447 10.6778C7.59517 10.9571 7.52384 11.2708 7.54275 11.5879C7.56681 11.9875 7.63642 12.3828 7.6897 12.7807C7.71892 13.0033 7.694 13.0609 7.47314 13.1176C6.98243 13.2422 6.48314 13.256 5.98123 13.2156C5.95459 13.213 5.92795 13.2018 5.91076 13.1975C5.88584 12.7807 5.92967 12.3476 5.43295 12.1259C5.65295 11.6592 5.62287 11.1754 5.54725 10.6916L5.54553 10.6873V10.6872ZM2.57894 9.05182C2.65198 8.98307 2.71042 8.87565 2.73105 8.77682C2.78261 8.52932 2.59698 8.1976 2.38214 8.10565C2.26784 8.0558 2.16816 8.07385 2.08737 8.16494C1.89058 8.38752 1.69636 8.61268 1.50297 8.83872C1.47031 8.8774 1.4411 8.92294 1.41789 8.96849C1.34055 9.11716 1.3861 9.22544 1.5511 9.26583C1.65078 9.29075 1.75391 9.29591 1.85617 9.31052C2.12258 9.28474 2.38039 9.24005 2.57891 9.05271V9.05185L2.57894 9.05182ZM2.60128 6.57765C2.60042 6.40062 2.45261 6.25281 2.27816 6.25195C2.09855 6.25109 1.94386 6.41179 1.94987 6.58882C1.95761 6.76671 2.10542 6.90937 2.28245 6.90593C2.4612 6.90335 2.60386 6.75726 2.60214 6.57851L2.60128 6.57765Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.33496 16.5V10.665H3.5C3.13273 10.665 2.83496 10.3673 2.83496 10C2.83496 9.63273 3.13273 9.33496 3.5 9.33496H9.33496V3.5C9.33496 3.13273 9.63273 2.83496 10 2.83496C10.3673 2.83496 10.665 3.13273 10.665 3.5V9.33496H16.5L16.6338 9.34863C16.9369 9.41057 17.165 9.67857 17.165 10C17.165 10.3214 16.9369 10.5894 16.6338 10.6514L16.5 10.665H10.665V16.5C10.665 16.8673 10.3673 17.165 10 17.165C9.63273 17.165 9.33496 16.8673 9.33496 16.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0039 2.59375C13.2705 2.59375 13.5415 2.66842 13.8164 2.81836C14.0914 2.96836 14.3995 3.21061 14.7412 3.54395L19.6914 8.44336C20.2331 8.98503 20.5039 9.53542 20.5039 10.0938V17.5439C20.5039 18.2689 20.3251 18.94 19.9668 19.5566C19.6085 20.1649 19.1205 20.6476 18.5039 21.0059C17.8956 21.3642 17.2289 21.5439 16.5039 21.5439H7.50391C6.77891 21.5439 6.10788 21.3642 5.49121 21.0059C4.88307 20.6476 4.39928 20.1648 4.04102 19.5566C3.68271 18.94 3.50394 18.2689 3.50391 17.5439V6.59375C3.50391 5.86882 3.68275 5.20204 4.04102 4.59375C4.39935 3.97708 4.88288 3.48919 5.49121 3.13086C6.10787 2.77254 6.77892 2.59375 7.50391 2.59375H13.0039Z" fill="url(#paint0_linear_4603_166847)"/><path d="M14.6758 8.59375H9.33203C8.32239 8.59375 7.50391 9.41223 7.50391 10.4219V15.7656C7.50391 16.7753 8.32239 17.5938 9.33203 17.5938H14.6758C15.6854 17.5938 16.5039 16.7753 16.5039 15.7656V10.4219C16.5039 9.41223 15.6854 8.59375 14.6758 8.59375Z" fill="url(#paint1_radial_4603_166847)"/><path d="M14.6758 8.59375H9.33203C8.32239 8.59375 7.50391 9.41223 7.50391 10.4219V15.7656C7.50391 16.7753 8.32239 17.5938 9.33203 17.5938H14.6758C15.6854 17.5938 16.5039 16.7753 16.5039 15.7656V10.4219C16.5039 9.41223 15.6854 8.59375 14.6758 8.59375Z" fill="url(#paint2_radial_4603_166847)" fill-opacity="0.3"/><path d="M11.566 13.9895V15.6643H10.4082V10.5215H12.1969C12.8374 10.5215 13.3249 10.6613 13.6595 10.9411C13.9965 11.2208 14.165 11.6356 14.165 12.1855C14.165 12.7522 13.9762 13.1945 13.5986 13.5125C13.2234 13.8305 12.7191 13.9895 12.0858 13.9895H11.566ZM11.566 11.4109V13.1H12.05C12.3368 13.1 12.5578 13.0248 12.7131 12.8741C12.8685 12.7235 12.9462 12.5071 12.9462 12.225C12.9462 11.9644 12.8697 11.7635 12.7167 11.6225C12.5662 11.4814 12.3499 11.4109 12.0679 11.4109H11.566Z" fill="white"/><path d="M13.0039 2.59375C13.2706 2.59375 13.5414 2.66875 13.8164 2.81875C14.0914 2.96875 14.3997 3.21042 14.7414 3.54375L19.6914 8.44375C20.2331 8.98542 20.5039 9.53542 20.5039 10.0938H15.7164C14.8831 10.0938 14.2206 9.85208 13.7289 9.36875C13.2456 8.87708 13.0039 8.21458 13.0039 7.38125V2.59375Z" fill="url(#paint3_linear_4603_166847)"/><defs><linearGradient id="paint0_linear_4603_166847" x1="4.50391" y1="20.5938" x2="16.0039" y2="7.09375" gradientUnits="userSpaceOnUse"><stop offset="0.0240385" stop-color="#F35AAA"/><stop offset="0.528846" stop-color="#E1473D"/><stop offset="1" stop-color="#B0212C"/></linearGradient><radialGradient id="paint1_radial_4603_166847" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.50281 8.59375) rotate(45) scale(12.7279)"><stop stop-color="#F8193E"/><stop offset="0.939062" stop-color="#920616"/></radialGradient><radialGradient id="paint2_radial_4603_166847" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.0028 13.9937) rotate(90) scale(6.3 7.17187)"><stop offset="0.575893" stop-color="#FFB055" stop-opacity="0"/><stop offset="0.973806" stop-color="#FFF2BE"/></radialGradient><linearGradient id="paint3_linear_4603_166847" x1="16.5039" y1="6.09375" x2="13.5039" y2="9.59375" gradientUnits="userSpaceOnUse"><stop stop-color="#FF8F29"/><stop offset="0.850962" stop-color="#FE80AD"/></linearGradient></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.92853 2.0001C7.43373 2.00237 6.9612 2.04411 6.54543 2.11688C5.32059 2.3309 5.09821 2.77888 5.09821 3.60501V4.69609H7.99267V5.05978H4.01195C3.17074 5.05978 2.43415 5.55987 2.20376 6.51121C1.93801 7.60167 1.92622 8.28213 2.20376 9.42073C2.40951 10.2683 2.90086 10.8722 3.74207 10.8722H4.73724V9.5642C4.73724 8.61933 5.56384 7.7858 6.54543 7.7858H9.43647C10.2413 7.7858 10.8837 7.1304 10.8837 6.33103V3.60501C10.8837 2.82917 10.222 2.24636 9.43647 2.11688C8.93927 2.03501 8.42333 1.99782 7.92853 2.0001ZM6.36326 2.87763C6.66223 2.87763 6.9064 3.12306 6.9064 3.42483C6.9064 3.72554 6.66223 3.96871 6.36326 3.96871C6.06321 3.96871 5.82013 3.72554 5.82013 3.42483C5.82013 3.12306 6.06321 2.87763 6.36326 2.87763Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.2446 5.05969V6.33095C11.2446 7.31653 10.3997 8.14606 9.43637 8.14606H6.54528C5.75337 8.14606 5.09806 8.81646 5.09806 9.60086V12.3269C5.09806 13.1027 5.78016 13.5591 6.54528 13.7817C7.4615 14.0481 8.3401 14.0963 9.43637 13.7817C10.165 13.5729 10.8836 13.153 10.8836 12.3269V11.2358H7.9925V10.8721H12.3308C13.172 10.8721 13.4855 10.2917 13.778 9.42066C14.0802 8.52393 14.0674 7.66153 13.778 6.51113C13.5701 5.68285 13.1731 5.05969 12.3308 5.05969H11.2446ZM9.6185 11.9632C9.91857 11.9632 10.1616 12.2063 10.1616 12.5071C10.1616 12.8088 9.91857 13.0543 9.6185 13.0543C9.31957 13.0543 9.07537 12.8088 9.07537 12.5071C9.07537 12.2063 9.31957 11.9632 9.6185 11.9632Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.02348 6.71097C7.31803 6.71097 6.74614 7.28285 6.74614 7.98831C6.74614 8.69377 7.31803 9.26565 8.02348 9.26565C8.72894 9.26565 9.30083 8.69377 9.30083 7.98831C9.30083 7.28285 8.72894 6.71097 8.02348 6.71097Z" fill="currentColor"/><path d="M14.667 7.99987C14.667 6.99705 13.7384 6.11753 12.2598 5.53872C12.2796 5.40836 12.2974 5.27942 12.3101 5.15284C12.456 3.71191 12.1088 2.67192 11.333 2.22393C10.4651 1.72275 9.23913 2.08651 7.99953 3.0785C6.75993 2.08651 5.53397 1.72275 4.66602 2.22393C3.89027 2.67192 3.54308 3.71191 3.68892 5.15284C3.70162 5.27942 3.71903 5.40884 3.73926 5.53966C3.616 5.58672 3.4951 5.6366 3.3789 5.68883C2.05886 6.28224 1.33203 7.10388 1.33203 7.99987C1.33203 9.00268 2.26067 9.8822 3.73926 10.461C3.71903 10.5914 3.70162 10.7203 3.68892 10.8469C3.54308 12.2878 3.89027 13.3278 4.66602 13.7758C4.93273 13.9271 5.23495 14.0044 5.5415 13.9998C6.27632 13.9998 7.1344 13.613 7.99953 12.9212C8.86419 13.613 9.72274 13.9998 10.4585 13.9998C10.765 14.0043 11.0672 13.927 11.334 13.7758C12.1097 13.3278 12.4569 12.2878 12.3111 10.8469C12.2984 10.7203 12.2805 10.5914 12.2607 10.461C13.7393 9.88314 14.668 9.00221 14.668 7.99987M10.4529 2.63522C10.65 2.63046 10.8448 2.67821 11.0174 2.77357C11.556 3.08462 11.7978 3.92838 11.6802 5.08837C11.6722 5.16743 11.6628 5.24742 11.6515 5.32789C11.0367 5.14269 10.4072 5.0106 9.76978 4.93307C9.3834 4.41931 8.95373 3.9396 8.48549 3.49921C9.22078 2.93074 9.91138 2.63522 10.4529 2.63522ZM10.1998 9.27044C9.96183 9.68353 9.70275 10.0841 9.42354 10.4704C8.95027 10.5191 8.47482 10.5433 7.99906 10.5429C7.52346 10.5432 7.04816 10.519 6.57505 10.4704C6.29658 10.084 6.03828 9.68352 5.80118 9.27044C5.56326 8.8585 5.34704 8.4344 5.15339 7.99987C5.34704 7.56534 5.56326 7.14124 5.80118 6.72929C6.03791 6.31788 6.29541 5.91878 6.5727 5.53354C7.04667 5.48371 7.52294 5.45889 7.99953 5.45918C8.47513 5.4589 8.95043 5.48309 9.42354 5.53166C9.70177 5.91749 9.96022 6.31721 10.1979 6.72929C10.4356 7.14134 10.6518 7.56543 10.8457 7.99987C10.6518 8.4343 10.4356 8.8584 10.1979 9.27044M11.1693 8.79986C11.3186 9.20711 11.4412 9.62368 11.5363 10.0469C11.1237 10.1756 10.7032 10.2769 10.2774 10.3504C10.4392 10.1064 10.596 9.8524 10.7478 9.58856C10.8979 9.32786 11.0386 9.0648 11.1712 8.80174M7.10617 11.1495C7.39878 11.1674 7.69751 11.1777 8 11.1777C8.30249 11.1777 8.6031 11.1674 8.89618 11.1495C8.6183 11.4824 8.31893 11.7968 8 12.0907C7.68176 11.7969 7.38317 11.4825 7.10617 11.1495ZM5.72215 10.3495C5.29619 10.2763 4.87549 10.1753 4.46279 10.0469C4.55747 9.62435 4.67957 9.20842 4.82832 8.80174C4.9591 9.0648 5.09929 9.32786 5.25171 9.58856C5.40413 9.84926 5.56173 10.1062 5.72215 10.3504M4.82832 7.19752C4.6801 6.79236 4.55832 6.378 4.46373 5.95706C4.87541 5.82857 5.29498 5.72687 5.71979 5.6526C5.5589 5.89589 5.40131 6.14812 5.24936 6.41118C5.09741 6.67423 4.95863 6.934 4.82596 7.19752M8.89336 4.84978C8.60075 4.8319 8.30202 4.82155 7.99718 4.82155C7.69484 4.82155 7.3969 4.83096 7.10335 4.84978C7.38035 4.5168 7.67894 4.2024 7.99718 3.90861C8.31623 4.20232 8.6156 4.51673 8.89336 4.84978ZM10.7469 6.41118C10.5945 6.14702 10.4369 5.89291 10.2741 5.64883C10.701 5.72232 11.1227 5.82387 11.5363 5.95283C11.4414 6.37533 11.3193 6.79125 11.1707 7.19799C11.04 6.93494 10.8988 6.67141 10.7469 6.41118ZM4.32072 5.08884C4.20169 3.92932 4.44491 3.08509 4.98309 2.77404C5.15574 2.67883 5.35052 2.63109 5.54761 2.63569C6.08909 2.63569 6.77922 2.93121 7.51451 3.49968C7.04596 3.94039 6.61598 4.42041 6.22928 4.93449C5.59207 5.01238 4.96258 5.14398 4.34753 5.32789C4.33671 5.24742 4.32683 5.1679 4.3193 5.08884M3.63952 6.26812C3.71197 6.23675 3.78583 6.20538 3.8611 6.174C4.00908 6.79849 4.20973 7.4093 4.46091 7.99987C4.20925 8.59159 4.00844 9.20368 3.86063 9.8295C2.66196 9.33774 1.96712 8.65633 1.96712 7.99987C1.96712 7.37776 2.57869 6.7467 3.63952 6.26812ZM4.98309 13.2257C4.44491 12.9146 4.20169 12.0704 4.32072 10.9109C4.32824 10.8318 4.33812 10.7523 4.34894 10.6714C4.96376 10.8565 5.59331 10.9886 6.23069 11.0662C6.61719 11.5801 7.04685 12.0602 7.51498 12.501C6.4899 13.293 5.55326 13.5542 4.9845 13.2257M11.6798 10.9109C11.7974 12.0709 11.5556 12.9146 11.0169 13.2257C10.4486 13.5551 9.51151 13.293 8.4869 12.501C8.95488 12.0601 9.38438 11.5801 9.77072 11.0662C10.4081 10.9887 11.0377 10.8566 11.6525 10.6714C11.6638 10.7523 11.6732 10.8318 11.6812 10.9109M12.1413 9.82856C11.993 9.20311 11.7921 8.59135 11.5405 7.99987C11.7919 7.40806 11.9928 6.79599 12.1408 6.17024C13.3371 6.662 14.0338 7.3434 14.0338 7.99987C14.0338 8.65633 13.339 9.33774 12.1403 9.8295" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.9144 7.85322L13.411 7.54133C13.4068 7.49233 13.402 7.44344 13.3967 7.39456L13.8302 6.99094C13.8518 6.97085 13.868 6.94554 13.877 6.91743C13.8861 6.88932 13.8878 6.85935 13.882 6.83039C13.8764 6.80139 13.8633 6.77434 13.8442 6.75184C13.8251 6.72934 13.8004 6.71216 13.7727 6.70194L13.2188 6.49556C13.2049 6.44761 13.1904 6.4 13.1754 6.35222L13.5207 5.87289C13.5467 5.83677 13.5578 5.79199 13.5517 5.74788C13.5456 5.70376 13.5227 5.66371 13.4878 5.63606C13.4647 5.61772 13.4373 5.60554 13.4083 5.60067L12.8246 5.50572C12.8019 5.46176 12.7785 5.41819 12.7544 5.375L12.9998 4.83611C13.0121 4.80919 13.0174 4.77956 13.015 4.75005C13.0126 4.72053 13.0027 4.69211 12.9863 4.6675C12.9699 4.64288 12.9475 4.62287 12.9212 4.60939C12.8949 4.59592 12.8655 4.58943 12.836 4.59056L12.2432 4.61122C12.2126 4.57289 12.1813 4.53503 12.1496 4.49767L12.286 3.92094C12.2929 3.89211 12.2922 3.86201 12.2841 3.8335C12.2761 3.80499 12.2608 3.77902 12.2399 3.75806C12.2189 3.73711 12.193 3.72186 12.1644 3.71378C12.1359 3.7057 12.1058 3.70505 12.077 3.71189L11.5001 3.84833C11.4627 3.81659 11.4248 3.7854 11.3864 3.75478L11.4071 3.16194C11.4082 3.13242 11.4017 3.1031 11.3882 3.0768C11.3748 3.0505 11.3548 3.02809 11.3302 3.01172C11.3056 2.99528 11.2772 2.98539 11.2477 2.983C11.2182 2.9806 11.1885 2.98579 11.1616 2.99806L10.6238 3.24344C10.5803 3.21961 10.5367 3.196 10.4931 3.17317L10.3979 2.5895C10.3932 2.56038 10.3811 2.53297 10.3627 2.50988C10.3443 2.4868 10.3204 2.46882 10.2931 2.45767C10.2658 2.44633 10.2361 2.44216 10.2068 2.44557C10.1775 2.44897 10.1495 2.45983 10.1256 2.47711L9.64628 2.82228C9.59906 2.80728 9.55167 2.79283 9.50406 2.77906L9.29761 2.22517C9.28734 2.19747 9.27015 2.17288 9.24768 2.15372C9.2252 2.13456 9.19819 2.12148 9.16922 2.11572C9.14026 2.11005 9.11033 2.11183 9.08225 2.12089C9.05416 2.12996 9.02884 2.14602 9.00867 2.16756L8.605 2.601C8.55613 2.59553 8.50718 2.59075 8.45817 2.58667L8.14628 2.08211C8.13067 2.05694 8.10888 2.03618 8.08299 2.02181C8.05709 2.00744 8.02795 1.99993 7.99833 2C7.93778 2 7.8825 2.03111 7.85156 2.08211L7.53961 2.58661C7.49062 2.59071 7.44169 2.59551 7.39283 2.601L6.98917 2.16756C6.969 2.146 6.94369 2.12993 6.9156 2.12086C6.88751 2.11179 6.85757 2.11003 6.82861 2.11572C6.79962 2.12144 6.77259 2.13451 6.7501 2.15367C6.72761 2.17284 6.71042 2.19745 6.70017 2.22517L6.49378 2.77906C6.44617 2.79278 6.39878 2.80717 6.35156 2.82228L5.87222 2.47711C5.84832 2.4598 5.82036 2.44892 5.79104 2.44551C5.76172 2.44211 5.73202 2.44629 5.70478 2.45767C5.67758 2.46895 5.65369 2.48696 5.63536 2.51002C5.61703 2.53307 5.60486 2.5604 5.6 2.58944L5.50483 3.17311C5.46094 3.19589 5.41733 3.21933 5.37411 3.24339L4.83628 2.998C4.80937 2.98573 4.77978 2.98053 4.75031 2.98291C4.72083 2.98528 4.69245 2.99514 4.66786 3.01155C4.64326 3.02797 4.62326 3.0504 4.60977 3.0767C4.59627 3.10301 4.58971 3.13234 4.59072 3.16189L4.61139 3.75467C4.57306 3.78539 4.53511 3.81661 4.49761 3.84828L3.92078 3.71183C3.89195 3.70511 3.86189 3.70582 3.83342 3.71391C3.80494 3.72199 3.77899 3.73719 3.758 3.75806C3.73704 3.77898 3.72178 3.80493 3.71368 3.83342C3.70558 3.86192 3.7049 3.89201 3.71172 3.92083L3.84706 4.49767C3.81541 4.53506 3.7843 4.5729 3.75372 4.61117L3.16083 4.5905C3.13133 4.58956 3.10207 4.59612 3.07579 4.60958C3.04952 4.62304 3.02709 4.64295 3.01061 4.66744C2.99415 4.69205 2.98425 4.72046 2.98186 4.74997C2.97947 4.77948 2.98466 4.80912 2.99695 4.83606L3.24239 5.37494C3.2185 5.41822 3.19489 5.46178 3.17206 5.50567L2.58833 5.60067C2.55922 5.60537 2.53181 5.61748 2.50872 5.63582C2.48564 5.65417 2.46765 5.67815 2.4565 5.70544C2.44522 5.73269 2.44109 5.76237 2.44449 5.79166C2.44789 5.82096 2.45872 5.8489 2.47595 5.87283L2.82117 6.35217C2.806 6.39972 2.79156 6.44751 2.77783 6.4955L2.22395 6.70189C2.19628 6.7122 2.17171 6.72942 2.15257 6.75191C2.13343 6.77439 2.12036 6.8014 2.1146 6.83035C2.10884 6.85931 2.11058 6.88926 2.11965 6.91736C2.12873 6.94546 2.14483 6.97077 2.16645 6.99089L2.59995 7.3945C2.5945 7.44333 2.58972 7.49228 2.58561 7.54128L2.08217 7.85317C2.05697 7.86876 2.03619 7.89055 2.0218 7.91646C2.00742 7.94237 1.99991 7.97153 2 8.00117C2 8.06183 2.03111 8.11694 2.08211 8.14794L2.58556 8.45983C2.58967 8.50883 2.59445 8.55772 2.59989 8.60661L2.16639 9.01022C2.14479 9.03034 2.12869 9.05564 2.11962 9.08373C2.11055 9.11182 2.10881 9.14176 2.11457 9.17071C2.12032 9.19966 2.13338 9.22665 2.15251 9.24914C2.17163 9.27162 2.19618 9.28884 2.22383 9.29917L2.77772 9.50561C2.79158 9.55356 2.80603 9.60135 2.82106 9.64894L2.47595 10.1282C2.44979 10.1644 2.43865 10.2093 2.44487 10.2535C2.45108 10.2978 2.47416 10.3379 2.50928 10.3654C2.53256 10.3838 2.56017 10.3958 2.58945 10.4004L3.17317 10.4954C3.19578 10.5394 3.21928 10.5829 3.24345 10.6261L2.99806 11.1639C2.9858 11.1908 2.98062 11.2204 2.983 11.2499C2.98538 11.2793 2.99524 11.3077 3.01165 11.3323C3.02806 11.3569 3.05048 11.3769 3.07678 11.3904C3.10308 11.4039 3.1324 11.4104 3.16195 11.4094L3.75361 11.3887C3.78433 11.427 3.81556 11.4649 3.84722 11.5024L3.71195 12.0792C3.70513 12.1079 3.7058 12.1378 3.71388 12.1661C3.72197 12.1944 3.7372 12.2202 3.75811 12.2409C3.77904 12.2619 3.805 12.2771 3.83351 12.2852C3.86202 12.2933 3.89213 12.2939 3.92095 12.287L4.49783 12.1517C4.53524 12.1834 4.57315 12.2145 4.61156 12.245L4.59095 12.8378C4.58985 12.8674 4.59635 12.8967 4.60983 12.923C4.6233 12.9493 4.64329 12.9717 4.66789 12.9881C4.69251 13.0045 4.72093 13.0143 4.75043 13.0167C4.77993 13.019 4.80954 13.0138 4.83645 13.0014L5.37428 12.7561C5.41756 12.7801 5.46111 12.8036 5.505 12.8264L5.60017 13.41C5.60493 13.4392 5.61706 13.4668 5.63539 13.4901C5.65373 13.5133 5.67768 13.5316 5.705 13.5431C5.73225 13.5544 5.76194 13.5586 5.79125 13.5552C5.82056 13.5518 5.84851 13.5409 5.87245 13.5237L6.35178 13.1785C6.39917 13.1936 6.44678 13.2082 6.49511 13.222L6.70156 13.7758C6.71186 13.8035 6.72907 13.8281 6.75155 13.8472C6.77404 13.8663 6.80104 13.8794 6.83 13.8851C6.85896 13.8909 6.88892 13.8892 6.91703 13.8801C6.94514 13.871 6.97045 13.8549 6.99056 13.8333L7.39422 13.3998C7.44295 13.4054 7.49206 13.4102 7.541 13.4145L7.85294 13.9179C7.86843 13.9429 7.89003 13.9636 7.91571 13.9779C7.94139 13.9923 7.9703 13.9999 7.99972 14C8.0293 13.9999 8.05836 13.9923 8.08422 13.9779C8.11008 13.9636 8.1319 13.9429 8.14767 13.9179L8.45956 13.4145C8.50867 13.4102 8.55761 13.4054 8.60639 13.3998L9.01 13.8333C9.03009 13.8549 9.0554 13.8711 9.08351 13.8802C9.11162 13.8892 9.1416 13.8909 9.17056 13.8851C9.19953 13.8794 9.22655 13.8664 9.24904 13.8472C9.27153 13.8281 9.28873 13.8035 9.299 13.7758L9.50545 13.222C9.55339 13.2082 9.60094 13.1936 9.64878 13.1785L10.1282 13.5237C10.1522 13.5409 10.1802 13.5517 10.2096 13.555C10.239 13.5584 10.2687 13.5542 10.296 13.5428C10.3232 13.5314 10.3472 13.5132 10.3654 13.49C10.3837 13.4668 10.3957 13.4392 10.4004 13.4101L10.4956 12.8264C10.5396 12.8036 10.5832 12.7798 10.6263 12.7561L11.1641 13.0014C11.191 13.0137 11.2206 13.019 11.2502 13.0166C11.2797 13.0143 11.3081 13.0045 11.3327 12.9881C11.3573 12.9716 11.3772 12.9492 11.3907 12.9229C11.4041 12.8966 11.4107 12.8673 11.4097 12.8378L11.389 12.245C11.4274 12.2145 11.4653 12.1834 11.5027 12.1517L12.0795 12.287C12.1082 12.2938 12.1382 12.2932 12.1666 12.2852C12.195 12.2771 12.2209 12.262 12.2418 12.2412C12.2627 12.2204 12.278 12.1946 12.2862 12.1663C12.2944 12.1379 12.2952 12.108 12.2886 12.0792L12.1532 11.5024C12.1849 11.465 12.216 11.4271 12.2466 11.3887L12.8394 11.4094C12.869 11.4106 12.8983 11.4041 12.9246 11.3906C12.9509 11.3771 12.9733 11.3571 12.9897 11.3325C13.0062 11.3079 13.0161 11.2795 13.0184 11.25C13.0208 11.2204 13.0156 11.1908 13.0032 11.1639L12.7578 10.6261C12.7817 10.5828 12.8052 10.5393 12.828 10.4954L13.4117 10.4004C13.4409 10.3958 13.4683 10.3838 13.4914 10.3654C13.5145 10.347 13.5325 10.323 13.5436 10.2957C13.5549 10.2684 13.559 10.2387 13.5556 10.2094C13.5522 10.1801 13.5414 10.1521 13.5241 10.1282L13.1789 9.64894C13.194 9.60133 13.2084 9.55356 13.2223 9.50561L13.7762 9.29917C13.8038 9.28889 13.8284 9.27169 13.8475 9.24921C13.8667 9.22674 13.8797 9.19973 13.8854 9.17078C13.8913 9.14182 13.8896 9.11185 13.8805 9.08374C13.8714 9.05562 13.8553 9.03031 13.8336 9.01022L13.4001 8.60661C13.4054 8.55772 13.4102 8.50878 13.4144 8.45983L13.9179 8.14794C13.9429 8.1325 13.9636 8.11091 13.978 8.08522C13.9924 8.05953 13.9999 8.0306 14 8.00117C13.9999 7.97159 13.9924 7.94252 13.978 7.91666C13.9637 7.89079 13.943 7.86897 13.918 7.85322H13.9144ZM10.5429 12.0386C10.3503 11.9971 10.2287 11.807 10.27 11.6143C10.2798 11.5685 10.2984 11.5251 10.325 11.4865C10.3516 11.448 10.3855 11.415 10.4248 11.3896C10.4641 11.3641 10.508 11.3467 10.5541 11.3382C10.6001 11.3297 10.6474 11.3305 10.6932 11.3403C10.8858 11.3814 11.0085 11.5719 10.9672 11.7646C10.9575 11.8103 10.9388 11.8538 10.9122 11.8923C10.8856 11.9309 10.8517 11.9638 10.8124 11.9893C10.7731 12.0147 10.7292 12.0322 10.6832 12.0407C10.6371 12.0491 10.5898 12.0484 10.5441 12.0386H10.5429ZM10.3721 10.8804C10.1966 10.8428 10.0234 10.9546 9.98672 11.1304L9.80783 11.9652C9.25622 12.2152 8.63811 12.3551 7.99595 12.3551C7.33539 12.3551 6.7115 12.2094 6.14961 11.948L5.97072 11.1132C5.93311 10.9378 5.76083 10.8254 5.58539 10.8633L4.848 11.0215C4.71132 10.8802 4.58413 10.7301 4.46728 10.572H8.05672C8.09733 10.572 8.12439 10.5647 8.12439 10.5277V9.25495C8.12439 9.218 8.09733 9.21067 8.05672 9.21067H7.00739V8.40683H8.14156C8.24511 8.40683 8.69544 8.43644 8.83883 9.01228C8.88389 9.18889 8.98333 9.7645 9.05095 9.94911C9.11839 10.1555 9.39272 10.5683 9.68511 10.5683H11.4741C11.4944 10.5683 11.5161 10.5661 11.5389 10.5619C11.4149 10.7302 11.2792 10.8896 11.1329 11.0389L10.3783 10.8772L10.3721 10.8804ZM5.4065 12.0214C5.36072 12.0313 5.31343 12.032 5.26736 12.0235C5.2213 12.0151 5.17735 11.9977 5.13803 11.9722C5.09872 11.9467 5.06482 11.9138 5.03828 11.8752C5.01173 11.8366 4.99306 11.7931 4.98333 11.7473C4.94222 11.5547 5.06456 11.3643 5.25745 11.3231C5.3499 11.3033 5.44643 11.3211 5.52579 11.3724C5.60514 11.4238 5.66084 11.5047 5.68061 11.5971C5.72172 11.7898 5.59928 11.9801 5.4065 12.0214ZM4.04183 6.50583C4.08014 6.59238 4.08259 6.69058 4.04863 6.77893C4.01467 6.86728 3.94708 6.93856 3.86067 6.97717C3.68061 7.05706 3.47072 6.97578 3.39045 6.796C3.31017 6.61617 3.39183 6.40494 3.57167 6.32472C3.65804 6.28644 3.75607 6.28401 3.84423 6.31797C3.93239 6.35193 4.00347 6.4195 4.04183 6.50583ZM3.62333 7.49667L4.39167 7.155C4.55567 7.08217 4.63022 6.89006 4.55678 6.72611L4.39856 6.36833H5.02V9.16622H3.77C3.65872 8.77458 3.60237 8.36937 3.60256 7.96222C3.60256 7.80283 3.61117 7.64572 3.62767 7.49094L3.62322 7.49667H3.62333ZM6.99483 7.22489V6.39933H8.47422C8.55067 6.39933 9.01433 6.48767 9.01433 6.83389C9.01433 7.12167 8.65883 7.22489 8.36639 7.22489H6.99028H6.99483ZM12.3732 7.96794C12.3732 8.07756 12.3692 8.18583 12.3612 8.29361H11.9105C11.8654 8.29361 11.8473 8.32317 11.8473 8.36733V8.57372C11.8473 9.05994 11.5732 9.16656 11.3324 9.19295C11.1031 9.21872 10.8496 9.09706 10.8187 8.95672C10.6833 8.1965 10.4586 8.03478 10.1031 7.75272C10.5446 7.47294 11.0033 7.059 11.0033 6.50283C11.0033 5.90544 10.5939 5.52933 10.3152 5.34467C9.92306 5.08667 9.48956 5.03511 9.37256 5.03511H4.71661C5.3485 4.33106 6.20744 3.83106 7.17072 3.64761L7.72 4.22322C7.74948 4.25415 7.78477 4.27896 7.82385 4.29624C7.86293 4.31351 7.90504 4.3229 7.94776 4.32388C7.99047 4.32486 8.03296 4.31741 8.0728 4.30195C8.11263 4.28649 8.14902 4.26332 8.17989 4.23378L8.79456 3.64667C10.0789 3.88633 11.1684 4.68672 11.7991 5.791L11.3782 6.74044C11.3057 6.90439 11.3797 7.09706 11.5434 7.16933L12.353 7.52933C12.3672 7.67417 12.3743 7.81956 12.3743 7.96506L12.3732 7.96794H12.3732ZM7.71733 3.16333C7.75111 3.13096 7.79095 3.10558 7.83456 3.08864C7.87817 3.07169 7.92469 3.06353 7.97147 3.06461C8.01824 3.06569 8.06434 3.07599 8.10712 3.09492C8.1499 3.11386 8.18853 3.14105 8.22078 3.17494C8.28593 3.24351 8.32127 3.3351 8.31905 3.42967C8.31684 3.52423 8.27724 3.61406 8.20895 3.6795C8.17517 3.71188 8.13533 3.73727 8.09172 3.75422C8.04811 3.77116 8.00158 3.77933 7.9548 3.77825C7.90802 3.77716 7.86192 3.76685 7.81914 3.7479C7.77636 3.72896 7.73774 3.70174 7.7055 3.66783C7.64031 3.59927 7.60496 3.50766 7.60717 3.41308C7.60939 3.3185 7.649 3.22866 7.71733 3.16322V3.16333ZM11.8916 6.52311C11.9105 6.4803 11.9377 6.44163 11.9716 6.40934C12.0055 6.37705 12.0454 6.35177 12.0891 6.33495C12.1328 6.31812 12.1793 6.31008 12.2261 6.31129C12.2729 6.3125 12.319 6.32294 12.3618 6.342C12.4046 6.36104 12.4433 6.38834 12.4756 6.42232C12.5079 6.45631 12.5331 6.49633 12.55 6.54008C12.5668 6.58384 12.5748 6.63049 12.5736 6.67735C12.5724 6.72422 12.562 6.77039 12.5429 6.81322C12.524 6.85604 12.4969 6.89471 12.463 6.92701C12.4291 6.9593 12.3892 6.98459 12.3455 7.00142C12.3018 7.01825 12.2552 7.02629 12.2084 7.02509C12.1616 7.02388 12.1155 7.01345 12.0728 6.99439C12.0299 6.97535 11.9913 6.94805 11.959 6.91406C11.9267 6.88007 11.9014 6.84005 11.8846 6.79628C11.8677 6.75252 11.8597 6.70587 11.8609 6.659C11.8621 6.61212 11.8726 6.56595 11.8916 6.52311Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.33496 3.63143V2.60352" stroke="currentColor" stroke-width="1.64055" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.33496 12.3687V13.3966" stroke="currentColor" stroke-width="1.64055" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.43018 10.8315C7.99996 12.6034 10.5697 11.6262 10.5697 10.0112C10.5697 7.22859 5.43018 8.20586 5.43018 5.42394C5.43018 3.80821 7.99996 2.83077 10.0558 4.21157" stroke="currentColor" stroke-width="1.64055" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.79 18.5102C9.48333 18.6969 9.15333 18.7869 8.8 18.7802C8.45333 18.7736 8.13 18.6669 7.83 18.4602L4.35 16.0802C4.07666 15.8936 3.86333 15.6569 3.71 15.3702C3.55666 15.0836 3.48 14.7802 3.48 14.4602V6.53024C3.48 6.20358 3.55333 5.90691 3.7 5.64024C3.85333 5.37358 4.07333 5.15358 4.36 4.98024L10.08 1.46024C10.4067 1.26024 10.76 1.16358 11.14 1.17024C11.52 1.17024 11.87 1.27691 12.19 1.49024L15.71 3.89024C15.97 4.07691 16.17 4.30024 16.31 4.56024C16.45 4.81358 16.52 5.09358 16.52 5.40024V13.2902C16.52 13.6236 16.4367 13.9402 16.27 14.2402C16.1033 14.5402 15.8733 14.7769 15.58 14.9502L9.79 18.5102ZM14.38 4.66024L11.42 2.64024C11.3267 2.57358 11.2233 2.54024 11.11 2.54024C11.0033 2.53358 10.9033 2.56024 10.81 2.62024L5.5 5.89024L8.77 8.11024L14.38 4.66024ZM8.14 9.33025L4.86 7.11024V10.2102L8.14 12.4502V9.33025ZM8.14 14.0402L4.86 11.8002V14.4602C4.86 14.5602 4.88 14.6536 4.92 14.7402C4.96 14.8202 5.02333 14.8902 5.11 14.9502L8.14 17.0202V14.0402ZM15.14 8.89024V5.81024L9.52 9.26025V12.3502L15.14 8.89024ZM14.86 13.7902C14.9533 13.7302 15.0233 13.6602 15.07 13.5802C15.1167 13.4936 15.14 13.3969 15.14 13.2902V10.4802L9.52 13.9402V17.0702L14.86 13.7902Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 2.59375C13.2666 2.59375 13.5376 2.66842 13.8125 2.81836C14.0875 2.96836 14.3956 3.21061 14.7373 3.54395L19.6875 8.44336C20.2292 8.98503 20.5 9.53542 20.5 10.0938V17.5439C20.5 18.2689 20.3212 18.94 19.9629 19.5566C19.6046 20.1649 19.1165 20.6476 18.5 21.0059C17.8917 21.3642 17.225 21.5439 16.5 21.5439H7.5C6.775 21.5439 6.10397 21.3642 5.4873 21.0059C4.87916 20.6476 4.39537 20.1648 4.03711 19.5566C3.67881 18.94 3.50003 18.2689 3.5 17.5439V6.59375C3.5 5.86882 3.67884 5.20204 4.03711 4.59375C4.39544 3.97708 4.87897 3.48919 5.4873 3.13086C6.10396 2.77254 6.77501 2.59375 7.5 2.59375H13Z" fill="url(#paint0_linear_4603_166881)"/><path d="M14.6719 8.59375H9.32812C8.31848 8.59375 7.5 9.41223 7.5 10.4219V15.7656C7.5 16.7753 8.31848 17.5938 9.32812 17.5938H14.6719C15.6815 17.5938 16.5 16.7753 16.5 15.7656V10.4219C16.5 9.41223 15.6815 8.59375 14.6719 8.59375Z" fill="url(#paint1_radial_4603_166881)"/><path d="M14.6719 8.59375H9.32812C8.31848 8.59375 7.5 9.41223 7.5 10.4219V15.7656C7.5 16.7753 8.31848 17.5938 9.32812 17.5938H14.6719C15.6815 17.5938 16.5 16.7753 16.5 15.7656V10.4219C16.5 9.41223 15.6815 8.59375 14.6719 8.59375Z" fill="url(#paint2_radial_4603_166881)" fill-opacity="0.3"/><path d="M14.3646 15.6643H12.9773L12.1062 14.0254C12.0752 13.968 12.0513 13.9225 12.0346 13.8891C12.0202 13.8532 12.0047 13.8126 11.9879 13.7672H11.9736C11.9521 13.8245 11.9318 13.8712 11.9127 13.907C11.8935 13.9429 11.8708 13.9871 11.8446 14.0397L10.9412 15.6643H9.63281L11.2029 13.0893L9.74035 10.5215H11.1097L11.884 11.9847C11.915 12.0445 11.9414 12.0971 11.9628 12.1425C11.9868 12.1855 12.0107 12.2369 12.0346 12.2967H12.0489C12.0823 12.2274 12.1086 12.1724 12.1278 12.1318C12.1493 12.0911 12.1779 12.0373 12.2138 11.9704L13.0167 10.5215H14.3216L12.8375 13.0499L14.3646 15.6643Z" fill="white"/><path d="M13 2.59375C13.2667 2.59375 13.5375 2.66875 13.8125 2.81875C14.0875 2.96875 14.3958 3.21042 14.7375 3.54375L19.6875 8.44375C20.2292 8.98542 20.5 9.53542 20.5 10.0938H15.7125C14.8792 10.0938 14.2167 9.85208 13.725 9.36875C13.2417 8.87708 13 8.21458 13 7.38125V2.59375Z" fill="url(#paint3_linear_4603_166881)"/><defs><linearGradient id="paint0_linear_4603_166881" x1="4.5" y1="20.5938" x2="16" y2="7.09375" gradientUnits="userSpaceOnUse"><stop offset="0.177885" stop-color="#4AA647"/><stop offset="1" stop-color="#13551B"/></linearGradient><radialGradient id="paint1_radial_4603_166881" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.5 8.59375) rotate(45) scale(12.7279 36.2329)"><stop stop-color="#20A85E"/><stop offset="0.94375" stop-color="#09442A"/></radialGradient><radialGradient id="paint2_radial_4603_166881" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12 13.9937) rotate(90) scale(6.3 7.25625)"><stop offset="0.580357" stop-color="#33A662" stop-opacity="0"/><stop offset="0.973806" stop-color="#98F0B0"/></radialGradient><linearGradient id="paint3_linear_4603_166881" x1="16.5" y1="6.09375" x2="13.5" y2="9.59375" gradientUnits="userSpaceOnUse"><stop stop-color="#B5E480"/><stop offset="0.850962" stop-color="#5FC34C"/></linearGradient></defs></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.3516 10.002C17.3516 5.94266 14.0612 2.65234 10.002 2.65234C5.94266 2.65234 2.65234 5.94266 2.65234 10.002C2.65234 14.0612 5.94266 17.3516 10.002 17.3516C14.0612 17.3516 17.3516 14.0612 17.3516 10.002ZM13.2676 7.05762C13.5214 6.80378 13.9337 6.80378 14.1875 7.05762C14.4411 7.31141 14.4411 7.72276 14.1875 7.97656L9.2207 12.9424C9.09885 13.0642 8.93404 13.1328 8.76172 13.1328C8.58933 13.1328 8.42366 13.0643 8.30176 12.9424L5.81934 10.46C5.5655 10.2061 5.5655 9.79486 5.81934 9.54102C6.07318 9.28719 6.48444 9.28718 6.73828 9.54102L8.76074 11.5635L13.2676 7.05762ZM18.6523 10.002C18.6523 14.7792 14.7792 18.6523 10.002 18.6523C5.22469 18.6523 1.35156 14.7792 1.35156 10.002C1.35156 5.22469 5.22469 1.35156 10.002 1.35156C14.7792 1.35156 18.6523 5.22469 18.6523 10.002Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.19629 7.86231C6.42357 7.63534 6.7752 7.60692 7.0332 7.77734L7.1377 7.86231L8.80371 9.5293C9.06329 9.78889 9.06307 10.21 8.80371 10.4697L7.1377 12.1367C6.878 12.3964 6.45599 12.3964 6.19629 12.1367C5.93686 11.8771 5.93697 11.456 6.19629 11.1963L7.39258 9.99902L6.19629 8.80371L6.11133 8.69922C5.94087 8.4411 5.96904 8.08955 6.19629 7.86231Z" fill="currentColor"/><path d="M13.4668 11.0156C13.7699 11.0776 13.998 11.3456 13.998 11.667C13.9979 11.9883 13.7698 12.2564 13.4668 12.3184L13.333 12.332H10.833C10.466 12.3319 10.1682 12.034 10.168 11.667C10.168 11.2998 10.4659 11.0021 10.833 11.002H13.333L13.4668 11.0156Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.6602 2.66504C13.3492 2.66504 13.9062 2.66439 14.3564 2.70117C14.8142 2.73859 15.2201 2.81796 15.5967 3.00977C16.1922 3.31321 16.677 3.79805 16.9805 4.39356C17.1722 4.77014 17.2517 5.17604 17.2891 5.63379C17.3258 6.08402 17.3252 6.64102 17.3252 7.33008V12.6602C17.3252 13.3492 17.3258 13.9062 17.2891 14.3564C17.2516 14.8142 17.1723 15.2201 16.9805 15.5967C16.677 16.1922 16.1922 16.677 15.5967 16.9805C15.2201 17.1723 14.8142 17.2516 14.3564 17.2891C13.9062 17.3258 13.3492 17.3252 12.6602 17.3252H7.33008C6.64102 17.3252 6.08402 17.3258 5.63379 17.2891C5.17604 17.2517 4.77014 17.1722 4.39356 16.9805C3.79805 16.677 3.31321 16.1922 3.00977 15.5967C2.81796 15.2201 2.73859 14.8142 2.70117 14.3564C2.66439 13.9062 2.66504 13.3492 2.66504 12.6602V7.33008C2.66504 6.64101 2.66439 6.08402 2.70117 5.63379C2.73858 5.17601 2.81797 4.77016 3.00977 4.39356C3.31321 3.79802 3.79802 3.31321 4.39356 3.00977C4.77016 2.81797 5.17601 2.73858 5.63379 2.70117C6.08402 2.66439 6.64101 2.66504 7.33008 2.66504H12.6602ZM7.33008 3.99512C6.61907 3.99512 6.1257 3.99601 5.74219 4.02734C5.3665 4.05804 5.15508 4.11481 4.99707 4.19531C4.65183 4.37124 4.37124 4.65183 4.19531 4.99707C4.11481 5.15508 4.05805 5.3665 4.02734 5.74219C3.99601 6.1257 3.99512 6.61908 3.99512 7.33008V12.6602C3.99512 13.3711 3.99601 13.8646 4.02734 14.248C4.05805 14.6237 4.11481 14.8352 4.19531 14.9932C4.37124 15.3384 4.65186 15.619 4.99707 15.7949C5.15507 15.8754 5.36654 15.9322 5.74219 15.9629C6.1257 15.9942 6.61908 15.9951 7.33008 15.9951H12.6602C13.3711 15.9951 13.8646 15.9942 14.248 15.9629C14.6237 15.9322 14.8352 15.8754 14.9932 15.7949C15.3384 15.619 15.619 15.3384 15.7949 14.9932C15.8754 14.8352 15.9322 14.6237 15.9629 14.248C15.9942 13.8646 15.9951 13.3711 15.9951 12.6602V7.33008C15.9951 6.61908 15.9942 6.1257 15.9629 5.74219C15.9322 5.36654 15.8754 5.15507 15.7949 4.99707C15.619 4.65186 15.3384 4.37124 14.9932 4.19531C14.8352 4.11481 14.6237 4.05805 14.248 4.02734C13.8646 3.99601 13.3711 3.99512 12.6602 3.99512H7.33008Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.99944 7.24939C11.5169 7.2495 12.7473 8.47995 12.7475 9.99744C12.7475 11.5151 11.517 12.7454 9.99944 12.7455C8.48176 12.7455 7.2514 11.5151 7.2514 9.99744C7.25155 8.47988 8.48186 7.24939 9.99944 7.24939ZM9.99944 8.57947C9.2164 8.57947 8.58163 9.21442 8.58148 9.99744C8.58148 10.7806 9.2163 11.4154 9.99944 11.4154C10.7825 11.4153 11.4174 10.7805 11.4174 9.99744C11.4173 9.21449 10.7824 8.57958 9.99944 8.57947Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.6391 1.67517C11.2939 1.67532 11.8991 2.02577 12.226 2.59314L13.2485 4.36755H15.2963C15.9505 4.36758 16.555 4.71709 16.8823 5.28357L17.5219 6.39001C17.8489 6.95668 17.8481 7.65542 17.5209 8.22205L16.4975 9.99451L17.5239 11.7689C17.8519 12.3357 17.8521 13.0347 17.5248 13.6019L16.8862 14.7084C16.559 15.2747 15.9543 15.6243 15.3002 15.6244H13.2514L12.2299 17.3988C11.9029 17.9663 11.297 18.3168 10.642 18.3168L9.3637 18.3158C8.71064 18.3155 8.10718 17.9678 7.77972 17.4027L6.74847 15.6234L4.69964 15.6244C4.04558 15.6242 3.44087 15.2747 3.1137 14.7084L2.47503 13.6019C2.14791 13.0349 2.14836 12.3366 2.47601 11.7699L3.50237 9.99548L2.47894 8.22205C2.15175 7.65533 2.15174 6.95673 2.47894 6.39001L3.11761 5.28259C3.44458 4.71663 4.04894 4.36813 4.70257 4.36755L6.75042 4.36658L7.77581 2.59119C8.10301 2.02476 8.7076 1.67527 9.36175 1.67517H10.6391ZM9.36273 3.00623C9.1835 3.00623 9.01679 3.10199 8.92718 3.2572L7.82659 5.16345C7.63652 5.49253 7.28473 5.69529 6.90472 5.69568L4.70355 5.69763C4.52451 5.69782 4.3585 5.79355 4.26898 5.94861L3.6303 7.05505C3.54091 7.2102 3.54077 7.40192 3.6303 7.55701L4.73089 9.46326C4.92108 9.7929 4.92135 10.1992 4.73089 10.5287L3.62737 12.4359C3.5378 12.591 3.53792 12.7817 3.62737 12.9369L4.26605 14.0433C4.35567 14.1982 4.52067 14.2932 4.69964 14.2933L6.90276 14.2943C7.28242 14.2946 7.63335 14.497 7.82366 14.8256L8.93011 16.7357C9.01984 16.8905 9.18578 16.9857 9.36468 16.9857H10.642C10.8213 16.9857 10.987 16.89 11.0766 16.7347L12.1752 14.8275C12.3653 14.4975 12.7182 14.2943 13.0991 14.2943H15.3002C15.4794 14.2942 15.6452 14.1985 15.7348 14.0433L16.3725 12.9379C16.4621 12.7826 16.4621 12.5911 16.3725 12.4359L15.27 10.5287C15.1032 10.2404 15.0808 9.89331 15.2055 9.59021L15.269 9.46326L16.3696 7.55701C16.4591 7.40189 16.459 7.21022 16.3696 7.05505L15.7309 5.94861C15.6412 5.79363 15.4754 5.69863 15.2963 5.69861L13.0951 5.69763L12.9535 5.68884C12.6751 5.65158 12.4217 5.50519 12.2504 5.28259L12.1723 5.16443L11.0737 3.2572C10.9841 3.10175 10.8175 3.00525 10.6381 3.00525L9.36273 3.00623Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.77431 2H11.2257C11.5771 1.99999 11.8803 1.99998 12.13 2.02038C12.3936 2.04192 12.6557 2.08946 12.908 2.21799C13.2843 2.40974 13.5903 2.7157 13.782 3.09202C13.9105 3.34427 13.9581 3.60642 13.9796 3.86998C14 4.11969 14 4.42287 14 4.77429V11.2257C14 11.5771 14 11.8803 13.9796 12.13C13.9581 12.3936 13.9105 12.6557 13.782 12.908C13.5903 13.2843 13.2843 13.5903 12.908 13.782C12.6557 13.9105 12.3936 13.9581 12.13 13.9796C11.8803 14 11.5771 14 11.2257 14H4.77429C4.42287 14 4.11969 14 3.86998 13.9796C3.60642 13.9581 3.34427 13.9105 3.09202 13.782C2.7157 13.5903 2.40974 13.2843 2.21799 12.908C2.08946 12.6557 2.04192 12.3936 2.02038 12.13C1.99998 11.8803 1.99999 11.5771 2 11.2257V4.77428C1.99999 4.42287 1.99998 4.11969 2.02038 3.86998C2.04192 3.60642 2.08946 3.34427 2.21799 3.09202C2.40974 2.7157 2.7157 2.40974 3.09202 2.21799C3.34427 2.08946 3.60642 2.04192 3.86998 2.02038C4.11969 1.99998 4.4229 1.99999 4.77431 2ZM7.68989 8.55H9.00389V7.692H5.36789V8.55H6.68789V12H7.68989V8.55ZM9.66459 10.578L9.04659 11.268C9.40059 11.76 10.1806 12.066 10.8946 12.066C11.8486 12.066 12.6346 11.544 12.6346 10.644C12.6346 9.70036 11.8023 9.52362 11.126 9.37999L11.1166 9.378L11.0955 9.37343C10.5571 9.25643 10.2706 9.19417 10.2706 8.898C10.2706 8.622 10.5346 8.454 10.9126 8.454C11.3686 8.454 11.7226 8.67 11.9866 9.006L12.5926 8.346C12.2746 7.944 11.6866 7.626 10.9426 7.626C10.0246 7.626 9.2926 8.154 9.2926 9C9.2926 9.864 9.9886 10.074 10.6246 10.212C10.679 10.224 10.7314 10.2353 10.7817 10.2462C11.3369 10.366 11.6446 10.4324 11.6446 10.746C11.6446 11.07 11.3506 11.238 10.9366 11.238C10.4746 11.238 10.0006 11.01 9.66459 10.578Z" fill="currentColor"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.6345 5.83331C16.6345 4.81987 15.813 3.99835 14.7996 3.99835C13.7863 3.99855 12.9646 4.81999 12.9646 5.83331C12.9646 6.84663 13.7863 7.66808 14.7996 7.66827C15.813 7.66827 16.6345 6.84676 16.6345 5.83331ZM3.36499 14.1663C3.36499 15.1798 4.18651 16.0013 5.19995 16.0013C6.21339 16.0013 7.03491 15.1798 7.03491 14.1663C7.03471 13.153 6.21327 12.3314 5.19995 12.3314C4.18663 12.3314 3.36519 13.153 3.36499 14.1663ZM17.9646 5.83331C17.9646 7.58129 16.5475 8.99835 14.7996 8.99835C13.2785 8.99818 12.0078 7.92497 11.7039 6.49445L11.6667 6.49835H11.3347C10.5362 6.49835 9.96426 6.49872 9.54565 6.52081C9.21098 6.53848 9.04089 6.56873 8.96069 6.59113L8.90796 6.60968C8.41777 6.86301 8.2248 7.46527 8.47632 7.95636L8.50757 8.00323C8.55968 8.068 8.68066 8.19148 8.94312 8.4007C9.27097 8.66203 9.73648 8.99501 10.3865 9.45929L11.239 10.0716C11.489 10.2539 11.7044 10.4155 11.8855 10.5599C12.2255 10.8309 12.5425 11.1144 12.7078 11.4368L12.8054 11.6536C13.206 12.6785 12.8306 13.8502 11.9089 14.4515L11.7029 14.5716C11.381 14.7379 10.9584 14.785 10.5242 14.8079C10.0619 14.8323 9.44766 14.8314 8.66479 14.8314H8.33276C8.31992 14.8314 8.30734 14.8282 8.29468 14.8275C7.9907 16.2581 6.72124 17.3314 5.19995 17.3314C3.45197 17.3314 2.03491 15.9143 2.03491 14.1663C2.03511 12.4185 3.45209 11.0013 5.19995 11.0013C6.72066 11.0013 7.99008 12.0743 8.29468 13.5042C8.30731 13.5035 8.31995 13.5013 8.33276 13.5013H8.66479C9.46362 13.5013 10.0362 13.5019 10.4548 13.4798C10.9013 13.4562 11.0544 13.4096 11.0925 13.39L11.1804 13.3382C11.5766 13.0799 11.7385 12.5765 11.5662 12.136L11.5242 12.0433C11.5046 12.0051 11.4062 11.8788 11.0564 11.5999C10.8925 11.4693 10.6943 11.3206 10.4558 11.1468L9.61304 10.5413C8.97593 10.0862 8.47599 9.72927 8.11401 9.44073C7.81659 9.20364 7.53702 8.95681 7.36108 8.68292L7.29272 8.56378C6.70695 7.42066 7.15568 6.0189 8.29663 5.42902L8.42163 5.3714C8.7241 5.25059 9.09524 5.21275 9.47534 5.19269C9.93756 5.16829 10.5518 5.16827 11.3347 5.16827H11.6667L11.7039 5.1712C12.0082 3.74114 13.2788 2.66845 14.7996 2.66827C16.5475 2.66827 17.9646 4.08533 17.9646 5.83331Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>CodexNotes</title>
|
|
7
|
+
<link rel="icon" href="data:,">
|
|
8
|
+
<link rel="stylesheet" href="/styles.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<main id="app" aria-live="polite"></main>
|
|
12
|
+
<div id="toast" class="toast" role="status" aria-live="polite" aria-atomic="true"></div>
|
|
13
|
+
<script type="module" src="/app.js"></script>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|