docs: local assets (#3151)

This commit is contained in:
Max Peintner 2022-02-02 13:45:01 +01:00 committed by GitHub
parent 1367a2e139
commit 46ff51b631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1573 changed files with 12943 additions and 78 deletions

View File

@ -1,117 +1,125 @@
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'ZITADEL Docs',
title: "ZITADEL Docs",
trailingSlash: false,
url: 'https://docs.zitadel.ch',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'caos',
projectName: 'zitadel',
scripts: [{src: '/proxy/js/script.js', async: true, defer: true, 'data-domain': 'docs.zitadel.ch', 'data-api': '/proxy/api/event'}],
url: "https://docs.zitadel.ch",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "caos",
projectName: "zitadel",
scripts: [
{
src: "/proxy/js/script.js",
async: true,
defer: true,
"data-domain": "docs.zitadel.ch",
"data-api": "/proxy/api/event",
},
],
themeConfig: {
zoomSelector: '.markdown :not(em) > img',
zoomSelector: ".markdown :not(em) > img",
navbar: {
// title: 'ZITADEL',
logo: {
alt: 'ZITADEL logo',
src: 'img/zitadel-logo-dark.svg',
srcDark: 'img/zitadel-logo-light.svg',
alt: "ZITADEL logo",
src: "img/zitadel-logo-dark.svg",
srcDark: "img/zitadel-logo-light.svg",
},
items: [
{
type: 'doc',
label: 'Guides',
docId: 'guides/overview',
position: 'left',
type: "doc",
label: "Guides",
docId: "guides/overview",
position: "left",
},
{
type: 'doc',
label: 'Quickstarts',
docId: 'quickstarts/introduction',
position: 'left',
type: "doc",
label: "Quickstarts",
docId: "quickstarts/introduction",
position: "left",
},
{
type: 'doc',
label: 'APIs',
docId: 'apis/introduction',
position: 'left',
type: "doc",
label: "APIs",
docId: "apis/introduction",
position: "left",
},
{
type: 'doc',
docId: 'concepts/introduction',
label: 'Concepts',
position: 'left',
type: "doc",
docId: "concepts/introduction",
label: "Concepts",
position: "left",
},
{
type: 'doc',
docId: 'manuals/introduction',
label: 'Help',
position: 'left',
type: "doc",
docId: "manuals/introduction",
label: "Help",
position: "left",
},
{
type: 'doc',
docId: 'legal/introduction',
label: 'Legal',
position: 'left',
type: "doc",
docId: "legal/introduction",
label: "Legal",
position: "left",
},
{
href: 'https://github.com/caos/zitadel',
label: 'GitHub',
position: 'right',
href: "https://github.com/caos/zitadel",
label: "GitHub",
position: "right",
},
],
},
footer: {
links: [
{
title: 'Community',
title: "Community",
items: [
{
label: 'GitHub Discussions',
href: 'https://github.com/caos/zitadel/discussions',
label: "GitHub Discussions",
href: "https://github.com/caos/zitadel/discussions",
},
{
label: 'Twitter',
href: 'https://twitter.com/zitadel_ch',
label: "Twitter",
href: "https://twitter.com/zitadel_ch",
},
{
label: 'Linkedin',
href: 'https://www.linkedin.com/company/caos-ag/',
label: "Linkedin",
href: "https://www.linkedin.com/company/caos-ag/",
},
{
label: 'Blog',
href: 'https://zitadel.ch/blog',
label: "Blog",
href: "https://zitadel.ch/blog",
},
],
},
{
title: 'Company',
title: "Company",
items: [
{
label: 'About CAOS Ltd.',
href: 'https://caos.ch/#about',
label: "About CAOS Ltd.",
href: "https://caos.ch/#about",
},
{
label: 'Contact',
href: 'https://zitadel.ch/contact/',
label: "Contact",
href: "https://zitadel.ch/contact/",
},
{
label: 'GitHub',
href: 'https://github.com/caos',
label: "GitHub",
href: "https://github.com/caos",
},
{
label: 'Status',
href: 'https://status.zitadel.ch/',
label: "Status",
href: "https://status.zitadel.ch/",
},
{
label: 'Terms and Conditions',
href: 'https://docs.zitadel.ch/docs/legal/terms-of-service',
label: "Terms and Conditions",
href: "https://docs.zitadel.ch/docs/legal/terms-of-service",
},
{
label: 'Privacy Policy',
href: 'https://docs.zitadel.ch/docs/legal/privacy-policy',
label: "Privacy Policy",
href: "https://docs.zitadel.ch/docs/legal/privacy-policy",
},
],
},
@ -119,33 +127,28 @@ module.exports = {
copyright: `Copyright © ${new Date().getFullYear()} CAOS Ltd. Built with Docusaurus.`,
},
algolia: {
appId: '8H6ZKXENLO',
apiKey: 'c3899716db098111f5e89c8987b9c427',
indexName: 'zitadel',
appId: "8H6ZKXENLO",
apiKey: "c3899716db098111f5e89c8987b9c427",
indexName: "zitadel",
},
prism: {
additionalLanguages: ['csharp', 'dart', 'groovy'],
additionalLanguages: ["csharp", "dart", "groovy"],
},
},
presets: [
[
'@docusaurus/preset-classic',
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/caos/zitadel/edit/main/docs/',
remarkPlugins: [require('mdx-mermaid')],
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/caos/zitadel/edit/main/docs/",
remarkPlugins: [require("mdx-mermaid")],
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
plugins: [
require.resolve('plugin-image-zoom'),
],
stylesheets: [
"https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css"
]
plugins: [require.resolve("plugin-image-zoom")],
};

View File

@ -4,9 +4,70 @@
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
@import "../../static/icons/line-awesome/css/line-awesome.min.css";
@font-face {
font-family: Lato;
font-style: normal;
font-weight: 400;
src: url(../../static/fonts/lato/Lato-Regular.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: normal;
font-weight: 900;
src: url(../../static/fonts/lato/Lato-Black.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: 900;
src: url(../../static/fonts/lato/Lato-BlackItalic.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: normal;
font-weight: 700;
src: url(../../static/fonts/lato/Lato-Bold.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: 700;
src: url(../../static/fonts/lato/Lato-BoldItalic.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: 400;
src: url(../../static/fonts/lato/Lato-Italic.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: normal;
font-weight: 300;
src: url(../../static/fonts/lato/Lato-Light.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: 300;
src: url(../../static/fonts/lato/Lato-LightItalic.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: normal;
font-weight: 100;
src: url(../../static/fonts/lato/Lato-Thin.ttf) format("truetype");
}
@font-face {
font-family: Lato;
font-style: italic;
font-weight: 100;
src: url(../../static/fonts/lato/Lato-ThinItalic.ttf) format("truetype");
}
/* You can override the default Infima variables here. */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
--ifm-navbar-background-color: #ffffff;

BIN
docs/static/fonts/lato/Lato-Black.ttf vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/static/fonts/lato/Lato-Bold.ttf vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/static/fonts/lato/Lato-Italic.ttf vendored Normal file

Binary file not shown.

BIN
docs/static/fonts/lato/Lato-Light.ttf vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
docs/static/fonts/lato/Lato-Regular.ttf vendored Normal file

Binary file not shown.

BIN
docs/static/fonts/lato/Lato-Thin.ttf vendored Normal file

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 906 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,467 @@
<?xml version="1.0" standalone="no"?>
<!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">
<metadata>Created by Icons8</metadata>
<defs>
<font id="la-regular-400" horiz-adv-x="1024">
<font-face font-family="la-regular-400"
units-per-em="1024" ascent="896"
descent="128"
font-weight="400" />
<missing-glyph horiz-adv-x="0" />
<glyph glyph-name="building"
unicode="&#xF1AD;"
horiz-adv-x="1024" d="M128 800L128 -32L480 -32L480 96L544 96L544 -32L896 -32L896 800zM192 736L832 736L832 32L608 32L608 160L416 160L416 32L192 32zM256 672L256 608L384 608L384 672zM448 672L448 608L576 608L576 672zM640 672L640 608L768 608L768 672zM256 544L256 480L384 480L384 544zM448 544L448 480L576 480L576 544zM640 544L640 480L768 480L768 544zM256 416L256 352L384 352L384 416zM448 416L448 352L576 352L576 416zM640 416L640 352L768 352L768 416zM256 288L256 224L384 224L384 288zM448 288L448 224L576 224L576 288zM640 288L640 224L768 224L768 288zM256 160L256 96L384 96L384 160zM640 160L640 96L768 96L768 160z" />
<glyph glyph-name="map"
unicode="&#xF279;"
horiz-adv-x="1024" d="M896 753L851 733L639 642L395 734L383 738L371 733L147 637L128 629L128 15L173 35L385 126L629 34L641 30L653 35L877 131L896 139zM416 658L608 586L608 110L416 182zM352 656L352 181L192 112L192 587zM832 656L832 181L672 112L672 587z" />
<glyph glyph-name="neutral-face"
unicode="&#xF11A;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464C416 490.5 394.5 512 368 512zM656 512C629.5 512 608 490.5 608 464C608 437.5 629.5 416 656 416C682.5 416 704 437.5 704 464C704 490.5 682.5 512 656 512zM352 256L352 192L672 192L672 256z" />
<glyph glyph-name="eye-slash"
unicode="&#xF070;"
horiz-adv-x="1024" d="M119 823L73 777L272 579L627 224L688 162L905 -55L951 -9L752 190C887.5 257.124992 978.375008 356.7499840000001 984 363L1003 384L984 405C975.375008 414.624992 770.750016 640 512 640C449.375008 640 390.250016 626.249984 336 606zM512 576C580.875008 576 646 556.624992 704 530C724.624992 495.5 736 456.5 736 416C736 357.875008 713.5 304.7499840000001 677 265L586 356C599.375008 372.375008 608 393.124992 608 416C608 469 565 512 512 512C489.124992 512 468.375008 503.375008 452 490L387 555C426.750016 567.249984 468.375008 576 512 576zM214 547C111.375008 483.875008 44.750016 410.375008 40 405L21 384L40 363C48.250016 353.7499840000001 237.750016 146.375008 482 130C491.875008 129 501.875008 128 512 128C522.124992 128 532.124992 129 542 130C568.375008 131.7499840000001 594.124992 135.2499840000001 619 141L562 198C545.750016 194.2499840000001 529.250016 192 512 192C388.5 192 288 292.5 288 416C288 433 290.250016 449.624992 294 466zM232 482C226.875008 460.375008 224 438.375008 224 416C224 360.375008 239.624992 309.124992 267 265C193.750016 307 137.750016 356.2499840000001 109 384C132.875008 407.124992 175.875008 445.5 232 482zM792 482C848.124992 445.5 891 407.124992 915 384C886.250016 356.2499840000001 829.375008 306 756 264C783.5 308.124992 800 360.375008 800 416C800 438.375008 797.124992 460.5 792 482z" />
<glyph glyph-name="caret-square-up"
unicode="&#xF151;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM512 541L489 519L297 327L343 281L512 450L681 281L727 327L535 519z" />
<glyph glyph-name="copy"
unicode="&#xF0C5;"
horiz-adv-x="1024" d="M128 768L128 128L352 128L352 192L192 192L192 704L576 704L576 672L640 672L640 768zM384 640L384 0L896 0L896 640zM448 576L832 576L832 64L448 64z" />
<glyph glyph-name="dot-circle"
unicode="&#xF192;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM512 480C459 480 416 437 416 384C416 331 459 288 512 288C565 288 608 331 608 384C608 437 565 480 512 480z" />
<glyph glyph-name="grinning-face-with-big-eyes"
unicode="&#xF599;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="save"
unicode="&#xF0C7;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 589L855 599L727 727L717 736zM224 672L320 672L320 480L704 480L704 658L800 562L800 96L736 96L736 384L288 384L288 96L224 96zM384 672L512 672L512 608L576 608L576 672L640 672L640 544L384 544zM352 320L672 320L672 96L352 96z" />
<glyph glyph-name="face-with-tears-of-joy"
unicode="&#xF588;"
horiz-adv-x="1024" d="M512 800C283.84 800 98.1395008 615.3064992 96.1875008 387.562496C114.5555008 394.922496 136.2884992 402.327488 161.3124992 409.687488C174.5284992 591.7995008 326.56 736 512 736C697.44 736 849.471488 591.7995008 862.687488 409.687488C887.711488 402.327488 909.444512 394.922496 927.812512 387.562496C925.860512 615.3064992 740.16 800 512 800zM288 448L288 384L448 384L448 448L288 448zM576 448L576 384L736 384L736 448L576 448zM192 352C192 352 96.9729984 325.285504 78.1249984 306.437504C59.2770016 287.5895040000001 59.2770016 256.972992 78.1249984 238.124992C96.9729984 219.276992 127.5895008 219.276992 146.4375008 238.124992C165.2855008 256.972992 192 352 192 352zM832 352C832 352 858.714496 256.972992 877.562496 238.124992C896.410496 219.276992 927.027008 219.276992 945.875008 238.124992C964.723008 256.972992 964.723008 287.5895040000001 945.875008 306.437504C927.027008 325.285504 832 352 832 352zM288 288C288 288 339.52 128 512 128C684.48 128 736 288 736 288L288 288zM205.6875008 211.187488C201.0155008 203.731488 196.2955008 197.4830080000001 191.6875008 192.875008C181.4155008 182.6030080000001 169.46 174.692992 156.5 169.124992C229.492 48.804992 361.312 -32 512 -32C662.688 -32 794.508 48.804992 867.5 169.124992C854.54 174.692992 842.584512 182.571008 832.312512 192.875008C827.672512 197.515008 822.984512 203.7634880000001 818.312512 211.187488C757.800512 104.371488 643.296 32 512 32C380.704 32 266.1995008 104.371488 205.6875008 211.187488z" />
<glyph glyph-name="star-half"
unicode="&#xF089;"
horiz-adv-x="1024" d="M512 827.749984L378.750016 528.875008L53.250016 494.5L296.375008 275.375008L228.5 -44.750016L512 118.7499840000001z" />
<glyph glyph-name="smiling-face"
unicode="&#xF118;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464C416 490.5 394.5 512 368 512zM656 512C629.5 512 608 490.5 608 464C608 437.5 629.5 416 656 416C682.5 416 704 437.5 704 464C704 490.5 682.5 512 656 512zM346 288L291 256C335.250016 179.624992 417.5 128 512 128C606.5 128 688.750016 179.624992 733 256L678 288C644.750016 230.624992 583.250016 192 512 192C440.750016 192 379.250016 230.624992 346 288z" />
<glyph glyph-name="grinning-face-with-smiling-eyes"
unicode="&#xF582;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 512C284.992 512 236.5 473.375008 236.5 473.375008L275.5 422.624992C275.5 422.624992 310.1744992 448 352.062496 448C393.950496 448 428.562496 422.624992 428.562496 422.624992L467.562496 473.375008C467.498496 473.375008 419.008 512 352 512zM672 512C604.992 512 556.5 473.375008 556.5 473.375008L595.5 422.624992C595.5 422.624992 630.174496 448 672.062496 448C713.950496 448 748.562496 422.624992 748.562496 422.624992L787.562496 473.375008C787.498496 473.375008 739.008 512 672 512zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="audio-file"
unicode="&#xF1C7;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 800zM256 736L768 736L768 32L256 32zM512 585L512 378C501.875008 381.624992 491.250016 384 480 384C427.375008 384 384 340.624992 384 288C384 235.375008 427.375008 192 480 192C532.624992 192 576 235.375008 576 288L576 503L664 481L680 543zM480 320C498 320 512 306 512 288C512 270 498 256 480 256C462 256 448 270 448 288C448 306 462 320 480 320z" />
<glyph glyph-name="window-maximize"
unicode="&#xF2D0;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM288 576L288 192L736 192L736 576zM352 512L672 512L672 448L352 448zM352 384L672 384L672 256L352 256z" />
<glyph glyph-name="loudly-crying-face"
unicode="&#xF5B4;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM384 576C344.375008 576 314.250016 553.875008 294 535C273.750016 516.124992 261 498 261 498L315 462C315 462 322.875008 475.875008 337 489C351.124992 502.124992 369.5 512 384 512L480 512L480 576zM544 576L544 512L640 512C654.5 512 672.875008 502.124992 687 489C701.124992 475.875008 709 462 709 462L763 498C763 498 750.250016 516.124992 730 535C709.750016 553.875008 679.624992 576 640 576zM272 448C272 448 224 362.5 224 336C224 309.5 245.5 288 272 288C298.5 288 320 309.5 320 336C320 362.5 272 448 272 448zM512 384C437.250016 384 386.124992 344.5 358 307C329.875008 269.5 321 232 321 232L311 192L713 192L703 232C703 232 694.124992 269.5 666 307C637.875008 344.5 586.750016 384 512 384zM512 320C565.5 320 594.124992 295.5 614 269C618.875008 262.375008 617.624992 262.124992 621 256L403 256C406.375008 262.124992 405.124992 262.375008 410 269C429.875008 295.5 458.5 320 512 320z" />
<glyph glyph-name="sticky-note"
unicode="&#xF249;"
horiz-adv-x="1024" d="M160 736L160 32L653 32L663 41L855 233L864 243L864 736zM224 672L800 672L800 288L608 288L608 96L224 96zM672 224L754 224L672 142z" />
<glyph glyph-name="angry-face"
unicode="&#xF556;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM342 512C328.5 498.375008 320 479.749984 320 459C320 417.624992 353.624992 384 395 384C415.624992 384 434.5 392.375008 448 406zM682 512L576 406C589.5 392.375008 608.375008 384 629 384C670.375008 384 704 417.624992 704 459C704 479.624992 695.624992 498.5 682 512zM594 325C589.375008 324.875008 584.5 324.624992 580 324C544.124992 318.624992 517 299 493 283C469 267 447.875008 254.5 432 252C416.124992 249.5 401.875008 252 375 279L329 233C365.250016 196.5 406.5 183.375008 442 189C477.5 194.624992 504.124992 214.124992 528 230C551.875008 245.875008 572.375008 257.5 589 260C605.624992 262.5 622 260.375008 650 233L694 279C661.250016 311 626.375008 325.5 594 325z" />
<glyph glyph-name="window-restore"
unicode="&#xF2D2;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM384 608L384 480L288 480L288 160L640 160L640 288L736 288L736 608zM448 544L672 544L672 512L448 512zM448 448L672 448L672 352L448 352zM352 416L384 416L384 383L352 383zM352 319L384 319L384 288L576 288L576 224L352 224z" />
<glyph glyph-name="star"
unicode="&#xF005;"
horiz-adv-x="1024" d="M512 828L483 762L379 529L125 502L53 494L107 446L296 275L243 25L228 -45L291 -9L512 119L733 -9L796 -45L781 25L728 275L917 446L971 494L899 502L645 529L541 762zM512 671L594 486L602 469L620 467L821 446L671 311L657 298L661 280L703 83L528 183L512 193L496 183L321 83L363 280L367 298L353 311L203 446L404 467L422 469L430 486z" />
<glyph glyph-name="address-card"
unicode="&#xF2BB;"
horiz-adv-x="1024" d="M96 704L96 64L928 64L928 704zM160 640L864 640L864 128L755 128C752.5 132.375008 753.624992 138.375008 750 142C737.875008 154.124992 720.750016 160 704 160C687.250016 160 670.124992 154.124992 658 142C654.375008 138.375008 655.5 132.375008 653 128L371 128C368.5 132.375008 369.624992 138.375008 366 142C353.875008 154.124992 336.750016 160 320 160C303.250016 160 286.124992 154.124992 274 142C270.375008 138.375008 271.5 132.375008 269 128L160 128zM384 576C313.624992 576 256 518.375008 256 448C256 412.375008 271.250016 380.2499840000001 295 357C252.375008 328.124992 224 278.875008 224 224L288 224C288 277 331 320 384 320C437 320 480 277 480 224L544 224C544 278.875008 515.624992 328.124992 473 357C496.750016 380.2499840000001 512 412.375008 512 448C512 518.375008 454.375008 576 384 576zM384 512C419.750016 512 448 483.749984 448 448C448 412.249984 419.750016 384 384 384C348.250016 384 320 412.249984 320 448C320 483.749984 348.250016 512 384 512zM608 480L608 416L800 416L800 480zM608 352L608 288L800 288L800 352z" />
<glyph glyph-name="comment"
unicode="&#xF075;"
horiz-adv-x="1024" d="M96 704L96 64L402.750016 64L512 -45.250016L621.250016 64L928 64L928 704zM160 640L864 640L864 128L594.750016 128L512 45.249984L429.250016 128L160 128zM288 544L288 480L736 480L736 544zM288 416L288 352L736 352L736 416zM288 288L288 224L608 224L608 288z" />
<glyph glyph-name="object-ungroup"
unicode="&#xF248;"
horiz-adv-x="1024" d="M160 736L160 608L192 608L192 288L160 288L160 160L288 160L288 192L352 192L352 128L320 128L320 0L448 0L448 32L768 32L768 0L896 0L896 128L864 128L864 448L896 448L896 576L768 576L768 544L704 544L704 608L736 608L736 736L608 736L608 704L288 704L288 736zM288 640L608 640L608 608L640 608L640 288L608 288L608 256L288 256L288 288L256 288L256 608L288 608zM704 480L768 480L768 448L800 448L800 128L768 128L768 96L448 96L448 128L416 128L416 192L608 192L608 160L736 160L736 288L704 288z" />
<glyph glyph-name="winking-face"
unicode="&#xF4DA;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464C416 490.5 394.5 512 368 512zM576 480L576 416L736 416L736 480zM671 351C671 297.124992 649.375008 259.7499840000001 618 233C586.624992 206.2499840000001 545.124992 192 512 192C444.124992 192 398 219.5 362 255L317 209C361.624992 165.124992 426.250016 128 512 128C561.750016 128 616.375008 146.7499840000001 660 184C703.624992 221.2499840000001 735 278.7499840000001 735 351z" />
<glyph glyph-name="window-close"
unicode="&#xF410;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM374 566L329 521L466 384L327 245L372 200L511 339L649 201L694 246L556 384L692 520L647 565L511 429z" />
<glyph glyph-name="video-file"
unicode="&#xF1C8;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 589L823 599L631 791L621 800zM256 736L576 736L576 544L768 544L768 32L256 32zM640 690L722 608L640 608zM416 473L416 167L464 197L624 293L670 320L624 347L464 443zM480 360L547 320L480 280z" />
<glyph glyph-name="hushed-face"
unicode="&#xF5C2;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 544C341.5 544 320 508.124992 320 464C320 419.875008 341.5 384 368 384C394.5 384 416 419.875008 416 464C416 508.124992 394.5 544 368 544zM656 544C629.5 544 608 508.124992 608 464C608 419.875008 629.5 384 656 384C682.5 384 704 419.875008 704 464C704 508.124992 682.5 544 656 544zM512 352C438.624992 352 384 292.624992 384 224C384 192.375008 395.375008 160.875008 421 145C446.624992 129.124992 475 128 512 128C549 128 577.375008 129.124992 603 145C628.624992 160.875008 640 192.375008 640 224C640 292.624992 585.375008 352 512 352zM512 288C553.375008 288 576 261.5 576 224C576 202.624992 574.750016 201.875008 570 199C565.250016 196.124992 545.750016 192 512 192C478.250016 192 458.750016 196.124992 454 199C449.250016 201.875008 448 202.624992 448 224C448 261.5 470.624992 288 512 288z" />
<glyph glyph-name="envelope"
unicode="&#xF0E0;"
horiz-adv-x="1024" d="M96 640L96 64L928 64L928 640zM234 576L790 576L512 391zM160 548L494 325L512 314L530 325L864 548L864 128L160 128z" />
<glyph glyph-name="face-with-tongue"
unicode="&#xF589;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM376.5 340.562496L327.437504 299.437504C355.494176 266.009728 398.443392 242.3571520000001 448 231.2499840000001L448 192C448 156.8 476.8 128 512 128C547.2 128 576 156.8 576 192L576 231.2499840000001C625.554688 242.359072 668.465984 265.98704 696.5 299.437504L647.437504 340.562496C620.301504 308.1144960000001 568.416 288 512 288C455.584 288 403.668 308.146496 376.5 340.562496z" />
<glyph glyph-name="caret-square-down"
unicode="&#xF150;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM343 487L297 441L489 249L512 227L535 249L727 441L681 487L512 318z" />
<glyph glyph-name="pause-circle"
unicode="&#xF28B;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM384 544L384 224L448 224L448 544zM576 544L576 224L640 224L640 544z" />
<glyph glyph-name="folder-open"
unicode="&#xF07C;"
horiz-adv-x="1024" d="M160 800L160 6L185 1L569 -79L608 -87L608 0L800 0L800 402L855 457L864 467L864 800zM452 736L800 736L800 494L745 439L736 429L736 64L608 64L608 349L599 359L544 414L544 713zM224 727L480 663L480 387L489 377L544 322L544 -9L224 58z" />
<glyph glyph-name="folder"
unicode="&#xF07B;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 402L887 457L896 467L896 800zM256 736L704 736L704 467L713 457L768 402L768 32L256 32zM768 736L832 736L832 494L800 462L768 494z" />
<glyph glyph-name="flag"
unicode="&#xF024;"
horiz-adv-x="1024" d="M160 736L160 -32L224 -32L224 288L480 288L480 192L864 192L864 640L544 640L544 736zM224 672L480 672L480 352L224 352zM544 576L800 576L800 256L544 256z" />
<glyph glyph-name="hand-pointing-right"
unicode="&#xF0A4;"
horiz-adv-x="1024" d="M470 800L460 791L243 576L64 576L64 64L603 64C648.124992 64 687.5 95.875008 697 140L750 384L864 384C916.624992 384 960 427.375008 960 480C960 532.624992 916.624992 576 864 576L520 576L526 600C532.5 605 536.624992 607.124992 546 620C561 640.5 576 672.249984 576 715C576 760.624992 534.750016 800 483 800zM493 733C506.5 730.375008 512 724.875008 512 715C512 686.124992 503.250016 668.249984 495 657C486.750016 645.749984 481 643 481 643L470 637L466 624L447 552L437 512L864 512C882.124992 512 896 498.124992 896 480C896 461.875008 882.124992 448 864 448L698 448L692 423L635 153C631.750016 138 618.250016 128 603 128L288 128L288 531zM128 512L224 512L224 128L128 128z" />
<glyph glyph-name="minus-square"
unicode="&#xF146;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM352 416L352 352L672 352L672 416z" />
<glyph glyph-name="alternate-arrow-circle-down"
unicode="&#xF358;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM480 608L480 288L384 288L512 160L640 288L544 288L544 608z" />
<glyph glyph-name="excel-file"
unicode="&#xF1C3;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 588.8124992L822.375008 598.3750016L630.375008 790.3750016L620.812512 800L192 800zM256 736L576 736L576 544L768 544L768 32L256 32L256 736zM640 691.1875008L723.187488 608L640 608L640 691.1875008zM352 480L473.624992 304L352 128L428.8125120000001 128L512 249.624992L595.187488 128L672 128L550.375008 304L672 480L595.187488 480L512 358.375008L428.8125120000001 480L352 480z" />
<glyph glyph-name="caret-square-left"
unicode="&#xF191;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM569 599L377 407L355 384L377 361L569 169L615 215L446 384L615 553z" />
<glyph glyph-name="pointer--hand-"
unicode="&#xF25A;"
horiz-adv-x="1024" d="M416 832C363.375008 832 320 788.624992 320 736L320 358L299 380L291 387C254.124992 423.875008 193.875008 423.875008 157 387C120.124992 350.124992 120.124992 289.875008 157 253L157 252L419 -7L421 -8L422 -10C465.124992 -42.375008 520.124992 -64 582 -64L637 -64C782.124992 -64 899 52.875008 899 198L899 448C899 500.624992 855.624992 544 803 544C789.375008 544 776.750016 540.249984 765 535C754.5 576.624992 716.624992 608 672 608C647.5 608 625 598.375008 608 583C591 598.375008 568.5 608 544 608C532.750016 608 522.124992 605.624992 512 602L512 736C512 788.624992 468.624992 832 416 832zM416 768C433.750016 768 448 753.749984 448 736L448 384L512 384L512 512C512 529.749984 526.250016 544 544 544C561.750016 544 576 529.749984 576 512L576 384L640 384L640 512C640 529.749984 654.250016 544 672 544C689.750016 544 704 529.749984 704 512L704 384L771 384L771 448C771 465.749984 785.250016 480 803 480C820.750016 480 835 465.749984 835 448L835 198C835 87.124992 747.875008 0 637 0L582 0C535.124992 0 494.624992 16.749984 461 42L202 298C187.750016 312.2499840000001 187.750016 327.7499840000001 202 342C216.250016 356.2499840000001 231.750016 356.2499840000001 246 342L384 204L384 736C384 753.749984 398.250016 768 416 768z" />
<glyph glyph-name="laugh-face-with-beaming-eyes"
unicode="&#xF59A;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 512C284.992 512 236.5 473.375008 236.5 473.375008L275.5 422.624992C275.5 422.624992 310.1744992 448 352.062496 448C393.950496 448 428.562496 422.624992 428.562496 422.624992L467.562496 473.375008C467.498496 473.375008 419.008 512 352 512zM672 512C604.992 512 556.5 473.375008 556.5 473.375008L595.5 422.624992C595.5 422.624992 630.174496 448 672.062496 448C713.950496 448 748.562496 422.624992 748.562496 422.624992L787.562496 473.375008C787.498496 473.375008 739.008 512 672 512zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="snowflake"
unicode="&#xF2DC;"
horiz-adv-x="1024" d="M480 800L480 686L407 759L361 713L480 594L480 440L348 519L306 682L244 666L270 566L172 625L139 571L239 511L136 485L152 423L316 465L451 384L316 303L152 345L136 283L239 257L139 197L172 143L270 202L244 102L306 86L348 249L480 328L480 174L361 55L407 9L480 82L480 -32L544 -32L544 82L617 9L663 55L544 174L544 328L676 249L718 86L780 102L754 202L852 143L885 197L785 257L888 283L872 345L708 303L573 384L708 465L872 423L888 485L785 511L885 571L852 625L754 566L780 666L718 682L676 519L544 440L544 594L663 713L617 759L544 686L544 800z" />
<glyph glyph-name="star-struck"
unicode="&#xF587;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM384 567.437504L356 504.562496L288 497.124992L338.875008 451.437504L324.562496 384L384 418.249984L443.437504 384L429.124992 451.437504L480 497.124992L412 504.562496L384 567.437504zM640 567.437504L612 504.562496L544 497.124992L594.875008 451.437504L580.562496 384L640 418.249984L699.437504 384L685.124992 451.437504L736 497.124992L668 504.562496L640 567.437504zM345.937504 288L290.8750016 256C296.4350016 246.4400000000001 302.56 237.290624 309.25 228.562496C315.94 219.8343680000001 323.217504 211.542496 330.937504 203.750016C338.657504 195.957504 346.850016 188.628128 355.5 181.875008C372.8 168.368736 391.829984 157.0387520000001 412.249984 148.312512C422.46 143.949376 433.035008 140.2624960000001 443.875008 137.2499840000001C465.555008 131.2249920000001 488.4 128 512 128C582.8 128 646.742496 156.995008 693.062496 203.750016C700.782496 211.542496 708.06 219.8343680000001 714.750016 228.562496C721.44 237.290624 727.564992 246.4400000000001 733.124992 256L678.062496 288C648.942496 237.88 598.270624 201.944384 538.249984 193.750016C529.675616 192.57936 520.92 192 512 192C503.08 192 494.324384 192.57936 485.750016 193.750016C477.175616 194.9206400000001 468.782496 196.6750080000001 460.624992 198.937504C444.310016 203.462496 428.907488 210.0800000000001 414.687488 218.5C407.577504 222.710016 400.729376 227.3718720000001 394.249984 232.437504C381.291264 242.568736 369.696256 254.3562560000001 359.687488 267.437504C354.683136 273.978112 350.097504 280.8400000000001 345.937504 288z" />
<glyph glyph-name="stop-circle"
unicode="&#xF28D;"
horiz-adv-x="1024" d="M512 800C283.2 800 96 612.8 96 384C96 155.2000000000001 283.2 -32 512 -32C740.8 -32 928 155.2000000000001 928 384C928 612.8 740.8 800 512 800zM512 736C705.6 736 864 577.6 864 384C864 190.4 705.6 32 512 32C318.4 32 160 190.4 160 384C160 577.6 318.4 736 512 736zM352 544L352 464L352 304L352 224L432 224L592 224L672 224L672 304L672 464L672 544L592 544L432 544L352 544zM416 480L608 480L608 288L416 288L416 480z" />
<glyph glyph-name="comments"
unicode="&#xF086;"
horiz-adv-x="1024" d="M64 736L64 224L192 224L192 61L244 103L395 224L704 224L704 736zM128 672L640 672L640 288L373 288L364 281L256 195L256 288L128 288zM768 608L768 544L896 544L896 160L768 160L768 67L651 160L411 160L331 96L629 96L832 -67L832 96L960 96L960 608z" />
<glyph glyph-name="closed-captioning"
unicode="&#xF20A;"
horiz-adv-x="1024" d="M64 704L64 131L960 131L960 704zM128 640L896 640L896 195L128 195zM384 576C296 576 224 504 224 416C224 328 296 256 384 256C422.250016 256 456.875008 270.124992 484 292L444 342C427.124992 328.375008 406.624992 320 384 320C330.624992 320 288 362.624992 288 416C288 469.375008 330.624992 512 384 512C406.624992 512 427.124992 503.624992 444 490L484 540C456.875008 561.875008 422.250016 576 384 576zM704 576C616 576 544 504 544 416C544 328 616 256 704 256C742.250016 256 776.875008 270.124992 804 292L764 342C747.124992 328.375008 726.624992 320 704 320C650.624992 320 608 362.624992 608 416C608 469.375008 650.624992 512 704 512C726.624992 512 747.124992 503.624992 764 490L804 540C776.875008 561.875008 742.250016 576 704 576z" />
<glyph glyph-name="thumbs-down"
unicode="&#xF165;"
horiz-adv-x="1024" d="M325 704C279.875008 704 240.5 672.124992 231 628L162 308C149.375008 248.875008 195.624992 192 256 192L440 192L434 168C427.5 163 423.375008 160.875008 414 148C399 127.5 384 95.749984 384 53C384 7.375008 425.250016 -32 477 -32L490 -32L500 -23L717 192L864 192L864 704zM325 640L672 640L672 237L467 35C453.5 37.624992 448 43.124992 448 53C448 81.875008 456.750016 99.749984 465 111C473.250016 122.2499840000001 479 125 479 125L490 131L494 144L513 216L523 256L256 256C234.875008 256 220.624992 274.375008 225 295L293 615C296.250016 630 309.750016 640 325 640zM736 640L800 640L800 256L736 256z" />
<glyph glyph-name="grinning-winking-face"
unicode="&#xF58C;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464C416 490.5 394.5 512 368 512zM576 480L576 416L736 416L736 480zM671 351C671 297.124992 649.375008 259.7499840000001 618 233C586.624992 206.2499840000001 545.124992 192 512 192C444.124992 192 398 219.5 362 255L317 209C361.624992 165.124992 426.250016 128 512 128C561.750016 128 616.375008 146.7499840000001 660 184C703.624992 221.2499840000001 735 278.7499840000001 735 351z" />
<glyph glyph-name="images"
unicode="&#xF302;"
horiz-adv-x="1024" d="M64 736L64 160L192 160L192 32L960 32L960 608L832 608L832 736zM128 672L768 672L768 224L128 224zM192 608L192 288L704 288L704 608zM256 544L640 544L640 352L256 352zM832 544L896 544L896 96L256 96L256 160L832 160z" />
<glyph glyph-name="compass"
unicode="&#xF14E;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM479 702C479.375008 702 479.624992 702 480 702L480 672L544 672L544 702C695.624992 687.124992 815.124992 567.624992 830 416L800 416L800 352L830 352C815.124992 200.375008 695.624992 80.875008 544 66L544 96L480 96L480 66C328.375008 80.875008 208.875008 200.375008 194 352L224 352L224 416L194 416C208.875008 567.375008 327.875008 686.749984 479 702zM720 592L453 443L304 176L571 325zM512 432C538.5 432 560 410.5 560 384C560 357.5 538.5 336 512 336C485.5 336 464 357.5 464 384C464 410.5 485.5 432 512 432z" />
<glyph glyph-name="code-file"
unicode="&#xF1C9;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 589L823 599L631 791L621 800zM256 736L576 736L576 544L768 544L768 32L256 32zM640 690L722 608L640 608zM512 480L448 96L512 96L576 480zM391 404L311 308L294 288L311 268L391 172L441 212L378 288L441 364zM633 404L583 364L646 288L583 212L633 172L713 268L730 288L713 308z" />
<glyph glyph-name="squinting-face-with-tongue"
unicode="&#xF58A;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 512C284.992 512 236.5 473.375008 236.5 473.375008L275.5 422.624992C275.5 422.624992 310.1744992 448 352.062496 448C393.950496 448 428.562496 422.624992 428.562496 422.624992L467.562496 473.375008C467.498496 473.375008 419.008 512 352 512zM672 512C604.992 512 556.5 473.375008 556.5 473.375008L595.5 422.624992C595.5 422.624992 630.174496 448 672.062496 448C713.950496 448 748.562496 422.624992 748.562496 422.624992L787.562496 473.375008C787.498496 473.375008 739.008 512 672 512zM376.5 340.562496L327.437504 299.437504C355.494176 266.009728 398.443392 242.3571520000001 448 231.2499840000001L448 192C448 156.8 476.8 128 512 128C547.2 128 576 156.8 576 192L576 231.2499840000001C625.554688 242.359072 668.465984 265.98704 696.5 299.437504L647.437504 340.562496C620.301504 308.1144960000001 568.416 288 512 288C455.584 288 403.668 308.146496 376.5 340.562496z" />
<glyph glyph-name="clipboard"
unicode="&#xF328;"
horiz-adv-x="1024" d="M512 800C471.750016 800 443.124992 771.5 429 736L192 736L192 0L832 0L832 736L595 736C580.875008 771.5 552.250016 800 512 800zM512 736C529.750016 736 544 721.749984 544 704L544 672L640 672L640 608L384 608L384 672L480 672L480 704C480 721.749984 494.250016 736 512 736zM256 672L320 672L320 544L704 544L704 672L768 672L768 64L256 64z" />
<glyph glyph-name="newspaper"
unicode="&#xF1EA;"
horiz-adv-x="1024" d="M96 736L96 160C96 89.249984 153.250016 32 224 32L800 32C870.750016 32 928 89.249984 928 160L928 512L736 512L736 736zM160 672L672 672L672 160C672 136.624992 679.124992 114.875008 690 96L224 96C185.875008 96 160 121.875008 160 160zM224 608L224 448L608 448L608 608zM288 544L544 544L544 512L288 512zM736 448L864 448L864 160C864 121.875008 838.124992 96 800 96C761.875008 96 736 121.875008 736 160zM224 416L224 352L384 352L384 416zM448 416L448 352L608 352L608 416zM224 320L224 256L384 256L384 320zM448 320L448 256L608 256L608 320zM224 224L224 160L384 160L384 224zM448 224L448 160L608 160L608 224z" />
<glyph glyph-name="hand-pointing-left"
unicode="&#xF0A5;"
horiz-adv-x="1024" d="M541 800C489.250016 800 448 760.624992 448 715C448 672.249984 463 640.5 478 620C487.375008 607.124992 491.5 605 498 600L504 576L160 576C107.375008 576 64 532.624992 64 480C64 427.375008 107.375008 384 160 384L274 384L327 140C336.5 95.875008 375.875008 64 421 64L960 64L960 576L781 576L564 791L554 800zM531 733L736 531L736 128L421 128C405.750016 128 392.250016 138 389 153L332 423L326 448L160 448C141.875008 448 128 461.875008 128 480C128 498.124992 141.875008 512 160 512L587 512L577 552L558 624L554 637L543 643C543 643 537.250016 645.749984 529 657C520.750016 668.249984 512 686.124992 512 715C512 724.875008 517.5 730.375008 531 733zM800 512L896 512L896 128L800 128z" />
<glyph glyph-name="object-group"
unicode="&#xF247;"
horiz-adv-x="1024" d="M160 736L160 608L192 608L192 160L160 160L160 32L288 32L288 64L736 64L736 32L864 32L864 160L832 160L832 608L864 608L864 736L736 736L736 704L288 704L288 736zM288 640L736 640L736 608L768 608L768 160L736 160L736 128L288 128L288 160L256 160L256 608L288 608zM320 576L320 320L448 320L448 192L704 192L704 448L576 448L576 576zM384 512L512 512L512 384L384 384zM576 384L640 384L640 256L512 256L512 320L576 320z" />
<glyph glyph-name="image"
unicode="&#xF03E;"
horiz-adv-x="1024" d="M64 736L64 32L960 32L960 736zM128 672L896 672L896 227L727 397L704 420L559 275L375 461L352 484L128 260zM768 608C732.624992 608 704 579.375008 704 544C704 508.624992 732.624992 480 768 480C803.375008 480 832 508.624992 832 544C832 579.375008 803.375008 608 768 608zM352 393L646 96L128 96L128 169zM704 329L896 137L896 96L737 96L604 230z" />
<glyph glyph-name="keyboard"
unicode="&#xF11C;"
horiz-adv-x="1024" d="M96 672C61 672 32 643 32 608L32 160C32 125 61 96 96 96L928 96C963 96 992 125 992 160L992 608C992 643 963 672 928 672zM96 608L928 608L928 160L96 160zM160 544L160 480L224 480L224 544zM288 544L288 480L352 480L352 544zM416 544L416 480L480 480L480 544zM544 544L544 480L608 480L608 544zM672 544L672 480L736 480L736 544zM800 544L800 480L864 480L864 544zM160 416L160 352L288 352L288 416zM352 416L352 352L416 352L416 416zM480 416L480 352L544 352L544 416zM608 416L608 352L672 352L672 416zM736 416L736 352L864 352L864 416zM160 288L160 224L288 224L288 288zM352 288L352 224L672 224L672 288zM736 288L736 224L864 224L864 288z" />
<glyph glyph-name="grinning-squinting-face"
unicode="&#xF585;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM321.750016 538.624992L286.25 485.375008L342.3125120000001 448L286.25 410.624992L321.750016 357.375008L457.687488 448L321.750016 538.624992zM702.249984 538.624992L566.312512 448L702.249984 357.375008L737.750016 410.624992L681.687488 448L737.750016 485.375008L702.249984 538.624992zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="hand-pointing-down"
unicode="&#xF0A7;"
horiz-adv-x="1024" d="M320 832L320 653L105 436L96 426L96 413C96 361.2499840000001 135.375008 320 181 320C223.750016 320 255.5 335 276 350C288.875008 359.375008 291 363.5 296 370L320 376L320 32C320 -20.624992 363.375008 -64 416 -64C468.624992 -64 512 -20.624992 512 32L512 146L756 199C800.124992 208.5 832 247.875008 832 293L832 832zM384 768L768 768L768 672L384 672zM365 608L768 608L768 293C768 277.7499840000001 758 264.2499840000001 743 261L473 204L448 198L448 32C448 13.875008 434.124992 0 416 0C397.875008 0 384 13.875008 384 32L384 459L344 449L272 430L259 426L253 415C253 415 250.250016 409.249984 239 401C227.750016 392.749984 209.875008 384 181 384C171.124992 384 165.624992 389.5 163 403z" />
<glyph glyph-name="gem"
unicode="&#xF3A5;"
horiz-adv-x="1024" d="M305 704L135 500L119 481L135 460L487 12L512 -20L537 12L889 460L905 481L889 500L719 704zM335 640L452 640L366 512L228 512zM572 640L689 640L796 512L658 512zM512 613L580 512L444 512zM225 448L360 448L436 179zM426 448L597 448L512 150zM664 448L799 448L588 180z" />
<glyph glyph-name="kissing-face-with-smiling-eyes"
unicode="&#xF597;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 512C284.992 512 236.5 473.375008 236.5 473.375008L275.5 422.624992C275.5 422.624992 310.1744992 448 352.062496 448C393.950496 448 428.562496 422.624992 428.562496 422.624992L467.562496 473.375008C467.498496 473.375008 419.008 512 352 512zM672 512C604.992 512 556.5 473.375008 556.5 473.375008L595.5 422.624992C595.5 422.624992 630.174496 448 672.062496 448C713.950496 448 748.562496 422.624992 748.562496 422.624992L787.562496 473.375008C787.498496 473.375008 739.008 512 672 512zM480 351.750016L480 304.062496C508.864 304.062496 527.249984 290.787008 527.249984 283.875008C527.250016 276.99088 508.944576 263.856096 480.312512 263.750016C480.205792 263.75024 480.106784 263.750016 480 263.750016L480 263.6874880000001L480 216.062496L480 216C480.106784 216 480.205792 215.999776 480.312512 216C508.975936 215.893888 527.249984 202.759136 527.249984 195.875008C527.250016 188.963008 508.832 175.687488 480 175.687488L480 128C533.408 128 575.249984 157.827008 575.249984 195.875008C575.249984 212.90816 566.558144 228.076192 552.5 239.875008C566.558144 251.6737920000001 575.249984 266.841824 575.249984 283.875008C575.250016 321.923008 533.408 351.750016 480 351.750016z" />
<glyph glyph-name="address-book"
unicode="&#xF2B9;"
horiz-adv-x="1024" d="M192 768L192 608L160 608L160 544L256 544L256 704L768 704L768 64L256 64L256 160L192 160L192 0L832 0L832 768zM512 576C441.624992 576 384 518.375008 384 448C384 412.375008 399.250016 380.2499840000001 423 357C380.375008 328.124992 352 278.875008 352 224L416 224C416 277 459 320 512 320C565 320 608 277 608 224L672 224C672 278.875008 643.624992 328.124992 601 357C624.750016 380.2499840000001 640 412.375008 640 448C640 518.375008 582.375008 576 512 576zM192 512L192 448L160 448L160 384L256 384L256 512zM512 512C547.750016 512 576 483.749984 576 448C576 412.249984 547.750016 384 512 384C476.250016 384 448 412.249984 448 448C448 483.749984 476.250016 512 512 512zM192 352L192 288L160 288L160 224L256 224L256 352z" />
<glyph glyph-name="face-without-mouth"
unicode="&#xF5A4;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512z" />
<glyph glyph-name="paper-plane"
unicode="&#xF1D8;"
horiz-adv-x="1024" d="M115 725L129 665L191 384L129 103L115 43L172 66L876 354L949 384L876 414L172 702zM204 619L701 416L249 416zM249 352L701 352L204 149z" />
<glyph glyph-name="alternate-arrow-circle-up"
unicode="&#xF35B;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM512 608L384 480L480 480L480 160L544 160L544 480L640 480z" />
<glyph glyph-name="play-circle"
unicode="&#xF144;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM384 604L384 164L432 192L720 356L768 384L720 412L432 576zM448 494L639 384L448 274z" />
<glyph glyph-name="image-file"
unicode="&#xF1C5;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 589L823 599L631 791L621 800zM256 736L576 736L576 544L768 544L768 32L256 32zM640 690L722 608L640 608zM675 448C657.375008 448 643 433.624992 643 416C643 398.375008 657.375008 384 675 384C692.624992 384 707 398.375008 707 416C707 433.624992 692.624992 448 675 448zM448 397L425 375L297 247L343 201L448 306L521 233L544 211L567 233L608 274L681 201L727 247L631 343L608 365L585 343L544 302L471 375z" />
<glyph glyph-name="dizzy-face"
unicode="&#xF567;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM310.6249984 566.624992L265.3750016 521.375008L322.750016 464L265.3750016 406.624992L310.6249984 361.375008L368 418.750016L425.375008 361.375008L470.624992 406.624992L413.249984 464L470.624992 521.375008L425.375008 566.624992L368 509.249984L310.6249984 566.624992zM598.624992 566.624992L553.375008 521.375008L610.750016 464L553.375008 406.624992L598.624992 361.375008L656 418.750016L713.375008 361.375008L758.624992 406.624992L701.249984 464L758.624992 521.375008L713.375008 566.624992L656 509.249984L598.624992 566.624992zM512 320C441.408 320 384 271.1874880000001 384 211.187488C384 155.987488 427.072 128 512 128C596.928 128 640 155.987488 640 211.187488C640 271.1874880000001 582.592 320 512 320zM512 256C546.688 256 576 235.4754880000001 576 211.187488C576 205.939488 576 192 512 192C448 192 448 205.939488 448 211.187488C448 235.4754880000001 477.312 256 512 256z" />
<glyph glyph-name="laughing-winking-face"
unicode="&#xF59C;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM576 480L576 416L736 416L736 480L576 480zM288 288C288 288 339.52 128 512 128C684.48 128 736 288 736 288L288 288z" />
<glyph glyph-name="alternate-money-bill"
unicode="&#xF3D1;"
horiz-adv-x="1024" d="M64 672L64 128L960 128L960 672L64 672zM192 608L832 608C832 572.64 860.64 544 896 544L896 256C860.64 256 832 227.36 832 192L192 192C192 227.36 163.36 256 128 256L128 544C163.36 544 192 572.64 192 608zM480 544C480 497.952 462.048 480 416 480L416 416C440.824032 416 461.977152 420.837408 480 429.187488L480 256L544 256L544 544L480 544zM272 448C245.504 448 224 426.496 224 400C224 373.504 245.504 352 272 352C298.496 352 320 373.504 320 400C320 426.496 298.496 448 272 448zM752 448C725.504 448 704 426.496 704 400C704 373.504 725.504 352 752 352C778.496 352 800 373.504 800 400C800 426.496 778.496 448 752 448z" />
<glyph glyph-name="calendar-times"
unicode="&#xF273;"
horiz-adv-x="1024" d="M288 736L288 704L160 704L160 0L864 0L864 704L736 704L736 736L672 736L672 704L352 704L352 736zM224 640L288 640L288 608L352 608L352 640L672 640L672 608L736 608L736 640L800 640L800 576L224 576zM224 512L800 512L800 64L224 64zM423 423L377 377L466 288L377 199L423 153L512 242L601 153L647 199L558 288L647 377L601 423L512 334z" />
<glyph glyph-name="rolling-on-the-floor-laughing"
unicode="&#xF586;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 259.8400000000001 150.972 148.538016 237.5 72.249984C243.644 87.930016 252.9149984 108.045984 265.8750016 132.750016C200.6270016 196.685984 160 285.664 160 384C160 578.0799999999999 317.92 736 512 736C610.336 736 699.314016 695.3730016 763.249984 630.1249984C787.985984 643.0850015999999 808.070016 652.388 823.750016 658.5C747.462016 745.028 636.16 800 512 800zM880 608C853.504 608 768 560 768 560C768 560 853.504 512 880 512C906.496 512 928 533.504 928 560C928 586.496 906.496 608 880 608zM617.375008 598.6249984L489.375008 470.624992L534.624992 425.375008L662.624992 553.375008L617.375008 598.6249984zM754.249984 466.249984L429.750016 141.750016C455.669984 132.790016 483.2 128 512 128C653.44 128 768 242.56 768 384C768 412.8 763.210016 440.329984 754.249984 466.249984zM921.312512 456.124992C908.512512 451.004992 894.624 448 880 448C876.128 448 869.276 448.094016 857.5 450.750016C861.66 429.117984 864 406.848 864 384C864 189.92 706.08 32 512 32C489.152 32 466.882016 34.34 445.249984 38.5C447.906016 26.724 448 19.872 448 16C448 1.376 444.995008 -12.512512 439.875008 -25.312512C463.363008 -29.440512 487.36 -32 512 -32C741.376 -32 928 154.624 928 384C928 408.64 925.440512 432.636992 921.312512 456.124992zM425.375008 406.624992L297.3750016 278.624992L342.624992 233.375008L470.624992 361.375008L425.375008 406.624992zM336 128C336 128 288 42.496 288 16C288 -10.496 309.504 -32 336 -32C362.496 -32 384 -10.496 384 16C384 42.496 336 128 336 128z" />
<glyph glyph-name="times-circle"
unicode="&#xF057;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM391 551L345 505L466 384L345 263L391 217L512 338L633 217L679 263L558 384L679 505L633 551L512 430z" />
<glyph glyph-name="calendar-plus"
unicode="&#xF271;"
horiz-adv-x="1024" d="M288 736L288 704L160 704L160 0L864 0L864 704L736 704L736 736L672 736L672 704L352 704L352 736zM224 640L288 640L288 608L352 608L352 640L672 640L672 608L736 608L736 640L800 640L800 576L224 576zM224 512L800 512L800 64L224 64zM480 448L480 320L352 320L352 256L480 256L480 128L544 128L544 256L672 256L672 320L544 320L544 448z" />
<glyph glyph-name="crying-face"
unicode="&#xF5B3;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 274.956736 814.106592 177.368576 736 112.750016L736 384C736 401.664 721.696 416 704 416C686.304 416 672 401.664 672 384L672 70.875008C623.92704 46.204512 569.642304 32 512 32C454.357696 32 400.07296 46.204512 352 70.875008L352 384C352 401.664 337.6960000000001 416 320 416C302.304 416 288 401.664 288 384L288 112.750016C209.8934208 177.368576 160 274.956736 160 384C160 578.0799999999999 317.92 736 512 736zM384 576C344.32 576 314.2224992 553.942496 294.0624992 535.062496C273.5824992 516.182496 261.1249984 497.937504 261.1249984 497.937504L314.8750016 462.062496C314.8749984 462.062496 322.857504 475.817504 336.937504 488.937504C351.017504 502.057504 369.6 512 384 512L480 512L480 576L384 576zM544 576L544 512L640 512C654.4 512 672.982496 502.057504 687.062496 488.937504C701.142496 475.817504 709.124992 462.062496 709.124992 462.062496L762.875008 497.937504C762.875008 497.937504 750.417504 516.182496 729.937504 535.062496C709.777504 553.942496 679.68 576 640 576L544 576zM512 384C459.072 384 416 333.76 416 272C416 210.24 459.072 160 512 160C564.928 160 608 210.24 608 272C608 333.76 564.928 384 512 384zM512 320C529.024 320 544 297.568 544 272C544 246.432 529.024 224 512 224C494.976 224 480 246.432 480 272C480 297.568 494.976 320 512 320z" />
<glyph glyph-name="powerpoint-file"
unicode="&#xF1C4;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 588.8124992L822.375008 598.3750016L630.375008 790.3750016L620.812512 800L192 800zM256 736L576 736L576 544L768 544L768 32L256 32L256 736zM640 691.1875008L723.187488 608L640 608L640 691.1875008zM416 480L416 416L544 416C582.4 416 608 390.4 608 352C608 313.6 582.4 288 544 288C505.6 288 480 313.6 480 352L416 352L416 128L480 128L480 243.1874880000001C499.2 230.387488 521.6 224 544 224C614.4 224 672 281.6 672 352C672 422.4 614.4 480 544 480L416 480z" />
<glyph glyph-name="hdd"
unicode="&#xF0A0;"
horiz-adv-x="1024" d="M199 704L96 292L96 64L928 64L928 292L825 704zM249 640L775 640L855 320L169 320zM160 256L864 256L864 128L160 128zM768 224C750.375008 224 736 209.624992 736 192C736 174.375008 750.375008 160 768 160C785.624992 160 800 174.375008 800 192C800 209.624992 785.624992 224 768 224z" />
<glyph glyph-name="hourglass"
unicode="&#xF254;"
horiz-adv-x="1024" d="M224 768L224 704L288 704L288 576C288 494.624992 331.750016 423.249984 397 384C331.750016 344.7499840000001 288 273.375008 288 192L288 64L224 64L224 0L800 0L800 64L736 64L736 192C736 273.375008 692.250016 344.7499840000001 627 384C692.250016 423.249984 736 494.624992 736 576L736 704L800 704L800 768zM352 704L672 704L672 576C672 487.249984 600.750016 416 512 416C423.250016 416 352 487.249984 352 576zM512 352C600.750016 352 672 280.7499840000001 672 192L672 64L352 64L352 192C352 280.7499840000001 423.250016 352 512 352z" />
<glyph glyph-name="credit-card"
unicode="&#xF09D;"
horiz-adv-x="1024" d="M160 704C107.375008 704 64 660.624992 64 608L64 160C64 107.375008 107.375008 64 160 64L864 64C916.624992 64 960 107.375008 960 160L960 608C960 660.624992 916.624992 704 864 704zM160 640L864 640C882.124992 640 896 626.124992 896 608L896 544L160 544L160 480L896 480L896 160C896 141.875008 882.124992 128 864 128L160 128C141.875008 128 128 141.875008 128 160L128 608C128 626.124992 141.875008 640 160 640z" />
<glyph glyph-name="bell-slash"
unicode="&#xF1F6;"
horiz-adv-x="1024" d="M119 823L73 777L905 -55L951 -9L832 110L832 160L800 160C782.375008 160 768 174.375008 768 192L768 471C768 593.5 685.375008 697.5 575 727C575.375008 730 576 732.875008 576 736C576 771.375008 547.375008 800 512 800C476.624992 800 448 771.375008 448 736C448 733.249984 448.624992 730.624992 449 728C406.124992 717.124992 366.624992 695.624992 334 664C324.375008 654.749984 315.875008 644.375008 308 634zM498 672C504.5 672.5 511.5 672.249984 518 672C620.624992 668.875008 704 578.875008 704 471L704 238L354 588C361.124992 598.5 368.624992 609 378 618C410.875008 650 452.875008 668.875008 498 672zM257 504C256.250016 495.875008 256 488.249984 256 480L256 192C256 174.375008 241.624992 160 224 160L192 160L192 96L422 96C418.375008 85.875008 416 75.249984 416 64C416 11.375008 459.375008 -32 512 -32C564.624992 -32 608 11.375008 608 64C608 75.249984 605.624992 85.875008 602 96L666 96L602 160L314 160C317.624992 170 320 180.7499840000001 320 192L320 442zM512 96C530 96 544 82 544 64C544 46 530 32 512 32C494 32 480 46 480 64C480 82 494 96 512 96z" />
<glyph glyph-name="lemon"
unicode="&#xF094;"
horiz-adv-x="1024" d="M416 768C333.375008 768 259.875008 722 209 652C158.124992 582 128 487.5 128 384C128 280.5 158.124992 186 209 116C259.875008 46 333.375008 0 416 0C679.375008 0 819.750016 150.624992 854 309C878.124992 326.375008 896 352.124992 896 384C896 415.875008 878.124992 441.624992 854 459C817.875008 621.375008 650 768 416 768zM416 704C474.750016 704 529.250016 671.5 571 614C612.750016 556.5 640 474.875008 640 384C640 293.124992 612.750016 211.5 571 154C529.250016 96.5 474.750016 64 416 64C357.250016 64 302.750016 96.5 261 154C219.250016 211.5 192 293.124992 192 384C192 474.875008 219.250016 556.5 261 614C302.750016 671.5 357.250016 704 416 704zM620 655C717.250016 603.5 779.750016 518.749984 795 436L798 420L813 413C824.124992 407.875008 832 397.124992 832 384C832 370.875008 824.124992 360.124992 813 355L798 348L795 332C778 239.375008 722.124992 148.5 610 100C614.375008 105.249984 618.875008 110.375008 623 116C673.875008 186 704 280.5 704 384C704 487.5 673.875008 582 623 652C622.124992 653.124992 620.875008 653.875008 620 655zM416 640C393.124992 640 371.624992 631.749984 352 618L417 465L483 617C462.750016 631.875008 439.750016 640 416 640zM304 567C278.875008 527.624992 261.624992 474.875008 257 416L368 416zM530 564L465 416L575 416C570.5 473.5 554.250016 524.875008 530 564zM257 352C261.5 294.5 277.750016 243.124992 302 204L367 352zM464 352L528 201C553.124992 240.375008 570.375008 293.124992 575 352zM415 303L349 151C369.250016 136.124992 392.250016 128 416 128C438.875008 128 460.375008 136.2499840000001 480 150z" />
<glyph glyph-name="alternate-grinning-face"
unicode="&#xF581;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 544A48 96 0 0 1 368 352A48 96 0 0 1 368 544zM656 544A48 96 0 0 1 656 352A48 96 0 0 1 656 544zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="alternate-arrow-circle-right"
unicode="&#xF35A;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM608 512L608 416L288 416L288 352L608 352L608 256L736 384z" />
<glyph glyph-name="archive-file"
unicode="&#xF1C6;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 800zM256 736L480 736L480 704L544 704L544 736L768 736L768 32L256 32zM480 672L480 608L544 608L544 672zM480 576L480 512L544 512L544 576zM480 480L480 410C443 396.624992 416 361.375008 416 320C416 267.375008 459.375008 224 512 224C564.624992 224 608 267.375008 608 320C608 361.375008 581 396.624992 544 410L544 480zM512 352C530 352 544 338 544 320C544 302 530 288 512 288C494 288 480 302 480 320C480 338 494 352 512 352z" />
<glyph glyph-name="lizard--hand-"
unicode="&#xF258;"
horiz-adv-x="1024" d="M458 768C401.124992 768 347.624992 738.124992 319 689L150 398C135.750016 373.5 128 345.375008 128 317L128 0L448 0L448 138C532.124992 163.2499840000001 575.5 207.5 589 224L791 224C831.875008 224 862.875008 264.375008 853 304L849 319C834.750016 375.7499840000001 783.5 416 725 416L505 416L489 480L693 480C751.5 480 802.750016 520.249984 817 577L828 619C865.750016 632 896 662.124992 896 704L896 768zM458 704L832 704C832 685.875008 818.124992 672 800 672L512 672L480 608L759 608L755 592C747.875008 563.375008 722.5 544 693 544L489 544C448.124992 544 417.124992 503.624992 427 464L443 400C450.124992 371.624992 475.750016 352 505 352L725 352C754.5 352 779.875008 332.624992 787 304L791 288L560 288L550 275C550 275 503.875008 209.5 410 191L384 186L384 64L192 64L192 317C192 334 196.375008 351.2499840000001 205 366L375 656C392.250016 685.5 423.750016 704 458 704z" />
<glyph glyph-name="laughing-squinting-face"
unicode="&#xF59B;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM321.750016 538.624992L286.25 485.375008L342.3125120000001 448L286.25 410.624992L321.750016 357.375008L457.687488 448L321.750016 538.624992zM702.249984 538.624992L566.312512 448L702.249984 357.375008L737.750016 410.624992L681.687488 448L737.750016 485.375008L702.249984 538.624992zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="grinning-face"
unicode="&#xF580;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM288 288C288 288 339.36 128 512 128C684.64 128 736 288 736 288L288 288z" />
<glyph glyph-name="thumbs-up"
unicode="&#xF164;"
horiz-adv-x="1024" d="M534 800L524 791L307 576L160 576L160 64L699 64C744.124992 64 783.5 95.875008 793 140L862 460C874.624992 519.124992 828.375008 576 768 576L584 576L590 600C596.5 605 600.624992 607.124992 610 620C625 640.5 640 672.249984 640 715C640 760.624992 598.750016 800 547 800zM557 733C570.5 730.375008 576 724.875008 576 715C576 686.124992 567.250016 668.249984 559 657C550.750016 645.749984 545 643 545 643L534 637L530 624L511 552L501 512L768 512C789.124992 512 803.375008 493.624992 799 473L731 153C727.750016 138 714.250016 128 699 128L352 128L352 531zM224 512L288 512L288 128L224 128z" />
<glyph glyph-name="hospital"
unicode="&#xF0F8;"
horiz-adv-x="1024" d="M480 800L480 736L416 736L416 672L480 672L480 608L544 608L544 672L608 672L608 736L544 736L544 800zM192 736L192 0L480 0L480 96L544 96L544 0L832 0L832 736L672 736L672 672L768 672L768 64L608 64L608 160L416 160L416 64L256 64L256 672L352 672L352 736zM352 544L352 480L416 480L416 544zM480 544L480 480L544 480L544 544zM608 544L608 480L672 480L672 544zM352 416L352 352L416 352L416 416zM480 416L480 352L544 352L544 416zM608 416L608 352L672 352L672 416zM352 288L352 224L416 224L416 288zM480 288L480 224L544 224L544 288zM608 288L608 224L672 224L672 288z" />
<glyph glyph-name="kissing-face"
unicode="&#xF596;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM480 351.750016L480 304.062496C508.832 304.062496 527.249984 290.787008 527.249984 283.875008C527.249984 276.99088 508.94432 263.856096 480.312512 263.750016C480.205792 263.75024 480.106784 263.750016 480 263.750016L480 263.6874880000001L480 216.062496L480 216C480.106784 216 480.205792 215.999776 480.312512 216C508.94432 215.893888 527.249984 202.759136 527.249984 195.875008C527.249984 188.963008 508.832 175.687488 480 175.687488L480 128C533.408 128 575.249984 157.827008 575.249984 195.875008C575.249984 212.914304 566.497728 228.074528 552.437504 239.875008C566.497728 251.675488 575.249984 266.83568 575.249984 283.875008C575.249984 321.923008 533.408 351.750016 480 351.750016z" />
<glyph glyph-name="face-blowing-a-kiss"
unicode="&#xF598;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C587.808 -32 658.657504 -11.302016 719.937504 24.249984L673.812512 71.687488C625.300512 46.471488 570.336 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736C706.08 736 864 578.0799999999999 864 384C864 383.168 863.875008 382.362496 863.875008 381.562496C886.883008 377.850496 908.194496 369.303008 926.562496 356.375008C927.170496 365.559008 928 374.656 928 384C928 613.376 741.376 800 512 800zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM640 512C572.992 512 524.5 473.375008 524.5 473.375008L563.5 422.624992C563.5 422.624992 598.174496 448 640.062496 448C681.950496 448 716.562496 422.624992 716.562496 422.624992L755.562496 473.375008C755.498496 473.375008 707.008 512 640 512zM480 351.750016L480 304.062496C508.864 304.062496 527.249984 290.787008 527.249984 283.875008C527.250016 276.99088 508.944576 263.856096 480.312512 263.750016C480.205792 263.75024 480.106784 263.750016 480 263.750016L480 263.6874880000001L480 216.062496L480 216C480.106784 216 480.205792 215.999776 480.312512 216C508.975936 215.893888 527.249984 202.759136 527.249984 195.875008C527.250016 188.963008 508.832 175.687488 480 175.687488L480 128C533.408 128 575.249984 157.827008 575.249984 195.875008C575.249984 212.90816 566.558144 228.076192 552.5 239.875008C566.558144 251.6737920000001 575.249984 266.841824 575.249984 283.875008C575.250016 321.923008 533.408 351.750016 480 351.750016zM728 320C679.04 320 640 278.6950080000001 640 230.375008C640 202.279008 656.164512 181.592992 667.812512 169.624992L784 50.249984L900.5 169.624992C912.148 181.5609920000001 928 198.119008 928 230.375008C928 278.6950080000001 888.96 320 840 320C816.64 320 797.44 312 784 304C770.56 312 751.36 320 728 320zM728 256C735.648 256 743.442016 253.64 751.249984 249L784 229.5L816.750016 249C824.557984 253.64 832.352 256 840 256C852.8 256 864 244.0070080000001 864 230.375008C864 224.3910080000001 863.743488 223.5925120000001 854.687488 214.312512L784.062496 141.937504L713.687488 214.2499840000001C710.071488 217.961984 704 224.999008 704 230.375008C704 244.0070080000001 715.2 256 728 256z" />
<glyph glyph-name="bar-chart"
unicode="&#xF080;"
horiz-adv-x="1024" d="M416 800L416 32L352 32L352 672L160 672L160 32L96 32L96 -32L928 -32L928 32L864 32L864 448L672 448L672 32L608 32L608 800zM480 736L544 736L544 32L480 32z" />
<glyph glyph-name="heart"
unicode="&#xF004;"
horiz-adv-x="1024" d="M304 736C171.624992 736 64 627.124992 64 496C64 450.249984 84.750016 410.624992 104 382C123.250016 353.375008 143 335 143 335L489 -12L512 -35L535 -12L881 335C881 335 960 404.624992 960 496C960 627.124992 852.375008 736 720 736C610.124992 736 539.375008 669.875008 512 642C484.624992 669.875008 413.875008 736 304 736zM304 672C399.624992 672 488 579 488 579L512 552L536 579C536 579 624.375008 672 720 672C817.375008 672 896 592.124992 896 496C896 446.624992 836 380 836 380L512 56L188 380C188 380 172.5 394.875008 157 418C141.5 441.124992 128 471.249984 128 496C128 592.124992 206.624992 672 304 672z" />
<glyph glyph-name="alternate-comment"
unicode="&#xF27A;"
horiz-adv-x="1024" d="M96 736L96 160L256 160L256 -2.5L459.250016 160L928 160L928 736zM160 672L864 672L864 224L436.750016 224L320 130.624992L320 224L160 224z" />
<glyph glyph-name="plus-square"
unicode="&#xF0FE;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM480 544L480 416L352 416L352 352L480 352L480 224L544 224L544 352L672 352L672 416L544 416L544 544z" />
<glyph glyph-name="alternate-list"
unicode="&#xF022;"
horiz-adv-x="1024" d="M329 727L224 622L183 663L137 617L201 553L224 531L247 553L375 681zM480 672L480 608L896 608L896 672zM329 471L224 366L183 407L137 361L201 297L224 275L247 297L375 425zM480 416L480 352L896 352L896 416zM329 215L224 110L183 151L137 105L201 41L224 19L247 41L375 169zM480 160L480 96L896 96L896 160z" />
<glyph glyph-name="smiling-face-with-heart-eyes"
unicode="&#xF584;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM336 544C309.5 544 288 522.5 288 496C288 493 288.250016 490.124992 289 487C290.375008 479.375008 293.5 472.875008 298 467C322 425.624992 384 384 384 384C384 384 480 445 480 496C480 522.5 458.5 544 432 544C405.5 544 384 522.5 384 496C384 522.5 362.5 544 336 544zM592 544C565.5 544 544 522.5 544 496C544 493 544.250016 490.124992 545 487C546.375008 479.375008 549.5 472.875008 554 467C578 425.624992 640 384 640 384C640 384 703.624992 425.249984 727 468C732.124992 477.5 736 486.749984 736 496C736 522.5 714.5 544 688 544C661.5 544 640 522.5 640 496C640 522.5 618.5 544 592 544zM346 288L291 256C335.250016 179.624992 417.5 128 512 128C606.5 128 688.750016 179.624992 733 256L678 288C644.750016 230.624992 583.250016 192 512 192C440.750016 192 379.250016 230.624992 346 288z" />
<glyph glyph-name="alternate-arrow-circle-left"
unicode="&#xF359;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM416 512L288 384L416 256L416 352L736 352L736 416L416 416z" />
<glyph glyph-name="frowning-face-with-open-mouth"
unicode="&#xF57A;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 544C341.5 544 320 508.124992 320 464C320 419.875008 341.5 384 368 384C394.5 384 416 419.875008 416 464C416 508.124992 394.5 544 368 544zM656 544C629.5 544 608 508.124992 608 464C608 419.875008 629.5 384 656 384C682.5 384 704 419.875008 704 464C704 508.124992 682.5 544 656 544zM512 352C438.624992 352 384 292.624992 384 224C384 192.375008 395.375008 160.875008 421 145C446.624992 129.124992 475 128 512 128C549 128 577.375008 129.124992 603 145C628.624992 160.875008 640 192.375008 640 224C640 292.624992 585.375008 352 512 352zM512 288C553.375008 288 576 261.5 576 224C576 202.624992 574.750016 201.875008 570 199C565.250016 196.124992 545.750016 192 512 192C478.250016 192 458.750016 196.124992 454 199C449.250016 201.875008 448 202.624992 448 224C448 261.5 470.624992 288 512 288z" />
<glyph glyph-name="tired-face"
unicode="&#xF5C8;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM321.750016 538.624992L286.25 485.375008L342.3125120000001 448L286.25 410.624992L321.750016 357.375008L457.687488 448L321.750016 538.624992zM702.249984 538.624992L566.312512 448L702.249984 357.375008L737.750016 410.624992L681.687488 448L737.750016 485.375008L702.249984 538.624992zM512 288C428.6720000000001 288 373.303488 218.92 353.687488 181C347.767488 169.576 358.588512 156.750016 370.8125120000001 160.750016C403.356512 171.438016 459.168 192 512 192C564.832 192 620.643488 171.405984 653.187488 160.750016C665.443488 156.718016 676.232512 169.576 670.312512 181C650.696512 218.888 595.328 288 512 288z" />
<glyph glyph-name="peace--hand-"
unicode="&#xF25B;"
horiz-adv-x="1024" d="M480 832C427.375008 832 384 788.624992 384 736L384 687L380 700C364.750016 750.375008 310.375008 779.249984 260 764C209.624992 748.749984 180.750016 694.375008 196 644L279 374C273 371.624992 266.5 368.875008 260 365C233.250016 349 203 316.624992 194 265C187.250016 226.7499840000001 194.624992 193.124992 200 175C200 174.624992 200 174.375008 200 174L225 94C253.875008 0.124992 340.875008 -64 439 -64L608 -64C731.375008 -64 832 36.624992 832 160L832 477C832 478.375008 832 479.624992 832 481C832 481.624992 832 482.375008 832 483C832 483.375008 832 483.624992 832 484C831.750016 485 831.375008 486 831 487C828.124992 522.249984 806.750016 555.124992 772 569C747.875008 578.624992 722.5 577.249984 700 568C689.624992 587.624992 672.875008 604.249984 651 613C625.875008 623 599.124992 621.375008 576 611L576 736C576 788.624992 532.624992 832 480 832zM480 768C498.124992 768 512 754.124992 512 736L512 525L479 441C474.250016 429.124992 472 416.249984 472 404L341 387L258 663C252.750016 680.249984 261.750016 697.749984 279 703C296.250016 708.249984 313.750016 698.249984 319 681L385 462L421 473L448 473L448 736C448 754.124992 461.875008 768 480 768zM614 556C618.124992 556.124992 622.875008 555.624992 627 554C643.750016 547.249984 651.750016 528.749984 645 512L611 427L611 426L598 393C597.375008 391.249984 595.875008 390.5 595 389C578.750016 401.624992 558.250016 409.749984 537 410C537.375008 412.375008 537 414.624992 538 417L586 536C591 548.624992 601.624992 555.749984 614 556zM735 512C739.250016 512 743.750016 511.624992 748 510C760.624992 505 767.750016 493.624992 768 481C768 480.624992 768 480.375008 768 480C768 476.124992 767.5 471.875008 766 468L730 379C723.250016 362.2499840000001 704.750016 354.2499840000001 688 361C671.250016 367.7499840000001 664.250016 386.249984 671 403L705 488C705.5 489.249984 705.5 490.749984 706 492C709.375008 500.375008 715.5 506.749984 723 510C726.750016 511.624992 730.750016 512 735 512zM528 347C544.875008 351 561 340.875008 565 324C567.5 313.624992 566.124992 308.375008 563 303C559.875008 297.624992 553.250016 291 539 286L384 246C374.5 243.5 366.750016 236.7499840000001 362.875008 227.875008C359 218.875008 359.375008 208.624992 364 200L393 147C401.5 131.5 421 125.875008 436.5 134.5C452 143 457.624992 162.5 449 178L440 194L558 225C559 225.2499840000001 560 225.624992 561 226C585.750016 234.624992 605.624992 249.375008 618 270C628.124992 286.875008 632 306.5 630 326C639.375008 315.875008 651.375008 307.5 665 302C701.624992 287.375008 741.875008 296.624992 768 323L768 160C768 71.249984 696.750016 0 608 0L439 0C368.624992 0 306.750016 45.749984 286 113L262 193C259.375008 201.624992 254.124992 231.875008 258 254C264 288.375008 279 301.624992 293 310C307 318.375008 317 319 317 319C317.624992 319 318.375008 319 319 319L525 346C526 346.2499840000001 527 346.624992 528 347z" />
<glyph glyph-name="calendar-minus"
unicode="&#xF272;"
horiz-adv-x="1024" d="M288 736L288 704L160 704L160 0L864 0L864 704L736 704L736 736L672 736L672 704L352 704L352 736zM224 640L288 640L288 608L352 608L352 640L672 640L672 608L736 608L736 640L800 640L800 576L224 576zM224 512L800 512L800 64L224 64zM352 320L352 256L672 256L672 320z" />
<glyph glyph-name="lightbulb"
unicode="&#xF0EB;"
horiz-adv-x="1024" d="M512 768C353.375008 768 224 638.624992 224 480C224 418.624992 251 355 288 298C315.5 255.624992 348.375008 216.624992 384 187L384 96C384 61 413 32 448 32L480 0L544 0L576 32C611 32 640 61 640 96L640 187C675.624992 216.624992 708.5 255.624992 736 298C773 355 800 418.624992 800 480C800 638.624992 670.624992 768 512 768zM512 704C636.124992 704 736 604.124992 736 480C736 438.124992 715.375008 382.875008 683 333C654.124992 288.5 616.124992 248.875008 581 224L443 224C407.875008 248.875008 369.875008 288.5 341 333C308.624992 382.875008 288 438.124992 288 480C288 604.124992 387.875008 704 512 704zM456 160L568 160C570.5 158.2499840000001 573.124992 157 576 156L576 96L448 96L448 156C450.875008 157 453.5 158.2499840000001 456 160z" />
<glyph glyph-name="check-square"
unicode="&#xF14A;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM681 535L448 302L343 407L297 361L425 233L448 211L471 233L727 489z" />
<glyph glyph-name="user"
unicode="&#xF007;"
horiz-adv-x="1024" d="M512 736C388.624992 736 288 635.375008 288 512C288 434.875008 327.375008 366.375008 387 326C272.875008 277 192 163.7499840000001 192 32L256 32C256 173.7499840000001 370.250016 288 512 288C653.750016 288 768 173.7499840000001 768 32L832 32C832 163.7499840000001 751.124992 277 637 326C696.624992 366.375008 736 434.875008 736 512C736 635.375008 635.375008 736 512 736zM512 672C600.750016 672 672 600.749984 672 512C672 423.249984 600.750016 352 512 352C423.250016 352 352 423.249984 352 512C352 600.749984 423.250016 672 512 672z" />
<glyph glyph-name="spock--hand-"
unicode="&#xF259;"
horiz-adv-x="1024" d="M397 832C390.750016 831.875008 384.375008 831.5 378 830C335.124992 820.249984 305 782.124992 303 740C291.250016 741.875008 279.124992 741.749984 267 739C215.624992 727.375008 182.375008 675.375008 194 624L256 355L256 328L228 356C190.750016 393.249984 129.250016 393.249984 92 356C54.750016 318.7499840000001 54.750016 257.2499840000001 92 220L309 3C346.624992 -34.5 398.624992 -64 460 -64L608 -64C731.375008 -64 832 36.624992 832 160L832 384L862 535C872.124992 586.624992 837.624992 637.875008 786 648C775.124992 650.124992 764.375008 650.5 754 649L761 685C771.124992 736.624992 736.624992 787.875008 685 798C633.375008 808.124992 583.124992 773.624992 573 722L541 570L492 757C491.875008 757.249984 492.124992 757.749984 492 758L491 758C480.250016 802.124992 440.750016 832.749984 397 832zM392 767C409.624992 771 426 760.624992 430 743L430 742L510 435L516 411L573 411L579 437L635 709L635 710C638.5 727.749984 655.250016 738.5 673 735C690.750016 731.5 701.5 714.749984 698 697L640 405L703 393L736 559L737 559C740.5 576.749984 756.250016 588.5 774 585C791.750016 581.5 802.5 564.749984 799 547L769 390L768 387L768 160C768 71.249984 696.750016 0 608 0L460 0C419.250016 0 384.250016 19.875008 355 49L137 265C124.250016 277.7499840000001 124.250016 298.2499840000001 137 311C149.750016 323.7499840000001 170.250016 323.7499840000001 183 311L265 228L320 173L320 359L319 362L257 638C253 655.624992 263.375008 673 281 677C298.624992 681 315 669.624992 319 652L376 398L439 412L382 667C381.875008 667.375008 382.124992 667.624992 382 668L368 729C364 746.624992 374.375008 763 392 767z" />
<glyph glyph-name="identification-card"
unicode="&#xF2C2;"
horiz-adv-x="1024" d="M160 704C107.375008 704 64 660.624992 64 608L64 160C64 107.375008 107.375008 64 160 64L864 64C916.624992 64 960 107.375008 960 160L960 608C960 660.624992 916.624992 704 864 704zM160 640L864 640C882.124992 640 896 626.124992 896 608L896 160C896 141.875008 882.124992 128 864 128L160 128C141.875008 128 128 141.875008 128 160L128 608C128 626.124992 141.875008 640 160 640zM352 576C281.624992 576 224 518.375008 224 448C224 412.375008 239.250016 380.2499840000001 263 357C220.375008 328.124992 192 279 192 224L256 224C256 277.375008 298.624992 320 352 320C405.375008 320 448 277.375008 448 224L512 224C512 279 483.624992 328.124992 441 357C464.750016 380.2499840000001 480 412.375008 480 448C480 518.375008 422.375008 576 352 576zM576 544L576 480L832 480L832 544zM352 512C387.750016 512 416 483.749984 416 448C416 412.249984 387.750016 384 352 384C316.250016 384 288 412.249984 288 448C288 483.749984 316.250016 512 352 512zM576 416L576 352L832 352L832 416zM576 288L576 224L736 224L736 288z" />
<glyph glyph-name="calendar-check"
unicode="&#xF274;"
horiz-adv-x="1024" d="M288 736L288 704L160 704L160 0L864 0L864 704L736 704L736 736L672 736L672 704L352 704L352 736zM224 640L288 640L288 608L352 608L352 640L672 640L672 608L736 608L736 640L800 640L800 576L224 576zM224 512L800 512L800 64L224 64zM649 439L480 270L407 343L361 297L457 201L480 179L503 201L695 393z" />
<glyph glyph-name="moon"
unicode="&#xF186;"
horiz-adv-x="1024" d="M160 736L160 672L96 672L96 608L160 608L160 544L224 544L224 608L288 608L288 672L224 672L224 736zM649 642L596 640C425 633.875008 288 493.5 288 321C288 144.624992 431.624992 1 608 1C780.5 1 920.875008 138 927 309L929 361L882 339C857 327.124992 829.250016 321 800 321C693.624992 321 608 406.624992 608 513C608 542.249984 615.124992 569 627 594zM556 566C552 548.249984 544 532 544 513C544 372 659 257 800 257C819.375008 257 835.875008 264.875008 854 269C829.624992 153 731.5 65 608 65C466.250016 65 352 179.2499840000001 352 321C352 444.249984 440.250016 541.375008 556 566z" />
<glyph glyph-name="calendar"
unicode="&#xF133;"
horiz-adv-x="1024" d="M288 768L288 736L160 736L160 32L864 32L864 736L736 736L736 768L672 768L672 736L352 736L352 768zM224 672L288 672L288 640L352 640L352 672L672 672L672 640L736 640L736 672L800 672L800 608L224 608zM224 544L800 544L800 96L224 96zM416 480L416 416L480 416L480 480zM544 480L544 416L608 416L608 480zM672 480L672 416L736 416L736 480zM288 352L288 288L352 288L352 352zM416 352L416 288L480 288L480 352zM544 352L544 288L608 288L608 352zM672 352L672 288L736 288L736 352zM288 224L288 160L352 160L352 224zM416 224L416 160L480 160L480 224zM544 224L544 160L608 160L608 224z" />
<glyph glyph-name="file"
unicode="&#xF15B;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 589L823 599L631 791L621 800zM256 736L576 736L576 544L768 544L768 32L256 32zM640 690L722 608L640 608z" />
<glyph glyph-name="clock"
unicode="&#xF017;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM480 640L480 352L704 352L704 416L544 416L544 640z" />
<glyph glyph-name="sun"
unicode="&#xF185;"
horiz-adv-x="1024" d="M480 800L480 640L544 640L544 800zM240 701L195 656L308 542L354 588zM784 701L670 588L716 542L829 656zM512 608C388.624992 608 288 507.375008 288 384C288 260.624992 388.624992 160 512 160C635.375008 160 736 260.624992 736 384C736 507.375008 635.375008 608 512 608zM512 544C600.750016 544 672 472.749984 672 384C672 295.2499840000001 600.750016 224 512 224C423.250016 224 352 295.2499840000001 352 384C352 472.749984 423.250016 544 512 544zM96 416L96 352L256 352L256 416zM768 416L768 352L928 352L928 416zM308 226L195 112L240 67L354 180zM716 226L670 180L784 67L829 112zM480 128L480 -32L544 -32L544 128z" />
<glyph glyph-name="hand-pointing-up"
unicode="&#xF0A6;"
horiz-adv-x="1024" d="M416 832C363.375008 832 320 788.624992 320 736L320 392L296 398C291 404.5 288.875008 408.624992 276 418C255.5 433 223.750016 448 181 448C135.375008 448 96 406.749984 96 355L96 342L105 332L320 115L320 -64L832 -64L832 475C832 520.124992 800.124992 559.5 756 569L512 622L512 736C512 788.624992 468.624992 832 416 832zM416 768C434.124992 768 448 754.124992 448 736L448 570L473 564L743 507C758 503.749984 768 490.249984 768 475L768 160L365 160L163 365C165.624992 378.5 171.124992 384 181 384C209.875008 384 227.750016 375.2499840000001 239 367C250.250016 358.7499840000001 253 353 253 353L259 342L272 338L344 319L384 309L384 736C384 754.124992 397.875008 768 416 768zM384 96L768 96L768 0L384 0z" />
<glyph glyph-name="user-circle"
unicode="&#xF2BD;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM512 640C424 640 352 568 352 480C352 431.5 374.624992 388.375008 409 359C337 321.624992 288 246.375008 288 160L352 160C352 248.7499840000001 423.250016 320 512 320C600.750016 320 672 248.7499840000001 672 160L736 160C736 246.375008 687 321.624992 615 359C649.375008 388.375008 672 431.5 672 480C672 568 600 640 512 640zM512 576C565.375008 576 608 533.375008 608 480C608 426.624992 565.375008 384 512 384C458.624992 384 416 426.624992 416 480C416 533.375008 458.624992 576 512 576z" />
<glyph glyph-name="envelope-open"
unicode="&#xF2B6;"
horiz-adv-x="1024" d="M512 800L495 789L111 539L96 529L96 -32L928 -32L928 529L913 539L529 789zM512 724L838 512L512 301L186 512zM160 453L495 236L512 225L529 236L864 453L864 32L160 32z" />
<glyph glyph-name="edit"
unicode="&#xF044;"
horiz-adv-x="1024" d="M800 767C775.5 767 751.5 757.5 733 739L416 423L409 416L407 406L385 294L375 247L422 257L534 279L544 281L551 288L867 605C903.875008 641.875008 903.875008 702.124992 867 739C848.5 757.5 824.5 767 800 767zM800 705C807.5 705 814.875008 701.124992 822 694C836.250016 679.749984 836.250016 664.249984 822 650L512 340L457 329L468 384L778 694C785.124992 701.124992 792.5 705 800 705zM128 640L128 0L768 0L768 422L704 358L704 64L192 64L192 576L486 576L550 640z" />
<glyph glyph-name="circle"
unicode="&#xF111;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704z" />
<glyph glyph-name="word-file"
unicode="&#xF1C2;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 800zM256 736L768 736L768 32L256 32zM576 512L576 304C576 297.124992 566.875008 288 560 288C558.624992 288 560.624992 286.5 558 290C555.375008 293.5 551.375008 302.375008 549 312C544.250016 331.124992 544 352 544 352L544 416L480 416L480 272C480 265.124992 470.875008 256 464 256C457.124992 256 448 265.124992 448 272L448 480L320 480L320 416L384 416L384 272C384 227.7499840000001 419.750016 192 464 192C495.5 192 518 212.624992 531 239C540.624992 233 547.624992 224 560 224C604.250016 224 640 259.7499840000001 640 304L640 448L704 448L704 512z" />
<glyph glyph-name="alternate-file"
unicode="&#xF15C;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 589L823 599L631 791L621 800zM256 736L576 736L576 544L768 544L768 32L256 32zM640 690L722 608L640 608zM352 480L352 416L672 416L672 480zM352 352L352 288L672 288L672 352zM352 224L352 160L672 160L672 224z" />
<glyph glyph-name="flushed-face"
unicode="&#xF579;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 640C270.944 640 192 561.056 192 464C192 366.944 270.944 288 368 288C427.54 288 480.13632 317.812992 512 363.1874880000001C543.86368 317.812992 596.46 288 656 288C753.056 288 832 366.944 832 464C832 561.056 753.056 640 656 640C596.46 640 543.86368 610.1870144 512 564.812512C480.13632 610.1870144 427.54 640 368 640zM368 576C429.76 576 480 525.76 480 464C480 402.24 429.76 352 368 352C306.24 352 256 402.24 256 464C256 525.76 306.24 576 368 576zM656 576C717.76 576 768 525.76 768 464C768 402.24 717.76 352 656 352C594.24 352 544 402.24 544 464C544 525.76 594.24 576 656 576zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM384 224L384 160L640 160L640 224L384 224z" />
<glyph glyph-name="life-ring"
unicode="&#xF1CD;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C522.750016 704 533.5 703 544 702L544 605C533.5 606.5 522.875008 608 512 608C501.124992 608 490.5 606.5 480 605L480 702C490.5 703 501.250016 704 512 704zM416 690L416 586C369.5 563.749984 332.124992 526.5 310 480L207 480C238.124992 580 316.250016 658.749984 416 690zM608 690C707.624992 658.749984 786.750016 579.624992 818 480L714 480C691.875008 526.5 654.5 563.875008 608 586zM512 544C600.750016 544 672 472.749984 672 384C672 295.2499840000001 600.750016 224 512 224C423.250016 224 352 295.2499840000001 352 384C352 472.749984 423.250016 544 512 544zM194 416L290 416C288.5 405.624992 288 394.749984 288 384C288 373.124992 289.5 362.5 291 352L194 352C193 362.5 192 373.2499840000001 192 384C192 394.749984 193 405.5 194 416zM733 416L830 416C831 405.5 832 394.749984 832 384C832 373.2499840000001 831 362.5 830 352L733 352C734.5 362.5 736 373.124992 736 384C736 394.875008 734.5 405.5 733 416zM206 288L310 288C332.124992 241.5 369.5 204.124992 416 182L416 78C316.375008 109.249984 237.250016 188.375008 206 288zM714 288L818 288C786.750016 188.375008 707.624992 109.249984 608 78L608 182C654.5 204.124992 691.875008 241.5 714 288zM480 163C490.5 161.5 501.124992 160 512 160C522.875008 160 533.5 161.5 544 163L544 66C533.5 65 522.750016 64 512 64C501.250016 64 490.5 65 480 66z" />
<glyph glyph-name="caret-square-right"
unicode="&#xF152;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM455 599L409 553L578 384L409 215L455 169L647 361L669 384L647 407z" />
<glyph glyph-name="beaming-face-with-smiling-eyes"
unicode="&#xF5B8;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 512C284.992 512 236.5 473.375008 236.5 473.375008L275.5 422.624992C275.5 422.624992 310.1744992 448 352.062496 448C393.950496 448 428.562496 422.624992 428.562496 422.624992L467.562496 473.375008C467.498496 473.375008 419.008 512 352 512zM672 512C604.992 512 556.5 473.375008 556.5 473.375008L595.5 422.624992C595.5 422.624992 630.174496 448 672.062496 448C713.950496 448 748.562496 422.624992 748.562496 422.624992L787.562496 473.375008C787.498496 473.375008 739.008 512 672 512zM345.937504 288L290.8750016 256C296.4350016 246.4400000000001 302.56 237.290624 309.25 228.562496C315.94 219.8343680000001 323.217504 211.542496 330.937504 203.750016C346.377504 188.164992 363.790016 174.532512 382.750016 163.312512C392.230016 157.702496 402.04 152.675616 412.249984 148.312512C422.46 143.949376 433.035008 140.2624960000001 443.875008 137.2499840000001C454.715008 134.237504 465.88 131.93312 477.249984 130.375008C488.62 128.816864 500.2 128 512 128C523.8 128 535.38 128.816864 546.750016 130.375008C603.6 138.165632 654.462496 164.7874880000001 693.062496 203.750016C700.782496 211.542496 708.06 219.8343680000001 714.750016 228.562496C721.44 237.290624 727.564992 246.4400000000001 733.124992 256L678.062496 288C648.942496 237.88 598.270624 201.944384 538.249984 193.750016C529.675616 192.57936 520.92 192 512 192C503.08 192 494.324384 192.57936 485.750016 193.750016C477.175616 194.9206400000001 468.782496 196.6750080000001 460.624992 198.937504C444.310016 203.462496 428.907488 210.0800000000001 414.687488 218.5C400.467488 226.92 387.430016 237.127488 375.875008 248.812512C370.097504 254.655008 364.691872 260.8968640000001 359.687488 267.437504C354.683136 273.978112 350.097504 280.8400000000001 345.937504 288z" />
<glyph glyph-name="square"
unicode="&#xF0C8;"
horiz-adv-x="1024" d="M192 704L192 64L832 64L832 704zM256 640L768 640L768 128L256 128z" />
<glyph glyph-name="question-circle"
unicode="&#xF059;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM512 576C441.624992 576 384 518.375008 384 448L448 448C448 483.749984 476.250016 512 512 512C547.750016 512 576 483.749984 576 448C576 423.5 560.250016 401.749984 537 394L524 390C497.875008 381.375008 480 356.375008 480 329L480 288L544 288L544 329L557 333C606.250016 349.375008 640 396.124992 640 448C640 518.375008 582.375008 576 512 576zM480 256L480 192L544 192L544 256z" />
<glyph glyph-name="eye"
unicode="&#xF06E;"
horiz-adv-x="1024" d="M512 640C245.250016 640 40 405 40 405L21 384L40 363C40 363 227.124992 149.624992 476 130C487.875008 128.5 499.750016 128 512 128C524.250016 128 536.124992 128.5 548 130C796.875008 149.624992 984 363 984 363L1003 384L984 405C984 405 778.750016 640 512 640zM512 576C582.5 576 647.5 556.749984 704 531C724.375008 497.249984 736 458.375008 736 416C736 300.375008 649.250016 205.375008 537 193C536.375008 192.875008 535.624992 193.124992 535 193C527.375008 192.624992 519.750016 192 512 192C503.5 192 495.250016 192.5 487 193C374.750016 205.375008 288 300.375008 288 416C288 457.749984 299.250016 496.624992 319 530L318 530C375 556.249984 440.750016 576 512 576zM512 512C459 512 416 469 416 416C416 363 459 320 512 320C565 320 608 363 608 416C608 469 565 512 512 512zM232 482C227 460.5 224 438.875008 224 416C224 359.875008 240 307.375008 268 263C187.375008 309.624992 131.375008 365.2499840000001 113 384C128.375008 399.749984 171.250016 441.5 232 482zM792 482C852.750016 441.5 895.624992 399.749984 911 384C892.624992 365.2499840000001 836.624992 309.624992 756 263C784 307.375008 800 359.875008 800 416C800 438.875008 797 460.749984 792 482z" />
<glyph glyph-name="pdf-file"
unicode="&#xF1C1;"
horiz-adv-x="1024" d="M192 800L192 -32L832 -32L832 800zM256 736L768 736L768 32L256 32zM493 565C483.250016 565.124992 471.875008 561.624992 464 555C455.875008 548.124992 452.250016 539.624992 450 531C445.624992 513.749984 446.875008 495.875008 451 476C455.875008 452.749984 469.750016 424.749984 481 398C475.250016 373.624992 473.750016 352 465 327C457.5 305.5 447.875008 293.124992 439 274C418.875008 266.375008 394.875008 261.875008 379 252C361.875008 241.375008 346.875008 229.624992 338 213C329.124992 196.375008 330.124992 172.875008 342 156C347.875008 147.124992 355.624992 140.124992 366 136C376.375008 131.875008 387.624992 131.7499840000001 397 135C415.875008 141.5 429.250016 156 442 173C453.875008 188.7499840000001 462.250016 215.5 473 237C489.124992 242.375008 500.750016 249.124992 518 253C536 257 548.124992 255.124992 565 257C572.250016 248.7499840000001 578.375008 235.5 586 229C601.250016 215.7499840000001 618 205.2499840000001 638 204C658 202.7499840000001 678 215.2499840000001 689 234L690 234L690 235C694.875008 243.5 698.250016 252.7499840000001 698 263C697.750016 273.2499840000001 692.624992 284 686 291C672.875008 305 656.124992 308.624992 638 311C624 312.875008 604.5 307.875008 588 307C573.5 326.124992 559.124992 340.5 546 365C538.875008 378.2499840000001 537 389.5 531 403C535.624992 424.749984 544.750016 449 546 468C547.5 491 546.624992 510.875008 540 529C536.624992 538.124992 531.250016 547.124992 523 554C515 560.624992 504.624992 564.749984 494 565C493.624992 565 493.375008 565 493 565zM514 328C519.750016 317.875008 526.875008 311.5 533 302C524 300.375008 517.124992 302 508 300C506.5 299.624992 505.5 298.375008 504 298C505.875008 303 508.250016 306 510 311C512 316.875008 512.124992 322.124992 514 328zM632 263C642.750016 261.624992 646.624992 259.624992 648 259C647.750016 258.5 648.375008 258.624992 648 258C644 251.375008 643.624992 251.875008 641 252C638.875008 252.124992 630.750016 256.5 623 262C625.250016 261.875008 630 263.2499840000001 632 263zM408 213C406.250016 210.375008 404.750016 204.2499840000001 403 202C393.250016 189 384.250016 183 382 182C381.624992 182.5 382.624992 182 382 183L381 183C377.750016 187.624992 378.624992 185.7499840000001 381 190C383.375008 194.2499840000001 390.875008 202.875008 404 211C405 211.624992 407 212.375008 408 213z" />
<glyph glyph-name="frowning-face"
unicode="&#xF119;"
horiz-adv-x="1024" d="M512 768C300.250016 768 128 595.749984 128 384C128 172.2499840000001 300.250016 0 512 0C723.750016 0 896 172.2499840000001 896 384C896 595.749984 723.750016 768 512 768zM512 704C689.124992 704 832 561.124992 832 384C832 206.875008 689.124992 64 512 64C334.875008 64 192 206.875008 192 384C192 561.124992 334.875008 704 512 704zM368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464C416 490.5 394.5 512 368 512zM656 512C629.5 512 608 490.5 608 464C608 437.5 629.5 416 656 416C682.5 416 704 437.5 704 464C704 490.5 682.5 512 656 512zM512 320C426.624992 320 351.375008 277.2499840000001 305 213L357 176C391.875008 224.5 447.750016 256 512 256C576.250016 256 632.124992 224.5 667 176L719 213C672.624992 277.2499840000001 597.375008 320 512 320z" />
<glyph glyph-name="window-minimize"
unicode="&#xF2D1;"
horiz-adv-x="1024" d="M160 736L160 32L864 32L864 736zM224 672L800 672L800 96L224 96zM288 256L288 192L736 192L736 256z" />
<glyph glyph-name="registered-trademark"
unicode="&#xF25D;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM384 576L384 192L448 192L448 320L557 320L608 192L672 192L618 328C668 345.375008 704 392 704 448C704 518.749984 646.750016 576 576 576zM448 512L576 512C614.124992 512 640 486.124992 640 448C640 409.875008 614.124992 384 576 384L448 384z" />
<glyph glyph-name="comment-dots"
unicode="&#xF4AD;"
horiz-adv-x="1024" d="M96 736L96 160L256 160L256 -2.5L459.250016 160L928 160L928 736zM160 672L864 672L864 224L436.750016 224L320 130.624992L320 224L160 224zM320 512C284.624992 512 256 483.375008 256 448C256 412.624992 284.624992 384 320 384C355.375008 384 384 412.624992 384 448C384 483.375008 355.375008 512 320 512zM512 512C476.624992 512 448 483.375008 448 448C448 412.624992 476.624992 384 512 384C547.375008 384 576 412.624992 576 448C576 483.375008 547.375008 512 512 512zM704 512C668.624992 512 640 483.375008 640 448C640 412.624992 668.624992 384 704 384C739.375008 384 768 412.624992 768 448C768 483.375008 739.375008 512 704 512z" />
<glyph glyph-name="winking-face-with-tongue"
unicode="&#xF58B;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM576 480L576 416L736 416L736 480L576 480zM376.5 340.562496L327.437504 299.437504C355.494176 266.009728 398.443392 242.3571520000001 448 231.2499840000001L448 192C448 156.8 476.8 128 512 128C547.2 128 576 156.8 576 192L576 231.2499840000001C625.554688 242.359072 668.465984 265.98704 696.5 299.437504L647.437504 340.562496C620.301504 308.1144960000001 568.416 288 512 288C455.584 288 403.668 308.146496 376.5 340.562496z" />
<glyph glyph-name="futbol"
unicode="&#xF1E3;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C531.250016 736 549.624992 734 568 731L512 691L456 731C474.250016 733.875008 492.875008 736 512 736zM378 709L493 625L512 611L531 625L646 709C697.124992 687.749984 742.250016 655.249984 778 614L734 477L727 455L746 442L862 357C857.750016 300.624992 840.5 247.7499840000001 813 202L644 202L637 180L592 41C566.375008 35 539.5 32 512 32C483.375008 32 455.624992 35.624992 429 42L385 179L378 201L211 201C183 247 166.375008 300.124992 162 357L277 441L296 454L289 476L244 612C280 654.249984 325.875008 687.5 378 709zM512 573L493 559L347 453L329 439L336 417L392 246L399 224L625 224L632 246L688 417L695 439L677 453L531 559zM824 547C841.5 513.5 853 476.749984 859 438L802 479zM199 545L221 479L165 438C170.875008 476 182 512 199 545zM512 493L620 415L579 288L445 288L404 415zM691 138L763 138C735.750016 109.875008 704.375008 86.624992 669 69zM261 137L331 137L353 70C318.750016 87.375008 287.624992 110 261 137z" />
<glyph glyph-name="clone"
unicode="&#xF24D;"
horiz-adv-x="1024" d="M160 736L160 704L160 224L160 192L192 192L288 192L288 256L224 256L224 672L640 672L640 608L704 608L704 704L704 736L672 736L192 736L160 736zM320 576L320 544L320 64L320 32L352 32L832 32L864 32L864 64L864 544L864 576L832 576L352 576L320 576zM384 512L800 512L800 96L384 96L384 512z" />
<glyph glyph-name="share-square"
unicode="&#xF14D;"
horiz-adv-x="1024" d="M749.249984 754L704 708.75L837.375008 576L528 576C430.976 576 352 497.056 352 400C352 302.944 430.976 224 528 224L544 224L544 288L528 288C466.24 288 416 338.24 416 400C416 461.76 466.24 512 528 512L837.5 512L704.249984 378.750016L749.5 333.5L960 544L749.249984 754zM160 736L160 32L864 32L864 352L800 288L800 96L224 96L224 672L571.312512 672L635.312512 736L160 736z" />
<glyph glyph-name="copyright"
unicode="&#xF1F9;"
horiz-adv-x="1024" d="M512 800C282.624992 800 96 613.375008 96 384C96 154.624992 282.624992 -32 512 -32C741.375008 -32 928 154.624992 928 384C928 613.375008 741.375008 800 512 800zM512 736C706.750016 736 864 578.749984 864 384C864 189.2499840000001 706.750016 32 512 32C317.250016 32 160 189.2499840000001 160 384C160 578.749984 317.250016 736 512 736zM509 576C402.624992 576 317 490.375008 317 384C317 277.624992 402.624992 192 509 192C585.750016 192 651.375008 238 682 303L624 330C603.375008 286.124992 560.250016 256 509 256C436.124992 256 381 311.124992 381 384C381 456.875008 436.124992 512 509 512C560.250016 512 603.375008 481.875008 624 438L682 465C651.375008 530 585.750016 576 509 576z" />
<glyph glyph-name="bell"
unicode="&#xF0F3;"
horiz-adv-x="1024" d="M512 800C476.624992 800 448 771.375008 448 736C448 733.249984 448.624992 730.624992 449 728C338.375008 699.749984 256 599.249984 256 480L256 192C256 173.875008 242.124992 160 224 160L192 160L192 96L422 96C418.375008 85.875008 416 75.249984 416 64C416 11.375008 459.375008 -32 512 -32C564.624992 -32 608 11.375008 608 64C608 75.249984 605.624992 85.875008 602 96L832 96L832 160L800 160C781.875008 160 768 173.875008 768 192L768 471C768 591.249984 687.624992 698.5 575 728C575.375008 730.624992 576 733.249984 576 736C576 771.375008 547.375008 800 512 800zM498 672C502.624992 672.375008 507.250016 672 512 672C514 672 516 672 518 672C622.5 668.875008 704 577.249984 704 471L704 192C704 180.7499840000001 706.375008 170.124992 710 160L314 160C317.624992 170.124992 320 180.7499840000001 320 192L320 480C320 581.624992 398.250016 664.749984 498 672zM512 96C530 96 544 82 544 64C544 46 530 32 512 32C494 32 480 46 480 64C480 82 494 96 512 96z" />
<glyph glyph-name="paper--hand-"
unicode="&#xF256;"
horiz-adv-x="1024" d="M512 832C467.750016 832 431 801 420 760C408.750016 764.624992 396.875008 768 384 768C331.375008 768 288 724.624992 288 672L288 328L260 356C222.750016 393.249984 161.250016 393.249984 124 356C86.750016 318.7499840000001 86.750016 257.2499840000001 124 220L341 3C378.624992 -34.5 430.624992 -64 492 -64L640 -64C763.375008 -64 864 36.624992 864 160L864 544C864 596.624992 820.624992 640 768 640C756.750016 640 746.124992 637.624992 736 634L736 672C736 724.624992 692.624992 768 640 768C627.124992 768 615.250016 764.624992 604 760C593 801 556.250016 832 512 832zM512 768C530.124992 768 544 754.124992 544 736L544 416L608 416L608 672C608 690.124992 621.875008 704 640 704C658.124992 704 672 690.124992 672 672L672 416L736 416L736 544C736 562.124992 749.875008 576 768 576C786.124992 576 800 562.124992 800 544L800 160C800 71.249984 728.750016 0 640 0L492 0C451.250016 0 416.250016 19.875008 387 49L169 265C156.250016 277.7499840000001 156.250016 298.2499840000001 169 311C181.750016 323.7499840000001 202.250016 323.7499840000001 215 311L297 228L352 173L352 672C352 690.124992 365.875008 704 384 704C402.124992 704 416 690.124992 416 672L416 416L480 416L480 736C480 754.124992 493.875008 768 512 768z" />
<glyph glyph-name="scissors--hand-"
unicode="&#xF257;"
horiz-adv-x="1024" d="M365 673C338.5 673.5 316.5 668 303 664C302.624992 664 302.375008 664 302 664L222 639C128.124992 610.124992 64 523.124992 64 425L64 256C64 132.624992 164.624992 32 288 32L605 32C644 31.124992 681.750016 54 697 92C706.624992 116.124992 705.250016 141.5 696 164C715.624992 174.375008 732.250016 191.124992 741 213C751 238.124992 749.375008 264.875008 739 288L864 288C916.624992 288 960 331.375008 960 384C960 436.624992 916.624992 480 864 480L815 480L828 484C878.375008 499.249984 907.250016 553.624992 892 604C876.750016 654.375008 822.375008 683.249984 772 668L502 585C499.624992 591 496.875008 597.5 493 604C477 630.749984 444.624992 661 393 670C383.375008 671.624992 373.875008 672.875008 365 673zM804 608C816.5 606.624992 827.124992 598 831 585C836.250016 567.749984 826.250016 550.249984 809 545L590 479L601 443L601 416L864 416C882.124992 416 896 402.124992 896 384C896 365.875008 882.124992 352 864 352L653 352L569 385C556.875008 389.875008 544.375008 392.249984 532 392L515 523L791 607C795.375008 608.375008 799.875008 608.5 804 608zM364 607C370.124992 607 376.5 607 382 606C416.375008 600 429.624992 585 438 571C446.375008 557 447 547 447 547C447 546.375008 447 545.624992 447 545L474 339C474.250016 338 474.624992 337 475 336C479 319.124992 468.875008 303 452 299C441.624992 296.5 436.375008 297.875008 431 301C425.624992 304.124992 419 310.7499840000001 414 325L374 480C371.5 489.5 364.750016 497.249984 355.875008 501.124992C346.875008 505 336.624992 504.624992 328 500L275 471C259.5 462.5 253.875008 443 262.5 427.5C271 412 290.5 406.375008 306 415L322 424L353 306C353.250016 305 353.624992 304 354 303C362.624992 278.2499840000001 377.375008 258.375008 398 246C414.875008 235.875008 434.5 232 454 234C443.875008 224.624992 435.5 212.624992 430 199C415.375008 162.375008 424.624992 122.124992 451 96L288 96C199.250016 96 128 167.2499840000001 128 256L128 425C128 495.375008 173.750016 557.249984 241 578L321 602C327.5 604 345.750016 607 364 607zM538 327C540.375008 326.624992 542.624992 327 545 326L664 278C680.750016 271.2499840000001 688.750016 253.7499840000001 682 237C675.250016 220.2499840000001 656.750016 212.2499840000001 640 219L521 266C519.250016 266.624992 518.5 268.124992 517 269C529.624992 285.2499840000001 537.750016 305.7499840000001 538 327zM518 195C522.250016 195 526.750016 194.624992 531 193L574 176L616 159L620 158C636.750016 151.2499840000001 644.750016 132.7499840000001 638 116C633.124992 103.749984 622.250016 96.624992 610 96C609.624992 96 609.375008 96 609 96C604.750016 95.875008 600.250016 96.375008 596 98L507 134C490.250016 140.7499840000001 482.250016 159.2499840000001 489 176C492.375008 184.375008 498.5 189.7499840000001 506 193C509.750016 194.624992 513.750016 195 518 195z" />
<glyph glyph-name="bookmark"
unicode="&#xF02E;"
horiz-adv-x="1024" d="M224 736L224 0L275 38L512 216L749 38L800 0L800 736zM288 672L736 672L736 128L531 282L512 296L493 282L288 128z" />
<glyph glyph-name="grimacing-face"
unicode="&#xF57F;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM368 512A48 48 0 0 1 368 416A48 48 0 0 1 368 512zM656 512A48 48 0 0 1 656 416A48 48 0 0 1 656 512zM384 352C331.072 352 288 308.928 288 256C288 203.072 331.072 160 384 160L640 160C692.928 160 736 203.072 736 256C736 308.928 692.928 352 640 352L384 352zM384 288L416 288L416 224L384 224C366.336 224 352 238.336 352 256C352 273.664 366.336 288 384 288zM480 288L544 288L544 224L480 224L480 288zM608 288L640 288C657.664 288 672 273.664 672 256C672 238.336 657.664 224 640 224L608 224L608 288z" />
<glyph glyph-name="check-circle"
unicode="&#xF058;"
horiz-adv-x="1024" d="M512 800C281.624992 800 96 614.375008 96 384C96 153.624992 281.624992 -32 512 -32C742.375008 -32 928 153.624992 928 384C928 428.749984 922 473.375008 906 515L854 464C860.375008 438.375008 864 412.749984 864 384C864 188.7499840000001 707.250016 32 512 32C316.750016 32 160 188.7499840000001 160 384C160 579.249984 316.750016 736 512 736C608 736 694.250016 697.749984 755 637L800 682C726.375008 755.624992 624 800 512 800zM873 663L512 302L375 439L329 393L489 233L512 211L535 233L919 617z" />
<glyph glyph-name="alternate-calendar"
unicode="&#xF073;"
horiz-adv-x="1024" d="M288 768L288 736L160 736L160 32L864 32L864 736L736 736L736 768L672 768L672 736L352 736L352 768zM224 672L288 672L288 640L352 640L352 672L672 672L672 640L736 640L736 672L800 672L800 608L224 608zM224 544L800 544L800 96L224 96zM416 480L416 416L480 416L480 480zM544 480L544 416L608 416L608 480zM672 480L672 416L736 416L736 480zM288 352L288 288L352 288L352 352zM416 352L416 288L480 288L480 352zM544 352L544 288L608 288L608 352zM672 352L672 288L736 288L736 352zM288 224L288 160L352 160L352 224zM416 224L416 160L480 160L480 224zM544 224L544 160L608 160L608 224z" />
<glyph glyph-name="handshake"
unicode="&#xF2B5;"
horiz-adv-x="1024" d="M618 673C600.250016 672.875008 582.624992 672 564 667C545.375008 662 526.750016 654 507 641C482.5 655.375008 458.750016 667.249984 436 670C407.750016 673.5 381.5 671.624992 351 671C314.875008 670.249984 291.250016 651.749984 253 637C214.750016 622.249984 165.5 608 96 608L64 608L64 300L82 291L141 262L351 28L352 27C376 3.249984 408.375008 -2.624992 437 -1C465.624992 0.624992 492.5 9 514 22C561.250016 50.5 690 140 690 140L693 142L695 144C710.250016 159.124992 717.875008 177.624992 723 197L846 259L938 290L960 297L960 608L928 608C858.624992 608 809.250016 623 771 638C732.750016 653 709.5 671.249984 673 672C653.5 672.375008 635.750016 673.124992 618 673zM619 609C633.375008 609.124992 650 608.375008 671 608C674.375008 607.875008 705.124992 594.749984 748 578C784.250016 563.749984 834.624992 551.124992 896 547L896 343L822 318L820 318L818 317L721 268C715.624992 282.624992 708.250016 296.124992 697 308L695 311L559 478L539 503L514 483L428 413C399.124992 393 375.750016 398.749984 352 410C345.124992 413.249984 345.5 414.249984 340 418L486 539L488 541C531.375008 584 558 598.875008 581 605C592.5 608.124992 604.624992 608.875008 619 609zM396 608C408.250016 608.249984 418.5 608.124992 428 607C436.375008 606 445.875008 598.875008 454 596C450.750016 593 448.375008 591.249984 445 588C444.250016 587.249984 443.750016 586.749984 443 586L268 441L241 419L265 394C265 394 288.124992 369 324 352C359.875008 335 415.250016 325.375008 465 360L467 362L529 413L647 268L648 266L649 265C670.124992 244.124992 669.624992 211.2499840000001 649 190C648.750016 189.7499840000001 649.250016 189.2499840000001 649 189C648.750016 188.875008 644.5 186.375008 644 186L602 243L550 205L591 150C574.375008 138.7499840000001 566.875008 132.875008 549 121L506 179L454 141L495 86C491.375008 83.749984 483.875008 78.749984 481 77C470.875008 70.875008 451.375008 64 434 63C417.624992 62.124992 405.124992 65.875008 399 71L398 72L184 309L180 314L128 340L128 547C189.124992 551 239.875008 563.124992 276 577C318.750016 593.375008 349.250016 606.875008 353 607C369.375008 607.375008 383.750016 607.749984 396 608z" />
<glyph glyph-name="grinning-face-with-sweat"
unicode="&#xF583;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 449.728 912.264 511.734496 885 567.062496C875.4 544.438496 859.675488 525.224512 840.187488 510.312512C855.355488 471.048512 864 428.544 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736C555.232 736 596.508512 727.804 634.812512 713.5C643.132512 732.444 652.731008 751.922 662.875008 771.25C616.027008 789.554 565.248 800 512 800zM752 800C752 800 672 663.2124992 672 620.8124992C672 578.4124992 707.84 544 752 544C796.16 544 832 578.4124992 832 620.8124992C832 663.2124992 752 800 752 800zM288 448L288 384L448 384L448 448L288 448zM576 448L576 384L736 384L736 448L576 448z" />
<glyph glyph-name="identification-badge"
unicode="&#xF2C1;"
horiz-adv-x="1024" d="M480 800C445 800 416 771 416 736L224 736L224 0L800 0L800 736L608 736C608 771 579 800 544 800zM480 736L544 736L544 672L480 672zM288 672L416 672L416 608L608 608L608 672L736 672L736 64L288 64zM512 544C441.624992 544 384 486.375008 384 416C384 380.375008 399.250016 348.2499840000001 423 325C380.375008 296.124992 352 247 352 192L416 192C416 245.375008 458.624992 288 512 288C565.375008 288 608 245.375008 608 192L672 192C672 247 643.624992 296.124992 601 325C624.750016 348.2499840000001 640 380.375008 640 416C640 486.375008 582.375008 544 512 544zM512 480C547.750016 480 576 451.749984 576 416C576 380.2499840000001 547.750016 352 512 352C476.250016 352 448 380.2499840000001 448 416C448 451.749984 476.250016 480 512 480z" />
<glyph glyph-name="rock--hand-"
unicode="&#xF255;"
horiz-adv-x="1024" d="M480 704C446 704 416.124992 686 399 659C385 667 369.124992 672 352 672C299.375008 672 256 628.624992 256 576L256 459L189 373C148.124992 320.124992 150.875008 244.2499840000001 195 194L271 108C313.5 59.624992 374.624992 32 439 32L608 32C731.375008 32 832 132.624992 832 256L832 544C832 596.624992 788.624992 640 736 640C718.875008 640 703 635 689 627C671.875008 654 642 672 608 672C590.875008 672 575 667 561 659C543.875008 686 514 704 480 704zM480 640C498.124992 640 512 626.124992 512 608L512 512L576 512L576 576C576 594.124992 589.875008 608 608 608C626.124992 608 640 594.124992 640 576L640 512L704 512L704 544C704 562.124992 717.875008 576 736 576C754.124992 576 768 562.124992 768 544L768 256C768 167.2499840000001 696.750016 96 608 96L439 96C393 96 349.375008 115.375008 319 150L243 237C218.875008 264.5 217.624992 304 240 333L256 354L256 320L320 320L320 576C320 594.124992 333.875008 608 352 608C370.124992 608 384 594.124992 384 576L384 512L448 512L448 608C448 626.124992 461.875008 640 480 640z" />
<glyph glyph-name="face-with-rolling-eyes"
unicode="&#xF5A5;"
horiz-adv-x="1024" d="M512 800C282.624 800 96 613.376 96 384C96 154.624 282.624 -32 512 -32C741.376 -32 928 154.624 928 384C928 613.376 741.376 800 512 800zM512 736C706.08 736 864 578.0799999999999 864 384C864 189.92 706.08 32 512 32C317.92 32 160 189.92 160 384C160 578.0799999999999 317.92 736 512 736zM352 576C281.408 576 224 518.592 224 448C224 377.408 281.408 320 352 320C422.592 320 480 377.408 480 448C480 518.592 422.592 576 352 576zM672 576C601.408 576 544 518.592 544 448C544 377.408 601.408 320 672 320C742.592 320 800 377.408 800 448C800 518.592 742.592 576 672 576zM320.624992 503.437504A48 48 0 0 1 368 448A48 48 0 0 1 410.437504 473.750016C413.934432 465.848384 416 457.183616 416 448C416 412.704 387.296 384 352 384C316.704 384 288 412.704 288 448C288 471.836896 301.2527584 492.424512 320.624992 503.437504zM703.375008 503.437504C722.747232 492.424512 736 471.836896 736 448C736 412.704 707.296 384 672 384C636.704 384 608 412.704 608 448C608 457.183616 610.065568 465.848384 613.562496 473.750016A48 48 0 0 1 656 448A48 48 0 0 1 703.375008 503.437504zM384 256L384 192L640 192L640 256L384 256z" />
<glyph glyph-name="alternate-trash"
unicode="&#xF2ED;"
horiz-adv-x="1024" d="M480 768C463.250016 768 446.124992 762.124992 434 750C421.875008 737.875008 416 720.749984 416 704L416 672L224 672L224 608L256 608L256 96C256 43.375008 299.375008 0 352 0L736 0C788.624992 0 832 43.375008 832 96L832 608L864 608L864 672L672 672L672 704C672 720.749984 666.124992 737.875008 654 750C641.875008 762.124992 624.750016 768 608 768zM480 704L608 704L608 672L480 672zM320 608L768 608L768 96C768 78.249984 753.750016 64 736 64L352 64C334.250016 64 320 78.249984 320 96zM384 512L384 160L448 160L448 512zM512 512L512 160L576 160L576 512zM640 512L640 160L704 160L704 512z" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 902 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 26.199219 12.832031 C 22.875 12.832031 20.910156 15.984375 20.785156 15.984375 C 20.660156 15.984375 18.707031 12.832031 15.355469 12.832031 C 12.007813 12.832031 11.050781 15.984375 10.949219 15.984375 C 10.847656 15.984375 10.078125 13.398438 7.183594 13.398438 C 4.839844 13.398438 4.511719 14.476563 4.3125 14.476563 C 4.3125 14.476563 4.488281 13.320313 4.839844 11.261719 L 10.621094 11.261719 L 10.621094 9 L 2.800781 9 L 1.480469 16.574219 L 4.011719 16.574219 C 4.011719 16.574219 4.589844 15.507813 6.125 15.507813 C 7.660156 15.507813 8.59375 16.6875 8.59375 18.019531 C 8.59375 19.347656 7.5625 20.804688 6.125 20.804688 C 4.691406 20.804688 3.859375 19.574219 3.859375 18.722656 C 2.675781 18.722656 1.039063 18.722656 1.039063 18.722656 C 1.039063 19.476563 1.644531 23 6.125 23 C 9.777344 23 10.949219 20.277344 10.949219 19.953125 C 10.949219 20.226563 12.359375 23 15.359375 23 C 18.835938 23 20.585938 19.953125 20.785156 19.953125 C 20.988281 19.953125 23.054688 23 26.203125 23 C 29.351563 23 30.964844 20.226563 30.964844 17.890625 C 30.960938 15.554688 29.527344 12.832031 26.199219 12.832031 Z M 19.105469 17.9375 L 19.101563 17.9375 C 19.082031 17.964844 17.15625 20.300781 15.371094 20.300781 C 13.578125 20.300781 13.246094 18.515625 13.246094 17.9375 C 13.246094 17.359375 13.578125 15.574219 15.371094 15.574219 C 17.15625 15.574219 19.082031 17.910156 19.101563 17.9375 Z M 28.347656 17.9375 C 28.347656 18.515625 28.015625 20.304688 26.222656 20.304688 C 24.441406 20.304688 22.515625 17.96875 22.492188 17.941406 L 22.492188 17.9375 C 22.515625 17.910156 24.441406 15.574219 26.222656 15.574219 C 28.015625 15.574219 28.347656 17.363281 28.347656 17.9375 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 24 4 C 22.355469 4 21 5.355469 21 7 C 21 8.644531 22.355469 10 24 10 C 25.644531 10 27 8.644531 27 7 C 27 5.355469 25.644531 4 24 4 Z M 24 6 C 24.5625 6 25 6.4375 25 7 C 25 7.5625 24.5625 8 24 8 C 23.4375 8 23 7.5625 23 7 C 23 6.4375 23.4375 6 24 6 Z M 18.5625 9.03125 L 14.96875 9.4375 C 14.398438 9.503906 13.921875 9.84375 13.59375 10.3125 L 13.5625 10.28125 L 13.53125 10.34375 L 11.21875 13.40625 L 12.78125 14.59375 L 15.15625 11.5 L 15.21875 11.4375 L 17.40625 11.1875 L 15.71875 15.03125 C 13.464844 15.121094 11.464844 16.261719 10.25 18 L 13.03125 18 C 13.863281 17.378906 14.886719 17 16 17 C 18.757813 17 21 19.242188 21 22 C 21 24.757813 18.757813 27 16 27 C 14.371094 27 12.945313 26.207031 12.03125 25 L 9.6875 25 C 10.8125 27.359375 13.214844 29 16 29 C 19.859375 29 23 25.859375 23 22 C 23 21.660156 22.953125 21.328125 22.90625 21 L 24.875 21 L 23.34375 26.75 L 25.28125 27.25 L 26.9375 21.03125 L 27 20.8125 L 26.96875 20.5625 C 26.769531 19.648438 25.933594 19 25 19 L 22.3125 19 C 22.019531 18.386719 21.636719 17.84375 21.1875 17.34375 L 22.8125 13.9375 L 22.84375 13.875 L 22.84375 13.84375 C 23.347656 12.449219 22.742188 10.886719 21.4375 10.1875 L 19.75 9.25 L 19.75 9.28125 C 19.390625 9.089844 18.964844 8.984375 18.5625 9.03125 Z M 19.46875 11.375 L 20.5 11.9375 C 20.945313 12.175781 21.140625 12.683594 20.96875 13.15625 L 19.59375 16 C 19.035156 15.664063 18.429688 15.421875 17.78125 15.25 Z M 7 19 L 7 21 L 14 21 L 14 19 Z M 4 22 L 4 24 L 17 24 L 17 22 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18.740234 6 C 18.218234 6 12.780203 6.0222031 12.283203 6.0332031 C 11.288203 6.0332031 10.576109 6.0228906 11.287109 6.8378906 C 11.689109 7.2828906 23.845578 21.083203 24.142578 21.408203 C 24.829578 22.180203 25.221187 22.038516 25.742188 21.853516 C 25.907187 21.799516 31.723797 19.594297 31.841797 19.529297 C 32.255797 19.323297 31.758609 18.736156 31.474609 18.410156 C 31.367609 18.302156 20.848469 6.739375 20.730469 6.609375 C 20.232469 6.033375 19.996234 6 18.740234 6 z M 13.455078 13 C 13.455078 13 12.854797 13.077375 12.216797 13.734375 C 11.762797 14.172375 0.19104688 24.617078 0.12304688 24.705078 C -0.22895313 25.187078 0.20420312 25.033969 0.90820312 24.792969 C 0.94220313 24.792969 5.6503906 23.310547 5.6503906 23.310547 C 5.6843906 23.277547 5.6495938 23.299344 5.6835938 23.277344 C 5.6615938 23.036344 5.6496719 22.030844 5.6386719 21.964844 C 5.6046719 21.712844 5.7424688 21.635109 5.9804688 21.537109 L 11.515625 19.582031 C 11.549625 19.549031 15.921 16.141453 16 16.064453 L 16 16.009766 L 13.455078 13 z M 15.775391 20 C 15.624391 20.011 15.288922 20.044578 15.044922 20.142578 C 14.801922 20.240578 7.6807813 22.375891 7.4257812 22.462891 C 7.1707813 22.560891 6.8454219 22.637266 6.8574219 22.822266 C 6.8694219 22.942266 6.9625625 22.954047 7.1015625 22.998047 C 7.2285625 23.030047 22.362656 26.644703 22.722656 26.720703 C 23.511656 26.872703 24.670547 27.221875 25.435547 26.796875 C 25.551547 26.741875 31.722172 22.723203 31.826172 22.658203 C 32.093172 22.462203 32.045422 22.332578 31.732422 22.267578 C 31.616422 22.256578 30.492594 22.12 29.808594 22 C 29.808594 22 23.974703 24.328813 23.845703 24.382812 C 23.034703 24.731813 22.477234 24.228594 21.990234 23.683594 L 19.091797 20.447266 C 18.812797 20.404266 16.030391 19.989 15.775391 20 z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 7.2480469 3 C 7.0600469 3 6.9718125 3.0565313 7.0078125 3.2695312 C 7.1228125 3.9395312 6.9657969 3.3093594 7.3417969 5.5683594 C 10.648797 5.5683594 11.087344 5.61475 12.652344 5.59375 C 13.294344 5.58375 14.582141 5.7727969 14.619141 6.7167969 C 14.640141 7.2957969 14.561969 7.2893437 12.917969 11.152344 C 10.110969 17.741344 10.27225 17.260172 9.40625 19.326172 C 9.31825 19.534172 9.2207187 19.589844 9.0117188 19.589844 C 8.5687188 19.579844 8.1235469 19.575703 7.6855469 19.595703 C 7.5865469 19.600703 7.4144375 19.686813 7.3984375 19.757812 C 7.3214375 20.162813 7.285375 20.571 7.234375 21 L 13 21 L 13 19.619141 C 12.64 19.619141 11.447516 19.639656 11.353516 19.472656 C 11.629516 18.848656 11.895875 18.233375 12.171875 17.609375 C 13.021875 17.812375 13.952484 18.005125 14.771484 18.203125 C 14.948484 18.249125 15.011719 18.355828 15.011719 18.548828 C 15.006719 20.726828 15.016484 22.909891 15.021484 25.087891 C 15.021484 25.605891 14.734141 26.058719 14.244141 26.261719 C 13.905141 26.398719 13.955922 26.433813 7.7949219 26.382812 C 7.5189219 26.382812 7.4244375 26.485516 7.3984375 26.728516 C 7.3204375 27.383516 7.2486719 28.042266 7.1386719 28.697266 C 7.0966719 28.951266 7.2060625 28.986328 7.4140625 28.986328 C 16.971063 29.016328 5.8110469 28.986328 24.998047 28.986328 C 24.868047 28.225328 24.768297 27.495531 24.654297 26.769531 C 24.592297 26.377531 24.587297 26.382812 24.154297 26.382812 C 18.948297 26.392813 18.123172 26.26 18.076172 26.25 C 17.434172 26.164 17.001469 25.716172 16.980469 25.076172 C 16.975469 24.995172 16.969734 21.442438 16.927734 18.523438 C 16.922734 18.284437 17.011328 18.198578 17.236328 18.142578 C 17.888328 17.990578 18.735812 17.832391 19.382812 17.650391 C 19.606813 17.584391 19.737312 17.640125 19.820312 17.828125 C 20.055312 18.351125 20.279766 18.873484 20.509766 19.396484 C 20.592766 19.584484 20.514031 19.619141 20.332031 19.619141 C 19.810031 19.609141 19.543953 19.615234 19.001953 19.615234 L 19.001953 20.986328 L 24.798828 20.986328 C 24.725828 20.504328 24.657844 20.066844 24.589844 19.589844 C 24.224844 19.589844 23.869391 19.610938 23.525391 19.585938 C 22.346391 19.504938 22.569578 19.361203 19.142578 11.533203 C 18.683578 10.513203 17.687281 8.3818594 17.238281 7.0058594 C 17.009281 6.2948594 17.525609 5.71725 18.224609 5.65625 C 19.194609 5.57025 20.18025 5.5756875 21.15625 5.5546875 C 22.23125 5.5346875 23.305859 5.5342969 24.380859 5.5292969 C 24.542859 5.5292969 24.590469 5.4575469 24.605469 5.3105469 C 24.668469 4.8135469 24.746453 4.320125 24.814453 3.828125 C 24.856453 3.559125 24.897453 3.2857188 24.939453 3.0117188 L 7.2480469 3 z M 15.824219 8.8378906 C 16.215219 8.9598906 16.236453 8.7968906 16.314453 8.8378906 C 16.799453 9.9798906 17.257656 11.889016 17.722656 13.041016 C 18.066656 13.889016 18.401953 14.742 18.751953 15.625 C 18.686953 15.665 18.618828 15.700422 18.548828 15.732422 C 17.865828 15.930422 17.170187 16.113172 16.492188 16.326172 C 16.180188 16.432172 15.84225 16.432172 15.53125 16.326172 C 14.83725 16.113172 14.144172 15.910406 13.451172 15.691406 C 13.347172 15.649406 13.245437 15.600922 13.148438 15.544922 C 14.045438 13.295922 14.932219 11.071891 15.824219 8.8378906 z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 2 7 L 2 25 L 30 25 L 30 7 L 2 7 z M 4 9 L 28 9 L 28 23 L 4 23 L 4 9 z M 11.71875 11 L 11.5 11.6875 L 9.03125 19.40625 L 9 19.5625 L 9 21 L 11 21 L 11 20 L 14 20 L 14 21 L 16 21 L 16 19.5625 L 15.96875 19.40625 L 13.5 11.6875 L 13.28125 11 L 11.71875 11 z M 21 11 L 21 15 L 19.5 15 C 18.133 15 17 16.133 17 17.5 L 17 18.5 C 17 19.867 18.133 21 19.5 21 L 23 21 L 23 11 L 21 11 z M 12.5 15.15625 L 13.40625 18 L 11.59375 18 L 12.5 15.15625 z M 19.5 17 L 21 17 L 21 19 L 19.5 19 C 19.215 19 19 18.785 19 18.5 L 19 17.5 C 19 17.215 19.215 17 19.5 17 z"/></svg>

After

Width:  |  Height:  |  Size: 626 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 6 4 L 6 9 L 5 9 L 5 11 L 8 11 L 8 6 L 24 6 L 24 26 L 8 26 L 8 23 L 6 23 L 6 28 L 26 28 L 26 4 Z M 16 10 C 13.800781 10 12 11.800781 12 14 C 12 15.113281 12.476563 16.117188 13.21875 16.84375 C 11.886719 17.746094 11 19.285156 11 21 L 13 21 C 13 19.34375 14.34375 18 16 18 C 17.65625 18 19 19.34375 19 21 L 21 21 C 21 19.285156 20.113281 17.746094 18.78125 16.84375 C 19.523438 16.117188 20 15.113281 20 14 C 20 11.800781 18.199219 10 16 10 Z M 6 12 L 6 14 L 5 14 L 5 16 L 8 16 L 8 12 Z M 16 12 C 17.117188 12 18 12.882813 18 14 C 18 15.117188 17.117188 16 16 16 C 14.882813 16 14 15.117188 14 14 C 14 12.882813 14.882813 12 16 12 Z M 6 17 L 6 19 L 5 19 L 5 21 L 8 21 L 8 17 Z"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 6 4 L 6 9 L 5 9 L 5 11 L 8 11 L 8 6 L 24 6 L 24 26 L 8 26 L 8 23 L 6 23 L 6 28 L 26 28 L 26 4 Z M 16 10 C 13.800781 10 12 11.800781 12 14 C 12 15.113281 12.476563 16.117188 13.21875 16.84375 C 11.886719 17.746094 11 19.285156 11 21 L 13 21 C 13 19.34375 14.34375 18 16 18 C 17.65625 18 19 19.34375 19 21 L 21 21 C 21 19.285156 20.113281 17.746094 18.78125 16.84375 C 19.523438 16.117188 20 15.113281 20 14 C 20 11.800781 18.199219 10 16 10 Z M 6 12 L 6 14 L 5 14 L 5 16 L 8 16 L 8 12 Z M 16 12 C 17.117188 12 18 12.882813 18 14 C 18 15.117188 17.117188 16 16 16 C 14.882813 16 14 15.117188 14 14 C 14 12.882813 14.882813 12 16 12 Z M 6 17 L 6 19 L 5 19 L 5 21 L 8 21 L 8 17 Z"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 6 L 3 26 L 29 26 L 29 6 Z M 5 8 L 27 8 L 27 24 L 23.59375 24 C 23.515625 23.863281 23.550781 23.675781 23.4375 23.5625 C 23.058594 23.183594 22.523438 23 22 23 C 21.476563 23 20.941406 23.183594 20.5625 23.5625 C 20.449219 23.675781 20.484375 23.863281 20.40625 24 L 11.59375 24 C 11.515625 23.863281 11.550781 23.675781 11.4375 23.5625 C 11.058594 23.183594 10.523438 23 10 23 C 9.476563 23 8.941406 23.183594 8.5625 23.5625 C 8.449219 23.675781 8.484375 23.863281 8.40625 24 L 5 24 Z M 12 10 C 9.800781 10 8 11.800781 8 14 C 8 15.113281 8.476563 16.117188 9.21875 16.84375 C 7.886719 17.746094 7 19.285156 7 21 L 9 21 C 9 19.34375 10.34375 18 12 18 C 13.65625 18 15 19.34375 15 21 L 17 21 C 17 19.285156 16.113281 17.746094 14.78125 16.84375 C 15.523438 16.117188 16 15.113281 16 14 C 16 11.800781 14.199219 10 12 10 Z M 12 12 C 13.117188 12 14 12.882813 14 14 C 14 15.117188 13.117188 16 12 16 C 10.882813 16 10 15.117188 10 14 C 10 12.882813 10.882813 12 12 12 Z M 19 13 L 19 15 L 25 15 L 25 13 Z M 19 17 L 19 19 L 25 19 L 25 17 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 6 L 3 26 L 29 26 L 29 6 Z M 5 8 L 27 8 L 27 24 L 23.59375 24 C 23.515625 23.863281 23.550781 23.675781 23.4375 23.5625 C 23.058594 23.183594 22.523438 23 22 23 C 21.476563 23 20.941406 23.183594 20.5625 23.5625 C 20.449219 23.675781 20.484375 23.863281 20.40625 24 L 11.59375 24 C 11.515625 23.863281 11.550781 23.675781 11.4375 23.5625 C 11.058594 23.183594 10.523438 23 10 23 C 9.476563 23 8.941406 23.183594 8.5625 23.5625 C 8.449219 23.675781 8.484375 23.863281 8.40625 24 L 5 24 Z M 12 10 C 9.800781 10 8 11.800781 8 14 C 8 15.113281 8.476563 16.117188 9.21875 16.84375 C 7.886719 17.746094 7 19.285156 7 21 L 9 21 C 9 19.34375 10.34375 18 12 18 C 13.65625 18 15 19.34375 15 21 L 17 21 C 17 19.285156 16.113281 17.746094 14.78125 16.84375 C 15.523438 16.117188 16 15.113281 16 14 C 16 11.800781 14.199219 10 12 10 Z M 12 12 C 13.117188 12 14 12.882813 14 14 C 14 15.117188 13.117188 16 12 16 C 10.882813 16 10 15.117188 10 14 C 10 12.882813 10.882813 12 12 12 Z M 19 13 L 19 15 L 25 15 L 25 13 Z M 19 17 L 19 19 L 25 19 L 25 17 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.382813 4 4 9.382813 4 16 C 4 22.617188 9.382813 28 16 28 C 22.617188 28 28 22.617188 28 16 C 28 9.382813 22.617188 4 16 4 Z M 16 6 L 16 26 C 10.464844 26 6 21.535156 6 16 C 6 10.464844 10.464844 6 16 6 Z"/></svg>

After

Width:  |  Height:  |  Size: 292 B

1
docs/static/icons/line-awesome/svg/adn.svg vendored Executable file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.382813 4 4 9.382813 4 16 C 4 22.617188 9.382813 28 16 28 C 22.617188 28 28 22.617188 28 16 C 28 9.382813 22.617188 4 16 4 Z M 16 6 C 21.535156 6 26 10.464844 26 16 C 26 21.535156 21.535156 26 16 26 C 10.464844 26 6 21.535156 6 16 C 6 10.464844 10.464844 6 16 6 Z M 16 9.9375 L 9.40625 19.84375 L 11 19.84375 L 12.53125 17.53125 L 19.46875 17.53125 L 21.03125 19.84375 L 22.625 19.84375 Z M 16 12.34375 L 18.84375 16.59375 L 13.15625 16.59375 Z"/></svg>

After

Width:  |  Height:  |  Size: 532 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 6 L 4 26 L 12.900391 6 L 4 6 z M 19.099609 6 L 28 26 L 28 6 L 19.099609 6 z M 16 13.400391 L 12.099609 22 L 16.197266 22 L 17.796875 26 L 21.599609 26 L 16 13.400391 z"/></svg>

After

Width:  |  Height:  |  Size: 249 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5.3457031 5 C 4.2727031 5 4 5.2774687 4 6.3554688 L 4 24.646484 C 4 25.737484 4.2727031 26 5.3457031 26 L 26.597656 26 C 27.741656 26 28 25.755422 28 24.607422 L 28 6.4160156 C 28 5.2620156 27.746656 5 26.597656 5 L 5.3457031 5 z M 24.931641 7.0859375 C 25.073641 7.0859375 25.234953 7.1039375 25.376953 7.0859375 C 25.839953 7.0499375 26 7.2862344 26 7.7402344 C 25.995 7.7492344 25.994141 7.7546719 25.994141 7.7636719 L 26 7.7636719 L 26 21.109375 C 26 21.370375 25.962047 21.746094 25.623047 21.746094 C 25.054047 21.728094 24.36375 22.073234 23.96875 21.490234 C 23.70275 21.091234 23.609437 21.307547 23.398438 21.435547 C 20.949438 22.797547 17.524344 21.760344 16.777344 17.527344 C 16.497344 15.995344 16.744094 14.450406 17.496094 12.941406 C 18.037094 11.845406 20.106281 9.4519687 23.738281 11.542969 L 23.738281 8.2871094 C 23.738281 7.0851094 23.734641 7.0859375 24.931641 7.0859375 z M 10.847656 10.675781 C 11.808406 10.643656 12.773875 10.833422 13.734375 11.232422 C 15.611375 12.002422 15 13.946 15 17.125 C 15.124 18.308 14.803734 19.799266 15.427734 21.197266 C 15.514734 21.399266 15.444734 21.5585 15.302734 21.6875 C 14.917734 21.9945 13.819375 21.789609 13.484375 21.349609 C 13.397375 21.248609 13.400688 21.183453 13.304688 21.064453 C 13.139688 20.885453 12.970766 20.964328 12.759766 21.111328 C 10.127766 22.780328 6.3255781 22.092 6.0175781 19.125 C 5.8755781 17.781 6.5850312 16.506141 7.8320312 15.869141 C 9.5840313 14.975141 12.786141 15.327172 12.869141 14.451172 C 12.920141 13.982172 12.782563 13.529219 12.351562 13.199219 C 11.090563 12.273219 9.2366406 12.799484 8.6816406 14.271484 C 8.4846406 14.780484 8.2549063 14.707344 7.8789062 14.652344 C 7.4339062 14.583344 7.0906562 14.505391 6.8476562 14.400391 C 5.5266563 13.877391 7.2402812 11.864172 7.9882812 11.451172 C 8.9307812 10.960672 9.8869063 10.707906 10.847656 10.675781 z M 21.308594 13.003906 C 20.595219 13.039406 19.911563 13.435406 19.539062 14.191406 C 18.813063 15.667406 18.831484 17.214406 19.521484 18.691406 C 20.303484 20.380406 22.743766 20.571938 23.634766 18.460938 C 23.944766 17.728938 24.205672 15.254516 23.263672 13.978516 C 22.765672 13.293516 22.021969 12.968406 21.308594 13.003906 z M 12.867188 17.013672 C 12.816937 16.996266 12.746484 16.995828 12.646484 17.017578 C 11.548484 17.227578 10.428078 17.400203 9.3300781 17.658203 C 8.7900781 17.780203 8.4214531 18.178156 8.4394531 18.785156 C 8.4704531 19.855156 9.6180781 19.943 9.9550781 20 C 11.822078 20.017 13.061047 18.872641 12.998047 17.431641 C 12.984547 17.264391 13.017938 17.065891 12.867188 17.013672 z M 6.2929688 23.005859 C 6.4523437 22.980609 6.6477344 23.037109 6.8027344 23.037109 C 13.004734 23.018109 19.020656 23.01225 25.222656 23.03125 C 25.540656 23.03125 26 22.824141 26 23.494141 C 26 24.202141 25.480016 23.958984 25.166016 23.958984 L 6.8359375 23.966797 C 6.4889375 23.966797 5.9829531 24.191844 6.0019531 23.464844 C 6.0114531 23.138844 6.1335938 23.031109 6.2929688 23.005859 z"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 12.103516 5 C 10.236794 5.0156311 7.3762969 6.9496406 5.0371094 9.9550781 C 2.1581094 13.654078 1.14725 17.559313 2.78125 18.695312 C 4.41525 19.821312 8.0838906 17.733156 10.962891 14.035156 C 13.841891 10.336156 14.85275 6.4326406 13.21875 5.3066406 C 12.912375 5.0955156 12.534298 4.9963928 12.103516 5 z M 29.984375 11 C 26.183375 17.359 20.088375 20.541625 16.359375 18.265625 C 15.075375 17.479625 14.285141 15.815 13.994141 14 C 12.018141 17.66 8.208 20.903 4 22 C 6.681 25.188 10.838453 27 15.314453 27 C 23.401453 27 29.960937 20.378172 29.960938 12.201172 C 29.970937 11.742172 30.027375 11.437 29.984375 11 z"/></svg>

After

Width:  |  Height:  |  Size: 699 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 2 C 14.346 2 13 3.346 13 5 C 13 5.8539348 13.362793 6.6210736 13.9375 7.1679688 L 9.0566406 14 L 11.132812 14 L 7.1328125 20 L 15 20 L 15 22 L 9 22 L 9 28 L 23 28 L 23 22 L 17 22 L 17 20 L 24.867188 20 L 20.867188 14 L 22.943359 14 L 18.064453 7.1679688 C 18.638521 6.6211354 19 5.8533927 19 5 C 19 3.346 17.654 2 16 2 z M 16 4 C 16.552 4 17 4.449 17 5 C 17 5.403728 16.755875 5.7485476 16.410156 5.90625 L 16.333984 5.9335938 C 16.228448 5.9715653 16.118533 6 16 6 C 15.881467 6 15.771552 5.9715653 15.666016 5.9335938 L 15.589844 5.90625 C 15.244125 5.7485476 15 5.403728 15 5 C 15 4.449 15.448 4 16 4 z M 15.806641 7.9921875 C 15.844887 7.9948558 15.883381 7.9911014 15.921875 7.9921875 C 15.948472 7.9928879 15.973237 8 16 8 C 16.026763 8 16.051528 7.9928879 16.078125 7.9921875 C 16.117273 7.9911103 16.156418 7.9949011 16.195312 7.9921875 L 19.056641 12 L 17.132812 12 L 21.132812 18 L 10.867188 18 L 14.867188 12 L 12.943359 12 L 15.806641 7.9921875 z M 11 24 L 21 24 L 21 26 L 11 26 L 11 24 z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16.019531 4 C 14.800531 4 13.670266 4.5362969 12.822266 5.5292969 C 12.458266 5.9782969 12.195797 6.4540938 11.966797 6.8710938 L 11.921875 6.9609375 C 11.758875 7.2879375 11.586625 7.6279531 11.390625 8.0019531 L 11.347656 8.0976562 C 9.4156562 11.920656 7.7495156 15.392766 6.2285156 18.759766 L 6.1328125 18.966797 C 6.0678125 19.107797 6.0032656 19.252813 5.9472656 19.382812 L 5.8652344 19.560547 C 5.8052344 19.692547 5.7453125 19.826313 5.6953125 19.945312 C 5.5783125 20.211312 5.4600313 20.488125 5.3320312 20.828125 C 5.0190312 21.755125 4.9297812 22.596328 5.0507812 23.486328 C 5.3217813 25.323328 6.5394688 26.901469 8.2304688 27.605469 C 8.8754688 27.871469 9.5277031 28 10.220703 28 C 10.373703 28 10.602422 27.988125 10.857422 27.953125 C 11.693422 27.845125 12.507719 27.562094 13.261719 27.121094 C 14.14109 26.62514 15.005559 25.910936 15.966797 24.884766 L 16.005859 24.9375 L 16.021484 24.916016 C 16.920322 25.877945 17.791811 26.601406 18.675781 27.113281 C 19.443781 27.562281 20.257172 27.844219 21.076172 27.949219 C 21.343172 27.987219 21.575234 28 21.740234 28 C 22.424234 28 23.083891 27.870703 23.712891 27.595703 L 23.712891 27.597656 C 25.386891 26.925656 26.599625 25.379781 26.890625 23.550781 L 26.919922 23.386719 C 27.077922 22.607719 27.0005 21.777422 26.6875 20.857422 C 26.6475 20.738422 26.596359 20.6205 26.568359 20.5625 C 26.491359 20.3555 26.407844 20.160812 26.339844 20.007812 C 26.280844 19.859812 26.215344 19.720938 26.152344 19.585938 L 25.994141 19.228516 C 25.941141 19.108516 25.891938 18.990047 25.835938 18.873047 L 25.771484 18.748047 C 24.127484 15.121047 22.414594 11.555344 20.683594 8.1523438 L 20.599609 7.984375 C 20.415609 7.644375 20.230156 7.274 20.035156 6.875 L 19.978516 6.765625 C 19.773516 6.394625 19.563094 6.0137656 19.246094 5.6347656 L 19.199219 5.5742188 C 18.407219 4.5582187 17.277531 4 16.019531 4 z M 15.992188 6.0214844 C 16.583312 6.0122344 17.165719 6.2550469 17.574219 6.7480469 L 17.679688 6.8808594 C 17.889688 7.1208594 18.038078 7.3905 18.205078 7.6875 L 18.265625 7.8183594 C 18.450625 8.1873594 18.645172 8.5781562 18.826172 8.9101562 L 18.898438 9.0566406 C 20.619438 12.438641 22.3185 15.976875 23.9375 19.546875 L 24.080078 19.863281 L 24.091797 19.875 C 24.113797 19.925 24.136203 19.974391 24.158203 20.025391 L 24.337891 20.427734 C 24.385891 20.532734 24.435047 20.639016 24.498047 20.791016 C 24.560047 20.932016 24.629797 21.089359 24.716797 21.318359 C 24.742797 21.378359 24.771969 21.439 24.792969 21.5 L 24.794922 21.505859 C 25.003922 22.115859 25.049312 22.608734 24.945312 23.052734 L 24.919922 23.201172 C 24.748922 24.354172 24.000297 25.328484 22.904297 25.771484 C 22.580297 25.918484 22.167234 26 21.740234 26 C 21.646234 26 21.514703 25.991797 21.345703 25.966797 C 20.778703 25.894797 20.218688 25.699766 19.679688 25.384766 C 18.89316 24.929355 18.096613 24.245428 17.248047 23.298828 L 17.3125 23.214844 C 18.6805 21.428844 19.536469 19.796281 19.855469 18.363281 L 19.857422 18.355469 C 20.011422 17.645469 20.041219 16.976766 19.949219 16.384766 C 19.873219 15.809766 19.66675 15.259766 19.34375 14.759766 C 18.64875 13.657766 17.4 13 16 13 C 14.658 13 13.4195 13.638031 12.6875 14.707031 L 12.632812 14.798828 C 12.321812 15.294828 12.125687 15.826328 12.054688 16.361328 C 11.955688 16.997328 11.984625 17.649797 12.140625 18.341797 C 12.447625 19.786797 13.331453 21.475609 14.689453 23.224609 L 14.730469 23.277344 L 14.728516 23.279297 C 13.819516 24.283297 13.041625 24.949719 12.265625 25.386719 C 11.730625 25.698719 11.171844 25.895703 10.589844 25.970703 C 10.437844 25.992703 10.307703 26 10.220703 26 C 9.7867031 26 9.3960938 25.922813 8.9960938 25.757812 C 7.9520938 25.323812 7.19825 24.341078 7.03125 23.205078 C 6.95325 22.636078 7.0147969 22.101906 7.2167969 21.503906 C 7.3187969 21.231906 7.4232031 20.987281 7.5332031 20.738281 C 7.5822031 20.621281 7.6355 20.505625 7.6875 20.390625 L 7.7792969 20.183594 C 7.8352969 20.054594 7.8931719 19.926781 7.9511719 19.800781 L 8.0722656 19.53125 C 9.5592656 16.24225 11.214391 12.798797 13.150391 8.9667969 L 13.183594 8.8886719 C 13.360594 8.5516719 13.538984 8.1974219 13.708984 7.8574219 L 13.734375 7.8046875 C 13.916375 7.4756875 14.122375 7.1025469 14.359375 6.8105469 C 14.801375 6.2925469 15.401063 6.0307344 15.992188 6.0214844 z M 16 15 C 16.709 15 17.325297 15.307938 17.654297 15.835938 C 17.825297 16.099937 17.92775 16.365922 17.96875 16.669922 C 18.02575 17.032922 18.002344 17.468688 17.902344 17.929688 C 17.666344 18.986687 17.026141 20.231672 15.994141 21.638672 C 14.975141 20.261672 14.32075 18.985016 14.09375 17.916016 C 13.99075 17.460016 13.96825 17.052437 14.03125 16.648438 C 14.07025 16.365437 14.170797 16.099937 14.341797 15.835938 L 14.361328 15.802734 C 14.724328 15.298734 15.333 15 16 15 z"/></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5 5 L 5 27 L 27 27 L 27 5 L 5 5 z M 7 7 L 25 7 L 25 25 L 7 25 L 7 7 z M 15 8 C 14.448 8 14 8.448 14 9 L 14 10.294922 C 14.634 10.104922 15.305 10 16 10 C 16.695 10 17.366 10.104922 18 10.294922 L 18 9 C 18 8.448 17.552 8 17 8 L 15 8 z M 10.707031 10 C 10.451156 10 10.195 10.099422 10 10.294922 L 9.2929688 11 C 8.9019687 11.391 8.9019687 12.024063 9.2929688 12.414062 L 10.109375 13.232422 C 10.655375 12.381422 11.379469 11.657328 12.230469 11.111328 L 11.414062 10.294922 C 11.218563 10.099422 10.962906 10 10.707031 10 z M 16 11 C 12.686 11 10 13.686 10 17 C 10 20.314 12.686 23 16 23 C 19.314 23 22 20.314 22 17 C 22 13.686 19.314 11 16 11 z M 16 13 C 18.206 13 20 14.794 20 17 C 20 19.206 18.206 21 16 21 C 13.794 21 12 19.206 12 17 C 12 14.794 13.794 13 16 13 z M 16 14 L 16 17 L 18.59375 15.517578 C 18.07575 14.614578 17.115 14 16 14 z"/></svg>

After

Width:  |  Height:  |  Size: 924 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 Z M 7 11 L 7 13 L 25 13 L 25 11 Z M 3 15 L 3 17 L 29 17 L 29 15 Z M 7 19 L 7 21 L 25 21 L 25 19 Z M 3 23 L 3 25 L 29 25 L 29 23 Z"/></svg>

After

Width:  |  Height:  |  Size: 233 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 Z M 3 11 L 3 13 L 29 13 L 29 11 Z M 3 15 L 3 17 L 29 17 L 29 15 Z M 3 19 L 3 21 L 29 21 L 29 19 Z M 3 23 L 3 25 L 29 25 L 29 23 Z"/></svg>

After

Width:  |  Height:  |  Size: 233 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 Z M 3 11 L 3 13 L 21 13 L 21 11 Z M 3 15 L 3 17 L 29 17 L 29 15 Z M 3 19 L 3 21 L 21 21 L 21 19 Z M 3 23 L 3 25 L 29 25 L 29 23 Z"/></svg>

After

Width:  |  Height:  |  Size: 233 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 7 L 3 9 L 29 9 L 29 7 Z M 11 11 L 11 13 L 29 13 L 29 11 Z M 3 15 L 3 17 L 29 17 L 29 15 Z M 11 19 L 11 21 L 29 21 L 29 19 Z M 3 23 L 3 25 L 29 25 L 29 23 Z"/></svg>

After

Width:  |  Height:  |  Size: 237 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M5,5v22h22V5H5z M7,7h18v18H7V7z"/><rect width="2" height="5" x="15" y="9"/><rect width="11" height="1" x="10" y="11"/><polygon points="19.498,14 11,14 11,13 20,13"/><path d="M18.228,17.21c-0.133-0.096-0.314-0.21-0.307-0.216l-0.027-0.05c-0.017-0.036-0.032-0.075-0.042-0.12 c-0.02-0.092-0.047-0.179-0.077-0.258c-0.071-0.142-0.211-0.165-0.321-0.236c-0.232-0.122-0.467-0.235-0.705-0.342 c-0.473-0.219-0.964-0.393-1.466-0.527c-1.002-0.275-2.035-0.432-3.069-0.46c-0.259-0.007-0.518,0.004-0.776,0.006 c-0.284,0.014-0.576,0.039-0.855,0.12c-0.562,0.145-1.081,0.444-1.486,0.851c-0.847,0.798-1.195,1.992-1.049,3.132 c0.125,1.176,1.035,2.254,2.172,2.641c0.55,0.209,1.196,0.288,1.711,0.231c0.271-0.006,0.541-0.025,0.811-0.077 c0.271-0.038,0.54-0.083,0.803-0.165c1.063-0.271,2.061-0.808,2.869-1.532c0.404-0.362,0.773-0.756,1.103-1.179 c0.156-0.218,0.326-0.427,0.451-0.667c0.059-0.122,0.129-0.237,0.161-0.375c0.017-0.069,0.043-0.132,0.052-0.204l0.014-0.111 c0.006-0.027-0.003-0.018,0.014-0.074C18.255,17.478,18.261,17.321,18.228,17.21z M15.237,18.845c-0.6,0.591-1.308,1.074-2.115,1.4 c-0.2,0.088-0.412,0.141-0.626,0.191c-0.212,0.064-0.431,0.099-0.653,0.123c-0.464,0.086-0.834,0.076-1.233-0.019 c-0.775-0.172-1.457-0.785-1.574-1.605c-0.155-0.814,0.21-1.702,0.839-2.144c0.307-0.232,0.659-0.362,1.011-0.425 c0.178-0.035,0.355-0.03,0.541-0.025l0.683,0.047c0.911,0.085,1.799,0.323,2.675,0.59c0.435,0.144,0.866,0.305,1.293,0.473 c0.091,0.037,0.179,0.08,0.269,0.12c-0.082,0.115-0.163,0.23-0.251,0.342C15.836,18.25,15.533,18.544,15.237,18.845z"/><polygon points="18.116,16.486 26.66,19.522 25.244,22.178 17.475,17.954"/><path d="M20,13c-0.161,1.665-0.649,3.286-1.585,4.675l-1.54-0.864c0.735-1.034,1.184-2.413,1.327-3.811H20z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 2 C 14.617 2 13.469 2.969 13.125 4.25 C 12.773 4.105 12.402 4 12 4 C 10.355 4 9 5.355 9 7 L 9 17.75 L 8.125 16.875 C 6.961 15.711 5.039 15.711 3.875 16.875 C 2.711 18.039 2.711 19.961 3.875 21.125 L 10.65625 27.90625 C 11.83225 29.07825 13.457 30 15.375 30 L 20 30 C 23.855 30 27 26.855 27 23 L 27 11 C 27 9.355 25.645 8 24 8 C 23.648 8 23.316 8.0735 23 8.1875 L 23 7 C 23 5.355 21.645 4 20 4 C 19.598 4 19.227 4.105 18.875 4.25 C 18.531 2.969 17.383 2 16 2 z M 16 4 C 16.566 4 17 4.434 17 5 L 17 15 L 19 15 L 19 7 C 19 6.434 19.434 6 20 6 C 20.566 6 21 6.434 21 7 L 21 15 L 23 15 L 23 11 C 23 10.434 23.434 10 24 10 C 24.566 10 25 10.434 25 11 L 25 23 C 25 25.773 22.773 28 20 28 L 15.375 28 C 14.102 28 13.00775 27.37875 12.09375 26.46875 L 5.28125 19.71875 C 4.88325 19.32075 4.88325 18.68025 5.28125 18.28125 C 5.67925 17.88325 6.31975 17.88325 6.71875 18.28125 L 9.28125 20.875 L 11 22.59375 L 11 7 C 11 6.434 11.434 6 12 6 C 12.566 6 13 6.434 13 7 L 13 15 L 15 15 L 15 5 C 15 4.434 15.434 4 16 4 z M 16 17 A 1 1 0 0 0 16 19 A 1 1 0 0 0 16 17 z M 22 17 A 1 1 0 0 0 22 19 A 1 1 0 0 0 22 17 z M 18 20 A 1 1 0 0 0 18 22 A 1 1 0 0 0 18 20 z M 14 21 A 1 1 0 0 0 14 23 A 1 1 0 0 0 14 21 z M 22 21 A 1 1 0 0 0 22 23 A 1 1 0 0 0 22 21 z M 18 24 A 1 1 0 0 0 18 26 A 1 1 0 0 0 18 24 z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.2,4c-3.3,0-6.9,1.2-7.7,5.3C8.4,9.7,8.7,10,9,10l3.3,0.3c0.3,0,0.6-0.3,0.6-0.6c0.3-1.4,1.5-2.1,2.8-2.1c0.7,0,1.5,0.3,1.9,0.9c0.5,0.7,0.4,1.7,0.4,2.5v0.5c-2,0.2-4.6,0.4-6.5,1.2c-2.2,0.9-3.7,2.8-3.7,5.7c0,3.6,2.3,5.4,5.2,5.4c2.5,0,3.8-0.6,5.7-2.5c0.6,0.9,0.9,1.4,2,2.3c0.3,0.1,0.6,0.1,0.8-0.1v0c0.7-0.6,2-1.7,2.7-2.3c0.3-0.2,0.2-0.6,0-0.9c-0.6-0.9-1.3-1.6-1.3-3.2v-5.4c0-2.3,0.2-4.4-1.5-6C20.1,4.4,17.9,4,16.2,4z M17.1,14.3c0.3,0,0.6,0,0.9,0v0.8c0,1.3,0.1,2.5-0.6,3.7c-0.5,1-1.4,1.6-2.4,1.6c-1.3,0-2.1-1-2.1-2.5C12.9,15.2,14.9,14.5,17.1,14.3z M26.7,22.4c-0.9,0-1.9,0.2-2.7,0.8c-0.2,0.2-0.2,0.4,0.1,0.4c0.9-0.1,2.8-0.4,3.2,0.1s-0.4,2.3-0.7,3.1c-0.1,0.2,0.1,0.3,0.3,0.2c1.5-1.2,1.9-3.8,1.6-4.2C28.3,22.5,27.6,22.4,26.7,22.4z M3.7,22.8c-0.2,0-0.3,0.3-0.1,0.4c3.3,3,7.6,4.7,12.4,4.7c3.4,0,7.4-1.1,10.2-3.1c0.5-0.3,0.1-0.9-0.4-0.7c-3.1,1.3-6.4,1.9-9.5,1.9c-4.5,0-8.8-1.2-12.4-3.3C3.8,22.9,3.7,22.8,3.7,22.8z"/></svg>

After

Width:  |  Height:  |  Size: 980 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18 3 C 16.894531 3 16 3.894531 16 5 L 16 6 L 1 6 L 1 25 L 4.15625 25 C 4.601563 26.71875 6.148438 28 8 28 C 9.851563 28 11.398438 26.71875 11.84375 25 L 20.15625 25 C 20.601563 26.71875 22.148438 28 24 28 C 25.851563 28 27.398438 26.71875 27.84375 25 L 31 25 L 31 13.625 L 30.75 13.34375 L 24.75 6.34375 L 24.46875 6 L 20 6 L 20 5 C 20 3.894531 19.105469 3 18 3 Z M 3 8 L 23.53125 8 L 29 14.375 L 29 23 L 27.84375 23 C 27.398438 21.28125 25.851563 20 24 20 C 22.148438 20 20.601563 21.28125 20.15625 23 L 11.84375 23 C 11.398438 21.28125 9.851563 20 8 20 C 6.148438 20 4.601563 21.28125 4.15625 23 L 3 23 Z M 14 11 L 14 14 L 11 14 L 11 16 L 14 16 L 14 19 L 16 19 L 16 16 L 19 16 L 19 14 L 16 14 L 16 11 Z M 8 22 C 9.117188 22 10 22.882813 10 24 C 10 25.117188 9.117188 26 8 26 C 6.882813 26 6 25.117188 6 24 C 6 22.882813 6.882813 22 8 22 Z M 24 22 C 25.117188 22 26 22.882813 26 24 C 26 25.117188 25.117188 26 24 26 C 22.882813 26 22 25.117188 22 24 C 22 22.882813 22.882813 22 24 22 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.21875 7.375 L 6.8125 10.25 L 6.65625 10.4375 L 6.625 10.6875 L 6 13.40625 L 6 9 L 4 9 L 4 16 L 3 17 L 3 23 L 7.375 22.03125 L 9.625 22.9375 L 9.8125 23 L 10.625 23 L 10.84375 22.84375 L 13.53125 21.25 L 13.78125 21.0625 L 13.9375 20.78125 L 14.9375 18.375 L 13.0625 17.625 L 12.1875 19.71875 L 10.625 20.6875 C 9.859375 20.507813 8 19.871094 8 18 C 8 15.667969 10 15 10 15 L 11.5625 15 L 13.28125 16.71875 L 14.71875 15.28125 L 12.71875 13.28125 L 12.40625 13 L 10.5625 13 L 10.75 12.71875 L 13.28125 11.15625 L 12.21875 9.46875 L 9.46875 11.15625 L 9.28125 11.25 L 8.15625 12.9375 L 8.53125 11.3125 L 10.78125 8.625 Z M 21.375 9 L 21.15625 9.15625 L 18.46875 10.75 L 18.21875 10.9375 L 18.0625 11.21875 L 17.0625 13.625 L 18.9375 14.375 L 19.8125 12.28125 L 21.375 11.3125 C 22.140625 11.492188 24 12.128906 24 14 C 24 16.332031 22 17 22 17 L 20.4375 17 L 18.71875 15.28125 L 17.28125 16.71875 L 19.28125 18.71875 L 19.59375 19 L 21.4375 19 L 21.25 19.28125 L 18.71875 20.84375 L 19.78125 22.53125 L 22.53125 20.84375 L 22.71875 20.75 L 23.84375 19.0625 L 23.46875 20.6875 L 21.21875 23.375 L 22.78125 24.625 L 25.1875 21.75 L 25.34375 21.5625 L 25.375 21.3125 L 26 18.59375 L 26 23 L 28 23 L 28 16 L 29 15 L 29 9 L 24.625 9.96875 L 22.375 9.0625 L 22.1875 9 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16.429688 6 C 13.666688 6 10.69675 6.281 8.34375 8 C 8.11575 8.138 7.9374844 8.4102344 8.0214844 8.8652344 C 8.0704844 9.0932344 8.2495625 10.089766 8.4765625 10.634766 C 8.6595625 11.089766 9.1108125 11.08925 9.3828125 10.90625 C 10.834812 9.91125 13.903531 9 16.394531 9 C 18.979531 9 19.023437 10.518672 19.023438 12.513672 L 19.023438 14.232422 C 15.121437 14.736422 8.7731875 15.776234 7.3671875 16.365234 C 5.7821875 17.093234 6.0117187 20.198625 6.0117188 21.015625 C 6.0117188 22.281625 6.6908906 26 11.587891 26 C 13.721891 26 17.438078 25.076094 19.205078 24.121094 L 19.205078 25.503906 C 19.205078 25.637906 19.300516 25.868203 19.478516 25.908203 C 19.616516 25.953203 21.391734 25.998047 21.802734 25.998047 C 22.213734 25.998047 24.592484 26.010797 24.771484 25.966797 C 24.954484 25.921797 25 25.694547 25 25.560547 L 25 12.070312 C 24.996 8.4863125 22.415688 6 16.429688 6 z M 19.019531 16.771484 L 19.019531 21.869141 C 18.064531 22.458141 16.298406 22.957031 14.941406 22.957031 C 12.584406 22.957031 11.962984 21.128906 11.958984 20.628906 C 11.958984 20.083906 11.824391 18.723578 12.775391 18.267578 C 13.860391 17.678578 17.023531 16.954484 19.019531 16.771484 z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 13.800781 4 12 5.800781 12 8 C 12 9.851563 13.28125 11.398438 15 11.84375 L 15 14 L 12 14 L 12 16 L 15 16 L 15 23.96875 C 12.574219 23.777344 10.960938 22.890625 9.8125 21.875 C 8.9375 21.101563 8.351563 20.25 7.9375 19.53125 L 9.53125 18.75 L 5.53125 16.9375 L 4.46875 21.25 L 6.125 20.4375 C 6.597656 21.285156 7.332031 22.371094 8.46875 23.375 C 9.921875 24.664063 12.066406 25.730469 15 25.9375 L 15 26 L 16 27 L 17 26 L 17 25.9375 C 19.933594 25.730469 22.078125 24.664063 23.53125 23.375 C 24.667969 22.371094 25.402344 21.285156 25.875 20.4375 L 27.53125 21.25 L 26.46875 16.9375 L 22.46875 18.75 L 24.0625 19.53125 C 23.648438 20.25 23.0625 21.101563 22.1875 21.875 C 21.039063 22.890625 19.425781 23.777344 17 23.96875 L 17 16 L 20 16 L 20 14 L 17 14 L 17 11.84375 C 18.71875 11.398438 20 9.851563 20 8 C 20 5.800781 18.199219 4 16 4 Z M 16 6 C 17.117188 6 18 6.882813 18 8 C 18 9.117188 17.117188 10 16 10 C 14.882813 10 14 9.117188 14 8 C 14 6.882813 14.882813 6 16 6 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 10.53125 3.5 C 10.363281 3.542969 10.230469 3.671875 10.179688 3.835938 C 10.128906 4.003906 10.167969 4.183594 10.28125 4.3125 L 11.75 6.4375 C 10.082031 7.71875 9 9.742188 9 12 L 9 22 C 9 22.703125 9.441406 23.203125 10 23.5625 L 10 26.5 C 10 27.867188 11.132813 29 12.5 29 C 13.867188 29 15 27.867188 15 26.5 L 15 24 L 17 24 L 17 26.5 C 17 27.867188 18.132813 29 19.5 29 C 20.867188 29 22 27.867188 22 26.5 L 22 23.5625 C 22.558594 23.203125 23 22.703125 23 22 L 23 12 C 23 9.742188 21.917969 7.71875 20.25 6.4375 L 21.71875 4.3125 C 21.839844 4.160156 21.863281 3.949219 21.777344 3.777344 C 21.6875 3.601563 21.507813 3.492188 21.3125 3.5 C 21.28125 3.496094 21.25 3.496094 21.21875 3.5 C 21.085938 3.535156 20.972656 3.625 20.90625 3.75 L 19.40625 5.875 C 18.398438 5.3125 17.230469 5 16 5 C 14.769531 5 13.601563 5.3125 12.59375 5.875 L 11.09375 3.75 C 11.007813 3.601563 10.855469 3.507813 10.6875 3.5 C 10.65625 3.496094 10.625 3.496094 10.59375 3.5 C 10.574219 3.5 10.550781 3.5 10.53125 3.5 Z M 16 7 C 18.425781 7 20.441406 8.714844 20.90625 11 L 11.09375 11 C 11.558594 8.714844 13.574219 7 16 7 Z M 14 8 C 13.449219 8 13 8.449219 13 9 C 13 9.550781 13.449219 10 14 10 C 14.550781 10 15 9.550781 15 9 C 15 8.449219 14.550781 8 14 8 Z M 18 8 C 17.449219 8 17 8.449219 17 9 C 17 9.550781 17.449219 10 18 10 C 18.550781 10 19 9.550781 19 9 C 19 8.449219 18.550781 8 18 8 Z M 6 11 L 6 21 L 8 21 L 8 11 Z M 24 11 L 24 21 L 26 21 L 26 11 Z M 11 13 L 21 13 L 21 22 L 20 22 L 20 26.5 C 20 26.785156 19.785156 27 19.5 27 C 19.214844 27 19 26.785156 19 26.5 L 19 22 L 13 22 L 13 26.5 C 13 26.785156 12.785156 27 12.5 27 C 12.214844 27 12 26.785156 12 26.5 L 12 22 L 11 22 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5.21875 6.6875 L 3.78125 8.09375 L 16 20.3125 L 28.21875 8.09375 L 26.78125 6.6875 L 16 17.46875 Z M 5.21875 13.6875 L 3.78125 15.09375 L 16 27.3125 L 28.21875 15.09375 L 26.78125 13.6875 L 16 24.46875 Z"/></svg>

After

Width:  |  Height:  |  Size: 283 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 15.90625 4.78125 L 4.6875 16 L 15.90625 27.21875 L 17.3125 25.78125 L 7.53125 16 L 17.3125 6.21875 Z M 22.90625 4.78125 L 11.6875 16 L 22.90625 27.21875 L 24.3125 25.78125 L 14.53125 16 L 24.3125 6.21875 Z"/></svg>

After

Width:  |  Height:  |  Size: 285 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.09375 4.78125 L 7.6875 6.21875 L 17.46875 16 L 7.6875 25.78125 L 9.09375 27.21875 L 20.3125 16 Z M 16.09375 4.78125 L 14.6875 6.21875 L 24.46875 16 L 14.6875 25.78125 L 16.09375 27.21875 L 27.3125 16 Z"/></svg>

After

Width:  |  Height:  |  Size: 283 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4.6875 L 3.78125 16.90625 L 5.21875 18.3125 L 16 7.53125 L 26.78125 18.3125 L 28.21875 16.90625 Z M 16 11.6875 L 3.78125 23.90625 L 5.21875 25.3125 L 16 14.53125 L 26.78125 25.3125 L 28.21875 23.90625 Z"/></svg>

After

Width:  |  Height:  |  Size: 285 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4.21875 10.78125 L 2.78125 12.21875 L 15.28125 24.71875 L 16 25.40625 L 16.71875 24.71875 L 29.21875 12.21875 L 27.78125 10.78125 L 16 22.5625 Z"/></svg>

After

Width:  |  Height:  |  Size: 224 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 19.03125 4.28125 L 8.03125 15.28125 L 7.34375 16 L 8.03125 16.71875 L 19.03125 27.71875 L 20.46875 26.28125 L 10.1875 16 L 20.46875 5.71875 Z"/></svg>

After

Width:  |  Height:  |  Size: 221 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 12.96875 4.28125 L 11.53125 5.71875 L 21.8125 16 L 11.53125 26.28125 L 12.96875 27.71875 L 23.96875 16.71875 L 24.65625 16 L 23.96875 15.28125 Z"/></svg>

After

Width:  |  Height:  |  Size: 224 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 6.59375 L 15.28125 7.28125 L 2.78125 19.78125 L 4.21875 21.21875 L 16 9.4375 L 27.78125 21.21875 L 29.21875 19.78125 L 16.71875 7.28125 Z"/></svg>

After

Width:  |  Height:  |  Size: 220 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.382813 4 4 9.382813 4 16 C 4 22.617188 9.382813 28 16 28 C 22.617188 28 28 22.617188 28 16 C 28 9.382813 22.617188 4 16 4 Z M 16 6 C 21.535156 6 26 10.464844 26 16 C 26 21.535156 21.535156 26 16 26 C 10.464844 26 6 21.535156 6 16 C 6 10.464844 10.464844 6 16 6 Z M 10.6875 12 C 10.265625 12.425781 10 13.007813 10 13.65625 C 10 14.949219 11.050781 16 12.34375 16 C 12.988281 16 13.578125 15.738281 14 15.3125 Z M 21.3125 12 L 18 15.3125 C 18.421875 15.738281 19.011719 16 19.65625 16 C 20.949219 16 22 14.949219 22 13.65625 C 22 13.011719 21.738281 12.421875 21.3125 12 Z M 18.5625 17.84375 C 18.417969 17.847656 18.265625 17.855469 18.125 17.875 C 17.003906 18.042969 16.15625 18.65625 15.40625 19.15625 C 14.65625 19.65625 13.996094 20.046875 13.5 20.125 C 13.003906 20.203125 12.558594 20.125 11.71875 19.28125 L 10.28125 20.71875 C 11.414063 21.859375 12.703125 22.269531 13.8125 22.09375 C 14.921875 21.917969 15.753906 21.308594 16.5 20.8125 C 17.246094 20.316406 17.886719 19.953125 18.40625 19.875 C 18.925781 19.796875 19.4375 19.863281 20.3125 20.71875 L 21.6875 19.28125 C 20.664063 18.28125 19.574219 17.828125 18.5625 17.84375 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4 C 9.382813 4 4 9.382813 4 16 C 4 22.617188 9.382813 28 16 28 C 22.617188 28 28 22.617188 28 16 C 28 9.382813 22.617188 4 16 4 Z M 16 6 C 21.535156 6 26 10.464844 26 16 C 26 21.535156 21.535156 26 16 26 C 10.464844 26 6 21.535156 6 16 C 6 10.464844 10.464844 6 16 6 Z M 10.6875 12 C 10.265625 12.425781 10 13.007813 10 13.65625 C 10 14.949219 11.050781 16 12.34375 16 C 12.988281 16 13.578125 15.738281 14 15.3125 Z M 21.3125 12 L 18 15.3125 C 18.421875 15.738281 19.011719 16 19.65625 16 C 20.949219 16 22 14.949219 22 13.65625 C 22 13.011719 21.738281 12.421875 21.3125 12 Z M 18.5625 17.84375 C 18.417969 17.847656 18.265625 17.855469 18.125 17.875 C 17.003906 18.042969 16.15625 18.65625 15.40625 19.15625 C 14.65625 19.65625 13.996094 20.046875 13.5 20.125 C 13.003906 20.203125 12.558594 20.125 11.71875 19.28125 L 10.28125 20.71875 C 11.414063 21.859375 12.703125 22.269531 13.8125 22.09375 C 14.921875 21.917969 15.753906 21.308594 16.5 20.8125 C 17.246094 20.316406 17.886719 19.953125 18.40625 19.875 C 18.925781 19.796875 19.4375 19.863281 20.3125 20.71875 L 21.6875 19.28125 C 20.664063 18.28125 19.574219 17.828125 18.5625 17.84375 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 29 9 L 27.449219 9.109375 L 26.300781 11.359375 L 25.650391 9.2304688 L 24.039062 9.3398438 L 24.259766 9.9296875 C 23.839766 9.4596875 23.079219 9.3992187 22.449219 9.4492188 L 20.480469 9.5800781 L 20.320312 11.160156 C 20.270312 11.110156 19.670391 9.5299219 17.650391 9.6699219 C 15.610391 9.7999219 14.840703 11.339766 14.470703 12.009766 L 14.669922 9.9804688 L 13.240234 10.070312 L 12.919922 13.349609 L 11.029297 10.220703 L 9.6796875 10.310547 L 9.1796875 15.470703 L 7.6503906 10.439453 L 6.4492188 10.519531 L 3.5996094 16.529297 L 5.1992188 16.429688 L 5.5996094 15.529297 L 7.5800781 15.400391 L 7.8007812 16.259766 L 10.640625 16.080078 L 10.949219 12.820312 L 12.830078 15.939453 L 14.080078 15.859375 L 14.279297 13.869141 C 14.769297 15.299141 15.740781 15.890781 17.050781 15.800781 C 19.050781 15.680781 19.699297 14.389688 20.029297 13.929688 L 19.869141 15.480469 L 21.289062 15.390625 L 21.490234 13.5 L 22.449219 15.320312 L 24.269531 15.199219 L 23.009766 13.279297 C 24.149766 12.819297 24.659375 11.939844 24.609375 10.839844 L 25.400391 12.960938 L 25.160156 15.140625 L 26.580078 15.050781 L 26.820312 12.869141 L 29 9 z M 21.769531 10.789062 C 22.389531 10.759063 22.739922 10.790625 22.919922 10.890625 C 23.059922 10.970625 23.119844 11.140156 23.089844 11.410156 C 23.059844 11.690156 22.930937 11.88 22.710938 12 C 22.500937 12.11 22.140859 12.180937 21.630859 12.210938 L 21.769531 10.789062 z M 17.560547 11.119141 C 17.760547 11.109141 17.969922 11.160234 18.169922 11.240234 C 18.329922 11.320234 18.520703 11.460625 18.720703 11.640625 L 20.279297 11.539062 L 20.220703 12.130859 L 17.070312 12.339844 L 16.949219 13.519531 L 18.660156 13.410156 C 18.430156 13.720156 18.180391 13.969375 17.900391 14.109375 C 17.690391 14.229375 17.470234 14.300312 17.240234 14.320312 C 16.810234 14.350312 16.449922 14.219687 16.169922 13.929688 C 15.879922 13.629687 15.760547 13.249297 15.810547 12.779297 C 15.860547 12.289297 16.070937 11.890313 16.460938 11.570312 C 16.790937 11.300313 17.160547 11.139141 17.560547 11.119141 z M 6.8808594 12.400391 L 7.3007812 14.25 L 6.109375 14.330078 L 6.8808594 12.400391 z M 32 15.119141 L 27.339844 15.429688 L 25.759766 19.490234 L 25.080078 15.570312 L 23.560547 15.669922 L 24.75 21.480469 L 26.349609 21.380859 L 28.710938 15.689453 L 28.080078 21.269531 L 31.310547 21.070312 L 31.460938 19.779297 L 29.740234 19.890625 L 29.859375 18.900391 L 31.580078 18.789062 L 31.740234 17.400391 L 30.009766 17.519531 L 30.109375 16.619141 L 31.839844 16.509766 L 32 15.119141 z M 23.400391 15.679688 L 21.980469 15.779297 L 21.339844 21.689453 L 22.75 21.599609 L 23.400391 15.679688 z M 21.740234 15.800781 L 17.990234 16.039062 L 17.849609 17.419922 L 18.960938 17.349609 L 18.519531 21.570312 L 16.910156 16.119141 L 15.720703 16.189453 L 12.970703 21.970703 L 13.080078 20.949219 L 11.259766 21.060547 L 11.359375 20.080078 L 13.179688 19.970703 L 13.310547 18.589844 L 11.490234 18.699219 L 11.580078 17.820312 L 13.400391 17.699219 L 13.529297 16.330078 L 10.289062 16.529297 L 10.160156 17.849609 C 9.9701563 16.859609 9.0390625 16.609688 8.0390625 16.679688 L 6.0898438 16.800781 L 5.9492188 18.320312 C 5.7692188 18.040312 5.270625 16.780391 3.390625 16.900391 C 1.350625 17.030391 0.13976562 18.679141 0.009765625 20.119141 C -0.15023438 21.959141 1.1900781 23.090234 2.8300781 22.990234 C 4.0800781 22.920234 5.1296875 22.120469 5.6796875 21.230469 L 5.5390625 22.660156 L 6.9492188 22.580078 L 7.1308594 20.740234 L 8.0996094 22.509766 L 14.410156 22.130859 L 14.810547 21.330078 L 16.779297 21.199219 L 16.990234 21.970703 L 19.890625 21.789062 L 20.380859 17.259766 L 21.589844 17.179688 L 21.740234 15.800781 z M 7.9863281 18.039062 C 8.4996094 18.052187 8.7344531 18.189922 8.6894531 18.669922 C 8.6194531 19.359922 7.96 19.420938 7.25 19.460938 L 7.3808594 18.060547 C 7.6133594 18.045547 7.8152344 18.034688 7.9863281 18.039062 z M 16.119141 18.080078 L 16.509766 19.939453 L 15.330078 20.019531 L 16.119141 18.080078 z M 3.25 18.349609 C 3.84 18.309609 4.2305469 18.520859 4.5605469 19.130859 L 5.8808594 19.050781 L 5.75 20.519531 L 4.4003906 20.599609 C 4.0203906 21.109609 3.5892187 21.499297 2.9492188 21.529297 C 1.8792187 21.599297 1.4495312 20.78 1.5195312 20 C 1.5795313 19.22 2.3 18.409609 3.25 18.349609 z M 10.029297 19.199219 L 9.7402344 22.160156 L 8.640625 20.509766 C 9.300625 20.239766 9.7792969 19.869219 10.029297 19.199219 z"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3.9355469 L 4.3613281 8.1679688 L 6.4492188 23.839844 L 16 29.144531 L 25.550781 23.837891 L 27.638672 8.1679688 L 16 3.9355469 z M 16 6.0644531 L 25.443359 9.4980469 L 23.699219 22.578125 L 16 26.855469 L 8.3007812 22.578125 L 6.5566406 9.4980469 L 16 6.0644531 z M 16 8 L 10 22 L 12 22 L 13.289062 19 L 18.710938 19 L 20 22 L 22 22 L 16 8 z M 16 12.550781 L 16.019531 12.609375 L 16.720703 14.359375 L 17.849609 17 L 14.150391 17 L 15.279297 14.359375 L 15.980469 12.609375 L 16 12.550781 z"/></svg>

After

Width:  |  Height:  |  Size: 575 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 2 C 13.25 2 11 4.25 11 7 C 11 8.957031 12.113281 10.875 13.15625 12.4375 C 13.289063 12.640625 13.429688 12.8125 13.5625 13 L 8 13 L 8 16.15625 L 9.15625 16 L 14.90625 15.1875 L 14 28.9375 L 13.9375 30 L 18.0625 30 L 18 28.9375 L 17.09375 15.1875 L 22.84375 16 L 24 16.15625 L 24 13 L 18.4375 13 C 18.570313 12.8125 18.710938 12.640625 18.84375 12.4375 C 19.886719 10.875 21 8.957031 21 7 C 21 4.25 18.75 2 16 2 Z M 16 4 C 17.667969 4 19 5.332031 19 7 C 19 8.078125 18.113281 9.914063 17.15625 11.34375 C 16.574219 12.21875 16.367188 12.429688 16 12.875 C 15.632813 12.429688 15.425781 12.21875 14.84375 11.34375 C 13.886719 9.914063 13 8.078125 13 7 C 13 5.332031 14.332031 4 16 4 Z"/></svg>

After

Width:  |  Height:  |  Size: 766 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 5 5 L 5 27 L 27 27 L 27 5 L 5 5 z M 7 7 L 25 7 L 25 25 L 7 25 L 7 7 z M 15.992188 9.0097656 C 15.910187 8.9897656 15.839578 9.0000156 15.767578 9.0410156 C 15.613578 9.1230156 15.529563 9.3088906 15.601562 9.4628906 C 16.085562 10.594891 17.783125 14.496094 19.203125 17.121094 L 20.521484 16.410156 C 19.174484 13.795156 16.836734 10.163531 16.177734 9.1445312 C 16.136734 9.0725313 16.064188 9.0307656 15.992188 9.0097656 z M 15.248047 11.263672 C 14.898047 11.222672 14.558047 11.366547 14.373047 11.685547 L 15.886719 12.580078 C 16.123719 12.159078 15.978406 11.604422 15.566406 11.357422 C 15.463406 11.306422 15.351047 11.284672 15.248047 11.263672 z M 14.248047 11.902344 L 13.435547 13.292969 L 14.980469 14.15625 L 15.761719 12.808594 L 14.248047 11.902344 z M 13.34375 13.445312 L 10.132812 19.044922 L 11.646484 19.919922 L 14.857422 14.351562 L 13.34375 13.445312 z M 9 15 L 9 17 L 10.929688 17 L 12.099609 15 L 9 15 z M 14.839844 15 L 13.689453 17 L 18.769531 17 C 18.489531 16.45 18.059531 15.59 17.769531 15 L 14.839844 15 z M 20.130859 15 C 20.380859 15.46 20.710547 16.089063 20.810547 16.289062 C 20.830547 16.309063 20.890156 16.430703 20.910156 16.470703 L 21.130859 17 L 23 17 L 23 15 L 20.130859 15 z M 20.625 16.605469 L 19.308594 17.316406 L 20.296875 18.859375 L 21.324219 18.273438 L 20.625 16.605469 z M 21.427734 18.53125 L 20.460938 19.046875 L 21.488281 21.496094 C 21.673281 21.928094 22.168078 22.134203 22.580078 21.908203 C 22.992078 21.691203 23.126141 21.144906 22.869141 20.753906 L 21.427734 18.53125 z M 9.9980469 19.240234 L 9.453125 21.845703 L 9.5878906 21.90625 L 11.542969 20.136719 L 9.9980469 19.240234 z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 15.96875 8.25 C 15.890625 8.261719 15.792969 8.300781 15.71875 8.34375 L 15.21875 8.625 C 14.925781 8.796875 14.828125 9.171875 15 9.46875 L 19.28125 16.8125 L 20.84375 15.90625 L 16.5625 8.5625 C 16.433594 8.34375 16.207031 8.21875 15.96875 8.25 Z M 14.65625 10.6875 C 14.417969 10.65625 14.160156 10.777344 14.03125 11 L 13.5 11.9375 L 15.125 12.875 L 15.65625 11.9375 C 15.828125 11.640625 15.730469 11.265625 15.4375 11.09375 L 14.875 10.78125 C 14.800781 10.738281 14.734375 10.699219 14.65625 10.6875 Z M 13.375 12.15625 L 9.59375 18.625 L 11.1875 19.5625 L 14.96875 13.09375 Z M 8 15.09375 L 8 16.90625 L 10.28125 16.90625 L 11.34375 15.09375 Z M 14.0625 15.09375 L 13.0625 16.90625 L 18.90625 16.90625 L 17.90625 15.09375 Z M 20.75 15.09375 L 21.71875 16.90625 L 23.96875 16.90625 L 23.96875 15.09375 Z M 21.03125 16.21875 L 19.46875 17.125 L 20.375 18.6875 L 21.9375 17.78125 Z M 21.84375 18.1875 C 21.792969 18.195313 21.742188 18.21875 21.6875 18.25 C 21.433594 18.394531 21.066406 18.617188 20.84375 18.75 C 20.425781 19 20.75 19.746094 20.84375 19.90625 C 21.386719 20.816406 21.953125 20.699219 22.375 21.34375 C 22.605469 21.695313 22.519531 21.851563 22.59375 21.96875 C 22.621094 22.011719 22.714844 22.050781 22.75 22 C 23.402344 21.097656 23.222656 19.53125 22.75 18.84375 C 22.558594 18.5625 22.210938 18.125 21.84375 18.1875 Z M 9.375 18.96875 L 8.59375 21.90625 C 8.578125 21.960938 8.609375 22.035156 8.65625 22.0625 C 8.703125 22.089844 8.773438 22.070313 8.8125 22.03125 L 11 19.90625 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3.109375 12.019531 C 1.749375 12.019531 1.1707813 12.169375 0.80078125 12.609375 C 0.59078125 12.869375 0.52976563 13.130078 0.50976562 13.830078 L 2.4394531 13.830078 C 2.4794531 13.310078 2.6292188 13.189453 3.1992188 13.189453 C 3.8492187 13.189453 4.0898438 13.390938 4.0898438 13.960938 L 4.0898438 15.099609 L 4.0507812 15.099609 C 3.8307812 14.509609 3.4908594 14.369141 2.3808594 14.369141 C 0.89085938 14.369141 0.26953125 14.900156 0.26953125 16.160156 C 0.26953125 17.520156 0.81007812 18 2.3300781 18 C 3.4200781 18 3.8396094 17.789766 4.0996094 17.009766 L 4.1503906 17.009766 L 4.0898438 17.960938 L 6 17.960938 L 6 14.150391 C 6 13.740391 5.9007813 13.180938 5.8007812 12.960938 C 5.4607813 12.270938 4.759375 12.019531 3.109375 12.019531 z M 10.789062 12.019531 C 9.7090625 12.019531 9.3701562 12.210547 8.9101562 13.060547 L 8.8691406 13.060547 L 8.9492188 12.029297 L 7.0292969 12.029297 L 7.0292969 20.480469 L 9.0097656 20.480469 L 9.0097656 16.970703 L 9.0507812 16.970703 C 9.2807813 17.750703 9.7202344 18 10.740234 18 C 11.580234 18 12.060391 17.889531 12.400391 17.519531 C 12.850391 17.029531 13 16.380859 13 14.880859 C 13 13.490859 12.849375 12.900703 12.359375 12.470703 C 12.019375 12.170703 11.509063 12.019531 10.789062 12.019531 z M 17.759766 12.019531 C 16.679766 12.019531 16.340859 12.210547 15.880859 13.060547 L 15.839844 13.060547 L 15.919922 12.029297 L 14 12.029297 L 14 20.480469 L 15.970703 20.480469 L 15.970703 16.970703 L 16.009766 16.970703 C 16.249766 17.750703 16.690937 18 17.710938 18 C 18.550937 18 19.029141 17.889531 19.369141 17.519531 C 19.829141 17.029531 19.980469 16.380859 19.980469 14.880859 C 19.980469 13.490859 19.829844 12.900703 19.339844 12.470703 C 18.999844 12.170703 18.479766 12.019531 17.759766 12.019531 z M 23.539062 12.019531 C 22.399062 12.019531 21.729063 12.179844 21.289062 12.589844 C 20.839063 12.989844 20.669922 13.610859 20.669922 14.880859 C 20.669922 16.350859 20.810234 16.989922 21.240234 17.419922 C 21.690234 17.869922 22.389531 18 23.769531 18 C 24.999531 18 25.620469 17.839609 25.980469 17.349609 C 26.200469 17.059609 26.320312 16.609141 26.320312 16.119141 L 26.320312 16 L 24.449219 16 C 24.449219 16.55 24.250781 16.699219 23.550781 16.699219 C 22.770781 16.699219 22.550781 16.449609 22.550781 15.599609 C 22.550781 15.559609 22.550547 15.459375 22.560547 15.359375 L 26.330078 15.359375 L 26.330078 14.810547 C 26.330078 12.660547 25.679062 12.019531 23.539062 12.019531 z M 30.349609 12.019531 C 29.579609 12.019531 29.199375 12.279297 28.859375 13.029297 L 28.830078 13.029297 L 28.919922 12.029297 L 27 12.029297 L 27 17.960938 L 28.910156 17.960938 L 28.910156 14.560547 C 28.910156 14.160547 28.910937 14.089453 28.960938 13.939453 C 29.080938 13.639453 29.299141 13.480469 29.619141 13.480469 C 30.029141 13.480469 30.130859 13.679219 30.130859 14.449219 C 30.130859 14.479219 30.129141 14.560391 30.119141 14.650391 L 31.869141 14.650391 C 31.859141 14.430391 31.859375 14.259688 31.859375 14.179688 C 31.859375 13.199688 31.779531 12.850469 31.519531 12.480469 C 31.299531 12.180469 30.889609 12.019531 30.349609 12.019531 z M 23.5 13.380859 C 24.31 13.380859 24.480469 13.489375 24.480469 14.109375 C 24.480469 14.129375 24.480234 14.210781 24.490234 14.300781 L 22.580078 14.300781 L 22.589844 14.130859 C 22.639844 13.530859 22.78 13.380859 23.5 13.380859 z M 10.039062 13.439453 C 10.909062 13.439453 11.080078 13.690313 11.080078 15.070312 C 11.080078 16.270312 10.890313 16.550781 10.070312 16.550781 C 9.1803125 16.550781 9.0097656 16.280859 9.0097656 14.880859 C 9.0097656 13.690859 9.1990625 13.439453 10.039062 13.439453 z M 17.019531 13.439453 C 17.889531 13.439453 18.050781 13.690313 18.050781 15.070312 C 18.050781 16.270312 17.859063 16.550781 17.039062 16.550781 C 16.149062 16.550781 15.980469 16.280859 15.980469 14.880859 C 15.980469 13.690859 16.169531 13.439453 17.019531 13.439453 z M 3.0996094 15.529297 C 3.8596094 15.529297 4.0800781 15.649375 4.0800781 16.109375 C 4.0800781 16.629375 3.8904688 16.779297 3.2304688 16.779297 C 2.3904688 16.779297 2.1992187 16.650859 2.1992188 16.130859 C 2.1992188 15.680859 2.4396094 15.529297 3.0996094 15.529297 z"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 10.375 3.96875 C 10.082031 3.972656 9.90625 4 9.90625 4 L 8.875 4.09375 L 9 5.125 C 9 5.125 9.246094 7.410156 10.875 9.09375 C 7.570313 9.605469 5 12.332031 5 15.65625 C 5 19.242188 6.597656 22.085938 8.46875 24 C 9.402344 24.957031 10.394531 25.679688 11.34375 26.1875 C 12.292969 26.695313 13.164063 27 14 27 C 14.546875 27 15.078125 26.90625 15.5625 26.75 C 15.855469 26.65625 16.144531 26.65625 16.4375 26.75 C 16.921875 26.90625 17.453125 27 18 27 C 18.90625 27 19.777344 26.617188 20.71875 26.03125 C 21.660156 25.445313 22.640625 24.632813 23.5625 23.625 C 25.40625 21.613281 27 18.820313 27 15.65625 C 27 11.964844 23.824219 9 20 9 C 18.972656 9 18.023438 9.25 17.15625 9.65625 C 17.152344 9.628906 17.132813 9.582031 17.125 9.53125 C 17.636719 6.863281 19.5 5.875 19.5 5.875 L 18.5 4.125 C 18.5 4.125 17.089844 4.972656 16.0625 6.78125 C 15.738281 6.285156 15.308594 5.796875 14.78125 5.375 C 13.195313 4.109375 11.25 3.960938 10.375 3.96875 Z M 11.34375 6.09375 C 12.035156 6.199219 12.890625 6.425781 13.53125 6.9375 C 14.183594 7.457031 14.621094 8.21875 14.875 8.875 C 14.179688 8.773438 13.308594 8.519531 12.65625 8 C 12.011719 7.484375 11.597656 6.746094 11.34375 6.09375 Z M 12 11 C 13.300781 11 14.457031 11.472656 15.34375 12.21875 L 16 12.75 L 16.65625 12.21875 C 17.542969 11.472656 18.699219 11 20 11 C 22.804688 11 25 13.113281 25 15.65625 C 25 18.136719 23.699219 20.53125 22.09375 22.28125 C 21.292969 23.15625 20.421875 23.839844 19.65625 24.3125 C 18.890625 24.785156 18.195313 25 18 25 C 17.671875 25 17.363281 24.941406 17.0625 24.84375 C 16.375 24.621094 15.625 24.621094 14.9375 24.84375 C 14.636719 24.941406 14.328125 25 14 25 C 13.730469 25 13.039063 24.84375 12.28125 24.4375 C 11.523438 24.03125 10.664063 23.402344 9.875 22.59375 C 8.296875 20.976563 7 18.65625 7 15.65625 C 7 13.113281 9.195313 11 12 11 Z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> <path d="M 8.828125 9 C 8.243125 9 7.5647188 9.3350781 7.1367188 9.8300781 C 6.8007188 10.239078 6.4393125 10.878531 6.5703125 11.519531 C 7.1733125 11.592531 7.8262188 11.220562 8.1992188 10.726562 C 8.6282187 10.268563 8.865125 9.641 8.828125 9 z M 4.7988281 11.660156 C 3.2138281 11.660156 2 13.037344 2 15.027344 C 2 17.627344 3.825125 20 4.953125 20 C 5.643125 20 5.8987813 19.548828 6.8007812 19.548828 C 7.6397812 19.548828 7.9019062 20 8.6289062 20 C 9.9799062 20 11.099625 17.245266 11.140625 17.072266 C 10.918625 16.974266 9.6171875 16.349281 9.6171875 14.863281 C 9.6171875 13.429281 10.805469 12.782953 10.855469 12.751953 C 10.209469 11.775953 9.1644375 11.660156 8.7734375 11.660156 C 7.8664375 11.660156 7.0637656 12.154297 6.6347656 12.154297 C 6.1867656 12.154297 5.5328281 11.660156 4.7988281 11.660156 z M 13 12 L 13 20 L 15 20 L 15 17 L 15.5 17 C 16.480869 17 17.173964 16.332692 17.582031 15.5 L 18 15.5 L 18 14.5 C 18 13.130937 16.869063 12 15.5 12 L 13 12 z M 20.222656 12 L 18 18.841797 L 18 20 L 20 20 L 20 19.158203 L 20.050781 19 L 21.949219 19 L 22 19.158203 L 22 20 L 24 20 L 24 18.841797 L 21.777344 12 L 20.222656 12 z M 24 12 L 24 13.296875 L 26 16.373047 L 26 20 L 28 20 L 28 16.373047 L 30 13.296875 L 30 12 L 28 12 L 28 12.703125 L 27 14.242188 L 26 12.703125 L 26 12 L 24 12 z M 15 14 L 15.5 14 C 15.786937 14 16 14.213063 16 14.5 C 16 14.786937 15.786937 15 15.5 15 L 15 15 L 15 14 z M 21 16.080078 L 21.298828 17 L 20.701172 17 L 21 16.080078 z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 20.84375 2 C 19.203125 2 17.546875 2.851563 16.4375 4.15625 L 16.4375 4.1875 C 15.648438 5.167969 14.792969 6.714844 15.0625 8.5 C 14.933594 8.449219 14.925781 8.464844 14.78125 8.40625 C 14.089844 8.125 13.234375 7.8125 12.21875 7.8125 C 8.238281 7.8125 5.21875 11.417969 5.21875 16.15625 C 5.21875 19.222656 6.25 22.097656 7.625 24.25 C 8.3125 25.328125 9.09375 26.214844 9.90625 26.875 C 10.71875 27.535156 11.570313 28 12.53125 28 C 13.492188 28 14.210938 27.675781 14.75 27.4375 C 15.289063 27.199219 15.707031 27 16.5 27 C 17.214844 27 17.578125 27.195313 18.125 27.4375 C 18.671875 27.679688 19.417969 28 20.40625 28 C 21.476563 28 22.386719 27.476563 23.125 26.8125 C 23.863281 26.148438 24.484375 25.292969 25 24.46875 C 25.515625 23.644531 25.921875 22.835938 26.21875 22.1875 C 26.367188 21.863281 26.476563 21.59375 26.5625 21.375 C 26.648438 21.15625 26.691406 21.09375 26.75 20.84375 L 26.9375 20.03125 L 26.1875 19.6875 C 26.011719 19.609375 25.3125 19.261719 24.6875 18.625 C 24.0625 17.988281 23.53125 17.117188 23.53125 15.78125 C 23.53125 14.488281 24.027344 13.621094 24.5625 13 C 24.828125 12.691406 25.105469 12.4375 25.3125 12.28125 C 25.417969 12.203125 25.5 12.164063 25.5625 12.125 C 25.625 12.085938 25.613281 12.097656 25.71875 12.03125 L 26.5625 11.5 L 26 10.65625 C 24.367188 8.144531 21.753906 7.8125 20.71875 7.8125 C 20.238281 7.8125 19.898438 7.980469 19.46875 8.0625 C 19.710938 7.835938 20.023438 7.695313 20.21875 7.4375 C 20.222656 7.433594 20.214844 7.410156 20.21875 7.40625 C 20.230469 7.394531 20.242188 7.386719 20.25 7.375 L 20.28125 7.375 C 21.347656 6.183594 21.9375 4.582031 21.84375 2.9375 L 21.78125 2 Z M 19.65625 4.3125 C 19.484375 4.972656 19.203125 5.601563 18.75 6.09375 L 18.6875 6.15625 C 18.304688 6.671875 17.714844 7.054688 17.125 7.28125 C 17.289063 6.628906 17.574219 5.96875 17.96875 5.46875 C 17.976563 5.457031 17.992188 5.449219 18 5.4375 C 18.4375 4.9375 19.042969 4.5625 19.65625 4.3125 Z M 12.21875 9.8125 C 12.777344 9.8125 13.390625 10.023438 14.03125 10.28125 C 14.671875 10.539063 15.269531 10.875 16.125 10.875 C 16.976563 10.875 17.621094 10.539063 18.375 10.28125 C 19.128906 10.023438 19.933594 9.8125 20.71875 9.8125 C 21.242188 9.8125 22.535156 10.144531 23.625 11.15625 C 23.433594 11.328125 23.265625 11.453125 23.0625 11.6875 C 22.300781 12.570313 21.53125 13.945313 21.53125 15.78125 C 21.53125 17.6875 22.363281 19.121094 23.25 20.03125 C 23.800781 20.59375 24.140625 20.726563 24.5625 20.96875 C 24.507813 21.09375 24.476563 21.191406 24.40625 21.34375 C 24.136719 21.929688 23.765625 22.679688 23.3125 23.40625 C 22.859375 24.132813 22.308594 24.839844 21.78125 25.3125 C 21.253906 25.785156 20.78125 26 20.40625 26 C 19.839844 26 19.507813 25.84375 18.9375 25.59375 C 18.367188 25.34375 17.582031 25 16.5 25 C 15.363281 25 14.523438 25.335938 13.9375 25.59375 C 13.351563 25.851563 13.046875 26 12.53125 26 C 12.285156 26 11.753906 25.800781 11.15625 25.3125 C 10.558594 24.824219 9.902344 24.082031 9.3125 23.15625 C 8.128906 21.304688 7.21875 18.761719 7.21875 16.15625 C 7.21875 12.214844 9.417969 9.8125 12.21875 9.8125 Z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 4 5 L 4 11 L 5 11 L 5 27 L 27 27 L 27 11 L 28 11 L 28 5 Z M 6 7 L 26 7 L 26 9 L 6 9 Z M 7 11 L 25 11 L 25 25 L 7 25 Z M 12.8125 13 C 12.261719 13.050781 11.855469 13.542969 11.90625 14.09375 C 11.957031 14.644531 12.449219 15.050781 13 15 L 19 15 C 19.359375 15.003906 19.695313 14.816406 19.878906 14.503906 C 20.058594 14.191406 20.058594 13.808594 19.878906 13.496094 C 19.695313 13.183594 19.359375 12.996094 19 13 L 13 13 C 12.96875 13 12.9375 13 12.90625 13 C 12.875 13 12.84375 13 12.8125 13 Z"/></svg>

After

Width:  |  Height:  |  Size: 580 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 3 6 L 3 12 L 5 12 L 5 24 L 3 24 L 3 26 L 5 26 L 13 26 L 13 24 L 13 19 C 13 17.346 14.346 16 16 16 C 17.654 16 19 17.346 19 19 L 19 24 L 19 26 L 27 26 L 29 26 L 29 24 L 27 24 L 27 12 L 29 12 L 29 6 L 3 6 z M 5 8 L 27 8 L 27 10 L 5 10 L 5 8 z M 7 12 L 25 12 L 25 24 L 21 24 L 21 19 C 21 16.243 18.757 14 16 14 C 13.243 14 11 16.243 11 19 L 11 24 L 7 24 L 7 12 z"/></svg>

After

Width:  |  Height:  |  Size: 439 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 15 9 L 15 19 L 12 19 L 16 23 L 20 19 L 17 19 L 17 9 Z"/></svg>

After

Width:  |  Height:  |  Size: 403 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 15 9 L 15 19 L 12 19 L 16 23 L 20 19 L 17 19 L 17 9 Z"/></svg>

After

Width:  |  Height:  |  Size: 403 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 13 12 L 9 16 L 13 20 L 13 17 L 23 17 L 23 15 L 13 15 Z"/></svg>

After

Width:  |  Height:  |  Size: 404 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 13 12 L 9 16 L 13 20 L 13 17 L 23 17 L 23 15 L 13 15 Z"/></svg>

After

Width:  |  Height:  |  Size: 404 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 19 12 L 19 15 L 9 15 L 9 17 L 19 17 L 19 20 L 23 16 Z"/></svg>

After

Width:  |  Height:  |  Size: 403 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 19 12 L 19 15 L 9 15 L 9 17 L 19 17 L 19 20 L 23 16 Z"/></svg>

After

Width:  |  Height:  |  Size: 403 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 16 9 L 12 13 L 15 13 L 15 23 L 17 23 L 17 13 L 20 13 Z"/></svg>

After

Width:  |  Height:  |  Size: 404 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 16 9 L 12 13 L 15 13 L 15 23 L 17 23 L 17 13 L 20 13 Z"/></svg>

After

Width:  |  Height:  |  Size: 404 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 15 9 L 15 19.28125 L 11 15.28125 L 9.59375 16.71875 L 16 23.125 L 22.40625 16.71875 L 21 15.28125 L 17 19.28125 L 17 9 Z"/></svg>

After

Width:  |  Height:  |  Size: 470 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 15.28125 9.59375 L 8.875 16 L 15.28125 22.40625 L 16.71875 21 L 12.71875 17 L 23 17 L 23 15 L 12.71875 15 L 16.71875 11 Z"/></svg>

After

Width:  |  Height:  |  Size: 471 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 16.71875 9.59375 L 15.28125 11 L 19.28125 15 L 9 15 L 9 17 L 19.28125 17 L 15.28125 21 L 16.71875 22.40625 L 23.125 16 Z"/></svg>

After

Width:  |  Height:  |  Size: 470 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 3 C 8.832031 3 3 8.832031 3 16 C 3 23.167969 8.832031 29 16 29 C 23.167969 29 29 23.167969 29 16 C 29 8.832031 23.167969 3 16 3 Z M 16 5 C 22.085938 5 27 9.914063 27 16 C 27 22.085938 22.085938 27 16 27 C 9.914063 27 5 22.085938 5 16 C 5 9.914063 9.914063 5 16 5 Z M 16 8.875 L 9.59375 15.28125 L 11 16.71875 L 15 12.71875 L 15 23 L 17 23 L 17 12.71875 L 21 16.71875 L 22.40625 15.28125 Z"/></svg>

After

Width:  |  Height:  |  Size: 471 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 15 4 L 15 24.0625 L 8.21875 17.28125 L 6.78125 18.71875 L 15.28125 27.21875 L 16 27.90625 L 16.71875 27.21875 L 25.21875 18.71875 L 23.78125 17.28125 L 17 24.0625 L 17 4 Z"/></svg>

After

Width:  |  Height:  |  Size: 251 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 13.28125 6.78125 L 4.78125 15.28125 L 4.09375 16 L 4.78125 16.71875 L 13.28125 25.21875 L 14.71875 23.78125 L 7.9375 17 L 28 17 L 28 15 L 7.9375 15 L 14.71875 8.21875 Z"/></svg>

After

Width:  |  Height:  |  Size: 248 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 18.71875 6.78125 L 17.28125 8.21875 L 24.0625 15 L 4 15 L 4 17 L 24.0625 17 L 17.28125 23.78125 L 18.71875 25.21875 L 27.21875 16.71875 L 27.90625 16 L 27.21875 15.28125 Z"/></svg>

After

Width:  |  Height:  |  Size: 251 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 4.09375 L 15.28125 4.78125 L 6.78125 13.28125 L 8.21875 14.71875 L 15 7.9375 L 15 28 L 17 28 L 17 7.9375 L 23.78125 14.71875 L 25.21875 13.28125 L 16.71875 4.78125 Z"/></svg>

After

Width:  |  Height:  |  Size: 248 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 9.28125 6.78125 L 0.78125 15.28125 L 0.09375 16 L 0.78125 16.71875 L 9.28125 25.21875 L 10.71875 23.78125 L 3.9375 17 L 28.0625 17 L 21.28125 23.78125 L 22.71875 25.21875 L 31.21875 16.71875 L 31.90625 16 L 31.21875 15.28125 L 22.71875 6.78125 L 21.28125 8.21875 L 28.0625 15 L 3.9375 15 L 10.71875 8.21875 Z"/></svg>

After

Width:  |  Height:  |  Size: 388 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 1.5859375 L 10.292969 7.2929688 L 11.707031 8.7070312 L 15 5.4140625 L 15 15 L 5.4140625 15 L 8.7070312 11.707031 L 7.2929688 10.292969 L 1.5859375 16 L 7.2929688 21.707031 L 8.7070312 20.292969 L 5.4140625 17 L 15 17 L 15 26.585938 L 11.707031 23.292969 L 10.292969 24.707031 L 16 30.414062 L 21.707031 24.707031 L 20.292969 23.292969 L 17 26.585938 L 17 17 L 26.585938 17 L 23.292969 20.292969 L 24.707031 21.707031 L 30.414062 16 L 24.707031 10.292969 L 23.292969 11.707031 L 26.585938 15 L 17 15 L 17 5.4140625 L 20.292969 8.7070312 L 21.707031 7.2929688 L 16 1.5859375 z"/></svg>

After

Width:  |  Height:  |  Size: 658 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M 16 2.09375 L 15.28125 2.78125 L 7.28125 10.78125 L 8.71875 12.21875 L 15 5.9375 L 15 26.0625 L 8.71875 19.78125 L 7.28125 21.21875 L 15.28125 29.21875 L 16 29.90625 L 16.71875 29.21875 L 24.71875 21.21875 L 23.28125 19.78125 L 17 26.0625 L 17 5.9375 L 23.28125 12.21875 L 24.71875 10.78125 L 16.71875 2.78125 Z"/></svg>

After

Width:  |  Height:  |  Size: 390 B

Some files were not shown because too many files have changed in this diff Show More