diff --git a/majak/settings/base.py b/majak/settings/base.py
index ac9510a45ae8ca1682451830280fa01865118a76..85a7707c13404763f48bdfdf8d6721f8dc9fed8b 100644
--- a/majak/settings/base.py
+++ b/majak/settings/base.py
@@ -32,9 +32,10 @@ DATABASES["default"]["ATOMIC_REQUESTS"] = True
 # ------------------------------------------------------------------------------
 INSTALLED_APPS = [
     "search",
+    "senat_campaign",
     "senator",
-    "pirates",
     "users",
+    "pirates",
     "wagtail.contrib.forms",
     "wagtail.contrib.redirects",
     "wagtail.contrib.modeladmin",
diff --git a/senat_campaign/__init__.py b/senat_campaign/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/senat_campaign/apps.py b/senat_campaign/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..0a3372bab265703b73686bca4b8280709d91367c
--- /dev/null
+++ b/senat_campaign/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class SenatCampaignConfig(AppConfig):
+    name = "senat_campaign"
diff --git a/senat_campaign/migrations/0001_initial.py b/senat_campaign/migrations/0001_initial.py
new file mode 100644
index 0000000000000000000000000000000000000000..b8a967edb7bf7f21bc8873e0b87d73eb1a0daf3d
--- /dev/null
+++ b/senat_campaign/migrations/0001_initial.py
@@ -0,0 +1,378 @@
+# Generated by Django 3.0.6 on 2020-05-13 19:15
+
+import django.db.models.deletion
+import wagtail.core.blocks
+import wagtail.core.fields
+import wagtail.documents.blocks
+import wagtail.images.blocks
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    initial = True
+
+    dependencies = [
+        ("wagtailcore", "0045_assign_unlock_grouppagepermission"),
+        ("wagtailimages", "0022_uploadedimage"),
+    ]
+
+    operations = [
+        migrations.CreateModel(
+            name="SenatCampaignCookiesPage",
+            fields=[
+                (
+                    "page_ptr",
+                    models.OneToOneField(
+                        auto_created=True,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        parent_link=True,
+                        primary_key=True,
+                        serialize=False,
+                        to="wagtailcore.Page",
+                    ),
+                ),
+                (
+                    "body",
+                    wagtail.core.fields.RichTextField(blank=True, verbose_name="obsah"),
+                ),
+            ],
+            options={"verbose_name": "Cookies",},
+            bases=("wagtailcore.page",),
+        ),
+        migrations.CreateModel(
+            name="SenatCampaignNewsIndexPage",
+            fields=[
+                (
+                    "page_ptr",
+                    models.OneToOneField(
+                        auto_created=True,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        parent_link=True,
+                        primary_key=True,
+                        serialize=False,
+                        to="wagtailcore.Page",
+                    ),
+                ),
+            ],
+            options={"verbose_name": "Aktuality",},
+            bases=("wagtailcore.page",),
+        ),
+        migrations.CreateModel(
+            name="SenatCampaignProgramPage",
+            fields=[
+                (
+                    "page_ptr",
+                    models.OneToOneField(
+                        auto_created=True,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        parent_link=True,
+                        primary_key=True,
+                        serialize=False,
+                        to="wagtailcore.Page",
+                    ),
+                ),
+                (
+                    "committee_preference",
+                    wagtail.core.fields.StreamField(
+                        [
+                            (
+                                "committee",
+                                wagtail.core.blocks.CharBlock(label="výbor či komise"),
+                            )
+                        ],
+                        blank=True,
+                        verbose_name="preferované výbory a komise",
+                    ),
+                ),
+                (
+                    "content",
+                    wagtail.core.fields.StreamField(
+                        [
+                            (
+                                "item",
+                                wagtail.core.blocks.StructBlock(
+                                    [
+                                        (
+                                            "title",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="titulek"
+                                            ),
+                                        ),
+                                        (
+                                            "perex",
+                                            wagtail.core.blocks.TextBlock(
+                                                label="perex na úvodní stránku"
+                                            ),
+                                        ),
+                                        (
+                                            "body",
+                                            wagtail.core.blocks.RichTextBlock(
+                                                label="text bodu"
+                                            ),
+                                        ),
+                                        (
+                                            "image",
+                                            wagtail.images.blocks.ImageChooserBlock(
+                                                label="ilustrační obrázek"
+                                            ),
+                                        ),
+                                    ]
+                                ),
+                            )
+                        ],
+                        blank=True,
+                        verbose_name="programové body",
+                    ),
+                ),
+            ],
+            options={"verbose_name": "Program",},
+            bases=("wagtailcore.page",),
+        ),
+        migrations.CreateModel(
+            name="SenatCampaignWebSettings",
+            fields=[
+                (
+                    "id",
+                    models.AutoField(
+                        auto_created=True,
+                        primary_key=True,
+                        serialize=False,
+                        verbose_name="ID",
+                    ),
+                ),
+                (
+                    "first_name",
+                    models.CharField(max_length=250, verbose_name="jméno kandidáta"),
+                ),
+                (
+                    "last_name",
+                    models.CharField(max_length=250, verbose_name="příjmení kandidáta"),
+                ),
+                (
+                    "facebook",
+                    models.URLField(blank=True, null=True, verbose_name="Facebook URL"),
+                ),
+                (
+                    "instagram",
+                    models.URLField(
+                        blank=True, null=True, verbose_name="Instagram URL"
+                    ),
+                ),
+                (
+                    "twitter",
+                    models.URLField(blank=True, null=True, verbose_name="Twitter URL"),
+                ),
+                (
+                    "linkedin",
+                    models.URLField(blank=True, null=True, verbose_name="LinkedIn URL"),
+                ),
+                (
+                    "contacts",
+                    wagtail.core.fields.StreamField(
+                        [
+                            (
+                                "item",
+                                wagtail.core.blocks.StructBlock(
+                                    [
+                                        (
+                                            "name",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="jméno"
+                                            ),
+                                        ),
+                                        (
+                                            "job",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="pozice", required=False
+                                            ),
+                                        ),
+                                        (
+                                            "phone",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="telefon", required=False
+                                            ),
+                                        ),
+                                        (
+                                            "email",
+                                            wagtail.core.blocks.EmailBlock(
+                                                label="email", required=False
+                                            ),
+                                        ),
+                                        (
+                                            "photo",
+                                            wagtail.images.blocks.ImageChooserBlock(
+                                                label="fotka"
+                                            ),
+                                        ),
+                                    ]
+                                ),
+                            )
+                        ],
+                        blank=True,
+                        verbose_name="kontaktní osoby",
+                    ),
+                ),
+                (
+                    "site",
+                    models.OneToOneField(
+                        editable=False,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        to="wagtailcore.Site",
+                    ),
+                ),
+            ],
+            options={"verbose_name": "Senát kampaň",},
+        ),
+        migrations.CreateModel(
+            name="SenatCampaignNewsPage",
+            fields=[
+                (
+                    "page_ptr",
+                    models.OneToOneField(
+                        auto_created=True,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        parent_link=True,
+                        primary_key=True,
+                        serialize=False,
+                        to="wagtailcore.Page",
+                    ),
+                ),
+                ("date", models.DateField(verbose_name="datum")),
+                ("perex", models.TextField(verbose_name="perex")),
+                (
+                    "body",
+                    wagtail.core.fields.RichTextField(
+                        blank=True, verbose_name="článek"
+                    ),
+                ),
+                (
+                    "photo",
+                    models.ForeignKey(
+                        blank=True,
+                        null=True,
+                        on_delete=django.db.models.deletion.PROTECT,
+                        to="wagtailimages.Image",
+                        verbose_name="fotka",
+                    ),
+                ),
+            ],
+            options={"verbose_name": "Aktualita",},
+            bases=("wagtailcore.page",),
+        ),
+        migrations.CreateModel(
+            name="SenatCampaignHomePage",
+            fields=[
+                (
+                    "page_ptr",
+                    models.OneToOneField(
+                        auto_created=True,
+                        on_delete=django.db.models.deletion.CASCADE,
+                        parent_link=True,
+                        primary_key=True,
+                        serialize=False,
+                        to="wagtailcore.Page",
+                    ),
+                ),
+                (
+                    "headline",
+                    models.CharField(
+                        blank=True, max_length=250, verbose_name="podtitulek pod jménem"
+                    ),
+                ),
+                (
+                    "claim",
+                    models.CharField(
+                        blank=True,
+                        max_length=250,
+                        null=True,
+                        verbose_name="slogan pod fotkou",
+                    ),
+                ),
+                (
+                    "about_left",
+                    wagtail.core.fields.RichTextField(
+                        blank=True, verbose_name="kdo jsem (levý sloupec)"
+                    ),
+                ),
+                (
+                    "about_right",
+                    wagtail.core.fields.RichTextField(
+                        blank=True, verbose_name="kdo jsem (pravý sloupec)"
+                    ),
+                ),
+                (
+                    "about_gallery",
+                    wagtail.core.fields.StreamField(
+                        [
+                            (
+                                "photo",
+                                wagtail.images.blocks.ImageChooserBlock(label="fotka"),
+                            )
+                        ],
+                        blank=True,
+                        verbose_name="kdo jsem - galerie",
+                    ),
+                ),
+                (
+                    "financials",
+                    wagtail.core.fields.StreamField(
+                        [
+                            (
+                                "link",
+                                wagtail.core.blocks.StructBlock(
+                                    [
+                                        (
+                                            "label",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="název"
+                                            ),
+                                        ),
+                                        (
+                                            "url",
+                                            wagtail.core.blocks.URLBlock(label="odkaz"),
+                                        ),
+                                    ],
+                                    label="odkaz",
+                                ),
+                            ),
+                            (
+                                "document",
+                                wagtail.core.blocks.StructBlock(
+                                    [
+                                        (
+                                            "label",
+                                            wagtail.core.blocks.CharBlock(
+                                                label="název"
+                                            ),
+                                        ),
+                                        (
+                                            "doc",
+                                            wagtail.documents.blocks.DocumentChooserBlock(
+                                                label="dokument"
+                                            ),
+                                        ),
+                                    ],
+                                    label="dokument",
+                                ),
+                            ),
+                        ],
+                        blank=True,
+                        verbose_name="transparentní financování",
+                    ),
+                ),
+                (
+                    "top_photo",
+                    models.ForeignKey(
+                        blank=True,
+                        null=True,
+                        on_delete=django.db.models.deletion.PROTECT,
+                        to="wagtailimages.Image",
+                        verbose_name="hlavní fotka",
+                    ),
+                ),
+            ],
+            options={"verbose_name": "Senát kampaň",},
+            bases=("wagtailcore.page",),
+        ),
+    ]
diff --git a/senat_campaign/migrations/__init__.py b/senat_campaign/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/senat_campaign/models.py b/senat_campaign/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..f8a02f5513af52a1714792b6362504e5e56f7941
--- /dev/null
+++ b/senat_campaign/models.py
@@ -0,0 +1,317 @@
+from django.db import models
+from wagtail.admin.edit_handlers import (
+    FieldPanel,
+    ObjectList,
+    StreamFieldPanel,
+    TabbedInterface,
+)
+from wagtail.contrib.settings.models import BaseSetting, register_setting
+from wagtail.core import blocks
+from wagtail.core.fields import RichTextField, StreamField
+from wagtail.core.models import Page
+from wagtail.documents.blocks import DocumentChooserBlock
+from wagtail.images.blocks import ImageChooserBlock
+from wagtail.images.edit_handlers import ImageChooserPanel
+
+
+class SenatCampaignHomePage(Page):
+    # top section
+    headline = models.CharField("podtitulek pod jménem", max_length=250, blank=True)
+    top_photo = models.ForeignKey(
+        "wagtailimages.Image",
+        on_delete=models.PROTECT,
+        blank=True,
+        null=True,
+        verbose_name="hlavní fotka",
+    )
+    claim = models.CharField("slogan pod fotkou", max_length=250, blank=True, null=True)
+    # about
+    about_left = RichTextField("kdo jsem (levý sloupec)", blank=True)
+    about_right = RichTextField("kdo jsem (pravý sloupec)", blank=True)
+    about_gallery = StreamField(
+        [("photo", ImageChooserBlock(label="fotka"))],
+        verbose_name="kdo jsem - galerie",
+        blank=True,
+    )
+    # financials
+    financials = StreamField(
+        [
+            (
+                "link",
+                blocks.StructBlock(
+                    [
+                        ("label", blocks.CharBlock(label="název")),
+                        ("url", blocks.URLBlock(label="odkaz")),
+                    ],
+                    label="odkaz",
+                ),
+            ),
+            (
+                "document",
+                blocks.StructBlock(
+                    [
+                        ("label", blocks.CharBlock(label="název")),
+                        ("doc", DocumentChooserBlock(label="dokument")),
+                    ],
+                    label="dokument",
+                ),
+            ),
+        ],
+        verbose_name="transparentní financování",
+        blank=True,
+    )
+
+    content_panels = Page.content_panels + [
+        FieldPanel("headline"),
+        ImageChooserPanel("top_photo"),
+        FieldPanel("claim"),
+        FieldPanel("about_left", classname="full"),
+        FieldPanel("about_right", classname="full"),
+        StreamFieldPanel("about_gallery"),
+        StreamFieldPanel("financials"),
+    ]
+
+    subpage_types = [
+        "senat_campaign.SenatCampaignNewsIndexPage",
+        "senat_campaign.SenatCampaignProgramPage",
+        "senat_campaign.SenatCampaignCookiesPage",
+    ]
+
+    # flag for rendering anchor links in menu
+    is_home = True
+
+    class Meta:
+        verbose_name = f"Senát kampaň"
+
+    def get_context(self, request):
+        context = super().get_context(request)
+
+        # get news
+        context["articles"] = (
+            self.get_descendants()
+            .type(SenatCampaignNewsPage)
+            .live()
+            .order_by("-senatcampaignnewspage__date")[:3]
+        )
+
+        try:
+            context["news_url"] = (
+                self.get_children()
+                .type(SenatCampaignNewsIndexPage)
+                .live()
+                .get()
+                .get_url(request)
+            )
+        except Page.DoesNotExist:
+            context["news_url"] = "#"
+
+        # get page with program
+        try:
+            context["program_page"] = (
+                self.get_children()
+                .type(SenatCampaignProgramPage)
+                .live()
+                .specific()
+                .get()
+            )
+        except Page.DoesNotExist:
+            context["program_page"] = None
+
+        return context
+
+
+class SenatCampaignNewsIndexPage(Page):
+    parent_page_types = ["senat_campaign.SenatCampaignHomePage"]
+    subpage_types = ["senat_campaign.SenatCampaignNewsPage"]
+
+    # flag for rendering anchor links in menu
+    is_home = False
+
+    class Meta:
+        verbose_name = f"Aktuality"
+
+    def get_context(self, request):
+        context = super().get_context(request)
+        articles = self.get_children().live().order_by("-senatcampaignnewspage__date")
+        context["articles"] = articles
+        return context
+
+
+class SenatCampaignNewsPage(Page):
+    date = models.DateField("datum")
+    perex = models.TextField("perex")
+    body = RichTextField("článek", blank=True)
+    photo = models.ForeignKey(
+        "wagtailimages.Image",
+        verbose_name="fotka",
+        on_delete=models.PROTECT,
+        null=True,
+        blank=True,
+    )
+
+    content_panels = Page.content_panels + [
+        FieldPanel("date"),
+        FieldPanel("perex"),
+        FieldPanel("body", classname="full"),
+        ImageChooserPanel("photo"),
+    ]
+
+    parent_page_types = ["senat_campaign.SenatCampaignNewsIndexPage"]
+    subpage_types = []
+
+    # flag for rendering anchor links in menu
+    is_home = False
+
+    class Meta:
+        verbose_name = f"Aktualita"
+
+    def get_context(self, request):
+        context = super().get_context(request)
+        context["related_articles"] = (
+            self.get_siblings(inclusive=False)
+            .live()
+            .order_by("-senatcampaignnewspage__date")[:3]
+        )
+        return context
+
+
+class ProgramBlock(blocks.StructBlock):
+    title = blocks.CharBlock(label="titulek")
+    perex = blocks.TextBlock(label="perex na úvodní stránku")
+    body = blocks.RichTextBlock(label="text bodu")
+    image = ImageChooserBlock(label="ilustrační obrázek")
+
+    class Meta:
+        icon = "doc-full"
+        label = "programový bod"
+
+
+class SenatCampaignProgramPage(Page):
+    committee_preference = StreamField(
+        [("committee", blocks.CharBlock(label="výbor či komise"))],
+        verbose_name="preferované výbory a komise",
+        blank=True,
+    )
+    content = StreamField(
+        [("item", ProgramBlock())], verbose_name="programové body", blank=True
+    )
+
+    content_panels = Page.content_panels + [
+        StreamFieldPanel("committee_preference"),
+        StreamFieldPanel("content"),
+    ]
+
+    parent_page_types = ["senat_campaign.SenatCampaignHomePage"]
+    subpage_types = []
+
+    # flag for rendering anchor links in menu
+    is_home = False
+
+    class Meta:
+        verbose_name = f"Program"
+
+
+class SenatCampaignCookiesPage(Page):
+    body = RichTextField("obsah", blank=True)
+
+    content_panels = Page.content_panels + [
+        FieldPanel("body", classname="full"),
+    ]
+
+    parent_page_types = ["senat_campaign.SenatCampaignHomePage"]
+    subpage_types = []
+
+    # flag for rendering anchor links in menu
+    is_home = False
+
+    class Meta:
+        verbose_name = f"Cookies"
+
+
+class ContactBlock(blocks.StructBlock):
+    name = blocks.CharBlock(label="jméno")
+    job = blocks.CharBlock(label="pozice", required=False)
+    phone = blocks.CharBlock(label="telefon", required=False)
+    email = blocks.EmailBlock(label="email", required=False)
+    photo = ImageChooserBlock(label="fotka")
+
+    class Meta:
+        icon = "person"
+        label = "kontaktní osoba"
+
+
+@register_setting
+class SenatCampaignWebSettings(BaseSetting):
+    first_name = models.CharField("jméno kandidáta", max_length=250)
+    last_name = models.CharField("příjmení kandidáta", max_length=250)
+    facebook = models.URLField("Facebook URL", blank=True, null=True)
+    instagram = models.URLField("Instagram URL", blank=True, null=True)
+    twitter = models.URLField("Twitter URL", blank=True, null=True)
+    linkedin = models.URLField("LinkedIn URL", blank=True, null=True)
+    contacts = StreamField(
+        [("item", ContactBlock())], verbose_name="kontaktní osoby", blank=True
+    )
+
+    # TODO Matomo
+    # TODO donations
+
+    first_tab_panels = [
+        FieldPanel("first_name"),
+        FieldPanel("last_name"),
+    ]
+
+    second_tab_panels = [
+        FieldPanel("facebook"),
+        FieldPanel("instagram"),
+        FieldPanel("twitter"),
+        FieldPanel("linkedin"),
+    ]
+
+    third_tab_panels = [
+        StreamFieldPanel("contacts"),
+    ]
+
+    edit_handler = TabbedInterface(
+        [
+            ObjectList(first_tab_panels, heading="Nastavení"),
+            ObjectList(second_tab_panels, heading="Sociální sítě"),
+            ObjectList(third_tab_panels, heading="Kontakty"),
+        ]
+    )
+
+    class Meta:
+        verbose_name = f"Senát kampaň"
+
+    @property
+    def full_name(self):
+        return f"{self.first_name} {self.last_name}"
+
+    @property
+    def has_program(self):
+        return SenatCampaignProgramPage.objects.in_site(self.site).live().exists()
+
+    @property
+    def has_news(self):
+        return SenatCampaignNewsIndexPage.objects.in_site(self.site).live().exists()
+
+    @property
+    def has_callendar(self):
+        # TODO
+        return False
+
+    @property
+    def has_donations(self):
+        # TODO
+        return False
+
+    @property
+    def cookies_page_url(self):
+        try:
+            return (
+                SenatCampaignCookiesPage.objects.in_site(self.site)
+                .live()
+                .get()
+                .get_url()
+            )
+        except Page.DoesNotExist:
+            return "#"
diff --git a/senat_campaign/static/senat_campaign/css/style.css b/senat_campaign/static/senat_campaign/css/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..4e6b8874ee7b5ec76838d4c7b7473a52daeb77da
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/css/style.css
@@ -0,0 +1,1119 @@
+/*
+*
+* Custom styling for Piráti senate candidate website
+* Author: Daniel Hlavacek
+* Author's website: https://danielhlavacek.cz/
+*
+*/
+
+/* GENERAL */
+
+body {
+  font-size: 16px;
+  /*padding-top: 79px;*/
+  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+}
+
+a:hover {
+  color: #757575;
+}
+
+/* HEADINGS */
+
+h1, h1.lead {
+  font-size: 3.6rem;
+}
+
+h2, h2.lead {
+  font-size: 2.8rem;
+}
+
+h3, h3.lead {
+  font-size: 2.1rem;
+}
+
+h4, h4.lead {
+  font-size: 1.65rem;
+}
+
+h5, h5.lead {
+  font-size: 1.3rem;
+}
+
+h6, h6.lead {
+  font-size: 1rem;
+}
+
+@media screen and (max-width: 500px) {
+  h1, h1.lead {
+    font-size: 3rem;
+  }
+  h2, h2.lead {
+    font-size: 2.4rem;
+  }
+  h3, h3.lead {
+    font-size: 1.85rem;
+  }
+  h4, h4.lead {
+    font-size: 1.4rem;
+  }
+  h5, h5.lead {
+    font-size: 1.2rem;
+  }
+  h6, h6.lead {
+    font-size: 1rem;
+  }
+}
+
+h1.lead, h2.lead, h3.lead, h4.lead, h5.lead, h6.lead {
+  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  line-height: 1;
+  text-transform: uppercase;
+}
+
+
+
+h1.homepage-heading {
+  font-size: 6rem;
+}
+h1.heading {
+  font-size: 4rem;
+}
+h2.page-subheading {
+  font-size: 4rem;
+}
+h3.page-subheading {
+  font-size: 3.8rem;
+}
+
+@media screen and (max-width: 1200px) {
+  h1.homepage-heading {
+    font-size: 5.4rem;
+  }
+  h1.heading {
+    font-size: 4rem;
+  }
+  h2.page-subheading {
+    font-size: 4rem;
+  }
+  h3.page-subheading {
+    font-size: 3.6rem;
+  }
+}
+
+@media screen and (max-width: 991px) {
+  h1.homepage-heading {
+    font-size: 4.4rem;
+  }
+  h1.heading {
+    font-size: 3.7rem;
+  }
+  h2.page-subheading {
+    font-size: 3.7rem;
+  }
+  h3.page-subheading {
+    font-size: 3.2rem;
+  }
+}
+
+@media screen and (max-width: 440px) {
+  h1.homepage-heading {
+    font-size: 3.8rem;
+  }
+  h1.heading {
+    font-size: 3.4rem;
+  }
+  h2.page-subheading {
+    font-size: 3.4rem;
+  }
+  h3.page-subheading {
+    font-size: 3rem;
+  }
+}
+
+@media screen and (max-width: 370px) {
+  h1.homepage-heading {
+    font-size: 3.6rem;
+  }
+  h2.page-subheading {
+    font-size: 3rem;
+  }
+  h3.page-subheading {
+    font-size: 2.6rem;
+  }
+}
+
+@media screen and (max-width: 330px) {
+  h1.homepage-heading {
+    font-size: 3rem;
+  }
+  h2.page-subheading {
+    font-size: 2.8rem;
+  }
+  h3.page-subheading {
+    font-size: 2.3rem;
+  }
+}
+
+
+
+/* BUTTONS */
+
+.btn-dark {
+  background: black;
+}
+
+.btn {
+  border-radius: 0;
+  padding: 0.7rem 1.6rem;
+}
+
+.btn {
+  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+}
+
+.btn-lg {
+  border-radius: 0;
+  padding: 0.7rem 3rem;
+}
+
+/* TOOLS AND FIXES */
+
+.lazyload, .lazyloading {
+  opacity: 0;
+}
+
+.lazyloaded {
+  opacity: 1;
+  transition: opacity .5s;
+}
+
+/* SECTIONS */
+
+.section--primary {
+  background: #ffffff;
+  color: #000000;
+}
+
+.section--alternate {
+  background: #f7f7f7;
+  color: #000000;
+}
+
+.section--black {
+  background: #000000;
+  color: #ffffff;
+}
+
+/* SECTION SIZING */
+
+section {
+  padding: 4rem 0rem;
+}
+
+.section--lead {
+  padding: 6rem 0rem;
+}
+
+.section--no-bottom-padding {
+  padding-bottom: 0rem;
+}
+
+@media screen and (max-width: 991px) {
+  section {
+    padding: 3.5rem 0rem;
+  }
+  .section--lead {
+    padding: 4rem 0rem;
+  }
+}
+
+@media screen and (max-width: 768px) {
+  section {
+    padding: 3rem 0rem;
+  }
+  .section--lead {
+    padding: 3.5rem 0rem;
+  }
+}
+
+@media screen and (max-width: 575px) {
+  section {
+    padding: 2.5rem 0rem;
+  }
+  .section--lead {
+    padding: 3rem 0rem;
+  }
+}
+
+/* HEADER */
+
+.navbar {
+  background: #212121;
+}
+
+.navbar-dark .navbar-toggler-icon {
+  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
+.navbar-dark .navbar-toggler {
+  color: #ffffff;
+  border: none;
+  margin-right: -1rem;
+}
+
+.navbar.sticky-top {
+  top: -1px;
+}
+
+.nav-link {
+  display: block;
+  padding: .5rem 1rem;
+  text-transform: uppercase;
+  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  font-size: 1.2rem;
+}
+
+.navbar-brand {
+  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  font-size: 2.2rem;
+  text-transform: uppercase;
+}
+
+@media screen and (max-width: 420px) {
+  .navbar-brand {
+    font-size: 2rem;
+  }
+}
+
+@media screen and (max-width: 390px) {
+  .navbar-brand {
+    font-size: 1.8rem;
+  }
+}
+
+@media screen and (max-width: 350px) {
+  .navbar-brand {
+    font-size: 1.6rem;
+  }
+}
+
+.navbar-brand--alt {
+  display: none;
+}
+
+@media screen and (max-width: 330px) {
+  .navbar-brand--alt {
+    display: block;
+  }
+  .navbar-brand--primary {
+    display: none;
+  }
+}
+
+.brand-wrapper {
+  height: 64px;
+  display: flex;
+  align-items: center;
+  justify-content: flex-start;
+}
+
+@media screen and (min-width: 1200px) {
+  .navbar-expand-lg .navbar-nav .nav-link {
+    padding-right: 0.8rem;
+    padding-left: 0.8rem;
+  }
+}
+
+@media screen and (min-width: 576px) and (max-width: 1199.99px) {
+  .navbar .navbar-collapse .navbar-nav {
+    margin-top: 1rem;
+    margin-bottom: 1rem;
+  }
+}
+
+.header__socials {
+  display: flex;
+  margin-left: -0.5rem;
+}
+
+.header__socials a {
+  padding: 0.5rem;
+}
+
+.header__socials a i {
+	font-size: 1rem;
+	color: white;
+}
+
+.header__socials.header__socials--mobile {
+  margin-left: -0.7rem;
+  padding-top: 0.4rem;
+}
+
+.header__socials.header__socials--mobile a {
+  padding: 0.7rem;
+}
+
+.header__socials.header__socials--mobile a i {
+  font-size: 1.3rem;
+  color: rgba(255,255,255,.5);
+}
+
+.support_button {
+    color: #fff;
+    background-color: #5bb85d;
+    border-color: #5bb85d;
+}
+
+
+/*--/ Hamburger Navbar /--*/
+
+.navbar-toggler {
+  position: relative;
+}
+
+.navbar-toggler:focus,
+.navbar-toggler:active {
+  outline: 0;
+}
+
+.navbar-toggler span {
+  display: block;
+  background-color: #ffffff;
+  height: 2px;
+  width: 30px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+  -webkit-transform: rotate(0deg);
+  transform: rotate(0deg);
+  left: 0;
+  opacity: 1;
+}
+
+.navbar-toggler span:nth-child(1),
+.navbar-toggler span:nth-child(3) {
+  transition: -webkit-transform .35s ease-in-out;
+  transition: transform .35s ease-in-out;
+  transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
+}
+
+.navbar-toggler:not(.collapsed) span:nth-child(1) {
+  position: absolute;
+  left: 12px;
+  top: 10px;
+  -webkit-transform: rotate(135deg);
+  transform: rotate(135deg);
+  opacity: 0.9;
+}
+
+.navbar-toggler:not(.collapsed) span:nth-child(2) {
+  height: 12px;
+  visibility: hidden;
+  background-color: transparent;
+}
+
+.navbar-toggler:not(.collapsed) span:nth-child(3) {
+  position: absolute;
+  left: 12px;
+  top: 10px;
+  -webkit-transform: rotate(-135deg);
+  transform: rotate(-135deg);
+  opacity: 0.9;
+}
+
+
+/* FOOTER */
+
+.footer__top {
+  background: #212121;
+}
+
+.footer__bottom {
+  background: #000000;
+}
+
+footer {
+  color: #8a8a8a;
+}
+
+footer a {
+  color: #8a8a8a;
+}
+
+footer a:hover {
+  color: #ffffff;
+  text-decoration: none;
+}
+
+footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
+  color: #ffffff;
+}
+
+.footer__top {
+  padding: 4rem 0rem;
+}
+
+@media screen and (max-width: 991px) {
+  .footer__top {
+    padding: 3.5rem 0rem;
+  }
+}
+
+@media screen and (max-width: 768px) {
+  .footer__top {
+    padding: 3rem 0rem;
+  }
+}
+
+@media screen and (max-width: 575px) {
+  .footer__top {
+    padding: 2.5rem 0rem;
+  }
+}
+
+.footer__bottom {
+  padding: 2rem 0rem;
+}
+
+.footer__bottom a {
+  border-bottom: 1px dotted;
+}
+
+.footer__bottom a:hover {
+  border-bottom: none;
+  text-decoration: none;
+  color: #8a8a8a;
+}
+
+.footer__list-heading {
+  text-transform: uppercase;
+  margin-bottom: 1.6rem;
+}
+
+/* UVOD */
+
+.uvod__image-wrapper {
+  max-width: 180px;
+  display: inline-block;
+}
+
+.uvod__button {
+  margin-right: 2rem;
+}
+
+/* PROGRAM */
+
+.priorities__box {
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+  border: none;
+  border-radius: 0;
+}
+
+.priorities__box .card-title {
+  font-weight: bold;
+}
+
+.priorities__list {
+  font-weight: bold;
+  list-style: none;
+  padding-left: 0;
+}
+
+.priorities__list li {
+  margin-bottom: 0.5rem;
+  display: flex;
+}
+
+.priorities__list li .bullet {
+  background: #5bb85d;
+  color: white;
+  border-radius: 50%;
+  width: 1.4rem;
+  height: 1.4rem;
+  font-size: 0.8rem;
+  text-align: center;
+  margin-right: 0.5rem;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  flex-shrink: 0;
+}
+
+.priorities__list li:last-child {
+  margin-bottom: 0;
+}
+
+@media screen and (min-width: 1200px) {
+  .priorities__box {
+    max-width: 18rem;
+  }
+
+  .priorities__button {
+    max-width: 18rem;
+  }
+}
+
+.priority__heading {
+  font-weight: bold;
+}
+
+.priority__icon {
+  max-width: 10rem;
+  margin-bottom: 1.6rem;
+}
+
+@media screen and (max-width: 768px) {
+  .priority__icon {
+    max-width: 8rem;
+  }
+}
+
+@media screen and (max-width: 575px) {
+  .priority {
+    display: flex;
+  }
+  .priority__icon {
+    width: 7rem;
+    flex-shrink: 0;
+    margin-right: 1.6rem;
+  }
+}
+
+@media screen and (max-width: 400px) {
+  .priority__icon {
+    width: 5rem;
+  }
+}
+
+@media screen and (max-width: 340px) {
+  .priority__icon {
+    width: 4rem;
+  }
+}
+
+.priority a {
+  color: black;
+}
+
+.priority a:hover {
+  color: black;
+  text-decoration: none;
+}
+
+/* ABOUT */
+.about-images img {
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+}
+
+/* NEWS */
+.news__item {
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+  border-radius: 0;
+  border: 0;
+  height: 100%;
+  color: black;
+  transition: all 0.5s ease-in-out;
+
+}
+
+.news__item:hover {
+  text-decoration: none;
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, 0.73);
+  color: black;
+}
+
+.news__item:hover .card-img-top {
+  opacity: 0.9;
+}
+
+.news__item .card-footer {
+  border-radius: 0;
+  border: 0;
+}
+
+.card-footer .text-muted {
+  color: #707070 !important;
+}
+
+.news__item .card-img, .news__item .card-img-top {
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}
+
+.news__item .card-body h5 {
+	font-weight: bold;
+}
+
+.news__item .card-body p:last-child {
+	margin-bottom: 0;
+}
+
+.news__item .card-body p {
+	color: #797676;
+}
+
+.news__item .card-footer span {
+  color: #707070 !important;
+  font-weight: 400;
+  font-size: 0.9rem;
+}
+
+/* CALENDAR */
+.calendar {
+  display: flex;
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+}
+
+.calendar__left {
+  background: #e1242a;
+  color: white;
+  padding: 1.8rem;
+  flex: 0 0 auto;
+  justify-content: space-between;
+  display: flex;
+  flex-direction: column;
+}
+
+.calendar__icon {
+  margin-bottom: 2rem;
+}
+
+.calendar__icon i {
+  font-size: 9rem;
+}
+
+.calendar__right {
+  width: 100%;
+  padding: 0.8rem 0;
+}
+
+.calendar__row {
+  display: flex;
+  flex-wrap: nowrap;
+  flex-direction: row;
+}
+
+.calendar__row__date1 h3 {
+  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+  color: #e1242a;
+  margin-bottom: 0;
+}
+
+.calendar__row__date1 {
+  padding: 0.5rem 1.5rem;
+}
+
+.calendar__row__date2 {
+  padding: 0.5rem;
+  min-width: 6.8rem;
+}
+
+.calendar__row__content {
+  padding: 0.5rem 1.2rem;
+}
+
+.calendar__row__date2 h6, .calendar__row__content h6 {
+  font-weight: bold;
+  margin-bottom: 0;
+}
+
+.calendar__row__date2 p, .calendar__row__content p {
+  color: #6c757d;
+  margin-bottom: 0;
+}
+
+@media screen and (min-width: 1200px) {
+  .calendar__row__date2 {
+    min-width: 7.6rem;
+  }
+}
+
+@media screen and (max-width: 991px) {
+  .calendar {
+    flex-direction: column;
+  }
+  .calendar__left {
+    flex-direction: row;
+  }
+  .calendar__icon {
+    order: 1;
+  }
+  .calendar__icon {
+    order: 1;
+  }
+  .calendar__left-content {
+    order: 0;
+  }
+  .calendar__icon i {
+    font-size: 5rem;
+  }
+}
+
+@media screen and (max-width: 450px) {
+  .calendar__row__date1 {
+    display: none;
+  }
+  .calendar__row__date2 h6 {
+    color: #e1242a;
+  }
+  .calendar__row__date2 {
+    padding: 0.5rem 0.5rem 0.5rem 1.2rem;
+  }
+}
+
+@media screen and (max-width: 430px) {
+  .calendar__icon {
+    display: none;
+  }
+}
+
+
+.calendar__modal .modal-header {
+    background: #e1242a;
+    color: white;
+    border-bottom: 0;
+    border-radius: 0;
+}
+
+.calendar__modal .modal-body {
+    background: #e1242a;
+    color: white;
+    padding-top: 0;
+}
+
+.calendar__modal .nav-link {
+  color: white;
+}
+
+.calendar__modal .modal-content {
+  border-radius: 0;
+}
+
+.calendar__modal .nav-pills .nav-link {
+	border-radius: 0;
+}
+
+.calendar__modal .nav-pills .nav-link.active {
+  background-color: white;
+  color:black;
+}
+
+.calendar__modal .modal-header .close {
+  padding: 0.2rem 1rem 1rem 1rem;
+  text-shadow: none;
+	color: white;
+	font-weight: 300;
+  line-height: 3rem;
+  font-size: 3rem;
+}
+
+
+/* FINANCING */
+.finance__item {
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+  display: flex;
+  margin-bottom: 1rem;
+  align-items: center;
+}
+
+.finance__content h6 {
+  font-weight: bold;
+  margin-bottom: 0;
+}
+
+.finance__content {
+  padding: 0.8rem 1rem 0.8rem 0rem;
+  flex-grow: 1;
+}
+
+.finance__icon {
+  padding: 0.7rem 1.1rem;
+}
+
+.finance__item {
+  color: black;
+}
+
+.finance__item:hover {
+  text-decoration: none;
+}
+
+.finance__action {
+  padding: 0rem;
+}
+
+@media screen and (max-width: 450px) {
+  .finance__action {
+    display: none;
+  }
+}
+
+
+/* FOOTER */
+.person {
+  display: flex;
+  align-items: center;
+}
+
+.person__photo {
+  margin-right: 1rem;
+  flex-shrink: 0;
+  width: 5rem;
+  height: 5rem;
+}
+
+@media screen and (max-width: 450px) {
+  .person__photo {
+    width: 4rem;
+    height: 4rem;
+  }
+}
+
+@media screen and (max-width: 350px) {
+  .person__photo {
+    width: 3rem;
+    height: 3rem;
+  }
+}
+
+.person__photo-inner {
+  border-radius: 50%;
+  overflow: hidden;
+  border: 0.3rem solid white;
+  width: 100%;
+  height: 100%;
+}
+
+.person__content h6 {
+  font-weight: bold;
+  margin-bottom: 0;
+}
+
+.person__content a {
+  display: block;
+  word-break: break-all;
+}
+
+.socials {
+  display: flex;
+  justify-content: flex-end;
+}
+
+.socials a {
+  margin-right: 2.6rem;
+}
+
+@media screen and (max-width: 991px) {
+  .socials a {
+    margin-right: 1.6rem;
+  }
+}
+
+.socials a:last-child {
+  margin-right: 0;
+}
+
+.socials a i {
+  font-size: 2.6rem;
+  color: white;
+}
+
+@media screen and (max-width: 767.99px) {
+  .socials {
+    justify-content: flex-start;
+  }
+  .socials a i {
+    font-size: 1.8rem;
+  }
+}
+
+
+
+/* PAGINATION */
+.page-link {
+  padding: .8rem 1.1rem;
+  color: #333;
+  background-color: #f3f3f3;
+  border: 1px solid #f3f3f3;
+  font-weight: bold;
+}
+
+.page-link:hover {
+  color: #333;
+  background-color: #e9ecef;
+  border-color: #e9ecef;
+}
+
+.page-link:focus {
+  box-shadow: 0 0 0 .2rem rgba(168, 168, 168, 0.25);
+}
+
+.page-item {
+  margin-right: 0.5rem;
+}
+
+.page-item:last-child {
+  margin-right: 0;
+}
+
+.page-item.active .page-link {
+  color: #fff;
+  background-color: #333;
+  border-color: #333;
+}
+
+.page-item:first-child .page-link {
+  border-top-left-radius: 0;
+  border-bottom-left-radius: 0;
+}
+
+.page-item:last-child .page-link {
+  border-top-right-radius: 0;
+  border-bottom-right-radius: 0;
+}
+
+
+
+/* ARTICLE */
+.article__header {
+  padding: 4rem 0 2rem 0;
+}
+
+.article__date {
+  margin-bottom: 0;
+  color: #707070;
+}
+
+.article__tags .badge {
+  font-size: 1rem;
+  background: white;
+  border-radius: 0;
+  padding: 0.8rem 1.3rem;
+  font-weight: normal;
+}
+
+
+/* SHARING BOX */
+.article__sharing-box {
+  box-shadow: 0 .25rem 1.875rem rgba(42, 53, 79, .28);
+  border: none;
+  border-radius: 0;
+}
+
+.article__sharing-box h3 {
+  margin-bottom: 0;
+}
+
+.article__sharing-box .icon i {
+  font-size: 2.4rem;
+}
+
+.article__sharing-box .icon {
+  margin-bottom: 2.8rem;
+}
+
+.article__sharing-box .card-body {
+  padding: 2rem;
+  margin-bottom: 1rem;
+}
+
+.btn-facebook {
+  color: #fff;
+  background-color: #3b5998;
+  border-color: #3b5998;
+}
+
+.btn-twitter {
+  color: #fff;
+  background-color: #55acee;
+  border-color: #55acee;
+}
+
+.btn-linkedin {
+  color: #fff;
+  background-color: #007bb5;
+  border-color: #007bb5;
+}
+
+.btn-facebook:hover {
+  color: #fff;
+  background-color: #253860;
+  border-color: #253860;
+}
+
+.btn-twitter:hover {
+  color: #fff;
+  background-color: #448cc4;
+  border-color: #448cc4;
+}
+
+.btn-linkedin:hover {
+  color: #fff;
+  background-color: #006291;
+  border-color: #006291;
+}
+
+.sharing-buttons {
+  display: flex;
+  justify-content: space-between;
+}
+
+.sharing-buttons a {
+  flex: 1;
+  margin-right: 8px;
+  padding: .375rem .75rem;
+}
+
+.sharing-buttons a:last-child {
+  margin-right: 0;
+}
+
+.sharing-box__content {
+  margin-bottom: 0.6rem;
+}
+
+@media screen and (max-width: 991px) {
+  .article__sharing-box .card-body {
+    padding: 1.8rem;
+    margin-bottom: 0;
+  }
+  .article__sharing-box .image {
+    display: none;
+  }
+
+  .sharing-box__content {
+    display: flex;
+    align-items: center;
+    margin-bottom: 1rem;
+  }
+
+  .article__sharing-box .icon {
+    margin-bottom: 0;
+    margin-right: 1.2rem;
+  }
+}
+
+/* ARTICLE CONTENT */
+article img {
+  max-width: 100%;
+  height: auto;
+  margin-top: 1rem;
+  margin-bottom: 3rem;
+}
+
+
+
+/* ARTICLE CONTENT */
+
+.priority-alt__icon {
+	max-width: 8rem;
+	margin-right: 1.6rem;
+}
+
+
+.priority-alt__content {
+	display: flex;
+	align-items: center;
+	margin-bottom: 2rem;
+}
diff --git a/senat_campaign/static/senat_campaign/img/logo_napis.png b/senat_campaign/static/senat_campaign/img/logo_napis.png
new file mode 100644
index 0000000000000000000000000000000000000000..46a9607f9bdf2ad54101a1d4aba9def6e08d5f36
Binary files /dev/null and b/senat_campaign/static/senat_campaign/img/logo_napis.png differ
diff --git a/senat_campaign/static/senat_campaign/img/vlajka.jpg b/senat_campaign/static/senat_campaign/img/vlajka.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fbd6467d361a2212899a1eb23885177ea74ea67e
Binary files /dev/null and b/senat_campaign/static/senat_campaign/img/vlajka.jpg differ
diff --git a/senat_campaign/static/senat_campaign/js/scripts.js b/senat_campaign/static/senat_campaign/js/scripts.js
new file mode 100644
index 0000000000000000000000000000000000000000..7d5ef1f5d0f7f8329e246d2bca7dc938781457be
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/js/scripts.js
@@ -0,0 +1,49 @@
+
+  // Scroll to an element
+  function scrollToElement(elementId, margin, upOnly) {
+
+        // Defaults
+        if (margin === undefined) {
+          margin = 30;
+        }
+        if (upOnly === undefined) {
+          upOnly = 0;
+        }
+
+        // Target position and current position
+        var targetOffset = $(elementId).offset().top - (margin);
+        var currentOffset = $(window).scrollTop();
+
+        if (upOnly == 1) {
+          // Check if target position is higher, we don't scroll down
+          if (targetOffset < currentOffset) {
+            // Animate the body to the position
+            $('html, body').animate({
+              scrollTop: targetOffset
+            }, 400);
+           }
+        } else {
+          $('html, body').animate({
+             scrollTop: targetOffset
+          }, 400);
+        }
+
+  }
+
+  // Universal scrolling
+  $(document).on('click','.js-scroll-anchor', {} ,function(e){
+    e.preventDefault();
+    scrollToElement($(this).attr("href"), 79);
+  });
+
+  $('[data-fancybox="gallery"]').fancybox({
+    buttons: [
+      // "zoom",
+      //"share",
+      //"slideShow",
+      //"fullScreen",
+      //"download",
+      // "thumbs",
+      "close"
+    ],
+  });
diff --git a/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/css/bootstrap.min.css b/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/css/bootstrap.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..27a8e820874518c05e14cbb5af1dcedb63c535dd
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/css/bootstrap.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 0%;flex:1 1 0%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal .list-group-item.active{margin-top:0}.list-group-horizontal .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm .list-group-item.active{margin-top:0}.list-group-horizontal-sm .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md .list-group-item.active{margin-top:0}.list-group-horizontal-md .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg .list-group-item.active{margin-top:0}.list-group-horizontal-lg .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl .list-group-item.active{margin-top:0}.list-group-horizontal-xl .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush .list-group-item{border-right-width:0;border-left-width:0;border-radius:0}.list-group-flush .list-group-item:first-child{border-top-width:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
+/*# sourceMappingURL=bootstrap.min.css.map */
diff --git a/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/js/bootstrap.min.js b/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/js/bootstrap.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..7febeda70d3669f8687e7d430b97a296528d8134
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/bootstrap-4.4.1/js/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+  * Bootstrap v4.4.1 (https://getbootstrap.com/)
+  * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+  */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t=t||self).bootstrap={},t.jQuery,t.Popper)}(this,function(t,g,u){"use strict";function i(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function s(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,i)}return n}function l(o){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?e(Object(r),!0).forEach(function(t){var e,n,i;e=o,i=r[n=t],n in e?Object.defineProperty(e,n,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[n]=i}):Object.getOwnPropertyDescriptors?Object.defineProperties(o,Object.getOwnPropertyDescriptors(r)):e(Object(r)).forEach(function(t){Object.defineProperty(o,t,Object.getOwnPropertyDescriptor(r,t))})}return o}g=g&&g.hasOwnProperty("default")?g.default:g,u=u&&u.hasOwnProperty("default")?u.default:u;var n="transitionend";function o(t){var e=this,n=!1;return g(this).one(_.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||_.triggerTransitionEnd(e)},t),this}var _={TRANSITION_END:"bsTransitionEnd",getUID:function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},getSelectorFromElement:function(t){var e=t.getAttribute("data-target");if(!e||"#"===e){var n=t.getAttribute("href");e=n&&"#"!==n?n.trim():""}try{return document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var e=g(t).css("transition-duration"),n=g(t).css("transition-delay"),i=parseFloat(e),o=parseFloat(n);return i||o?(e=e.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(e)+parseFloat(n))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){g(t).trigger(n)},supportsTransitionEnd:function(){return Boolean(n)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=e[i],s=r&&_.isElement(r)?"element":(a=r,{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var a},findShadowRoot:function(t){if(!document.documentElement.attachShadow)return null;if("function"!=typeof t.getRootNode)return t instanceof ShadowRoot?t:t.parentNode?_.findShadowRoot(t.parentNode):null;var e=t.getRootNode();return e instanceof ShadowRoot?e:null},jQueryDetection:function(){if("undefined"==typeof g)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=g.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};_.jQueryDetection(),g.fn.emulateTransitionEnd=o,g.event.special[_.TRANSITION_END]={bindType:n,delegateType:n,handle:function(t){if(g(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var r="alert",a="bs.alert",c="."+a,h=g.fn[r],f={CLOSE:"close"+c,CLOSED:"closed"+c,CLICK_DATA_API:"click"+c+".data-api"},d="alert",m="fade",p="show",v=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){g.removeData(this._element,a),this._element=null},t._getRootElement=function(t){var e=_.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n=n||g(t).closest("."+d)[0]},t._triggerCloseEvent=function(t){var e=g.Event(f.CLOSE);return g(t).trigger(e),e},t._removeElement=function(e){var n=this;if(g(e).removeClass(p),g(e).hasClass(m)){var t=_.getTransitionDurationFromElement(e);g(e).one(_.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(t)}else this._destroyElement(e)},t._destroyElement=function(t){g(t).detach().trigger(f.CLOSED).remove()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(a);e||(e=new i(this),t.data(a,e)),"close"===n&&e[n](this)})},i._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),i}();g(document).on(f.CLICK_DATA_API,'[data-dismiss="alert"]',v._handleDismiss(new v)),g.fn[r]=v._jQueryInterface,g.fn[r].Constructor=v,g.fn[r].noConflict=function(){return g.fn[r]=h,v._jQueryInterface};var y="button",E="bs.button",C="."+E,T=".data-api",b=g.fn[y],S="active",D="btn",I="focus",w='[data-toggle^="button"]',A='[data-toggle="buttons"]',N='[data-toggle="button"]',O='[data-toggle="buttons"] .btn',k='input:not([type="hidden"])',P=".active",L=".btn",j={CLICK_DATA_API:"click"+C+T,FOCUS_BLUR_DATA_API:"focus"+C+T+" blur"+C+T,LOAD_DATA_API:"load"+C+T},H=function(){function n(t){this._element=t}var t=n.prototype;return t.toggle=function(){var t=!0,e=!0,n=g(this._element).closest(A)[0];if(n){var i=this._element.querySelector(k);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(S))t=!1;else{var o=n.querySelector(P);o&&g(o).removeClass(S)}else"checkbox"===i.type?"LABEL"===this._element.tagName&&i.checked===this._element.classList.contains(S)&&(t=!1):t=!1;t&&(i.checked=!this._element.classList.contains(S),g(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(S)),t&&g(this._element).toggleClass(S))},t.dispose=function(){g.removeData(this._element,E),this._element=null},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(E);t||(t=new n(this),g(this).data(E,t)),"toggle"===e&&t[e]()})},s(n,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),n}();g(document).on(j.CLICK_DATA_API,w,function(t){var e=t.target;if(g(e).hasClass(D)||(e=g(e).closest(L)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var n=e.querySelector(k);if(n&&(n.hasAttribute("disabled")||n.classList.contains("disabled")))return void t.preventDefault();H._jQueryInterface.call(g(e),"toggle")}}).on(j.FOCUS_BLUR_DATA_API,w,function(t){var e=g(t.target).closest(L)[0];g(e).toggleClass(I,/^focus(in)?$/.test(t.type))}),g(window).on(j.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(O)),e=0,n=t.length;e<n;e++){var i=t[e],o=i.querySelector(k);o.checked||o.hasAttribute("checked")?i.classList.add(S):i.classList.remove(S)}for(var r=0,s=(t=[].slice.call(document.querySelectorAll(N))).length;r<s;r++){var a=t[r];"true"===a.getAttribute("aria-pressed")?a.classList.add(S):a.classList.remove(S)}}),g.fn[y]=H._jQueryInterface,g.fn[y].Constructor=H,g.fn[y].noConflict=function(){return g.fn[y]=b,H._jQueryInterface};var R="carousel",x="bs.carousel",F="."+x,U=".data-api",W=g.fn[R],q={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},M={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},K="next",Q="prev",B="left",V="right",Y={SLIDE:"slide"+F,SLID:"slid"+F,KEYDOWN:"keydown"+F,MOUSEENTER:"mouseenter"+F,MOUSELEAVE:"mouseleave"+F,TOUCHSTART:"touchstart"+F,TOUCHMOVE:"touchmove"+F,TOUCHEND:"touchend"+F,POINTERDOWN:"pointerdown"+F,POINTERUP:"pointerup"+F,DRAG_START:"dragstart"+F,LOAD_DATA_API:"load"+F+U,CLICK_DATA_API:"click"+F+U},z="carousel",X="active",$="slide",G="carousel-item-right",J="carousel-item-left",Z="carousel-item-next",tt="carousel-item-prev",et="pointer-event",nt=".active",it=".active.carousel-item",ot=".carousel-item",rt=".carousel-item img",st=".carousel-item-next, .carousel-item-prev",at=".carousel-indicators",lt="[data-slide], [data-slide-to]",ct='[data-ride="carousel"]',ht={TOUCH:"touch",PEN:"pen"},ut=function(){function r(t,e){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._element=t,this._indicatorsElement=this._element.querySelector(at),this._touchSupported="ontouchstart"in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var t=r.prototype;return t.next=function(){this._isSliding||this._slide(K)},t.nextWhenVisible=function(){!document.hidden&&g(this._element).is(":visible")&&"hidden"!==g(this._element).css("visibility")&&this.next()},t.prev=function(){this._isSliding||this._slide(Q)},t.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(st)&&(_.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},t.to=function(t){var e=this;this._activeElement=this._element.querySelector(it);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)g(this._element).one(Y.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=n<t?K:Q;this._slide(i,this._items[t])}},t.dispose=function(){g(this._element).off(F),g.removeData(this._element,x),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},t._getConfig=function(t){return t=l({},q,{},t),_.typeCheckConfig(R,t,M),t},t._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;(this.touchDeltaX=0)<e&&this.prev(),e<0&&this.next()}},t._addEventListeners=function(){var e=this;this._config.keyboard&&g(this._element).on(Y.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&g(this._element).on(Y.MOUSEENTER,function(t){return e.pause(t)}).on(Y.MOUSELEAVE,function(t){return e.cycle(t)}),this._config.touch&&this._addTouchEventListeners()},t._addTouchEventListeners=function(){var e=this;if(this._touchSupported){var n=function(t){e._pointerEvent&&ht[t.originalEvent.pointerType.toUpperCase()]?e.touchStartX=t.originalEvent.clientX:e._pointerEvent||(e.touchStartX=t.originalEvent.touches[0].clientX)},i=function(t){e._pointerEvent&&ht[t.originalEvent.pointerType.toUpperCase()]&&(e.touchDeltaX=t.originalEvent.clientX-e.touchStartX),e._handleSwipe(),"hover"===e._config.pause&&(e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval))};g(this._element.querySelectorAll(rt)).on(Y.DRAG_START,function(t){return t.preventDefault()}),this._pointerEvent?(g(this._element).on(Y.POINTERDOWN,function(t){return n(t)}),g(this._element).on(Y.POINTERUP,function(t){return i(t)}),this._element.classList.add(et)):(g(this._element).on(Y.TOUCHSTART,function(t){return n(t)}),g(this._element).on(Y.TOUCHMOVE,function(t){return function(t){t.originalEvent.touches&&1<t.originalEvent.touches.length?e.touchDeltaX=0:e.touchDeltaX=t.originalEvent.touches[0].clientX-e.touchStartX}(t)}),g(this._element).on(Y.TOUCHEND,function(t){return i(t)}))}},t._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},t._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(ot)):[],this._items.indexOf(t)},t._getItemByDirection=function(t,e){var n=t===K,i=t===Q,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var s=(o+(t===Q?-1:1))%this._items.length;return-1==s?this._items[this._items.length-1]:this._items[s]},t._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(it)),o=g.Event(Y.SLIDE,{relatedTarget:t,direction:e,from:i,to:n});return g(this._element).trigger(o),o},t._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(nt));g(e).removeClass(X);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&g(n).addClass(X)}},t._slide=function(t,e){var n,i,o,r=this,s=this._element.querySelector(it),a=this._getItemIndex(s),l=e||s&&this._getItemByDirection(t,s),c=this._getItemIndex(l),h=Boolean(this._interval);if(o=t===K?(n=J,i=Z,B):(n=G,i=tt,V),l&&g(l).hasClass(X))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&s&&l){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(l);var u=g.Event(Y.SLID,{relatedTarget:l,direction:o,from:a,to:c});if(g(this._element).hasClass($)){g(l).addClass(i),_.reflow(l),g(s).addClass(n),g(l).addClass(n);var f=parseInt(l.getAttribute("data-interval"),10);f?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=f):this._config.interval=this._config.defaultInterval||this._config.interval;var d=_.getTransitionDurationFromElement(s);g(s).one(_.TRANSITION_END,function(){g(l).removeClass(n+" "+i).addClass(X),g(s).removeClass(X+" "+i+" "+n),r._isSliding=!1,setTimeout(function(){return g(r._element).trigger(u)},0)}).emulateTransitionEnd(d)}else g(s).removeClass(X),g(l).addClass(X),this._isSliding=!1,g(this._element).trigger(u);h&&this.cycle()}},r._jQueryInterface=function(i){return this.each(function(){var t=g(this).data(x),e=l({},q,{},g(this).data());"object"==typeof i&&(e=l({},e,{},i));var n="string"==typeof i?i:e.slide;if(t||(t=new r(this,e),g(this).data(x,t)),"number"==typeof i)t.to(i);else if("string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}else e.interval&&e.ride&&(t.pause(),t.cycle())})},r._dataApiClickHandler=function(t){var e=_.getSelectorFromElement(this);if(e){var n=g(e)[0];if(n&&g(n).hasClass(z)){var i=l({},g(n).data(),{},g(this).data()),o=this.getAttribute("data-slide-to");o&&(i.interval=!1),r._jQueryInterface.call(g(n),i),o&&g(n).data(x).to(o),t.preventDefault()}}},s(r,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return q}}]),r}();g(document).on(Y.CLICK_DATA_API,lt,ut._dataApiClickHandler),g(window).on(Y.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(ct)),e=0,n=t.length;e<n;e++){var i=g(t[e]);ut._jQueryInterface.call(i,i.data())}}),g.fn[R]=ut._jQueryInterface,g.fn[R].Constructor=ut,g.fn[R].noConflict=function(){return g.fn[R]=W,ut._jQueryInterface};var ft="collapse",dt="bs.collapse",gt="."+dt,_t=g.fn[ft],mt={toggle:!0,parent:""},pt={toggle:"boolean",parent:"(string|element)"},vt={SHOW:"show"+gt,SHOWN:"shown"+gt,HIDE:"hide"+gt,HIDDEN:"hidden"+gt,CLICK_DATA_API:"click"+gt+".data-api"},yt="show",Et="collapse",Ct="collapsing",Tt="collapsed",bt="width",St="height",Dt=".show, .collapsing",It='[data-toggle="collapse"]',wt=function(){function a(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var n=[].slice.call(document.querySelectorAll(It)),i=0,o=n.length;i<o;i++){var r=n[i],s=_.getSelectorFromElement(r),a=[].slice.call(document.querySelectorAll(s)).filter(function(t){return t===e});null!==s&&0<a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){g(this._element).hasClass(yt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!g(this._element).hasClass(yt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(Dt)).filter(function(t){return"string"==typeof n._config.parent?t.getAttribute("data-parent")===n._config.parent:t.classList.contains(Et)})).length&&(t=null),!(t&&(e=g(t).not(this._selector).data(dt))&&e._isTransitioning))){var i=g.Event(vt.SHOW);if(g(this._element).trigger(i),!i.isDefaultPrevented()){t&&(a._jQueryInterface.call(g(t).not(this._selector),"hide"),e||g(t).data(dt,null));var o=this._getDimension();g(this._element).removeClass(Et).addClass(Ct),this._element.style[o]=0,this._triggerArray.length&&g(this._triggerArray).removeClass(Tt).attr("aria-expanded",!0),this.setTransitioning(!0);var r="scroll"+(o[0].toUpperCase()+o.slice(1)),s=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){g(n._element).removeClass(Ct).addClass(Et).addClass(yt),n._element.style[o]="",n.setTransitioning(!1),g(n._element).trigger(vt.SHOWN)}).emulateTransitionEnd(s),this._element.style[o]=this._element[r]+"px"}}},t.hide=function(){var t=this;if(!this._isTransitioning&&g(this._element).hasClass(yt)){var e=g.Event(vt.HIDE);if(g(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",_.reflow(this._element),g(this._element).addClass(Ct).removeClass(Et).removeClass(yt);var i=this._triggerArray.length;if(0<i)for(var o=0;o<i;o++){var r=this._triggerArray[o],s=_.getSelectorFromElement(r);if(null!==s)g([].slice.call(document.querySelectorAll(s))).hasClass(yt)||g(r).addClass(Tt).attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[n]="";var a=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){t.setTransitioning(!1),g(t._element).removeClass(Ct).addClass(Et).trigger(vt.HIDDEN)}).emulateTransitionEnd(a)}}},t.setTransitioning=function(t){this._isTransitioning=t},t.dispose=function(){g.removeData(this._element,dt),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},t._getConfig=function(t){return(t=l({},mt,{},t)).toggle=Boolean(t.toggle),_.typeCheckConfig(ft,t,pt),t},t._getDimension=function(){return g(this._element).hasClass(bt)?bt:St},t._getParent=function(){var t,n=this;_.isElement(this._config.parent)?(t=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(t=this._config.parent[0])):t=document.querySelector(this._config.parent);var e='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',i=[].slice.call(t.querySelectorAll(e));return g(i).each(function(t,e){n._addAriaAndCollapsedClass(a._getTargetFromElement(e),[e])}),t},t._addAriaAndCollapsedClass=function(t,e){var n=g(t).hasClass(yt);e.length&&g(e).toggleClass(Tt,!n).attr("aria-expanded",n)},a._getTargetFromElement=function(t){var e=_.getSelectorFromElement(t);return e?document.querySelector(e):null},a._jQueryInterface=function(i){return this.each(function(){var t=g(this),e=t.data(dt),n=l({},mt,{},t.data(),{},"object"==typeof i&&i?i:{});if(!e&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),e||(e=new a(this,n),t.data(dt,e)),"string"==typeof i){if("undefined"==typeof e[i])throw new TypeError('No method named "'+i+'"');e[i]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return mt}}]),a}();g(document).on(vt.CLICK_DATA_API,It,function(t){"A"===t.currentTarget.tagName&&t.preventDefault();var n=g(this),e=_.getSelectorFromElement(this),i=[].slice.call(document.querySelectorAll(e));g(i).each(function(){var t=g(this),e=t.data(dt)?"toggle":n.data();wt._jQueryInterface.call(t,e)})}),g.fn[ft]=wt._jQueryInterface,g.fn[ft].Constructor=wt,g.fn[ft].noConflict=function(){return g.fn[ft]=_t,wt._jQueryInterface};var At="dropdown",Nt="bs.dropdown",Ot="."+Nt,kt=".data-api",Pt=g.fn[At],Lt=new RegExp("38|40|27"),jt={HIDE:"hide"+Ot,HIDDEN:"hidden"+Ot,SHOW:"show"+Ot,SHOWN:"shown"+Ot,CLICK:"click"+Ot,CLICK_DATA_API:"click"+Ot+kt,KEYDOWN_DATA_API:"keydown"+Ot+kt,KEYUP_DATA_API:"keyup"+Ot+kt},Ht="disabled",Rt="show",xt="dropup",Ft="dropright",Ut="dropleft",Wt="dropdown-menu-right",qt="position-static",Mt='[data-toggle="dropdown"]',Kt=".dropdown form",Qt=".dropdown-menu",Bt=".navbar-nav",Vt=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Yt="top-start",zt="top-end",Xt="bottom-start",$t="bottom-end",Gt="right-start",Jt="left-start",Zt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},te={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},ee=function(){function c(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t=c.prototype;return t.toggle=function(){if(!this._element.disabled&&!g(this._element).hasClass(Ht)){var t=g(this._menu).hasClass(Rt);c._clearMenus(),t||this.show(!0)}},t.show=function(t){if(void 0===t&&(t=!1),!(this._element.disabled||g(this._element).hasClass(Ht)||g(this._menu).hasClass(Rt))){var e={relatedTarget:this._element},n=g.Event(jt.SHOW,e),i=c._getParentFromElement(this._element);if(g(i).trigger(n),!n.isDefaultPrevented()){if(!this._inNavbar&&t){if("undefined"==typeof u)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var o=this._element;"parent"===this._config.reference?o=i:_.isElement(this._config.reference)&&(o=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(o=this._config.reference[0])),"scrollParent"!==this._config.boundary&&g(i).addClass(qt),this._popper=new u(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===g(i).closest(Bt).length&&g(document.body).children().on("mouseover",null,g.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),g(this._menu).toggleClass(Rt),g(i).toggleClass(Rt).trigger(g.Event(jt.SHOWN,e))}}},t.hide=function(){if(!this._element.disabled&&!g(this._element).hasClass(Ht)&&g(this._menu).hasClass(Rt)){var t={relatedTarget:this._element},e=g.Event(jt.HIDE,t),n=c._getParentFromElement(this._element);g(n).trigger(e),e.isDefaultPrevented()||(this._popper&&this._popper.destroy(),g(this._menu).toggleClass(Rt),g(n).toggleClass(Rt).trigger(g.Event(jt.HIDDEN,t)))}},t.dispose=function(){g.removeData(this._element,Nt),g(this._element).off(Ot),this._element=null,(this._menu=null)!==this._popper&&(this._popper.destroy(),this._popper=null)},t.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},t._addEventListeners=function(){var e=this;g(this._element).on(jt.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},t._getConfig=function(t){return t=l({},this.constructor.Default,{},g(this._element).data(),{},t),_.typeCheckConfig(At,t,this.constructor.DefaultType),t},t._getMenuElement=function(){if(!this._menu){var t=c._getParentFromElement(this._element);t&&(this._menu=t.querySelector(Qt))}return this._menu},t._getPlacement=function(){var t=g(this._element.parentNode),e=Xt;return t.hasClass(xt)?(e=Yt,g(this._menu).hasClass(Wt)&&(e=zt)):t.hasClass(Ft)?e=Gt:t.hasClass(Ut)?e=Jt:g(this._menu).hasClass(Wt)&&(e=$t),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,{},e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),l({},t,{},this._config.popperConfig)},c._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(Nt);if(t||(t=new c(this,"object"==typeof e?e:null),g(this).data(Nt,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},c._clearMenus=function(t){if(!t||3!==t.which&&("keyup"!==t.type||9===t.which))for(var e=[].slice.call(document.querySelectorAll(Mt)),n=0,i=e.length;n<i;n++){var o=c._getParentFromElement(e[n]),r=g(e[n]).data(Nt),s={relatedTarget:e[n]};if(t&&"click"===t.type&&(s.clickEvent=t),r){var a=r._menu;if(g(o).hasClass(Rt)&&!(t&&("click"===t.type&&/input|textarea/i.test(t.target.tagName)||"keyup"===t.type&&9===t.which)&&g.contains(o,t.target))){var l=g.Event(jt.HIDE,s);g(o).trigger(l),l.isDefaultPrevented()||("ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),e[n].setAttribute("aria-expanded","false"),r._popper&&r._popper.destroy(),g(a).removeClass(Rt),g(o).removeClass(Rt).trigger(g.Event(jt.HIDDEN,s)))}}}},c._getParentFromElement=function(t){var e,n=_.getSelectorFromElement(t);return n&&(e=document.querySelector(n)),e||t.parentNode},c._dataApiKeydownHandler=function(t){if((/input|textarea/i.test(t.target.tagName)?!(32===t.which||27!==t.which&&(40!==t.which&&38!==t.which||g(t.target).closest(Qt).length)):Lt.test(t.which))&&(t.preventDefault(),t.stopPropagation(),!this.disabled&&!g(this).hasClass(Ht))){var e=c._getParentFromElement(this),n=g(e).hasClass(Rt);if(n||27!==t.which)if(n&&(!n||27!==t.which&&32!==t.which)){var i=[].slice.call(e.querySelectorAll(Vt)).filter(function(t){return g(t).is(":visible")});if(0!==i.length){var o=i.indexOf(t.target);38===t.which&&0<o&&o--,40===t.which&&o<i.length-1&&o++,o<0&&(o=0),i[o].focus()}}else{if(27===t.which){var r=e.querySelector(Mt);g(r).trigger("focus")}g(this).trigger("click")}}},s(c,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return Zt}},{key:"DefaultType",get:function(){return te}}]),c}();g(document).on(jt.KEYDOWN_DATA_API,Mt,ee._dataApiKeydownHandler).on(jt.KEYDOWN_DATA_API,Qt,ee._dataApiKeydownHandler).on(jt.CLICK_DATA_API+" "+jt.KEYUP_DATA_API,ee._clearMenus).on(jt.CLICK_DATA_API,Mt,function(t){t.preventDefault(),t.stopPropagation(),ee._jQueryInterface.call(g(this),"toggle")}).on(jt.CLICK_DATA_API,Kt,function(t){t.stopPropagation()}),g.fn[At]=ee._jQueryInterface,g.fn[At].Constructor=ee,g.fn[At].noConflict=function(){return g.fn[At]=Pt,ee._jQueryInterface};var ne="modal",ie="bs.modal",oe="."+ie,re=g.fn[ne],se={backdrop:!0,keyboard:!0,focus:!0,show:!0},ae={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},le={HIDE:"hide"+oe,HIDE_PREVENTED:"hidePrevented"+oe,HIDDEN:"hidden"+oe,SHOW:"show"+oe,SHOWN:"shown"+oe,FOCUSIN:"focusin"+oe,RESIZE:"resize"+oe,CLICK_DISMISS:"click.dismiss"+oe,KEYDOWN_DISMISS:"keydown.dismiss"+oe,MOUSEUP_DISMISS:"mouseup.dismiss"+oe,MOUSEDOWN_DISMISS:"mousedown.dismiss"+oe,CLICK_DATA_API:"click"+oe+".data-api"},ce="modal-dialog-scrollable",he="modal-scrollbar-measure",ue="modal-backdrop",fe="modal-open",de="fade",ge="show",_e="modal-static",me=".modal-dialog",pe=".modal-body",ve='[data-toggle="modal"]',ye='[data-dismiss="modal"]',Ee=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",Ce=".sticky-top",Te=function(){function o(t,e){this._config=this._getConfig(e),this._element=t,this._dialog=t.querySelector(me),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t=o.prototype;return t.toggle=function(t){return this._isShown?this.hide():this.show(t)},t.show=function(t){var e=this;if(!this._isShown&&!this._isTransitioning){g(this._element).hasClass(de)&&(this._isTransitioning=!0);var n=g.Event(le.SHOW,{relatedTarget:t});g(this._element).trigger(n),this._isShown||n.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),g(this._element).on(le.CLICK_DISMISS,ye,function(t){return e.hide(t)}),g(this._dialog).on(le.MOUSEDOWN_DISMISS,function(){g(e._element).one(le.MOUSEUP_DISMISS,function(t){g(t.target).is(e._element)&&(e._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return e._showElement(t)}))}},t.hide=function(t){var e=this;if(t&&t.preventDefault(),this._isShown&&!this._isTransitioning){var n=g.Event(le.HIDE);if(g(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var i=g(this._element).hasClass(de);if(i&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),g(document).off(le.FOCUSIN),g(this._element).removeClass(ge),g(this._element).off(le.CLICK_DISMISS),g(this._dialog).off(le.MOUSEDOWN_DISMISS),i){var o=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(t){return e._hideModal(t)}).emulateTransitionEnd(o)}else this._hideModal()}}},t.dispose=function(){[window,this._element,this._dialog].forEach(function(t){return g(t).off(oe)}),g(document).off(le.FOCUSIN),g.removeData(this._element,ie),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},t.handleUpdate=function(){this._adjustDialog()},t._getConfig=function(t){return t=l({},se,{},t),_.typeCheckConfig(ne,t,ae),t},t._triggerBackdropTransition=function(){var t=this;if("static"===this._config.backdrop){var e=g.Event(le.HIDE_PREVENTED);if(g(this._element).trigger(e),e.defaultPrevented)return;this._element.classList.add(_e);var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,function(){t._element.classList.remove(_e)}).emulateTransitionEnd(n),this._element.focus()}else this.hide()},t._showElement=function(t){var e=this,n=g(this._element).hasClass(de),i=this._dialog?this._dialog.querySelector(pe):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),g(this._dialog).hasClass(ce)&&i?i.scrollTop=0:this._element.scrollTop=0,n&&_.reflow(this._element),g(this._element).addClass(ge),this._config.focus&&this._enforceFocus();function o(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,g(e._element).trigger(r)}var r=g.Event(le.SHOWN,{relatedTarget:t});if(n){var s=_.getTransitionDurationFromElement(this._dialog);g(this._dialog).one(_.TRANSITION_END,o).emulateTransitionEnd(s)}else o()},t._enforceFocus=function(){var e=this;g(document).off(le.FOCUSIN).on(le.FOCUSIN,function(t){document!==t.target&&e._element!==t.target&&0===g(e._element).has(t.target).length&&e._element.focus()})},t._setEscapeEvent=function(){var e=this;this._isShown&&this._config.keyboard?g(this._element).on(le.KEYDOWN_DISMISS,function(t){27===t.which&&e._triggerBackdropTransition()}):this._isShown||g(this._element).off(le.KEYDOWN_DISMISS)},t._setResizeEvent=function(){var e=this;this._isShown?g(window).on(le.RESIZE,function(t){return e.handleUpdate(t)}):g(window).off(le.RESIZE)},t._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._isTransitioning=!1,this._showBackdrop(function(){g(document.body).removeClass(fe),t._resetAdjustments(),t._resetScrollbar(),g(t._element).trigger(le.HIDDEN)})},t._removeBackdrop=function(){this._backdrop&&(g(this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(t){var e=this,n=g(this._element).hasClass(de)?de:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=ue,n&&this._backdrop.classList.add(n),g(this._backdrop).appendTo(document.body),g(this._element).on(le.CLICK_DISMISS,function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&e._triggerBackdropTransition()}),n&&_.reflow(this._backdrop),g(this._backdrop).addClass(ge),!t)return;if(!n)return void t();var i=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){g(this._backdrop).removeClass(ge);var o=function(){e._removeBackdrop(),t&&t()};if(g(this._element).hasClass(de)){var r=_.getTransitionDurationFromElement(this._backdrop);g(this._backdrop).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o()}else t&&t()},t._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},t._setScrollbar=function(){var o=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(Ee)),e=[].slice.call(document.querySelectorAll(Ce));g(t).each(function(t,e){var n=e.style.paddingRight,i=g(e).css("padding-right");g(e).data("padding-right",n).css("padding-right",parseFloat(i)+o._scrollbarWidth+"px")}),g(e).each(function(t,e){var n=e.style.marginRight,i=g(e).css("margin-right");g(e).data("margin-right",n).css("margin-right",parseFloat(i)-o._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=g(document.body).css("padding-right");g(document.body).data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}g(document.body).addClass(fe)},t._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(Ee));g(t).each(function(t,e){var n=g(e).data("padding-right");g(e).removeData("padding-right"),e.style.paddingRight=n||""});var e=[].slice.call(document.querySelectorAll(""+Ce));g(e).each(function(t,e){var n=g(e).data("margin-right");"undefined"!=typeof n&&g(e).css("margin-right",n).removeData("margin-right")});var n=g(document.body).data("padding-right");g(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},t._getScrollbarWidth=function(){var t=document.createElement("div");t.className=he,document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},o._jQueryInterface=function(n,i){return this.each(function(){var t=g(this).data(ie),e=l({},se,{},g(this).data(),{},"object"==typeof n&&n?n:{});if(t||(t=new o(this,e),g(this).data(ie,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n](i)}else e.show&&t.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return se}}]),o}();g(document).on(le.CLICK_DATA_API,ve,function(t){var e,n=this,i=_.getSelectorFromElement(this);i&&(e=document.querySelector(i));var o=g(e).data(ie)?"toggle":l({},g(e).data(),{},g(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault();var r=g(e).one(le.SHOW,function(t){t.isDefaultPrevented()||r.one(le.HIDDEN,function(){g(n).is(":visible")&&n.focus()})});Te._jQueryInterface.call(g(e),o,this)}),g.fn[ne]=Te._jQueryInterface,g.fn[ne].Constructor=Te,g.fn[ne].noConflict=function(){return g.fn[ne]=re,Te._jQueryInterface};var be=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Se={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},De=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Ie=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function we(t,r,e){if(0===t.length)return t;if(e&&"function"==typeof e)return e(t);for(var n=(new window.DOMParser).parseFromString(t,"text/html"),s=Object.keys(r),a=[].slice.call(n.body.querySelectorAll("*")),i=function(t){var e=a[t],n=e.nodeName.toLowerCase();if(-1===s.indexOf(e.nodeName.toLowerCase()))return e.parentNode.removeChild(e),"continue";var i=[].slice.call(e.attributes),o=[].concat(r["*"]||[],r[n]||[]);i.forEach(function(t){!function(t,e){var n=t.nodeName.toLowerCase();if(-1!==e.indexOf(n))return-1===be.indexOf(n)||Boolean(t.nodeValue.match(De)||t.nodeValue.match(Ie));for(var i=e.filter(function(t){return t instanceof RegExp}),o=0,r=i.length;o<r;o++)if(n.match(i[o]))return!0;return!1}(t,o)&&e.removeAttribute(t.nodeName)})},o=0,l=a.length;o<l;o++)i(o);return n.body.innerHTML}var Ae="tooltip",Ne="bs.tooltip",Oe="."+Ne,ke=g.fn[Ae],Pe="bs-tooltip",Le=new RegExp("(^|\\s)"+Pe+"\\S+","g"),je=["sanitize","whiteList","sanitizeFn"],He={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Re={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},xe={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Se,popperConfig:null},Fe="show",Ue="out",We={HIDE:"hide"+Oe,HIDDEN:"hidden"+Oe,SHOW:"show"+Oe,SHOWN:"shown"+Oe,INSERTED:"inserted"+Oe,CLICK:"click"+Oe,FOCUSIN:"focusin"+Oe,FOCUSOUT:"focusout"+Oe,MOUSEENTER:"mouseenter"+Oe,MOUSELEAVE:"mouseleave"+Oe},qe="fade",Me="show",Ke=".tooltip-inner",Qe=".arrow",Be="hover",Ve="focus",Ye="click",ze="manual",Xe=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Me))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(qe);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,this._getPopperConfig(a)),g(o).addClass(Me),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===Ue&&e._leave(null,e)};if(g(this.tip).hasClass(qe)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){function e(){n._hoverState!==Fe&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),g(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),t&&t()}var n=this,i=this.getTipElement(),o=g.Event(this.constructor.Event.HIDE);if(g(this.element).trigger(o),!o.isDefaultPrevented()){if(g(i).removeClass(Me),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[Ye]=!1,this._activeTrigger[Ve]=!1,this._activeTrigger[Be]=!1,g(this.tip).hasClass(qe)){var r=_.getTransitionDurationFromElement(i);g(i).one(_.TRANSITION_END,e).emulateTransitionEnd(r)}else e();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Pe+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(Ke)),this.getTitle()),g(t).removeClass(qe+" "+Me)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=we(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t=t||("function"==typeof this.config.title?this.config.title.call(this.element):this.config.title)},t._getPopperConfig=function(t){var e=this;return l({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:Qe},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},{},this.config.popperConfig)},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,{},e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return Re[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==ze){var e=t===Be?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===Be?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),this._hideModalHandler=function(){i.element&&i.hide()},g(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");!this.element.getAttribute("title")&&"string"==t||(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Ve:Be]=!0),g(e.getTipElement()).hasClass(Me)||e._hoverState===Fe?e._hoverState=Fe:(clearTimeout(e._timeout),e._hoverState=Fe,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===Fe&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Ve:Be]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=Ue,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===Ue&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=g(this.element).data();return Object.keys(e).forEach(function(t){-1!==je.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,{},e,{},"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(Ae,t,this.constructor.DefaultType),t.sanitize&&(t.template=we(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Le);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(qe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ne),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ne,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return xe}},{key:"NAME",get:function(){return Ae}},{key:"DATA_KEY",get:function(){return Ne}},{key:"Event",get:function(){return We}},{key:"EVENT_KEY",get:function(){return Oe}},{key:"DefaultType",get:function(){return He}}]),i}();g.fn[Ae]=Xe._jQueryInterface,g.fn[Ae].Constructor=Xe,g.fn[Ae].noConflict=function(){return g.fn[Ae]=ke,Xe._jQueryInterface};var $e="popover",Ge="bs.popover",Je="."+Ge,Ze=g.fn[$e],tn="bs-popover",en=new RegExp("(^|\\s)"+tn+"\\S+","g"),nn=l({},Xe.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),on=l({},Xe.DefaultType,{content:"(string|element|function)"}),rn="fade",sn="show",an=".popover-header",ln=".popover-body",cn={HIDE:"hide"+Je,HIDDEN:"hidden"+Je,SHOW:"show"+Je,SHOWN:"shown"+Je,INSERTED:"inserted"+Je,CLICK:"click"+Je,FOCUSIN:"focusin"+Je,FOCUSOUT:"focusout"+Je,MOUSEENTER:"mouseenter"+Je,MOUSELEAVE:"mouseleave"+Je},hn=function(t){function i(){return t.apply(this,arguments)||this}!function(t,e){t.prototype=Object.create(e.prototype),(t.prototype.constructor=t).__proto__=e}(i,t);var e=i.prototype;return e.isWithContent=function(){return this.getTitle()||this._getContent()},e.addAttachmentClass=function(t){g(this.getTipElement()).addClass(tn+"-"+t)},e.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},e.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(an),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(ln),e),t.removeClass(rn+" "+sn)},e._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},e._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(en);null!==e&&0<e.length&&t.removeClass(e.join(""))},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ge),e="object"==typeof n?n:null;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ge,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return nn}},{key:"NAME",get:function(){return $e}},{key:"DATA_KEY",get:function(){return Ge}},{key:"Event",get:function(){return cn}},{key:"EVENT_KEY",get:function(){return Je}},{key:"DefaultType",get:function(){return on}}]),i}(Xe);g.fn[$e]=hn._jQueryInterface,g.fn[$e].Constructor=hn,g.fn[$e].noConflict=function(){return g.fn[$e]=Ze,hn._jQueryInterface};var un="scrollspy",fn="bs.scrollspy",dn="."+fn,gn=g.fn[un],_n={offset:10,method:"auto",target:""},mn={offset:"number",method:"string",target:"(string|element)"},pn={ACTIVATE:"activate"+dn,SCROLL:"scroll"+dn,LOAD_DATA_API:"load"+dn+".data-api"},vn="dropdown-item",yn="active",En='[data-spy="scroll"]',Cn=".nav, .list-group",Tn=".nav-link",bn=".nav-item",Sn=".list-group-item",Dn=".dropdown",In=".dropdown-item",wn=".dropdown-toggle",An="offset",Nn="position",On=function(){function n(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+Tn+","+this._config.target+" "+Sn+","+this._config.target+" "+In,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,g(this._scrollElement).on(pn.SCROLL,function(t){return n._process(t)}),this.refresh(),this._process()}var t=n.prototype;return t.refresh=function(){var e=this,t=this._scrollElement===this._scrollElement.window?An:Nn,o="auto"===this._config.method?t:this._config.method,r=o===Nn?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(t){var e,n=_.getSelectorFromElement(t);if(n&&(e=document.querySelector(n)),e){var i=e.getBoundingClientRect();if(i.width||i.height)return[g(e)[o]().top+r,n]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},t.dispose=function(){g.removeData(this._element,fn),g(this._scrollElement).off(dn),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},t._getConfig=function(t){if("string"!=typeof(t=l({},_n,{},"object"==typeof t&&t?t:{})).target){var e=g(t.target).attr("id");e||(e=_.getUID(un),g(t.target).attr("id",e)),t.target="#"+e}return _.typeCheckConfig(un,t,mn),t},t._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},t._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},t._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},t._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),n<=t){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}}},t._activate=function(e){this._activeTarget=e,this._clear();var t=this._selector.split(",").map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'}),n=g([].slice.call(document.querySelectorAll(t.join(","))));n.hasClass(vn)?(n.closest(Dn).find(wn).addClass(yn),n.addClass(yn)):(n.addClass(yn),n.parents(Cn).prev(Tn+", "+Sn).addClass(yn),n.parents(Cn).prev(bn).children(Tn).addClass(yn)),g(this._scrollElement).trigger(pn.ACTIVATE,{relatedTarget:e})},t._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(t){return t.classList.contains(yn)}).forEach(function(t){return t.classList.remove(yn)})},n._jQueryInterface=function(e){return this.each(function(){var t=g(this).data(fn);if(t||(t=new n(this,"object"==typeof e&&e),g(this).data(fn,t)),"string"==typeof e){if("undefined"==typeof t[e])throw new TypeError('No method named "'+e+'"');t[e]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return _n}}]),n}();g(window).on(pn.LOAD_DATA_API,function(){for(var t=[].slice.call(document.querySelectorAll(En)),e=t.length;e--;){var n=g(t[e]);On._jQueryInterface.call(n,n.data())}}),g.fn[un]=On._jQueryInterface,g.fn[un].Constructor=On,g.fn[un].noConflict=function(){return g.fn[un]=gn,On._jQueryInterface};var kn="bs.tab",Pn="."+kn,Ln=g.fn.tab,jn={HIDE:"hide"+Pn,HIDDEN:"hidden"+Pn,SHOW:"show"+Pn,SHOWN:"shown"+Pn,CLICK_DATA_API:"click"+Pn+".data-api"},Hn="dropdown-menu",Rn="active",xn="disabled",Fn="fade",Un="show",Wn=".dropdown",qn=".nav, .list-group",Mn=".active",Kn="> li > .active",Qn='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',Bn=".dropdown-toggle",Vn="> .dropdown-menu .active",Yn=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&g(this._element).hasClass(Rn)||g(this._element).hasClass(xn))){var t,i,e=g(this._element).closest(qn)[0],o=_.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName||"OL"===e.nodeName?Kn:Mn;i=(i=g.makeArray(g(e).find(r)))[i.length-1]}var s=g.Event(jn.HIDE,{relatedTarget:this._element}),a=g.Event(jn.SHOW,{relatedTarget:i});if(i&&g(i).trigger(s),g(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=document.querySelector(o)),this._activate(this._element,e);var l=function(){var t=g.Event(jn.HIDDEN,{relatedTarget:n._element}),e=g.Event(jn.SHOWN,{relatedTarget:i});g(i).trigger(t),g(n._element).trigger(e)};t?this._activate(t,t.parentNode,l):l()}}},t.dispose=function(){g.removeData(this._element,kn),this._element=null},t._activate=function(t,e,n){function i(){return o._transitionComplete(t,r,n)}var o=this,r=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?g(e).children(Mn):g(e).find(Kn))[0],s=n&&r&&g(r).hasClass(Fn);if(r&&s){var a=_.getTransitionDurationFromElement(r);g(r).removeClass(Un).one(_.TRANSITION_END,i).emulateTransitionEnd(a)}else i()},t._transitionComplete=function(t,e,n){if(e){g(e).removeClass(Rn);var i=g(e.parentNode).find(Vn)[0];i&&g(i).removeClass(Rn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(g(t).addClass(Rn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),_.reflow(t),t.classList.contains(Fn)&&t.classList.add(Un),t.parentNode&&g(t.parentNode).hasClass(Hn)){var o=g(t).closest(Wn)[0];if(o){var r=[].slice.call(o.querySelectorAll(Bn));g(r).addClass(Rn)}t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(kn);if(e||(e=new i(this),t.data(kn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),i}();g(document).on(jn.CLICK_DATA_API,Qn,function(t){t.preventDefault(),Yn._jQueryInterface.call(g(this),"show")}),g.fn.tab=Yn._jQueryInterface,g.fn.tab.Constructor=Yn,g.fn.tab.noConflict=function(){return g.fn.tab=Ln,Yn._jQueryInterface};var zn="toast",Xn="bs.toast",$n="."+Xn,Gn=g.fn[zn],Jn={CLICK_DISMISS:"click.dismiss"+$n,HIDE:"hide"+$n,HIDDEN:"hidden"+$n,SHOW:"show"+$n,SHOWN:"shown"+$n},Zn="fade",ti="hide",ei="show",ni="showing",ii={animation:"boolean",autohide:"boolean",delay:"number"},oi={animation:!0,autohide:!0,delay:500},ri='[data-dismiss="toast"]',si=function(){function i(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var t=i.prototype;return t.show=function(){var t=this,e=g.Event(Jn.SHOW);if(g(this._element).trigger(e),!e.isDefaultPrevented()){this._config.animation&&this._element.classList.add(Zn);var n=function(){t._element.classList.remove(ni),t._element.classList.add(ei),g(t._element).trigger(Jn.SHOWN),t._config.autohide&&(t._timeout=setTimeout(function(){t.hide()},t._config.delay))};if(this._element.classList.remove(ti),_.reflow(this._element),this._element.classList.add(ni),this._config.animation){var i=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},t.hide=function(){if(this._element.classList.contains(ei)){var t=g.Event(Jn.HIDE);g(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},t.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(ei)&&this._element.classList.remove(ei),g(this._element).off(Jn.CLICK_DISMISS),g.removeData(this._element,Xn),this._element=null,this._config=null},t._getConfig=function(t){return t=l({},oi,{},g(this._element).data(),{},"object"==typeof t&&t?t:{}),_.typeCheckConfig(zn,t,this.constructor.DefaultType),t},t._setListeners=function(){var t=this;g(this._element).on(Jn.CLICK_DISMISS,ri,function(){return t.hide()})},t._close=function(){function t(){e._element.classList.add(ti),g(e._element).trigger(Jn.HIDDEN)}var e=this;if(this._element.classList.remove(ei),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,t).emulateTransitionEnd(n)}else t()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(Xn);if(e||(e=new i(this,"object"==typeof n&&n),t.data(Xn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"DefaultType",get:function(){return ii}},{key:"Default",get:function(){return oi}}]),i}();g.fn[zn]=si._jQueryInterface,g.fn[zn].Constructor=si,g.fn[zn].noConflict=function(){return g.fn[zn]=Gn,si._jQueryInterface},t.Alert=v,t.Button=H,t.Carousel=ut,t.Collapse=wt,t.Dropdown=ee,t.Modal=Te,t.Popover=hn,t.Scrollspy=On,t.Tab=Yn,t.Toast=si,t.Tooltip=Xe,t.Util=_,Object.defineProperty(t,"__esModule",{value:!0})});
+//# sourceMappingURL=bootstrap.min.js.map
diff --git a/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.css b/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..faf98f6925d157cf9b81a2b9cdf3c3e37a922b1a
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.css
@@ -0,0 +1 @@
+body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
diff --git a/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.js b/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..68e3f6bd882534bc12d9610f3c8bd4cd7ab2d5a0
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fancybox/jquery.fancybox.min.js
@@ -0,0 +1,13 @@
+// ==================================================
+// fancyBox v3.5.7
+//
+// Licensed GPLv3 for open source use
+// or fancyBox Commercial License for commercial use
+//
+// http://fancyapps.com/fancybox/
+// Copyright 2019 fancyApps
+//
+// ==================================================
+!function(t,e,n,o){"use strict";function i(t,e){var o,i,a,s=[],r=0;t&&t.isDefaultPrevented()||(t.preventDefault(),e=e||{},t&&t.data&&(e=h(t.data.options,e)),o=e.$target||n(t.currentTarget).trigger("blur"),(a=n.fancybox.getInstance())&&a.$trigger&&a.$trigger.is(o)||(e.selector?s=n(e.selector):(i=o.attr("data-fancybox")||"",i?(s=t.data?t.data.items:[],s=s.length?s.filter('[data-fancybox="'+i+'"]'):n('[data-fancybox="'+i+'"]')):s=[o]),r=n(s).index(o),r<0&&(r=0),a=n.fancybox.open(s,e,r),a.$trigger=o))}if(t.console=t.console||{info:function(t){}},n){if(n.fn.fancybox)return void console.info("fancyBox already initialized");var a={closeExisting:!1,loop:!1,gutter:50,keyboard:!0,preventCaptionOverlap:!0,arrows:!0,infobar:!0,smallBtn:"auto",toolbar:"auto",buttons:["zoom","slideShow","thumbs","close"],idleTime:3,protect:!1,modal:!1,image:{preload:!1},ajax:{settings:{data:{fancybox:!0}}},iframe:{tpl:'<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" allowfullscreen="allowfullscreen" allow="autoplay; fullscreen" src=""></iframe>',preload:!0,css:{},attr:{scrolling:"auto"}},video:{tpl:'<video class="fancybox-video" controls controlsList="nodownload" poster="{{poster}}"><source src="{{src}}" type="{{format}}" />Sorry, your browser doesn\'t support embedded videos, <a href="{{src}}">download</a> and watch with your favorite video player!</video>',format:"",autoStart:!0},defaultType:"image",animationEffect:"zoom",animationDuration:366,zoomOpacity:"auto",transitionEffect:"fade",transitionDuration:366,slideClass:"",baseClass:"",baseTpl:'<div class="fancybox-container" role="dialog" tabindex="-1"><div class="fancybox-bg"></div><div class="fancybox-inner"><div class="fancybox-infobar"><span data-fancybox-index></span>&nbsp;/&nbsp;<span data-fancybox-count></span></div><div class="fancybox-toolbar">{{buttons}}</div><div class="fancybox-navigation">{{arrows}}</div><div class="fancybox-stage"></div><div class="fancybox-caption"><div class="fancybox-caption__body"></div></div></div></div>',spinnerTpl:'<div class="fancybox-loading"></div>',errorTpl:'<div class="fancybox-error"><p>{{ERROR}}</p></div>',btnTpl:{download:'<a download data-fancybox-download class="fancybox-button fancybox-button--download" title="{{DOWNLOAD}}" href="javascript:;"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.62 17.09V19H5.38v-1.91zm-2.97-6.96L17 11.45l-5 4.87-5-4.87 1.36-1.32 2.68 2.64V5h1.92v7.77z"/></svg></a>',zoom:'<button data-fancybox-zoom class="fancybox-button fancybox-button--zoom" title="{{ZOOM}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.7 17.3l-3-3a5.9 5.9 0 0 0-.6-7.6 5.9 5.9 0 0 0-8.4 0 5.9 5.9 0 0 0 0 8.4 5.9 5.9 0 0 0 7.7.7l3 3a1 1 0 0 0 1.3 0c.4-.5.4-1 0-1.5zM8.1 13.8a4 4 0 0 1 0-5.7 4 4 0 0 1 5.7 0 4 4 0 0 1 0 5.7 4 4 0 0 1-5.7 0z"/></svg></button>',close:'<button data-fancybox-close class="fancybox-button fancybox-button--close" title="{{CLOSE}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.6L6.6 5.2 5.2 6.6l5.4 5.4-5.4 5.4 1.4 1.4 5.4-5.4 5.4 5.4 1.4-1.4-5.4-5.4 5.4-5.4-1.4-1.4-5.4 5.4z"/></svg></button>',arrowLeft:'<button data-fancybox-prev class="fancybox-button fancybox-button--arrow_left" title="{{PREV}}"><div><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.28 15.7l-1.34 1.37L5 12l4.94-5.07 1.34 1.38-2.68 2.72H19v1.94H8.6z"/></svg></div></button>',arrowRight:'<button data-fancybox-next class="fancybox-button fancybox-button--arrow_right" title="{{NEXT}}"><div><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.4 12.97l-2.68 2.72 1.34 1.38L19 12l-4.94-5.07-1.34 1.38 2.68 2.72H5v1.94z"/></svg></div></button>',smallBtn:'<button type="button" data-fancybox-close class="fancybox-button fancybox-close-small" title="{{CLOSE}}"><svg xmlns="http://www.w3.org/2000/svg" version="1" viewBox="0 0 24 24"><path d="M13 12l5-5-1-1-5 5-5-5-1 1 5 5-5 5 1 1 5-5 5 5 1-1z"/></svg></button>'},parentEl:"body",hideScrollbar:!0,autoFocus:!0,backFocus:!0,trapFocus:!0,fullScreen:{autoStart:!1},touch:{vertical:!0,momentum:!0},hash:null,media:{},slideShow:{autoStart:!1,speed:3e3},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"},wheel:"auto",onInit:n.noop,beforeLoad:n.noop,afterLoad:n.noop,beforeShow:n.noop,afterShow:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop,clickContent:function(t,e){return"image"===t.type&&"zoom"},clickSlide:"close",clickOutside:"close",dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1,mobile:{preventCaptionOverlap:!1,idleTime:!1,clickContent:function(t,e){return"image"===t.type&&"toggleControls"},clickSlide:function(t,e){return"image"===t.type?"toggleControls":"close"},dblclickContent:function(t,e){return"image"===t.type&&"zoom"},dblclickSlide:function(t,e){return"image"===t.type&&"zoom"}},lang:"en",i18n:{en:{CLOSE:"Close",NEXT:"Next",PREV:"Previous",ERROR:"The requested content cannot be loaded. <br/> Please try again later.",PLAY_START:"Start slideshow",PLAY_STOP:"Pause slideshow",FULL_SCREEN:"Full screen",THUMBS:"Thumbnails",DOWNLOAD:"Download",SHARE:"Share",ZOOM:"Zoom"},de:{CLOSE:"Schlie&szlig;en",NEXT:"Weiter",PREV:"Zur&uuml;ck",ERROR:"Die angeforderten Daten konnten nicht geladen werden. <br/> Bitte versuchen Sie es sp&auml;ter nochmal.",PLAY_START:"Diaschau starten",PLAY_STOP:"Diaschau beenden",FULL_SCREEN:"Vollbild",THUMBS:"Vorschaubilder",DOWNLOAD:"Herunterladen",SHARE:"Teilen",ZOOM:"Vergr&ouml;&szlig;ern"}}},s=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},d=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),u=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),f=function(){var t,n=e.createElement("fakeelement"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in o)if(void 0!==n.style[t])return o[t];return"transitionend"}(),p=function(t){return t&&t.length&&t[0].offsetHeight},h=function(t,e){var o=n.extend(!0,{},t,e);return n.each(e,function(t,e){n.isArray(e)&&(o[t]=e)}),o},g=function(t){var o,i;return!(!t||t.ownerDocument!==e)&&(n(".fancybox-container").css("pointer-events","none"),o={x:t.getBoundingClientRect().left+t.offsetWidth/2,y:t.getBoundingClientRect().top+t.offsetHeight/2},i=e.elementFromPoint(o.x,o.y)===t,n(".fancybox-container").css("pointer-events",""),i)},b=function(t,e,o){var i=this;i.opts=h({index:o},n.fancybox.defaults),n.isPlainObject(e)&&(i.opts=h(i.opts,e)),n.fancybox.isMobile&&(i.opts=h(i.opts,i.opts.mobile)),i.id=i.opts.id||++c,i.currIndex=parseInt(i.opts.index,10)||0,i.prevIndex=null,i.prevPos=null,i.currPos=0,i.firstRun=!0,i.group=[],i.slides={},i.addContent(t),i.group.length&&i.init()};n.extend(b.prototype,{init:function(){var o,i,a=this,s=a.group[a.currIndex],r=s.opts;r.closeExisting&&n.fancybox.close(!0),n("body").addClass("fancybox-active"),!n.fancybox.getInstance()&&!1!==r.hideScrollbar&&!n.fancybox.isMobile&&e.body.scrollHeight>t.innerHeight&&(n("head").append('<style id="fancybox-style-noscroll" type="text/css">.compensate-for-scrollbar{margin-right:'+(t.innerWidth-e.documentElement.clientWidth)+"px;}</style>"),n("body").addClass("compensate-for-scrollbar")),i="",n.each(r.buttons,function(t,e){i+=r.btnTpl[e]||""}),o=n(a.translate(a,r.baseTpl.replace("{{buttons}}",i).replace("{{arrows}}",r.btnTpl.arrowLeft+r.btnTpl.arrowRight))).attr("id","fancybox-container-"+a.id).addClass(r.baseClass).data("FancyBox",a).appendTo(r.parentEl),a.$refs={container:o},["bg","inner","infobar","toolbar","stage","caption","navigation"].forEach(function(t){a.$refs[t]=o.find(".fancybox-"+t)}),a.trigger("onInit"),a.activate(),a.jumpTo(a.currIndex)},translate:function(t,e){var n=t.opts.i18n[t.opts.lang]||t.opts.i18n.en;return e.replace(/\{\{(\w+)\}\}/g,function(t,e){return void 0===n[e]?t:n[e]})},addContent:function(t){var e,o=this,i=n.makeArray(t);n.each(i,function(t,e){var i,a,s,r,c,l={},d={};n.isPlainObject(e)?(l=e,d=e.opts||e):"object"===n.type(e)&&n(e).length?(i=n(e),d=i.data()||{},d=n.extend(!0,{},d,d.options),d.$orig=i,l.src=o.opts.src||d.src||i.attr("href"),l.type||l.src||(l.type="inline",l.src=e)):l={type:"html",src:e+""},l.opts=n.extend(!0,{},o.opts,d),n.isArray(d.buttons)&&(l.opts.buttons=d.buttons),n.fancybox.isMobile&&l.opts.mobile&&(l.opts=h(l.opts,l.opts.mobile)),a=l.type||l.opts.type,r=l.src||"",!a&&r&&((s=r.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))?(a="video",l.opts.video.format||(l.opts.video.format="video/"+("ogv"===s[1]?"ogg":s[1]))):r.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)?a="image":r.match(/\.(pdf)((\?|#).*)?$/i)?(a="iframe",l=n.extend(!0,l,{contentType:"pdf",opts:{iframe:{preload:!1}}})):"#"===r.charAt(0)&&(a="inline")),a?l.type=a:o.trigger("objectNeedsType",l),l.contentType||(l.contentType=n.inArray(l.type,["html","inline","ajax"])>-1?"html":l.type),l.index=o.group.length,"auto"==l.opts.smallBtn&&(l.opts.smallBtn=n.inArray(l.type,["html","inline","ajax"])>-1),"auto"===l.opts.toolbar&&(l.opts.toolbar=!l.opts.smallBtn),l.$thumb=l.opts.$thumb||null,l.opts.$trigger&&l.index===o.opts.index&&(l.$thumb=l.opts.$trigger.find("img:first"),l.$thumb.length&&(l.opts.$orig=l.opts.$trigger)),l.$thumb&&l.$thumb.length||!l.opts.$orig||(l.$thumb=l.opts.$orig.find("img:first")),l.$thumb&&!l.$thumb.length&&(l.$thumb=null),l.thumb=l.opts.thumb||(l.$thumb?l.$thumb[0].src:null),"function"===n.type(l.opts.caption)&&(l.opts.caption=l.opts.caption.apply(e,[o,l])),"function"===n.type(o.opts.caption)&&(l.opts.caption=o.opts.caption.apply(e,[o,l])),l.opts.caption instanceof n||(l.opts.caption=void 0===l.opts.caption?"":l.opts.caption+""),"ajax"===l.type&&(c=r.split(/\s+/,2),c.length>1&&(l.src=c.shift(),l.opts.filter=c.shift())),l.opts.modal&&(l.opts=n.extend(!0,l.opts,{trapFocus:!0,infobar:0,toolbar:0,smallBtn:0,keyboard:0,slideShow:0,fullScreen:0,thumbs:0,touch:0,clickContent:!1,clickSlide:!1,clickOutside:!1,dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1})),o.group.push(l)}),Object.keys(o.slides).length&&(o.updateControls(),(e=o.Thumbs)&&e.isActive&&(e.create(),e.focus()))},addEvents:function(){var e=this;e.removeEvents(),e.$refs.container.on("click.fb-close","[data-fancybox-close]",function(t){t.stopPropagation(),t.preventDefault(),e.close(t)}).on("touchstart.fb-prev click.fb-prev","[data-fancybox-prev]",function(t){t.stopPropagation(),t.preventDefault(),e.previous()}).on("touchstart.fb-next click.fb-next","[data-fancybox-next]",function(t){t.stopPropagation(),t.preventDefault(),e.next()}).on("click.fb","[data-fancybox-zoom]",function(t){e[e.isScaledDown()?"scaleToActual":"scaleToFit"]()}),s.on("orientationchange.fb resize.fb",function(t){t&&t.originalEvent&&"resize"===t.originalEvent.type?(e.requestId&&u(e.requestId),e.requestId=d(function(){e.update(t)})):(e.current&&"iframe"===e.current.type&&e.$refs.stage.hide(),setTimeout(function(){e.$refs.stage.show(),e.update(t)},n.fancybox.isMobile?600:250))}),r.on("keydown.fb",function(t){var o=n.fancybox?n.fancybox.getInstance():null,i=o.current,a=t.keyCode||t.which;if(9==a)return void(i.opts.trapFocus&&e.focus(t));if(!(!i.opts.keyboard||t.ctrlKey||t.altKey||t.shiftKey||n(t.target).is("input,textarea,video,audio,select")))return 8===a||27===a?(t.preventDefault(),void e.close(t)):37===a||38===a?(t.preventDefault(),void e.previous()):39===a||40===a?(t.preventDefault(),void e.next()):void e.trigger("afterKeydown",t,a)}),e.group[e.currIndex].opts.idleTime&&(e.idleSecondsCounter=0,r.on("mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle",function(t){e.idleSecondsCounter=0,e.isIdle&&e.showControls(),e.isIdle=!1}),e.idleInterval=t.setInterval(function(){++e.idleSecondsCounter>=e.group[e.currIndex].opts.idleTime&&!e.isDragging&&(e.isIdle=!0,e.idleSecondsCounter=0,e.hideControls())},1e3))},removeEvents:function(){var e=this;s.off("orientationchange.fb resize.fb"),r.off("keydown.fb .fb-idle"),this.$refs.container.off(".fb-close .fb-prev .fb-next"),e.idleInterval&&(t.clearInterval(e.idleInterval),e.idleInterval=null)},previous:function(t){return this.jumpTo(this.currPos-1,t)},next:function(t){return this.jumpTo(this.currPos+1,t)},jumpTo:function(t,e){var o,i,a,s,r,c,l,d,u,f=this,h=f.group.length;if(!(f.isDragging||f.isClosing||f.isAnimating&&f.firstRun)){if(t=parseInt(t,10),!(a=f.current?f.current.opts.loop:f.opts.loop)&&(t<0||t>=h))return!1;if(o=f.firstRun=!Object.keys(f.slides).length,r=f.current,f.prevIndex=f.currIndex,f.prevPos=f.currPos,s=f.createSlide(t),h>1&&((a||s.index<h-1)&&f.createSlide(t+1),(a||s.index>0)&&f.createSlide(t-1)),f.current=s,f.currIndex=s.index,f.currPos=s.pos,f.trigger("beforeShow",o),f.updateControls(),s.forcedDuration=void 0,n.isNumeric(e)?s.forcedDuration=e:e=s.opts[o?"animationDuration":"transitionDuration"],e=parseInt(e,10),i=f.isMoved(s),s.$slide.addClass("fancybox-slide--current"),o)return s.opts.animationEffect&&e&&f.$refs.container.css("transition-duration",e+"ms"),f.$refs.container.addClass("fancybox-is-open").trigger("focus"),f.loadSlide(s),void f.preload("image");c=n.fancybox.getTranslate(r.$slide),l=n.fancybox.getTranslate(f.$refs.stage),n.each(f.slides,function(t,e){n.fancybox.stop(e.$slide,!0)}),r.pos!==s.pos&&(r.isComplete=!1),r.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"),i?(u=c.left-(r.pos*c.width+r.pos*r.opts.gutter),n.each(f.slides,function(t,o){o.$slide.removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")});var i=o.pos*c.width+o.pos*o.opts.gutter;n.fancybox.setTranslate(o.$slide,{top:0,left:i-l.left+u}),o.pos!==s.pos&&o.$slide.addClass("fancybox-slide--"+(o.pos>s.pos?"next":"previous")),p(o.$slide),n.fancybox.animate(o.$slide,{top:0,left:(o.pos-s.pos)*c.width+(o.pos-s.pos)*o.opts.gutter},e,function(){o.$slide.css({transform:"",opacity:""}).removeClass("fancybox-slide--next fancybox-slide--previous"),o.pos===f.currPos&&f.complete()})})):e&&s.opts.transitionEffect&&(d="fancybox-animated fancybox-fx-"+s.opts.transitionEffect,r.$slide.addClass("fancybox-slide--"+(r.pos>s.pos?"next":"previous")),n.fancybox.animate(r.$slide,d,e,function(){r.$slide.removeClass(d).removeClass("fancybox-slide--next fancybox-slide--previous")},!1)),s.isLoaded?f.revealContent(s):f.loadSlide(s),f.preload("image")}},createSlide:function(t){var e,o,i=this;return o=t%i.group.length,o=o<0?i.group.length+o:o,!i.slides[t]&&i.group[o]&&(e=n('<div class="fancybox-slide"></div>').appendTo(i.$refs.stage),i.slides[t]=n.extend(!0,{},i.group[o],{pos:t,$slide:e,isLoaded:!1}),i.updateSlide(i.slides[t])),i.slides[t]},scaleToActual:function(t,e,o){var i,a,s,r,c,l=this,d=l.current,u=d.$content,f=n.fancybox.getTranslate(d.$slide).width,p=n.fancybox.getTranslate(d.$slide).height,h=d.width,g=d.height;l.isAnimating||l.isMoved()||!u||"image"!=d.type||!d.isLoaded||d.hasError||(l.isAnimating=!0,n.fancybox.stop(u),t=void 0===t?.5*f:t,e=void 0===e?.5*p:e,i=n.fancybox.getTranslate(u),i.top-=n.fancybox.getTranslate(d.$slide).top,i.left-=n.fancybox.getTranslate(d.$slide).left,r=h/i.width,c=g/i.height,a=.5*f-.5*h,s=.5*p-.5*g,h>f&&(a=i.left*r-(t*r-t),a>0&&(a=0),a<f-h&&(a=f-h)),g>p&&(s=i.top*c-(e*c-e),s>0&&(s=0),s<p-g&&(s=p-g)),l.updateCursor(h,g),n.fancybox.animate(u,{top:s,left:a,scaleX:r,scaleY:c},o||366,function(){l.isAnimating=!1}),l.SlideShow&&l.SlideShow.isActive&&l.SlideShow.stop())},scaleToFit:function(t){var e,o=this,i=o.current,a=i.$content;o.isAnimating||o.isMoved()||!a||"image"!=i.type||!i.isLoaded||i.hasError||(o.isAnimating=!0,n.fancybox.stop(a),e=o.getFitPos(i),o.updateCursor(e.width,e.height),n.fancybox.animate(a,{top:e.top,left:e.left,scaleX:e.width/a.width(),scaleY:e.height/a.height()},t||366,function(){o.isAnimating=!1}))},getFitPos:function(t){var e,o,i,a,s=this,r=t.$content,c=t.$slide,l=t.width||t.opts.width,d=t.height||t.opts.height,u={};return!!(t.isLoaded&&r&&r.length)&&(e=n.fancybox.getTranslate(s.$refs.stage).width,o=n.fancybox.getTranslate(s.$refs.stage).height,e-=parseFloat(c.css("paddingLeft"))+parseFloat(c.css("paddingRight"))+parseFloat(r.css("marginLeft"))+parseFloat(r.css("marginRight")),o-=parseFloat(c.css("paddingTop"))+parseFloat(c.css("paddingBottom"))+parseFloat(r.css("marginTop"))+parseFloat(r.css("marginBottom")),l&&d||(l=e,d=o),i=Math.min(1,e/l,o/d),l*=i,d*=i,l>e-.5&&(l=e),d>o-.5&&(d=o),"image"===t.type?(u.top=Math.floor(.5*(o-d))+parseFloat(c.css("paddingTop")),u.left=Math.floor(.5*(e-l))+parseFloat(c.css("paddingLeft"))):"video"===t.contentType&&(a=t.opts.width&&t.opts.height?l/d:t.opts.ratio||16/9,d>l/a?d=l/a:l>d*a&&(l=d*a)),u.width=l,u.height=d,u)},update:function(t){var e=this;n.each(e.slides,function(n,o){e.updateSlide(o,t)})},updateSlide:function(t,e){var o=this,i=t&&t.$content,a=t.width||t.opts.width,s=t.height||t.opts.height,r=t.$slide;o.adjustCaption(t),i&&(a||s||"video"===t.contentType)&&!t.hasError&&(n.fancybox.stop(i),n.fancybox.setTranslate(i,o.getFitPos(t)),t.pos===o.currPos&&(o.isAnimating=!1,o.updateCursor())),o.adjustLayout(t),r.length&&(r.trigger("refresh"),t.pos===o.currPos&&o.$refs.toolbar.add(o.$refs.navigation.find(".fancybox-button--arrow_right")).toggleClass("compensate-for-scrollbar",r.get(0).scrollHeight>r.get(0).clientHeight)),o.trigger("onUpdate",t,e)},centerSlide:function(t){var e=this,o=e.current,i=o.$slide;!e.isClosing&&o&&(i.siblings().css({transform:"",opacity:""}),i.parent().children().removeClass("fancybox-slide--previous fancybox-slide--next"),n.fancybox.animate(i,{top:0,left:0,opacity:1},void 0===t?0:t,function(){i.css({transform:"",opacity:""}),o.isComplete||e.complete()},!1))},isMoved:function(t){var e,o,i=t||this.current;return!!i&&(o=n.fancybox.getTranslate(this.$refs.stage),e=n.fancybox.getTranslate(i.$slide),!i.$slide.hasClass("fancybox-animated")&&(Math.abs(e.top-o.top)>.5||Math.abs(e.left-o.left)>.5))},updateCursor:function(t,e){var o,i,a=this,s=a.current,r=a.$refs.container;s&&!a.isClosing&&a.Guestures&&(r.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"),o=a.canPan(t,e),i=!!o||a.isZoomable(),r.toggleClass("fancybox-is-zoomable",i),n("[data-fancybox-zoom]").prop("disabled",!i),o?r.addClass("fancybox-can-pan"):i&&("zoom"===s.opts.clickContent||n.isFunction(s.opts.clickContent)&&"zoom"==s.opts.clickContent(s))?r.addClass("fancybox-can-zoomIn"):s.opts.touch&&(s.opts.touch.vertical||a.group.length>1)&&"video"!==s.contentType&&r.addClass("fancybox-can-swipe"))},isZoomable:function(){var t,e=this,n=e.current;if(n&&!e.isClosing&&"image"===n.type&&!n.hasError){if(!n.isLoaded)return!0;if((t=e.getFitPos(n))&&(n.width>t.width||n.height>t.height))return!0}return!1},isScaledDown:function(t,e){var o=this,i=!1,a=o.current,s=a.$content;return void 0!==t&&void 0!==e?i=t<a.width&&e<a.height:s&&(i=n.fancybox.getTranslate(s),i=i.width<a.width&&i.height<a.height),i},canPan:function(t,e){var o=this,i=o.current,a=null,s=!1;return"image"===i.type&&(i.isComplete||t&&e)&&!i.hasError&&(s=o.getFitPos(i),void 0!==t&&void 0!==e?a={width:t,height:e}:i.isComplete&&(a=n.fancybox.getTranslate(i.$content)),a&&s&&(s=Math.abs(a.width-s.width)>1.5||Math.abs(a.height-s.height)>1.5)),s},loadSlide:function(t){var e,o,i,a=this;if(!t.isLoading&&!t.isLoaded){if(t.isLoading=!0,!1===a.trigger("beforeLoad",t))return t.isLoading=!1,!1;switch(e=t.type,o=t.$slide,o.off("refresh").trigger("onReset").addClass(t.opts.slideClass),e){case"image":a.setImage(t);break;case"iframe":a.setIframe(t);break;case"html":a.setContent(t,t.src||t.content);break;case"video":a.setContent(t,t.opts.video.tpl.replace(/\{\{src\}\}/gi,t.src).replace("{{format}}",t.opts.videoFormat||t.opts.video.format||"").replace("{{poster}}",t.thumb||""));break;case"inline":n(t.src).length?a.setContent(t,n(t.src)):a.setError(t);break;case"ajax":a.showLoading(t),i=n.ajax(n.extend({},t.opts.ajax.settings,{url:t.src,success:function(e,n){"success"===n&&a.setContent(t,e)},error:function(e,n){e&&"abort"!==n&&a.setError(t)}})),o.one("onReset",function(){i.abort()});break;default:a.setError(t)}return!0}},setImage:function(t){var o,i=this;setTimeout(function(){var e=t.$image;i.isClosing||!t.isLoading||e&&e.length&&e[0].complete||t.hasError||i.showLoading(t)},50),i.checkSrcset(t),t.$content=n('<div class="fancybox-content"></div>').addClass("fancybox-is-hidden").appendTo(t.$slide.addClass("fancybox-slide--image")),!1!==t.opts.preload&&t.opts.width&&t.opts.height&&t.thumb&&(t.width=t.opts.width,t.height=t.opts.height,o=e.createElement("img"),o.onerror=function(){n(this).remove(),t.$ghost=null},o.onload=function(){i.afterLoad(t)},t.$ghost=n(o).addClass("fancybox-image").appendTo(t.$content).attr("src",t.thumb)),i.setBigImage(t)},checkSrcset:function(e){var n,o,i,a,s=e.opts.srcset||e.opts.image.srcset;if(s){i=t.devicePixelRatio||1,a=t.innerWidth*i,o=s.split(",").map(function(t){var e={};return t.trim().split(/\s+/).forEach(function(t,n){var o=parseInt(t.substring(0,t.length-1),10);if(0===n)return e.url=t;o&&(e.value=o,e.postfix=t[t.length-1])}),e}),o.sort(function(t,e){return t.value-e.value});for(var r=0;r<o.length;r++){var c=o[r];if("w"===c.postfix&&c.value>=a||"x"===c.postfix&&c.value>=i){n=c;break}}!n&&o.length&&(n=o[o.length-1]),n&&(e.src=n.url,e.width&&e.height&&"w"==n.postfix&&(e.height=e.width/e.height*n.value,e.width=n.value),e.opts.srcset=s)}},setBigImage:function(t){var o=this,i=e.createElement("img"),a=n(i);t.$image=a.one("error",function(){o.setError(t)}).one("load",function(){var e;t.$ghost||(o.resolveImageSlideSize(t,this.naturalWidth,this.naturalHeight),o.afterLoad(t)),o.isClosing||(t.opts.srcset&&(e=t.opts.sizes,e&&"auto"!==e||(e=(t.width/t.height>1&&s.width()/s.height()>1?"100":Math.round(t.width/t.height*100))+"vw"),a.attr("sizes",e).attr("srcset",t.opts.srcset)),t.$ghost&&setTimeout(function(){t.$ghost&&!o.isClosing&&t.$ghost.hide()},Math.min(300,Math.max(1e3,t.height/1600))),o.hideLoading(t))}).addClass("fancybox-image").attr("src",t.src).appendTo(t.$content),(i.complete||"complete"==i.readyState)&&a.naturalWidth&&a.naturalHeight?a.trigger("load"):i.error&&a.trigger("error")},resolveImageSlideSize:function(t,e,n){var o=parseInt(t.opts.width,10),i=parseInt(t.opts.height,10);t.width=e,t.height=n,o>0&&(t.width=o,t.height=Math.floor(o*n/e)),i>0&&(t.width=Math.floor(i*e/n),t.height=i)},setIframe:function(t){var e,o=this,i=t.opts.iframe,a=t.$slide;t.$content=n('<div class="fancybox-content'+(i.preload?" fancybox-is-hidden":"")+'"></div>').css(i.css).appendTo(a),a.addClass("fancybox-slide--"+t.contentType),t.$iframe=e=n(i.tpl.replace(/\{rnd\}/g,(new Date).getTime())).attr(i.attr).appendTo(t.$content),i.preload?(o.showLoading(t),e.on("load.fb error.fb",function(e){this.isReady=1,t.$slide.trigger("refresh"),o.afterLoad(t)}),a.on("refresh.fb",function(){var n,o,s=t.$content,r=i.css.width,c=i.css.height;if(1===e[0].isReady){try{n=e.contents(),o=n.find("body")}catch(t){}o&&o.length&&o.children().length&&(a.css("overflow","visible"),s.css({width:"100%","max-width":"100%",height:"9999px"}),void 0===r&&(r=Math.ceil(Math.max(o[0].clientWidth,o.outerWidth(!0)))),s.css("width",r||"").css("max-width",""),void 0===c&&(c=Math.ceil(Math.max(o[0].clientHeight,o.outerHeight(!0)))),s.css("height",c||""),a.css("overflow","auto")),s.removeClass("fancybox-is-hidden")}})):o.afterLoad(t),e.attr("src",t.src),a.one("onReset",function(){try{n(this).find("iframe").hide().unbind().attr("src","//about:blank")}catch(t){}n(this).off("refresh.fb").empty(),t.isLoaded=!1,t.isRevealed=!1})},setContent:function(t,e){var o=this;o.isClosing||(o.hideLoading(t),t.$content&&n.fancybox.stop(t.$content),t.$slide.empty(),l(e)&&e.parent().length?((e.hasClass("fancybox-content")||e.parent().hasClass("fancybox-content"))&&e.parents(".fancybox-slide").trigger("onReset"),t.$placeholder=n("<div>").hide().insertAfter(e),e.css("display","inline-block")):t.hasError||("string"===n.type(e)&&(e=n("<div>").append(n.trim(e)).contents()),t.opts.filter&&(e=n("<div>").html(e).find(t.opts.filter))),t.$slide.one("onReset",function(){n(this).find("video,audio").trigger("pause"),t.$placeholder&&(t.$placeholder.after(e.removeClass("fancybox-content").hide()).remove(),t.$placeholder=null),t.$smallBtn&&(t.$smallBtn.remove(),t.$smallBtn=null),t.hasError||(n(this).empty(),t.isLoaded=!1,t.isRevealed=!1)}),n(e).appendTo(t.$slide),n(e).is("video,audio")&&(n(e).addClass("fancybox-video"),n(e).wrap("<div></div>"),t.contentType="video",t.opts.width=t.opts.width||n(e).attr("width"),t.opts.height=t.opts.height||n(e).attr("height")),t.$content=t.$slide.children().filter("div,form,main,video,audio,article,.fancybox-content").first(),t.$content.siblings().hide(),t.$content.length||(t.$content=t.$slide.wrapInner("<div></div>").children().first()),t.$content.addClass("fancybox-content"),t.$slide.addClass("fancybox-slide--"+t.contentType),o.afterLoad(t))},setError:function(t){t.hasError=!0,t.$slide.trigger("onReset").removeClass("fancybox-slide--"+t.contentType).addClass("fancybox-slide--error"),t.contentType="html",this.setContent(t,this.translate(t,t.opts.errorTpl)),t.pos===this.currPos&&(this.isAnimating=!1)},showLoading:function(t){var e=this;(t=t||e.current)&&!t.$spinner&&(t.$spinner=n(e.translate(e,e.opts.spinnerTpl)).appendTo(t.$slide).hide().fadeIn("fast"))},hideLoading:function(t){var e=this;(t=t||e.current)&&t.$spinner&&(t.$spinner.stop().remove(),delete t.$spinner)},afterLoad:function(t){var e=this;e.isClosing||(t.isLoading=!1,t.isLoaded=!0,e.trigger("afterLoad",t),e.hideLoading(t),!t.opts.smallBtn||t.$smallBtn&&t.$smallBtn.length||(t.$smallBtn=n(e.translate(t,t.opts.btnTpl.smallBtn)).appendTo(t.$content)),t.opts.protect&&t.$content&&!t.hasError&&(t.$content.on("contextmenu.fb",function(t){return 2==t.button&&t.preventDefault(),!0}),"image"===t.type&&n('<div class="fancybox-spaceball"></div>').appendTo(t.$content)),e.adjustCaption(t),e.adjustLayout(t),t.pos===e.currPos&&e.updateCursor(),e.revealContent(t))},adjustCaption:function(t){var e,n=this,o=t||n.current,i=o.opts.caption,a=o.opts.preventCaptionOverlap,s=n.$refs.caption,r=!1;s.toggleClass("fancybox-caption--separate",a),a&&i&&i.length&&(o.pos!==n.currPos?(e=s.clone().appendTo(s.parent()),e.children().eq(0).empty().html(i),r=e.outerHeight(!0),e.empty().remove()):n.$caption&&(r=n.$caption.outerHeight(!0)),o.$slide.css("padding-bottom",r||""))},adjustLayout:function(t){var e,n,o,i,a=this,s=t||a.current;s.isLoaded&&!0!==s.opts.disableLayoutFix&&(s.$content.css("margin-bottom",""),s.$content.outerHeight()>s.$slide.height()+.5&&(o=s.$slide[0].style["padding-bottom"],i=s.$slide.css("padding-bottom"),parseFloat(i)>0&&(e=s.$slide[0].scrollHeight,s.$slide.css("padding-bottom",0),Math.abs(e-s.$slide[0].scrollHeight)<1&&(n=i),s.$slide.css("padding-bottom",o))),s.$content.css("margin-bottom",n))},revealContent:function(t){var e,o,i,a,s=this,r=t.$slide,c=!1,l=!1,d=s.isMoved(t),u=t.isRevealed;return t.isRevealed=!0,e=t.opts[s.firstRun?"animationEffect":"transitionEffect"],i=t.opts[s.firstRun?"animationDuration":"transitionDuration"],i=parseInt(void 0===t.forcedDuration?i:t.forcedDuration,10),!d&&t.pos===s.currPos&&i||(e=!1),"zoom"===e&&(t.pos===s.currPos&&i&&"image"===t.type&&!t.hasError&&(l=s.getThumbPos(t))?c=s.getFitPos(t):e="fade"),"zoom"===e?(s.isAnimating=!0,c.scaleX=c.width/l.width,c.scaleY=c.height/l.height,a=t.opts.zoomOpacity,"auto"==a&&(a=Math.abs(t.width/t.height-l.width/l.height)>.1),a&&(l.opacity=.1,c.opacity=1),n.fancybox.setTranslate(t.$content.removeClass("fancybox-is-hidden"),l),p(t.$content),void n.fancybox.animate(t.$content,c,i,function(){s.isAnimating=!1,s.complete()})):(s.updateSlide(t),e?(n.fancybox.stop(r),o="fancybox-slide--"+(t.pos>=s.prevPos?"next":"previous")+" fancybox-animated fancybox-fx-"+e,r.addClass(o).removeClass("fancybox-slide--current"),t.$content.removeClass("fancybox-is-hidden"),p(r),"image"!==t.type&&t.$content.hide().show(0),void n.fancybox.animate(r,"fancybox-slide--current",i,function(){r.removeClass(o).css({transform:"",opacity:""}),t.pos===s.currPos&&s.complete()},!0)):(t.$content.removeClass("fancybox-is-hidden"),u||!d||"image"!==t.type||t.hasError||t.$content.hide().fadeIn("fast"),void(t.pos===s.currPos&&s.complete())))},getThumbPos:function(t){var e,o,i,a,s,r=!1,c=t.$thumb;return!(!c||!g(c[0]))&&(e=n.fancybox.getTranslate(c),o=parseFloat(c.css("border-top-width")||0),i=parseFloat(c.css("border-right-width")||0),a=parseFloat(c.css("border-bottom-width")||0),s=parseFloat(c.css("border-left-width")||0),r={top:e.top+o,left:e.left+s,width:e.width-i-s,height:e.height-o-a,scaleX:1,scaleY:1},e.width>0&&e.height>0&&r)},complete:function(){var t,e=this,o=e.current,i={};!e.isMoved()&&o.isLoaded&&(o.isComplete||(o.isComplete=!0,o.$slide.siblings().trigger("onReset"),e.preload("inline"),p(o.$slide),o.$slide.addClass("fancybox-slide--complete"),n.each(e.slides,function(t,o){o.pos>=e.currPos-1&&o.pos<=e.currPos+1?i[o.pos]=o:o&&(n.fancybox.stop(o.$slide),o.$slide.off().remove())}),e.slides=i),e.isAnimating=!1,e.updateCursor(),e.trigger("afterShow"),o.opts.video.autoStart&&o.$slide.find("video,audio").filter(":visible:first").trigger("play").one("ended",function(){Document.exitFullscreen?Document.exitFullscreen():this.webkitExitFullscreen&&this.webkitExitFullscreen(),e.next()}),o.opts.autoFocus&&"html"===o.contentType&&(t=o.$content.find("input[autofocus]:enabled:visible:first"),t.length?t.trigger("focus"):e.focus(null,!0)),o.$slide.scrollTop(0).scrollLeft(0))},preload:function(t){var e,n,o=this;o.group.length<2||(n=o.slides[o.currPos+1],e=o.slides[o.currPos-1],e&&e.type===t&&o.loadSlide(e),n&&n.type===t&&o.loadSlide(n))},focus:function(t,o){var i,a,s=this,r=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","video","audio","[contenteditable]",'[tabindex]:not([tabindex^="-"])'].join(",");s.isClosing||(i=!t&&s.current&&s.current.isComplete?s.current.$slide.find("*:visible"+(o?":not(.fancybox-close-small)":"")):s.$refs.container.find("*:visible"),i=i.filter(r).filter(function(){return"hidden"!==n(this).css("visibility")&&!n(this).hasClass("disabled")}),i.length?(a=i.index(e.activeElement),t&&t.shiftKey?(a<0||0==a)&&(t.preventDefault(),i.eq(i.length-1).trigger("focus")):(a<0||a==i.length-1)&&(t&&t.preventDefault(),i.eq(0).trigger("focus"))):s.$refs.container.trigger("focus"))},activate:function(){var t=this;n(".fancybox-container").each(function(){var e=n(this).data("FancyBox");e&&e.id!==t.id&&!e.isClosing&&(e.trigger("onDeactivate"),e.removeEvents(),e.isVisible=!1)}),t.isVisible=!0,(t.current||t.isIdle)&&(t.update(),t.updateControls()),t.trigger("onActivate"),t.addEvents()},close:function(t,e){var o,i,a,s,r,c,l,u=this,f=u.current,h=function(){u.cleanUp(t)};return!u.isClosing&&(u.isClosing=!0,!1===u.trigger("beforeClose",t)?(u.isClosing=!1,d(function(){u.update()}),!1):(u.removeEvents(),a=f.$content,o=f.opts.animationEffect,i=n.isNumeric(e)?e:o?f.opts.animationDuration:0,f.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"),!0!==t?n.fancybox.stop(f.$slide):o=!1,f.$slide.siblings().trigger("onReset").remove(),i&&u.$refs.container.removeClass("fancybox-is-open").addClass("fancybox-is-closing").css("transition-duration",i+"ms"),u.hideLoading(f),u.hideControls(!0),u.updateCursor(),"zoom"!==o||a&&i&&"image"===f.type&&!u.isMoved()&&!f.hasError&&(l=u.getThumbPos(f))||(o="fade"),"zoom"===o?(n.fancybox.stop(a),s=n.fancybox.getTranslate(a),c={top:s.top,left:s.left,scaleX:s.width/l.width,scaleY:s.height/l.height,width:l.width,height:l.height},r=f.opts.zoomOpacity,
+"auto"==r&&(r=Math.abs(f.width/f.height-l.width/l.height)>.1),r&&(l.opacity=0),n.fancybox.setTranslate(a,c),p(a),n.fancybox.animate(a,l,i,h),!0):(o&&i?n.fancybox.animate(f.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"),"fancybox-animated fancybox-fx-"+o,i,h):!0===t?setTimeout(h,i):h(),!0)))},cleanUp:function(e){var o,i,a,s=this,r=s.current.opts.$orig;s.current.$slide.trigger("onReset"),s.$refs.container.empty().remove(),s.trigger("afterClose",e),s.current.opts.backFocus&&(r&&r.length&&r.is(":visible")||(r=s.$trigger),r&&r.length&&(i=t.scrollX,a=t.scrollY,r.trigger("focus"),n("html, body").scrollTop(a).scrollLeft(i))),s.current=null,o=n.fancybox.getInstance(),o?o.activate():(n("body").removeClass("fancybox-active compensate-for-scrollbar"),n("#fancybox-style-noscroll").remove())},trigger:function(t,e){var o,i=Array.prototype.slice.call(arguments,1),a=this,s=e&&e.opts?e:a.current;if(s?i.unshift(s):s=a,i.unshift(a),n.isFunction(s.opts[t])&&(o=s.opts[t].apply(s,i)),!1===o)return o;"afterClose"!==t&&a.$refs?a.$refs.container.trigger(t+".fb",i):r.trigger(t+".fb",i)},updateControls:function(){var t=this,o=t.current,i=o.index,a=t.$refs.container,s=t.$refs.caption,r=o.opts.caption;o.$slide.trigger("refresh"),r&&r.length?(t.$caption=s,s.children().eq(0).html(r)):t.$caption=null,t.hasHiddenControls||t.isIdle||t.showControls(),a.find("[data-fancybox-count]").html(t.group.length),a.find("[data-fancybox-index]").html(i+1),a.find("[data-fancybox-prev]").prop("disabled",!o.opts.loop&&i<=0),a.find("[data-fancybox-next]").prop("disabled",!o.opts.loop&&i>=t.group.length-1),"image"===o.type?a.find("[data-fancybox-zoom]").show().end().find("[data-fancybox-download]").attr("href",o.opts.image.src||o.src).show():o.opts.toolbar&&a.find("[data-fancybox-download],[data-fancybox-zoom]").hide(),n(e.activeElement).is(":hidden,[disabled]")&&t.$refs.container.trigger("focus")},hideControls:function(t){var e=this,n=["infobar","toolbar","nav"];!t&&e.current.opts.preventCaptionOverlap||n.push("caption"),this.$refs.container.removeClass(n.map(function(t){return"fancybox-show-"+t}).join(" ")),this.hasHiddenControls=!0},showControls:function(){var t=this,e=t.current?t.current.opts:t.opts,n=t.$refs.container;t.hasHiddenControls=!1,t.idleSecondsCounter=0,n.toggleClass("fancybox-show-toolbar",!(!e.toolbar||!e.buttons)).toggleClass("fancybox-show-infobar",!!(e.infobar&&t.group.length>1)).toggleClass("fancybox-show-caption",!!t.$caption).toggleClass("fancybox-show-nav",!!(e.arrows&&t.group.length>1)).toggleClass("fancybox-is-modal",!!e.modal)},toggleControls:function(){this.hasHiddenControls?this.showControls():this.hideControls()}}),n.fancybox={version:"3.5.7",defaults:a,getInstance:function(t){var e=n('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"),o=Array.prototype.slice.call(arguments,1);return e instanceof b&&("string"===n.type(t)?e[t].apply(e,o):"function"===n.type(t)&&t.apply(e,o),e)},open:function(t,e,n){return new b(t,e,n)},close:function(t){var e=this.getInstance();e&&(e.close(),!0===t&&this.close(t))},destroy:function(){this.close(!0),r.add("body").off("click.fb-start","**")},isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),use3d:function(){var n=e.createElement("div");return t.getComputedStyle&&t.getComputedStyle(n)&&t.getComputedStyle(n).getPropertyValue("transform")&&!(e.documentMode&&e.documentMode<11)}(),getTranslate:function(t){var e;return!(!t||!t.length)&&(e=t[0].getBoundingClientRect(),{top:e.top||0,left:e.left||0,width:e.width,height:e.height,opacity:parseFloat(t.css("opacity"))})},setTranslate:function(t,e){var n="",o={};if(t&&e)return void 0===e.left&&void 0===e.top||(n=(void 0===e.left?t.position().left:e.left)+"px, "+(void 0===e.top?t.position().top:e.top)+"px",n=this.use3d?"translate3d("+n+", 0px)":"translate("+n+")"),void 0!==e.scaleX&&void 0!==e.scaleY?n+=" scale("+e.scaleX+", "+e.scaleY+")":void 0!==e.scaleX&&(n+=" scaleX("+e.scaleX+")"),n.length&&(o.transform=n),void 0!==e.opacity&&(o.opacity=e.opacity),void 0!==e.width&&(o.width=e.width),void 0!==e.height&&(o.height=e.height),t.css(o)},animate:function(t,e,o,i,a){var s,r=this;n.isFunction(o)&&(i=o,o=null),r.stop(t),s=r.getTranslate(t),t.on(f,function(c){(!c||!c.originalEvent||t.is(c.originalEvent.target)&&"z-index"!=c.originalEvent.propertyName)&&(r.stop(t),n.isNumeric(o)&&t.css("transition-duration",""),n.isPlainObject(e)?void 0!==e.scaleX&&void 0!==e.scaleY&&r.setTranslate(t,{top:e.top,left:e.left,width:s.width*e.scaleX,height:s.height*e.scaleY,scaleX:1,scaleY:1}):!0!==a&&t.removeClass(e),n.isFunction(i)&&i(c))}),n.isNumeric(o)&&t.css("transition-duration",o+"ms"),n.isPlainObject(e)?(void 0!==e.scaleX&&void 0!==e.scaleY&&(delete e.width,delete e.height,t.parent().hasClass("fancybox-slide--image")&&t.parent().addClass("fancybox-is-scaling")),n.fancybox.setTranslate(t,e)):t.addClass(e),t.data("timer",setTimeout(function(){t.trigger(f)},o+33))},stop:function(t,e){t&&t.length&&(clearTimeout(t.data("timer")),e&&t.trigger(f),t.off(f).css("transition-duration",""),t.parent().removeClass("fancybox-is-scaling"))}},n.fn.fancybox=function(t){var e;return t=t||{},e=t.selector||!1,e?n("body").off("click.fb-start",e).on("click.fb-start",e,{options:t},i):this.off("click.fb-start").on("click.fb-start",{items:this,options:t},i),this},r.on("click.fb-start","[data-fancybox]",i),r.on("click.fb-start","[data-fancybox-trigger]",function(t){n('[data-fancybox="'+n(this).attr("data-fancybox-trigger")+'"]').eq(n(this).attr("data-fancybox-index")||0).trigger("click.fb-start",{$trigger:n(this)})}),function(){var t=null;r.on("mousedown mouseup focus blur",".fancybox-button",function(e){switch(e.type){case"mousedown":t=n(this);break;case"mouseup":t=null;break;case"focusin":n(".fancybox-button").removeClass("fancybox-focus"),n(this).is(t)||n(this).is("[disabled]")||n(this).addClass("fancybox-focus");break;case"focusout":n(".fancybox-button").removeClass("fancybox-focus")}})}()}}(window,document,jQuery),function(t){"use strict";var e={youtube:{matcher:/(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i,params:{autoplay:1,autohide:1,fs:1,rel:0,hd:1,wmode:"transparent",enablejsapi:1,html5:1},paramPlace:8,type:"iframe",url:"https://www.youtube-nocookie.com/embed/$4",thumb:"https://img.youtube.com/vi/$4/hqdefault.jpg"},vimeo:{matcher:/^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/,params:{autoplay:1,hd:1,show_title:1,show_byline:1,show_portrait:0,fullscreen:1},paramPlace:3,type:"iframe",url:"//player.vimeo.com/video/$2"},instagram:{matcher:/(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,type:"image",url:"//$1/p/$2/media/?size=l"},gmap_place:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/?ll="+(t[9]?t[9]+"&z="+Math.floor(t[10])+(t[12]?t[12].replace(/^\//,"&"):""):t[12]+"").replace(/\?/,"&")+"&output="+(t[12]&&t[12].indexOf("layer=c")>0?"svembed":"embed")}},gmap_search:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/maps?q="+t[5].replace("query=","q=").replace("api=1","")+"&output=embed"}}},n=function(e,n,o){if(e)return o=o||"","object"===t.type(o)&&(o=t.param(o,!0)),t.each(n,function(t,n){e=e.replace("$"+t,n||"")}),o.length&&(e+=(e.indexOf("?")>0?"&":"?")+o),e};t(document).on("objectNeedsType.fb",function(o,i,a){var s,r,c,l,d,u,f,p=a.src||"",h=!1;s=t.extend(!0,{},e,a.opts.media),t.each(s,function(e,o){if(c=p.match(o.matcher)){if(h=o.type,f=e,u={},o.paramPlace&&c[o.paramPlace]){d=c[o.paramPlace],"?"==d[0]&&(d=d.substring(1)),d=d.split("&");for(var i=0;i<d.length;++i){var s=d[i].split("=",2);2==s.length&&(u[s[0]]=decodeURIComponent(s[1].replace(/\+/g," ")))}}return l=t.extend(!0,{},o.params,a.opts[e],u),p="function"===t.type(o.url)?o.url.call(this,c,l,a):n(o.url,c,l),r="function"===t.type(o.thumb)?o.thumb.call(this,c,l,a):n(o.thumb,c),"youtube"===e?p=p.replace(/&t=((\d+)m)?(\d+)s/,function(t,e,n,o){return"&start="+((n?60*parseInt(n,10):0)+parseInt(o,10))}):"vimeo"===e&&(p=p.replace("&%23","#")),!1}}),h?(a.opts.thumb||a.opts.$thumb&&a.opts.$thumb.length||(a.opts.thumb=r),"iframe"===h&&(a.opts=t.extend(!0,a.opts,{iframe:{preload:!1,attr:{scrolling:"no"}}})),t.extend(a,{type:h,src:p,origSrc:a.src,contentSource:f,contentType:"image"===h?"image":"gmap_place"==f||"gmap_search"==f?"map":"video"})):p&&(a.type=a.opts.defaultType)});var o={youtube:{src:"https://www.youtube.com/iframe_api",class:"YT",loading:!1,loaded:!1},vimeo:{src:"https://player.vimeo.com/api/player.js",class:"Vimeo",loading:!1,loaded:!1},load:function(t){var e,n=this;if(this[t].loaded)return void setTimeout(function(){n.done(t)});this[t].loading||(this[t].loading=!0,e=document.createElement("script"),e.type="text/javascript",e.src=this[t].src,"youtube"===t?window.onYouTubeIframeAPIReady=function(){n[t].loaded=!0,n.done(t)}:e.onload=function(){n[t].loaded=!0,n.done(t)},document.body.appendChild(e))},done:function(e){var n,o,i;"youtube"===e&&delete window.onYouTubeIframeAPIReady,(n=t.fancybox.getInstance())&&(o=n.current.$content.find("iframe"),"youtube"===e&&void 0!==YT&&YT?i=new YT.Player(o.attr("id"),{events:{onStateChange:function(t){0==t.data&&n.next()}}}):"vimeo"===e&&void 0!==Vimeo&&Vimeo&&(i=new Vimeo.Player(o),i.on("ended",function(){n.next()})))}};t(document).on({"afterShow.fb":function(t,e,n){e.group.length>1&&("youtube"===n.contentSource||"vimeo"===n.contentSource)&&o.load(n.contentSource)}})}(jQuery),function(t,e,n){"use strict";var o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),i=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),a=function(e){var n=[];e=e.originalEvent||e||t.e,e=e.touches&&e.touches.length?e.touches:e.changedTouches&&e.changedTouches.length?e.changedTouches:[e];for(var o in e)e[o].pageX?n.push({x:e[o].pageX,y:e[o].pageY}):e[o].clientX&&n.push({x:e[o].clientX,y:e[o].clientY});return n},s=function(t,e,n){return e&&t?"x"===n?t.x-e.x:"y"===n?t.y-e.y:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2)):0},r=function(t){if(t.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe')||n.isFunction(t.get(0).onclick)||t.data("selectable"))return!0;for(var e=0,o=t[0].attributes,i=o.length;e<i;e++)if("data-fancybox-"===o[e].nodeName.substr(0,14))return!0;return!1},c=function(e){var n=t.getComputedStyle(e)["overflow-y"],o=t.getComputedStyle(e)["overflow-x"],i=("scroll"===n||"auto"===n)&&e.scrollHeight>e.clientHeight,a=("scroll"===o||"auto"===o)&&e.scrollWidth>e.clientWidth;return i||a},l=function(t){for(var e=!1;;){if(e=c(t.get(0)))break;if(t=t.parent(),!t.length||t.hasClass("fancybox-stage")||t.is("body"))break}return e},d=function(t){var e=this;e.instance=t,e.$bg=t.$refs.bg,e.$stage=t.$refs.stage,e.$container=t.$refs.container,e.destroy(),e.$container.on("touchstart.fb.touch mousedown.fb.touch",n.proxy(e,"ontouchstart"))};d.prototype.destroy=function(){var t=this;t.$container.off(".fb.touch"),n(e).off(".fb.touch"),t.requestId&&(i(t.requestId),t.requestId=null),t.tapped&&(clearTimeout(t.tapped),t.tapped=null)},d.prototype.ontouchstart=function(o){var i=this,c=n(o.target),d=i.instance,u=d.current,f=u.$slide,p=u.$content,h="touchstart"==o.type;if(h&&i.$container.off("mousedown.fb.touch"),(!o.originalEvent||2!=o.originalEvent.button)&&f.length&&c.length&&!r(c)&&!r(c.parent())&&(c.is("img")||!(o.originalEvent.clientX>c[0].clientWidth+c.offset().left))){if(!u||d.isAnimating||u.$slide.hasClass("fancybox-animated"))return o.stopPropagation(),void o.preventDefault();i.realPoints=i.startPoints=a(o),i.startPoints.length&&(u.touch&&o.stopPropagation(),i.startEvent=o,i.canTap=!0,i.$target=c,i.$content=p,i.opts=u.opts.touch,i.isPanning=!1,i.isSwiping=!1,i.isZooming=!1,i.isScrolling=!1,i.canPan=d.canPan(),i.startTime=(new Date).getTime(),i.distanceX=i.distanceY=i.distance=0,i.canvasWidth=Math.round(f[0].clientWidth),i.canvasHeight=Math.round(f[0].clientHeight),i.contentLastPos=null,i.contentStartPos=n.fancybox.getTranslate(i.$content)||{top:0,left:0},i.sliderStartPos=n.fancybox.getTranslate(f),i.stagePos=n.fancybox.getTranslate(d.$refs.stage),i.sliderStartPos.top-=i.stagePos.top,i.sliderStartPos.left-=i.stagePos.left,i.contentStartPos.top-=i.stagePos.top,i.contentStartPos.left-=i.stagePos.left,n(e).off(".fb.touch").on(h?"touchend.fb.touch touchcancel.fb.touch":"mouseup.fb.touch mouseleave.fb.touch",n.proxy(i,"ontouchend")).on(h?"touchmove.fb.touch":"mousemove.fb.touch",n.proxy(i,"ontouchmove")),n.fancybox.isMobile&&e.addEventListener("scroll",i.onscroll,!0),((i.opts||i.canPan)&&(c.is(i.$stage)||i.$stage.find(c).length)||(c.is(".fancybox-image")&&o.preventDefault(),n.fancybox.isMobile&&c.parents(".fancybox-caption").length))&&(i.isScrollable=l(c)||l(c.parent()),n.fancybox.isMobile&&i.isScrollable||o.preventDefault(),(1===i.startPoints.length||u.hasError)&&(i.canPan?(n.fancybox.stop(i.$content),i.isPanning=!0):i.isSwiping=!0,i.$container.addClass("fancybox-is-grabbing")),2===i.startPoints.length&&"image"===u.type&&(u.isLoaded||u.$ghost)&&(i.canTap=!1,i.isSwiping=!1,i.isPanning=!1,i.isZooming=!0,n.fancybox.stop(i.$content),i.centerPointStartX=.5*(i.startPoints[0].x+i.startPoints[1].x)-n(t).scrollLeft(),i.centerPointStartY=.5*(i.startPoints[0].y+i.startPoints[1].y)-n(t).scrollTop(),i.percentageOfImageAtPinchPointX=(i.centerPointStartX-i.contentStartPos.left)/i.contentStartPos.width,i.percentageOfImageAtPinchPointY=(i.centerPointStartY-i.contentStartPos.top)/i.contentStartPos.height,i.startDistanceBetweenFingers=s(i.startPoints[0],i.startPoints[1]))))}},d.prototype.onscroll=function(t){var n=this;n.isScrolling=!0,e.removeEventListener("scroll",n.onscroll,!0)},d.prototype.ontouchmove=function(t){var e=this;return void 0!==t.originalEvent.buttons&&0===t.originalEvent.buttons?void e.ontouchend(t):e.isScrolling?void(e.canTap=!1):(e.newPoints=a(t),void((e.opts||e.canPan)&&e.newPoints.length&&e.newPoints.length&&(e.isSwiping&&!0===e.isSwiping||t.preventDefault(),e.distanceX=s(e.newPoints[0],e.startPoints[0],"x"),e.distanceY=s(e.newPoints[0],e.startPoints[0],"y"),e.distance=s(e.newPoints[0],e.startPoints[0]),e.distance>0&&(e.isSwiping?e.onSwipe(t):e.isPanning?e.onPan():e.isZooming&&e.onZoom()))))},d.prototype.onSwipe=function(e){var a,s=this,r=s.instance,c=s.isSwiping,l=s.sliderStartPos.left||0;if(!0!==c)"x"==c&&(s.distanceX>0&&(s.instance.group.length<2||0===s.instance.current.index&&!s.instance.current.opts.loop)?l+=Math.pow(s.distanceX,.8):s.distanceX<0&&(s.instance.group.length<2||s.instance.current.index===s.instance.group.length-1&&!s.instance.current.opts.loop)?l-=Math.pow(-s.distanceX,.8):l+=s.distanceX),s.sliderLastPos={top:"x"==c?0:s.sliderStartPos.top+s.distanceY,left:l},s.requestId&&(i(s.requestId),s.requestId=null),s.requestId=o(function(){s.sliderLastPos&&(n.each(s.instance.slides,function(t,e){var o=e.pos-s.instance.currPos;n.fancybox.setTranslate(e.$slide,{top:s.sliderLastPos.top,left:s.sliderLastPos.left+o*s.canvasWidth+o*e.opts.gutter})}),s.$container.addClass("fancybox-is-sliding"))});else if(Math.abs(s.distance)>10){if(s.canTap=!1,r.group.length<2&&s.opts.vertical?s.isSwiping="y":r.isDragging||!1===s.opts.vertical||"auto"===s.opts.vertical&&n(t).width()>800?s.isSwiping="x":(a=Math.abs(180*Math.atan2(s.distanceY,s.distanceX)/Math.PI),s.isSwiping=a>45&&a<135?"y":"x"),"y"===s.isSwiping&&n.fancybox.isMobile&&s.isScrollable)return void(s.isScrolling=!0);r.isDragging=s.isSwiping,s.startPoints=s.newPoints,n.each(r.slides,function(t,e){var o,i;n.fancybox.stop(e.$slide),o=n.fancybox.getTranslate(e.$slide),i=n.fancybox.getTranslate(r.$refs.stage),e.$slide.css({transform:"",opacity:"","transition-duration":""}).removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")}),e.pos===r.current.pos&&(s.sliderStartPos.top=o.top-i.top,s.sliderStartPos.left=o.left-i.left),n.fancybox.setTranslate(e.$slide,{top:o.top-i.top,left:o.left-i.left})}),r.SlideShow&&r.SlideShow.isActive&&r.SlideShow.stop()}},d.prototype.onPan=function(){var t=this;if(s(t.newPoints[0],t.realPoints[0])<(n.fancybox.isMobile?10:5))return void(t.startPoints=t.newPoints);t.canTap=!1,t.contentLastPos=t.limitMovement(),t.requestId&&i(t.requestId),t.requestId=o(function(){n.fancybox.setTranslate(t.$content,t.contentLastPos)})},d.prototype.limitMovement=function(){var t,e,n,o,i,a,s=this,r=s.canvasWidth,c=s.canvasHeight,l=s.distanceX,d=s.distanceY,u=s.contentStartPos,f=u.left,p=u.top,h=u.width,g=u.height;return i=h>r?f+l:f,a=p+d,t=Math.max(0,.5*r-.5*h),e=Math.max(0,.5*c-.5*g),n=Math.min(r-h,.5*r-.5*h),o=Math.min(c-g,.5*c-.5*g),l>0&&i>t&&(i=t-1+Math.pow(-t+f+l,.8)||0),l<0&&i<n&&(i=n+1-Math.pow(n-f-l,.8)||0),d>0&&a>e&&(a=e-1+Math.pow(-e+p+d,.8)||0),d<0&&a<o&&(a=o+1-Math.pow(o-p-d,.8)||0),{top:a,left:i}},d.prototype.limitPosition=function(t,e,n,o){var i=this,a=i.canvasWidth,s=i.canvasHeight;return n>a?(t=t>0?0:t,t=t<a-n?a-n:t):t=Math.max(0,a/2-n/2),o>s?(e=e>0?0:e,e=e<s-o?s-o:e):e=Math.max(0,s/2-o/2),{top:e,left:t}},d.prototype.onZoom=function(){var e=this,a=e.contentStartPos,r=a.width,c=a.height,l=a.left,d=a.top,u=s(e.newPoints[0],e.newPoints[1]),f=u/e.startDistanceBetweenFingers,p=Math.floor(r*f),h=Math.floor(c*f),g=(r-p)*e.percentageOfImageAtPinchPointX,b=(c-h)*e.percentageOfImageAtPinchPointY,m=(e.newPoints[0].x+e.newPoints[1].x)/2-n(t).scrollLeft(),v=(e.newPoints[0].y+e.newPoints[1].y)/2-n(t).scrollTop(),y=m-e.centerPointStartX,x=v-e.centerPointStartY,w=l+(g+y),$=d+(b+x),S={top:$,left:w,scaleX:f,scaleY:f};e.canTap=!1,e.newWidth=p,e.newHeight=h,e.contentLastPos=S,e.requestId&&i(e.requestId),e.requestId=o(function(){n.fancybox.setTranslate(e.$content,e.contentLastPos)})},d.prototype.ontouchend=function(t){var o=this,s=o.isSwiping,r=o.isPanning,c=o.isZooming,l=o.isScrolling;if(o.endPoints=a(t),o.dMs=Math.max((new Date).getTime()-o.startTime,1),o.$container.removeClass("fancybox-is-grabbing"),n(e).off(".fb.touch"),e.removeEventListener("scroll",o.onscroll,!0),o.requestId&&(i(o.requestId),o.requestId=null),o.isSwiping=!1,o.isPanning=!1,o.isZooming=!1,o.isScrolling=!1,o.instance.isDragging=!1,o.canTap)return o.onTap(t);o.speed=100,o.velocityX=o.distanceX/o.dMs*.5,o.velocityY=o.distanceY/o.dMs*.5,r?o.endPanning():c?o.endZooming():o.endSwiping(s,l)},d.prototype.endSwiping=function(t,e){var o=this,i=!1,a=o.instance.group.length,s=Math.abs(o.distanceX),r="x"==t&&a>1&&(o.dMs>130&&s>10||s>50);o.sliderLastPos=null,"y"==t&&!e&&Math.abs(o.distanceY)>50?(n.fancybox.animate(o.instance.current.$slide,{top:o.sliderStartPos.top+o.distanceY+150*o.velocityY,opacity:0},200),i=o.instance.close(!0,250)):r&&o.distanceX>0?i=o.instance.previous(300):r&&o.distanceX<0&&(i=o.instance.next(300)),!1!==i||"x"!=t&&"y"!=t||o.instance.centerSlide(200),o.$container.removeClass("fancybox-is-sliding")},d.prototype.endPanning=function(){var t,e,o,i=this;i.contentLastPos&&(!1===i.opts.momentum||i.dMs>350?(t=i.contentLastPos.left,e=i.contentLastPos.top):(t=i.contentLastPos.left+500*i.velocityX,e=i.contentLastPos.top+500*i.velocityY),o=i.limitPosition(t,e,i.contentStartPos.width,i.contentStartPos.height),o.width=i.contentStartPos.width,o.height=i.contentStartPos.height,n.fancybox.animate(i.$content,o,366))},d.prototype.endZooming=function(){var t,e,o,i,a=this,s=a.instance.current,r=a.newWidth,c=a.newHeight;a.contentLastPos&&(t=a.contentLastPos.left,e=a.contentLastPos.top,i={top:e,left:t,width:r,height:c,scaleX:1,scaleY:1},n.fancybox.setTranslate(a.$content,i),r<a.canvasWidth&&c<a.canvasHeight?a.instance.scaleToFit(150):r>s.width||c>s.height?a.instance.scaleToActual(a.centerPointStartX,a.centerPointStartY,150):(o=a.limitPosition(t,e,r,c),n.fancybox.animate(a.$content,o,150)))},d.prototype.onTap=function(e){var o,i=this,s=n(e.target),r=i.instance,c=r.current,l=e&&a(e)||i.startPoints,d=l[0]?l[0].x-n(t).scrollLeft()-i.stagePos.left:0,u=l[0]?l[0].y-n(t).scrollTop()-i.stagePos.top:0,f=function(t){var o=c.opts[t];if(n.isFunction(o)&&(o=o.apply(r,[c,e])),o)switch(o){case"close":r.close(i.startEvent);break;case"toggleControls":r.toggleControls();break;case"next":r.next();break;case"nextOrClose":r.group.length>1?r.next():r.close(i.startEvent);break;case"zoom":"image"==c.type&&(c.isLoaded||c.$ghost)&&(r.canPan()?r.scaleToFit():r.isScaledDown()?r.scaleToActual(d,u):r.group.length<2&&r.close(i.startEvent))}};if((!e.originalEvent||2!=e.originalEvent.button)&&(s.is("img")||!(d>s[0].clientWidth+s.offset().left))){if(s.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container"))o="Outside";else if(s.is(".fancybox-slide"))o="Slide";else{if(!r.current.$content||!r.current.$content.find(s).addBack().filter(s).length)return;o="Content"}if(i.tapped){if(clearTimeout(i.tapped),i.tapped=null,Math.abs(d-i.tapX)>50||Math.abs(u-i.tapY)>50)return this;f("dblclick"+o)}else i.tapX=d,i.tapY=u,c.opts["dblclick"+o]&&c.opts["dblclick"+o]!==c.opts["click"+o]?i.tapped=setTimeout(function(){i.tapped=null,r.isAnimating||f("click"+o)},500):f("click"+o);return this}},n(e).on("onActivate.fb",function(t,e){e&&!e.Guestures&&(e.Guestures=new d(e))}).on("beforeClose.fb",function(t,e){e&&e.Guestures&&e.Guestures.destroy()})}(window,document,jQuery),function(t,e){"use strict";e.extend(!0,e.fancybox.defaults,{btnTpl:{slideShow:'<button data-fancybox-play class="fancybox-button fancybox-button--play" title="{{PLAY_START}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5.4v13.2l11-6.6z"/></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.33 5.75h2.2v12.5h-2.2V5.75zm5.15 0h2.2v12.5h-2.2V5.75z"/></svg></button>'},slideShow:{autoStart:!1,speed:3e3,progress:!0}});var n=function(t){this.instance=t,this.init()};e.extend(n.prototype,{timer:null,isActive:!1,$button:null,init:function(){var t=this,n=t.instance,o=n.group[n.currIndex].opts.slideShow;t.$button=n.$refs.toolbar.find("[data-fancybox-play]").on("click",function(){t.toggle()}),n.group.length<2||!o?t.$button.hide():o.progress&&(t.$progress=e('<div class="fancybox-progress"></div>').appendTo(n.$refs.inner))},set:function(t){var n=this,o=n.instance,i=o.current;i&&(!0===t||i.opts.loop||o.currIndex<o.group.length-1)?n.isActive&&"video"!==i.contentType&&(n.$progress&&e.fancybox.animate(n.$progress.show(),{scaleX:1},i.opts.slideShow.speed),n.timer=setTimeout(function(){o.current.opts.loop||o.current.index!=o.group.length-1?o.next():o.jumpTo(0)},i.opts.slideShow.speed)):(n.stop(),o.idleSecondsCounter=0,o.showControls())},clear:function(){var t=this;clearTimeout(t.timer),t.timer=null,t.$progress&&t.$progress.removeAttr("style").hide()},start:function(){var t=this,e=t.instance.current;e&&(t.$button.attr("title",(e.opts.i18n[e.opts.lang]||e.opts.i18n.en).PLAY_STOP).removeClass("fancybox-button--play").addClass("fancybox-button--pause"),t.isActive=!0,e.isComplete&&t.set(!0),t.instance.trigger("onSlideShowChange",!0))},stop:function(){var t=this,e=t.instance.current;t.clear(),t.$button.attr("title",(e.opts.i18n[e.opts.lang]||e.opts.i18n.en).PLAY_START).removeClass("fancybox-button--pause").addClass("fancybox-button--play"),t.isActive=!1,t.instance.trigger("onSlideShowChange",!1),t.$progress&&t.$progress.removeAttr("style").hide()},toggle:function(){var t=this;t.isActive?t.stop():t.start()}}),e(t).on({"onInit.fb":function(t,e){e&&!e.SlideShow&&(e.SlideShow=new n(e))},"beforeShow.fb":function(t,e,n,o){var i=e&&e.SlideShow;o?i&&n.opts.slideShow.autoStart&&i.start():i&&i.isActive&&i.clear()},"afterShow.fb":function(t,e,n){var o=e&&e.SlideShow;o&&o.isActive&&o.set()},"afterKeydown.fb":function(n,o,i,a,s){var r=o&&o.SlideShow;!r||!i.opts.slideShow||80!==s&&32!==s||e(t.activeElement).is("button,a,input")||(a.preventDefault(),r.toggle())},"beforeClose.fb onDeactivate.fb":function(t,e){var n=e&&e.SlideShow;n&&n.stop()}}),e(t).on("visibilitychange",function(){var n=e.fancybox.getInstance(),o=n&&n.SlideShow;o&&o.isActive&&(t.hidden?o.clear():o.set())})}(document,jQuery),function(t,e){"use strict";var n=function(){for(var e=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror"],["webkitRequestFullScreen","webkitCancelFullScreen","webkitCurrentFullScreenElement","webkitCancelFullScreen","webkitfullscreenchange","webkitfullscreenerror"],["mozRequestFullScreen","mozCancelFullScreen","mozFullScreenElement","mozFullScreenEnabled","mozfullscreenchange","mozfullscreenerror"],["msRequestFullscreen","msExitFullscreen","msFullscreenElement","msFullscreenEnabled","MSFullscreenChange","MSFullscreenError"]],n={},o=0;o<e.length;o++){var i=e[o];if(i&&i[1]in t){for(var a=0;a<i.length;a++)n[e[0][a]]=i[a];return n}}return!1}();if(n){var o={request:function(e){e=e||t.documentElement,e[n.requestFullscreen](e.ALLOW_KEYBOARD_INPUT)},exit:function(){t[n.exitFullscreen]()},toggle:function(e){e=e||t.documentElement,this.isFullscreen()?this.exit():this.request(e)},isFullscreen:function(){return Boolean(t[n.fullscreenElement])},enabled:function(){return Boolean(t[n.fullscreenEnabled])}};e.extend(!0,e.fancybox.defaults,{btnTpl:{fullScreen:'<button data-fancybox-fullscreen class="fancybox-button fancybox-button--fsenter" title="{{FULL_SCREEN}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 16h3v3h2v-5H5zm3-8H5v2h5V5H8zm6 11h2v-3h3v-2h-5zm2-11V5h-2v5h5V8z"/></svg></button>'},fullScreen:{autoStart:!1}}),e(t).on(n.fullscreenchange,function(){var t=o.isFullscreen(),n=e.fancybox.getInstance();n&&(n.current&&"image"===n.current.type&&n.isAnimating&&(n.isAnimating=!1,n.update(!0,!0,0),n.isComplete||n.complete()),n.trigger("onFullscreenChange",t),n.$refs.container.toggleClass("fancybox-is-fullscreen",t),n.$refs.toolbar.find("[data-fancybox-fullscreen]").toggleClass("fancybox-button--fsenter",!t).toggleClass("fancybox-button--fsexit",t))})}e(t).on({"onInit.fb":function(t,e){var i;if(!n)return void e.$refs.toolbar.find("[data-fancybox-fullscreen]").remove();e&&e.group[e.currIndex].opts.fullScreen?(i=e.$refs.container,i.on("click.fb-fullscreen","[data-fancybox-fullscreen]",function(t){t.stopPropagation(),t.preventDefault(),o.toggle()}),e.opts.fullScreen&&!0===e.opts.fullScreen.autoStart&&o.request(),e.FullScreen=o):e&&e.$refs.toolbar.find("[data-fancybox-fullscreen]").hide()},"afterKeydown.fb":function(t,e,n,o,i){e&&e.FullScreen&&70===i&&(o.preventDefault(),e.FullScreen.toggle())},"beforeClose.fb":function(t,e){e&&e.FullScreen&&e.$refs.container.hasClass("fancybox-is-fullscreen")&&o.exit()}})}(document,jQuery),function(t,e){"use strict";var n="fancybox-thumbs";e.fancybox.defaults=e.extend(!0,{btnTpl:{thumbs:'<button data-fancybox-thumbs class="fancybox-button fancybox-button--thumbs" title="{{THUMBS}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.59 14.59h3.76v3.76h-3.76v-3.76zm-4.47 0h3.76v3.76h-3.76v-3.76zm-4.47 0h3.76v3.76H5.65v-3.76zm8.94-4.47h3.76v3.76h-3.76v-3.76zm-4.47 0h3.76v3.76h-3.76v-3.76zm-4.47 0h3.76v3.76H5.65v-3.76zm8.94-4.47h3.76v3.76h-3.76V5.65zm-4.47 0h3.76v3.76h-3.76V5.65zm-4.47 0h3.76v3.76H5.65V5.65z"/></svg></button>'},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"}},e.fancybox.defaults);var o=function(t){this.init(t)};e.extend(o.prototype,{$button:null,$grid:null,$list:null,isVisible:!1,isActive:!1,init:function(t){var e=this,n=t.group,o=0;e.instance=t,e.opts=n[t.currIndex].opts.thumbs,t.Thumbs=e,e.$button=t.$refs.toolbar.find("[data-fancybox-thumbs]");for(var i=0,a=n.length;i<a&&(n[i].thumb&&o++,!(o>1));i++);o>1&&e.opts?(e.$button.removeAttr("style").on("click",function(){e.toggle()}),e.isActive=!0):e.$button.hide()},create:function(){var t,o=this,i=o.instance,a=o.opts.parentEl,s=[];o.$grid||(o.$grid=e('<div class="'+n+" "+n+"-"+o.opts.axis+'"></div>').appendTo(i.$refs.container.find(a).addBack().filter(a)),o.$grid.on("click","a",function(){i.jumpTo(e(this).attr("data-index"))})),o.$list||(o.$list=e('<div class="'+n+'__list">').appendTo(o.$grid)),e.each(i.group,function(e,n){t=n.thumb,t||"image"!==n.type||(t=n.src),s.push('<a href="javascript:;" tabindex="0" data-index="'+e+'"'+(t&&t.length?' style="background-image:url('+t+')"':'class="fancybox-thumbs-missing"')+"></a>")}),o.$list[0].innerHTML=s.join(""),"x"===o.opts.axis&&o.$list.width(parseInt(o.$grid.css("padding-right"),10)+i.group.length*o.$list.children().eq(0).outerWidth(!0))},focus:function(t){var e,n,o=this,i=o.$list,a=o.$grid;o.instance.current&&(e=i.children().removeClass("fancybox-thumbs-active").filter('[data-index="'+o.instance.current.index+'"]').addClass("fancybox-thumbs-active"),n=e.position(),"y"===o.opts.axis&&(n.top<0||n.top>i.height()-e.outerHeight())?i.stop().animate({scrollTop:i.scrollTop()+n.top},t):"x"===o.opts.axis&&(n.left<a.scrollLeft()||n.left>a.scrollLeft()+(a.width()-e.outerWidth()))&&i.parent().stop().animate({scrollLeft:n.left},t))},update:function(){var t=this;t.instance.$refs.container.toggleClass("fancybox-show-thumbs",this.isVisible),t.isVisible?(t.$grid||t.create(),t.instance.trigger("onThumbsShow"),t.focus(0)):t.$grid&&t.instance.trigger("onThumbsHide"),t.instance.update()},hide:function(){this.isVisible=!1,this.update()},show:function(){this.isVisible=!0,this.update()},toggle:function(){this.isVisible=!this.isVisible,this.update()}}),e(t).on({"onInit.fb":function(t,e){var n;e&&!e.Thumbs&&(n=new o(e),n.isActive&&!0===n.opts.autoStart&&n.show())},"beforeShow.fb":function(t,e,n,o){var i=e&&e.Thumbs;i&&i.isVisible&&i.focus(o?0:250)},"afterKeydown.fb":function(t,e,n,o,i){var a=e&&e.Thumbs;a&&a.isActive&&71===i&&(o.preventDefault(),a.toggle())},"beforeClose.fb":function(t,e){var n=e&&e.Thumbs;n&&n.isVisible&&!1!==n.opts.hideOnClose&&n.$grid.hide()}})}(document,jQuery),function(t,e){"use strict";function n(t){var e={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;","`":"&#x60;","=":"&#x3D;"};return String(t).replace(/[&<>"'`=\/]/g,function(t){return e[t]})}e.extend(!0,e.fancybox.defaults,{btnTpl:{share:'<button data-fancybox-share class="fancybox-button fancybox-button--share" title="{{SHARE}}"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.55 19c1.4-8.4 9.1-9.8 11.9-9.8V5l7 7-7 6.3v-3.5c-2.8 0-10.5 2.1-11.9 4.2z"/></svg></button>'},share:{url:function(t,e){return!t.currentHash&&"inline"!==e.type&&"html"!==e.type&&(e.origSrc||e.src)||window.location},
+tpl:'<div class="fancybox-share"><h1>{{SHARE}}</h1><p><a class="fancybox-share__button fancybox-share__button--fb" href="https://www.facebook.com/sharer/sharer.php?u={{url}}"><svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="m287 456v-299c0-21 6-35 35-35h38v-63c-7-1-29-3-55-3-54 0-91 33-91 94v306m143-254h-205v72h196" /></svg><span>Facebook</span></a><a class="fancybox-share__button fancybox-share__button--tw" href="https://twitter.com/intent/tweet?url={{url}}&text={{descr}}"><svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="m456 133c-14 7-31 11-47 13 17-10 30-27 37-46-15 10-34 16-52 20-61-62-157-7-141 75-68-3-129-35-169-85-22 37-11 86 26 109-13 0-26-4-37-9 0 39 28 72 65 80-12 3-25 4-37 2 10 33 41 57 77 57-42 30-77 38-122 34 170 111 378-32 359-208 16-11 30-25 41-42z" /></svg><span>Twitter</span></a><a class="fancybox-share__button fancybox-share__button--pt" href="https://www.pinterest.com/pin/create/button/?url={{url}}&description={{descr}}&media={{media}}"><svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="m265 56c-109 0-164 78-164 144 0 39 15 74 47 87 5 2 10 0 12-5l4-19c2-6 1-8-3-13-9-11-15-25-15-45 0-58 43-110 113-110 62 0 96 38 96 88 0 67-30 122-73 122-24 0-42-19-36-44 6-29 20-60 20-81 0-19-10-35-31-35-25 0-44 26-44 60 0 21 7 36 7 36l-30 125c-8 37-1 83 0 87 0 3 4 4 5 2 2-3 32-39 42-75l16-64c8 16 31 29 56 29 74 0 124-67 124-157 0-69-58-132-146-132z" fill="#fff"/></svg><span>Pinterest</span></a></p><p><input class="fancybox-share__input" type="text" value="{{url_raw}}" onclick="select()" /></p></div>'}}),e(t).on("click","[data-fancybox-share]",function(){var t,o,i=e.fancybox.getInstance(),a=i.current||null;a&&("function"===e.type(a.opts.share.url)&&(t=a.opts.share.url.apply(a,[i,a])),o=a.opts.share.tpl.replace(/\{\{media\}\}/g,"image"===a.type?encodeURIComponent(a.src):"").replace(/\{\{url\}\}/g,encodeURIComponent(t)).replace(/\{\{url_raw\}\}/g,n(t)).replace(/\{\{descr\}\}/g,i.$caption?encodeURIComponent(i.$caption.text()):""),e.fancybox.open({src:i.translate(i,o),type:"html",opts:{touch:!1,animationEffect:!1,afterLoad:function(t,e){i.$refs.container.one("beforeClose.fb",function(){t.close(null,0)}),e.$content.find(".fancybox-share__button").click(function(){return window.open(this.href,"Share","width=550, height=450"),!1})},mobile:{autoFocus:!1}}}))})}(document,jQuery),function(t,e,n){"use strict";function o(){var e=t.location.hash.substr(1),n=e.split("-"),o=n.length>1&&/^\+?\d+$/.test(n[n.length-1])?parseInt(n.pop(-1),10)||1:1,i=n.join("-");return{hash:e,index:o<1?1:o,gallery:i}}function i(t){""!==t.gallery&&n("[data-fancybox='"+n.escapeSelector(t.gallery)+"']").eq(t.index-1).focus().trigger("click.fb-start")}function a(t){var e,n;return!!t&&(e=t.current?t.current.opts:t.opts,""!==(n=e.hash||(e.$orig?e.$orig.data("fancybox")||e.$orig.data("fancybox-trigger"):""))&&n)}n.escapeSelector||(n.escapeSelector=function(t){return(t+"").replace(/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t})}),n(function(){!1!==n.fancybox.defaults.hash&&(n(e).on({"onInit.fb":function(t,e){var n,i;!1!==e.group[e.currIndex].opts.hash&&(n=o(),(i=a(e))&&n.gallery&&i==n.gallery&&(e.currIndex=n.index-1))},"beforeShow.fb":function(n,o,i,s){var r;i&&!1!==i.opts.hash&&(r=a(o))&&(o.currentHash=r+(o.group.length>1?"-"+(i.index+1):""),t.location.hash!=="#"+o.currentHash&&(s&&!o.origHash&&(o.origHash=t.location.hash),o.hashTimer&&clearTimeout(o.hashTimer),o.hashTimer=setTimeout(function(){"replaceState"in t.history?(t.history[s?"pushState":"replaceState"]({},e.title,t.location.pathname+t.location.search+"#"+o.currentHash),s&&(o.hasCreatedHistory=!0)):t.location.hash=o.currentHash,o.hashTimer=null},300)))},"beforeClose.fb":function(n,o,i){i&&!1!==i.opts.hash&&(clearTimeout(o.hashTimer),o.currentHash&&o.hasCreatedHistory?t.history.back():o.currentHash&&("replaceState"in t.history?t.history.replaceState({},e.title,t.location.pathname+t.location.search+(o.origHash||"")):t.location.hash=o.origHash),o.currentHash=null)}}),n(t).on("hashchange.fb",function(){var t=o(),e=null;n.each(n(".fancybox-container").get().reverse(),function(t,o){var i=n(o).data("FancyBox");if(i&&i.currentHash)return e=i,!1}),e?e.currentHash===t.gallery+"-"+t.index||1===t.index&&e.currentHash==t.gallery||(e.currentHash=null,e.close()):""!==t.gallery&&i(t)}),setTimeout(function(){n.fancybox.getInstance()||i(o())},50))})}(window,document,jQuery),function(t,e){"use strict";var n=(new Date).getTime();e(t).on({"onInit.fb":function(t,e,o){e.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll",function(t){var o=e.current,i=(new Date).getTime();e.group.length<2||!1===o.opts.wheel||"auto"===o.opts.wheel&&"image"!==o.type||(t.preventDefault(),t.stopPropagation(),o.$slide.hasClass("fancybox-animated")||(t=t.originalEvent||t,i-n<250||(n=i,e[(-t.deltaY||-t.deltaX||t.wheelDelta||-t.detail)<0?"next":"previous"]())))})}})}(document,jQuery);
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.css
new file mode 100644
index 0000000000000000000000000000000000000000..0e72801423486fab12a6b92db9ef09f9afbdc8b1
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.css
@@ -0,0 +1,5918 @@
+.fa,
+.fas,
+.far,
+.fal,
+.fab {
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+  display: inline-block;
+  font-style: normal;
+  font-variant: normal;
+  text-rendering: auto;
+  line-height: 1; }
+
+.fa-lg {
+  font-size: 1.33333em;
+  line-height: 0.75em;
+  vertical-align: -.0667em; }
+
+.fa-xs {
+  font-size: .75em; }
+
+.fa-sm {
+  font-size: .875em; }
+
+.fa-1x {
+  font-size: 1em; }
+
+.fa-2x {
+  font-size: 2em; }
+
+.fa-3x {
+  font-size: 3em; }
+
+.fa-4x {
+  font-size: 4em; }
+
+.fa-5x {
+  font-size: 5em; }
+
+.fa-6x {
+  font-size: 6em; }
+
+.fa-7x {
+  font-size: 7em; }
+
+.fa-8x {
+  font-size: 8em; }
+
+.fa-9x {
+  font-size: 9em; }
+
+.fa-10x {
+  font-size: 10em; }
+
+.fa-fw {
+  text-align: center;
+  width: 1.25em; }
+
+.fa-ul {
+  list-style-type: none;
+  margin-left: 2.5em;
+  padding-left: 0; }
+  .fa-ul > li {
+    position: relative; }
+
+.fa-li {
+  left: -2em;
+  position: absolute;
+  text-align: center;
+  width: 2em;
+  line-height: inherit; }
+
+.fa-border {
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+  padding: .2em .25em .15em; }
+
+.fa-pull-left {
+  float: left; }
+
+.fa-pull-right {
+  float: right; }
+
+.fa.fa-pull-left,
+.fas.fa-pull-left,
+.far.fa-pull-left,
+.fal.fa-pull-left,
+.fab.fa-pull-left {
+  margin-right: .3em; }
+
+.fa.fa-pull-right,
+.fas.fa-pull-right,
+.far.fa-pull-right,
+.fal.fa-pull-right,
+.fab.fa-pull-right {
+  margin-left: .3em; }
+
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+          animation: fa-spin 2s infinite linear; }
+
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+          animation: fa-spin 1s infinite steps(8); }
+
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+          transform: rotate(90deg); }
+
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+          transform: rotate(180deg); }
+
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+          transform: rotate(270deg); }
+
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+  -webkit-transform: scale(-1, 1);
+          transform: scale(-1, 1); }
+
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(1, -1);
+          transform: scale(1, -1); }
+
+.fa-flip-horizontal.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(-1, -1);
+          transform: scale(-1, -1); }
+
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  -webkit-filter: none;
+          filter: none; }
+
+.fa-stack {
+  display: inline-block;
+  height: 2em;
+  line-height: 2em;
+  position: relative;
+  vertical-align: middle;
+  width: 2.5em; }
+
+.fa-stack-1x,
+.fa-stack-2x {
+  left: 0;
+  position: absolute;
+  text-align: center;
+  width: 100%; }
+
+.fa-stack-1x {
+  line-height: inherit; }
+
+.fa-stack-2x {
+  font-size: 2em; }
+
+.fa-inverse {
+  color: #fff; }
+
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+readers do not read off random characters that represent icons */
+.fa-500px:before {
+  content: "\f26e"; }
+
+.fa-abacus:before {
+  content: "\f640"; }
+
+.fa-accessible-icon:before {
+  content: "\f368"; }
+
+.fa-accusoft:before {
+  content: "\f369"; }
+
+.fa-acorn:before {
+  content: "\f6ae"; }
+
+.fa-acquisitions-incorporated:before {
+  content: "\f6af"; }
+
+.fa-ad:before {
+  content: "\f641"; }
+
+.fa-address-book:before {
+  content: "\f2b9"; }
+
+.fa-address-card:before {
+  content: "\f2bb"; }
+
+.fa-adjust:before {
+  content: "\f042"; }
+
+.fa-adn:before {
+  content: "\f170"; }
+
+.fa-adobe:before {
+  content: "\f778"; }
+
+.fa-adversal:before {
+  content: "\f36a"; }
+
+.fa-affiliatetheme:before {
+  content: "\f36b"; }
+
+.fa-air-freshener:before {
+  content: "\f5d0"; }
+
+.fa-alarm-clock:before {
+  content: "\f34e"; }
+
+.fa-algolia:before {
+  content: "\f36c"; }
+
+.fa-alicorn:before {
+  content: "\f6b0"; }
+
+.fa-align-center:before {
+  content: "\f037"; }
+
+.fa-align-justify:before {
+  content: "\f039"; }
+
+.fa-align-left:before {
+  content: "\f036"; }
+
+.fa-align-right:before {
+  content: "\f038"; }
+
+.fa-alipay:before {
+  content: "\f642"; }
+
+.fa-allergies:before {
+  content: "\f461"; }
+
+.fa-amazon:before {
+  content: "\f270"; }
+
+.fa-amazon-pay:before {
+  content: "\f42c"; }
+
+.fa-ambulance:before {
+  content: "\f0f9"; }
+
+.fa-american-sign-language-interpreting:before {
+  content: "\f2a3"; }
+
+.fa-amilia:before {
+  content: "\f36d"; }
+
+.fa-analytics:before {
+  content: "\f643"; }
+
+.fa-anchor:before {
+  content: "\f13d"; }
+
+.fa-android:before {
+  content: "\f17b"; }
+
+.fa-angel:before {
+  content: "\f779"; }
+
+.fa-angellist:before {
+  content: "\f209"; }
+
+.fa-angle-double-down:before {
+  content: "\f103"; }
+
+.fa-angle-double-left:before {
+  content: "\f100"; }
+
+.fa-angle-double-right:before {
+  content: "\f101"; }
+
+.fa-angle-double-up:before {
+  content: "\f102"; }
+
+.fa-angle-down:before {
+  content: "\f107"; }
+
+.fa-angle-left:before {
+  content: "\f104"; }
+
+.fa-angle-right:before {
+  content: "\f105"; }
+
+.fa-angle-up:before {
+  content: "\f106"; }
+
+.fa-angry:before {
+  content: "\f556"; }
+
+.fa-angrycreative:before {
+  content: "\f36e"; }
+
+.fa-angular:before {
+  content: "\f420"; }
+
+.fa-ankh:before {
+  content: "\f644"; }
+
+.fa-app-store:before {
+  content: "\f36f"; }
+
+.fa-app-store-ios:before {
+  content: "\f370"; }
+
+.fa-apper:before {
+  content: "\f371"; }
+
+.fa-apple:before {
+  content: "\f179"; }
+
+.fa-apple-alt:before {
+  content: "\f5d1"; }
+
+.fa-apple-crate:before {
+  content: "\f6b1"; }
+
+.fa-apple-pay:before {
+  content: "\f415"; }
+
+.fa-archive:before {
+  content: "\f187"; }
+
+.fa-archway:before {
+  content: "\f557"; }
+
+.fa-arrow-alt-circle-down:before {
+  content: "\f358"; }
+
+.fa-arrow-alt-circle-left:before {
+  content: "\f359"; }
+
+.fa-arrow-alt-circle-right:before {
+  content: "\f35a"; }
+
+.fa-arrow-alt-circle-up:before {
+  content: "\f35b"; }
+
+.fa-arrow-alt-down:before {
+  content: "\f354"; }
+
+.fa-arrow-alt-from-bottom:before {
+  content: "\f346"; }
+
+.fa-arrow-alt-from-left:before {
+  content: "\f347"; }
+
+.fa-arrow-alt-from-right:before {
+  content: "\f348"; }
+
+.fa-arrow-alt-from-top:before {
+  content: "\f349"; }
+
+.fa-arrow-alt-left:before {
+  content: "\f355"; }
+
+.fa-arrow-alt-right:before {
+  content: "\f356"; }
+
+.fa-arrow-alt-square-down:before {
+  content: "\f350"; }
+
+.fa-arrow-alt-square-left:before {
+  content: "\f351"; }
+
+.fa-arrow-alt-square-right:before {
+  content: "\f352"; }
+
+.fa-arrow-alt-square-up:before {
+  content: "\f353"; }
+
+.fa-arrow-alt-to-bottom:before {
+  content: "\f34a"; }
+
+.fa-arrow-alt-to-left:before {
+  content: "\f34b"; }
+
+.fa-arrow-alt-to-right:before {
+  content: "\f34c"; }
+
+.fa-arrow-alt-to-top:before {
+  content: "\f34d"; }
+
+.fa-arrow-alt-up:before {
+  content: "\f357"; }
+
+.fa-arrow-circle-down:before {
+  content: "\f0ab"; }
+
+.fa-arrow-circle-left:before {
+  content: "\f0a8"; }
+
+.fa-arrow-circle-right:before {
+  content: "\f0a9"; }
+
+.fa-arrow-circle-up:before {
+  content: "\f0aa"; }
+
+.fa-arrow-down:before {
+  content: "\f063"; }
+
+.fa-arrow-from-bottom:before {
+  content: "\f342"; }
+
+.fa-arrow-from-left:before {
+  content: "\f343"; }
+
+.fa-arrow-from-right:before {
+  content: "\f344"; }
+
+.fa-arrow-from-top:before {
+  content: "\f345"; }
+
+.fa-arrow-left:before {
+  content: "\f060"; }
+
+.fa-arrow-right:before {
+  content: "\f061"; }
+
+.fa-arrow-square-down:before {
+  content: "\f339"; }
+
+.fa-arrow-square-left:before {
+  content: "\f33a"; }
+
+.fa-arrow-square-right:before {
+  content: "\f33b"; }
+
+.fa-arrow-square-up:before {
+  content: "\f33c"; }
+
+.fa-arrow-to-bottom:before {
+  content: "\f33d"; }
+
+.fa-arrow-to-left:before {
+  content: "\f33e"; }
+
+.fa-arrow-to-right:before {
+  content: "\f340"; }
+
+.fa-arrow-to-top:before {
+  content: "\f341"; }
+
+.fa-arrow-up:before {
+  content: "\f062"; }
+
+.fa-arrows:before {
+  content: "\f047"; }
+
+.fa-arrows-alt:before {
+  content: "\f0b2"; }
+
+.fa-arrows-alt-h:before {
+  content: "\f337"; }
+
+.fa-arrows-alt-v:before {
+  content: "\f338"; }
+
+.fa-arrows-h:before {
+  content: "\f07e"; }
+
+.fa-arrows-v:before {
+  content: "\f07d"; }
+
+.fa-artstation:before {
+  content: "\f77a"; }
+
+.fa-assistive-listening-systems:before {
+  content: "\f2a2"; }
+
+.fa-asterisk:before {
+  content: "\f069"; }
+
+.fa-asymmetrik:before {
+  content: "\f372"; }
+
+.fa-at:before {
+  content: "\f1fa"; }
+
+.fa-atlas:before {
+  content: "\f558"; }
+
+.fa-atlassian:before {
+  content: "\f77b"; }
+
+.fa-atom:before {
+  content: "\f5d2"; }
+
+.fa-atom-alt:before {
+  content: "\f5d3"; }
+
+.fa-audible:before {
+  content: "\f373"; }
+
+.fa-audio-description:before {
+  content: "\f29e"; }
+
+.fa-autoprefixer:before {
+  content: "\f41c"; }
+
+.fa-avianex:before {
+  content: "\f374"; }
+
+.fa-aviato:before {
+  content: "\f421"; }
+
+.fa-award:before {
+  content: "\f559"; }
+
+.fa-aws:before {
+  content: "\f375"; }
+
+.fa-axe:before {
+  content: "\f6b2"; }
+
+.fa-axe-battle:before {
+  content: "\f6b3"; }
+
+.fa-baby:before {
+  content: "\f77c"; }
+
+.fa-baby-carriage:before {
+  content: "\f77d"; }
+
+.fa-backpack:before {
+  content: "\f5d4"; }
+
+.fa-backspace:before {
+  content: "\f55a"; }
+
+.fa-backward:before {
+  content: "\f04a"; }
+
+.fa-badge:before {
+  content: "\f335"; }
+
+.fa-badge-check:before {
+  content: "\f336"; }
+
+.fa-badge-dollar:before {
+  content: "\f645"; }
+
+.fa-badge-percent:before {
+  content: "\f646"; }
+
+.fa-badger-honey:before {
+  content: "\f6b4"; }
+
+.fa-balance-scale:before {
+  content: "\f24e"; }
+
+.fa-balance-scale-left:before {
+  content: "\f515"; }
+
+.fa-balance-scale-right:before {
+  content: "\f516"; }
+
+.fa-ball-pile:before {
+  content: "\f77e"; }
+
+.fa-ballot:before {
+  content: "\f732"; }
+
+.fa-ballot-check:before {
+  content: "\f733"; }
+
+.fa-ban:before {
+  content: "\f05e"; }
+
+.fa-band-aid:before {
+  content: "\f462"; }
+
+.fa-bandcamp:before {
+  content: "\f2d5"; }
+
+.fa-barcode:before {
+  content: "\f02a"; }
+
+.fa-barcode-alt:before {
+  content: "\f463"; }
+
+.fa-barcode-read:before {
+  content: "\f464"; }
+
+.fa-barcode-scan:before {
+  content: "\f465"; }
+
+.fa-bars:before {
+  content: "\f0c9"; }
+
+.fa-baseball:before {
+  content: "\f432"; }
+
+.fa-baseball-ball:before {
+  content: "\f433"; }
+
+.fa-basketball-ball:before {
+  content: "\f434"; }
+
+.fa-basketball-hoop:before {
+  content: "\f435"; }
+
+.fa-bat:before {
+  content: "\f6b5"; }
+
+.fa-bath:before {
+  content: "\f2cd"; }
+
+.fa-battery-bolt:before {
+  content: "\f376"; }
+
+.fa-battery-empty:before {
+  content: "\f244"; }
+
+.fa-battery-full:before {
+  content: "\f240"; }
+
+.fa-battery-half:before {
+  content: "\f242"; }
+
+.fa-battery-quarter:before {
+  content: "\f243"; }
+
+.fa-battery-slash:before {
+  content: "\f377"; }
+
+.fa-battery-three-quarters:before {
+  content: "\f241"; }
+
+.fa-bed:before {
+  content: "\f236"; }
+
+.fa-beer:before {
+  content: "\f0fc"; }
+
+.fa-behance:before {
+  content: "\f1b4"; }
+
+.fa-behance-square:before {
+  content: "\f1b5"; }
+
+.fa-bell:before {
+  content: "\f0f3"; }
+
+.fa-bell-school:before {
+  content: "\f5d5"; }
+
+.fa-bell-school-slash:before {
+  content: "\f5d6"; }
+
+.fa-bell-slash:before {
+  content: "\f1f6"; }
+
+.fa-bells:before {
+  content: "\f77f"; }
+
+.fa-bezier-curve:before {
+  content: "\f55b"; }
+
+.fa-bible:before {
+  content: "\f647"; }
+
+.fa-bicycle:before {
+  content: "\f206"; }
+
+.fa-bimobject:before {
+  content: "\f378"; }
+
+.fa-binoculars:before {
+  content: "\f1e5"; }
+
+.fa-biohazard:before {
+  content: "\f780"; }
+
+.fa-birthday-cake:before {
+  content: "\f1fd"; }
+
+.fa-bitbucket:before {
+  content: "\f171"; }
+
+.fa-bitcoin:before {
+  content: "\f379"; }
+
+.fa-bity:before {
+  content: "\f37a"; }
+
+.fa-black-tie:before {
+  content: "\f27e"; }
+
+.fa-blackberry:before {
+  content: "\f37b"; }
+
+.fa-blanket:before {
+  content: "\f498"; }
+
+.fa-blender:before {
+  content: "\f517"; }
+
+.fa-blender-phone:before {
+  content: "\f6b6"; }
+
+.fa-blind:before {
+  content: "\f29d"; }
+
+.fa-blog:before {
+  content: "\f781"; }
+
+.fa-blogger:before {
+  content: "\f37c"; }
+
+.fa-blogger-b:before {
+  content: "\f37d"; }
+
+.fa-bluetooth:before {
+  content: "\f293"; }
+
+.fa-bluetooth-b:before {
+  content: "\f294"; }
+
+.fa-bold:before {
+  content: "\f032"; }
+
+.fa-bolt:before {
+  content: "\f0e7"; }
+
+.fa-bomb:before {
+  content: "\f1e2"; }
+
+.fa-bone:before {
+  content: "\f5d7"; }
+
+.fa-bone-break:before {
+  content: "\f5d8"; }
+
+.fa-bong:before {
+  content: "\f55c"; }
+
+.fa-book:before {
+  content: "\f02d"; }
+
+.fa-book-alt:before {
+  content: "\f5d9"; }
+
+.fa-book-dead:before {
+  content: "\f6b7"; }
+
+.fa-book-heart:before {
+  content: "\f499"; }
+
+.fa-book-open:before {
+  content: "\f518"; }
+
+.fa-book-reader:before {
+  content: "\f5da"; }
+
+.fa-book-spells:before {
+  content: "\f6b8"; }
+
+.fa-bookmark:before {
+  content: "\f02e"; }
+
+.fa-books:before {
+  content: "\f5db"; }
+
+.fa-boot:before {
+  content: "\f782"; }
+
+.fa-booth-curtain:before {
+  content: "\f734"; }
+
+.fa-bow-arrow:before {
+  content: "\f6b9"; }
+
+.fa-bowling-ball:before {
+  content: "\f436"; }
+
+.fa-bowling-pins:before {
+  content: "\f437"; }
+
+.fa-box:before {
+  content: "\f466"; }
+
+.fa-box-alt:before {
+  content: "\f49a"; }
+
+.fa-box-ballot:before {
+  content: "\f735"; }
+
+.fa-box-check:before {
+  content: "\f467"; }
+
+.fa-box-fragile:before {
+  content: "\f49b"; }
+
+.fa-box-full:before {
+  content: "\f49c"; }
+
+.fa-box-heart:before {
+  content: "\f49d"; }
+
+.fa-box-open:before {
+  content: "\f49e"; }
+
+.fa-box-up:before {
+  content: "\f49f"; }
+
+.fa-box-usd:before {
+  content: "\f4a0"; }
+
+.fa-boxes:before {
+  content: "\f468"; }
+
+.fa-boxes-alt:before {
+  content: "\f4a1"; }
+
+.fa-boxing-glove:before {
+  content: "\f438"; }
+
+.fa-braille:before {
+  content: "\f2a1"; }
+
+.fa-brain:before {
+  content: "\f5dc"; }
+
+.fa-briefcase:before {
+  content: "\f0b1"; }
+
+.fa-briefcase-medical:before {
+  content: "\f469"; }
+
+.fa-broadcast-tower:before {
+  content: "\f519"; }
+
+.fa-broom:before {
+  content: "\f51a"; }
+
+.fa-browser:before {
+  content: "\f37e"; }
+
+.fa-brush:before {
+  content: "\f55d"; }
+
+.fa-btc:before {
+  content: "\f15a"; }
+
+.fa-bug:before {
+  content: "\f188"; }
+
+.fa-building:before {
+  content: "\f1ad"; }
+
+.fa-bullhorn:before {
+  content: "\f0a1"; }
+
+.fa-bullseye:before {
+  content: "\f140"; }
+
+.fa-bullseye-arrow:before {
+  content: "\f648"; }
+
+.fa-bullseye-pointer:before {
+  content: "\f649"; }
+
+.fa-burn:before {
+  content: "\f46a"; }
+
+.fa-buromobelexperte:before {
+  content: "\f37f"; }
+
+.fa-bus:before {
+  content: "\f207"; }
+
+.fa-bus-alt:before {
+  content: "\f55e"; }
+
+.fa-bus-school:before {
+  content: "\f5dd"; }
+
+.fa-business-time:before {
+  content: "\f64a"; }
+
+.fa-buysellads:before {
+  content: "\f20d"; }
+
+.fa-cabinet-filing:before {
+  content: "\f64b"; }
+
+.fa-calculator:before {
+  content: "\f1ec"; }
+
+.fa-calculator-alt:before {
+  content: "\f64c"; }
+
+.fa-calendar:before {
+  content: "\f133"; }
+
+.fa-calendar-alt:before {
+  content: "\f073"; }
+
+.fa-calendar-check:before {
+  content: "\f274"; }
+
+.fa-calendar-day:before {
+  content: "\f783"; }
+
+.fa-calendar-edit:before {
+  content: "\f333"; }
+
+.fa-calendar-exclamation:before {
+  content: "\f334"; }
+
+.fa-calendar-minus:before {
+  content: "\f272"; }
+
+.fa-calendar-plus:before {
+  content: "\f271"; }
+
+.fa-calendar-star:before {
+  content: "\f736"; }
+
+.fa-calendar-times:before {
+  content: "\f273"; }
+
+.fa-calendar-week:before {
+  content: "\f784"; }
+
+.fa-camera:before {
+  content: "\f030"; }
+
+.fa-camera-alt:before {
+  content: "\f332"; }
+
+.fa-camera-retro:before {
+  content: "\f083"; }
+
+.fa-campfire:before {
+  content: "\f6ba"; }
+
+.fa-campground:before {
+  content: "\f6bb"; }
+
+.fa-canadian-maple-leaf:before {
+  content: "\f785"; }
+
+.fa-candle-holder:before {
+  content: "\f6bc"; }
+
+.fa-candy-cane:before {
+  content: "\f786"; }
+
+.fa-candy-corn:before {
+  content: "\f6bd"; }
+
+.fa-cannabis:before {
+  content: "\f55f"; }
+
+.fa-capsules:before {
+  content: "\f46b"; }
+
+.fa-car:before {
+  content: "\f1b9"; }
+
+.fa-car-alt:before {
+  content: "\f5de"; }
+
+.fa-car-battery:before {
+  content: "\f5df"; }
+
+.fa-car-bump:before {
+  content: "\f5e0"; }
+
+.fa-car-crash:before {
+  content: "\f5e1"; }
+
+.fa-car-garage:before {
+  content: "\f5e2"; }
+
+.fa-car-mechanic:before {
+  content: "\f5e3"; }
+
+.fa-car-side:before {
+  content: "\f5e4"; }
+
+.fa-car-tilt:before {
+  content: "\f5e5"; }
+
+.fa-car-wash:before {
+  content: "\f5e6"; }
+
+.fa-caret-circle-down:before {
+  content: "\f32d"; }
+
+.fa-caret-circle-left:before {
+  content: "\f32e"; }
+
+.fa-caret-circle-right:before {
+  content: "\f330"; }
+
+.fa-caret-circle-up:before {
+  content: "\f331"; }
+
+.fa-caret-down:before {
+  content: "\f0d7"; }
+
+.fa-caret-left:before {
+  content: "\f0d9"; }
+
+.fa-caret-right:before {
+  content: "\f0da"; }
+
+.fa-caret-square-down:before {
+  content: "\f150"; }
+
+.fa-caret-square-left:before {
+  content: "\f191"; }
+
+.fa-caret-square-right:before {
+  content: "\f152"; }
+
+.fa-caret-square-up:before {
+  content: "\f151"; }
+
+.fa-caret-up:before {
+  content: "\f0d8"; }
+
+.fa-carrot:before {
+  content: "\f787"; }
+
+.fa-cart-arrow-down:before {
+  content: "\f218"; }
+
+.fa-cart-plus:before {
+  content: "\f217"; }
+
+.fa-cash-register:before {
+  content: "\f788"; }
+
+.fa-cat:before {
+  content: "\f6be"; }
+
+.fa-cauldron:before {
+  content: "\f6bf"; }
+
+.fa-cc-amazon-pay:before {
+  content: "\f42d"; }
+
+.fa-cc-amex:before {
+  content: "\f1f3"; }
+
+.fa-cc-apple-pay:before {
+  content: "\f416"; }
+
+.fa-cc-diners-club:before {
+  content: "\f24c"; }
+
+.fa-cc-discover:before {
+  content: "\f1f2"; }
+
+.fa-cc-jcb:before {
+  content: "\f24b"; }
+
+.fa-cc-mastercard:before {
+  content: "\f1f1"; }
+
+.fa-cc-paypal:before {
+  content: "\f1f4"; }
+
+.fa-cc-stripe:before {
+  content: "\f1f5"; }
+
+.fa-cc-visa:before {
+  content: "\f1f0"; }
+
+.fa-centercode:before {
+  content: "\f380"; }
+
+.fa-centos:before {
+  content: "\f789"; }
+
+.fa-certificate:before {
+  content: "\f0a3"; }
+
+.fa-chair:before {
+  content: "\f6c0"; }
+
+.fa-chair-office:before {
+  content: "\f6c1"; }
+
+.fa-chalkboard:before {
+  content: "\f51b"; }
+
+.fa-chalkboard-teacher:before {
+  content: "\f51c"; }
+
+.fa-charging-station:before {
+  content: "\f5e7"; }
+
+.fa-chart-area:before {
+  content: "\f1fe"; }
+
+.fa-chart-bar:before {
+  content: "\f080"; }
+
+.fa-chart-line:before {
+  content: "\f201"; }
+
+.fa-chart-line-down:before {
+  content: "\f64d"; }
+
+.fa-chart-network:before {
+  content: "\f78a"; }
+
+.fa-chart-pie:before {
+  content: "\f200"; }
+
+.fa-chart-pie-alt:before {
+  content: "\f64e"; }
+
+.fa-check:before {
+  content: "\f00c"; }
+
+.fa-check-circle:before {
+  content: "\f058"; }
+
+.fa-check-double:before {
+  content: "\f560"; }
+
+.fa-check-square:before {
+  content: "\f14a"; }
+
+.fa-chess:before {
+  content: "\f439"; }
+
+.fa-chess-bishop:before {
+  content: "\f43a"; }
+
+.fa-chess-bishop-alt:before {
+  content: "\f43b"; }
+
+.fa-chess-board:before {
+  content: "\f43c"; }
+
+.fa-chess-clock:before {
+  content: "\f43d"; }
+
+.fa-chess-clock-alt:before {
+  content: "\f43e"; }
+
+.fa-chess-king:before {
+  content: "\f43f"; }
+
+.fa-chess-king-alt:before {
+  content: "\f440"; }
+
+.fa-chess-knight:before {
+  content: "\f441"; }
+
+.fa-chess-knight-alt:before {
+  content: "\f442"; }
+
+.fa-chess-pawn:before {
+  content: "\f443"; }
+
+.fa-chess-pawn-alt:before {
+  content: "\f444"; }
+
+.fa-chess-queen:before {
+  content: "\f445"; }
+
+.fa-chess-queen-alt:before {
+  content: "\f446"; }
+
+.fa-chess-rook:before {
+  content: "\f447"; }
+
+.fa-chess-rook-alt:before {
+  content: "\f448"; }
+
+.fa-chevron-circle-down:before {
+  content: "\f13a"; }
+
+.fa-chevron-circle-left:before {
+  content: "\f137"; }
+
+.fa-chevron-circle-right:before {
+  content: "\f138"; }
+
+.fa-chevron-circle-up:before {
+  content: "\f139"; }
+
+.fa-chevron-double-down:before {
+  content: "\f322"; }
+
+.fa-chevron-double-left:before {
+  content: "\f323"; }
+
+.fa-chevron-double-right:before {
+  content: "\f324"; }
+
+.fa-chevron-double-up:before {
+  content: "\f325"; }
+
+.fa-chevron-down:before {
+  content: "\f078"; }
+
+.fa-chevron-left:before {
+  content: "\f053"; }
+
+.fa-chevron-right:before {
+  content: "\f054"; }
+
+.fa-chevron-square-down:before {
+  content: "\f329"; }
+
+.fa-chevron-square-left:before {
+  content: "\f32a"; }
+
+.fa-chevron-square-right:before {
+  content: "\f32b"; }
+
+.fa-chevron-square-up:before {
+  content: "\f32c"; }
+
+.fa-chevron-up:before {
+  content: "\f077"; }
+
+.fa-child:before {
+  content: "\f1ae"; }
+
+.fa-chimney:before {
+  content: "\f78b"; }
+
+.fa-chrome:before {
+  content: "\f268"; }
+
+.fa-church:before {
+  content: "\f51d"; }
+
+.fa-circle:before {
+  content: "\f111"; }
+
+.fa-circle-notch:before {
+  content: "\f1ce"; }
+
+.fa-city:before {
+  content: "\f64f"; }
+
+.fa-claw-marks:before {
+  content: "\f6c2"; }
+
+.fa-clipboard:before {
+  content: "\f328"; }
+
+.fa-clipboard-check:before {
+  content: "\f46c"; }
+
+.fa-clipboard-list:before {
+  content: "\f46d"; }
+
+.fa-clipboard-list-check:before {
+  content: "\f737"; }
+
+.fa-clipboard-prescription:before {
+  content: "\f5e8"; }
+
+.fa-clock:before {
+  content: "\f017"; }
+
+.fa-clone:before {
+  content: "\f24d"; }
+
+.fa-closed-captioning:before {
+  content: "\f20a"; }
+
+.fa-cloud:before {
+  content: "\f0c2"; }
+
+.fa-cloud-download:before {
+  content: "\f0ed"; }
+
+.fa-cloud-download-alt:before {
+  content: "\f381"; }
+
+.fa-cloud-drizzle:before {
+  content: "\f738"; }
+
+.fa-cloud-hail:before {
+  content: "\f739"; }
+
+.fa-cloud-hail-mixed:before {
+  content: "\f73a"; }
+
+.fa-cloud-meatball:before {
+  content: "\f73b"; }
+
+.fa-cloud-moon:before {
+  content: "\f6c3"; }
+
+.fa-cloud-moon-rain:before {
+  content: "\f73c"; }
+
+.fa-cloud-rain:before {
+  content: "\f73d"; }
+
+.fa-cloud-rainbow:before {
+  content: "\f73e"; }
+
+.fa-cloud-showers:before {
+  content: "\f73f"; }
+
+.fa-cloud-showers-heavy:before {
+  content: "\f740"; }
+
+.fa-cloud-sleet:before {
+  content: "\f741"; }
+
+.fa-cloud-snow:before {
+  content: "\f742"; }
+
+.fa-cloud-sun:before {
+  content: "\f6c4"; }
+
+.fa-cloud-sun-rain:before {
+  content: "\f743"; }
+
+.fa-cloud-upload:before {
+  content: "\f0ee"; }
+
+.fa-cloud-upload-alt:before {
+  content: "\f382"; }
+
+.fa-clouds:before {
+  content: "\f744"; }
+
+.fa-clouds-moon:before {
+  content: "\f745"; }
+
+.fa-clouds-sun:before {
+  content: "\f746"; }
+
+.fa-cloudscale:before {
+  content: "\f383"; }
+
+.fa-cloudsmith:before {
+  content: "\f384"; }
+
+.fa-cloudversify:before {
+  content: "\f385"; }
+
+.fa-club:before {
+  content: "\f327"; }
+
+.fa-cocktail:before {
+  content: "\f561"; }
+
+.fa-code:before {
+  content: "\f121"; }
+
+.fa-code-branch:before {
+  content: "\f126"; }
+
+.fa-code-commit:before {
+  content: "\f386"; }
+
+.fa-code-merge:before {
+  content: "\f387"; }
+
+.fa-codepen:before {
+  content: "\f1cb"; }
+
+.fa-codiepie:before {
+  content: "\f284"; }
+
+.fa-coffee:before {
+  content: "\f0f4"; }
+
+.fa-coffee-togo:before {
+  content: "\f6c5"; }
+
+.fa-coffin:before {
+  content: "\f6c6"; }
+
+.fa-cog:before {
+  content: "\f013"; }
+
+.fa-cogs:before {
+  content: "\f085"; }
+
+.fa-coins:before {
+  content: "\f51e"; }
+
+.fa-columns:before {
+  content: "\f0db"; }
+
+.fa-comment:before {
+  content: "\f075"; }
+
+.fa-comment-alt:before {
+  content: "\f27a"; }
+
+.fa-comment-alt-check:before {
+  content: "\f4a2"; }
+
+.fa-comment-alt-dollar:before {
+  content: "\f650"; }
+
+.fa-comment-alt-dots:before {
+  content: "\f4a3"; }
+
+.fa-comment-alt-edit:before {
+  content: "\f4a4"; }
+
+.fa-comment-alt-exclamation:before {
+  content: "\f4a5"; }
+
+.fa-comment-alt-lines:before {
+  content: "\f4a6"; }
+
+.fa-comment-alt-minus:before {
+  content: "\f4a7"; }
+
+.fa-comment-alt-plus:before {
+  content: "\f4a8"; }
+
+.fa-comment-alt-slash:before {
+  content: "\f4a9"; }
+
+.fa-comment-alt-smile:before {
+  content: "\f4aa"; }
+
+.fa-comment-alt-times:before {
+  content: "\f4ab"; }
+
+.fa-comment-check:before {
+  content: "\f4ac"; }
+
+.fa-comment-dollar:before {
+  content: "\f651"; }
+
+.fa-comment-dots:before {
+  content: "\f4ad"; }
+
+.fa-comment-edit:before {
+  content: "\f4ae"; }
+
+.fa-comment-exclamation:before {
+  content: "\f4af"; }
+
+.fa-comment-lines:before {
+  content: "\f4b0"; }
+
+.fa-comment-minus:before {
+  content: "\f4b1"; }
+
+.fa-comment-plus:before {
+  content: "\f4b2"; }
+
+.fa-comment-slash:before {
+  content: "\f4b3"; }
+
+.fa-comment-smile:before {
+  content: "\f4b4"; }
+
+.fa-comment-times:before {
+  content: "\f4b5"; }
+
+.fa-comments:before {
+  content: "\f086"; }
+
+.fa-comments-alt:before {
+  content: "\f4b6"; }
+
+.fa-comments-alt-dollar:before {
+  content: "\f652"; }
+
+.fa-comments-dollar:before {
+  content: "\f653"; }
+
+.fa-compact-disc:before {
+  content: "\f51f"; }
+
+.fa-compass:before {
+  content: "\f14e"; }
+
+.fa-compass-slash:before {
+  content: "\f5e9"; }
+
+.fa-compress:before {
+  content: "\f066"; }
+
+.fa-compress-alt:before {
+  content: "\f422"; }
+
+.fa-compress-arrows-alt:before {
+  content: "\f78c"; }
+
+.fa-compress-wide:before {
+  content: "\f326"; }
+
+.fa-concierge-bell:before {
+  content: "\f562"; }
+
+.fa-confluence:before {
+  content: "\f78d"; }
+
+.fa-connectdevelop:before {
+  content: "\f20e"; }
+
+.fa-container-storage:before {
+  content: "\f4b7"; }
+
+.fa-contao:before {
+  content: "\f26d"; }
+
+.fa-conveyor-belt:before {
+  content: "\f46e"; }
+
+.fa-conveyor-belt-alt:before {
+  content: "\f46f"; }
+
+.fa-cookie:before {
+  content: "\f563"; }
+
+.fa-cookie-bite:before {
+  content: "\f564"; }
+
+.fa-copy:before {
+  content: "\f0c5"; }
+
+.fa-copyright:before {
+  content: "\f1f9"; }
+
+.fa-corn:before {
+  content: "\f6c7"; }
+
+.fa-couch:before {
+  content: "\f4b8"; }
+
+.fa-cow:before {
+  content: "\f6c8"; }
+
+.fa-cpanel:before {
+  content: "\f388"; }
+
+.fa-creative-commons:before {
+  content: "\f25e"; }
+
+.fa-creative-commons-by:before {
+  content: "\f4e7"; }
+
+.fa-creative-commons-nc:before {
+  content: "\f4e8"; }
+
+.fa-creative-commons-nc-eu:before {
+  content: "\f4e9"; }
+
+.fa-creative-commons-nc-jp:before {
+  content: "\f4ea"; }
+
+.fa-creative-commons-nd:before {
+  content: "\f4eb"; }
+
+.fa-creative-commons-pd:before {
+  content: "\f4ec"; }
+
+.fa-creative-commons-pd-alt:before {
+  content: "\f4ed"; }
+
+.fa-creative-commons-remix:before {
+  content: "\f4ee"; }
+
+.fa-creative-commons-sa:before {
+  content: "\f4ef"; }
+
+.fa-creative-commons-sampling:before {
+  content: "\f4f0"; }
+
+.fa-creative-commons-sampling-plus:before {
+  content: "\f4f1"; }
+
+.fa-creative-commons-share:before {
+  content: "\f4f2"; }
+
+.fa-creative-commons-zero:before {
+  content: "\f4f3"; }
+
+.fa-credit-card:before {
+  content: "\f09d"; }
+
+.fa-credit-card-blank:before {
+  content: "\f389"; }
+
+.fa-credit-card-front:before {
+  content: "\f38a"; }
+
+.fa-cricket:before {
+  content: "\f449"; }
+
+.fa-critical-role:before {
+  content: "\f6c9"; }
+
+.fa-crop:before {
+  content: "\f125"; }
+
+.fa-crop-alt:before {
+  content: "\f565"; }
+
+.fa-cross:before {
+  content: "\f654"; }
+
+.fa-crosshairs:before {
+  content: "\f05b"; }
+
+.fa-crow:before {
+  content: "\f520"; }
+
+.fa-crown:before {
+  content: "\f521"; }
+
+.fa-css3:before {
+  content: "\f13c"; }
+
+.fa-css3-alt:before {
+  content: "\f38b"; }
+
+.fa-cube:before {
+  content: "\f1b2"; }
+
+.fa-cubes:before {
+  content: "\f1b3"; }
+
+.fa-curling:before {
+  content: "\f44a"; }
+
+.fa-cut:before {
+  content: "\f0c4"; }
+
+.fa-cuttlefish:before {
+  content: "\f38c"; }
+
+.fa-d-and-d:before {
+  content: "\f38d"; }
+
+.fa-d-and-d-beyond:before {
+  content: "\f6ca"; }
+
+.fa-dagger:before {
+  content: "\f6cb"; }
+
+.fa-dashcube:before {
+  content: "\f210"; }
+
+.fa-database:before {
+  content: "\f1c0"; }
+
+.fa-deaf:before {
+  content: "\f2a4"; }
+
+.fa-deer:before {
+  content: "\f78e"; }
+
+.fa-deer-rudolph:before {
+  content: "\f78f"; }
+
+.fa-delicious:before {
+  content: "\f1a5"; }
+
+.fa-democrat:before {
+  content: "\f747"; }
+
+.fa-deploydog:before {
+  content: "\f38e"; }
+
+.fa-deskpro:before {
+  content: "\f38f"; }
+
+.fa-desktop:before {
+  content: "\f108"; }
+
+.fa-desktop-alt:before {
+  content: "\f390"; }
+
+.fa-dev:before {
+  content: "\f6cc"; }
+
+.fa-deviantart:before {
+  content: "\f1bd"; }
+
+.fa-dewpoint:before {
+  content: "\f748"; }
+
+.fa-dharmachakra:before {
+  content: "\f655"; }
+
+.fa-dhl:before {
+  content: "\f790"; }
+
+.fa-diagnoses:before {
+  content: "\f470"; }
+
+.fa-diamond:before {
+  content: "\f219"; }
+
+.fa-diaspora:before {
+  content: "\f791"; }
+
+.fa-dice:before {
+  content: "\f522"; }
+
+.fa-dice-d10:before {
+  content: "\f6cd"; }
+
+.fa-dice-d12:before {
+  content: "\f6ce"; }
+
+.fa-dice-d20:before {
+  content: "\f6cf"; }
+
+.fa-dice-d4:before {
+  content: "\f6d0"; }
+
+.fa-dice-d6:before {
+  content: "\f6d1"; }
+
+.fa-dice-d8:before {
+  content: "\f6d2"; }
+
+.fa-dice-five:before {
+  content: "\f523"; }
+
+.fa-dice-four:before {
+  content: "\f524"; }
+
+.fa-dice-one:before {
+  content: "\f525"; }
+
+.fa-dice-six:before {
+  content: "\f526"; }
+
+.fa-dice-three:before {
+  content: "\f527"; }
+
+.fa-dice-two:before {
+  content: "\f528"; }
+
+.fa-digg:before {
+  content: "\f1a6"; }
+
+.fa-digital-ocean:before {
+  content: "\f391"; }
+
+.fa-digital-tachograph:before {
+  content: "\f566"; }
+
+.fa-diploma:before {
+  content: "\f5ea"; }
+
+.fa-directions:before {
+  content: "\f5eb"; }
+
+.fa-discord:before {
+  content: "\f392"; }
+
+.fa-discourse:before {
+  content: "\f393"; }
+
+.fa-divide:before {
+  content: "\f529"; }
+
+.fa-dizzy:before {
+  content: "\f567"; }
+
+.fa-dna:before {
+  content: "\f471"; }
+
+.fa-do-not-enter:before {
+  content: "\f5ec"; }
+
+.fa-dochub:before {
+  content: "\f394"; }
+
+.fa-docker:before {
+  content: "\f395"; }
+
+.fa-dog:before {
+  content: "\f6d3"; }
+
+.fa-dog-leashed:before {
+  content: "\f6d4"; }
+
+.fa-dollar-sign:before {
+  content: "\f155"; }
+
+.fa-dolly:before {
+  content: "\f472"; }
+
+.fa-dolly-empty:before {
+  content: "\f473"; }
+
+.fa-dolly-flatbed:before {
+  content: "\f474"; }
+
+.fa-dolly-flatbed-alt:before {
+  content: "\f475"; }
+
+.fa-dolly-flatbed-empty:before {
+  content: "\f476"; }
+
+.fa-donate:before {
+  content: "\f4b9"; }
+
+.fa-door-closed:before {
+  content: "\f52a"; }
+
+.fa-door-open:before {
+  content: "\f52b"; }
+
+.fa-dot-circle:before {
+  content: "\f192"; }
+
+.fa-dove:before {
+  content: "\f4ba"; }
+
+.fa-download:before {
+  content: "\f019"; }
+
+.fa-draft2digital:before {
+  content: "\f396"; }
+
+.fa-drafting-compass:before {
+  content: "\f568"; }
+
+.fa-dragon:before {
+  content: "\f6d5"; }
+
+.fa-draw-circle:before {
+  content: "\f5ed"; }
+
+.fa-draw-polygon:before {
+  content: "\f5ee"; }
+
+.fa-draw-square:before {
+  content: "\f5ef"; }
+
+.fa-dreidel:before {
+  content: "\f792"; }
+
+.fa-dribbble:before {
+  content: "\f17d"; }
+
+.fa-dribbble-square:before {
+  content: "\f397"; }
+
+.fa-dropbox:before {
+  content: "\f16b"; }
+
+.fa-drum:before {
+  content: "\f569"; }
+
+.fa-drum-steelpan:before {
+  content: "\f56a"; }
+
+.fa-drumstick:before {
+  content: "\f6d6"; }
+
+.fa-drumstick-bite:before {
+  content: "\f6d7"; }
+
+.fa-drupal:before {
+  content: "\f1a9"; }
+
+.fa-duck:before {
+  content: "\f6d8"; }
+
+.fa-dumbbell:before {
+  content: "\f44b"; }
+
+.fa-dumpster:before {
+  content: "\f793"; }
+
+.fa-dumpster-fire:before {
+  content: "\f794"; }
+
+.fa-dungeon:before {
+  content: "\f6d9"; }
+
+.fa-dyalog:before {
+  content: "\f399"; }
+
+.fa-ear:before {
+  content: "\f5f0"; }
+
+.fa-ear-muffs:before {
+  content: "\f795"; }
+
+.fa-earlybirds:before {
+  content: "\f39a"; }
+
+.fa-ebay:before {
+  content: "\f4f4"; }
+
+.fa-eclipse:before {
+  content: "\f749"; }
+
+.fa-eclipse-alt:before {
+  content: "\f74a"; }
+
+.fa-edge:before {
+  content: "\f282"; }
+
+.fa-edit:before {
+  content: "\f044"; }
+
+.fa-eject:before {
+  content: "\f052"; }
+
+.fa-elementor:before {
+  content: "\f430"; }
+
+.fa-elephant:before {
+  content: "\f6da"; }
+
+.fa-ellipsis-h:before {
+  content: "\f141"; }
+
+.fa-ellipsis-h-alt:before {
+  content: "\f39b"; }
+
+.fa-ellipsis-v:before {
+  content: "\f142"; }
+
+.fa-ellipsis-v-alt:before {
+  content: "\f39c"; }
+
+.fa-ello:before {
+  content: "\f5f1"; }
+
+.fa-ember:before {
+  content: "\f423"; }
+
+.fa-empire:before {
+  content: "\f1d1"; }
+
+.fa-empty-set:before {
+  content: "\f656"; }
+
+.fa-engine-warning:before {
+  content: "\f5f2"; }
+
+.fa-envelope:before {
+  content: "\f0e0"; }
+
+.fa-envelope-open:before {
+  content: "\f2b6"; }
+
+.fa-envelope-open-dollar:before {
+  content: "\f657"; }
+
+.fa-envelope-open-text:before {
+  content: "\f658"; }
+
+.fa-envelope-square:before {
+  content: "\f199"; }
+
+.fa-envira:before {
+  content: "\f299"; }
+
+.fa-equals:before {
+  content: "\f52c"; }
+
+.fa-eraser:before {
+  content: "\f12d"; }
+
+.fa-erlang:before {
+  content: "\f39d"; }
+
+.fa-ethereum:before {
+  content: "\f42e"; }
+
+.fa-ethernet:before {
+  content: "\f796"; }
+
+.fa-etsy:before {
+  content: "\f2d7"; }
+
+.fa-euro-sign:before {
+  content: "\f153"; }
+
+.fa-exchange:before {
+  content: "\f0ec"; }
+
+.fa-exchange-alt:before {
+  content: "\f362"; }
+
+.fa-exclamation:before {
+  content: "\f12a"; }
+
+.fa-exclamation-circle:before {
+  content: "\f06a"; }
+
+.fa-exclamation-square:before {
+  content: "\f321"; }
+
+.fa-exclamation-triangle:before {
+  content: "\f071"; }
+
+.fa-expand:before {
+  content: "\f065"; }
+
+.fa-expand-alt:before {
+  content: "\f424"; }
+
+.fa-expand-arrows:before {
+  content: "\f31d"; }
+
+.fa-expand-arrows-alt:before {
+  content: "\f31e"; }
+
+.fa-expand-wide:before {
+  content: "\f320"; }
+
+.fa-expeditedssl:before {
+  content: "\f23e"; }
+
+.fa-external-link:before {
+  content: "\f08e"; }
+
+.fa-external-link-alt:before {
+  content: "\f35d"; }
+
+.fa-external-link-square:before {
+  content: "\f14c"; }
+
+.fa-external-link-square-alt:before {
+  content: "\f360"; }
+
+.fa-eye:before {
+  content: "\f06e"; }
+
+.fa-eye-dropper:before {
+  content: "\f1fb"; }
+
+.fa-eye-evil:before {
+  content: "\f6db"; }
+
+.fa-eye-slash:before {
+  content: "\f070"; }
+
+.fa-facebook:before {
+  content: "\f09a"; }
+
+.fa-facebook-f:before {
+  content: "\f39e"; }
+
+.fa-facebook-messenger:before {
+  content: "\f39f"; }
+
+.fa-facebook-square:before {
+  content: "\f082"; }
+
+.fa-fantasy-flight-games:before {
+  content: "\f6dc"; }
+
+.fa-fast-backward:before {
+  content: "\f049"; }
+
+.fa-fast-forward:before {
+  content: "\f050"; }
+
+.fa-fax:before {
+  content: "\f1ac"; }
+
+.fa-feather:before {
+  content: "\f52d"; }
+
+.fa-feather-alt:before {
+  content: "\f56b"; }
+
+.fa-fedex:before {
+  content: "\f797"; }
+
+.fa-fedora:before {
+  content: "\f798"; }
+
+.fa-female:before {
+  content: "\f182"; }
+
+.fa-field-hockey:before {
+  content: "\f44c"; }
+
+.fa-fighter-jet:before {
+  content: "\f0fb"; }
+
+.fa-figma:before {
+  content: "\f799"; }
+
+.fa-file:before {
+  content: "\f15b"; }
+
+.fa-file-alt:before {
+  content: "\f15c"; }
+
+.fa-file-archive:before {
+  content: "\f1c6"; }
+
+.fa-file-audio:before {
+  content: "\f1c7"; }
+
+.fa-file-certificate:before {
+  content: "\f5f3"; }
+
+.fa-file-chart-line:before {
+  content: "\f659"; }
+
+.fa-file-chart-pie:before {
+  content: "\f65a"; }
+
+.fa-file-check:before {
+  content: "\f316"; }
+
+.fa-file-code:before {
+  content: "\f1c9"; }
+
+.fa-file-contract:before {
+  content: "\f56c"; }
+
+.fa-file-csv:before {
+  content: "\f6dd"; }
+
+.fa-file-download:before {
+  content: "\f56d"; }
+
+.fa-file-edit:before {
+  content: "\f31c"; }
+
+.fa-file-excel:before {
+  content: "\f1c3"; }
+
+.fa-file-exclamation:before {
+  content: "\f31a"; }
+
+.fa-file-export:before {
+  content: "\f56e"; }
+
+.fa-file-image:before {
+  content: "\f1c5"; }
+
+.fa-file-import:before {
+  content: "\f56f"; }
+
+.fa-file-invoice:before {
+  content: "\f570"; }
+
+.fa-file-invoice-dollar:before {
+  content: "\f571"; }
+
+.fa-file-medical:before {
+  content: "\f477"; }
+
+.fa-file-medical-alt:before {
+  content: "\f478"; }
+
+.fa-file-minus:before {
+  content: "\f318"; }
+
+.fa-file-pdf:before {
+  content: "\f1c1"; }
+
+.fa-file-plus:before {
+  content: "\f319"; }
+
+.fa-file-powerpoint:before {
+  content: "\f1c4"; }
+
+.fa-file-prescription:before {
+  content: "\f572"; }
+
+.fa-file-signature:before {
+  content: "\f573"; }
+
+.fa-file-spreadsheet:before {
+  content: "\f65b"; }
+
+.fa-file-times:before {
+  content: "\f317"; }
+
+.fa-file-upload:before {
+  content: "\f574"; }
+
+.fa-file-user:before {
+  content: "\f65c"; }
+
+.fa-file-video:before {
+  content: "\f1c8"; }
+
+.fa-file-word:before {
+  content: "\f1c2"; }
+
+.fa-fill:before {
+  content: "\f575"; }
+
+.fa-fill-drip:before {
+  content: "\f576"; }
+
+.fa-film:before {
+  content: "\f008"; }
+
+.fa-film-alt:before {
+  content: "\f3a0"; }
+
+.fa-filter:before {
+  content: "\f0b0"; }
+
+.fa-fingerprint:before {
+  content: "\f577"; }
+
+.fa-fire:before {
+  content: "\f06d"; }
+
+.fa-fire-alt:before {
+  content: "\f7e4"; }
+
+.fa-fire-extinguisher:before {
+  content: "\f134"; }
+
+.fa-fire-smoke:before {
+  content: "\f74b"; }
+
+.fa-firefox:before {
+  content: "\f269"; }
+
+.fa-fireplace:before {
+  content: "\f79a"; }
+
+.fa-first-aid:before {
+  content: "\f479"; }
+
+.fa-first-order:before {
+  content: "\f2b0"; }
+
+.fa-first-order-alt:before {
+  content: "\f50a"; }
+
+.fa-firstdraft:before {
+  content: "\f3a1"; }
+
+.fa-fish:before {
+  content: "\f578"; }
+
+.fa-fist-raised:before {
+  content: "\f6de"; }
+
+.fa-flag:before {
+  content: "\f024"; }
+
+.fa-flag-alt:before {
+  content: "\f74c"; }
+
+.fa-flag-checkered:before {
+  content: "\f11e"; }
+
+.fa-flag-usa:before {
+  content: "\f74d"; }
+
+.fa-flame:before {
+  content: "\f6df"; }
+
+.fa-flask:before {
+  content: "\f0c3"; }
+
+.fa-flask-poison:before {
+  content: "\f6e0"; }
+
+.fa-flask-potion:before {
+  content: "\f6e1"; }
+
+.fa-flickr:before {
+  content: "\f16e"; }
+
+.fa-flipboard:before {
+  content: "\f44d"; }
+
+.fa-flushed:before {
+  content: "\f579"; }
+
+.fa-fly:before {
+  content: "\f417"; }
+
+.fa-fog:before {
+  content: "\f74e"; }
+
+.fa-folder:before {
+  content: "\f07b"; }
+
+.fa-folder-minus:before {
+  content: "\f65d"; }
+
+.fa-folder-open:before {
+  content: "\f07c"; }
+
+.fa-folder-plus:before {
+  content: "\f65e"; }
+
+.fa-folder-times:before {
+  content: "\f65f"; }
+
+.fa-folders:before {
+  content: "\f660"; }
+
+.fa-font:before {
+  content: "\f031"; }
+
+.fa-font-awesome:before {
+  content: "\f2b4"; }
+
+.fa-font-awesome-alt:before {
+  content: "\f35c"; }
+
+.fa-font-awesome-flag:before {
+  content: "\f425"; }
+
+.fa-font-awesome-logo-full:before {
+  content: "\f4e6"; }
+
+.fa-fonticons:before {
+  content: "\f280"; }
+
+.fa-fonticons-fi:before {
+  content: "\f3a2"; }
+
+.fa-football-ball:before {
+  content: "\f44e"; }
+
+.fa-football-helmet:before {
+  content: "\f44f"; }
+
+.fa-forklift:before {
+  content: "\f47a"; }
+
+.fa-fort-awesome:before {
+  content: "\f286"; }
+
+.fa-fort-awesome-alt:before {
+  content: "\f3a3"; }
+
+.fa-forumbee:before {
+  content: "\f211"; }
+
+.fa-forward:before {
+  content: "\f04e"; }
+
+.fa-foursquare:before {
+  content: "\f180"; }
+
+.fa-fragile:before {
+  content: "\f4bb"; }
+
+.fa-free-code-camp:before {
+  content: "\f2c5"; }
+
+.fa-freebsd:before {
+  content: "\f3a4"; }
+
+.fa-frog:before {
+  content: "\f52e"; }
+
+.fa-frosty-head:before {
+  content: "\f79b"; }
+
+.fa-frown:before {
+  content: "\f119"; }
+
+.fa-frown-open:before {
+  content: "\f57a"; }
+
+.fa-fulcrum:before {
+  content: "\f50b"; }
+
+.fa-function:before {
+  content: "\f661"; }
+
+.fa-funnel-dollar:before {
+  content: "\f662"; }
+
+.fa-futbol:before {
+  content: "\f1e3"; }
+
+.fa-galactic-republic:before {
+  content: "\f50c"; }
+
+.fa-galactic-senate:before {
+  content: "\f50d"; }
+
+.fa-gamepad:before {
+  content: "\f11b"; }
+
+.fa-gas-pump:before {
+  content: "\f52f"; }
+
+.fa-gas-pump-slash:before {
+  content: "\f5f4"; }
+
+.fa-gavel:before {
+  content: "\f0e3"; }
+
+.fa-gem:before {
+  content: "\f3a5"; }
+
+.fa-genderless:before {
+  content: "\f22d"; }
+
+.fa-get-pocket:before {
+  content: "\f265"; }
+
+.fa-gg:before {
+  content: "\f260"; }
+
+.fa-gg-circle:before {
+  content: "\f261"; }
+
+.fa-ghost:before {
+  content: "\f6e2"; }
+
+.fa-gift:before {
+  content: "\f06b"; }
+
+.fa-gift-card:before {
+  content: "\f663"; }
+
+.fa-gifts:before {
+  content: "\f79c"; }
+
+.fa-gingerbread-man:before {
+  content: "\f79d"; }
+
+.fa-git:before {
+  content: "\f1d3"; }
+
+.fa-git-square:before {
+  content: "\f1d2"; }
+
+.fa-github:before {
+  content: "\f09b"; }
+
+.fa-github-alt:before {
+  content: "\f113"; }
+
+.fa-github-square:before {
+  content: "\f092"; }
+
+.fa-gitkraken:before {
+  content: "\f3a6"; }
+
+.fa-gitlab:before {
+  content: "\f296"; }
+
+.fa-gitter:before {
+  content: "\f426"; }
+
+.fa-glass-champagne:before {
+  content: "\f79e"; }
+
+.fa-glass-cheers:before {
+  content: "\f79f"; }
+
+.fa-glass-martini:before {
+  content: "\f000"; }
+
+.fa-glass-martini-alt:before {
+  content: "\f57b"; }
+
+.fa-glass-whiskey:before {
+  content: "\f7a0"; }
+
+.fa-glass-whiskey-rocks:before {
+  content: "\f7a1"; }
+
+.fa-glasses:before {
+  content: "\f530"; }
+
+.fa-glasses-alt:before {
+  content: "\f5f5"; }
+
+.fa-glide:before {
+  content: "\f2a5"; }
+
+.fa-glide-g:before {
+  content: "\f2a6"; }
+
+.fa-globe:before {
+  content: "\f0ac"; }
+
+.fa-globe-africa:before {
+  content: "\f57c"; }
+
+.fa-globe-americas:before {
+  content: "\f57d"; }
+
+.fa-globe-asia:before {
+  content: "\f57e"; }
+
+.fa-globe-europe:before {
+  content: "\f7a2"; }
+
+.fa-globe-snow:before {
+  content: "\f7a3"; }
+
+.fa-globe-stand:before {
+  content: "\f5f6"; }
+
+.fa-gofore:before {
+  content: "\f3a7"; }
+
+.fa-golf-ball:before {
+  content: "\f450"; }
+
+.fa-golf-club:before {
+  content: "\f451"; }
+
+.fa-goodreads:before {
+  content: "\f3a8"; }
+
+.fa-goodreads-g:before {
+  content: "\f3a9"; }
+
+.fa-google:before {
+  content: "\f1a0"; }
+
+.fa-google-drive:before {
+  content: "\f3aa"; }
+
+.fa-google-play:before {
+  content: "\f3ab"; }
+
+.fa-google-plus:before {
+  content: "\f2b3"; }
+
+.fa-google-plus-g:before {
+  content: "\f0d5"; }
+
+.fa-google-plus-square:before {
+  content: "\f0d4"; }
+
+.fa-google-wallet:before {
+  content: "\f1ee"; }
+
+.fa-gopuram:before {
+  content: "\f664"; }
+
+.fa-graduation-cap:before {
+  content: "\f19d"; }
+
+.fa-gratipay:before {
+  content: "\f184"; }
+
+.fa-grav:before {
+  content: "\f2d6"; }
+
+.fa-greater-than:before {
+  content: "\f531"; }
+
+.fa-greater-than-equal:before {
+  content: "\f532"; }
+
+.fa-grimace:before {
+  content: "\f57f"; }
+
+.fa-grin:before {
+  content: "\f580"; }
+
+.fa-grin-alt:before {
+  content: "\f581"; }
+
+.fa-grin-beam:before {
+  content: "\f582"; }
+
+.fa-grin-beam-sweat:before {
+  content: "\f583"; }
+
+.fa-grin-hearts:before {
+  content: "\f584"; }
+
+.fa-grin-squint:before {
+  content: "\f585"; }
+
+.fa-grin-squint-tears:before {
+  content: "\f586"; }
+
+.fa-grin-stars:before {
+  content: "\f587"; }
+
+.fa-grin-tears:before {
+  content: "\f588"; }
+
+.fa-grin-tongue:before {
+  content: "\f589"; }
+
+.fa-grin-tongue-squint:before {
+  content: "\f58a"; }
+
+.fa-grin-tongue-wink:before {
+  content: "\f58b"; }
+
+.fa-grin-wink:before {
+  content: "\f58c"; }
+
+.fa-grip-horizontal:before {
+  content: "\f58d"; }
+
+.fa-grip-lines:before {
+  content: "\f7a4"; }
+
+.fa-grip-lines-vertical:before {
+  content: "\f7a5"; }
+
+.fa-grip-vertical:before {
+  content: "\f58e"; }
+
+.fa-gripfire:before {
+  content: "\f3ac"; }
+
+.fa-grunt:before {
+  content: "\f3ad"; }
+
+.fa-guitar:before {
+  content: "\f7a6"; }
+
+.fa-gulp:before {
+  content: "\f3ae"; }
+
+.fa-h-square:before {
+  content: "\f0fd"; }
+
+.fa-h1:before {
+  content: "\f313"; }
+
+.fa-h2:before {
+  content: "\f314"; }
+
+.fa-h3:before {
+  content: "\f315"; }
+
+.fa-hacker-news:before {
+  content: "\f1d4"; }
+
+.fa-hacker-news-square:before {
+  content: "\f3af"; }
+
+.fa-hackerrank:before {
+  content: "\f5f7"; }
+
+.fa-hammer:before {
+  content: "\f6e3"; }
+
+.fa-hammer-war:before {
+  content: "\f6e4"; }
+
+.fa-hamsa:before {
+  content: "\f665"; }
+
+.fa-hand-heart:before {
+  content: "\f4bc"; }
+
+.fa-hand-holding:before {
+  content: "\f4bd"; }
+
+.fa-hand-holding-box:before {
+  content: "\f47b"; }
+
+.fa-hand-holding-heart:before {
+  content: "\f4be"; }
+
+.fa-hand-holding-magic:before {
+  content: "\f6e5"; }
+
+.fa-hand-holding-seedling:before {
+  content: "\f4bf"; }
+
+.fa-hand-holding-usd:before {
+  content: "\f4c0"; }
+
+.fa-hand-holding-water:before {
+  content: "\f4c1"; }
+
+.fa-hand-lizard:before {
+  content: "\f258"; }
+
+.fa-hand-paper:before {
+  content: "\f256"; }
+
+.fa-hand-peace:before {
+  content: "\f25b"; }
+
+.fa-hand-point-down:before {
+  content: "\f0a7"; }
+
+.fa-hand-point-left:before {
+  content: "\f0a5"; }
+
+.fa-hand-point-right:before {
+  content: "\f0a4"; }
+
+.fa-hand-point-up:before {
+  content: "\f0a6"; }
+
+.fa-hand-pointer:before {
+  content: "\f25a"; }
+
+.fa-hand-receiving:before {
+  content: "\f47c"; }
+
+.fa-hand-rock:before {
+  content: "\f255"; }
+
+.fa-hand-scissors:before {
+  content: "\f257"; }
+
+.fa-hand-spock:before {
+  content: "\f259"; }
+
+.fa-hands:before {
+  content: "\f4c2"; }
+
+.fa-hands-heart:before {
+  content: "\f4c3"; }
+
+.fa-hands-helping:before {
+  content: "\f4c4"; }
+
+.fa-hands-usd:before {
+  content: "\f4c5"; }
+
+.fa-handshake:before {
+  content: "\f2b5"; }
+
+.fa-handshake-alt:before {
+  content: "\f4c6"; }
+
+.fa-hanukiah:before {
+  content: "\f6e6"; }
+
+.fa-hashtag:before {
+  content: "\f292"; }
+
+.fa-hat-santa:before {
+  content: "\f7a7"; }
+
+.fa-hat-winter:before {
+  content: "\f7a8"; }
+
+.fa-hat-witch:before {
+  content: "\f6e7"; }
+
+.fa-hat-wizard:before {
+  content: "\f6e8"; }
+
+.fa-haykal:before {
+  content: "\f666"; }
+
+.fa-hdd:before {
+  content: "\f0a0"; }
+
+.fa-head-side:before {
+  content: "\f6e9"; }
+
+.fa-head-vr:before {
+  content: "\f6ea"; }
+
+.fa-heading:before {
+  content: "\f1dc"; }
+
+.fa-headphones:before {
+  content: "\f025"; }
+
+.fa-headphones-alt:before {
+  content: "\f58f"; }
+
+.fa-headset:before {
+  content: "\f590"; }
+
+.fa-heart:before {
+  content: "\f004"; }
+
+.fa-heart-broken:before {
+  content: "\f7a9"; }
+
+.fa-heart-circle:before {
+  content: "\f4c7"; }
+
+.fa-heart-rate:before {
+  content: "\f5f8"; }
+
+.fa-heart-square:before {
+  content: "\f4c8"; }
+
+.fa-heartbeat:before {
+  content: "\f21e"; }
+
+.fa-helicopter:before {
+  content: "\f533"; }
+
+.fa-helmet-battle:before {
+  content: "\f6eb"; }
+
+.fa-hexagon:before {
+  content: "\f312"; }
+
+.fa-highlighter:before {
+  content: "\f591"; }
+
+.fa-hiking:before {
+  content: "\f6ec"; }
+
+.fa-hippo:before {
+  content: "\f6ed"; }
+
+.fa-hips:before {
+  content: "\f452"; }
+
+.fa-hire-a-helper:before {
+  content: "\f3b0"; }
+
+.fa-history:before {
+  content: "\f1da"; }
+
+.fa-hockey-mask:before {
+  content: "\f6ee"; }
+
+.fa-hockey-puck:before {
+  content: "\f453"; }
+
+.fa-hockey-sticks:before {
+  content: "\f454"; }
+
+.fa-holly-berry:before {
+  content: "\f7aa"; }
+
+.fa-home:before {
+  content: "\f015"; }
+
+.fa-home-heart:before {
+  content: "\f4c9"; }
+
+.fa-hood-cloak:before {
+  content: "\f6ef"; }
+
+.fa-hooli:before {
+  content: "\f427"; }
+
+.fa-hornbill:before {
+  content: "\f592"; }
+
+.fa-horse:before {
+  content: "\f6f0"; }
+
+.fa-horse-head:before {
+  content: "\f7ab"; }
+
+.fa-hospital:before {
+  content: "\f0f8"; }
+
+.fa-hospital-alt:before {
+  content: "\f47d"; }
+
+.fa-hospital-symbol:before {
+  content: "\f47e"; }
+
+.fa-hot-tub:before {
+  content: "\f593"; }
+
+.fa-hotel:before {
+  content: "\f594"; }
+
+.fa-hotjar:before {
+  content: "\f3b1"; }
+
+.fa-hourglass:before {
+  content: "\f254"; }
+
+.fa-hourglass-end:before {
+  content: "\f253"; }
+
+.fa-hourglass-half:before {
+  content: "\f252"; }
+
+.fa-hourglass-start:before {
+  content: "\f251"; }
+
+.fa-house-damage:before {
+  content: "\f6f1"; }
+
+.fa-house-flood:before {
+  content: "\f74f"; }
+
+.fa-houzz:before {
+  content: "\f27c"; }
+
+.fa-hryvnia:before {
+  content: "\f6f2"; }
+
+.fa-html5:before {
+  content: "\f13b"; }
+
+.fa-hubspot:before {
+  content: "\f3b2"; }
+
+.fa-humidity:before {
+  content: "\f750"; }
+
+.fa-hurricane:before {
+  content: "\f751"; }
+
+.fa-i-cursor:before {
+  content: "\f246"; }
+
+.fa-ice-skate:before {
+  content: "\f7ac"; }
+
+.fa-icicles:before {
+  content: "\f7ad"; }
+
+.fa-id-badge:before {
+  content: "\f2c1"; }
+
+.fa-id-card:before {
+  content: "\f2c2"; }
+
+.fa-id-card-alt:before {
+  content: "\f47f"; }
+
+.fa-igloo:before {
+  content: "\f7ae"; }
+
+.fa-image:before {
+  content: "\f03e"; }
+
+.fa-images:before {
+  content: "\f302"; }
+
+.fa-imdb:before {
+  content: "\f2d8"; }
+
+.fa-inbox:before {
+  content: "\f01c"; }
+
+.fa-inbox-in:before {
+  content: "\f310"; }
+
+.fa-inbox-out:before {
+  content: "\f311"; }
+
+.fa-indent:before {
+  content: "\f03c"; }
+
+.fa-industry:before {
+  content: "\f275"; }
+
+.fa-industry-alt:before {
+  content: "\f3b3"; }
+
+.fa-infinity:before {
+  content: "\f534"; }
+
+.fa-info:before {
+  content: "\f129"; }
+
+.fa-info-circle:before {
+  content: "\f05a"; }
+
+.fa-info-square:before {
+  content: "\f30f"; }
+
+.fa-inhaler:before {
+  content: "\f5f9"; }
+
+.fa-instagram:before {
+  content: "\f16d"; }
+
+.fa-integral:before {
+  content: "\f667"; }
+
+.fa-intercom:before {
+  content: "\f7af"; }
+
+.fa-internet-explorer:before {
+  content: "\f26b"; }
+
+.fa-intersection:before {
+  content: "\f668"; }
+
+.fa-inventory:before {
+  content: "\f480"; }
+
+.fa-invision:before {
+  content: "\f7b0"; }
+
+.fa-ioxhost:before {
+  content: "\f208"; }
+
+.fa-italic:before {
+  content: "\f033"; }
+
+.fa-itunes:before {
+  content: "\f3b4"; }
+
+.fa-itunes-note:before {
+  content: "\f3b5"; }
+
+.fa-jack-o-lantern:before {
+  content: "\f30e"; }
+
+.fa-java:before {
+  content: "\f4e4"; }
+
+.fa-jedi:before {
+  content: "\f669"; }
+
+.fa-jedi-order:before {
+  content: "\f50e"; }
+
+.fa-jenkins:before {
+  content: "\f3b6"; }
+
+.fa-jira:before {
+  content: "\f7b1"; }
+
+.fa-joget:before {
+  content: "\f3b7"; }
+
+.fa-joint:before {
+  content: "\f595"; }
+
+.fa-joomla:before {
+  content: "\f1aa"; }
+
+.fa-journal-whills:before {
+  content: "\f66a"; }
+
+.fa-js:before {
+  content: "\f3b8"; }
+
+.fa-js-square:before {
+  content: "\f3b9"; }
+
+.fa-jsfiddle:before {
+  content: "\f1cc"; }
+
+.fa-kaaba:before {
+  content: "\f66b"; }
+
+.fa-kaggle:before {
+  content: "\f5fa"; }
+
+.fa-key:before {
+  content: "\f084"; }
+
+.fa-key-skeleton:before {
+  content: "\f6f3"; }
+
+.fa-keybase:before {
+  content: "\f4f5"; }
+
+.fa-keyboard:before {
+  content: "\f11c"; }
+
+.fa-keycdn:before {
+  content: "\f3ba"; }
+
+.fa-keynote:before {
+  content: "\f66c"; }
+
+.fa-khanda:before {
+  content: "\f66d"; }
+
+.fa-kickstarter:before {
+  content: "\f3bb"; }
+
+.fa-kickstarter-k:before {
+  content: "\f3bc"; }
+
+.fa-kidneys:before {
+  content: "\f5fb"; }
+
+.fa-kiss:before {
+  content: "\f596"; }
+
+.fa-kiss-beam:before {
+  content: "\f597"; }
+
+.fa-kiss-wink-heart:before {
+  content: "\f598"; }
+
+.fa-kite:before {
+  content: "\f6f4"; }
+
+.fa-kiwi-bird:before {
+  content: "\f535"; }
+
+.fa-knife-kitchen:before {
+  content: "\f6f5"; }
+
+.fa-korvue:before {
+  content: "\f42f"; }
+
+.fa-lambda:before {
+  content: "\f66e"; }
+
+.fa-lamp:before {
+  content: "\f4ca"; }
+
+.fa-landmark:before {
+  content: "\f66f"; }
+
+.fa-landmark-alt:before {
+  content: "\f752"; }
+
+.fa-language:before {
+  content: "\f1ab"; }
+
+.fa-laptop:before {
+  content: "\f109"; }
+
+.fa-laptop-code:before {
+  content: "\f5fc"; }
+
+.fa-laravel:before {
+  content: "\f3bd"; }
+
+.fa-lastfm:before {
+  content: "\f202"; }
+
+.fa-lastfm-square:before {
+  content: "\f203"; }
+
+.fa-laugh:before {
+  content: "\f599"; }
+
+.fa-laugh-beam:before {
+  content: "\f59a"; }
+
+.fa-laugh-squint:before {
+  content: "\f59b"; }
+
+.fa-laugh-wink:before {
+  content: "\f59c"; }
+
+.fa-layer-group:before {
+  content: "\f5fd"; }
+
+.fa-layer-minus:before {
+  content: "\f5fe"; }
+
+.fa-layer-plus:before {
+  content: "\f5ff"; }
+
+.fa-leaf:before {
+  content: "\f06c"; }
+
+.fa-leaf-heart:before {
+  content: "\f4cb"; }
+
+.fa-leaf-maple:before {
+  content: "\f6f6"; }
+
+.fa-leaf-oak:before {
+  content: "\f6f7"; }
+
+.fa-leanpub:before {
+  content: "\f212"; }
+
+.fa-lemon:before {
+  content: "\f094"; }
+
+.fa-less:before {
+  content: "\f41d"; }
+
+.fa-less-than:before {
+  content: "\f536"; }
+
+.fa-less-than-equal:before {
+  content: "\f537"; }
+
+.fa-level-down:before {
+  content: "\f149"; }
+
+.fa-level-down-alt:before {
+  content: "\f3be"; }
+
+.fa-level-up:before {
+  content: "\f148"; }
+
+.fa-level-up-alt:before {
+  content: "\f3bf"; }
+
+.fa-life-ring:before {
+  content: "\f1cd"; }
+
+.fa-lightbulb:before {
+  content: "\f0eb"; }
+
+.fa-lightbulb-dollar:before {
+  content: "\f670"; }
+
+.fa-lightbulb-exclamation:before {
+  content: "\f671"; }
+
+.fa-lightbulb-on:before {
+  content: "\f672"; }
+
+.fa-lightbulb-slash:before {
+  content: "\f673"; }
+
+.fa-lights-holiday:before {
+  content: "\f7b2"; }
+
+.fa-line:before {
+  content: "\f3c0"; }
+
+.fa-link:before {
+  content: "\f0c1"; }
+
+.fa-linkedin:before {
+  content: "\f08c"; }
+
+.fa-linkedin-in:before {
+  content: "\f0e1"; }
+
+.fa-linode:before {
+  content: "\f2b8"; }
+
+.fa-linux:before {
+  content: "\f17c"; }
+
+.fa-lips:before {
+  content: "\f600"; }
+
+.fa-lira-sign:before {
+  content: "\f195"; }
+
+.fa-list:before {
+  content: "\f03a"; }
+
+.fa-list-alt:before {
+  content: "\f022"; }
+
+.fa-list-ol:before {
+  content: "\f0cb"; }
+
+.fa-list-ul:before {
+  content: "\f0ca"; }
+
+.fa-location:before {
+  content: "\f601"; }
+
+.fa-location-arrow:before {
+  content: "\f124"; }
+
+.fa-location-circle:before {
+  content: "\f602"; }
+
+.fa-location-slash:before {
+  content: "\f603"; }
+
+.fa-lock:before {
+  content: "\f023"; }
+
+.fa-lock-alt:before {
+  content: "\f30d"; }
+
+.fa-lock-open:before {
+  content: "\f3c1"; }
+
+.fa-lock-open-alt:before {
+  content: "\f3c2"; }
+
+.fa-long-arrow-alt-down:before {
+  content: "\f309"; }
+
+.fa-long-arrow-alt-left:before {
+  content: "\f30a"; }
+
+.fa-long-arrow-alt-right:before {
+  content: "\f30b"; }
+
+.fa-long-arrow-alt-up:before {
+  content: "\f30c"; }
+
+.fa-long-arrow-down:before {
+  content: "\f175"; }
+
+.fa-long-arrow-left:before {
+  content: "\f177"; }
+
+.fa-long-arrow-right:before {
+  content: "\f178"; }
+
+.fa-long-arrow-up:before {
+  content: "\f176"; }
+
+.fa-loveseat:before {
+  content: "\f4cc"; }
+
+.fa-low-vision:before {
+  content: "\f2a8"; }
+
+.fa-luchador:before {
+  content: "\f455"; }
+
+.fa-luggage-cart:before {
+  content: "\f59d"; }
+
+.fa-lungs:before {
+  content: "\f604"; }
+
+.fa-lyft:before {
+  content: "\f3c3"; }
+
+.fa-mace:before {
+  content: "\f6f8"; }
+
+.fa-magento:before {
+  content: "\f3c4"; }
+
+.fa-magic:before {
+  content: "\f0d0"; }
+
+.fa-magnet:before {
+  content: "\f076"; }
+
+.fa-mail-bulk:before {
+  content: "\f674"; }
+
+.fa-mailchimp:before {
+  content: "\f59e"; }
+
+.fa-male:before {
+  content: "\f183"; }
+
+.fa-mandalorian:before {
+  content: "\f50f"; }
+
+.fa-mandolin:before {
+  content: "\f6f9"; }
+
+.fa-map:before {
+  content: "\f279"; }
+
+.fa-map-marked:before {
+  content: "\f59f"; }
+
+.fa-map-marked-alt:before {
+  content: "\f5a0"; }
+
+.fa-map-marker:before {
+  content: "\f041"; }
+
+.fa-map-marker-alt:before {
+  content: "\f3c5"; }
+
+.fa-map-marker-alt-slash:before {
+  content: "\f605"; }
+
+.fa-map-marker-check:before {
+  content: "\f606"; }
+
+.fa-map-marker-edit:before {
+  content: "\f607"; }
+
+.fa-map-marker-exclamation:before {
+  content: "\f608"; }
+
+.fa-map-marker-minus:before {
+  content: "\f609"; }
+
+.fa-map-marker-plus:before {
+  content: "\f60a"; }
+
+.fa-map-marker-question:before {
+  content: "\f60b"; }
+
+.fa-map-marker-slash:before {
+  content: "\f60c"; }
+
+.fa-map-marker-smile:before {
+  content: "\f60d"; }
+
+.fa-map-marker-times:before {
+  content: "\f60e"; }
+
+.fa-map-pin:before {
+  content: "\f276"; }
+
+.fa-map-signs:before {
+  content: "\f277"; }
+
+.fa-markdown:before {
+  content: "\f60f"; }
+
+.fa-marker:before {
+  content: "\f5a1"; }
+
+.fa-mars:before {
+  content: "\f222"; }
+
+.fa-mars-double:before {
+  content: "\f227"; }
+
+.fa-mars-stroke:before {
+  content: "\f229"; }
+
+.fa-mars-stroke-h:before {
+  content: "\f22b"; }
+
+.fa-mars-stroke-v:before {
+  content: "\f22a"; }
+
+.fa-mask:before {
+  content: "\f6fa"; }
+
+.fa-mastodon:before {
+  content: "\f4f6"; }
+
+.fa-maxcdn:before {
+  content: "\f136"; }
+
+.fa-medal:before {
+  content: "\f5a2"; }
+
+.fa-medapps:before {
+  content: "\f3c6"; }
+
+.fa-medium:before {
+  content: "\f23a"; }
+
+.fa-medium-m:before {
+  content: "\f3c7"; }
+
+.fa-medkit:before {
+  content: "\f0fa"; }
+
+.fa-medrt:before {
+  content: "\f3c8"; }
+
+.fa-meetup:before {
+  content: "\f2e0"; }
+
+.fa-megaphone:before {
+  content: "\f675"; }
+
+.fa-megaport:before {
+  content: "\f5a3"; }
+
+.fa-meh:before {
+  content: "\f11a"; }
+
+.fa-meh-blank:before {
+  content: "\f5a4"; }
+
+.fa-meh-rolling-eyes:before {
+  content: "\f5a5"; }
+
+.fa-memory:before {
+  content: "\f538"; }
+
+.fa-mendeley:before {
+  content: "\f7b3"; }
+
+.fa-menorah:before {
+  content: "\f676"; }
+
+.fa-mercury:before {
+  content: "\f223"; }
+
+.fa-meteor:before {
+  content: "\f753"; }
+
+.fa-microchip:before {
+  content: "\f2db"; }
+
+.fa-microphone:before {
+  content: "\f130"; }
+
+.fa-microphone-alt:before {
+  content: "\f3c9"; }
+
+.fa-microphone-alt-slash:before {
+  content: "\f539"; }
+
+.fa-microphone-slash:before {
+  content: "\f131"; }
+
+.fa-microscope:before {
+  content: "\f610"; }
+
+.fa-microsoft:before {
+  content: "\f3ca"; }
+
+.fa-mind-share:before {
+  content: "\f677"; }
+
+.fa-minus:before {
+  content: "\f068"; }
+
+.fa-minus-circle:before {
+  content: "\f056"; }
+
+.fa-minus-hexagon:before {
+  content: "\f307"; }
+
+.fa-minus-octagon:before {
+  content: "\f308"; }
+
+.fa-minus-square:before {
+  content: "\f146"; }
+
+.fa-mistletoe:before {
+  content: "\f7b4"; }
+
+.fa-mitten:before {
+  content: "\f7b5"; }
+
+.fa-mix:before {
+  content: "\f3cb"; }
+
+.fa-mixcloud:before {
+  content: "\f289"; }
+
+.fa-mizuni:before {
+  content: "\f3cc"; }
+
+.fa-mobile:before {
+  content: "\f10b"; }
+
+.fa-mobile-alt:before {
+  content: "\f3cd"; }
+
+.fa-mobile-android:before {
+  content: "\f3ce"; }
+
+.fa-mobile-android-alt:before {
+  content: "\f3cf"; }
+
+.fa-modx:before {
+  content: "\f285"; }
+
+.fa-monero:before {
+  content: "\f3d0"; }
+
+.fa-money-bill:before {
+  content: "\f0d6"; }
+
+.fa-money-bill-alt:before {
+  content: "\f3d1"; }
+
+.fa-money-bill-wave:before {
+  content: "\f53a"; }
+
+.fa-money-bill-wave-alt:before {
+  content: "\f53b"; }
+
+.fa-money-check:before {
+  content: "\f53c"; }
+
+.fa-money-check-alt:before {
+  content: "\f53d"; }
+
+.fa-monitor-heart-rate:before {
+  content: "\f611"; }
+
+.fa-monkey:before {
+  content: "\f6fb"; }
+
+.fa-monument:before {
+  content: "\f5a6"; }
+
+.fa-moon:before {
+  content: "\f186"; }
+
+.fa-moon-cloud:before {
+  content: "\f754"; }
+
+.fa-moon-stars:before {
+  content: "\f755"; }
+
+.fa-mortar-pestle:before {
+  content: "\f5a7"; }
+
+.fa-mosque:before {
+  content: "\f678"; }
+
+.fa-motorcycle:before {
+  content: "\f21c"; }
+
+.fa-mountain:before {
+  content: "\f6fc"; }
+
+.fa-mountains:before {
+  content: "\f6fd"; }
+
+.fa-mouse-pointer:before {
+  content: "\f245"; }
+
+.fa-mug-hot:before {
+  content: "\f7b6"; }
+
+.fa-mug-marshmallows:before {
+  content: "\f7b7"; }
+
+.fa-music:before {
+  content: "\f001"; }
+
+.fa-napster:before {
+  content: "\f3d2"; }
+
+.fa-narwhal:before {
+  content: "\f6fe"; }
+
+.fa-neos:before {
+  content: "\f612"; }
+
+.fa-network-wired:before {
+  content: "\f6ff"; }
+
+.fa-neuter:before {
+  content: "\f22c"; }
+
+.fa-newspaper:before {
+  content: "\f1ea"; }
+
+.fa-nimblr:before {
+  content: "\f5a8"; }
+
+.fa-nintendo-switch:before {
+  content: "\f418"; }
+
+.fa-node:before {
+  content: "\f419"; }
+
+.fa-node-js:before {
+  content: "\f3d3"; }
+
+.fa-not-equal:before {
+  content: "\f53e"; }
+
+.fa-notes-medical:before {
+  content: "\f481"; }
+
+.fa-npm:before {
+  content: "\f3d4"; }
+
+.fa-ns8:before {
+  content: "\f3d5"; }
+
+.fa-nutritionix:before {
+  content: "\f3d6"; }
+
+.fa-object-group:before {
+  content: "\f247"; }
+
+.fa-object-ungroup:before {
+  content: "\f248"; }
+
+.fa-octagon:before {
+  content: "\f306"; }
+
+.fa-odnoklassniki:before {
+  content: "\f263"; }
+
+.fa-odnoklassniki-square:before {
+  content: "\f264"; }
+
+.fa-oil-can:before {
+  content: "\f613"; }
+
+.fa-oil-temp:before {
+  content: "\f614"; }
+
+.fa-old-republic:before {
+  content: "\f510"; }
+
+.fa-om:before {
+  content: "\f679"; }
+
+.fa-omega:before {
+  content: "\f67a"; }
+
+.fa-opencart:before {
+  content: "\f23d"; }
+
+.fa-openid:before {
+  content: "\f19b"; }
+
+.fa-opera:before {
+  content: "\f26a"; }
+
+.fa-optin-monster:before {
+  content: "\f23c"; }
+
+.fa-ornament:before {
+  content: "\f7b8"; }
+
+.fa-osi:before {
+  content: "\f41a"; }
+
+.fa-otter:before {
+  content: "\f700"; }
+
+.fa-outdent:before {
+  content: "\f03b"; }
+
+.fa-page4:before {
+  content: "\f3d7"; }
+
+.fa-pagelines:before {
+  content: "\f18c"; }
+
+.fa-paint-brush:before {
+  content: "\f1fc"; }
+
+.fa-paint-brush-alt:before {
+  content: "\f5a9"; }
+
+.fa-paint-roller:before {
+  content: "\f5aa"; }
+
+.fa-palette:before {
+  content: "\f53f"; }
+
+.fa-palfed:before {
+  content: "\f3d8"; }
+
+.fa-pallet:before {
+  content: "\f482"; }
+
+.fa-pallet-alt:before {
+  content: "\f483"; }
+
+.fa-paper-plane:before {
+  content: "\f1d8"; }
+
+.fa-paperclip:before {
+  content: "\f0c6"; }
+
+.fa-parachute-box:before {
+  content: "\f4cd"; }
+
+.fa-paragraph:before {
+  content: "\f1dd"; }
+
+.fa-parking:before {
+  content: "\f540"; }
+
+.fa-parking-circle:before {
+  content: "\f615"; }
+
+.fa-parking-circle-slash:before {
+  content: "\f616"; }
+
+.fa-parking-slash:before {
+  content: "\f617"; }
+
+.fa-passport:before {
+  content: "\f5ab"; }
+
+.fa-pastafarianism:before {
+  content: "\f67b"; }
+
+.fa-paste:before {
+  content: "\f0ea"; }
+
+.fa-patreon:before {
+  content: "\f3d9"; }
+
+.fa-pause:before {
+  content: "\f04c"; }
+
+.fa-pause-circle:before {
+  content: "\f28b"; }
+
+.fa-paw:before {
+  content: "\f1b0"; }
+
+.fa-paw-alt:before {
+  content: "\f701"; }
+
+.fa-paw-claws:before {
+  content: "\f702"; }
+
+.fa-paypal:before {
+  content: "\f1ed"; }
+
+.fa-peace:before {
+  content: "\f67c"; }
+
+.fa-pegasus:before {
+  content: "\f703"; }
+
+.fa-pen:before {
+  content: "\f304"; }
+
+.fa-pen-alt:before {
+  content: "\f305"; }
+
+.fa-pen-fancy:before {
+  content: "\f5ac"; }
+
+.fa-pen-nib:before {
+  content: "\f5ad"; }
+
+.fa-pen-square:before {
+  content: "\f14b"; }
+
+.fa-pencil:before {
+  content: "\f040"; }
+
+.fa-pencil-alt:before {
+  content: "\f303"; }
+
+.fa-pencil-paintbrush:before {
+  content: "\f618"; }
+
+.fa-pencil-ruler:before {
+  content: "\f5ae"; }
+
+.fa-pennant:before {
+  content: "\f456"; }
+
+.fa-penny-arcade:before {
+  content: "\f704"; }
+
+.fa-people-carry:before {
+  content: "\f4ce"; }
+
+.fa-percent:before {
+  content: "\f295"; }
+
+.fa-percentage:before {
+  content: "\f541"; }
+
+.fa-periscope:before {
+  content: "\f3da"; }
+
+.fa-person-booth:before {
+  content: "\f756"; }
+
+.fa-person-carry:before {
+  content: "\f4cf"; }
+
+.fa-person-dolly:before {
+  content: "\f4d0"; }
+
+.fa-person-dolly-empty:before {
+  content: "\f4d1"; }
+
+.fa-person-sign:before {
+  content: "\f757"; }
+
+.fa-phabricator:before {
+  content: "\f3db"; }
+
+.fa-phoenix-framework:before {
+  content: "\f3dc"; }
+
+.fa-phoenix-squadron:before {
+  content: "\f511"; }
+
+.fa-phone:before {
+  content: "\f095"; }
+
+.fa-phone-office:before {
+  content: "\f67d"; }
+
+.fa-phone-plus:before {
+  content: "\f4d2"; }
+
+.fa-phone-slash:before {
+  content: "\f3dd"; }
+
+.fa-phone-square:before {
+  content: "\f098"; }
+
+.fa-phone-volume:before {
+  content: "\f2a0"; }
+
+.fa-php:before {
+  content: "\f457"; }
+
+.fa-pi:before {
+  content: "\f67e"; }
+
+.fa-pie:before {
+  content: "\f705"; }
+
+.fa-pied-piper:before {
+  content: "\f2ae"; }
+
+.fa-pied-piper-alt:before {
+  content: "\f1a8"; }
+
+.fa-pied-piper-hat:before {
+  content: "\f4e5"; }
+
+.fa-pied-piper-pp:before {
+  content: "\f1a7"; }
+
+.fa-pig:before {
+  content: "\f706"; }
+
+.fa-piggy-bank:before {
+  content: "\f4d3"; }
+
+.fa-pills:before {
+  content: "\f484"; }
+
+.fa-pinterest:before {
+  content: "\f0d2"; }
+
+.fa-pinterest-p:before {
+  content: "\f231"; }
+
+.fa-pinterest-square:before {
+  content: "\f0d3"; }
+
+.fa-place-of-worship:before {
+  content: "\f67f"; }
+
+.fa-plane:before {
+  content: "\f072"; }
+
+.fa-plane-alt:before {
+  content: "\f3de"; }
+
+.fa-plane-arrival:before {
+  content: "\f5af"; }
+
+.fa-plane-departure:before {
+  content: "\f5b0"; }
+
+.fa-play:before {
+  content: "\f04b"; }
+
+.fa-play-circle:before {
+  content: "\f144"; }
+
+.fa-playstation:before {
+  content: "\f3df"; }
+
+.fa-plug:before {
+  content: "\f1e6"; }
+
+.fa-plus:before {
+  content: "\f067"; }
+
+.fa-plus-circle:before {
+  content: "\f055"; }
+
+.fa-plus-hexagon:before {
+  content: "\f300"; }
+
+.fa-plus-octagon:before {
+  content: "\f301"; }
+
+.fa-plus-square:before {
+  content: "\f0fe"; }
+
+.fa-podcast:before {
+  content: "\f2ce"; }
+
+.fa-podium:before {
+  content: "\f680"; }
+
+.fa-podium-star:before {
+  content: "\f758"; }
+
+.fa-poll:before {
+  content: "\f681"; }
+
+.fa-poll-h:before {
+  content: "\f682"; }
+
+.fa-poll-people:before {
+  content: "\f759"; }
+
+.fa-poo:before {
+  content: "\f2fe"; }
+
+.fa-poo-storm:before {
+  content: "\f75a"; }
+
+.fa-poop:before {
+  content: "\f619"; }
+
+.fa-portrait:before {
+  content: "\f3e0"; }
+
+.fa-pound-sign:before {
+  content: "\f154"; }
+
+.fa-power-off:before {
+  content: "\f011"; }
+
+.fa-pray:before {
+  content: "\f683"; }
+
+.fa-praying-hands:before {
+  content: "\f684"; }
+
+.fa-prescription:before {
+  content: "\f5b1"; }
+
+.fa-prescription-bottle:before {
+  content: "\f485"; }
+
+.fa-prescription-bottle-alt:before {
+  content: "\f486"; }
+
+.fa-presentation:before {
+  content: "\f685"; }
+
+.fa-print:before {
+  content: "\f02f"; }
+
+.fa-print-slash:before {
+  content: "\f686"; }
+
+.fa-procedures:before {
+  content: "\f487"; }
+
+.fa-product-hunt:before {
+  content: "\f288"; }
+
+.fa-project-diagram:before {
+  content: "\f542"; }
+
+.fa-pumpkin:before {
+  content: "\f707"; }
+
+.fa-pushed:before {
+  content: "\f3e1"; }
+
+.fa-puzzle-piece:before {
+  content: "\f12e"; }
+
+.fa-python:before {
+  content: "\f3e2"; }
+
+.fa-qq:before {
+  content: "\f1d6"; }
+
+.fa-qrcode:before {
+  content: "\f029"; }
+
+.fa-question:before {
+  content: "\f128"; }
+
+.fa-question-circle:before {
+  content: "\f059"; }
+
+.fa-question-square:before {
+  content: "\f2fd"; }
+
+.fa-quidditch:before {
+  content: "\f458"; }
+
+.fa-quinscape:before {
+  content: "\f459"; }
+
+.fa-quora:before {
+  content: "\f2c4"; }
+
+.fa-quote-left:before {
+  content: "\f10d"; }
+
+.fa-quote-right:before {
+  content: "\f10e"; }
+
+.fa-quran:before {
+  content: "\f687"; }
+
+.fa-r-project:before {
+  content: "\f4f7"; }
+
+.fa-rabbit:before {
+  content: "\f708"; }
+
+.fa-rabbit-fast:before {
+  content: "\f709"; }
+
+.fa-racquet:before {
+  content: "\f45a"; }
+
+.fa-radiation:before {
+  content: "\f7b9"; }
+
+.fa-radiation-alt:before {
+  content: "\f7ba"; }
+
+.fa-rainbow:before {
+  content: "\f75b"; }
+
+.fa-raindrops:before {
+  content: "\f75c"; }
+
+.fa-ram:before {
+  content: "\f70a"; }
+
+.fa-ramp-loading:before {
+  content: "\f4d4"; }
+
+.fa-random:before {
+  content: "\f074"; }
+
+.fa-raspberry-pi:before {
+  content: "\f7bb"; }
+
+.fa-ravelry:before {
+  content: "\f2d9"; }
+
+.fa-react:before {
+  content: "\f41b"; }
+
+.fa-reacteurope:before {
+  content: "\f75d"; }
+
+.fa-readme:before {
+  content: "\f4d5"; }
+
+.fa-rebel:before {
+  content: "\f1d0"; }
+
+.fa-receipt:before {
+  content: "\f543"; }
+
+.fa-rectangle-landscape:before {
+  content: "\f2fa"; }
+
+.fa-rectangle-portrait:before {
+  content: "\f2fb"; }
+
+.fa-rectangle-wide:before {
+  content: "\f2fc"; }
+
+.fa-recycle:before {
+  content: "\f1b8"; }
+
+.fa-red-river:before {
+  content: "\f3e3"; }
+
+.fa-reddit:before {
+  content: "\f1a1"; }
+
+.fa-reddit-alien:before {
+  content: "\f281"; }
+
+.fa-reddit-square:before {
+  content: "\f1a2"; }
+
+.fa-redhat:before {
+  content: "\f7bc"; }
+
+.fa-redo:before {
+  content: "\f01e"; }
+
+.fa-redo-alt:before {
+  content: "\f2f9"; }
+
+.fa-registered:before {
+  content: "\f25d"; }
+
+.fa-renren:before {
+  content: "\f18b"; }
+
+.fa-repeat:before {
+  content: "\f363"; }
+
+.fa-repeat-1:before {
+  content: "\f365"; }
+
+.fa-repeat-1-alt:before {
+  content: "\f366"; }
+
+.fa-repeat-alt:before {
+  content: "\f364"; }
+
+.fa-reply:before {
+  content: "\f3e5"; }
+
+.fa-reply-all:before {
+  content: "\f122"; }
+
+.fa-replyd:before {
+  content: "\f3e6"; }
+
+.fa-republican:before {
+  content: "\f75e"; }
+
+.fa-researchgate:before {
+  content: "\f4f8"; }
+
+.fa-resolving:before {
+  content: "\f3e7"; }
+
+.fa-restroom:before {
+  content: "\f7bd"; }
+
+.fa-retweet:before {
+  content: "\f079"; }
+
+.fa-retweet-alt:before {
+  content: "\f361"; }
+
+.fa-rev:before {
+  content: "\f5b2"; }
+
+.fa-ribbon:before {
+  content: "\f4d6"; }
+
+.fa-ring:before {
+  content: "\f70b"; }
+
+.fa-road:before {
+  content: "\f018"; }
+
+.fa-robot:before {
+  content: "\f544"; }
+
+.fa-rocket:before {
+  content: "\f135"; }
+
+.fa-rocketchat:before {
+  content: "\f3e8"; }
+
+.fa-rockrms:before {
+  content: "\f3e9"; }
+
+.fa-route:before {
+  content: "\f4d7"; }
+
+.fa-route-highway:before {
+  content: "\f61a"; }
+
+.fa-route-interstate:before {
+  content: "\f61b"; }
+
+.fa-rss:before {
+  content: "\f09e"; }
+
+.fa-rss-square:before {
+  content: "\f143"; }
+
+.fa-ruble-sign:before {
+  content: "\f158"; }
+
+.fa-ruler:before {
+  content: "\f545"; }
+
+.fa-ruler-combined:before {
+  content: "\f546"; }
+
+.fa-ruler-horizontal:before {
+  content: "\f547"; }
+
+.fa-ruler-triangle:before {
+  content: "\f61c"; }
+
+.fa-ruler-vertical:before {
+  content: "\f548"; }
+
+.fa-running:before {
+  content: "\f70c"; }
+
+.fa-rupee-sign:before {
+  content: "\f156"; }
+
+.fa-rv:before {
+  content: "\f7be"; }
+
+.fa-sad-cry:before {
+  content: "\f5b3"; }
+
+.fa-sad-tear:before {
+  content: "\f5b4"; }
+
+.fa-safari:before {
+  content: "\f267"; }
+
+.fa-sass:before {
+  content: "\f41e"; }
+
+.fa-satellite:before {
+  content: "\f7bf"; }
+
+.fa-satellite-dish:before {
+  content: "\f7c0"; }
+
+.fa-save:before {
+  content: "\f0c7"; }
+
+.fa-scalpel:before {
+  content: "\f61d"; }
+
+.fa-scalpel-path:before {
+  content: "\f61e"; }
+
+.fa-scanner:before {
+  content: "\f488"; }
+
+.fa-scanner-keyboard:before {
+  content: "\f489"; }
+
+.fa-scanner-touchscreen:before {
+  content: "\f48a"; }
+
+.fa-scarecrow:before {
+  content: "\f70d"; }
+
+.fa-scarf:before {
+  content: "\f7c1"; }
+
+.fa-schlix:before {
+  content: "\f3ea"; }
+
+.fa-school:before {
+  content: "\f549"; }
+
+.fa-screwdriver:before {
+  content: "\f54a"; }
+
+.fa-scribd:before {
+  content: "\f28a"; }
+
+.fa-scroll:before {
+  content: "\f70e"; }
+
+.fa-scroll-old:before {
+  content: "\f70f"; }
+
+.fa-scrubber:before {
+  content: "\f2f8"; }
+
+.fa-scythe:before {
+  content: "\f710"; }
+
+.fa-sd-card:before {
+  content: "\f7c2"; }
+
+.fa-search:before {
+  content: "\f002"; }
+
+.fa-search-dollar:before {
+  content: "\f688"; }
+
+.fa-search-location:before {
+  content: "\f689"; }
+
+.fa-search-minus:before {
+  content: "\f010"; }
+
+.fa-search-plus:before {
+  content: "\f00e"; }
+
+.fa-searchengin:before {
+  content: "\f3eb"; }
+
+.fa-seedling:before {
+  content: "\f4d8"; }
+
+.fa-sellcast:before {
+  content: "\f2da"; }
+
+.fa-sellsy:before {
+  content: "\f213"; }
+
+.fa-server:before {
+  content: "\f233"; }
+
+.fa-servicestack:before {
+  content: "\f3ec"; }
+
+.fa-shapes:before {
+  content: "\f61f"; }
+
+.fa-share:before {
+  content: "\f064"; }
+
+.fa-share-all:before {
+  content: "\f367"; }
+
+.fa-share-alt:before {
+  content: "\f1e0"; }
+
+.fa-share-alt-square:before {
+  content: "\f1e1"; }
+
+.fa-share-square:before {
+  content: "\f14d"; }
+
+.fa-sheep:before {
+  content: "\f711"; }
+
+.fa-shekel-sign:before {
+  content: "\f20b"; }
+
+.fa-shield:before {
+  content: "\f132"; }
+
+.fa-shield-alt:before {
+  content: "\f3ed"; }
+
+.fa-shield-check:before {
+  content: "\f2f7"; }
+
+.fa-shield-cross:before {
+  content: "\f712"; }
+
+.fa-ship:before {
+  content: "\f21a"; }
+
+.fa-shipping-fast:before {
+  content: "\f48b"; }
+
+.fa-shipping-timed:before {
+  content: "\f48c"; }
+
+.fa-shirtsinbulk:before {
+  content: "\f214"; }
+
+.fa-shoe-prints:before {
+  content: "\f54b"; }
+
+.fa-shopping-bag:before {
+  content: "\f290"; }
+
+.fa-shopping-basket:before {
+  content: "\f291"; }
+
+.fa-shopping-cart:before {
+  content: "\f07a"; }
+
+.fa-shopware:before {
+  content: "\f5b5"; }
+
+.fa-shovel:before {
+  content: "\f713"; }
+
+.fa-shovel-snow:before {
+  content: "\f7c3"; }
+
+.fa-shower:before {
+  content: "\f2cc"; }
+
+.fa-shredder:before {
+  content: "\f68a"; }
+
+.fa-shuttle-van:before {
+  content: "\f5b6"; }
+
+.fa-shuttlecock:before {
+  content: "\f45b"; }
+
+.fa-sigma:before {
+  content: "\f68b"; }
+
+.fa-sign:before {
+  content: "\f4d9"; }
+
+.fa-sign-in:before {
+  content: "\f090"; }
+
+.fa-sign-in-alt:before {
+  content: "\f2f6"; }
+
+.fa-sign-language:before {
+  content: "\f2a7"; }
+
+.fa-sign-out:before {
+  content: "\f08b"; }
+
+.fa-sign-out-alt:before {
+  content: "\f2f5"; }
+
+.fa-signal:before {
+  content: "\f012"; }
+
+.fa-signal-1:before {
+  content: "\f68c"; }
+
+.fa-signal-2:before {
+  content: "\f68d"; }
+
+.fa-signal-3:before {
+  content: "\f68e"; }
+
+.fa-signal-4:before {
+  content: "\f68f"; }
+
+.fa-signal-alt:before {
+  content: "\f690"; }
+
+.fa-signal-alt-1:before {
+  content: "\f691"; }
+
+.fa-signal-alt-2:before {
+  content: "\f692"; }
+
+.fa-signal-alt-3:before {
+  content: "\f693"; }
+
+.fa-signal-alt-slash:before {
+  content: "\f694"; }
+
+.fa-signal-slash:before {
+  content: "\f695"; }
+
+.fa-signature:before {
+  content: "\f5b7"; }
+
+.fa-sim-card:before {
+  content: "\f7c4"; }
+
+.fa-simplybuilt:before {
+  content: "\f215"; }
+
+.fa-sistrix:before {
+  content: "\f3ee"; }
+
+.fa-sitemap:before {
+  content: "\f0e8"; }
+
+.fa-sith:before {
+  content: "\f512"; }
+
+.fa-skating:before {
+  content: "\f7c5"; }
+
+.fa-skeleton:before {
+  content: "\f620"; }
+
+.fa-sketch:before {
+  content: "\f7c6"; }
+
+.fa-ski-jump:before {
+  content: "\f7c7"; }
+
+.fa-ski-lift:before {
+  content: "\f7c8"; }
+
+.fa-skiing:before {
+  content: "\f7c9"; }
+
+.fa-skiing-nordic:before {
+  content: "\f7ca"; }
+
+.fa-skull:before {
+  content: "\f54c"; }
+
+.fa-skull-crossbones:before {
+  content: "\f714"; }
+
+.fa-skyatlas:before {
+  content: "\f216"; }
+
+.fa-skype:before {
+  content: "\f17e"; }
+
+.fa-slack:before {
+  content: "\f198"; }
+
+.fa-slack-hash:before {
+  content: "\f3ef"; }
+
+.fa-slash:before {
+  content: "\f715"; }
+
+.fa-sledding:before {
+  content: "\f7cb"; }
+
+.fa-sleigh:before {
+  content: "\f7cc"; }
+
+.fa-sliders-h:before {
+  content: "\f1de"; }
+
+.fa-sliders-h-square:before {
+  content: "\f3f0"; }
+
+.fa-sliders-v:before {
+  content: "\f3f1"; }
+
+.fa-sliders-v-square:before {
+  content: "\f3f2"; }
+
+.fa-slideshare:before {
+  content: "\f1e7"; }
+
+.fa-smile:before {
+  content: "\f118"; }
+
+.fa-smile-beam:before {
+  content: "\f5b8"; }
+
+.fa-smile-plus:before {
+  content: "\f5b9"; }
+
+.fa-smile-wink:before {
+  content: "\f4da"; }
+
+.fa-smog:before {
+  content: "\f75f"; }
+
+.fa-smoke:before {
+  content: "\f760"; }
+
+.fa-smoking:before {
+  content: "\f48d"; }
+
+.fa-smoking-ban:before {
+  content: "\f54d"; }
+
+.fa-sms:before {
+  content: "\f7cd"; }
+
+.fa-snake:before {
+  content: "\f716"; }
+
+.fa-snapchat:before {
+  content: "\f2ab"; }
+
+.fa-snapchat-ghost:before {
+  content: "\f2ac"; }
+
+.fa-snapchat-square:before {
+  content: "\f2ad"; }
+
+.fa-snow-blowing:before {
+  content: "\f761"; }
+
+.fa-snowboarding:before {
+  content: "\f7ce"; }
+
+.fa-snowflake:before {
+  content: "\f2dc"; }
+
+.fa-snowflakes:before {
+  content: "\f7cf"; }
+
+.fa-snowman:before {
+  content: "\f7d0"; }
+
+.fa-snowmobile:before {
+  content: "\f7d1"; }
+
+.fa-snowplow:before {
+  content: "\f7d2"; }
+
+.fa-socks:before {
+  content: "\f696"; }
+
+.fa-solar-panel:before {
+  content: "\f5ba"; }
+
+.fa-sort:before {
+  content: "\f0dc"; }
+
+.fa-sort-alpha-down:before {
+  content: "\f15d"; }
+
+.fa-sort-alpha-up:before {
+  content: "\f15e"; }
+
+.fa-sort-amount-down:before {
+  content: "\f160"; }
+
+.fa-sort-amount-up:before {
+  content: "\f161"; }
+
+.fa-sort-down:before {
+  content: "\f0dd"; }
+
+.fa-sort-numeric-down:before {
+  content: "\f162"; }
+
+.fa-sort-numeric-up:before {
+  content: "\f163"; }
+
+.fa-sort-up:before {
+  content: "\f0de"; }
+
+.fa-soundcloud:before {
+  content: "\f1be"; }
+
+.fa-sourcetree:before {
+  content: "\f7d3"; }
+
+.fa-spa:before {
+  content: "\f5bb"; }
+
+.fa-space-shuttle:before {
+  content: "\f197"; }
+
+.fa-spade:before {
+  content: "\f2f4"; }
+
+.fa-speakap:before {
+  content: "\f3f3"; }
+
+.fa-spider:before {
+  content: "\f717"; }
+
+.fa-spider-black-widow:before {
+  content: "\f718"; }
+
+.fa-spider-web:before {
+  content: "\f719"; }
+
+.fa-spinner:before {
+  content: "\f110"; }
+
+.fa-spinner-third:before {
+  content: "\f3f4"; }
+
+.fa-splotch:before {
+  content: "\f5bc"; }
+
+.fa-spotify:before {
+  content: "\f1bc"; }
+
+.fa-spray-can:before {
+  content: "\f5bd"; }
+
+.fa-square:before {
+  content: "\f0c8"; }
+
+.fa-square-full:before {
+  content: "\f45c"; }
+
+.fa-square-root:before {
+  content: "\f697"; }
+
+.fa-square-root-alt:before {
+  content: "\f698"; }
+
+.fa-squarespace:before {
+  content: "\f5be"; }
+
+.fa-squirrel:before {
+  content: "\f71a"; }
+
+.fa-stack-exchange:before {
+  content: "\f18d"; }
+
+.fa-stack-overflow:before {
+  content: "\f16c"; }
+
+.fa-staff:before {
+  content: "\f71b"; }
+
+.fa-stamp:before {
+  content: "\f5bf"; }
+
+.fa-star:before {
+  content: "\f005"; }
+
+.fa-star-and-crescent:before {
+  content: "\f699"; }
+
+.fa-star-christmas:before {
+  content: "\f7d4"; }
+
+.fa-star-exclamation:before {
+  content: "\f2f3"; }
+
+.fa-star-half:before {
+  content: "\f089"; }
+
+.fa-star-half-alt:before {
+  content: "\f5c0"; }
+
+.fa-star-of-david:before {
+  content: "\f69a"; }
+
+.fa-star-of-life:before {
+  content: "\f621"; }
+
+.fa-stars:before {
+  content: "\f762"; }
+
+.fa-staylinked:before {
+  content: "\f3f5"; }
+
+.fa-steam:before {
+  content: "\f1b6"; }
+
+.fa-steam-square:before {
+  content: "\f1b7"; }
+
+.fa-steam-symbol:before {
+  content: "\f3f6"; }
+
+.fa-steering-wheel:before {
+  content: "\f622"; }
+
+.fa-step-backward:before {
+  content: "\f048"; }
+
+.fa-step-forward:before {
+  content: "\f051"; }
+
+.fa-stethoscope:before {
+  content: "\f0f1"; }
+
+.fa-sticker-mule:before {
+  content: "\f3f7"; }
+
+.fa-sticky-note:before {
+  content: "\f249"; }
+
+.fa-stocking:before {
+  content: "\f7d5"; }
+
+.fa-stomach:before {
+  content: "\f623"; }
+
+.fa-stop:before {
+  content: "\f04d"; }
+
+.fa-stop-circle:before {
+  content: "\f28d"; }
+
+.fa-stopwatch:before {
+  content: "\f2f2"; }
+
+.fa-store:before {
+  content: "\f54e"; }
+
+.fa-store-alt:before {
+  content: "\f54f"; }
+
+.fa-strava:before {
+  content: "\f428"; }
+
+.fa-stream:before {
+  content: "\f550"; }
+
+.fa-street-view:before {
+  content: "\f21d"; }
+
+.fa-strikethrough:before {
+  content: "\f0cc"; }
+
+.fa-stripe:before {
+  content: "\f429"; }
+
+.fa-stripe-s:before {
+  content: "\f42a"; }
+
+.fa-stroopwafel:before {
+  content: "\f551"; }
+
+.fa-studiovinari:before {
+  content: "\f3f8"; }
+
+.fa-stumbleupon:before {
+  content: "\f1a4"; }
+
+.fa-stumbleupon-circle:before {
+  content: "\f1a3"; }
+
+.fa-subscript:before {
+  content: "\f12c"; }
+
+.fa-subway:before {
+  content: "\f239"; }
+
+.fa-suitcase:before {
+  content: "\f0f2"; }
+
+.fa-suitcase-rolling:before {
+  content: "\f5c1"; }
+
+.fa-sun:before {
+  content: "\f185"; }
+
+.fa-sun-cloud:before {
+  content: "\f763"; }
+
+.fa-sun-dust:before {
+  content: "\f764"; }
+
+.fa-sun-haze:before {
+  content: "\f765"; }
+
+.fa-sunrise:before {
+  content: "\f766"; }
+
+.fa-sunset:before {
+  content: "\f767"; }
+
+.fa-superpowers:before {
+  content: "\f2dd"; }
+
+.fa-superscript:before {
+  content: "\f12b"; }
+
+.fa-supple:before {
+  content: "\f3f9"; }
+
+.fa-surprise:before {
+  content: "\f5c2"; }
+
+.fa-suse:before {
+  content: "\f7d6"; }
+
+.fa-swatchbook:before {
+  content: "\f5c3"; }
+
+.fa-swimmer:before {
+  content: "\f5c4"; }
+
+.fa-swimming-pool:before {
+  content: "\f5c5"; }
+
+.fa-sword:before {
+  content: "\f71c"; }
+
+.fa-swords:before {
+  content: "\f71d"; }
+
+.fa-synagogue:before {
+  content: "\f69b"; }
+
+.fa-sync:before {
+  content: "\f021"; }
+
+.fa-sync-alt:before {
+  content: "\f2f1"; }
+
+.fa-syringe:before {
+  content: "\f48e"; }
+
+.fa-table:before {
+  content: "\f0ce"; }
+
+.fa-table-tennis:before {
+  content: "\f45d"; }
+
+.fa-tablet:before {
+  content: "\f10a"; }
+
+.fa-tablet-alt:before {
+  content: "\f3fa"; }
+
+.fa-tablet-android:before {
+  content: "\f3fb"; }
+
+.fa-tablet-android-alt:before {
+  content: "\f3fc"; }
+
+.fa-tablet-rugged:before {
+  content: "\f48f"; }
+
+.fa-tablets:before {
+  content: "\f490"; }
+
+.fa-tachometer:before {
+  content: "\f0e4"; }
+
+.fa-tachometer-alt:before {
+  content: "\f3fd"; }
+
+.fa-tachometer-alt-average:before {
+  content: "\f624"; }
+
+.fa-tachometer-alt-fast:before {
+  content: "\f625"; }
+
+.fa-tachometer-alt-fastest:before {
+  content: "\f626"; }
+
+.fa-tachometer-alt-slow:before {
+  content: "\f627"; }
+
+.fa-tachometer-alt-slowest:before {
+  content: "\f628"; }
+
+.fa-tachometer-average:before {
+  content: "\f629"; }
+
+.fa-tachometer-fast:before {
+  content: "\f62a"; }
+
+.fa-tachometer-fastest:before {
+  content: "\f62b"; }
+
+.fa-tachometer-slow:before {
+  content: "\f62c"; }
+
+.fa-tachometer-slowest:before {
+  content: "\f62d"; }
+
+.fa-tag:before {
+  content: "\f02b"; }
+
+.fa-tags:before {
+  content: "\f02c"; }
+
+.fa-tally:before {
+  content: "\f69c"; }
+
+.fa-tape:before {
+  content: "\f4db"; }
+
+.fa-tasks:before {
+  content: "\f0ae"; }
+
+.fa-taxi:before {
+  content: "\f1ba"; }
+
+.fa-teamspeak:before {
+  content: "\f4f9"; }
+
+.fa-teeth:before {
+  content: "\f62e"; }
+
+.fa-teeth-open:before {
+  content: "\f62f"; }
+
+.fa-telegram:before {
+  content: "\f2c6"; }
+
+.fa-telegram-plane:before {
+  content: "\f3fe"; }
+
+.fa-temperature-frigid:before {
+  content: "\f768"; }
+
+.fa-temperature-high:before {
+  content: "\f769"; }
+
+.fa-temperature-hot:before {
+  content: "\f76a"; }
+
+.fa-temperature-low:before {
+  content: "\f76b"; }
+
+.fa-tencent-weibo:before {
+  content: "\f1d5"; }
+
+.fa-tenge:before {
+  content: "\f7d7"; }
+
+.fa-tennis-ball:before {
+  content: "\f45e"; }
+
+.fa-terminal:before {
+  content: "\f120"; }
+
+.fa-text-height:before {
+  content: "\f034"; }
+
+.fa-text-width:before {
+  content: "\f035"; }
+
+.fa-th:before {
+  content: "\f00a"; }
+
+.fa-th-large:before {
+  content: "\f009"; }
+
+.fa-th-list:before {
+  content: "\f00b"; }
+
+.fa-the-red-yeti:before {
+  content: "\f69d"; }
+
+.fa-theater-masks:before {
+  content: "\f630"; }
+
+.fa-themeco:before {
+  content: "\f5c6"; }
+
+.fa-themeisle:before {
+  content: "\f2b2"; }
+
+.fa-thermometer:before {
+  content: "\f491"; }
+
+.fa-thermometer-empty:before {
+  content: "\f2cb"; }
+
+.fa-thermometer-full:before {
+  content: "\f2c7"; }
+
+.fa-thermometer-half:before {
+  content: "\f2c9"; }
+
+.fa-thermometer-quarter:before {
+  content: "\f2ca"; }
+
+.fa-thermometer-three-quarters:before {
+  content: "\f2c8"; }
+
+.fa-theta:before {
+  content: "\f69e"; }
+
+.fa-think-peaks:before {
+  content: "\f731"; }
+
+.fa-thumbs-down:before {
+  content: "\f165"; }
+
+.fa-thumbs-up:before {
+  content: "\f164"; }
+
+.fa-thumbtack:before {
+  content: "\f08d"; }
+
+.fa-thunderstorm:before {
+  content: "\f76c"; }
+
+.fa-thunderstorm-moon:before {
+  content: "\f76d"; }
+
+.fa-thunderstorm-sun:before {
+  content: "\f76e"; }
+
+.fa-ticket:before {
+  content: "\f145"; }
+
+.fa-ticket-alt:before {
+  content: "\f3ff"; }
+
+.fa-tilde:before {
+  content: "\f69f"; }
+
+.fa-times:before {
+  content: "\f00d"; }
+
+.fa-times-circle:before {
+  content: "\f057"; }
+
+.fa-times-hexagon:before {
+  content: "\f2ee"; }
+
+.fa-times-octagon:before {
+  content: "\f2f0"; }
+
+.fa-times-square:before {
+  content: "\f2d3"; }
+
+.fa-tint:before {
+  content: "\f043"; }
+
+.fa-tint-slash:before {
+  content: "\f5c7"; }
+
+.fa-tire:before {
+  content: "\f631"; }
+
+.fa-tire-flat:before {
+  content: "\f632"; }
+
+.fa-tire-pressure-warning:before {
+  content: "\f633"; }
+
+.fa-tire-rugged:before {
+  content: "\f634"; }
+
+.fa-tired:before {
+  content: "\f5c8"; }
+
+.fa-toggle-off:before {
+  content: "\f204"; }
+
+.fa-toggle-on:before {
+  content: "\f205"; }
+
+.fa-toilet:before {
+  content: "\f7d8"; }
+
+.fa-toilet-paper:before {
+  content: "\f71e"; }
+
+.fa-toilet-paper-alt:before {
+  content: "\f71f"; }
+
+.fa-tombstone:before {
+  content: "\f720"; }
+
+.fa-tombstone-alt:before {
+  content: "\f721"; }
+
+.fa-toolbox:before {
+  content: "\f552"; }
+
+.fa-tools:before {
+  content: "\f7d9"; }
+
+.fa-tooth:before {
+  content: "\f5c9"; }
+
+.fa-toothbrush:before {
+  content: "\f635"; }
+
+.fa-torah:before {
+  content: "\f6a0"; }
+
+.fa-torii-gate:before {
+  content: "\f6a1"; }
+
+.fa-tornado:before {
+  content: "\f76f"; }
+
+.fa-tractor:before {
+  content: "\f722"; }
+
+.fa-trade-federation:before {
+  content: "\f513"; }
+
+.fa-trademark:before {
+  content: "\f25c"; }
+
+.fa-traffic-cone:before {
+  content: "\f636"; }
+
+.fa-traffic-light:before {
+  content: "\f637"; }
+
+.fa-traffic-light-go:before {
+  content: "\f638"; }
+
+.fa-traffic-light-slow:before {
+  content: "\f639"; }
+
+.fa-traffic-light-stop:before {
+  content: "\f63a"; }
+
+.fa-train:before {
+  content: "\f238"; }
+
+.fa-tram:before {
+  content: "\f7da"; }
+
+.fa-transgender:before {
+  content: "\f224"; }
+
+.fa-transgender-alt:before {
+  content: "\f225"; }
+
+.fa-trash:before {
+  content: "\f1f8"; }
+
+.fa-trash-alt:before {
+  content: "\f2ed"; }
+
+.fa-treasure-chest:before {
+  content: "\f723"; }
+
+.fa-tree:before {
+  content: "\f1bb"; }
+
+.fa-tree-alt:before {
+  content: "\f400"; }
+
+.fa-tree-christmas:before {
+  content: "\f7db"; }
+
+.fa-tree-decorated:before {
+  content: "\f7dc"; }
+
+.fa-tree-large:before {
+  content: "\f7dd"; }
+
+.fa-trees:before {
+  content: "\f724"; }
+
+.fa-trello:before {
+  content: "\f181"; }
+
+.fa-triangle:before {
+  content: "\f2ec"; }
+
+.fa-tripadvisor:before {
+  content: "\f262"; }
+
+.fa-trophy:before {
+  content: "\f091"; }
+
+.fa-trophy-alt:before {
+  content: "\f2eb"; }
+
+.fa-truck:before {
+  content: "\f0d1"; }
+
+.fa-truck-container:before {
+  content: "\f4dc"; }
+
+.fa-truck-couch:before {
+  content: "\f4dd"; }
+
+.fa-truck-loading:before {
+  content: "\f4de"; }
+
+.fa-truck-monster:before {
+  content: "\f63b"; }
+
+.fa-truck-moving:before {
+  content: "\f4df"; }
+
+.fa-truck-pickup:before {
+  content: "\f63c"; }
+
+.fa-truck-plow:before {
+  content: "\f7de"; }
+
+.fa-truck-ramp:before {
+  content: "\f4e0"; }
+
+.fa-tshirt:before {
+  content: "\f553"; }
+
+.fa-tty:before {
+  content: "\f1e4"; }
+
+.fa-tumblr:before {
+  content: "\f173"; }
+
+.fa-tumblr-square:before {
+  content: "\f174"; }
+
+.fa-turkey:before {
+  content: "\f725"; }
+
+.fa-turtle:before {
+  content: "\f726"; }
+
+.fa-tv:before {
+  content: "\f26c"; }
+
+.fa-tv-retro:before {
+  content: "\f401"; }
+
+.fa-twitch:before {
+  content: "\f1e8"; }
+
+.fa-twitter:before {
+  content: "\f099"; }
+
+.fa-twitter-square:before {
+  content: "\f081"; }
+
+.fa-typo3:before {
+  content: "\f42b"; }
+
+.fa-uber:before {
+  content: "\f402"; }
+
+.fa-ubuntu:before {
+  content: "\f7df"; }
+
+.fa-uikit:before {
+  content: "\f403"; }
+
+.fa-umbrella:before {
+  content: "\f0e9"; }
+
+.fa-umbrella-beach:before {
+  content: "\f5ca"; }
+
+.fa-underline:before {
+  content: "\f0cd"; }
+
+.fa-undo:before {
+  content: "\f0e2"; }
+
+.fa-undo-alt:before {
+  content: "\f2ea"; }
+
+.fa-unicorn:before {
+  content: "\f727"; }
+
+.fa-union:before {
+  content: "\f6a2"; }
+
+.fa-uniregistry:before {
+  content: "\f404"; }
+
+.fa-universal-access:before {
+  content: "\f29a"; }
+
+.fa-university:before {
+  content: "\f19c"; }
+
+.fa-unlink:before {
+  content: "\f127"; }
+
+.fa-unlock:before {
+  content: "\f09c"; }
+
+.fa-unlock-alt:before {
+  content: "\f13e"; }
+
+.fa-untappd:before {
+  content: "\f405"; }
+
+.fa-upload:before {
+  content: "\f093"; }
+
+.fa-ups:before {
+  content: "\f7e0"; }
+
+.fa-usb:before {
+  content: "\f287"; }
+
+.fa-usd-circle:before {
+  content: "\f2e8"; }
+
+.fa-usd-square:before {
+  content: "\f2e9"; }
+
+.fa-user:before {
+  content: "\f007"; }
+
+.fa-user-alt:before {
+  content: "\f406"; }
+
+.fa-user-alt-slash:before {
+  content: "\f4fa"; }
+
+.fa-user-astronaut:before {
+  content: "\f4fb"; }
+
+.fa-user-chart:before {
+  content: "\f6a3"; }
+
+.fa-user-check:before {
+  content: "\f4fc"; }
+
+.fa-user-circle:before {
+  content: "\f2bd"; }
+
+.fa-user-clock:before {
+  content: "\f4fd"; }
+
+.fa-user-cog:before {
+  content: "\f4fe"; }
+
+.fa-user-crown:before {
+  content: "\f6a4"; }
+
+.fa-user-edit:before {
+  content: "\f4ff"; }
+
+.fa-user-friends:before {
+  content: "\f500"; }
+
+.fa-user-graduate:before {
+  content: "\f501"; }
+
+.fa-user-injured:before {
+  content: "\f728"; }
+
+.fa-user-lock:before {
+  content: "\f502"; }
+
+.fa-user-md:before {
+  content: "\f0f0"; }
+
+.fa-user-minus:before {
+  content: "\f503"; }
+
+.fa-user-ninja:before {
+  content: "\f504"; }
+
+.fa-user-plus:before {
+  content: "\f234"; }
+
+.fa-user-secret:before {
+  content: "\f21b"; }
+
+.fa-user-shield:before {
+  content: "\f505"; }
+
+.fa-user-slash:before {
+  content: "\f506"; }
+
+.fa-user-tag:before {
+  content: "\f507"; }
+
+.fa-user-tie:before {
+  content: "\f508"; }
+
+.fa-user-times:before {
+  content: "\f235"; }
+
+.fa-users:before {
+  content: "\f0c0"; }
+
+.fa-users-class:before {
+  content: "\f63d"; }
+
+.fa-users-cog:before {
+  content: "\f509"; }
+
+.fa-users-crown:before {
+  content: "\f6a5"; }
+
+.fa-usps:before {
+  content: "\f7e1"; }
+
+.fa-ussunnah:before {
+  content: "\f407"; }
+
+.fa-utensil-fork:before {
+  content: "\f2e3"; }
+
+.fa-utensil-knife:before {
+  content: "\f2e4"; }
+
+.fa-utensil-spoon:before {
+  content: "\f2e5"; }
+
+.fa-utensils:before {
+  content: "\f2e7"; }
+
+.fa-utensils-alt:before {
+  content: "\f2e6"; }
+
+.fa-vaadin:before {
+  content: "\f408"; }
+
+.fa-value-absolute:before {
+  content: "\f6a6"; }
+
+.fa-vector-square:before {
+  content: "\f5cb"; }
+
+.fa-venus:before {
+  content: "\f221"; }
+
+.fa-venus-double:before {
+  content: "\f226"; }
+
+.fa-venus-mars:before {
+  content: "\f228"; }
+
+.fa-viacoin:before {
+  content: "\f237"; }
+
+.fa-viadeo:before {
+  content: "\f2a9"; }
+
+.fa-viadeo-square:before {
+  content: "\f2aa"; }
+
+.fa-vial:before {
+  content: "\f492"; }
+
+.fa-vials:before {
+  content: "\f493"; }
+
+.fa-viber:before {
+  content: "\f409"; }
+
+.fa-video:before {
+  content: "\f03d"; }
+
+.fa-video-plus:before {
+  content: "\f4e1"; }
+
+.fa-video-slash:before {
+  content: "\f4e2"; }
+
+.fa-vihara:before {
+  content: "\f6a7"; }
+
+.fa-vimeo:before {
+  content: "\f40a"; }
+
+.fa-vimeo-square:before {
+  content: "\f194"; }
+
+.fa-vimeo-v:before {
+  content: "\f27d"; }
+
+.fa-vine:before {
+  content: "\f1ca"; }
+
+.fa-vk:before {
+  content: "\f189"; }
+
+.fa-vnv:before {
+  content: "\f40b"; }
+
+.fa-volcano:before {
+  content: "\f770"; }
+
+.fa-volleyball-ball:before {
+  content: "\f45f"; }
+
+.fa-volume:before {
+  content: "\f6a8"; }
+
+.fa-volume-down:before {
+  content: "\f027"; }
+
+.fa-volume-mute:before {
+  content: "\f6a9"; }
+
+.fa-volume-off:before {
+  content: "\f026"; }
+
+.fa-volume-slash:before {
+  content: "\f2e2"; }
+
+.fa-volume-up:before {
+  content: "\f028"; }
+
+.fa-vote-nay:before {
+  content: "\f771"; }
+
+.fa-vote-yea:before {
+  content: "\f772"; }
+
+.fa-vr-cardboard:before {
+  content: "\f729"; }
+
+.fa-vuejs:before {
+  content: "\f41f"; }
+
+.fa-walking:before {
+  content: "\f554"; }
+
+.fa-wallet:before {
+  content: "\f555"; }
+
+.fa-wand:before {
+  content: "\f72a"; }
+
+.fa-wand-magic:before {
+  content: "\f72b"; }
+
+.fa-warehouse:before {
+  content: "\f494"; }
+
+.fa-warehouse-alt:before {
+  content: "\f495"; }
+
+.fa-watch:before {
+  content: "\f2e1"; }
+
+.fa-watch-fitness:before {
+  content: "\f63e"; }
+
+.fa-water:before {
+  content: "\f773"; }
+
+.fa-water-lower:before {
+  content: "\f774"; }
+
+.fa-water-rise:before {
+  content: "\f775"; }
+
+.fa-weebly:before {
+  content: "\f5cc"; }
+
+.fa-weibo:before {
+  content: "\f18a"; }
+
+.fa-weight:before {
+  content: "\f496"; }
+
+.fa-weight-hanging:before {
+  content: "\f5cd"; }
+
+.fa-weixin:before {
+  content: "\f1d7"; }
+
+.fa-whale:before {
+  content: "\f72c"; }
+
+.fa-whatsapp:before {
+  content: "\f232"; }
+
+.fa-whatsapp-square:before {
+  content: "\f40c"; }
+
+.fa-wheat:before {
+  content: "\f72d"; }
+
+.fa-wheelchair:before {
+  content: "\f193"; }
+
+.fa-whistle:before {
+  content: "\f460"; }
+
+.fa-whmcs:before {
+  content: "\f40d"; }
+
+.fa-wifi:before {
+  content: "\f1eb"; }
+
+.fa-wifi-1:before {
+  content: "\f6aa"; }
+
+.fa-wifi-2:before {
+  content: "\f6ab"; }
+
+.fa-wifi-slash:before {
+  content: "\f6ac"; }
+
+.fa-wikipedia-w:before {
+  content: "\f266"; }
+
+.fa-wind:before {
+  content: "\f72e"; }
+
+.fa-wind-warning:before {
+  content: "\f776"; }
+
+.fa-window:before {
+  content: "\f40e"; }
+
+.fa-window-alt:before {
+  content: "\f40f"; }
+
+.fa-window-close:before {
+  content: "\f410"; }
+
+.fa-window-maximize:before {
+  content: "\f2d0"; }
+
+.fa-window-minimize:before {
+  content: "\f2d1"; }
+
+.fa-window-restore:before {
+  content: "\f2d2"; }
+
+.fa-windows:before {
+  content: "\f17a"; }
+
+.fa-windsock:before {
+  content: "\f777"; }
+
+.fa-wine-bottle:before {
+  content: "\f72f"; }
+
+.fa-wine-glass:before {
+  content: "\f4e3"; }
+
+.fa-wine-glass-alt:before {
+  content: "\f5ce"; }
+
+.fa-wix:before {
+  content: "\f5cf"; }
+
+.fa-wizards-of-the-coast:before {
+  content: "\f730"; }
+
+.fa-wolf-pack-battalion:before {
+  content: "\f514"; }
+
+.fa-won-sign:before {
+  content: "\f159"; }
+
+.fa-wordpress:before {
+  content: "\f19a"; }
+
+.fa-wordpress-simple:before {
+  content: "\f411"; }
+
+.fa-wpbeginner:before {
+  content: "\f297"; }
+
+.fa-wpexplorer:before {
+  content: "\f2de"; }
+
+.fa-wpforms:before {
+  content: "\f298"; }
+
+.fa-wpressr:before {
+  content: "\f3e4"; }
+
+.fa-wreath:before {
+  content: "\f7e2"; }
+
+.fa-wrench:before {
+  content: "\f0ad"; }
+
+.fa-x-ray:before {
+  content: "\f497"; }
+
+.fa-xbox:before {
+  content: "\f412"; }
+
+.fa-xing:before {
+  content: "\f168"; }
+
+.fa-xing-square:before {
+  content: "\f169"; }
+
+.fa-y-combinator:before {
+  content: "\f23b"; }
+
+.fa-yahoo:before {
+  content: "\f19e"; }
+
+.fa-yandex:before {
+  content: "\f413"; }
+
+.fa-yandex-international:before {
+  content: "\f414"; }
+
+.fa-yarn:before {
+  content: "\f7e3"; }
+
+.fa-yelp:before {
+  content: "\f1e9"; }
+
+.fa-yen-sign:before {
+  content: "\f157"; }
+
+.fa-yin-yang:before {
+  content: "\f6ad"; }
+
+.fa-yoast:before {
+  content: "\f2b1"; }
+
+.fa-youtube:before {
+  content: "\f167"; }
+
+.fa-youtube-square:before {
+  content: "\f431"; }
+
+.fa-zhihu:before {
+  content: "\f63f"; }
+
+.sr-only {
+  border: 0;
+  clip: rect(0, 0, 0, 0);
+  height: 1px;
+  margin: -1px;
+  overflow: hidden;
+  padding: 0;
+  position: absolute;
+  width: 1px; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+  clip: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  position: static;
+  width: auto; }
+@font-face {
+  font-family: 'Font Awesome 5 Brands';
+  font-style: normal;
+  font-weight: normal;
+  src: url("../webfonts/fa-brands-400.eot");
+  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }
+
+.fab {
+  font-family: 'Font Awesome 5 Brands'; }
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 300;
+  src: url("../webfonts/fa-light-300.eot");
+  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg"); }
+
+.fal {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 300; }
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 400;
+  src: url("../webfonts/fa-regular-400.eot");
+  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }
+
+.far {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 900;
+  src: url("../webfonts/fa-solid-900.eot");
+  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }
+
+.fa,
+.fas {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 900; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..5b0228cbcb5ba1935f86311f195d3621b4c033ed
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/all.min.css
@@ -0,0 +1 @@
+.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-abacus:before{content:"\f640"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acorn:before{content:"\f6ae"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-alarm-clock:before{content:"\f34e"}.fa-algolia:before{content:"\f36c"}.fa-alicorn:before{content:"\f6b0"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-analytics:before{content:"\f643"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angel:before{content:"\f779"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-crate:before{content:"\f6b1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-alt-down:before{content:"\f354"}.fa-arrow-alt-from-bottom:before{content:"\f346"}.fa-arrow-alt-from-left:before{content:"\f347"}.fa-arrow-alt-from-right:before{content:"\f348"}.fa-arrow-alt-from-top:before{content:"\f349"}.fa-arrow-alt-left:before{content:"\f355"}.fa-arrow-alt-right:before{content:"\f356"}.fa-arrow-alt-square-down:before{content:"\f350"}.fa-arrow-alt-square-left:before{content:"\f351"}.fa-arrow-alt-square-right:before{content:"\f352"}.fa-arrow-alt-square-up:before{content:"\f353"}.fa-arrow-alt-to-bottom:before{content:"\f34a"}.fa-arrow-alt-to-left:before{content:"\f34b"}.fa-arrow-alt-to-right:before{content:"\f34c"}.fa-arrow-alt-to-top:before{content:"\f34d"}.fa-arrow-alt-up:before{content:"\f357"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-from-bottom:before{content:"\f342"}.fa-arrow-from-left:before{content:"\f343"}.fa-arrow-from-right:before{content:"\f344"}.fa-arrow-from-top:before{content:"\f345"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-square-down:before{content:"\f339"}.fa-arrow-square-left:before{content:"\f33a"}.fa-arrow-square-right:before{content:"\f33b"}.fa-arrow-square-up:before{content:"\f33c"}.fa-arrow-to-bottom:before{content:"\f33d"}.fa-arrow-to-left:before{content:"\f33e"}.fa-arrow-to-right:before{content:"\f340"}.fa-arrow-to-top:before{content:"\f341"}.fa-arrow-up:before{content:"\f062"}.fa-arrows:before{content:"\f047"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-arrows-h:before{content:"\f07e"}.fa-arrows-v:before{content:"\f07d"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-atom-alt:before{content:"\f5d3"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-axe:before{content:"\f6b2"}.fa-axe-battle:before{content:"\f6b3"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backpack:before{content:"\f5d4"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-badge:before{content:"\f335"}.fa-badge-check:before{content:"\f336"}.fa-badge-dollar:before{content:"\f645"}.fa-badge-percent:before{content:"\f646"}.fa-badger-honey:before{content:"\f6b4"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ball-pile:before{content:"\f77e"}.fa-ballot:before{content:"\f732"}.fa-ballot-check:before{content:"\f733"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-barcode-alt:before{content:"\f463"}.fa-barcode-read:before{content:"\f464"}.fa-barcode-scan:before{content:"\f465"}.fa-bars:before{content:"\f0c9"}.fa-baseball:before{content:"\f432"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-basketball-hoop:before{content:"\f435"}.fa-bat:before{content:"\f6b5"}.fa-bath:before{content:"\f2cd"}.fa-battery-bolt:before{content:"\f376"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-slash:before{content:"\f377"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-school:before{content:"\f5d5"}.fa-bell-school-slash:before{content:"\f5d6"}.fa-bell-slash:before{content:"\f1f6"}.fa-bells:before{content:"\f77f"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blanket:before{content:"\f498"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bone-break:before{content:"\f5d8"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-alt:before{content:"\f5d9"}.fa-book-dead:before{content:"\f6b7"}.fa-book-heart:before{content:"\f499"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-book-spells:before{content:"\f6b8"}.fa-bookmark:before{content:"\f02e"}.fa-books:before{content:"\f5db"}.fa-boot:before{content:"\f782"}.fa-booth-curtain:before{content:"\f734"}.fa-bow-arrow:before{content:"\f6b9"}.fa-bowling-ball:before{content:"\f436"}.fa-bowling-pins:before{content:"\f437"}.fa-box:before{content:"\f466"}.fa-box-alt:before{content:"\f49a"}.fa-box-ballot:before{content:"\f735"}.fa-box-check:before{content:"\f467"}.fa-box-fragile:before{content:"\f49b"}.fa-box-full:before{content:"\f49c"}.fa-box-heart:before{content:"\f49d"}.fa-box-open:before{content:"\f49e"}.fa-box-up:before{content:"\f49f"}.fa-box-usd:before{content:"\f4a0"}.fa-boxes:before{content:"\f468"}.fa-boxes-alt:before{content:"\f4a1"}.fa-boxing-glove:before{content:"\f438"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-browser:before{content:"\f37e"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-bullseye-arrow:before{content:"\f648"}.fa-bullseye-pointer:before{content:"\f649"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-bus-school:before{content:"\f5dd"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-cabinet-filing:before{content:"\f64b"}.fa-calculator:before{content:"\f1ec"}.fa-calculator-alt:before{content:"\f64c"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-edit:before{content:"\f333"}.fa-calendar-exclamation:before{content:"\f334"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-star:before{content:"\f736"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-alt:before{content:"\f332"}.fa-camera-retro:before{content:"\f083"}.fa-campfire:before{content:"\f6ba"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candle-holder:before{content:"\f6bc"}.fa-candy-cane:before{content:"\f786"}.fa-candy-corn:before{content:"\f6bd"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-bump:before{content:"\f5e0"}.fa-car-crash:before{content:"\f5e1"}.fa-car-garage:before{content:"\f5e2"}.fa-car-mechanic:before{content:"\f5e3"}.fa-car-side:before{content:"\f5e4"}.fa-car-tilt:before{content:"\f5e5"}.fa-car-wash:before{content:"\f5e6"}.fa-caret-circle-down:before{content:"\f32d"}.fa-caret-circle-left:before{content:"\f32e"}.fa-caret-circle-right:before{content:"\f330"}.fa-caret-circle-up:before{content:"\f331"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cauldron:before{content:"\f6bf"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chair-office:before{content:"\f6c1"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-line-down:before{content:"\f64d"}.fa-chart-network:before{content:"\f78a"}.fa-chart-pie:before{content:"\f200"}.fa-chart-pie-alt:before{content:"\f64e"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-bishop-alt:before{content:"\f43b"}.fa-chess-board:before{content:"\f43c"}.fa-chess-clock:before{content:"\f43d"}.fa-chess-clock-alt:before{content:"\f43e"}.fa-chess-king:before{content:"\f43f"}.fa-chess-king-alt:before{content:"\f440"}.fa-chess-knight:before{content:"\f441"}.fa-chess-knight-alt:before{content:"\f442"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-pawn-alt:before{content:"\f444"}.fa-chess-queen:before{content:"\f445"}.fa-chess-queen-alt:before{content:"\f446"}.fa-chess-rook:before{content:"\f447"}.fa-chess-rook-alt:before{content:"\f448"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-double-down:before{content:"\f322"}.fa-chevron-double-left:before{content:"\f323"}.fa-chevron-double-right:before{content:"\f324"}.fa-chevron-double-up:before{content:"\f325"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-square-down:before{content:"\f329"}.fa-chevron-square-left:before{content:"\f32a"}.fa-chevron-square-right:before{content:"\f32b"}.fa-chevron-square-up:before{content:"\f32c"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chimney:before{content:"\f78b"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-claw-marks:before{content:"\f6c2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-list-check:before{content:"\f737"}.fa-clipboard-prescription:before{content:"\f5e8"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-drizzle:before{content:"\f738"}.fa-cloud-hail:before{content:"\f739"}.fa-cloud-hail-mixed:before{content:"\f73a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-rainbow:before{content:"\f73e"}.fa-cloud-showers:before{content:"\f73f"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sleet:before{content:"\f741"}.fa-cloud-snow:before{content:"\f742"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-clouds:before{content:"\f744"}.fa-clouds-moon:before{content:"\f745"}.fa-clouds-sun:before{content:"\f746"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-club:before{content:"\f327"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-merge:before{content:"\f387"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-coffee-togo:before{content:"\f6c5"}.fa-coffin:before{content:"\f6c6"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-alt-check:before{content:"\f4a2"}.fa-comment-alt-dollar:before{content:"\f650"}.fa-comment-alt-dots:before{content:"\f4a3"}.fa-comment-alt-edit:before{content:"\f4a4"}.fa-comment-alt-exclamation:before{content:"\f4a5"}.fa-comment-alt-lines:before{content:"\f4a6"}.fa-comment-alt-minus:before{content:"\f4a7"}.fa-comment-alt-plus:before{content:"\f4a8"}.fa-comment-alt-slash:before{content:"\f4a9"}.fa-comment-alt-smile:before{content:"\f4aa"}.fa-comment-alt-times:before{content:"\f4ab"}.fa-comment-check:before{content:"\f4ac"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-edit:before{content:"\f4ae"}.fa-comment-exclamation:before{content:"\f4af"}.fa-comment-lines:before{content:"\f4b0"}.fa-comment-minus:before{content:"\f4b1"}.fa-comment-plus:before{content:"\f4b2"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-smile:before{content:"\f4b4"}.fa-comment-times:before{content:"\f4b5"}.fa-comments:before{content:"\f086"}.fa-comments-alt:before{content:"\f4b6"}.fa-comments-alt-dollar:before{content:"\f652"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-slash:before{content:"\f5e9"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-compress-wide:before{content:"\f326"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-container-storage:before{content:"\f4b7"}.fa-contao:before{content:"\f26d"}.fa-conveyor-belt:before{content:"\f46e"}.fa-conveyor-belt-alt:before{content:"\f46f"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-corn:before{content:"\f6c7"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-credit-card-blank:before{content:"\f389"}.fa-credit-card-front:before{content:"\f38a"}.fa-cricket:before{content:"\f449"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-curling:before{content:"\f44a"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dagger:before{content:"\f6cb"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deer:before{content:"\f78e"}.fa-deer-rudolph:before{content:"\f78f"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-desktop-alt:before{content:"\f390"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dewpoint:before{content:"\f748"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diamond:before{content:"\f219"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d10:before{content:"\f6cd"}.fa-dice-d12:before{content:"\f6ce"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d4:before{content:"\f6d0"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-d8:before{content:"\f6d2"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-diploma:before{content:"\f5ea"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-do-not-enter:before{content:"\f5ec"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dog-leashed:before{content:"\f6d4"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-empty:before{content:"\f473"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dolly-flatbed-alt:before{content:"\f475"}.fa-dolly-flatbed-empty:before{content:"\f476"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-circle:before{content:"\f5ed"}.fa-draw-polygon:before{content:"\f5ee"}.fa-draw-square:before{content:"\f5ef"}.fa-dreidel:before{content:"\f792"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick:before{content:"\f6d6"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-duck:before{content:"\f6d8"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-ear:before{content:"\f5f0"}.fa-ear-muffs:before{content:"\f795"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-eclipse:before{content:"\f749"}.fa-eclipse-alt:before{content:"\f74a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-elephant:before{content:"\f6da"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-h-alt:before{content:"\f39b"}.fa-ellipsis-v:before{content:"\f142"}.fa-ellipsis-v-alt:before{content:"\f39c"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-empty-set:before{content:"\f656"}.fa-engine-warning:before{content:"\f5f2"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-dollar:before{content:"\f657"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange:before{content:"\f0ec"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-square:before{content:"\f321"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows:before{content:"\f31d"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expand-wide:before{content:"\f320"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link:before{content:"\f08e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square:before{content:"\f14c"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-evil:before{content:"\f6db"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-field-hockey:before{content:"\f44c"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-certificate:before{content:"\f5f3"}.fa-file-chart-line:before{content:"\f659"}.fa-file-chart-pie:before{content:"\f65a"}.fa-file-check:before{content:"\f316"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-edit:before{content:"\f31c"}.fa-file-excel:before{content:"\f1c3"}.fa-file-exclamation:before{content:"\f31a"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-minus:before{content:"\f318"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-plus:before{content:"\f319"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-spreadsheet:before{content:"\f65b"}.fa-file-times:before{content:"\f317"}.fa-file-upload:before{content:"\f574"}.fa-file-user:before{content:"\f65c"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-film-alt:before{content:"\f3a0"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-smoke:before{content:"\f74b"}.fa-firefox:before{content:"\f269"}.fa-fireplace:before{content:"\f79a"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-alt:before{content:"\f74c"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flame:before{content:"\f6df"}.fa-flask:before{content:"\f0c3"}.fa-flask-poison:before{content:"\f6e0"}.fa-flask-potion:before{content:"\f6e1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-fog:before{content:"\f74e"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-times:before{content:"\f65f"}.fa-folders:before{content:"\f660"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-football-helmet:before{content:"\f44f"}.fa-forklift:before{content:"\f47a"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-fragile:before{content:"\f4bb"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frosty-head:before{content:"\f79b"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-function:before{content:"\f661"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gas-pump-slash:before{content:"\f5f4"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gift-card:before{content:"\f663"}.fa-gifts:before{content:"\f79c"}.fa-gingerbread-man:before{content:"\f79d"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-champagne:before{content:"\f79e"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glass-whiskey-rocks:before{content:"\f7a1"}.fa-glasses:before{content:"\f530"}.fa-glasses-alt:before{content:"\f5f5"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-globe-snow:before{content:"\f7a3"}.fa-globe-stand:before{content:"\f5f6"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-golf-club:before{content:"\f451"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-h1:before{content:"\f313"}.fa-h2:before{content:"\f314"}.fa-h3:before{content:"\f315"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hammer-war:before{content:"\f6e4"}.fa-hamsa:before{content:"\f665"}.fa-hand-heart:before{content:"\f4bc"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-box:before{content:"\f47b"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-magic:before{content:"\f6e5"}.fa-hand-holding-seedling:before{content:"\f4bf"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-receiving:before{content:"\f47c"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-heart:before{content:"\f4c3"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-usd:before{content:"\f4c5"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt:before{content:"\f4c6"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-santa:before{content:"\f7a7"}.fa-hat-winter:before{content:"\f7a8"}.fa-hat-witch:before{content:"\f6e7"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-head-side:before{content:"\f6e9"}.fa-head-vr:before{content:"\f6ea"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heart-circle:before{content:"\f4c7"}.fa-heart-rate:before{content:"\f5f8"}.fa-heart-square:before{content:"\f4c8"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helmet-battle:before{content:"\f6eb"}.fa-hexagon:before{content:"\f312"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-mask:before{content:"\f6ee"}.fa-hockey-puck:before{content:"\f453"}.fa-hockey-sticks:before{content:"\f454"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-home-heart:before{content:"\f4c9"}.fa-hood-cloak:before{content:"\f6ef"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-flood:before{content:"\f74f"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-humidity:before{content:"\f750"}.fa-hurricane:before{content:"\f751"}.fa-i-cursor:before{content:"\f246"}.fa-ice-skate:before{content:"\f7ac"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-inbox-in:before{content:"\f310"}.fa-inbox-out:before{content:"\f311"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-industry-alt:before{content:"\f3b3"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-info-square:before{content:"\f30f"}.fa-inhaler:before{content:"\f5f9"}.fa-instagram:before{content:"\f16d"}.fa-integral:before{content:"\f667"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-intersection:before{content:"\f668"}.fa-inventory:before{content:"\f480"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jack-o-lantern:before{content:"\f30e"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-key-skeleton:before{content:"\f6f3"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-keynote:before{content:"\f66c"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kidneys:before{content:"\f5fb"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kite:before{content:"\f6f4"}.fa-kiwi-bird:before{content:"\f535"}.fa-knife-kitchen:before{content:"\f6f5"}.fa-korvue:before{content:"\f42f"}.fa-lambda:before{content:"\f66e"}.fa-lamp:before{content:"\f4ca"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before{content:"\f752"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-layer-minus:before{content:"\f5fe"}.fa-layer-plus:before{content:"\f5ff"}.fa-leaf:before{content:"\f06c"}.fa-leaf-heart:before{content:"\f4cb"}.fa-leaf-maple:before{content:"\f6f6"}.fa-leaf-oak:before{content:"\f6f7"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down:before{content:"\f149"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up:before{content:"\f148"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lightbulb-dollar:before{content:"\f670"}.fa-lightbulb-exclamation:before{content:"\f671"}.fa-lightbulb-on:before{content:"\f672"}.fa-lightbulb-slash:before{content:"\f673"}.fa-lights-holiday:before{content:"\f7b2"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lips:before{content:"\f600"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location:before{content:"\f601"}.fa-location-arrow:before{content:"\f124"}.fa-location-circle:before{content:"\f602"}.fa-location-slash:before{content:"\f603"}.fa-lock:before{content:"\f023"}.fa-lock-alt:before{content:"\f30d"}.fa-lock-open:before{content:"\f3c1"}.fa-lock-open-alt:before{content:"\f3c2"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-long-arrow-up:before{content:"\f176"}.fa-loveseat:before{content:"\f4cc"}.fa-low-vision:before{content:"\f2a8"}.fa-luchador:before{content:"\f455"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lyft:before{content:"\f3c3"}.fa-mace:before{content:"\f6f8"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-mandolin:before{content:"\f6f9"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-marker-alt-slash:before{content:"\f605"}.fa-map-marker-check:before{content:"\f606"}.fa-map-marker-edit:before{content:"\f607"}.fa-map-marker-exclamation:before{content:"\f608"}.fa-map-marker-minus:before{content:"\f609"}.fa-map-marker-plus:before{content:"\f60a"}.fa-map-marker-question:before{content:"\f60b"}.fa-map-marker-slash:before{content:"\f60c"}.fa-map-marker-smile:before{content:"\f60d"}.fa-map-marker-times:before{content:"\f60e"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaphone:before{content:"\f675"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-mind-share:before{content:"\f677"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-hexagon:before{content:"\f307"}.fa-minus-octagon:before{content:"\f308"}.fa-minus-square:before{content:"\f146"}.fa-mistletoe:before{content:"\f7b4"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-mobile-android:before{content:"\f3ce"}.fa-mobile-android-alt:before{content:"\f3cf"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monitor-heart-rate:before{content:"\f611"}.fa-monkey:before{content:"\f6fb"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-moon-cloud:before{content:"\f754"}.fa-moon-stars:before{content:"\f755"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mountains:before{content:"\f6fd"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-mug-marshmallows:before{content:"\f7b7"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-narwhal:before{content:"\f6fe"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octagon:before{content:"\f306"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-oil-temp:before{content:"\f614"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-omega:before{content:"\f67a"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-ornament:before{content:"\f7b8"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-brush-alt:before{content:"\f5a9"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-pallet-alt:before{content:"\f483"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-parking-circle:before{content:"\f615"}.fa-parking-circle-slash:before{content:"\f616"}.fa-parking-slash:before{content:"\f617"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paw-alt:before{content:"\f701"}.fa-paw-claws:before{content:"\f702"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pegasus:before{content:"\f703"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil:before{content:"\f040"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-paintbrush:before{content:"\f618"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-pennant:before{content:"\f456"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-person-carry:before{content:"\f4cf"}.fa-person-dolly:before{content:"\f4d0"}.fa-person-dolly-empty:before{content:"\f4d1"}.fa-person-sign:before{content:"\f757"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-office:before{content:"\f67d"}.fa-phone-plus:before{content:"\f4d2"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pi:before{content:"\f67e"}.fa-pie:before{content:"\f705"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pig:before{content:"\f706"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-alt:before{content:"\f3de"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-hexagon:before{content:"\f300"}.fa-plus-octagon:before{content:"\f301"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-podium:before{content:"\f680"}.fa-podium-star:before{content:"\f758"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poll-people:before{content:"\f759"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-presentation:before{content:"\f685"}.fa-print:before{content:"\f02f"}.fa-print-slash:before{content:"\f686"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pumpkin:before{content:"\f707"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-question-square:before{content:"\f2fd"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rabbit:before{content:"\f708"}.fa-rabbit-fast:before{content:"\f709"}.fa-racquet:before{content:"\f45a"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-raindrops:before{content:"\f75c"}.fa-ram:before{content:"\f70a"}.fa-ramp-loading:before{content:"\f4d4"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-rectangle-landscape:before{content:"\f2fa"}.fa-rectangle-portrait:before{content:"\f2fb"}.fa-rectangle-wide:before{content:"\f2fc"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-repeat:before{content:"\f363"}.fa-repeat-1:before{content:"\f365"}.fa-repeat-1-alt:before{content:"\f366"}.fa-repeat-alt:before{content:"\f364"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-retweet-alt:before{content:"\f361"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-route-highway:before{content:"\f61a"}.fa-route-interstate:before{content:"\f61b"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-triangle:before{content:"\f61c"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rv:before{content:"\f7be"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-scalpel:before{content:"\f61d"}.fa-scalpel-path:before{content:"\f61e"}.fa-scanner:before{content:"\f488"}.fa-scanner-keyboard:before{content:"\f489"}.fa-scanner-touchscreen:before{content:"\f48a"}.fa-scarecrow:before{content:"\f70d"}.fa-scarf:before{content:"\f7c1"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-scroll-old:before{content:"\f70f"}.fa-scrubber:before{content:"\f2f8"}.fa-scythe:before{content:"\f710"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-all:before{content:"\f367"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-sheep:before{content:"\f711"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield:before{content:"\f132"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-check:before{content:"\f2f7"}.fa-shield-cross:before{content:"\f712"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shipping-timed:before{content:"\f48c"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shovel:before{content:"\f713"}.fa-shovel-snow:before{content:"\f7c3"}.fa-shower:before{content:"\f2cc"}.fa-shredder:before{content:"\f68a"}.fa-shuttle-van:before{content:"\f5b6"}.fa-shuttlecock:before{content:"\f45b"}.fa-sigma:before{content:"\f68b"}.fa-sign:before{content:"\f4d9"}.fa-sign-in:before{content:"\f090"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out:before{content:"\f08b"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signal-1:before{content:"\f68c"}.fa-signal-2:before{content:"\f68d"}.fa-signal-3:before{content:"\f68e"}.fa-signal-4:before{content:"\f68f"}.fa-signal-alt:before{content:"\f690"}.fa-signal-alt-1:before{content:"\f691"}.fa-signal-alt-2:before{content:"\f692"}.fa-signal-alt-3:before{content:"\f693"}.fa-signal-alt-slash:before{content:"\f694"}.fa-signal-slash:before{content:"\f695"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-skeleton:before{content:"\f620"}.fa-sketch:before{content:"\f7c6"}.fa-ski-jump:before{content:"\f7c7"}.fa-ski-lift:before{content:"\f7c8"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sledding:before{content:"\f7cb"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-sliders-h-square:before{content:"\f3f0"}.fa-sliders-v:before{content:"\f3f1"}.fa-sliders-v-square:before{content:"\f3f2"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-plus:before{content:"\f5b9"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoke:before{content:"\f760"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snake:before{content:"\f716"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snow-blowing:before{content:"\f761"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowflakes:before{content:"\f7cf"}.fa-snowman:before{content:"\f7d0"}.fa-snowmobile:before{content:"\f7d1"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-spade:before{content:"\f2f4"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spider-black-widow:before{content:"\f718"}.fa-spider-web:before{content:"\f719"}.fa-spinner:before{content:"\f110"}.fa-spinner-third:before{content:"\f3f4"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root:before{content:"\f697"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-squirrel:before{content:"\f71a"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-staff:before{content:"\f71b"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-christmas:before{content:"\f7d4"}.fa-star-exclamation:before{content:"\f2f3"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-stars:before{content:"\f762"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-steering-wheel:before{content:"\f622"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stocking:before{content:"\f7d5"}.fa-stomach:before{content:"\f623"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-cloud:before{content:"\f763"}.fa-sun-dust:before{content:"\f764"}.fa-sun-haze:before{content:"\f765"}.fa-sunrise:before{content:"\f766"}.fa-sunset:before{content:"\f767"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sword:before{content:"\f71c"}.fa-swords:before{content:"\f71d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablet-android:before{content:"\f3fb"}.fa-tablet-android-alt:before{content:"\f3fc"}.fa-tablet-rugged:before{content:"\f48f"}.fa-tablets:before{content:"\f490"}.fa-tachometer:before{content:"\f0e4"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tachometer-alt-average:before{content:"\f624"}.fa-tachometer-alt-fast:before{content:"\f625"}.fa-tachometer-alt-fastest:before{content:"\f626"}.fa-tachometer-alt-slow:before{content:"\f627"}.fa-tachometer-alt-slowest:before{content:"\f628"}.fa-tachometer-average:before{content:"\f629"}.fa-tachometer-fast:before{content:"\f62a"}.fa-tachometer-fastest:before{content:"\f62b"}.fa-tachometer-slow:before{content:"\f62c"}.fa-tachometer-slowest:before{content:"\f62d"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tally:before{content:"\f69c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-frigid:before{content:"\f768"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-hot:before{content:"\f76a"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-tennis-ball:before{content:"\f45e"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-theta:before{content:"\f69e"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-thunderstorm:before{content:"\f76c"}.fa-thunderstorm-moon:before{content:"\f76d"}.fa-thunderstorm-sun:before{content:"\f76e"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tilde:before{content:"\f69f"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-times-hexagon:before{content:"\f2ee"}.fa-times-octagon:before{content:"\f2f0"}.fa-times-square:before{content:"\f2d3"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tire:before{content:"\f631"}.fa-tire-flat:before{content:"\f632"}.fa-tire-pressure-warning:before{content:"\f633"}.fa-tire-rugged:before{content:"\f634"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-alt:before{content:"\f71f"}.fa-tombstone:before{content:"\f720"}.fa-tombstone-alt:before{content:"\f721"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-toothbrush:before{content:"\f635"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-cone:before{content:"\f636"}.fa-traffic-light:before{content:"\f637"}.fa-traffic-light-go:before{content:"\f638"}.fa-traffic-light-slow:before{content:"\f639"}.fa-traffic-light-stop:before{content:"\f63a"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-treasure-chest:before{content:"\f723"}.fa-tree:before{content:"\f1bb"}.fa-tree-alt:before{content:"\f400"}.fa-tree-christmas:before{content:"\f7db"}.fa-tree-decorated:before{content:"\f7dc"}.fa-tree-large:before{content:"\f7dd"}.fa-trees:before{content:"\f724"}.fa-trello:before{content:"\f181"}.fa-triangle:before{content:"\f2ec"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-trophy-alt:before{content:"\f2eb"}.fa-truck:before{content:"\f0d1"}.fa-truck-container:before{content:"\f4dc"}.fa-truck-couch:before{content:"\f4dd"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plow:before{content:"\f7de"}.fa-truck-ramp:before{content:"\f4e0"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-turkey:before{content:"\f725"}.fa-turtle:before{content:"\f726"}.fa-tv:before{content:"\f26c"}.fa-tv-retro:before{content:"\f401"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-unicorn:before{content:"\f727"}.fa-union:before{content:"\f6a2"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usd-circle:before{content:"\f2e8"}.fa-usd-square:before{content:"\f2e9"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-chart:before{content:"\f6a3"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-crown:before{content:"\f6a4"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-class:before{content:"\f63d"}.fa-users-cog:before{content:"\f509"}.fa-users-crown:before{content:"\f6a5"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-fork:before{content:"\f2e3"}.fa-utensil-knife:before{content:"\f2e4"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-utensils-alt:before{content:"\f2e6"}.fa-vaadin:before{content:"\f408"}.fa-value-absolute:before{content:"\f6a6"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-plus:before{content:"\f4e1"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume:before{content:"\f6a8"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-slash:before{content:"\f2e2"}.fa-volume-up:before{content:"\f028"}.fa-vote-nay:before{content:"\f771"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-wand:before{content:"\f72a"}.fa-wand-magic:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-warehouse-alt:before{content:"\f495"}.fa-watch:before{content:"\f2e1"}.fa-watch-fitness:before{content:"\f63e"}.fa-water:before{content:"\f773"}.fa-water-lower:before{content:"\f774"}.fa-water-rise:before{content:"\f775"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whale:before{content:"\f72c"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheat:before{content:"\f72d"}.fa-wheelchair:before{content:"\f193"}.fa-whistle:before{content:"\f460"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wifi-1:before{content:"\f6aa"}.fa-wifi-2:before{content:"\f6ab"}.fa-wifi-slash:before{content:"\f6ac"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-wind-warning:before{content:"\f776"}.fa-window:before{content:"\f40e"}.fa-window-alt:before{content:"\f40f"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-windsock:before{content:"\f777"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wreath:before{content:"\f7e2"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;src:url(../webfonts/fa-light-300.eot);src:url(../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-light-300.woff2) format("woff2"),url(../webfonts/fa-light-300.woff) format("woff"),url(../webfonts/fa-light-300.ttf) format("truetype"),url(../webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-weight:300}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fal,.far{font-family:"Font Awesome 5 Pro"}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.css
new file mode 100644
index 0000000000000000000000000000000000000000..2a8d4ad824fb246c8e2ed53df8f95214e0a58611
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.css
@@ -0,0 +1,9 @@
+@font-face {
+  font-family: 'Font Awesome 5 Brands';
+  font-style: normal;
+  font-weight: normal;
+  src: url("../webfonts/fa-brands-400.eot");
+  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }
+
+.fab {
+  font-family: 'Font Awesome 5 Brands'; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..7160278f638f1939d3b4a95c446fc58cb0474f42
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/brands.min.css
@@ -0,0 +1 @@
+@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.css
new file mode 100644
index 0000000000000000000000000000000000000000..154e724d00685160b27f986c45141beecb64a301
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.css
@@ -0,0 +1,5878 @@
+.fa,
+.fas,
+.far,
+.fal,
+.fab {
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+  display: inline-block;
+  font-style: normal;
+  font-variant: normal;
+  text-rendering: auto;
+  line-height: 1; }
+
+.fa-lg {
+  font-size: 1.33333em;
+  line-height: 0.75em;
+  vertical-align: -.0667em; }
+
+.fa-xs {
+  font-size: .75em; }
+
+.fa-sm {
+  font-size: .875em; }
+
+.fa-1x {
+  font-size: 1em; }
+
+.fa-2x {
+  font-size: 2em; }
+
+.fa-3x {
+  font-size: 3em; }
+
+.fa-4x {
+  font-size: 4em; }
+
+.fa-5x {
+  font-size: 5em; }
+
+.fa-6x {
+  font-size: 6em; }
+
+.fa-7x {
+  font-size: 7em; }
+
+.fa-8x {
+  font-size: 8em; }
+
+.fa-9x {
+  font-size: 9em; }
+
+.fa-10x {
+  font-size: 10em; }
+
+.fa-fw {
+  text-align: center;
+  width: 1.25em; }
+
+.fa-ul {
+  list-style-type: none;
+  margin-left: 2.5em;
+  padding-left: 0; }
+  .fa-ul > li {
+    position: relative; }
+
+.fa-li {
+  left: -2em;
+  position: absolute;
+  text-align: center;
+  width: 2em;
+  line-height: inherit; }
+
+.fa-border {
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+  padding: .2em .25em .15em; }
+
+.fa-pull-left {
+  float: left; }
+
+.fa-pull-right {
+  float: right; }
+
+.fa.fa-pull-left,
+.fas.fa-pull-left,
+.far.fa-pull-left,
+.fal.fa-pull-left,
+.fab.fa-pull-left {
+  margin-right: .3em; }
+
+.fa.fa-pull-right,
+.fas.fa-pull-right,
+.far.fa-pull-right,
+.fal.fa-pull-right,
+.fab.fa-pull-right {
+  margin-left: .3em; }
+
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+          animation: fa-spin 2s infinite linear; }
+
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+          animation: fa-spin 1s infinite steps(8); }
+
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+          transform: rotate(90deg); }
+
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+          transform: rotate(180deg); }
+
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+          transform: rotate(270deg); }
+
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+  -webkit-transform: scale(-1, 1);
+          transform: scale(-1, 1); }
+
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(1, -1);
+          transform: scale(1, -1); }
+
+.fa-flip-horizontal.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(-1, -1);
+          transform: scale(-1, -1); }
+
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  -webkit-filter: none;
+          filter: none; }
+
+.fa-stack {
+  display: inline-block;
+  height: 2em;
+  line-height: 2em;
+  position: relative;
+  vertical-align: middle;
+  width: 2.5em; }
+
+.fa-stack-1x,
+.fa-stack-2x {
+  left: 0;
+  position: absolute;
+  text-align: center;
+  width: 100%; }
+
+.fa-stack-1x {
+  line-height: inherit; }
+
+.fa-stack-2x {
+  font-size: 2em; }
+
+.fa-inverse {
+  color: #fff; }
+
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+readers do not read off random characters that represent icons */
+.fa-500px:before {
+  content: "\f26e"; }
+
+.fa-abacus:before {
+  content: "\f640"; }
+
+.fa-accessible-icon:before {
+  content: "\f368"; }
+
+.fa-accusoft:before {
+  content: "\f369"; }
+
+.fa-acorn:before {
+  content: "\f6ae"; }
+
+.fa-acquisitions-incorporated:before {
+  content: "\f6af"; }
+
+.fa-ad:before {
+  content: "\f641"; }
+
+.fa-address-book:before {
+  content: "\f2b9"; }
+
+.fa-address-card:before {
+  content: "\f2bb"; }
+
+.fa-adjust:before {
+  content: "\f042"; }
+
+.fa-adn:before {
+  content: "\f170"; }
+
+.fa-adobe:before {
+  content: "\f778"; }
+
+.fa-adversal:before {
+  content: "\f36a"; }
+
+.fa-affiliatetheme:before {
+  content: "\f36b"; }
+
+.fa-air-freshener:before {
+  content: "\f5d0"; }
+
+.fa-alarm-clock:before {
+  content: "\f34e"; }
+
+.fa-algolia:before {
+  content: "\f36c"; }
+
+.fa-alicorn:before {
+  content: "\f6b0"; }
+
+.fa-align-center:before {
+  content: "\f037"; }
+
+.fa-align-justify:before {
+  content: "\f039"; }
+
+.fa-align-left:before {
+  content: "\f036"; }
+
+.fa-align-right:before {
+  content: "\f038"; }
+
+.fa-alipay:before {
+  content: "\f642"; }
+
+.fa-allergies:before {
+  content: "\f461"; }
+
+.fa-amazon:before {
+  content: "\f270"; }
+
+.fa-amazon-pay:before {
+  content: "\f42c"; }
+
+.fa-ambulance:before {
+  content: "\f0f9"; }
+
+.fa-american-sign-language-interpreting:before {
+  content: "\f2a3"; }
+
+.fa-amilia:before {
+  content: "\f36d"; }
+
+.fa-analytics:before {
+  content: "\f643"; }
+
+.fa-anchor:before {
+  content: "\f13d"; }
+
+.fa-android:before {
+  content: "\f17b"; }
+
+.fa-angel:before {
+  content: "\f779"; }
+
+.fa-angellist:before {
+  content: "\f209"; }
+
+.fa-angle-double-down:before {
+  content: "\f103"; }
+
+.fa-angle-double-left:before {
+  content: "\f100"; }
+
+.fa-angle-double-right:before {
+  content: "\f101"; }
+
+.fa-angle-double-up:before {
+  content: "\f102"; }
+
+.fa-angle-down:before {
+  content: "\f107"; }
+
+.fa-angle-left:before {
+  content: "\f104"; }
+
+.fa-angle-right:before {
+  content: "\f105"; }
+
+.fa-angle-up:before {
+  content: "\f106"; }
+
+.fa-angry:before {
+  content: "\f556"; }
+
+.fa-angrycreative:before {
+  content: "\f36e"; }
+
+.fa-angular:before {
+  content: "\f420"; }
+
+.fa-ankh:before {
+  content: "\f644"; }
+
+.fa-app-store:before {
+  content: "\f36f"; }
+
+.fa-app-store-ios:before {
+  content: "\f370"; }
+
+.fa-apper:before {
+  content: "\f371"; }
+
+.fa-apple:before {
+  content: "\f179"; }
+
+.fa-apple-alt:before {
+  content: "\f5d1"; }
+
+.fa-apple-crate:before {
+  content: "\f6b1"; }
+
+.fa-apple-pay:before {
+  content: "\f415"; }
+
+.fa-archive:before {
+  content: "\f187"; }
+
+.fa-archway:before {
+  content: "\f557"; }
+
+.fa-arrow-alt-circle-down:before {
+  content: "\f358"; }
+
+.fa-arrow-alt-circle-left:before {
+  content: "\f359"; }
+
+.fa-arrow-alt-circle-right:before {
+  content: "\f35a"; }
+
+.fa-arrow-alt-circle-up:before {
+  content: "\f35b"; }
+
+.fa-arrow-alt-down:before {
+  content: "\f354"; }
+
+.fa-arrow-alt-from-bottom:before {
+  content: "\f346"; }
+
+.fa-arrow-alt-from-left:before {
+  content: "\f347"; }
+
+.fa-arrow-alt-from-right:before {
+  content: "\f348"; }
+
+.fa-arrow-alt-from-top:before {
+  content: "\f349"; }
+
+.fa-arrow-alt-left:before {
+  content: "\f355"; }
+
+.fa-arrow-alt-right:before {
+  content: "\f356"; }
+
+.fa-arrow-alt-square-down:before {
+  content: "\f350"; }
+
+.fa-arrow-alt-square-left:before {
+  content: "\f351"; }
+
+.fa-arrow-alt-square-right:before {
+  content: "\f352"; }
+
+.fa-arrow-alt-square-up:before {
+  content: "\f353"; }
+
+.fa-arrow-alt-to-bottom:before {
+  content: "\f34a"; }
+
+.fa-arrow-alt-to-left:before {
+  content: "\f34b"; }
+
+.fa-arrow-alt-to-right:before {
+  content: "\f34c"; }
+
+.fa-arrow-alt-to-top:before {
+  content: "\f34d"; }
+
+.fa-arrow-alt-up:before {
+  content: "\f357"; }
+
+.fa-arrow-circle-down:before {
+  content: "\f0ab"; }
+
+.fa-arrow-circle-left:before {
+  content: "\f0a8"; }
+
+.fa-arrow-circle-right:before {
+  content: "\f0a9"; }
+
+.fa-arrow-circle-up:before {
+  content: "\f0aa"; }
+
+.fa-arrow-down:before {
+  content: "\f063"; }
+
+.fa-arrow-from-bottom:before {
+  content: "\f342"; }
+
+.fa-arrow-from-left:before {
+  content: "\f343"; }
+
+.fa-arrow-from-right:before {
+  content: "\f344"; }
+
+.fa-arrow-from-top:before {
+  content: "\f345"; }
+
+.fa-arrow-left:before {
+  content: "\f060"; }
+
+.fa-arrow-right:before {
+  content: "\f061"; }
+
+.fa-arrow-square-down:before {
+  content: "\f339"; }
+
+.fa-arrow-square-left:before {
+  content: "\f33a"; }
+
+.fa-arrow-square-right:before {
+  content: "\f33b"; }
+
+.fa-arrow-square-up:before {
+  content: "\f33c"; }
+
+.fa-arrow-to-bottom:before {
+  content: "\f33d"; }
+
+.fa-arrow-to-left:before {
+  content: "\f33e"; }
+
+.fa-arrow-to-right:before {
+  content: "\f340"; }
+
+.fa-arrow-to-top:before {
+  content: "\f341"; }
+
+.fa-arrow-up:before {
+  content: "\f062"; }
+
+.fa-arrows:before {
+  content: "\f047"; }
+
+.fa-arrows-alt:before {
+  content: "\f0b2"; }
+
+.fa-arrows-alt-h:before {
+  content: "\f337"; }
+
+.fa-arrows-alt-v:before {
+  content: "\f338"; }
+
+.fa-arrows-h:before {
+  content: "\f07e"; }
+
+.fa-arrows-v:before {
+  content: "\f07d"; }
+
+.fa-artstation:before {
+  content: "\f77a"; }
+
+.fa-assistive-listening-systems:before {
+  content: "\f2a2"; }
+
+.fa-asterisk:before {
+  content: "\f069"; }
+
+.fa-asymmetrik:before {
+  content: "\f372"; }
+
+.fa-at:before {
+  content: "\f1fa"; }
+
+.fa-atlas:before {
+  content: "\f558"; }
+
+.fa-atlassian:before {
+  content: "\f77b"; }
+
+.fa-atom:before {
+  content: "\f5d2"; }
+
+.fa-atom-alt:before {
+  content: "\f5d3"; }
+
+.fa-audible:before {
+  content: "\f373"; }
+
+.fa-audio-description:before {
+  content: "\f29e"; }
+
+.fa-autoprefixer:before {
+  content: "\f41c"; }
+
+.fa-avianex:before {
+  content: "\f374"; }
+
+.fa-aviato:before {
+  content: "\f421"; }
+
+.fa-award:before {
+  content: "\f559"; }
+
+.fa-aws:before {
+  content: "\f375"; }
+
+.fa-axe:before {
+  content: "\f6b2"; }
+
+.fa-axe-battle:before {
+  content: "\f6b3"; }
+
+.fa-baby:before {
+  content: "\f77c"; }
+
+.fa-baby-carriage:before {
+  content: "\f77d"; }
+
+.fa-backpack:before {
+  content: "\f5d4"; }
+
+.fa-backspace:before {
+  content: "\f55a"; }
+
+.fa-backward:before {
+  content: "\f04a"; }
+
+.fa-badge:before {
+  content: "\f335"; }
+
+.fa-badge-check:before {
+  content: "\f336"; }
+
+.fa-badge-dollar:before {
+  content: "\f645"; }
+
+.fa-badge-percent:before {
+  content: "\f646"; }
+
+.fa-badger-honey:before {
+  content: "\f6b4"; }
+
+.fa-balance-scale:before {
+  content: "\f24e"; }
+
+.fa-balance-scale-left:before {
+  content: "\f515"; }
+
+.fa-balance-scale-right:before {
+  content: "\f516"; }
+
+.fa-ball-pile:before {
+  content: "\f77e"; }
+
+.fa-ballot:before {
+  content: "\f732"; }
+
+.fa-ballot-check:before {
+  content: "\f733"; }
+
+.fa-ban:before {
+  content: "\f05e"; }
+
+.fa-band-aid:before {
+  content: "\f462"; }
+
+.fa-bandcamp:before {
+  content: "\f2d5"; }
+
+.fa-barcode:before {
+  content: "\f02a"; }
+
+.fa-barcode-alt:before {
+  content: "\f463"; }
+
+.fa-barcode-read:before {
+  content: "\f464"; }
+
+.fa-barcode-scan:before {
+  content: "\f465"; }
+
+.fa-bars:before {
+  content: "\f0c9"; }
+
+.fa-baseball:before {
+  content: "\f432"; }
+
+.fa-baseball-ball:before {
+  content: "\f433"; }
+
+.fa-basketball-ball:before {
+  content: "\f434"; }
+
+.fa-basketball-hoop:before {
+  content: "\f435"; }
+
+.fa-bat:before {
+  content: "\f6b5"; }
+
+.fa-bath:before {
+  content: "\f2cd"; }
+
+.fa-battery-bolt:before {
+  content: "\f376"; }
+
+.fa-battery-empty:before {
+  content: "\f244"; }
+
+.fa-battery-full:before {
+  content: "\f240"; }
+
+.fa-battery-half:before {
+  content: "\f242"; }
+
+.fa-battery-quarter:before {
+  content: "\f243"; }
+
+.fa-battery-slash:before {
+  content: "\f377"; }
+
+.fa-battery-three-quarters:before {
+  content: "\f241"; }
+
+.fa-bed:before {
+  content: "\f236"; }
+
+.fa-beer:before {
+  content: "\f0fc"; }
+
+.fa-behance:before {
+  content: "\f1b4"; }
+
+.fa-behance-square:before {
+  content: "\f1b5"; }
+
+.fa-bell:before {
+  content: "\f0f3"; }
+
+.fa-bell-school:before {
+  content: "\f5d5"; }
+
+.fa-bell-school-slash:before {
+  content: "\f5d6"; }
+
+.fa-bell-slash:before {
+  content: "\f1f6"; }
+
+.fa-bells:before {
+  content: "\f77f"; }
+
+.fa-bezier-curve:before {
+  content: "\f55b"; }
+
+.fa-bible:before {
+  content: "\f647"; }
+
+.fa-bicycle:before {
+  content: "\f206"; }
+
+.fa-bimobject:before {
+  content: "\f378"; }
+
+.fa-binoculars:before {
+  content: "\f1e5"; }
+
+.fa-biohazard:before {
+  content: "\f780"; }
+
+.fa-birthday-cake:before {
+  content: "\f1fd"; }
+
+.fa-bitbucket:before {
+  content: "\f171"; }
+
+.fa-bitcoin:before {
+  content: "\f379"; }
+
+.fa-bity:before {
+  content: "\f37a"; }
+
+.fa-black-tie:before {
+  content: "\f27e"; }
+
+.fa-blackberry:before {
+  content: "\f37b"; }
+
+.fa-blanket:before {
+  content: "\f498"; }
+
+.fa-blender:before {
+  content: "\f517"; }
+
+.fa-blender-phone:before {
+  content: "\f6b6"; }
+
+.fa-blind:before {
+  content: "\f29d"; }
+
+.fa-blog:before {
+  content: "\f781"; }
+
+.fa-blogger:before {
+  content: "\f37c"; }
+
+.fa-blogger-b:before {
+  content: "\f37d"; }
+
+.fa-bluetooth:before {
+  content: "\f293"; }
+
+.fa-bluetooth-b:before {
+  content: "\f294"; }
+
+.fa-bold:before {
+  content: "\f032"; }
+
+.fa-bolt:before {
+  content: "\f0e7"; }
+
+.fa-bomb:before {
+  content: "\f1e2"; }
+
+.fa-bone:before {
+  content: "\f5d7"; }
+
+.fa-bone-break:before {
+  content: "\f5d8"; }
+
+.fa-bong:before {
+  content: "\f55c"; }
+
+.fa-book:before {
+  content: "\f02d"; }
+
+.fa-book-alt:before {
+  content: "\f5d9"; }
+
+.fa-book-dead:before {
+  content: "\f6b7"; }
+
+.fa-book-heart:before {
+  content: "\f499"; }
+
+.fa-book-open:before {
+  content: "\f518"; }
+
+.fa-book-reader:before {
+  content: "\f5da"; }
+
+.fa-book-spells:before {
+  content: "\f6b8"; }
+
+.fa-bookmark:before {
+  content: "\f02e"; }
+
+.fa-books:before {
+  content: "\f5db"; }
+
+.fa-boot:before {
+  content: "\f782"; }
+
+.fa-booth-curtain:before {
+  content: "\f734"; }
+
+.fa-bow-arrow:before {
+  content: "\f6b9"; }
+
+.fa-bowling-ball:before {
+  content: "\f436"; }
+
+.fa-bowling-pins:before {
+  content: "\f437"; }
+
+.fa-box:before {
+  content: "\f466"; }
+
+.fa-box-alt:before {
+  content: "\f49a"; }
+
+.fa-box-ballot:before {
+  content: "\f735"; }
+
+.fa-box-check:before {
+  content: "\f467"; }
+
+.fa-box-fragile:before {
+  content: "\f49b"; }
+
+.fa-box-full:before {
+  content: "\f49c"; }
+
+.fa-box-heart:before {
+  content: "\f49d"; }
+
+.fa-box-open:before {
+  content: "\f49e"; }
+
+.fa-box-up:before {
+  content: "\f49f"; }
+
+.fa-box-usd:before {
+  content: "\f4a0"; }
+
+.fa-boxes:before {
+  content: "\f468"; }
+
+.fa-boxes-alt:before {
+  content: "\f4a1"; }
+
+.fa-boxing-glove:before {
+  content: "\f438"; }
+
+.fa-braille:before {
+  content: "\f2a1"; }
+
+.fa-brain:before {
+  content: "\f5dc"; }
+
+.fa-briefcase:before {
+  content: "\f0b1"; }
+
+.fa-briefcase-medical:before {
+  content: "\f469"; }
+
+.fa-broadcast-tower:before {
+  content: "\f519"; }
+
+.fa-broom:before {
+  content: "\f51a"; }
+
+.fa-browser:before {
+  content: "\f37e"; }
+
+.fa-brush:before {
+  content: "\f55d"; }
+
+.fa-btc:before {
+  content: "\f15a"; }
+
+.fa-bug:before {
+  content: "\f188"; }
+
+.fa-building:before {
+  content: "\f1ad"; }
+
+.fa-bullhorn:before {
+  content: "\f0a1"; }
+
+.fa-bullseye:before {
+  content: "\f140"; }
+
+.fa-bullseye-arrow:before {
+  content: "\f648"; }
+
+.fa-bullseye-pointer:before {
+  content: "\f649"; }
+
+.fa-burn:before {
+  content: "\f46a"; }
+
+.fa-buromobelexperte:before {
+  content: "\f37f"; }
+
+.fa-bus:before {
+  content: "\f207"; }
+
+.fa-bus-alt:before {
+  content: "\f55e"; }
+
+.fa-bus-school:before {
+  content: "\f5dd"; }
+
+.fa-business-time:before {
+  content: "\f64a"; }
+
+.fa-buysellads:before {
+  content: "\f20d"; }
+
+.fa-cabinet-filing:before {
+  content: "\f64b"; }
+
+.fa-calculator:before {
+  content: "\f1ec"; }
+
+.fa-calculator-alt:before {
+  content: "\f64c"; }
+
+.fa-calendar:before {
+  content: "\f133"; }
+
+.fa-calendar-alt:before {
+  content: "\f073"; }
+
+.fa-calendar-check:before {
+  content: "\f274"; }
+
+.fa-calendar-day:before {
+  content: "\f783"; }
+
+.fa-calendar-edit:before {
+  content: "\f333"; }
+
+.fa-calendar-exclamation:before {
+  content: "\f334"; }
+
+.fa-calendar-minus:before {
+  content: "\f272"; }
+
+.fa-calendar-plus:before {
+  content: "\f271"; }
+
+.fa-calendar-star:before {
+  content: "\f736"; }
+
+.fa-calendar-times:before {
+  content: "\f273"; }
+
+.fa-calendar-week:before {
+  content: "\f784"; }
+
+.fa-camera:before {
+  content: "\f030"; }
+
+.fa-camera-alt:before {
+  content: "\f332"; }
+
+.fa-camera-retro:before {
+  content: "\f083"; }
+
+.fa-campfire:before {
+  content: "\f6ba"; }
+
+.fa-campground:before {
+  content: "\f6bb"; }
+
+.fa-canadian-maple-leaf:before {
+  content: "\f785"; }
+
+.fa-candle-holder:before {
+  content: "\f6bc"; }
+
+.fa-candy-cane:before {
+  content: "\f786"; }
+
+.fa-candy-corn:before {
+  content: "\f6bd"; }
+
+.fa-cannabis:before {
+  content: "\f55f"; }
+
+.fa-capsules:before {
+  content: "\f46b"; }
+
+.fa-car:before {
+  content: "\f1b9"; }
+
+.fa-car-alt:before {
+  content: "\f5de"; }
+
+.fa-car-battery:before {
+  content: "\f5df"; }
+
+.fa-car-bump:before {
+  content: "\f5e0"; }
+
+.fa-car-crash:before {
+  content: "\f5e1"; }
+
+.fa-car-garage:before {
+  content: "\f5e2"; }
+
+.fa-car-mechanic:before {
+  content: "\f5e3"; }
+
+.fa-car-side:before {
+  content: "\f5e4"; }
+
+.fa-car-tilt:before {
+  content: "\f5e5"; }
+
+.fa-car-wash:before {
+  content: "\f5e6"; }
+
+.fa-caret-circle-down:before {
+  content: "\f32d"; }
+
+.fa-caret-circle-left:before {
+  content: "\f32e"; }
+
+.fa-caret-circle-right:before {
+  content: "\f330"; }
+
+.fa-caret-circle-up:before {
+  content: "\f331"; }
+
+.fa-caret-down:before {
+  content: "\f0d7"; }
+
+.fa-caret-left:before {
+  content: "\f0d9"; }
+
+.fa-caret-right:before {
+  content: "\f0da"; }
+
+.fa-caret-square-down:before {
+  content: "\f150"; }
+
+.fa-caret-square-left:before {
+  content: "\f191"; }
+
+.fa-caret-square-right:before {
+  content: "\f152"; }
+
+.fa-caret-square-up:before {
+  content: "\f151"; }
+
+.fa-caret-up:before {
+  content: "\f0d8"; }
+
+.fa-carrot:before {
+  content: "\f787"; }
+
+.fa-cart-arrow-down:before {
+  content: "\f218"; }
+
+.fa-cart-plus:before {
+  content: "\f217"; }
+
+.fa-cash-register:before {
+  content: "\f788"; }
+
+.fa-cat:before {
+  content: "\f6be"; }
+
+.fa-cauldron:before {
+  content: "\f6bf"; }
+
+.fa-cc-amazon-pay:before {
+  content: "\f42d"; }
+
+.fa-cc-amex:before {
+  content: "\f1f3"; }
+
+.fa-cc-apple-pay:before {
+  content: "\f416"; }
+
+.fa-cc-diners-club:before {
+  content: "\f24c"; }
+
+.fa-cc-discover:before {
+  content: "\f1f2"; }
+
+.fa-cc-jcb:before {
+  content: "\f24b"; }
+
+.fa-cc-mastercard:before {
+  content: "\f1f1"; }
+
+.fa-cc-paypal:before {
+  content: "\f1f4"; }
+
+.fa-cc-stripe:before {
+  content: "\f1f5"; }
+
+.fa-cc-visa:before {
+  content: "\f1f0"; }
+
+.fa-centercode:before {
+  content: "\f380"; }
+
+.fa-centos:before {
+  content: "\f789"; }
+
+.fa-certificate:before {
+  content: "\f0a3"; }
+
+.fa-chair:before {
+  content: "\f6c0"; }
+
+.fa-chair-office:before {
+  content: "\f6c1"; }
+
+.fa-chalkboard:before {
+  content: "\f51b"; }
+
+.fa-chalkboard-teacher:before {
+  content: "\f51c"; }
+
+.fa-charging-station:before {
+  content: "\f5e7"; }
+
+.fa-chart-area:before {
+  content: "\f1fe"; }
+
+.fa-chart-bar:before {
+  content: "\f080"; }
+
+.fa-chart-line:before {
+  content: "\f201"; }
+
+.fa-chart-line-down:before {
+  content: "\f64d"; }
+
+.fa-chart-network:before {
+  content: "\f78a"; }
+
+.fa-chart-pie:before {
+  content: "\f200"; }
+
+.fa-chart-pie-alt:before {
+  content: "\f64e"; }
+
+.fa-check:before {
+  content: "\f00c"; }
+
+.fa-check-circle:before {
+  content: "\f058"; }
+
+.fa-check-double:before {
+  content: "\f560"; }
+
+.fa-check-square:before {
+  content: "\f14a"; }
+
+.fa-chess:before {
+  content: "\f439"; }
+
+.fa-chess-bishop:before {
+  content: "\f43a"; }
+
+.fa-chess-bishop-alt:before {
+  content: "\f43b"; }
+
+.fa-chess-board:before {
+  content: "\f43c"; }
+
+.fa-chess-clock:before {
+  content: "\f43d"; }
+
+.fa-chess-clock-alt:before {
+  content: "\f43e"; }
+
+.fa-chess-king:before {
+  content: "\f43f"; }
+
+.fa-chess-king-alt:before {
+  content: "\f440"; }
+
+.fa-chess-knight:before {
+  content: "\f441"; }
+
+.fa-chess-knight-alt:before {
+  content: "\f442"; }
+
+.fa-chess-pawn:before {
+  content: "\f443"; }
+
+.fa-chess-pawn-alt:before {
+  content: "\f444"; }
+
+.fa-chess-queen:before {
+  content: "\f445"; }
+
+.fa-chess-queen-alt:before {
+  content: "\f446"; }
+
+.fa-chess-rook:before {
+  content: "\f447"; }
+
+.fa-chess-rook-alt:before {
+  content: "\f448"; }
+
+.fa-chevron-circle-down:before {
+  content: "\f13a"; }
+
+.fa-chevron-circle-left:before {
+  content: "\f137"; }
+
+.fa-chevron-circle-right:before {
+  content: "\f138"; }
+
+.fa-chevron-circle-up:before {
+  content: "\f139"; }
+
+.fa-chevron-double-down:before {
+  content: "\f322"; }
+
+.fa-chevron-double-left:before {
+  content: "\f323"; }
+
+.fa-chevron-double-right:before {
+  content: "\f324"; }
+
+.fa-chevron-double-up:before {
+  content: "\f325"; }
+
+.fa-chevron-down:before {
+  content: "\f078"; }
+
+.fa-chevron-left:before {
+  content: "\f053"; }
+
+.fa-chevron-right:before {
+  content: "\f054"; }
+
+.fa-chevron-square-down:before {
+  content: "\f329"; }
+
+.fa-chevron-square-left:before {
+  content: "\f32a"; }
+
+.fa-chevron-square-right:before {
+  content: "\f32b"; }
+
+.fa-chevron-square-up:before {
+  content: "\f32c"; }
+
+.fa-chevron-up:before {
+  content: "\f077"; }
+
+.fa-child:before {
+  content: "\f1ae"; }
+
+.fa-chimney:before {
+  content: "\f78b"; }
+
+.fa-chrome:before {
+  content: "\f268"; }
+
+.fa-church:before {
+  content: "\f51d"; }
+
+.fa-circle:before {
+  content: "\f111"; }
+
+.fa-circle-notch:before {
+  content: "\f1ce"; }
+
+.fa-city:before {
+  content: "\f64f"; }
+
+.fa-claw-marks:before {
+  content: "\f6c2"; }
+
+.fa-clipboard:before {
+  content: "\f328"; }
+
+.fa-clipboard-check:before {
+  content: "\f46c"; }
+
+.fa-clipboard-list:before {
+  content: "\f46d"; }
+
+.fa-clipboard-list-check:before {
+  content: "\f737"; }
+
+.fa-clipboard-prescription:before {
+  content: "\f5e8"; }
+
+.fa-clock:before {
+  content: "\f017"; }
+
+.fa-clone:before {
+  content: "\f24d"; }
+
+.fa-closed-captioning:before {
+  content: "\f20a"; }
+
+.fa-cloud:before {
+  content: "\f0c2"; }
+
+.fa-cloud-download:before {
+  content: "\f0ed"; }
+
+.fa-cloud-download-alt:before {
+  content: "\f381"; }
+
+.fa-cloud-drizzle:before {
+  content: "\f738"; }
+
+.fa-cloud-hail:before {
+  content: "\f739"; }
+
+.fa-cloud-hail-mixed:before {
+  content: "\f73a"; }
+
+.fa-cloud-meatball:before {
+  content: "\f73b"; }
+
+.fa-cloud-moon:before {
+  content: "\f6c3"; }
+
+.fa-cloud-moon-rain:before {
+  content: "\f73c"; }
+
+.fa-cloud-rain:before {
+  content: "\f73d"; }
+
+.fa-cloud-rainbow:before {
+  content: "\f73e"; }
+
+.fa-cloud-showers:before {
+  content: "\f73f"; }
+
+.fa-cloud-showers-heavy:before {
+  content: "\f740"; }
+
+.fa-cloud-sleet:before {
+  content: "\f741"; }
+
+.fa-cloud-snow:before {
+  content: "\f742"; }
+
+.fa-cloud-sun:before {
+  content: "\f6c4"; }
+
+.fa-cloud-sun-rain:before {
+  content: "\f743"; }
+
+.fa-cloud-upload:before {
+  content: "\f0ee"; }
+
+.fa-cloud-upload-alt:before {
+  content: "\f382"; }
+
+.fa-clouds:before {
+  content: "\f744"; }
+
+.fa-clouds-moon:before {
+  content: "\f745"; }
+
+.fa-clouds-sun:before {
+  content: "\f746"; }
+
+.fa-cloudscale:before {
+  content: "\f383"; }
+
+.fa-cloudsmith:before {
+  content: "\f384"; }
+
+.fa-cloudversify:before {
+  content: "\f385"; }
+
+.fa-club:before {
+  content: "\f327"; }
+
+.fa-cocktail:before {
+  content: "\f561"; }
+
+.fa-code:before {
+  content: "\f121"; }
+
+.fa-code-branch:before {
+  content: "\f126"; }
+
+.fa-code-commit:before {
+  content: "\f386"; }
+
+.fa-code-merge:before {
+  content: "\f387"; }
+
+.fa-codepen:before {
+  content: "\f1cb"; }
+
+.fa-codiepie:before {
+  content: "\f284"; }
+
+.fa-coffee:before {
+  content: "\f0f4"; }
+
+.fa-coffee-togo:before {
+  content: "\f6c5"; }
+
+.fa-coffin:before {
+  content: "\f6c6"; }
+
+.fa-cog:before {
+  content: "\f013"; }
+
+.fa-cogs:before {
+  content: "\f085"; }
+
+.fa-coins:before {
+  content: "\f51e"; }
+
+.fa-columns:before {
+  content: "\f0db"; }
+
+.fa-comment:before {
+  content: "\f075"; }
+
+.fa-comment-alt:before {
+  content: "\f27a"; }
+
+.fa-comment-alt-check:before {
+  content: "\f4a2"; }
+
+.fa-comment-alt-dollar:before {
+  content: "\f650"; }
+
+.fa-comment-alt-dots:before {
+  content: "\f4a3"; }
+
+.fa-comment-alt-edit:before {
+  content: "\f4a4"; }
+
+.fa-comment-alt-exclamation:before {
+  content: "\f4a5"; }
+
+.fa-comment-alt-lines:before {
+  content: "\f4a6"; }
+
+.fa-comment-alt-minus:before {
+  content: "\f4a7"; }
+
+.fa-comment-alt-plus:before {
+  content: "\f4a8"; }
+
+.fa-comment-alt-slash:before {
+  content: "\f4a9"; }
+
+.fa-comment-alt-smile:before {
+  content: "\f4aa"; }
+
+.fa-comment-alt-times:before {
+  content: "\f4ab"; }
+
+.fa-comment-check:before {
+  content: "\f4ac"; }
+
+.fa-comment-dollar:before {
+  content: "\f651"; }
+
+.fa-comment-dots:before {
+  content: "\f4ad"; }
+
+.fa-comment-edit:before {
+  content: "\f4ae"; }
+
+.fa-comment-exclamation:before {
+  content: "\f4af"; }
+
+.fa-comment-lines:before {
+  content: "\f4b0"; }
+
+.fa-comment-minus:before {
+  content: "\f4b1"; }
+
+.fa-comment-plus:before {
+  content: "\f4b2"; }
+
+.fa-comment-slash:before {
+  content: "\f4b3"; }
+
+.fa-comment-smile:before {
+  content: "\f4b4"; }
+
+.fa-comment-times:before {
+  content: "\f4b5"; }
+
+.fa-comments:before {
+  content: "\f086"; }
+
+.fa-comments-alt:before {
+  content: "\f4b6"; }
+
+.fa-comments-alt-dollar:before {
+  content: "\f652"; }
+
+.fa-comments-dollar:before {
+  content: "\f653"; }
+
+.fa-compact-disc:before {
+  content: "\f51f"; }
+
+.fa-compass:before {
+  content: "\f14e"; }
+
+.fa-compass-slash:before {
+  content: "\f5e9"; }
+
+.fa-compress:before {
+  content: "\f066"; }
+
+.fa-compress-alt:before {
+  content: "\f422"; }
+
+.fa-compress-arrows-alt:before {
+  content: "\f78c"; }
+
+.fa-compress-wide:before {
+  content: "\f326"; }
+
+.fa-concierge-bell:before {
+  content: "\f562"; }
+
+.fa-confluence:before {
+  content: "\f78d"; }
+
+.fa-connectdevelop:before {
+  content: "\f20e"; }
+
+.fa-container-storage:before {
+  content: "\f4b7"; }
+
+.fa-contao:before {
+  content: "\f26d"; }
+
+.fa-conveyor-belt:before {
+  content: "\f46e"; }
+
+.fa-conveyor-belt-alt:before {
+  content: "\f46f"; }
+
+.fa-cookie:before {
+  content: "\f563"; }
+
+.fa-cookie-bite:before {
+  content: "\f564"; }
+
+.fa-copy:before {
+  content: "\f0c5"; }
+
+.fa-copyright:before {
+  content: "\f1f9"; }
+
+.fa-corn:before {
+  content: "\f6c7"; }
+
+.fa-couch:before {
+  content: "\f4b8"; }
+
+.fa-cow:before {
+  content: "\f6c8"; }
+
+.fa-cpanel:before {
+  content: "\f388"; }
+
+.fa-creative-commons:before {
+  content: "\f25e"; }
+
+.fa-creative-commons-by:before {
+  content: "\f4e7"; }
+
+.fa-creative-commons-nc:before {
+  content: "\f4e8"; }
+
+.fa-creative-commons-nc-eu:before {
+  content: "\f4e9"; }
+
+.fa-creative-commons-nc-jp:before {
+  content: "\f4ea"; }
+
+.fa-creative-commons-nd:before {
+  content: "\f4eb"; }
+
+.fa-creative-commons-pd:before {
+  content: "\f4ec"; }
+
+.fa-creative-commons-pd-alt:before {
+  content: "\f4ed"; }
+
+.fa-creative-commons-remix:before {
+  content: "\f4ee"; }
+
+.fa-creative-commons-sa:before {
+  content: "\f4ef"; }
+
+.fa-creative-commons-sampling:before {
+  content: "\f4f0"; }
+
+.fa-creative-commons-sampling-plus:before {
+  content: "\f4f1"; }
+
+.fa-creative-commons-share:before {
+  content: "\f4f2"; }
+
+.fa-creative-commons-zero:before {
+  content: "\f4f3"; }
+
+.fa-credit-card:before {
+  content: "\f09d"; }
+
+.fa-credit-card-blank:before {
+  content: "\f389"; }
+
+.fa-credit-card-front:before {
+  content: "\f38a"; }
+
+.fa-cricket:before {
+  content: "\f449"; }
+
+.fa-critical-role:before {
+  content: "\f6c9"; }
+
+.fa-crop:before {
+  content: "\f125"; }
+
+.fa-crop-alt:before {
+  content: "\f565"; }
+
+.fa-cross:before {
+  content: "\f654"; }
+
+.fa-crosshairs:before {
+  content: "\f05b"; }
+
+.fa-crow:before {
+  content: "\f520"; }
+
+.fa-crown:before {
+  content: "\f521"; }
+
+.fa-css3:before {
+  content: "\f13c"; }
+
+.fa-css3-alt:before {
+  content: "\f38b"; }
+
+.fa-cube:before {
+  content: "\f1b2"; }
+
+.fa-cubes:before {
+  content: "\f1b3"; }
+
+.fa-curling:before {
+  content: "\f44a"; }
+
+.fa-cut:before {
+  content: "\f0c4"; }
+
+.fa-cuttlefish:before {
+  content: "\f38c"; }
+
+.fa-d-and-d:before {
+  content: "\f38d"; }
+
+.fa-d-and-d-beyond:before {
+  content: "\f6ca"; }
+
+.fa-dagger:before {
+  content: "\f6cb"; }
+
+.fa-dashcube:before {
+  content: "\f210"; }
+
+.fa-database:before {
+  content: "\f1c0"; }
+
+.fa-deaf:before {
+  content: "\f2a4"; }
+
+.fa-deer:before {
+  content: "\f78e"; }
+
+.fa-deer-rudolph:before {
+  content: "\f78f"; }
+
+.fa-delicious:before {
+  content: "\f1a5"; }
+
+.fa-democrat:before {
+  content: "\f747"; }
+
+.fa-deploydog:before {
+  content: "\f38e"; }
+
+.fa-deskpro:before {
+  content: "\f38f"; }
+
+.fa-desktop:before {
+  content: "\f108"; }
+
+.fa-desktop-alt:before {
+  content: "\f390"; }
+
+.fa-dev:before {
+  content: "\f6cc"; }
+
+.fa-deviantart:before {
+  content: "\f1bd"; }
+
+.fa-dewpoint:before {
+  content: "\f748"; }
+
+.fa-dharmachakra:before {
+  content: "\f655"; }
+
+.fa-dhl:before {
+  content: "\f790"; }
+
+.fa-diagnoses:before {
+  content: "\f470"; }
+
+.fa-diamond:before {
+  content: "\f219"; }
+
+.fa-diaspora:before {
+  content: "\f791"; }
+
+.fa-dice:before {
+  content: "\f522"; }
+
+.fa-dice-d10:before {
+  content: "\f6cd"; }
+
+.fa-dice-d12:before {
+  content: "\f6ce"; }
+
+.fa-dice-d20:before {
+  content: "\f6cf"; }
+
+.fa-dice-d4:before {
+  content: "\f6d0"; }
+
+.fa-dice-d6:before {
+  content: "\f6d1"; }
+
+.fa-dice-d8:before {
+  content: "\f6d2"; }
+
+.fa-dice-five:before {
+  content: "\f523"; }
+
+.fa-dice-four:before {
+  content: "\f524"; }
+
+.fa-dice-one:before {
+  content: "\f525"; }
+
+.fa-dice-six:before {
+  content: "\f526"; }
+
+.fa-dice-three:before {
+  content: "\f527"; }
+
+.fa-dice-two:before {
+  content: "\f528"; }
+
+.fa-digg:before {
+  content: "\f1a6"; }
+
+.fa-digital-ocean:before {
+  content: "\f391"; }
+
+.fa-digital-tachograph:before {
+  content: "\f566"; }
+
+.fa-diploma:before {
+  content: "\f5ea"; }
+
+.fa-directions:before {
+  content: "\f5eb"; }
+
+.fa-discord:before {
+  content: "\f392"; }
+
+.fa-discourse:before {
+  content: "\f393"; }
+
+.fa-divide:before {
+  content: "\f529"; }
+
+.fa-dizzy:before {
+  content: "\f567"; }
+
+.fa-dna:before {
+  content: "\f471"; }
+
+.fa-do-not-enter:before {
+  content: "\f5ec"; }
+
+.fa-dochub:before {
+  content: "\f394"; }
+
+.fa-docker:before {
+  content: "\f395"; }
+
+.fa-dog:before {
+  content: "\f6d3"; }
+
+.fa-dog-leashed:before {
+  content: "\f6d4"; }
+
+.fa-dollar-sign:before {
+  content: "\f155"; }
+
+.fa-dolly:before {
+  content: "\f472"; }
+
+.fa-dolly-empty:before {
+  content: "\f473"; }
+
+.fa-dolly-flatbed:before {
+  content: "\f474"; }
+
+.fa-dolly-flatbed-alt:before {
+  content: "\f475"; }
+
+.fa-dolly-flatbed-empty:before {
+  content: "\f476"; }
+
+.fa-donate:before {
+  content: "\f4b9"; }
+
+.fa-door-closed:before {
+  content: "\f52a"; }
+
+.fa-door-open:before {
+  content: "\f52b"; }
+
+.fa-dot-circle:before {
+  content: "\f192"; }
+
+.fa-dove:before {
+  content: "\f4ba"; }
+
+.fa-download:before {
+  content: "\f019"; }
+
+.fa-draft2digital:before {
+  content: "\f396"; }
+
+.fa-drafting-compass:before {
+  content: "\f568"; }
+
+.fa-dragon:before {
+  content: "\f6d5"; }
+
+.fa-draw-circle:before {
+  content: "\f5ed"; }
+
+.fa-draw-polygon:before {
+  content: "\f5ee"; }
+
+.fa-draw-square:before {
+  content: "\f5ef"; }
+
+.fa-dreidel:before {
+  content: "\f792"; }
+
+.fa-dribbble:before {
+  content: "\f17d"; }
+
+.fa-dribbble-square:before {
+  content: "\f397"; }
+
+.fa-dropbox:before {
+  content: "\f16b"; }
+
+.fa-drum:before {
+  content: "\f569"; }
+
+.fa-drum-steelpan:before {
+  content: "\f56a"; }
+
+.fa-drumstick:before {
+  content: "\f6d6"; }
+
+.fa-drumstick-bite:before {
+  content: "\f6d7"; }
+
+.fa-drupal:before {
+  content: "\f1a9"; }
+
+.fa-duck:before {
+  content: "\f6d8"; }
+
+.fa-dumbbell:before {
+  content: "\f44b"; }
+
+.fa-dumpster:before {
+  content: "\f793"; }
+
+.fa-dumpster-fire:before {
+  content: "\f794"; }
+
+.fa-dungeon:before {
+  content: "\f6d9"; }
+
+.fa-dyalog:before {
+  content: "\f399"; }
+
+.fa-ear:before {
+  content: "\f5f0"; }
+
+.fa-ear-muffs:before {
+  content: "\f795"; }
+
+.fa-earlybirds:before {
+  content: "\f39a"; }
+
+.fa-ebay:before {
+  content: "\f4f4"; }
+
+.fa-eclipse:before {
+  content: "\f749"; }
+
+.fa-eclipse-alt:before {
+  content: "\f74a"; }
+
+.fa-edge:before {
+  content: "\f282"; }
+
+.fa-edit:before {
+  content: "\f044"; }
+
+.fa-eject:before {
+  content: "\f052"; }
+
+.fa-elementor:before {
+  content: "\f430"; }
+
+.fa-elephant:before {
+  content: "\f6da"; }
+
+.fa-ellipsis-h:before {
+  content: "\f141"; }
+
+.fa-ellipsis-h-alt:before {
+  content: "\f39b"; }
+
+.fa-ellipsis-v:before {
+  content: "\f142"; }
+
+.fa-ellipsis-v-alt:before {
+  content: "\f39c"; }
+
+.fa-ello:before {
+  content: "\f5f1"; }
+
+.fa-ember:before {
+  content: "\f423"; }
+
+.fa-empire:before {
+  content: "\f1d1"; }
+
+.fa-empty-set:before {
+  content: "\f656"; }
+
+.fa-engine-warning:before {
+  content: "\f5f2"; }
+
+.fa-envelope:before {
+  content: "\f0e0"; }
+
+.fa-envelope-open:before {
+  content: "\f2b6"; }
+
+.fa-envelope-open-dollar:before {
+  content: "\f657"; }
+
+.fa-envelope-open-text:before {
+  content: "\f658"; }
+
+.fa-envelope-square:before {
+  content: "\f199"; }
+
+.fa-envira:before {
+  content: "\f299"; }
+
+.fa-equals:before {
+  content: "\f52c"; }
+
+.fa-eraser:before {
+  content: "\f12d"; }
+
+.fa-erlang:before {
+  content: "\f39d"; }
+
+.fa-ethereum:before {
+  content: "\f42e"; }
+
+.fa-ethernet:before {
+  content: "\f796"; }
+
+.fa-etsy:before {
+  content: "\f2d7"; }
+
+.fa-euro-sign:before {
+  content: "\f153"; }
+
+.fa-exchange:before {
+  content: "\f0ec"; }
+
+.fa-exchange-alt:before {
+  content: "\f362"; }
+
+.fa-exclamation:before {
+  content: "\f12a"; }
+
+.fa-exclamation-circle:before {
+  content: "\f06a"; }
+
+.fa-exclamation-square:before {
+  content: "\f321"; }
+
+.fa-exclamation-triangle:before {
+  content: "\f071"; }
+
+.fa-expand:before {
+  content: "\f065"; }
+
+.fa-expand-alt:before {
+  content: "\f424"; }
+
+.fa-expand-arrows:before {
+  content: "\f31d"; }
+
+.fa-expand-arrows-alt:before {
+  content: "\f31e"; }
+
+.fa-expand-wide:before {
+  content: "\f320"; }
+
+.fa-expeditedssl:before {
+  content: "\f23e"; }
+
+.fa-external-link:before {
+  content: "\f08e"; }
+
+.fa-external-link-alt:before {
+  content: "\f35d"; }
+
+.fa-external-link-square:before {
+  content: "\f14c"; }
+
+.fa-external-link-square-alt:before {
+  content: "\f360"; }
+
+.fa-eye:before {
+  content: "\f06e"; }
+
+.fa-eye-dropper:before {
+  content: "\f1fb"; }
+
+.fa-eye-evil:before {
+  content: "\f6db"; }
+
+.fa-eye-slash:before {
+  content: "\f070"; }
+
+.fa-facebook:before {
+  content: "\f09a"; }
+
+.fa-facebook-f:before {
+  content: "\f39e"; }
+
+.fa-facebook-messenger:before {
+  content: "\f39f"; }
+
+.fa-facebook-square:before {
+  content: "\f082"; }
+
+.fa-fantasy-flight-games:before {
+  content: "\f6dc"; }
+
+.fa-fast-backward:before {
+  content: "\f049"; }
+
+.fa-fast-forward:before {
+  content: "\f050"; }
+
+.fa-fax:before {
+  content: "\f1ac"; }
+
+.fa-feather:before {
+  content: "\f52d"; }
+
+.fa-feather-alt:before {
+  content: "\f56b"; }
+
+.fa-fedex:before {
+  content: "\f797"; }
+
+.fa-fedora:before {
+  content: "\f798"; }
+
+.fa-female:before {
+  content: "\f182"; }
+
+.fa-field-hockey:before {
+  content: "\f44c"; }
+
+.fa-fighter-jet:before {
+  content: "\f0fb"; }
+
+.fa-figma:before {
+  content: "\f799"; }
+
+.fa-file:before {
+  content: "\f15b"; }
+
+.fa-file-alt:before {
+  content: "\f15c"; }
+
+.fa-file-archive:before {
+  content: "\f1c6"; }
+
+.fa-file-audio:before {
+  content: "\f1c7"; }
+
+.fa-file-certificate:before {
+  content: "\f5f3"; }
+
+.fa-file-chart-line:before {
+  content: "\f659"; }
+
+.fa-file-chart-pie:before {
+  content: "\f65a"; }
+
+.fa-file-check:before {
+  content: "\f316"; }
+
+.fa-file-code:before {
+  content: "\f1c9"; }
+
+.fa-file-contract:before {
+  content: "\f56c"; }
+
+.fa-file-csv:before {
+  content: "\f6dd"; }
+
+.fa-file-download:before {
+  content: "\f56d"; }
+
+.fa-file-edit:before {
+  content: "\f31c"; }
+
+.fa-file-excel:before {
+  content: "\f1c3"; }
+
+.fa-file-exclamation:before {
+  content: "\f31a"; }
+
+.fa-file-export:before {
+  content: "\f56e"; }
+
+.fa-file-image:before {
+  content: "\f1c5"; }
+
+.fa-file-import:before {
+  content: "\f56f"; }
+
+.fa-file-invoice:before {
+  content: "\f570"; }
+
+.fa-file-invoice-dollar:before {
+  content: "\f571"; }
+
+.fa-file-medical:before {
+  content: "\f477"; }
+
+.fa-file-medical-alt:before {
+  content: "\f478"; }
+
+.fa-file-minus:before {
+  content: "\f318"; }
+
+.fa-file-pdf:before {
+  content: "\f1c1"; }
+
+.fa-file-plus:before {
+  content: "\f319"; }
+
+.fa-file-powerpoint:before {
+  content: "\f1c4"; }
+
+.fa-file-prescription:before {
+  content: "\f572"; }
+
+.fa-file-signature:before {
+  content: "\f573"; }
+
+.fa-file-spreadsheet:before {
+  content: "\f65b"; }
+
+.fa-file-times:before {
+  content: "\f317"; }
+
+.fa-file-upload:before {
+  content: "\f574"; }
+
+.fa-file-user:before {
+  content: "\f65c"; }
+
+.fa-file-video:before {
+  content: "\f1c8"; }
+
+.fa-file-word:before {
+  content: "\f1c2"; }
+
+.fa-fill:before {
+  content: "\f575"; }
+
+.fa-fill-drip:before {
+  content: "\f576"; }
+
+.fa-film:before {
+  content: "\f008"; }
+
+.fa-film-alt:before {
+  content: "\f3a0"; }
+
+.fa-filter:before {
+  content: "\f0b0"; }
+
+.fa-fingerprint:before {
+  content: "\f577"; }
+
+.fa-fire:before {
+  content: "\f06d"; }
+
+.fa-fire-alt:before {
+  content: "\f7e4"; }
+
+.fa-fire-extinguisher:before {
+  content: "\f134"; }
+
+.fa-fire-smoke:before {
+  content: "\f74b"; }
+
+.fa-firefox:before {
+  content: "\f269"; }
+
+.fa-fireplace:before {
+  content: "\f79a"; }
+
+.fa-first-aid:before {
+  content: "\f479"; }
+
+.fa-first-order:before {
+  content: "\f2b0"; }
+
+.fa-first-order-alt:before {
+  content: "\f50a"; }
+
+.fa-firstdraft:before {
+  content: "\f3a1"; }
+
+.fa-fish:before {
+  content: "\f578"; }
+
+.fa-fist-raised:before {
+  content: "\f6de"; }
+
+.fa-flag:before {
+  content: "\f024"; }
+
+.fa-flag-alt:before {
+  content: "\f74c"; }
+
+.fa-flag-checkered:before {
+  content: "\f11e"; }
+
+.fa-flag-usa:before {
+  content: "\f74d"; }
+
+.fa-flame:before {
+  content: "\f6df"; }
+
+.fa-flask:before {
+  content: "\f0c3"; }
+
+.fa-flask-poison:before {
+  content: "\f6e0"; }
+
+.fa-flask-potion:before {
+  content: "\f6e1"; }
+
+.fa-flickr:before {
+  content: "\f16e"; }
+
+.fa-flipboard:before {
+  content: "\f44d"; }
+
+.fa-flushed:before {
+  content: "\f579"; }
+
+.fa-fly:before {
+  content: "\f417"; }
+
+.fa-fog:before {
+  content: "\f74e"; }
+
+.fa-folder:before {
+  content: "\f07b"; }
+
+.fa-folder-minus:before {
+  content: "\f65d"; }
+
+.fa-folder-open:before {
+  content: "\f07c"; }
+
+.fa-folder-plus:before {
+  content: "\f65e"; }
+
+.fa-folder-times:before {
+  content: "\f65f"; }
+
+.fa-folders:before {
+  content: "\f660"; }
+
+.fa-font:before {
+  content: "\f031"; }
+
+.fa-font-awesome:before {
+  content: "\f2b4"; }
+
+.fa-font-awesome-alt:before {
+  content: "\f35c"; }
+
+.fa-font-awesome-flag:before {
+  content: "\f425"; }
+
+.fa-font-awesome-logo-full:before {
+  content: "\f4e6"; }
+
+.fa-fonticons:before {
+  content: "\f280"; }
+
+.fa-fonticons-fi:before {
+  content: "\f3a2"; }
+
+.fa-football-ball:before {
+  content: "\f44e"; }
+
+.fa-football-helmet:before {
+  content: "\f44f"; }
+
+.fa-forklift:before {
+  content: "\f47a"; }
+
+.fa-fort-awesome:before {
+  content: "\f286"; }
+
+.fa-fort-awesome-alt:before {
+  content: "\f3a3"; }
+
+.fa-forumbee:before {
+  content: "\f211"; }
+
+.fa-forward:before {
+  content: "\f04e"; }
+
+.fa-foursquare:before {
+  content: "\f180"; }
+
+.fa-fragile:before {
+  content: "\f4bb"; }
+
+.fa-free-code-camp:before {
+  content: "\f2c5"; }
+
+.fa-freebsd:before {
+  content: "\f3a4"; }
+
+.fa-frog:before {
+  content: "\f52e"; }
+
+.fa-frosty-head:before {
+  content: "\f79b"; }
+
+.fa-frown:before {
+  content: "\f119"; }
+
+.fa-frown-open:before {
+  content: "\f57a"; }
+
+.fa-fulcrum:before {
+  content: "\f50b"; }
+
+.fa-function:before {
+  content: "\f661"; }
+
+.fa-funnel-dollar:before {
+  content: "\f662"; }
+
+.fa-futbol:before {
+  content: "\f1e3"; }
+
+.fa-galactic-republic:before {
+  content: "\f50c"; }
+
+.fa-galactic-senate:before {
+  content: "\f50d"; }
+
+.fa-gamepad:before {
+  content: "\f11b"; }
+
+.fa-gas-pump:before {
+  content: "\f52f"; }
+
+.fa-gas-pump-slash:before {
+  content: "\f5f4"; }
+
+.fa-gavel:before {
+  content: "\f0e3"; }
+
+.fa-gem:before {
+  content: "\f3a5"; }
+
+.fa-genderless:before {
+  content: "\f22d"; }
+
+.fa-get-pocket:before {
+  content: "\f265"; }
+
+.fa-gg:before {
+  content: "\f260"; }
+
+.fa-gg-circle:before {
+  content: "\f261"; }
+
+.fa-ghost:before {
+  content: "\f6e2"; }
+
+.fa-gift:before {
+  content: "\f06b"; }
+
+.fa-gift-card:before {
+  content: "\f663"; }
+
+.fa-gifts:before {
+  content: "\f79c"; }
+
+.fa-gingerbread-man:before {
+  content: "\f79d"; }
+
+.fa-git:before {
+  content: "\f1d3"; }
+
+.fa-git-square:before {
+  content: "\f1d2"; }
+
+.fa-github:before {
+  content: "\f09b"; }
+
+.fa-github-alt:before {
+  content: "\f113"; }
+
+.fa-github-square:before {
+  content: "\f092"; }
+
+.fa-gitkraken:before {
+  content: "\f3a6"; }
+
+.fa-gitlab:before {
+  content: "\f296"; }
+
+.fa-gitter:before {
+  content: "\f426"; }
+
+.fa-glass-champagne:before {
+  content: "\f79e"; }
+
+.fa-glass-cheers:before {
+  content: "\f79f"; }
+
+.fa-glass-martini:before {
+  content: "\f000"; }
+
+.fa-glass-martini-alt:before {
+  content: "\f57b"; }
+
+.fa-glass-whiskey:before {
+  content: "\f7a0"; }
+
+.fa-glass-whiskey-rocks:before {
+  content: "\f7a1"; }
+
+.fa-glasses:before {
+  content: "\f530"; }
+
+.fa-glasses-alt:before {
+  content: "\f5f5"; }
+
+.fa-glide:before {
+  content: "\f2a5"; }
+
+.fa-glide-g:before {
+  content: "\f2a6"; }
+
+.fa-globe:before {
+  content: "\f0ac"; }
+
+.fa-globe-africa:before {
+  content: "\f57c"; }
+
+.fa-globe-americas:before {
+  content: "\f57d"; }
+
+.fa-globe-asia:before {
+  content: "\f57e"; }
+
+.fa-globe-europe:before {
+  content: "\f7a2"; }
+
+.fa-globe-snow:before {
+  content: "\f7a3"; }
+
+.fa-globe-stand:before {
+  content: "\f5f6"; }
+
+.fa-gofore:before {
+  content: "\f3a7"; }
+
+.fa-golf-ball:before {
+  content: "\f450"; }
+
+.fa-golf-club:before {
+  content: "\f451"; }
+
+.fa-goodreads:before {
+  content: "\f3a8"; }
+
+.fa-goodreads-g:before {
+  content: "\f3a9"; }
+
+.fa-google:before {
+  content: "\f1a0"; }
+
+.fa-google-drive:before {
+  content: "\f3aa"; }
+
+.fa-google-play:before {
+  content: "\f3ab"; }
+
+.fa-google-plus:before {
+  content: "\f2b3"; }
+
+.fa-google-plus-g:before {
+  content: "\f0d5"; }
+
+.fa-google-plus-square:before {
+  content: "\f0d4"; }
+
+.fa-google-wallet:before {
+  content: "\f1ee"; }
+
+.fa-gopuram:before {
+  content: "\f664"; }
+
+.fa-graduation-cap:before {
+  content: "\f19d"; }
+
+.fa-gratipay:before {
+  content: "\f184"; }
+
+.fa-grav:before {
+  content: "\f2d6"; }
+
+.fa-greater-than:before {
+  content: "\f531"; }
+
+.fa-greater-than-equal:before {
+  content: "\f532"; }
+
+.fa-grimace:before {
+  content: "\f57f"; }
+
+.fa-grin:before {
+  content: "\f580"; }
+
+.fa-grin-alt:before {
+  content: "\f581"; }
+
+.fa-grin-beam:before {
+  content: "\f582"; }
+
+.fa-grin-beam-sweat:before {
+  content: "\f583"; }
+
+.fa-grin-hearts:before {
+  content: "\f584"; }
+
+.fa-grin-squint:before {
+  content: "\f585"; }
+
+.fa-grin-squint-tears:before {
+  content: "\f586"; }
+
+.fa-grin-stars:before {
+  content: "\f587"; }
+
+.fa-grin-tears:before {
+  content: "\f588"; }
+
+.fa-grin-tongue:before {
+  content: "\f589"; }
+
+.fa-grin-tongue-squint:before {
+  content: "\f58a"; }
+
+.fa-grin-tongue-wink:before {
+  content: "\f58b"; }
+
+.fa-grin-wink:before {
+  content: "\f58c"; }
+
+.fa-grip-horizontal:before {
+  content: "\f58d"; }
+
+.fa-grip-lines:before {
+  content: "\f7a4"; }
+
+.fa-grip-lines-vertical:before {
+  content: "\f7a5"; }
+
+.fa-grip-vertical:before {
+  content: "\f58e"; }
+
+.fa-gripfire:before {
+  content: "\f3ac"; }
+
+.fa-grunt:before {
+  content: "\f3ad"; }
+
+.fa-guitar:before {
+  content: "\f7a6"; }
+
+.fa-gulp:before {
+  content: "\f3ae"; }
+
+.fa-h-square:before {
+  content: "\f0fd"; }
+
+.fa-h1:before {
+  content: "\f313"; }
+
+.fa-h2:before {
+  content: "\f314"; }
+
+.fa-h3:before {
+  content: "\f315"; }
+
+.fa-hacker-news:before {
+  content: "\f1d4"; }
+
+.fa-hacker-news-square:before {
+  content: "\f3af"; }
+
+.fa-hackerrank:before {
+  content: "\f5f7"; }
+
+.fa-hammer:before {
+  content: "\f6e3"; }
+
+.fa-hammer-war:before {
+  content: "\f6e4"; }
+
+.fa-hamsa:before {
+  content: "\f665"; }
+
+.fa-hand-heart:before {
+  content: "\f4bc"; }
+
+.fa-hand-holding:before {
+  content: "\f4bd"; }
+
+.fa-hand-holding-box:before {
+  content: "\f47b"; }
+
+.fa-hand-holding-heart:before {
+  content: "\f4be"; }
+
+.fa-hand-holding-magic:before {
+  content: "\f6e5"; }
+
+.fa-hand-holding-seedling:before {
+  content: "\f4bf"; }
+
+.fa-hand-holding-usd:before {
+  content: "\f4c0"; }
+
+.fa-hand-holding-water:before {
+  content: "\f4c1"; }
+
+.fa-hand-lizard:before {
+  content: "\f258"; }
+
+.fa-hand-paper:before {
+  content: "\f256"; }
+
+.fa-hand-peace:before {
+  content: "\f25b"; }
+
+.fa-hand-point-down:before {
+  content: "\f0a7"; }
+
+.fa-hand-point-left:before {
+  content: "\f0a5"; }
+
+.fa-hand-point-right:before {
+  content: "\f0a4"; }
+
+.fa-hand-point-up:before {
+  content: "\f0a6"; }
+
+.fa-hand-pointer:before {
+  content: "\f25a"; }
+
+.fa-hand-receiving:before {
+  content: "\f47c"; }
+
+.fa-hand-rock:before {
+  content: "\f255"; }
+
+.fa-hand-scissors:before {
+  content: "\f257"; }
+
+.fa-hand-spock:before {
+  content: "\f259"; }
+
+.fa-hands:before {
+  content: "\f4c2"; }
+
+.fa-hands-heart:before {
+  content: "\f4c3"; }
+
+.fa-hands-helping:before {
+  content: "\f4c4"; }
+
+.fa-hands-usd:before {
+  content: "\f4c5"; }
+
+.fa-handshake:before {
+  content: "\f2b5"; }
+
+.fa-handshake-alt:before {
+  content: "\f4c6"; }
+
+.fa-hanukiah:before {
+  content: "\f6e6"; }
+
+.fa-hashtag:before {
+  content: "\f292"; }
+
+.fa-hat-santa:before {
+  content: "\f7a7"; }
+
+.fa-hat-winter:before {
+  content: "\f7a8"; }
+
+.fa-hat-witch:before {
+  content: "\f6e7"; }
+
+.fa-hat-wizard:before {
+  content: "\f6e8"; }
+
+.fa-haykal:before {
+  content: "\f666"; }
+
+.fa-hdd:before {
+  content: "\f0a0"; }
+
+.fa-head-side:before {
+  content: "\f6e9"; }
+
+.fa-head-vr:before {
+  content: "\f6ea"; }
+
+.fa-heading:before {
+  content: "\f1dc"; }
+
+.fa-headphones:before {
+  content: "\f025"; }
+
+.fa-headphones-alt:before {
+  content: "\f58f"; }
+
+.fa-headset:before {
+  content: "\f590"; }
+
+.fa-heart:before {
+  content: "\f004"; }
+
+.fa-heart-broken:before {
+  content: "\f7a9"; }
+
+.fa-heart-circle:before {
+  content: "\f4c7"; }
+
+.fa-heart-rate:before {
+  content: "\f5f8"; }
+
+.fa-heart-square:before {
+  content: "\f4c8"; }
+
+.fa-heartbeat:before {
+  content: "\f21e"; }
+
+.fa-helicopter:before {
+  content: "\f533"; }
+
+.fa-helmet-battle:before {
+  content: "\f6eb"; }
+
+.fa-hexagon:before {
+  content: "\f312"; }
+
+.fa-highlighter:before {
+  content: "\f591"; }
+
+.fa-hiking:before {
+  content: "\f6ec"; }
+
+.fa-hippo:before {
+  content: "\f6ed"; }
+
+.fa-hips:before {
+  content: "\f452"; }
+
+.fa-hire-a-helper:before {
+  content: "\f3b0"; }
+
+.fa-history:before {
+  content: "\f1da"; }
+
+.fa-hockey-mask:before {
+  content: "\f6ee"; }
+
+.fa-hockey-puck:before {
+  content: "\f453"; }
+
+.fa-hockey-sticks:before {
+  content: "\f454"; }
+
+.fa-holly-berry:before {
+  content: "\f7aa"; }
+
+.fa-home:before {
+  content: "\f015"; }
+
+.fa-home-heart:before {
+  content: "\f4c9"; }
+
+.fa-hood-cloak:before {
+  content: "\f6ef"; }
+
+.fa-hooli:before {
+  content: "\f427"; }
+
+.fa-hornbill:before {
+  content: "\f592"; }
+
+.fa-horse:before {
+  content: "\f6f0"; }
+
+.fa-horse-head:before {
+  content: "\f7ab"; }
+
+.fa-hospital:before {
+  content: "\f0f8"; }
+
+.fa-hospital-alt:before {
+  content: "\f47d"; }
+
+.fa-hospital-symbol:before {
+  content: "\f47e"; }
+
+.fa-hot-tub:before {
+  content: "\f593"; }
+
+.fa-hotel:before {
+  content: "\f594"; }
+
+.fa-hotjar:before {
+  content: "\f3b1"; }
+
+.fa-hourglass:before {
+  content: "\f254"; }
+
+.fa-hourglass-end:before {
+  content: "\f253"; }
+
+.fa-hourglass-half:before {
+  content: "\f252"; }
+
+.fa-hourglass-start:before {
+  content: "\f251"; }
+
+.fa-house-damage:before {
+  content: "\f6f1"; }
+
+.fa-house-flood:before {
+  content: "\f74f"; }
+
+.fa-houzz:before {
+  content: "\f27c"; }
+
+.fa-hryvnia:before {
+  content: "\f6f2"; }
+
+.fa-html5:before {
+  content: "\f13b"; }
+
+.fa-hubspot:before {
+  content: "\f3b2"; }
+
+.fa-humidity:before {
+  content: "\f750"; }
+
+.fa-hurricane:before {
+  content: "\f751"; }
+
+.fa-i-cursor:before {
+  content: "\f246"; }
+
+.fa-ice-skate:before {
+  content: "\f7ac"; }
+
+.fa-icicles:before {
+  content: "\f7ad"; }
+
+.fa-id-badge:before {
+  content: "\f2c1"; }
+
+.fa-id-card:before {
+  content: "\f2c2"; }
+
+.fa-id-card-alt:before {
+  content: "\f47f"; }
+
+.fa-igloo:before {
+  content: "\f7ae"; }
+
+.fa-image:before {
+  content: "\f03e"; }
+
+.fa-images:before {
+  content: "\f302"; }
+
+.fa-imdb:before {
+  content: "\f2d8"; }
+
+.fa-inbox:before {
+  content: "\f01c"; }
+
+.fa-inbox-in:before {
+  content: "\f310"; }
+
+.fa-inbox-out:before {
+  content: "\f311"; }
+
+.fa-indent:before {
+  content: "\f03c"; }
+
+.fa-industry:before {
+  content: "\f275"; }
+
+.fa-industry-alt:before {
+  content: "\f3b3"; }
+
+.fa-infinity:before {
+  content: "\f534"; }
+
+.fa-info:before {
+  content: "\f129"; }
+
+.fa-info-circle:before {
+  content: "\f05a"; }
+
+.fa-info-square:before {
+  content: "\f30f"; }
+
+.fa-inhaler:before {
+  content: "\f5f9"; }
+
+.fa-instagram:before {
+  content: "\f16d"; }
+
+.fa-integral:before {
+  content: "\f667"; }
+
+.fa-intercom:before {
+  content: "\f7af"; }
+
+.fa-internet-explorer:before {
+  content: "\f26b"; }
+
+.fa-intersection:before {
+  content: "\f668"; }
+
+.fa-inventory:before {
+  content: "\f480"; }
+
+.fa-invision:before {
+  content: "\f7b0"; }
+
+.fa-ioxhost:before {
+  content: "\f208"; }
+
+.fa-italic:before {
+  content: "\f033"; }
+
+.fa-itunes:before {
+  content: "\f3b4"; }
+
+.fa-itunes-note:before {
+  content: "\f3b5"; }
+
+.fa-jack-o-lantern:before {
+  content: "\f30e"; }
+
+.fa-java:before {
+  content: "\f4e4"; }
+
+.fa-jedi:before {
+  content: "\f669"; }
+
+.fa-jedi-order:before {
+  content: "\f50e"; }
+
+.fa-jenkins:before {
+  content: "\f3b6"; }
+
+.fa-jira:before {
+  content: "\f7b1"; }
+
+.fa-joget:before {
+  content: "\f3b7"; }
+
+.fa-joint:before {
+  content: "\f595"; }
+
+.fa-joomla:before {
+  content: "\f1aa"; }
+
+.fa-journal-whills:before {
+  content: "\f66a"; }
+
+.fa-js:before {
+  content: "\f3b8"; }
+
+.fa-js-square:before {
+  content: "\f3b9"; }
+
+.fa-jsfiddle:before {
+  content: "\f1cc"; }
+
+.fa-kaaba:before {
+  content: "\f66b"; }
+
+.fa-kaggle:before {
+  content: "\f5fa"; }
+
+.fa-key:before {
+  content: "\f084"; }
+
+.fa-key-skeleton:before {
+  content: "\f6f3"; }
+
+.fa-keybase:before {
+  content: "\f4f5"; }
+
+.fa-keyboard:before {
+  content: "\f11c"; }
+
+.fa-keycdn:before {
+  content: "\f3ba"; }
+
+.fa-keynote:before {
+  content: "\f66c"; }
+
+.fa-khanda:before {
+  content: "\f66d"; }
+
+.fa-kickstarter:before {
+  content: "\f3bb"; }
+
+.fa-kickstarter-k:before {
+  content: "\f3bc"; }
+
+.fa-kidneys:before {
+  content: "\f5fb"; }
+
+.fa-kiss:before {
+  content: "\f596"; }
+
+.fa-kiss-beam:before {
+  content: "\f597"; }
+
+.fa-kiss-wink-heart:before {
+  content: "\f598"; }
+
+.fa-kite:before {
+  content: "\f6f4"; }
+
+.fa-kiwi-bird:before {
+  content: "\f535"; }
+
+.fa-knife-kitchen:before {
+  content: "\f6f5"; }
+
+.fa-korvue:before {
+  content: "\f42f"; }
+
+.fa-lambda:before {
+  content: "\f66e"; }
+
+.fa-lamp:before {
+  content: "\f4ca"; }
+
+.fa-landmark:before {
+  content: "\f66f"; }
+
+.fa-landmark-alt:before {
+  content: "\f752"; }
+
+.fa-language:before {
+  content: "\f1ab"; }
+
+.fa-laptop:before {
+  content: "\f109"; }
+
+.fa-laptop-code:before {
+  content: "\f5fc"; }
+
+.fa-laravel:before {
+  content: "\f3bd"; }
+
+.fa-lastfm:before {
+  content: "\f202"; }
+
+.fa-lastfm-square:before {
+  content: "\f203"; }
+
+.fa-laugh:before {
+  content: "\f599"; }
+
+.fa-laugh-beam:before {
+  content: "\f59a"; }
+
+.fa-laugh-squint:before {
+  content: "\f59b"; }
+
+.fa-laugh-wink:before {
+  content: "\f59c"; }
+
+.fa-layer-group:before {
+  content: "\f5fd"; }
+
+.fa-layer-minus:before {
+  content: "\f5fe"; }
+
+.fa-layer-plus:before {
+  content: "\f5ff"; }
+
+.fa-leaf:before {
+  content: "\f06c"; }
+
+.fa-leaf-heart:before {
+  content: "\f4cb"; }
+
+.fa-leaf-maple:before {
+  content: "\f6f6"; }
+
+.fa-leaf-oak:before {
+  content: "\f6f7"; }
+
+.fa-leanpub:before {
+  content: "\f212"; }
+
+.fa-lemon:before {
+  content: "\f094"; }
+
+.fa-less:before {
+  content: "\f41d"; }
+
+.fa-less-than:before {
+  content: "\f536"; }
+
+.fa-less-than-equal:before {
+  content: "\f537"; }
+
+.fa-level-down:before {
+  content: "\f149"; }
+
+.fa-level-down-alt:before {
+  content: "\f3be"; }
+
+.fa-level-up:before {
+  content: "\f148"; }
+
+.fa-level-up-alt:before {
+  content: "\f3bf"; }
+
+.fa-life-ring:before {
+  content: "\f1cd"; }
+
+.fa-lightbulb:before {
+  content: "\f0eb"; }
+
+.fa-lightbulb-dollar:before {
+  content: "\f670"; }
+
+.fa-lightbulb-exclamation:before {
+  content: "\f671"; }
+
+.fa-lightbulb-on:before {
+  content: "\f672"; }
+
+.fa-lightbulb-slash:before {
+  content: "\f673"; }
+
+.fa-lights-holiday:before {
+  content: "\f7b2"; }
+
+.fa-line:before {
+  content: "\f3c0"; }
+
+.fa-link:before {
+  content: "\f0c1"; }
+
+.fa-linkedin:before {
+  content: "\f08c"; }
+
+.fa-linkedin-in:before {
+  content: "\f0e1"; }
+
+.fa-linode:before {
+  content: "\f2b8"; }
+
+.fa-linux:before {
+  content: "\f17c"; }
+
+.fa-lips:before {
+  content: "\f600"; }
+
+.fa-lira-sign:before {
+  content: "\f195"; }
+
+.fa-list:before {
+  content: "\f03a"; }
+
+.fa-list-alt:before {
+  content: "\f022"; }
+
+.fa-list-ol:before {
+  content: "\f0cb"; }
+
+.fa-list-ul:before {
+  content: "\f0ca"; }
+
+.fa-location:before {
+  content: "\f601"; }
+
+.fa-location-arrow:before {
+  content: "\f124"; }
+
+.fa-location-circle:before {
+  content: "\f602"; }
+
+.fa-location-slash:before {
+  content: "\f603"; }
+
+.fa-lock:before {
+  content: "\f023"; }
+
+.fa-lock-alt:before {
+  content: "\f30d"; }
+
+.fa-lock-open:before {
+  content: "\f3c1"; }
+
+.fa-lock-open-alt:before {
+  content: "\f3c2"; }
+
+.fa-long-arrow-alt-down:before {
+  content: "\f309"; }
+
+.fa-long-arrow-alt-left:before {
+  content: "\f30a"; }
+
+.fa-long-arrow-alt-right:before {
+  content: "\f30b"; }
+
+.fa-long-arrow-alt-up:before {
+  content: "\f30c"; }
+
+.fa-long-arrow-down:before {
+  content: "\f175"; }
+
+.fa-long-arrow-left:before {
+  content: "\f177"; }
+
+.fa-long-arrow-right:before {
+  content: "\f178"; }
+
+.fa-long-arrow-up:before {
+  content: "\f176"; }
+
+.fa-loveseat:before {
+  content: "\f4cc"; }
+
+.fa-low-vision:before {
+  content: "\f2a8"; }
+
+.fa-luchador:before {
+  content: "\f455"; }
+
+.fa-luggage-cart:before {
+  content: "\f59d"; }
+
+.fa-lungs:before {
+  content: "\f604"; }
+
+.fa-lyft:before {
+  content: "\f3c3"; }
+
+.fa-mace:before {
+  content: "\f6f8"; }
+
+.fa-magento:before {
+  content: "\f3c4"; }
+
+.fa-magic:before {
+  content: "\f0d0"; }
+
+.fa-magnet:before {
+  content: "\f076"; }
+
+.fa-mail-bulk:before {
+  content: "\f674"; }
+
+.fa-mailchimp:before {
+  content: "\f59e"; }
+
+.fa-male:before {
+  content: "\f183"; }
+
+.fa-mandalorian:before {
+  content: "\f50f"; }
+
+.fa-mandolin:before {
+  content: "\f6f9"; }
+
+.fa-map:before {
+  content: "\f279"; }
+
+.fa-map-marked:before {
+  content: "\f59f"; }
+
+.fa-map-marked-alt:before {
+  content: "\f5a0"; }
+
+.fa-map-marker:before {
+  content: "\f041"; }
+
+.fa-map-marker-alt:before {
+  content: "\f3c5"; }
+
+.fa-map-marker-alt-slash:before {
+  content: "\f605"; }
+
+.fa-map-marker-check:before {
+  content: "\f606"; }
+
+.fa-map-marker-edit:before {
+  content: "\f607"; }
+
+.fa-map-marker-exclamation:before {
+  content: "\f608"; }
+
+.fa-map-marker-minus:before {
+  content: "\f609"; }
+
+.fa-map-marker-plus:before {
+  content: "\f60a"; }
+
+.fa-map-marker-question:before {
+  content: "\f60b"; }
+
+.fa-map-marker-slash:before {
+  content: "\f60c"; }
+
+.fa-map-marker-smile:before {
+  content: "\f60d"; }
+
+.fa-map-marker-times:before {
+  content: "\f60e"; }
+
+.fa-map-pin:before {
+  content: "\f276"; }
+
+.fa-map-signs:before {
+  content: "\f277"; }
+
+.fa-markdown:before {
+  content: "\f60f"; }
+
+.fa-marker:before {
+  content: "\f5a1"; }
+
+.fa-mars:before {
+  content: "\f222"; }
+
+.fa-mars-double:before {
+  content: "\f227"; }
+
+.fa-mars-stroke:before {
+  content: "\f229"; }
+
+.fa-mars-stroke-h:before {
+  content: "\f22b"; }
+
+.fa-mars-stroke-v:before {
+  content: "\f22a"; }
+
+.fa-mask:before {
+  content: "\f6fa"; }
+
+.fa-mastodon:before {
+  content: "\f4f6"; }
+
+.fa-maxcdn:before {
+  content: "\f136"; }
+
+.fa-medal:before {
+  content: "\f5a2"; }
+
+.fa-medapps:before {
+  content: "\f3c6"; }
+
+.fa-medium:before {
+  content: "\f23a"; }
+
+.fa-medium-m:before {
+  content: "\f3c7"; }
+
+.fa-medkit:before {
+  content: "\f0fa"; }
+
+.fa-medrt:before {
+  content: "\f3c8"; }
+
+.fa-meetup:before {
+  content: "\f2e0"; }
+
+.fa-megaphone:before {
+  content: "\f675"; }
+
+.fa-megaport:before {
+  content: "\f5a3"; }
+
+.fa-meh:before {
+  content: "\f11a"; }
+
+.fa-meh-blank:before {
+  content: "\f5a4"; }
+
+.fa-meh-rolling-eyes:before {
+  content: "\f5a5"; }
+
+.fa-memory:before {
+  content: "\f538"; }
+
+.fa-mendeley:before {
+  content: "\f7b3"; }
+
+.fa-menorah:before {
+  content: "\f676"; }
+
+.fa-mercury:before {
+  content: "\f223"; }
+
+.fa-meteor:before {
+  content: "\f753"; }
+
+.fa-microchip:before {
+  content: "\f2db"; }
+
+.fa-microphone:before {
+  content: "\f130"; }
+
+.fa-microphone-alt:before {
+  content: "\f3c9"; }
+
+.fa-microphone-alt-slash:before {
+  content: "\f539"; }
+
+.fa-microphone-slash:before {
+  content: "\f131"; }
+
+.fa-microscope:before {
+  content: "\f610"; }
+
+.fa-microsoft:before {
+  content: "\f3ca"; }
+
+.fa-mind-share:before {
+  content: "\f677"; }
+
+.fa-minus:before {
+  content: "\f068"; }
+
+.fa-minus-circle:before {
+  content: "\f056"; }
+
+.fa-minus-hexagon:before {
+  content: "\f307"; }
+
+.fa-minus-octagon:before {
+  content: "\f308"; }
+
+.fa-minus-square:before {
+  content: "\f146"; }
+
+.fa-mistletoe:before {
+  content: "\f7b4"; }
+
+.fa-mitten:before {
+  content: "\f7b5"; }
+
+.fa-mix:before {
+  content: "\f3cb"; }
+
+.fa-mixcloud:before {
+  content: "\f289"; }
+
+.fa-mizuni:before {
+  content: "\f3cc"; }
+
+.fa-mobile:before {
+  content: "\f10b"; }
+
+.fa-mobile-alt:before {
+  content: "\f3cd"; }
+
+.fa-mobile-android:before {
+  content: "\f3ce"; }
+
+.fa-mobile-android-alt:before {
+  content: "\f3cf"; }
+
+.fa-modx:before {
+  content: "\f285"; }
+
+.fa-monero:before {
+  content: "\f3d0"; }
+
+.fa-money-bill:before {
+  content: "\f0d6"; }
+
+.fa-money-bill-alt:before {
+  content: "\f3d1"; }
+
+.fa-money-bill-wave:before {
+  content: "\f53a"; }
+
+.fa-money-bill-wave-alt:before {
+  content: "\f53b"; }
+
+.fa-money-check:before {
+  content: "\f53c"; }
+
+.fa-money-check-alt:before {
+  content: "\f53d"; }
+
+.fa-monitor-heart-rate:before {
+  content: "\f611"; }
+
+.fa-monkey:before {
+  content: "\f6fb"; }
+
+.fa-monument:before {
+  content: "\f5a6"; }
+
+.fa-moon:before {
+  content: "\f186"; }
+
+.fa-moon-cloud:before {
+  content: "\f754"; }
+
+.fa-moon-stars:before {
+  content: "\f755"; }
+
+.fa-mortar-pestle:before {
+  content: "\f5a7"; }
+
+.fa-mosque:before {
+  content: "\f678"; }
+
+.fa-motorcycle:before {
+  content: "\f21c"; }
+
+.fa-mountain:before {
+  content: "\f6fc"; }
+
+.fa-mountains:before {
+  content: "\f6fd"; }
+
+.fa-mouse-pointer:before {
+  content: "\f245"; }
+
+.fa-mug-hot:before {
+  content: "\f7b6"; }
+
+.fa-mug-marshmallows:before {
+  content: "\f7b7"; }
+
+.fa-music:before {
+  content: "\f001"; }
+
+.fa-napster:before {
+  content: "\f3d2"; }
+
+.fa-narwhal:before {
+  content: "\f6fe"; }
+
+.fa-neos:before {
+  content: "\f612"; }
+
+.fa-network-wired:before {
+  content: "\f6ff"; }
+
+.fa-neuter:before {
+  content: "\f22c"; }
+
+.fa-newspaper:before {
+  content: "\f1ea"; }
+
+.fa-nimblr:before {
+  content: "\f5a8"; }
+
+.fa-nintendo-switch:before {
+  content: "\f418"; }
+
+.fa-node:before {
+  content: "\f419"; }
+
+.fa-node-js:before {
+  content: "\f3d3"; }
+
+.fa-not-equal:before {
+  content: "\f53e"; }
+
+.fa-notes-medical:before {
+  content: "\f481"; }
+
+.fa-npm:before {
+  content: "\f3d4"; }
+
+.fa-ns8:before {
+  content: "\f3d5"; }
+
+.fa-nutritionix:before {
+  content: "\f3d6"; }
+
+.fa-object-group:before {
+  content: "\f247"; }
+
+.fa-object-ungroup:before {
+  content: "\f248"; }
+
+.fa-octagon:before {
+  content: "\f306"; }
+
+.fa-odnoklassniki:before {
+  content: "\f263"; }
+
+.fa-odnoklassniki-square:before {
+  content: "\f264"; }
+
+.fa-oil-can:before {
+  content: "\f613"; }
+
+.fa-oil-temp:before {
+  content: "\f614"; }
+
+.fa-old-republic:before {
+  content: "\f510"; }
+
+.fa-om:before {
+  content: "\f679"; }
+
+.fa-omega:before {
+  content: "\f67a"; }
+
+.fa-opencart:before {
+  content: "\f23d"; }
+
+.fa-openid:before {
+  content: "\f19b"; }
+
+.fa-opera:before {
+  content: "\f26a"; }
+
+.fa-optin-monster:before {
+  content: "\f23c"; }
+
+.fa-ornament:before {
+  content: "\f7b8"; }
+
+.fa-osi:before {
+  content: "\f41a"; }
+
+.fa-otter:before {
+  content: "\f700"; }
+
+.fa-outdent:before {
+  content: "\f03b"; }
+
+.fa-page4:before {
+  content: "\f3d7"; }
+
+.fa-pagelines:before {
+  content: "\f18c"; }
+
+.fa-paint-brush:before {
+  content: "\f1fc"; }
+
+.fa-paint-brush-alt:before {
+  content: "\f5a9"; }
+
+.fa-paint-roller:before {
+  content: "\f5aa"; }
+
+.fa-palette:before {
+  content: "\f53f"; }
+
+.fa-palfed:before {
+  content: "\f3d8"; }
+
+.fa-pallet:before {
+  content: "\f482"; }
+
+.fa-pallet-alt:before {
+  content: "\f483"; }
+
+.fa-paper-plane:before {
+  content: "\f1d8"; }
+
+.fa-paperclip:before {
+  content: "\f0c6"; }
+
+.fa-parachute-box:before {
+  content: "\f4cd"; }
+
+.fa-paragraph:before {
+  content: "\f1dd"; }
+
+.fa-parking:before {
+  content: "\f540"; }
+
+.fa-parking-circle:before {
+  content: "\f615"; }
+
+.fa-parking-circle-slash:before {
+  content: "\f616"; }
+
+.fa-parking-slash:before {
+  content: "\f617"; }
+
+.fa-passport:before {
+  content: "\f5ab"; }
+
+.fa-pastafarianism:before {
+  content: "\f67b"; }
+
+.fa-paste:before {
+  content: "\f0ea"; }
+
+.fa-patreon:before {
+  content: "\f3d9"; }
+
+.fa-pause:before {
+  content: "\f04c"; }
+
+.fa-pause-circle:before {
+  content: "\f28b"; }
+
+.fa-paw:before {
+  content: "\f1b0"; }
+
+.fa-paw-alt:before {
+  content: "\f701"; }
+
+.fa-paw-claws:before {
+  content: "\f702"; }
+
+.fa-paypal:before {
+  content: "\f1ed"; }
+
+.fa-peace:before {
+  content: "\f67c"; }
+
+.fa-pegasus:before {
+  content: "\f703"; }
+
+.fa-pen:before {
+  content: "\f304"; }
+
+.fa-pen-alt:before {
+  content: "\f305"; }
+
+.fa-pen-fancy:before {
+  content: "\f5ac"; }
+
+.fa-pen-nib:before {
+  content: "\f5ad"; }
+
+.fa-pen-square:before {
+  content: "\f14b"; }
+
+.fa-pencil:before {
+  content: "\f040"; }
+
+.fa-pencil-alt:before {
+  content: "\f303"; }
+
+.fa-pencil-paintbrush:before {
+  content: "\f618"; }
+
+.fa-pencil-ruler:before {
+  content: "\f5ae"; }
+
+.fa-pennant:before {
+  content: "\f456"; }
+
+.fa-penny-arcade:before {
+  content: "\f704"; }
+
+.fa-people-carry:before {
+  content: "\f4ce"; }
+
+.fa-percent:before {
+  content: "\f295"; }
+
+.fa-percentage:before {
+  content: "\f541"; }
+
+.fa-periscope:before {
+  content: "\f3da"; }
+
+.fa-person-booth:before {
+  content: "\f756"; }
+
+.fa-person-carry:before {
+  content: "\f4cf"; }
+
+.fa-person-dolly:before {
+  content: "\f4d0"; }
+
+.fa-person-dolly-empty:before {
+  content: "\f4d1"; }
+
+.fa-person-sign:before {
+  content: "\f757"; }
+
+.fa-phabricator:before {
+  content: "\f3db"; }
+
+.fa-phoenix-framework:before {
+  content: "\f3dc"; }
+
+.fa-phoenix-squadron:before {
+  content: "\f511"; }
+
+.fa-phone:before {
+  content: "\f095"; }
+
+.fa-phone-office:before {
+  content: "\f67d"; }
+
+.fa-phone-plus:before {
+  content: "\f4d2"; }
+
+.fa-phone-slash:before {
+  content: "\f3dd"; }
+
+.fa-phone-square:before {
+  content: "\f098"; }
+
+.fa-phone-volume:before {
+  content: "\f2a0"; }
+
+.fa-php:before {
+  content: "\f457"; }
+
+.fa-pi:before {
+  content: "\f67e"; }
+
+.fa-pie:before {
+  content: "\f705"; }
+
+.fa-pied-piper:before {
+  content: "\f2ae"; }
+
+.fa-pied-piper-alt:before {
+  content: "\f1a8"; }
+
+.fa-pied-piper-hat:before {
+  content: "\f4e5"; }
+
+.fa-pied-piper-pp:before {
+  content: "\f1a7"; }
+
+.fa-pig:before {
+  content: "\f706"; }
+
+.fa-piggy-bank:before {
+  content: "\f4d3"; }
+
+.fa-pills:before {
+  content: "\f484"; }
+
+.fa-pinterest:before {
+  content: "\f0d2"; }
+
+.fa-pinterest-p:before {
+  content: "\f231"; }
+
+.fa-pinterest-square:before {
+  content: "\f0d3"; }
+
+.fa-place-of-worship:before {
+  content: "\f67f"; }
+
+.fa-plane:before {
+  content: "\f072"; }
+
+.fa-plane-alt:before {
+  content: "\f3de"; }
+
+.fa-plane-arrival:before {
+  content: "\f5af"; }
+
+.fa-plane-departure:before {
+  content: "\f5b0"; }
+
+.fa-play:before {
+  content: "\f04b"; }
+
+.fa-play-circle:before {
+  content: "\f144"; }
+
+.fa-playstation:before {
+  content: "\f3df"; }
+
+.fa-plug:before {
+  content: "\f1e6"; }
+
+.fa-plus:before {
+  content: "\f067"; }
+
+.fa-plus-circle:before {
+  content: "\f055"; }
+
+.fa-plus-hexagon:before {
+  content: "\f300"; }
+
+.fa-plus-octagon:before {
+  content: "\f301"; }
+
+.fa-plus-square:before {
+  content: "\f0fe"; }
+
+.fa-podcast:before {
+  content: "\f2ce"; }
+
+.fa-podium:before {
+  content: "\f680"; }
+
+.fa-podium-star:before {
+  content: "\f758"; }
+
+.fa-poll:before {
+  content: "\f681"; }
+
+.fa-poll-h:before {
+  content: "\f682"; }
+
+.fa-poll-people:before {
+  content: "\f759"; }
+
+.fa-poo:before {
+  content: "\f2fe"; }
+
+.fa-poo-storm:before {
+  content: "\f75a"; }
+
+.fa-poop:before {
+  content: "\f619"; }
+
+.fa-portrait:before {
+  content: "\f3e0"; }
+
+.fa-pound-sign:before {
+  content: "\f154"; }
+
+.fa-power-off:before {
+  content: "\f011"; }
+
+.fa-pray:before {
+  content: "\f683"; }
+
+.fa-praying-hands:before {
+  content: "\f684"; }
+
+.fa-prescription:before {
+  content: "\f5b1"; }
+
+.fa-prescription-bottle:before {
+  content: "\f485"; }
+
+.fa-prescription-bottle-alt:before {
+  content: "\f486"; }
+
+.fa-presentation:before {
+  content: "\f685"; }
+
+.fa-print:before {
+  content: "\f02f"; }
+
+.fa-print-slash:before {
+  content: "\f686"; }
+
+.fa-procedures:before {
+  content: "\f487"; }
+
+.fa-product-hunt:before {
+  content: "\f288"; }
+
+.fa-project-diagram:before {
+  content: "\f542"; }
+
+.fa-pumpkin:before {
+  content: "\f707"; }
+
+.fa-pushed:before {
+  content: "\f3e1"; }
+
+.fa-puzzle-piece:before {
+  content: "\f12e"; }
+
+.fa-python:before {
+  content: "\f3e2"; }
+
+.fa-qq:before {
+  content: "\f1d6"; }
+
+.fa-qrcode:before {
+  content: "\f029"; }
+
+.fa-question:before {
+  content: "\f128"; }
+
+.fa-question-circle:before {
+  content: "\f059"; }
+
+.fa-question-square:before {
+  content: "\f2fd"; }
+
+.fa-quidditch:before {
+  content: "\f458"; }
+
+.fa-quinscape:before {
+  content: "\f459"; }
+
+.fa-quora:before {
+  content: "\f2c4"; }
+
+.fa-quote-left:before {
+  content: "\f10d"; }
+
+.fa-quote-right:before {
+  content: "\f10e"; }
+
+.fa-quran:before {
+  content: "\f687"; }
+
+.fa-r-project:before {
+  content: "\f4f7"; }
+
+.fa-rabbit:before {
+  content: "\f708"; }
+
+.fa-rabbit-fast:before {
+  content: "\f709"; }
+
+.fa-racquet:before {
+  content: "\f45a"; }
+
+.fa-radiation:before {
+  content: "\f7b9"; }
+
+.fa-radiation-alt:before {
+  content: "\f7ba"; }
+
+.fa-rainbow:before {
+  content: "\f75b"; }
+
+.fa-raindrops:before {
+  content: "\f75c"; }
+
+.fa-ram:before {
+  content: "\f70a"; }
+
+.fa-ramp-loading:before {
+  content: "\f4d4"; }
+
+.fa-random:before {
+  content: "\f074"; }
+
+.fa-raspberry-pi:before {
+  content: "\f7bb"; }
+
+.fa-ravelry:before {
+  content: "\f2d9"; }
+
+.fa-react:before {
+  content: "\f41b"; }
+
+.fa-reacteurope:before {
+  content: "\f75d"; }
+
+.fa-readme:before {
+  content: "\f4d5"; }
+
+.fa-rebel:before {
+  content: "\f1d0"; }
+
+.fa-receipt:before {
+  content: "\f543"; }
+
+.fa-rectangle-landscape:before {
+  content: "\f2fa"; }
+
+.fa-rectangle-portrait:before {
+  content: "\f2fb"; }
+
+.fa-rectangle-wide:before {
+  content: "\f2fc"; }
+
+.fa-recycle:before {
+  content: "\f1b8"; }
+
+.fa-red-river:before {
+  content: "\f3e3"; }
+
+.fa-reddit:before {
+  content: "\f1a1"; }
+
+.fa-reddit-alien:before {
+  content: "\f281"; }
+
+.fa-reddit-square:before {
+  content: "\f1a2"; }
+
+.fa-redhat:before {
+  content: "\f7bc"; }
+
+.fa-redo:before {
+  content: "\f01e"; }
+
+.fa-redo-alt:before {
+  content: "\f2f9"; }
+
+.fa-registered:before {
+  content: "\f25d"; }
+
+.fa-renren:before {
+  content: "\f18b"; }
+
+.fa-repeat:before {
+  content: "\f363"; }
+
+.fa-repeat-1:before {
+  content: "\f365"; }
+
+.fa-repeat-1-alt:before {
+  content: "\f366"; }
+
+.fa-repeat-alt:before {
+  content: "\f364"; }
+
+.fa-reply:before {
+  content: "\f3e5"; }
+
+.fa-reply-all:before {
+  content: "\f122"; }
+
+.fa-replyd:before {
+  content: "\f3e6"; }
+
+.fa-republican:before {
+  content: "\f75e"; }
+
+.fa-researchgate:before {
+  content: "\f4f8"; }
+
+.fa-resolving:before {
+  content: "\f3e7"; }
+
+.fa-restroom:before {
+  content: "\f7bd"; }
+
+.fa-retweet:before {
+  content: "\f079"; }
+
+.fa-retweet-alt:before {
+  content: "\f361"; }
+
+.fa-rev:before {
+  content: "\f5b2"; }
+
+.fa-ribbon:before {
+  content: "\f4d6"; }
+
+.fa-ring:before {
+  content: "\f70b"; }
+
+.fa-road:before {
+  content: "\f018"; }
+
+.fa-robot:before {
+  content: "\f544"; }
+
+.fa-rocket:before {
+  content: "\f135"; }
+
+.fa-rocketchat:before {
+  content: "\f3e8"; }
+
+.fa-rockrms:before {
+  content: "\f3e9"; }
+
+.fa-route:before {
+  content: "\f4d7"; }
+
+.fa-route-highway:before {
+  content: "\f61a"; }
+
+.fa-route-interstate:before {
+  content: "\f61b"; }
+
+.fa-rss:before {
+  content: "\f09e"; }
+
+.fa-rss-square:before {
+  content: "\f143"; }
+
+.fa-ruble-sign:before {
+  content: "\f158"; }
+
+.fa-ruler:before {
+  content: "\f545"; }
+
+.fa-ruler-combined:before {
+  content: "\f546"; }
+
+.fa-ruler-horizontal:before {
+  content: "\f547"; }
+
+.fa-ruler-triangle:before {
+  content: "\f61c"; }
+
+.fa-ruler-vertical:before {
+  content: "\f548"; }
+
+.fa-running:before {
+  content: "\f70c"; }
+
+.fa-rupee-sign:before {
+  content: "\f156"; }
+
+.fa-rv:before {
+  content: "\f7be"; }
+
+.fa-sad-cry:before {
+  content: "\f5b3"; }
+
+.fa-sad-tear:before {
+  content: "\f5b4"; }
+
+.fa-safari:before {
+  content: "\f267"; }
+
+.fa-sass:before {
+  content: "\f41e"; }
+
+.fa-satellite:before {
+  content: "\f7bf"; }
+
+.fa-satellite-dish:before {
+  content: "\f7c0"; }
+
+.fa-save:before {
+  content: "\f0c7"; }
+
+.fa-scalpel:before {
+  content: "\f61d"; }
+
+.fa-scalpel-path:before {
+  content: "\f61e"; }
+
+.fa-scanner:before {
+  content: "\f488"; }
+
+.fa-scanner-keyboard:before {
+  content: "\f489"; }
+
+.fa-scanner-touchscreen:before {
+  content: "\f48a"; }
+
+.fa-scarecrow:before {
+  content: "\f70d"; }
+
+.fa-scarf:before {
+  content: "\f7c1"; }
+
+.fa-schlix:before {
+  content: "\f3ea"; }
+
+.fa-school:before {
+  content: "\f549"; }
+
+.fa-screwdriver:before {
+  content: "\f54a"; }
+
+.fa-scribd:before {
+  content: "\f28a"; }
+
+.fa-scroll:before {
+  content: "\f70e"; }
+
+.fa-scroll-old:before {
+  content: "\f70f"; }
+
+.fa-scrubber:before {
+  content: "\f2f8"; }
+
+.fa-scythe:before {
+  content: "\f710"; }
+
+.fa-sd-card:before {
+  content: "\f7c2"; }
+
+.fa-search:before {
+  content: "\f002"; }
+
+.fa-search-dollar:before {
+  content: "\f688"; }
+
+.fa-search-location:before {
+  content: "\f689"; }
+
+.fa-search-minus:before {
+  content: "\f010"; }
+
+.fa-search-plus:before {
+  content: "\f00e"; }
+
+.fa-searchengin:before {
+  content: "\f3eb"; }
+
+.fa-seedling:before {
+  content: "\f4d8"; }
+
+.fa-sellcast:before {
+  content: "\f2da"; }
+
+.fa-sellsy:before {
+  content: "\f213"; }
+
+.fa-server:before {
+  content: "\f233"; }
+
+.fa-servicestack:before {
+  content: "\f3ec"; }
+
+.fa-shapes:before {
+  content: "\f61f"; }
+
+.fa-share:before {
+  content: "\f064"; }
+
+.fa-share-all:before {
+  content: "\f367"; }
+
+.fa-share-alt:before {
+  content: "\f1e0"; }
+
+.fa-share-alt-square:before {
+  content: "\f1e1"; }
+
+.fa-share-square:before {
+  content: "\f14d"; }
+
+.fa-sheep:before {
+  content: "\f711"; }
+
+.fa-shekel-sign:before {
+  content: "\f20b"; }
+
+.fa-shield:before {
+  content: "\f132"; }
+
+.fa-shield-alt:before {
+  content: "\f3ed"; }
+
+.fa-shield-check:before {
+  content: "\f2f7"; }
+
+.fa-shield-cross:before {
+  content: "\f712"; }
+
+.fa-ship:before {
+  content: "\f21a"; }
+
+.fa-shipping-fast:before {
+  content: "\f48b"; }
+
+.fa-shipping-timed:before {
+  content: "\f48c"; }
+
+.fa-shirtsinbulk:before {
+  content: "\f214"; }
+
+.fa-shoe-prints:before {
+  content: "\f54b"; }
+
+.fa-shopping-bag:before {
+  content: "\f290"; }
+
+.fa-shopping-basket:before {
+  content: "\f291"; }
+
+.fa-shopping-cart:before {
+  content: "\f07a"; }
+
+.fa-shopware:before {
+  content: "\f5b5"; }
+
+.fa-shovel:before {
+  content: "\f713"; }
+
+.fa-shovel-snow:before {
+  content: "\f7c3"; }
+
+.fa-shower:before {
+  content: "\f2cc"; }
+
+.fa-shredder:before {
+  content: "\f68a"; }
+
+.fa-shuttle-van:before {
+  content: "\f5b6"; }
+
+.fa-shuttlecock:before {
+  content: "\f45b"; }
+
+.fa-sigma:before {
+  content: "\f68b"; }
+
+.fa-sign:before {
+  content: "\f4d9"; }
+
+.fa-sign-in:before {
+  content: "\f090"; }
+
+.fa-sign-in-alt:before {
+  content: "\f2f6"; }
+
+.fa-sign-language:before {
+  content: "\f2a7"; }
+
+.fa-sign-out:before {
+  content: "\f08b"; }
+
+.fa-sign-out-alt:before {
+  content: "\f2f5"; }
+
+.fa-signal:before {
+  content: "\f012"; }
+
+.fa-signal-1:before {
+  content: "\f68c"; }
+
+.fa-signal-2:before {
+  content: "\f68d"; }
+
+.fa-signal-3:before {
+  content: "\f68e"; }
+
+.fa-signal-4:before {
+  content: "\f68f"; }
+
+.fa-signal-alt:before {
+  content: "\f690"; }
+
+.fa-signal-alt-1:before {
+  content: "\f691"; }
+
+.fa-signal-alt-2:before {
+  content: "\f692"; }
+
+.fa-signal-alt-3:before {
+  content: "\f693"; }
+
+.fa-signal-alt-slash:before {
+  content: "\f694"; }
+
+.fa-signal-slash:before {
+  content: "\f695"; }
+
+.fa-signature:before {
+  content: "\f5b7"; }
+
+.fa-sim-card:before {
+  content: "\f7c4"; }
+
+.fa-simplybuilt:before {
+  content: "\f215"; }
+
+.fa-sistrix:before {
+  content: "\f3ee"; }
+
+.fa-sitemap:before {
+  content: "\f0e8"; }
+
+.fa-sith:before {
+  content: "\f512"; }
+
+.fa-skating:before {
+  content: "\f7c5"; }
+
+.fa-skeleton:before {
+  content: "\f620"; }
+
+.fa-sketch:before {
+  content: "\f7c6"; }
+
+.fa-ski-jump:before {
+  content: "\f7c7"; }
+
+.fa-ski-lift:before {
+  content: "\f7c8"; }
+
+.fa-skiing:before {
+  content: "\f7c9"; }
+
+.fa-skiing-nordic:before {
+  content: "\f7ca"; }
+
+.fa-skull:before {
+  content: "\f54c"; }
+
+.fa-skull-crossbones:before {
+  content: "\f714"; }
+
+.fa-skyatlas:before {
+  content: "\f216"; }
+
+.fa-skype:before {
+  content: "\f17e"; }
+
+.fa-slack:before {
+  content: "\f198"; }
+
+.fa-slack-hash:before {
+  content: "\f3ef"; }
+
+.fa-slash:before {
+  content: "\f715"; }
+
+.fa-sledding:before {
+  content: "\f7cb"; }
+
+.fa-sleigh:before {
+  content: "\f7cc"; }
+
+.fa-sliders-h:before {
+  content: "\f1de"; }
+
+.fa-sliders-h-square:before {
+  content: "\f3f0"; }
+
+.fa-sliders-v:before {
+  content: "\f3f1"; }
+
+.fa-sliders-v-square:before {
+  content: "\f3f2"; }
+
+.fa-slideshare:before {
+  content: "\f1e7"; }
+
+.fa-smile:before {
+  content: "\f118"; }
+
+.fa-smile-beam:before {
+  content: "\f5b8"; }
+
+.fa-smile-plus:before {
+  content: "\f5b9"; }
+
+.fa-smile-wink:before {
+  content: "\f4da"; }
+
+.fa-smog:before {
+  content: "\f75f"; }
+
+.fa-smoke:before {
+  content: "\f760"; }
+
+.fa-smoking:before {
+  content: "\f48d"; }
+
+.fa-smoking-ban:before {
+  content: "\f54d"; }
+
+.fa-sms:before {
+  content: "\f7cd"; }
+
+.fa-snake:before {
+  content: "\f716"; }
+
+.fa-snapchat:before {
+  content: "\f2ab"; }
+
+.fa-snapchat-ghost:before {
+  content: "\f2ac"; }
+
+.fa-snapchat-square:before {
+  content: "\f2ad"; }
+
+.fa-snow-blowing:before {
+  content: "\f761"; }
+
+.fa-snowboarding:before {
+  content: "\f7ce"; }
+
+.fa-snowflake:before {
+  content: "\f2dc"; }
+
+.fa-snowflakes:before {
+  content: "\f7cf"; }
+
+.fa-snowman:before {
+  content: "\f7d0"; }
+
+.fa-snowmobile:before {
+  content: "\f7d1"; }
+
+.fa-snowplow:before {
+  content: "\f7d2"; }
+
+.fa-socks:before {
+  content: "\f696"; }
+
+.fa-solar-panel:before {
+  content: "\f5ba"; }
+
+.fa-sort:before {
+  content: "\f0dc"; }
+
+.fa-sort-alpha-down:before {
+  content: "\f15d"; }
+
+.fa-sort-alpha-up:before {
+  content: "\f15e"; }
+
+.fa-sort-amount-down:before {
+  content: "\f160"; }
+
+.fa-sort-amount-up:before {
+  content: "\f161"; }
+
+.fa-sort-down:before {
+  content: "\f0dd"; }
+
+.fa-sort-numeric-down:before {
+  content: "\f162"; }
+
+.fa-sort-numeric-up:before {
+  content: "\f163"; }
+
+.fa-sort-up:before {
+  content: "\f0de"; }
+
+.fa-soundcloud:before {
+  content: "\f1be"; }
+
+.fa-sourcetree:before {
+  content: "\f7d3"; }
+
+.fa-spa:before {
+  content: "\f5bb"; }
+
+.fa-space-shuttle:before {
+  content: "\f197"; }
+
+.fa-spade:before {
+  content: "\f2f4"; }
+
+.fa-speakap:before {
+  content: "\f3f3"; }
+
+.fa-spider:before {
+  content: "\f717"; }
+
+.fa-spider-black-widow:before {
+  content: "\f718"; }
+
+.fa-spider-web:before {
+  content: "\f719"; }
+
+.fa-spinner:before {
+  content: "\f110"; }
+
+.fa-spinner-third:before {
+  content: "\f3f4"; }
+
+.fa-splotch:before {
+  content: "\f5bc"; }
+
+.fa-spotify:before {
+  content: "\f1bc"; }
+
+.fa-spray-can:before {
+  content: "\f5bd"; }
+
+.fa-square:before {
+  content: "\f0c8"; }
+
+.fa-square-full:before {
+  content: "\f45c"; }
+
+.fa-square-root:before {
+  content: "\f697"; }
+
+.fa-square-root-alt:before {
+  content: "\f698"; }
+
+.fa-squarespace:before {
+  content: "\f5be"; }
+
+.fa-squirrel:before {
+  content: "\f71a"; }
+
+.fa-stack-exchange:before {
+  content: "\f18d"; }
+
+.fa-stack-overflow:before {
+  content: "\f16c"; }
+
+.fa-staff:before {
+  content: "\f71b"; }
+
+.fa-stamp:before {
+  content: "\f5bf"; }
+
+.fa-star:before {
+  content: "\f005"; }
+
+.fa-star-and-crescent:before {
+  content: "\f699"; }
+
+.fa-star-christmas:before {
+  content: "\f7d4"; }
+
+.fa-star-exclamation:before {
+  content: "\f2f3"; }
+
+.fa-star-half:before {
+  content: "\f089"; }
+
+.fa-star-half-alt:before {
+  content: "\f5c0"; }
+
+.fa-star-of-david:before {
+  content: "\f69a"; }
+
+.fa-star-of-life:before {
+  content: "\f621"; }
+
+.fa-stars:before {
+  content: "\f762"; }
+
+.fa-staylinked:before {
+  content: "\f3f5"; }
+
+.fa-steam:before {
+  content: "\f1b6"; }
+
+.fa-steam-square:before {
+  content: "\f1b7"; }
+
+.fa-steam-symbol:before {
+  content: "\f3f6"; }
+
+.fa-steering-wheel:before {
+  content: "\f622"; }
+
+.fa-step-backward:before {
+  content: "\f048"; }
+
+.fa-step-forward:before {
+  content: "\f051"; }
+
+.fa-stethoscope:before {
+  content: "\f0f1"; }
+
+.fa-sticker-mule:before {
+  content: "\f3f7"; }
+
+.fa-sticky-note:before {
+  content: "\f249"; }
+
+.fa-stocking:before {
+  content: "\f7d5"; }
+
+.fa-stomach:before {
+  content: "\f623"; }
+
+.fa-stop:before {
+  content: "\f04d"; }
+
+.fa-stop-circle:before {
+  content: "\f28d"; }
+
+.fa-stopwatch:before {
+  content: "\f2f2"; }
+
+.fa-store:before {
+  content: "\f54e"; }
+
+.fa-store-alt:before {
+  content: "\f54f"; }
+
+.fa-strava:before {
+  content: "\f428"; }
+
+.fa-stream:before {
+  content: "\f550"; }
+
+.fa-street-view:before {
+  content: "\f21d"; }
+
+.fa-strikethrough:before {
+  content: "\f0cc"; }
+
+.fa-stripe:before {
+  content: "\f429"; }
+
+.fa-stripe-s:before {
+  content: "\f42a"; }
+
+.fa-stroopwafel:before {
+  content: "\f551"; }
+
+.fa-studiovinari:before {
+  content: "\f3f8"; }
+
+.fa-stumbleupon:before {
+  content: "\f1a4"; }
+
+.fa-stumbleupon-circle:before {
+  content: "\f1a3"; }
+
+.fa-subscript:before {
+  content: "\f12c"; }
+
+.fa-subway:before {
+  content: "\f239"; }
+
+.fa-suitcase:before {
+  content: "\f0f2"; }
+
+.fa-suitcase-rolling:before {
+  content: "\f5c1"; }
+
+.fa-sun:before {
+  content: "\f185"; }
+
+.fa-sun-cloud:before {
+  content: "\f763"; }
+
+.fa-sun-dust:before {
+  content: "\f764"; }
+
+.fa-sun-haze:before {
+  content: "\f765"; }
+
+.fa-sunrise:before {
+  content: "\f766"; }
+
+.fa-sunset:before {
+  content: "\f767"; }
+
+.fa-superpowers:before {
+  content: "\f2dd"; }
+
+.fa-superscript:before {
+  content: "\f12b"; }
+
+.fa-supple:before {
+  content: "\f3f9"; }
+
+.fa-surprise:before {
+  content: "\f5c2"; }
+
+.fa-suse:before {
+  content: "\f7d6"; }
+
+.fa-swatchbook:before {
+  content: "\f5c3"; }
+
+.fa-swimmer:before {
+  content: "\f5c4"; }
+
+.fa-swimming-pool:before {
+  content: "\f5c5"; }
+
+.fa-sword:before {
+  content: "\f71c"; }
+
+.fa-swords:before {
+  content: "\f71d"; }
+
+.fa-synagogue:before {
+  content: "\f69b"; }
+
+.fa-sync:before {
+  content: "\f021"; }
+
+.fa-sync-alt:before {
+  content: "\f2f1"; }
+
+.fa-syringe:before {
+  content: "\f48e"; }
+
+.fa-table:before {
+  content: "\f0ce"; }
+
+.fa-table-tennis:before {
+  content: "\f45d"; }
+
+.fa-tablet:before {
+  content: "\f10a"; }
+
+.fa-tablet-alt:before {
+  content: "\f3fa"; }
+
+.fa-tablet-android:before {
+  content: "\f3fb"; }
+
+.fa-tablet-android-alt:before {
+  content: "\f3fc"; }
+
+.fa-tablet-rugged:before {
+  content: "\f48f"; }
+
+.fa-tablets:before {
+  content: "\f490"; }
+
+.fa-tachometer:before {
+  content: "\f0e4"; }
+
+.fa-tachometer-alt:before {
+  content: "\f3fd"; }
+
+.fa-tachometer-alt-average:before {
+  content: "\f624"; }
+
+.fa-tachometer-alt-fast:before {
+  content: "\f625"; }
+
+.fa-tachometer-alt-fastest:before {
+  content: "\f626"; }
+
+.fa-tachometer-alt-slow:before {
+  content: "\f627"; }
+
+.fa-tachometer-alt-slowest:before {
+  content: "\f628"; }
+
+.fa-tachometer-average:before {
+  content: "\f629"; }
+
+.fa-tachometer-fast:before {
+  content: "\f62a"; }
+
+.fa-tachometer-fastest:before {
+  content: "\f62b"; }
+
+.fa-tachometer-slow:before {
+  content: "\f62c"; }
+
+.fa-tachometer-slowest:before {
+  content: "\f62d"; }
+
+.fa-tag:before {
+  content: "\f02b"; }
+
+.fa-tags:before {
+  content: "\f02c"; }
+
+.fa-tally:before {
+  content: "\f69c"; }
+
+.fa-tape:before {
+  content: "\f4db"; }
+
+.fa-tasks:before {
+  content: "\f0ae"; }
+
+.fa-taxi:before {
+  content: "\f1ba"; }
+
+.fa-teamspeak:before {
+  content: "\f4f9"; }
+
+.fa-teeth:before {
+  content: "\f62e"; }
+
+.fa-teeth-open:before {
+  content: "\f62f"; }
+
+.fa-telegram:before {
+  content: "\f2c6"; }
+
+.fa-telegram-plane:before {
+  content: "\f3fe"; }
+
+.fa-temperature-frigid:before {
+  content: "\f768"; }
+
+.fa-temperature-high:before {
+  content: "\f769"; }
+
+.fa-temperature-hot:before {
+  content: "\f76a"; }
+
+.fa-temperature-low:before {
+  content: "\f76b"; }
+
+.fa-tencent-weibo:before {
+  content: "\f1d5"; }
+
+.fa-tenge:before {
+  content: "\f7d7"; }
+
+.fa-tennis-ball:before {
+  content: "\f45e"; }
+
+.fa-terminal:before {
+  content: "\f120"; }
+
+.fa-text-height:before {
+  content: "\f034"; }
+
+.fa-text-width:before {
+  content: "\f035"; }
+
+.fa-th:before {
+  content: "\f00a"; }
+
+.fa-th-large:before {
+  content: "\f009"; }
+
+.fa-th-list:before {
+  content: "\f00b"; }
+
+.fa-the-red-yeti:before {
+  content: "\f69d"; }
+
+.fa-theater-masks:before {
+  content: "\f630"; }
+
+.fa-themeco:before {
+  content: "\f5c6"; }
+
+.fa-themeisle:before {
+  content: "\f2b2"; }
+
+.fa-thermometer:before {
+  content: "\f491"; }
+
+.fa-thermometer-empty:before {
+  content: "\f2cb"; }
+
+.fa-thermometer-full:before {
+  content: "\f2c7"; }
+
+.fa-thermometer-half:before {
+  content: "\f2c9"; }
+
+.fa-thermometer-quarter:before {
+  content: "\f2ca"; }
+
+.fa-thermometer-three-quarters:before {
+  content: "\f2c8"; }
+
+.fa-theta:before {
+  content: "\f69e"; }
+
+.fa-think-peaks:before {
+  content: "\f731"; }
+
+.fa-thumbs-down:before {
+  content: "\f165"; }
+
+.fa-thumbs-up:before {
+  content: "\f164"; }
+
+.fa-thumbtack:before {
+  content: "\f08d"; }
+
+.fa-thunderstorm:before {
+  content: "\f76c"; }
+
+.fa-thunderstorm-moon:before {
+  content: "\f76d"; }
+
+.fa-thunderstorm-sun:before {
+  content: "\f76e"; }
+
+.fa-ticket:before {
+  content: "\f145"; }
+
+.fa-ticket-alt:before {
+  content: "\f3ff"; }
+
+.fa-tilde:before {
+  content: "\f69f"; }
+
+.fa-times:before {
+  content: "\f00d"; }
+
+.fa-times-circle:before {
+  content: "\f057"; }
+
+.fa-times-hexagon:before {
+  content: "\f2ee"; }
+
+.fa-times-octagon:before {
+  content: "\f2f0"; }
+
+.fa-times-square:before {
+  content: "\f2d3"; }
+
+.fa-tint:before {
+  content: "\f043"; }
+
+.fa-tint-slash:before {
+  content: "\f5c7"; }
+
+.fa-tire:before {
+  content: "\f631"; }
+
+.fa-tire-flat:before {
+  content: "\f632"; }
+
+.fa-tire-pressure-warning:before {
+  content: "\f633"; }
+
+.fa-tire-rugged:before {
+  content: "\f634"; }
+
+.fa-tired:before {
+  content: "\f5c8"; }
+
+.fa-toggle-off:before {
+  content: "\f204"; }
+
+.fa-toggle-on:before {
+  content: "\f205"; }
+
+.fa-toilet:before {
+  content: "\f7d8"; }
+
+.fa-toilet-paper:before {
+  content: "\f71e"; }
+
+.fa-toilet-paper-alt:before {
+  content: "\f71f"; }
+
+.fa-tombstone:before {
+  content: "\f720"; }
+
+.fa-tombstone-alt:before {
+  content: "\f721"; }
+
+.fa-toolbox:before {
+  content: "\f552"; }
+
+.fa-tools:before {
+  content: "\f7d9"; }
+
+.fa-tooth:before {
+  content: "\f5c9"; }
+
+.fa-toothbrush:before {
+  content: "\f635"; }
+
+.fa-torah:before {
+  content: "\f6a0"; }
+
+.fa-torii-gate:before {
+  content: "\f6a1"; }
+
+.fa-tornado:before {
+  content: "\f76f"; }
+
+.fa-tractor:before {
+  content: "\f722"; }
+
+.fa-trade-federation:before {
+  content: "\f513"; }
+
+.fa-trademark:before {
+  content: "\f25c"; }
+
+.fa-traffic-cone:before {
+  content: "\f636"; }
+
+.fa-traffic-light:before {
+  content: "\f637"; }
+
+.fa-traffic-light-go:before {
+  content: "\f638"; }
+
+.fa-traffic-light-slow:before {
+  content: "\f639"; }
+
+.fa-traffic-light-stop:before {
+  content: "\f63a"; }
+
+.fa-train:before {
+  content: "\f238"; }
+
+.fa-tram:before {
+  content: "\f7da"; }
+
+.fa-transgender:before {
+  content: "\f224"; }
+
+.fa-transgender-alt:before {
+  content: "\f225"; }
+
+.fa-trash:before {
+  content: "\f1f8"; }
+
+.fa-trash-alt:before {
+  content: "\f2ed"; }
+
+.fa-treasure-chest:before {
+  content: "\f723"; }
+
+.fa-tree:before {
+  content: "\f1bb"; }
+
+.fa-tree-alt:before {
+  content: "\f400"; }
+
+.fa-tree-christmas:before {
+  content: "\f7db"; }
+
+.fa-tree-decorated:before {
+  content: "\f7dc"; }
+
+.fa-tree-large:before {
+  content: "\f7dd"; }
+
+.fa-trees:before {
+  content: "\f724"; }
+
+.fa-trello:before {
+  content: "\f181"; }
+
+.fa-triangle:before {
+  content: "\f2ec"; }
+
+.fa-tripadvisor:before {
+  content: "\f262"; }
+
+.fa-trophy:before {
+  content: "\f091"; }
+
+.fa-trophy-alt:before {
+  content: "\f2eb"; }
+
+.fa-truck:before {
+  content: "\f0d1"; }
+
+.fa-truck-container:before {
+  content: "\f4dc"; }
+
+.fa-truck-couch:before {
+  content: "\f4dd"; }
+
+.fa-truck-loading:before {
+  content: "\f4de"; }
+
+.fa-truck-monster:before {
+  content: "\f63b"; }
+
+.fa-truck-moving:before {
+  content: "\f4df"; }
+
+.fa-truck-pickup:before {
+  content: "\f63c"; }
+
+.fa-truck-plow:before {
+  content: "\f7de"; }
+
+.fa-truck-ramp:before {
+  content: "\f4e0"; }
+
+.fa-tshirt:before {
+  content: "\f553"; }
+
+.fa-tty:before {
+  content: "\f1e4"; }
+
+.fa-tumblr:before {
+  content: "\f173"; }
+
+.fa-tumblr-square:before {
+  content: "\f174"; }
+
+.fa-turkey:before {
+  content: "\f725"; }
+
+.fa-turtle:before {
+  content: "\f726"; }
+
+.fa-tv:before {
+  content: "\f26c"; }
+
+.fa-tv-retro:before {
+  content: "\f401"; }
+
+.fa-twitch:before {
+  content: "\f1e8"; }
+
+.fa-twitter:before {
+  content: "\f099"; }
+
+.fa-twitter-square:before {
+  content: "\f081"; }
+
+.fa-typo3:before {
+  content: "\f42b"; }
+
+.fa-uber:before {
+  content: "\f402"; }
+
+.fa-ubuntu:before {
+  content: "\f7df"; }
+
+.fa-uikit:before {
+  content: "\f403"; }
+
+.fa-umbrella:before {
+  content: "\f0e9"; }
+
+.fa-umbrella-beach:before {
+  content: "\f5ca"; }
+
+.fa-underline:before {
+  content: "\f0cd"; }
+
+.fa-undo:before {
+  content: "\f0e2"; }
+
+.fa-undo-alt:before {
+  content: "\f2ea"; }
+
+.fa-unicorn:before {
+  content: "\f727"; }
+
+.fa-union:before {
+  content: "\f6a2"; }
+
+.fa-uniregistry:before {
+  content: "\f404"; }
+
+.fa-universal-access:before {
+  content: "\f29a"; }
+
+.fa-university:before {
+  content: "\f19c"; }
+
+.fa-unlink:before {
+  content: "\f127"; }
+
+.fa-unlock:before {
+  content: "\f09c"; }
+
+.fa-unlock-alt:before {
+  content: "\f13e"; }
+
+.fa-untappd:before {
+  content: "\f405"; }
+
+.fa-upload:before {
+  content: "\f093"; }
+
+.fa-ups:before {
+  content: "\f7e0"; }
+
+.fa-usb:before {
+  content: "\f287"; }
+
+.fa-usd-circle:before {
+  content: "\f2e8"; }
+
+.fa-usd-square:before {
+  content: "\f2e9"; }
+
+.fa-user:before {
+  content: "\f007"; }
+
+.fa-user-alt:before {
+  content: "\f406"; }
+
+.fa-user-alt-slash:before {
+  content: "\f4fa"; }
+
+.fa-user-astronaut:before {
+  content: "\f4fb"; }
+
+.fa-user-chart:before {
+  content: "\f6a3"; }
+
+.fa-user-check:before {
+  content: "\f4fc"; }
+
+.fa-user-circle:before {
+  content: "\f2bd"; }
+
+.fa-user-clock:before {
+  content: "\f4fd"; }
+
+.fa-user-cog:before {
+  content: "\f4fe"; }
+
+.fa-user-crown:before {
+  content: "\f6a4"; }
+
+.fa-user-edit:before {
+  content: "\f4ff"; }
+
+.fa-user-friends:before {
+  content: "\f500"; }
+
+.fa-user-graduate:before {
+  content: "\f501"; }
+
+.fa-user-injured:before {
+  content: "\f728"; }
+
+.fa-user-lock:before {
+  content: "\f502"; }
+
+.fa-user-md:before {
+  content: "\f0f0"; }
+
+.fa-user-minus:before {
+  content: "\f503"; }
+
+.fa-user-ninja:before {
+  content: "\f504"; }
+
+.fa-user-plus:before {
+  content: "\f234"; }
+
+.fa-user-secret:before {
+  content: "\f21b"; }
+
+.fa-user-shield:before {
+  content: "\f505"; }
+
+.fa-user-slash:before {
+  content: "\f506"; }
+
+.fa-user-tag:before {
+  content: "\f507"; }
+
+.fa-user-tie:before {
+  content: "\f508"; }
+
+.fa-user-times:before {
+  content: "\f235"; }
+
+.fa-users:before {
+  content: "\f0c0"; }
+
+.fa-users-class:before {
+  content: "\f63d"; }
+
+.fa-users-cog:before {
+  content: "\f509"; }
+
+.fa-users-crown:before {
+  content: "\f6a5"; }
+
+.fa-usps:before {
+  content: "\f7e1"; }
+
+.fa-ussunnah:before {
+  content: "\f407"; }
+
+.fa-utensil-fork:before {
+  content: "\f2e3"; }
+
+.fa-utensil-knife:before {
+  content: "\f2e4"; }
+
+.fa-utensil-spoon:before {
+  content: "\f2e5"; }
+
+.fa-utensils:before {
+  content: "\f2e7"; }
+
+.fa-utensils-alt:before {
+  content: "\f2e6"; }
+
+.fa-vaadin:before {
+  content: "\f408"; }
+
+.fa-value-absolute:before {
+  content: "\f6a6"; }
+
+.fa-vector-square:before {
+  content: "\f5cb"; }
+
+.fa-venus:before {
+  content: "\f221"; }
+
+.fa-venus-double:before {
+  content: "\f226"; }
+
+.fa-venus-mars:before {
+  content: "\f228"; }
+
+.fa-viacoin:before {
+  content: "\f237"; }
+
+.fa-viadeo:before {
+  content: "\f2a9"; }
+
+.fa-viadeo-square:before {
+  content: "\f2aa"; }
+
+.fa-vial:before {
+  content: "\f492"; }
+
+.fa-vials:before {
+  content: "\f493"; }
+
+.fa-viber:before {
+  content: "\f409"; }
+
+.fa-video:before {
+  content: "\f03d"; }
+
+.fa-video-plus:before {
+  content: "\f4e1"; }
+
+.fa-video-slash:before {
+  content: "\f4e2"; }
+
+.fa-vihara:before {
+  content: "\f6a7"; }
+
+.fa-vimeo:before {
+  content: "\f40a"; }
+
+.fa-vimeo-square:before {
+  content: "\f194"; }
+
+.fa-vimeo-v:before {
+  content: "\f27d"; }
+
+.fa-vine:before {
+  content: "\f1ca"; }
+
+.fa-vk:before {
+  content: "\f189"; }
+
+.fa-vnv:before {
+  content: "\f40b"; }
+
+.fa-volcano:before {
+  content: "\f770"; }
+
+.fa-volleyball-ball:before {
+  content: "\f45f"; }
+
+.fa-volume:before {
+  content: "\f6a8"; }
+
+.fa-volume-down:before {
+  content: "\f027"; }
+
+.fa-volume-mute:before {
+  content: "\f6a9"; }
+
+.fa-volume-off:before {
+  content: "\f026"; }
+
+.fa-volume-slash:before {
+  content: "\f2e2"; }
+
+.fa-volume-up:before {
+  content: "\f028"; }
+
+.fa-vote-nay:before {
+  content: "\f771"; }
+
+.fa-vote-yea:before {
+  content: "\f772"; }
+
+.fa-vr-cardboard:before {
+  content: "\f729"; }
+
+.fa-vuejs:before {
+  content: "\f41f"; }
+
+.fa-walking:before {
+  content: "\f554"; }
+
+.fa-wallet:before {
+  content: "\f555"; }
+
+.fa-wand:before {
+  content: "\f72a"; }
+
+.fa-wand-magic:before {
+  content: "\f72b"; }
+
+.fa-warehouse:before {
+  content: "\f494"; }
+
+.fa-warehouse-alt:before {
+  content: "\f495"; }
+
+.fa-watch:before {
+  content: "\f2e1"; }
+
+.fa-watch-fitness:before {
+  content: "\f63e"; }
+
+.fa-water:before {
+  content: "\f773"; }
+
+.fa-water-lower:before {
+  content: "\f774"; }
+
+.fa-water-rise:before {
+  content: "\f775"; }
+
+.fa-weebly:before {
+  content: "\f5cc"; }
+
+.fa-weibo:before {
+  content: "\f18a"; }
+
+.fa-weight:before {
+  content: "\f496"; }
+
+.fa-weight-hanging:before {
+  content: "\f5cd"; }
+
+.fa-weixin:before {
+  content: "\f1d7"; }
+
+.fa-whale:before {
+  content: "\f72c"; }
+
+.fa-whatsapp:before {
+  content: "\f232"; }
+
+.fa-whatsapp-square:before {
+  content: "\f40c"; }
+
+.fa-wheat:before {
+  content: "\f72d"; }
+
+.fa-wheelchair:before {
+  content: "\f193"; }
+
+.fa-whistle:before {
+  content: "\f460"; }
+
+.fa-whmcs:before {
+  content: "\f40d"; }
+
+.fa-wifi:before {
+  content: "\f1eb"; }
+
+.fa-wifi-1:before {
+  content: "\f6aa"; }
+
+.fa-wifi-2:before {
+  content: "\f6ab"; }
+
+.fa-wifi-slash:before {
+  content: "\f6ac"; }
+
+.fa-wikipedia-w:before {
+  content: "\f266"; }
+
+.fa-wind:before {
+  content: "\f72e"; }
+
+.fa-wind-warning:before {
+  content: "\f776"; }
+
+.fa-window:before {
+  content: "\f40e"; }
+
+.fa-window-alt:before {
+  content: "\f40f"; }
+
+.fa-window-close:before {
+  content: "\f410"; }
+
+.fa-window-maximize:before {
+  content: "\f2d0"; }
+
+.fa-window-minimize:before {
+  content: "\f2d1"; }
+
+.fa-window-restore:before {
+  content: "\f2d2"; }
+
+.fa-windows:before {
+  content: "\f17a"; }
+
+.fa-windsock:before {
+  content: "\f777"; }
+
+.fa-wine-bottle:before {
+  content: "\f72f"; }
+
+.fa-wine-glass:before {
+  content: "\f4e3"; }
+
+.fa-wine-glass-alt:before {
+  content: "\f5ce"; }
+
+.fa-wix:before {
+  content: "\f5cf"; }
+
+.fa-wizards-of-the-coast:before {
+  content: "\f730"; }
+
+.fa-wolf-pack-battalion:before {
+  content: "\f514"; }
+
+.fa-won-sign:before {
+  content: "\f159"; }
+
+.fa-wordpress:before {
+  content: "\f19a"; }
+
+.fa-wordpress-simple:before {
+  content: "\f411"; }
+
+.fa-wpbeginner:before {
+  content: "\f297"; }
+
+.fa-wpexplorer:before {
+  content: "\f2de"; }
+
+.fa-wpforms:before {
+  content: "\f298"; }
+
+.fa-wpressr:before {
+  content: "\f3e4"; }
+
+.fa-wreath:before {
+  content: "\f7e2"; }
+
+.fa-wrench:before {
+  content: "\f0ad"; }
+
+.fa-x-ray:before {
+  content: "\f497"; }
+
+.fa-xbox:before {
+  content: "\f412"; }
+
+.fa-xing:before {
+  content: "\f168"; }
+
+.fa-xing-square:before {
+  content: "\f169"; }
+
+.fa-y-combinator:before {
+  content: "\f23b"; }
+
+.fa-yahoo:before {
+  content: "\f19e"; }
+
+.fa-yandex:before {
+  content: "\f413"; }
+
+.fa-yandex-international:before {
+  content: "\f414"; }
+
+.fa-yarn:before {
+  content: "\f7e3"; }
+
+.fa-yelp:before {
+  content: "\f1e9"; }
+
+.fa-yen-sign:before {
+  content: "\f157"; }
+
+.fa-yin-yang:before {
+  content: "\f6ad"; }
+
+.fa-yoast:before {
+  content: "\f2b1"; }
+
+.fa-youtube:before {
+  content: "\f167"; }
+
+.fa-youtube-square:before {
+  content: "\f431"; }
+
+.fa-zhihu:before {
+  content: "\f63f"; }
+
+.sr-only {
+  border: 0;
+  clip: rect(0, 0, 0, 0);
+  height: 1px;
+  margin: -1px;
+  overflow: hidden;
+  padding: 0;
+  position: absolute;
+  width: 1px; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+  clip: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  position: static;
+  width: auto; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..7350e45e2782978f84c75929922f7326bb7942aa
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/fontawesome.min.css
@@ -0,0 +1 @@
+.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-abacus:before{content:"\f640"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acorn:before{content:"\f6ae"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-alarm-clock:before{content:"\f34e"}.fa-algolia:before{content:"\f36c"}.fa-alicorn:before{content:"\f6b0"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-analytics:before{content:"\f643"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angel:before{content:"\f779"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-crate:before{content:"\f6b1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-alt-down:before{content:"\f354"}.fa-arrow-alt-from-bottom:before{content:"\f346"}.fa-arrow-alt-from-left:before{content:"\f347"}.fa-arrow-alt-from-right:before{content:"\f348"}.fa-arrow-alt-from-top:before{content:"\f349"}.fa-arrow-alt-left:before{content:"\f355"}.fa-arrow-alt-right:before{content:"\f356"}.fa-arrow-alt-square-down:before{content:"\f350"}.fa-arrow-alt-square-left:before{content:"\f351"}.fa-arrow-alt-square-right:before{content:"\f352"}.fa-arrow-alt-square-up:before{content:"\f353"}.fa-arrow-alt-to-bottom:before{content:"\f34a"}.fa-arrow-alt-to-left:before{content:"\f34b"}.fa-arrow-alt-to-right:before{content:"\f34c"}.fa-arrow-alt-to-top:before{content:"\f34d"}.fa-arrow-alt-up:before{content:"\f357"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-from-bottom:before{content:"\f342"}.fa-arrow-from-left:before{content:"\f343"}.fa-arrow-from-right:before{content:"\f344"}.fa-arrow-from-top:before{content:"\f345"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-square-down:before{content:"\f339"}.fa-arrow-square-left:before{content:"\f33a"}.fa-arrow-square-right:before{content:"\f33b"}.fa-arrow-square-up:before{content:"\f33c"}.fa-arrow-to-bottom:before{content:"\f33d"}.fa-arrow-to-left:before{content:"\f33e"}.fa-arrow-to-right:before{content:"\f340"}.fa-arrow-to-top:before{content:"\f341"}.fa-arrow-up:before{content:"\f062"}.fa-arrows:before{content:"\f047"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-arrows-h:before{content:"\f07e"}.fa-arrows-v:before{content:"\f07d"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-atom-alt:before{content:"\f5d3"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-axe:before{content:"\f6b2"}.fa-axe-battle:before{content:"\f6b3"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backpack:before{content:"\f5d4"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-badge:before{content:"\f335"}.fa-badge-check:before{content:"\f336"}.fa-badge-dollar:before{content:"\f645"}.fa-badge-percent:before{content:"\f646"}.fa-badger-honey:before{content:"\f6b4"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ball-pile:before{content:"\f77e"}.fa-ballot:before{content:"\f732"}.fa-ballot-check:before{content:"\f733"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-barcode-alt:before{content:"\f463"}.fa-barcode-read:before{content:"\f464"}.fa-barcode-scan:before{content:"\f465"}.fa-bars:before{content:"\f0c9"}.fa-baseball:before{content:"\f432"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-basketball-hoop:before{content:"\f435"}.fa-bat:before{content:"\f6b5"}.fa-bath:before{content:"\f2cd"}.fa-battery-bolt:before{content:"\f376"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-slash:before{content:"\f377"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-school:before{content:"\f5d5"}.fa-bell-school-slash:before{content:"\f5d6"}.fa-bell-slash:before{content:"\f1f6"}.fa-bells:before{content:"\f77f"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blanket:before{content:"\f498"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bone-break:before{content:"\f5d8"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-alt:before{content:"\f5d9"}.fa-book-dead:before{content:"\f6b7"}.fa-book-heart:before{content:"\f499"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-book-spells:before{content:"\f6b8"}.fa-bookmark:before{content:"\f02e"}.fa-books:before{content:"\f5db"}.fa-boot:before{content:"\f782"}.fa-booth-curtain:before{content:"\f734"}.fa-bow-arrow:before{content:"\f6b9"}.fa-bowling-ball:before{content:"\f436"}.fa-bowling-pins:before{content:"\f437"}.fa-box:before{content:"\f466"}.fa-box-alt:before{content:"\f49a"}.fa-box-ballot:before{content:"\f735"}.fa-box-check:before{content:"\f467"}.fa-box-fragile:before{content:"\f49b"}.fa-box-full:before{content:"\f49c"}.fa-box-heart:before{content:"\f49d"}.fa-box-open:before{content:"\f49e"}.fa-box-up:before{content:"\f49f"}.fa-box-usd:before{content:"\f4a0"}.fa-boxes:before{content:"\f468"}.fa-boxes-alt:before{content:"\f4a1"}.fa-boxing-glove:before{content:"\f438"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-browser:before{content:"\f37e"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-bullseye-arrow:before{content:"\f648"}.fa-bullseye-pointer:before{content:"\f649"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-bus-school:before{content:"\f5dd"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-cabinet-filing:before{content:"\f64b"}.fa-calculator:before{content:"\f1ec"}.fa-calculator-alt:before{content:"\f64c"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-edit:before{content:"\f333"}.fa-calendar-exclamation:before{content:"\f334"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-star:before{content:"\f736"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-alt:before{content:"\f332"}.fa-camera-retro:before{content:"\f083"}.fa-campfire:before{content:"\f6ba"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candle-holder:before{content:"\f6bc"}.fa-candy-cane:before{content:"\f786"}.fa-candy-corn:before{content:"\f6bd"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-bump:before{content:"\f5e0"}.fa-car-crash:before{content:"\f5e1"}.fa-car-garage:before{content:"\f5e2"}.fa-car-mechanic:before{content:"\f5e3"}.fa-car-side:before{content:"\f5e4"}.fa-car-tilt:before{content:"\f5e5"}.fa-car-wash:before{content:"\f5e6"}.fa-caret-circle-down:before{content:"\f32d"}.fa-caret-circle-left:before{content:"\f32e"}.fa-caret-circle-right:before{content:"\f330"}.fa-caret-circle-up:before{content:"\f331"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cauldron:before{content:"\f6bf"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chair-office:before{content:"\f6c1"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-line-down:before{content:"\f64d"}.fa-chart-network:before{content:"\f78a"}.fa-chart-pie:before{content:"\f200"}.fa-chart-pie-alt:before{content:"\f64e"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-bishop-alt:before{content:"\f43b"}.fa-chess-board:before{content:"\f43c"}.fa-chess-clock:before{content:"\f43d"}.fa-chess-clock-alt:before{content:"\f43e"}.fa-chess-king:before{content:"\f43f"}.fa-chess-king-alt:before{content:"\f440"}.fa-chess-knight:before{content:"\f441"}.fa-chess-knight-alt:before{content:"\f442"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-pawn-alt:before{content:"\f444"}.fa-chess-queen:before{content:"\f445"}.fa-chess-queen-alt:before{content:"\f446"}.fa-chess-rook:before{content:"\f447"}.fa-chess-rook-alt:before{content:"\f448"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-double-down:before{content:"\f322"}.fa-chevron-double-left:before{content:"\f323"}.fa-chevron-double-right:before{content:"\f324"}.fa-chevron-double-up:before{content:"\f325"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-square-down:before{content:"\f329"}.fa-chevron-square-left:before{content:"\f32a"}.fa-chevron-square-right:before{content:"\f32b"}.fa-chevron-square-up:before{content:"\f32c"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chimney:before{content:"\f78b"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-claw-marks:before{content:"\f6c2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-list-check:before{content:"\f737"}.fa-clipboard-prescription:before{content:"\f5e8"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-drizzle:before{content:"\f738"}.fa-cloud-hail:before{content:"\f739"}.fa-cloud-hail-mixed:before{content:"\f73a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-rainbow:before{content:"\f73e"}.fa-cloud-showers:before{content:"\f73f"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sleet:before{content:"\f741"}.fa-cloud-snow:before{content:"\f742"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-clouds:before{content:"\f744"}.fa-clouds-moon:before{content:"\f745"}.fa-clouds-sun:before{content:"\f746"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-club:before{content:"\f327"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-merge:before{content:"\f387"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-coffee-togo:before{content:"\f6c5"}.fa-coffin:before{content:"\f6c6"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-alt-check:before{content:"\f4a2"}.fa-comment-alt-dollar:before{content:"\f650"}.fa-comment-alt-dots:before{content:"\f4a3"}.fa-comment-alt-edit:before{content:"\f4a4"}.fa-comment-alt-exclamation:before{content:"\f4a5"}.fa-comment-alt-lines:before{content:"\f4a6"}.fa-comment-alt-minus:before{content:"\f4a7"}.fa-comment-alt-plus:before{content:"\f4a8"}.fa-comment-alt-slash:before{content:"\f4a9"}.fa-comment-alt-smile:before{content:"\f4aa"}.fa-comment-alt-times:before{content:"\f4ab"}.fa-comment-check:before{content:"\f4ac"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-edit:before{content:"\f4ae"}.fa-comment-exclamation:before{content:"\f4af"}.fa-comment-lines:before{content:"\f4b0"}.fa-comment-minus:before{content:"\f4b1"}.fa-comment-plus:before{content:"\f4b2"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-smile:before{content:"\f4b4"}.fa-comment-times:before{content:"\f4b5"}.fa-comments:before{content:"\f086"}.fa-comments-alt:before{content:"\f4b6"}.fa-comments-alt-dollar:before{content:"\f652"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-slash:before{content:"\f5e9"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-compress-wide:before{content:"\f326"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-container-storage:before{content:"\f4b7"}.fa-contao:before{content:"\f26d"}.fa-conveyor-belt:before{content:"\f46e"}.fa-conveyor-belt-alt:before{content:"\f46f"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-corn:before{content:"\f6c7"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-credit-card-blank:before{content:"\f389"}.fa-credit-card-front:before{content:"\f38a"}.fa-cricket:before{content:"\f449"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-curling:before{content:"\f44a"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dagger:before{content:"\f6cb"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deer:before{content:"\f78e"}.fa-deer-rudolph:before{content:"\f78f"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-desktop-alt:before{content:"\f390"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dewpoint:before{content:"\f748"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diamond:before{content:"\f219"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d10:before{content:"\f6cd"}.fa-dice-d12:before{content:"\f6ce"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d4:before{content:"\f6d0"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-d8:before{content:"\f6d2"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-diploma:before{content:"\f5ea"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-do-not-enter:before{content:"\f5ec"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dog-leashed:before{content:"\f6d4"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-empty:before{content:"\f473"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dolly-flatbed-alt:before{content:"\f475"}.fa-dolly-flatbed-empty:before{content:"\f476"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-circle:before{content:"\f5ed"}.fa-draw-polygon:before{content:"\f5ee"}.fa-draw-square:before{content:"\f5ef"}.fa-dreidel:before{content:"\f792"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick:before{content:"\f6d6"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-duck:before{content:"\f6d8"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-ear:before{content:"\f5f0"}.fa-ear-muffs:before{content:"\f795"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-eclipse:before{content:"\f749"}.fa-eclipse-alt:before{content:"\f74a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-elephant:before{content:"\f6da"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-h-alt:before{content:"\f39b"}.fa-ellipsis-v:before{content:"\f142"}.fa-ellipsis-v-alt:before{content:"\f39c"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-empty-set:before{content:"\f656"}.fa-engine-warning:before{content:"\f5f2"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-dollar:before{content:"\f657"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange:before{content:"\f0ec"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-square:before{content:"\f321"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows:before{content:"\f31d"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expand-wide:before{content:"\f320"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link:before{content:"\f08e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square:before{content:"\f14c"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-evil:before{content:"\f6db"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-field-hockey:before{content:"\f44c"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-certificate:before{content:"\f5f3"}.fa-file-chart-line:before{content:"\f659"}.fa-file-chart-pie:before{content:"\f65a"}.fa-file-check:before{content:"\f316"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-edit:before{content:"\f31c"}.fa-file-excel:before{content:"\f1c3"}.fa-file-exclamation:before{content:"\f31a"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-minus:before{content:"\f318"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-plus:before{content:"\f319"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-spreadsheet:before{content:"\f65b"}.fa-file-times:before{content:"\f317"}.fa-file-upload:before{content:"\f574"}.fa-file-user:before{content:"\f65c"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-film-alt:before{content:"\f3a0"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-smoke:before{content:"\f74b"}.fa-firefox:before{content:"\f269"}.fa-fireplace:before{content:"\f79a"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-alt:before{content:"\f74c"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flame:before{content:"\f6df"}.fa-flask:before{content:"\f0c3"}.fa-flask-poison:before{content:"\f6e0"}.fa-flask-potion:before{content:"\f6e1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-fog:before{content:"\f74e"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-times:before{content:"\f65f"}.fa-folders:before{content:"\f660"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-football-helmet:before{content:"\f44f"}.fa-forklift:before{content:"\f47a"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-fragile:before{content:"\f4bb"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frosty-head:before{content:"\f79b"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-function:before{content:"\f661"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gas-pump-slash:before{content:"\f5f4"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gift-card:before{content:"\f663"}.fa-gifts:before{content:"\f79c"}.fa-gingerbread-man:before{content:"\f79d"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-champagne:before{content:"\f79e"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glass-whiskey-rocks:before{content:"\f7a1"}.fa-glasses:before{content:"\f530"}.fa-glasses-alt:before{content:"\f5f5"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-globe-snow:before{content:"\f7a3"}.fa-globe-stand:before{content:"\f5f6"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-golf-club:before{content:"\f451"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-h1:before{content:"\f313"}.fa-h2:before{content:"\f314"}.fa-h3:before{content:"\f315"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hammer-war:before{content:"\f6e4"}.fa-hamsa:before{content:"\f665"}.fa-hand-heart:before{content:"\f4bc"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-box:before{content:"\f47b"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-magic:before{content:"\f6e5"}.fa-hand-holding-seedling:before{content:"\f4bf"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-receiving:before{content:"\f47c"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-heart:before{content:"\f4c3"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-usd:before{content:"\f4c5"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt:before{content:"\f4c6"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-santa:before{content:"\f7a7"}.fa-hat-winter:before{content:"\f7a8"}.fa-hat-witch:before{content:"\f6e7"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-head-side:before{content:"\f6e9"}.fa-head-vr:before{content:"\f6ea"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heart-circle:before{content:"\f4c7"}.fa-heart-rate:before{content:"\f5f8"}.fa-heart-square:before{content:"\f4c8"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helmet-battle:before{content:"\f6eb"}.fa-hexagon:before{content:"\f312"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-mask:before{content:"\f6ee"}.fa-hockey-puck:before{content:"\f453"}.fa-hockey-sticks:before{content:"\f454"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-home-heart:before{content:"\f4c9"}.fa-hood-cloak:before{content:"\f6ef"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-flood:before{content:"\f74f"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-humidity:before{content:"\f750"}.fa-hurricane:before{content:"\f751"}.fa-i-cursor:before{content:"\f246"}.fa-ice-skate:before{content:"\f7ac"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-inbox-in:before{content:"\f310"}.fa-inbox-out:before{content:"\f311"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-industry-alt:before{content:"\f3b3"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-info-square:before{content:"\f30f"}.fa-inhaler:before{content:"\f5f9"}.fa-instagram:before{content:"\f16d"}.fa-integral:before{content:"\f667"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-intersection:before{content:"\f668"}.fa-inventory:before{content:"\f480"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jack-o-lantern:before{content:"\f30e"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-key-skeleton:before{content:"\f6f3"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-keynote:before{content:"\f66c"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kidneys:before{content:"\f5fb"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kite:before{content:"\f6f4"}.fa-kiwi-bird:before{content:"\f535"}.fa-knife-kitchen:before{content:"\f6f5"}.fa-korvue:before{content:"\f42f"}.fa-lambda:before{content:"\f66e"}.fa-lamp:before{content:"\f4ca"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before{content:"\f752"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-layer-minus:before{content:"\f5fe"}.fa-layer-plus:before{content:"\f5ff"}.fa-leaf:before{content:"\f06c"}.fa-leaf-heart:before{content:"\f4cb"}.fa-leaf-maple:before{content:"\f6f6"}.fa-leaf-oak:before{content:"\f6f7"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down:before{content:"\f149"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up:before{content:"\f148"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lightbulb-dollar:before{content:"\f670"}.fa-lightbulb-exclamation:before{content:"\f671"}.fa-lightbulb-on:before{content:"\f672"}.fa-lightbulb-slash:before{content:"\f673"}.fa-lights-holiday:before{content:"\f7b2"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lips:before{content:"\f600"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location:before{content:"\f601"}.fa-location-arrow:before{content:"\f124"}.fa-location-circle:before{content:"\f602"}.fa-location-slash:before{content:"\f603"}.fa-lock:before{content:"\f023"}.fa-lock-alt:before{content:"\f30d"}.fa-lock-open:before{content:"\f3c1"}.fa-lock-open-alt:before{content:"\f3c2"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-long-arrow-up:before{content:"\f176"}.fa-loveseat:before{content:"\f4cc"}.fa-low-vision:before{content:"\f2a8"}.fa-luchador:before{content:"\f455"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lyft:before{content:"\f3c3"}.fa-mace:before{content:"\f6f8"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-mandolin:before{content:"\f6f9"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-marker-alt-slash:before{content:"\f605"}.fa-map-marker-check:before{content:"\f606"}.fa-map-marker-edit:before{content:"\f607"}.fa-map-marker-exclamation:before{content:"\f608"}.fa-map-marker-minus:before{content:"\f609"}.fa-map-marker-plus:before{content:"\f60a"}.fa-map-marker-question:before{content:"\f60b"}.fa-map-marker-slash:before{content:"\f60c"}.fa-map-marker-smile:before{content:"\f60d"}.fa-map-marker-times:before{content:"\f60e"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaphone:before{content:"\f675"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-mind-share:before{content:"\f677"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-hexagon:before{content:"\f307"}.fa-minus-octagon:before{content:"\f308"}.fa-minus-square:before{content:"\f146"}.fa-mistletoe:before{content:"\f7b4"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-mobile-android:before{content:"\f3ce"}.fa-mobile-android-alt:before{content:"\f3cf"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monitor-heart-rate:before{content:"\f611"}.fa-monkey:before{content:"\f6fb"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-moon-cloud:before{content:"\f754"}.fa-moon-stars:before{content:"\f755"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mountains:before{content:"\f6fd"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-mug-marshmallows:before{content:"\f7b7"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-narwhal:before{content:"\f6fe"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octagon:before{content:"\f306"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-oil-temp:before{content:"\f614"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-omega:before{content:"\f67a"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-ornament:before{content:"\f7b8"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-brush-alt:before{content:"\f5a9"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-pallet-alt:before{content:"\f483"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-parking-circle:before{content:"\f615"}.fa-parking-circle-slash:before{content:"\f616"}.fa-parking-slash:before{content:"\f617"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paw-alt:before{content:"\f701"}.fa-paw-claws:before{content:"\f702"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pegasus:before{content:"\f703"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil:before{content:"\f040"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-paintbrush:before{content:"\f618"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-pennant:before{content:"\f456"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-person-carry:before{content:"\f4cf"}.fa-person-dolly:before{content:"\f4d0"}.fa-person-dolly-empty:before{content:"\f4d1"}.fa-person-sign:before{content:"\f757"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-office:before{content:"\f67d"}.fa-phone-plus:before{content:"\f4d2"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pi:before{content:"\f67e"}.fa-pie:before{content:"\f705"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pig:before{content:"\f706"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-alt:before{content:"\f3de"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-hexagon:before{content:"\f300"}.fa-plus-octagon:before{content:"\f301"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-podium:before{content:"\f680"}.fa-podium-star:before{content:"\f758"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poll-people:before{content:"\f759"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-presentation:before{content:"\f685"}.fa-print:before{content:"\f02f"}.fa-print-slash:before{content:"\f686"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pumpkin:before{content:"\f707"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-question-square:before{content:"\f2fd"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rabbit:before{content:"\f708"}.fa-rabbit-fast:before{content:"\f709"}.fa-racquet:before{content:"\f45a"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-raindrops:before{content:"\f75c"}.fa-ram:before{content:"\f70a"}.fa-ramp-loading:before{content:"\f4d4"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-rectangle-landscape:before{content:"\f2fa"}.fa-rectangle-portrait:before{content:"\f2fb"}.fa-rectangle-wide:before{content:"\f2fc"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-repeat:before{content:"\f363"}.fa-repeat-1:before{content:"\f365"}.fa-repeat-1-alt:before{content:"\f366"}.fa-repeat-alt:before{content:"\f364"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-retweet-alt:before{content:"\f361"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-route-highway:before{content:"\f61a"}.fa-route-interstate:before{content:"\f61b"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-triangle:before{content:"\f61c"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rv:before{content:"\f7be"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-scalpel:before{content:"\f61d"}.fa-scalpel-path:before{content:"\f61e"}.fa-scanner:before{content:"\f488"}.fa-scanner-keyboard:before{content:"\f489"}.fa-scanner-touchscreen:before{content:"\f48a"}.fa-scarecrow:before{content:"\f70d"}.fa-scarf:before{content:"\f7c1"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-scroll-old:before{content:"\f70f"}.fa-scrubber:before{content:"\f2f8"}.fa-scythe:before{content:"\f710"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-all:before{content:"\f367"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-sheep:before{content:"\f711"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield:before{content:"\f132"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-check:before{content:"\f2f7"}.fa-shield-cross:before{content:"\f712"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shipping-timed:before{content:"\f48c"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shovel:before{content:"\f713"}.fa-shovel-snow:before{content:"\f7c3"}.fa-shower:before{content:"\f2cc"}.fa-shredder:before{content:"\f68a"}.fa-shuttle-van:before{content:"\f5b6"}.fa-shuttlecock:before{content:"\f45b"}.fa-sigma:before{content:"\f68b"}.fa-sign:before{content:"\f4d9"}.fa-sign-in:before{content:"\f090"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out:before{content:"\f08b"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signal-1:before{content:"\f68c"}.fa-signal-2:before{content:"\f68d"}.fa-signal-3:before{content:"\f68e"}.fa-signal-4:before{content:"\f68f"}.fa-signal-alt:before{content:"\f690"}.fa-signal-alt-1:before{content:"\f691"}.fa-signal-alt-2:before{content:"\f692"}.fa-signal-alt-3:before{content:"\f693"}.fa-signal-alt-slash:before{content:"\f694"}.fa-signal-slash:before{content:"\f695"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-skeleton:before{content:"\f620"}.fa-sketch:before{content:"\f7c6"}.fa-ski-jump:before{content:"\f7c7"}.fa-ski-lift:before{content:"\f7c8"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sledding:before{content:"\f7cb"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-sliders-h-square:before{content:"\f3f0"}.fa-sliders-v:before{content:"\f3f1"}.fa-sliders-v-square:before{content:"\f3f2"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-plus:before{content:"\f5b9"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoke:before{content:"\f760"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snake:before{content:"\f716"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snow-blowing:before{content:"\f761"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowflakes:before{content:"\f7cf"}.fa-snowman:before{content:"\f7d0"}.fa-snowmobile:before{content:"\f7d1"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-spade:before{content:"\f2f4"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spider-black-widow:before{content:"\f718"}.fa-spider-web:before{content:"\f719"}.fa-spinner:before{content:"\f110"}.fa-spinner-third:before{content:"\f3f4"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root:before{content:"\f697"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-squirrel:before{content:"\f71a"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-staff:before{content:"\f71b"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-christmas:before{content:"\f7d4"}.fa-star-exclamation:before{content:"\f2f3"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-stars:before{content:"\f762"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-steering-wheel:before{content:"\f622"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stocking:before{content:"\f7d5"}.fa-stomach:before{content:"\f623"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-cloud:before{content:"\f763"}.fa-sun-dust:before{content:"\f764"}.fa-sun-haze:before{content:"\f765"}.fa-sunrise:before{content:"\f766"}.fa-sunset:before{content:"\f767"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sword:before{content:"\f71c"}.fa-swords:before{content:"\f71d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablet-android:before{content:"\f3fb"}.fa-tablet-android-alt:before{content:"\f3fc"}.fa-tablet-rugged:before{content:"\f48f"}.fa-tablets:before{content:"\f490"}.fa-tachometer:before{content:"\f0e4"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tachometer-alt-average:before{content:"\f624"}.fa-tachometer-alt-fast:before{content:"\f625"}.fa-tachometer-alt-fastest:before{content:"\f626"}.fa-tachometer-alt-slow:before{content:"\f627"}.fa-tachometer-alt-slowest:before{content:"\f628"}.fa-tachometer-average:before{content:"\f629"}.fa-tachometer-fast:before{content:"\f62a"}.fa-tachometer-fastest:before{content:"\f62b"}.fa-tachometer-slow:before{content:"\f62c"}.fa-tachometer-slowest:before{content:"\f62d"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tally:before{content:"\f69c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-frigid:before{content:"\f768"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-hot:before{content:"\f76a"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-tennis-ball:before{content:"\f45e"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-theta:before{content:"\f69e"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-thunderstorm:before{content:"\f76c"}.fa-thunderstorm-moon:before{content:"\f76d"}.fa-thunderstorm-sun:before{content:"\f76e"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tilde:before{content:"\f69f"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-times-hexagon:before{content:"\f2ee"}.fa-times-octagon:before{content:"\f2f0"}.fa-times-square:before{content:"\f2d3"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tire:before{content:"\f631"}.fa-tire-flat:before{content:"\f632"}.fa-tire-pressure-warning:before{content:"\f633"}.fa-tire-rugged:before{content:"\f634"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-alt:before{content:"\f71f"}.fa-tombstone:before{content:"\f720"}.fa-tombstone-alt:before{content:"\f721"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-toothbrush:before{content:"\f635"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-cone:before{content:"\f636"}.fa-traffic-light:before{content:"\f637"}.fa-traffic-light-go:before{content:"\f638"}.fa-traffic-light-slow:before{content:"\f639"}.fa-traffic-light-stop:before{content:"\f63a"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-treasure-chest:before{content:"\f723"}.fa-tree:before{content:"\f1bb"}.fa-tree-alt:before{content:"\f400"}.fa-tree-christmas:before{content:"\f7db"}.fa-tree-decorated:before{content:"\f7dc"}.fa-tree-large:before{content:"\f7dd"}.fa-trees:before{content:"\f724"}.fa-trello:before{content:"\f181"}.fa-triangle:before{content:"\f2ec"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-trophy-alt:before{content:"\f2eb"}.fa-truck:before{content:"\f0d1"}.fa-truck-container:before{content:"\f4dc"}.fa-truck-couch:before{content:"\f4dd"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plow:before{content:"\f7de"}.fa-truck-ramp:before{content:"\f4e0"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-turkey:before{content:"\f725"}.fa-turtle:before{content:"\f726"}.fa-tv:before{content:"\f26c"}.fa-tv-retro:before{content:"\f401"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-unicorn:before{content:"\f727"}.fa-union:before{content:"\f6a2"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usd-circle:before{content:"\f2e8"}.fa-usd-square:before{content:"\f2e9"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-chart:before{content:"\f6a3"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-crown:before{content:"\f6a4"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-class:before{content:"\f63d"}.fa-users-cog:before{content:"\f509"}.fa-users-crown:before{content:"\f6a5"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-fork:before{content:"\f2e3"}.fa-utensil-knife:before{content:"\f2e4"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-utensils-alt:before{content:"\f2e6"}.fa-vaadin:before{content:"\f408"}.fa-value-absolute:before{content:"\f6a6"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-plus:before{content:"\f4e1"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume:before{content:"\f6a8"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-slash:before{content:"\f2e2"}.fa-volume-up:before{content:"\f028"}.fa-vote-nay:before{content:"\f771"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-wand:before{content:"\f72a"}.fa-wand-magic:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-warehouse-alt:before{content:"\f495"}.fa-watch:before{content:"\f2e1"}.fa-watch-fitness:before{content:"\f63e"}.fa-water:before{content:"\f773"}.fa-water-lower:before{content:"\f774"}.fa-water-rise:before{content:"\f775"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whale:before{content:"\f72c"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheat:before{content:"\f72d"}.fa-wheelchair:before{content:"\f193"}.fa-whistle:before{content:"\f460"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wifi-1:before{content:"\f6aa"}.fa-wifi-2:before{content:"\f6ab"}.fa-wifi-slash:before{content:"\f6ac"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-wind-warning:before{content:"\f776"}.fa-window:before{content:"\f40e"}.fa-window-alt:before{content:"\f40f"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-windsock:before{content:"\f777"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wreath:before{content:"\f7e2"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.css
new file mode 100644
index 0000000000000000000000000000000000000000..6591f654947b0ed6fd962649e49abbf48cb69f84
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.css
@@ -0,0 +1,10 @@
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 300;
+  src: url("../webfonts/fa-light-300.eot");
+  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg"); }
+
+.fal {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 300; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..fabb5ecb90d9bfe83488bb18a1f1d3d74db72314
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/light.min.css
@@ -0,0 +1 @@
+@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;src:url(../webfonts/fa-light-300.eot);src:url(../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-light-300.woff2) format("woff2"),url(../webfonts/fa-light-300.woff) format("woff"),url(../webfonts/fa-light-300.ttf) format("truetype"),url(../webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-family:"Font Awesome 5 Pro";font-weight:300}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.css
new file mode 100644
index 0000000000000000000000000000000000000000..e1ba323456f809c0a78b3dda3078101f62539381
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.css
@@ -0,0 +1,10 @@
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 400;
+  src: url("../webfonts/fa-regular-400.eot");
+  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }
+
+.far {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..ede4ba521c76a15898fc4d47fee1abbf04268c6b
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/regular.min.css
@@ -0,0 +1 @@
+@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Pro";font-weight:400}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.css
new file mode 100644
index 0000000000000000000000000000000000000000..9ab0690b0c939f252494fef1842a15d942ec95bb
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.css
@@ -0,0 +1,11 @@
+@font-face {
+  font-family: 'Font Awesome 5 Pro';
+  font-style: normal;
+  font-weight: 900;
+  src: url("../webfonts/fa-solid-900.eot");
+  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }
+
+.fa,
+.fas {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 900; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..1307715456c1fd6185aae5c4ecb074a8380fd12c
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/solid.min.css
@@ -0,0 +1 @@
+@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.css
new file mode 100644
index 0000000000000000000000000000000000000000..7ed0f993bcad3387bd7f533787e1a0df9b97ecde
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.css
@@ -0,0 +1,341 @@
+svg:not(:root).svg-inline--fa {
+  overflow: visible; }
+
+.svg-inline--fa {
+  display: inline-block;
+  font-size: inherit;
+  height: 1em;
+  overflow: visible;
+  vertical-align: -.125em; }
+  .svg-inline--fa.fa-lg {
+    vertical-align: -.225em; }
+  .svg-inline--fa.fa-w-1 {
+    width: 0.0625em; }
+  .svg-inline--fa.fa-w-2 {
+    width: 0.125em; }
+  .svg-inline--fa.fa-w-3 {
+    width: 0.1875em; }
+  .svg-inline--fa.fa-w-4 {
+    width: 0.25em; }
+  .svg-inline--fa.fa-w-5 {
+    width: 0.3125em; }
+  .svg-inline--fa.fa-w-6 {
+    width: 0.375em; }
+  .svg-inline--fa.fa-w-7 {
+    width: 0.4375em; }
+  .svg-inline--fa.fa-w-8 {
+    width: 0.5em; }
+  .svg-inline--fa.fa-w-9 {
+    width: 0.5625em; }
+  .svg-inline--fa.fa-w-10 {
+    width: 0.625em; }
+  .svg-inline--fa.fa-w-11 {
+    width: 0.6875em; }
+  .svg-inline--fa.fa-w-12 {
+    width: 0.75em; }
+  .svg-inline--fa.fa-w-13 {
+    width: 0.8125em; }
+  .svg-inline--fa.fa-w-14 {
+    width: 0.875em; }
+  .svg-inline--fa.fa-w-15 {
+    width: 0.9375em; }
+  .svg-inline--fa.fa-w-16 {
+    width: 1em; }
+  .svg-inline--fa.fa-w-17 {
+    width: 1.0625em; }
+  .svg-inline--fa.fa-w-18 {
+    width: 1.125em; }
+  .svg-inline--fa.fa-w-19 {
+    width: 1.1875em; }
+  .svg-inline--fa.fa-w-20 {
+    width: 1.25em; }
+  .svg-inline--fa.fa-pull-left {
+    margin-right: .3em;
+    width: auto; }
+  .svg-inline--fa.fa-pull-right {
+    margin-left: .3em;
+    width: auto; }
+  .svg-inline--fa.fa-border {
+    height: 1.5em; }
+  .svg-inline--fa.fa-li {
+    width: 2em; }
+  .svg-inline--fa.fa-fw {
+    width: 1.25em; }
+
+.fa-layers svg.svg-inline--fa {
+  bottom: 0;
+  left: 0;
+  margin: auto;
+  position: absolute;
+  right: 0;
+  top: 0; }
+
+.fa-layers {
+  display: inline-block;
+  height: 1em;
+  position: relative;
+  text-align: center;
+  vertical-align: -.125em;
+  width: 1em; }
+  .fa-layers svg.svg-inline--fa {
+    -webkit-transform-origin: center center;
+            transform-origin: center center; }
+
+.fa-layers-text, .fa-layers-counter {
+  display: inline-block;
+  position: absolute;
+  text-align: center; }
+
+.fa-layers-text {
+  left: 50%;
+  top: 50%;
+  -webkit-transform: translate(-50%, -50%);
+          transform: translate(-50%, -50%);
+  -webkit-transform-origin: center center;
+          transform-origin: center center; }
+
+.fa-layers-counter {
+  background-color: #ff253a;
+  border-radius: 1em;
+  -webkit-box-sizing: border-box;
+          box-sizing: border-box;
+  color: #fff;
+  height: 1.5em;
+  line-height: 1;
+  max-width: 5em;
+  min-width: 1.5em;
+  overflow: hidden;
+  padding: .25em;
+  right: 0;
+  text-overflow: ellipsis;
+  top: 0;
+  -webkit-transform: scale(0.25);
+          transform: scale(0.25);
+  -webkit-transform-origin: top right;
+          transform-origin: top right; }
+
+.fa-layers-bottom-right {
+  bottom: 0;
+  right: 0;
+  top: auto;
+  -webkit-transform: scale(0.25);
+          transform: scale(0.25);
+  -webkit-transform-origin: bottom right;
+          transform-origin: bottom right; }
+
+.fa-layers-bottom-left {
+  bottom: 0;
+  left: 0;
+  right: auto;
+  top: auto;
+  -webkit-transform: scale(0.25);
+          transform: scale(0.25);
+  -webkit-transform-origin: bottom left;
+          transform-origin: bottom left; }
+
+.fa-layers-top-right {
+  right: 0;
+  top: 0;
+  -webkit-transform: scale(0.25);
+          transform: scale(0.25);
+  -webkit-transform-origin: top right;
+          transform-origin: top right; }
+
+.fa-layers-top-left {
+  left: 0;
+  right: auto;
+  top: 0;
+  -webkit-transform: scale(0.25);
+          transform: scale(0.25);
+  -webkit-transform-origin: top left;
+          transform-origin: top left; }
+
+.fa-lg {
+  font-size: 1.33333em;
+  line-height: 0.75em;
+  vertical-align: -.0667em; }
+
+.fa-xs {
+  font-size: .75em; }
+
+.fa-sm {
+  font-size: .875em; }
+
+.fa-1x {
+  font-size: 1em; }
+
+.fa-2x {
+  font-size: 2em; }
+
+.fa-3x {
+  font-size: 3em; }
+
+.fa-4x {
+  font-size: 4em; }
+
+.fa-5x {
+  font-size: 5em; }
+
+.fa-6x {
+  font-size: 6em; }
+
+.fa-7x {
+  font-size: 7em; }
+
+.fa-8x {
+  font-size: 8em; }
+
+.fa-9x {
+  font-size: 9em; }
+
+.fa-10x {
+  font-size: 10em; }
+
+.fa-fw {
+  text-align: center;
+  width: 1.25em; }
+
+.fa-ul {
+  list-style-type: none;
+  margin-left: 2.5em;
+  padding-left: 0; }
+  .fa-ul > li {
+    position: relative; }
+
+.fa-li {
+  left: -2em;
+  position: absolute;
+  text-align: center;
+  width: 2em;
+  line-height: inherit; }
+
+.fa-border {
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+  padding: .2em .25em .15em; }
+
+.fa-pull-left {
+  float: left; }
+
+.fa-pull-right {
+  float: right; }
+
+.fa.fa-pull-left,
+.fas.fa-pull-left,
+.far.fa-pull-left,
+.fal.fa-pull-left,
+.fab.fa-pull-left {
+  margin-right: .3em; }
+
+.fa.fa-pull-right,
+.fas.fa-pull-right,
+.far.fa-pull-right,
+.fal.fa-pull-right,
+.fab.fa-pull-right {
+  margin-left: .3em; }
+
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+          animation: fa-spin 2s infinite linear; }
+
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+          animation: fa-spin 1s infinite steps(8); }
+
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg); }
+  100% {
+    -webkit-transform: rotate(360deg);
+            transform: rotate(360deg); } }
+
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+          transform: rotate(90deg); }
+
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+          transform: rotate(180deg); }
+
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+          transform: rotate(270deg); }
+
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+  -webkit-transform: scale(-1, 1);
+          transform: scale(-1, 1); }
+
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(1, -1);
+          transform: scale(1, -1); }
+
+.fa-flip-horizontal.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(-1, -1);
+          transform: scale(-1, -1); }
+
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  -webkit-filter: none;
+          filter: none; }
+
+.fa-stack {
+  display: inline-block;
+  height: 2em;
+  position: relative;
+  width: 2.5em; }
+
+.fa-stack-1x,
+.fa-stack-2x {
+  bottom: 0;
+  left: 0;
+  margin: auto;
+  position: absolute;
+  right: 0;
+  top: 0; }
+
+.svg-inline--fa.fa-stack-1x {
+  height: 1em;
+  width: 1.25em; }
+
+.svg-inline--fa.fa-stack-2x {
+  height: 2em;
+  width: 2.5em; }
+
+.fa-inverse {
+  color: #fff; }
+
+.sr-only {
+  border: 0;
+  clip: rect(0, 0, 0, 0);
+  height: 1px;
+  margin: -1px;
+  overflow: hidden;
+  padding: 0;
+  position: absolute;
+  width: 1px; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+  clip: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  position: static;
+  width: auto; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e6fc13284cdf07dacd7436f67236f7da07e0a4ab
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/svg-with-js.min.css
@@ -0,0 +1 @@
+.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.css
new file mode 100644
index 0000000000000000000000000000000000000000..ea81e704370eb37e45d1b59b156234d6ac9b191a
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.css
@@ -0,0 +1,2162 @@
+.fa.fa-glass:before {
+  content: "\f000"; }
+
+.fa.fa-meetup {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-star-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-star-o:before {
+  content: "\f005"; }
+
+.fa.fa-remove:before {
+  content: "\f00d"; }
+
+.fa.fa-close:before {
+  content: "\f00d"; }
+
+.fa.fa-gear:before {
+  content: "\f013"; }
+
+.fa.fa-trash-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-trash-o:before {
+  content: "\f2ed"; }
+
+.fa.fa-file-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-o:before {
+  content: "\f15b"; }
+
+.fa.fa-clock-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-clock-o:before {
+  content: "\f017"; }
+
+.fa.fa-arrow-circle-o-down {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-arrow-circle-o-down:before {
+  content: "\f358"; }
+
+.fa.fa-arrow-circle-o-up {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-arrow-circle-o-up:before {
+  content: "\f35b"; }
+
+.fa.fa-play-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-play-circle-o:before {
+  content: "\f144"; }
+
+.fa.fa-repeat:before {
+  content: "\f01e"; }
+
+.fa.fa-rotate-right:before {
+  content: "\f01e"; }
+
+.fa.fa-refresh:before {
+  content: "\f021"; }
+
+.fa.fa-list-alt {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-dedent:before {
+  content: "\f03b"; }
+
+.fa.fa-video-camera:before {
+  content: "\f03d"; }
+
+.fa.fa-picture-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-picture-o:before {
+  content: "\f03e"; }
+
+.fa.fa-photo {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-photo:before {
+  content: "\f03e"; }
+
+.fa.fa-image {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-image:before {
+  content: "\f03e"; }
+
+.fa.fa-pencil:before {
+  content: "\f303"; }
+
+.fa.fa-map-marker:before {
+  content: "\f3c5"; }
+
+.fa.fa-pencil-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-pencil-square-o:before {
+  content: "\f044"; }
+
+.fa.fa-share-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-share-square-o:before {
+  content: "\f14d"; }
+
+.fa.fa-check-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-check-square-o:before {
+  content: "\f14a"; }
+
+.fa.fa-arrows:before {
+  content: "\f0b2"; }
+
+.fa.fa-times-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-times-circle-o:before {
+  content: "\f057"; }
+
+.fa.fa-check-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-check-circle-o:before {
+  content: "\f058"; }
+
+.fa.fa-mail-forward:before {
+  content: "\f064"; }
+
+.fa.fa-eye {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-eye-slash {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-warning:before {
+  content: "\f071"; }
+
+.fa.fa-calendar:before {
+  content: "\f073"; }
+
+.fa.fa-arrows-v:before {
+  content: "\f338"; }
+
+.fa.fa-arrows-h:before {
+  content: "\f337"; }
+
+.fa.fa-bar-chart {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-bar-chart:before {
+  content: "\f080"; }
+
+.fa.fa-bar-chart-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-bar-chart-o:before {
+  content: "\f080"; }
+
+.fa.fa-twitter-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-facebook-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gears:before {
+  content: "\f085"; }
+
+.fa.fa-thumbs-o-up {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-thumbs-o-up:before {
+  content: "\f164"; }
+
+.fa.fa-thumbs-o-down {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-thumbs-o-down:before {
+  content: "\f165"; }
+
+.fa.fa-heart-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-heart-o:before {
+  content: "\f004"; }
+
+.fa.fa-sign-out:before {
+  content: "\f2f5"; }
+
+.fa.fa-linkedin-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-linkedin-square:before {
+  content: "\f08c"; }
+
+.fa.fa-thumb-tack:before {
+  content: "\f08d"; }
+
+.fa.fa-external-link:before {
+  content: "\f35d"; }
+
+.fa.fa-sign-in:before {
+  content: "\f2f6"; }
+
+.fa.fa-github-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-lemon-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-lemon-o:before {
+  content: "\f094"; }
+
+.fa.fa-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-square-o:before {
+  content: "\f0c8"; }
+
+.fa.fa-bookmark-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-bookmark-o:before {
+  content: "\f02e"; }
+
+.fa.fa-twitter {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-facebook {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-facebook:before {
+  content: "\f39e"; }
+
+.fa.fa-facebook-f {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-facebook-f:before {
+  content: "\f39e"; }
+
+.fa.fa-github {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-credit-card {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-feed:before {
+  content: "\f09e"; }
+
+.fa.fa-hdd-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hdd-o:before {
+  content: "\f0a0"; }
+
+.fa.fa-hand-o-right {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-o-right:before {
+  content: "\f0a4"; }
+
+.fa.fa-hand-o-left {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-o-left:before {
+  content: "\f0a5"; }
+
+.fa.fa-hand-o-up {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-o-up:before {
+  content: "\f0a6"; }
+
+.fa.fa-hand-o-down {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-o-down:before {
+  content: "\f0a7"; }
+
+.fa.fa-arrows-alt:before {
+  content: "\f31e"; }
+
+.fa.fa-group:before {
+  content: "\f0c0"; }
+
+.fa.fa-chain:before {
+  content: "\f0c1"; }
+
+.fa.fa-scissors:before {
+  content: "\f0c4"; }
+
+.fa.fa-files-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-files-o:before {
+  content: "\f0c5"; }
+
+.fa.fa-floppy-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-floppy-o:before {
+  content: "\f0c7"; }
+
+.fa.fa-navicon:before {
+  content: "\f0c9"; }
+
+.fa.fa-reorder:before {
+  content: "\f0c9"; }
+
+.fa.fa-pinterest {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pinterest-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus:before {
+  content: "\f0d5"; }
+
+.fa.fa-money {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-money:before {
+  content: "\f3d1"; }
+
+.fa.fa-unsorted:before {
+  content: "\f0dc"; }
+
+.fa.fa-sort-desc:before {
+  content: "\f0dd"; }
+
+.fa.fa-sort-asc:before {
+  content: "\f0de"; }
+
+.fa.fa-linkedin {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-linkedin:before {
+  content: "\f0e1"; }
+
+.fa.fa-rotate-left:before {
+  content: "\f0e2"; }
+
+.fa.fa-legal:before {
+  content: "\f0e3"; }
+
+.fa.fa-tachometer:before {
+  content: "\f3fd"; }
+
+.fa.fa-dashboard:before {
+  content: "\f3fd"; }
+
+.fa.fa-comment-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-comment-o:before {
+  content: "\f075"; }
+
+.fa.fa-comments-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-comments-o:before {
+  content: "\f086"; }
+
+.fa.fa-flash:before {
+  content: "\f0e7"; }
+
+.fa.fa-clipboard {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-paste {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-paste:before {
+  content: "\f328"; }
+
+.fa.fa-lightbulb-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-lightbulb-o:before {
+  content: "\f0eb"; }
+
+.fa.fa-exchange:before {
+  content: "\f362"; }
+
+.fa.fa-cloud-download:before {
+  content: "\f381"; }
+
+.fa.fa-cloud-upload:before {
+  content: "\f382"; }
+
+.fa.fa-bell-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-bell-o:before {
+  content: "\f0f3"; }
+
+.fa.fa-cutlery:before {
+  content: "\f2e7"; }
+
+.fa.fa-file-text-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-text-o:before {
+  content: "\f15c"; }
+
+.fa.fa-building-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-building-o:before {
+  content: "\f1ad"; }
+
+.fa.fa-hospital-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hospital-o:before {
+  content: "\f0f8"; }
+
+.fa.fa-tablet:before {
+  content: "\f3fa"; }
+
+.fa.fa-mobile:before {
+  content: "\f3cd"; }
+
+.fa.fa-mobile-phone:before {
+  content: "\f3cd"; }
+
+.fa.fa-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-circle-o:before {
+  content: "\f111"; }
+
+.fa.fa-mail-reply:before {
+  content: "\f3e5"; }
+
+.fa.fa-github-alt {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-folder-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-folder-o:before {
+  content: "\f07b"; }
+
+.fa.fa-folder-open-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-folder-open-o:before {
+  content: "\f07c"; }
+
+.fa.fa-smile-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-smile-o:before {
+  content: "\f118"; }
+
+.fa.fa-frown-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-frown-o:before {
+  content: "\f119"; }
+
+.fa.fa-meh-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-meh-o:before {
+  content: "\f11a"; }
+
+.fa.fa-keyboard-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-keyboard-o:before {
+  content: "\f11c"; }
+
+.fa.fa-flag-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-flag-o:before {
+  content: "\f024"; }
+
+.fa.fa-mail-reply-all:before {
+  content: "\f122"; }
+
+.fa.fa-star-half-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-star-half-o:before {
+  content: "\f089"; }
+
+.fa.fa-star-half-empty {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-star-half-empty:before {
+  content: "\f089"; }
+
+.fa.fa-star-half-full {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-star-half-full:before {
+  content: "\f089"; }
+
+.fa.fa-code-fork:before {
+  content: "\f126"; }
+
+.fa.fa-chain-broken:before {
+  content: "\f127"; }
+
+.fa.fa-shield:before {
+  content: "\f3ed"; }
+
+.fa.fa-calendar-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-calendar-o:before {
+  content: "\f133"; }
+
+.fa.fa-maxcdn {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-html5 {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-css3 {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ticket:before {
+  content: "\f3ff"; }
+
+.fa.fa-minus-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-minus-square-o:before {
+  content: "\f146"; }
+
+.fa.fa-level-up:before {
+  content: "\f3bf"; }
+
+.fa.fa-level-down:before {
+  content: "\f3be"; }
+
+.fa.fa-pencil-square:before {
+  content: "\f14b"; }
+
+.fa.fa-external-link-square:before {
+  content: "\f360"; }
+
+.fa.fa-compass {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-caret-square-o-down {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-caret-square-o-down:before {
+  content: "\f150"; }
+
+.fa.fa-toggle-down {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-toggle-down:before {
+  content: "\f150"; }
+
+.fa.fa-caret-square-o-up {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-caret-square-o-up:before {
+  content: "\f151"; }
+
+.fa.fa-toggle-up {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-toggle-up:before {
+  content: "\f151"; }
+
+.fa.fa-caret-square-o-right {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-caret-square-o-right:before {
+  content: "\f152"; }
+
+.fa.fa-toggle-right {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-toggle-right:before {
+  content: "\f152"; }
+
+.fa.fa-eur:before {
+  content: "\f153"; }
+
+.fa.fa-euro:before {
+  content: "\f153"; }
+
+.fa.fa-gbp:before {
+  content: "\f154"; }
+
+.fa.fa-usd:before {
+  content: "\f155"; }
+
+.fa.fa-dollar:before {
+  content: "\f155"; }
+
+.fa.fa-inr:before {
+  content: "\f156"; }
+
+.fa.fa-rupee:before {
+  content: "\f156"; }
+
+.fa.fa-jpy:before {
+  content: "\f157"; }
+
+.fa.fa-cny:before {
+  content: "\f157"; }
+
+.fa.fa-rmb:before {
+  content: "\f157"; }
+
+.fa.fa-yen:before {
+  content: "\f157"; }
+
+.fa.fa-rub:before {
+  content: "\f158"; }
+
+.fa.fa-ruble:before {
+  content: "\f158"; }
+
+.fa.fa-rouble:before {
+  content: "\f158"; }
+
+.fa.fa-krw:before {
+  content: "\f159"; }
+
+.fa.fa-won:before {
+  content: "\f159"; }
+
+.fa.fa-btc {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bitcoin {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bitcoin:before {
+  content: "\f15a"; }
+
+.fa.fa-file-text:before {
+  content: "\f15c"; }
+
+.fa.fa-sort-alpha-asc:before {
+  content: "\f15d"; }
+
+.fa.fa-sort-alpha-desc:before {
+  content: "\f15e"; }
+
+.fa.fa-sort-amount-asc:before {
+  content: "\f160"; }
+
+.fa.fa-sort-amount-desc:before {
+  content: "\f161"; }
+
+.fa.fa-sort-numeric-asc:before {
+  content: "\f162"; }
+
+.fa.fa-sort-numeric-desc:before {
+  content: "\f163"; }
+
+.fa.fa-youtube-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-youtube {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-xing {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-xing-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-youtube-play {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-youtube-play:before {
+  content: "\f167"; }
+
+.fa.fa-dropbox {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-stack-overflow {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-instagram {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-flickr {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-adn {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bitbucket {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bitbucket-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bitbucket-square:before {
+  content: "\f171"; }
+
+.fa.fa-tumblr {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-tumblr-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-long-arrow-down:before {
+  content: "\f309"; }
+
+.fa.fa-long-arrow-up:before {
+  content: "\f30c"; }
+
+.fa.fa-long-arrow-left:before {
+  content: "\f30a"; }
+
+.fa.fa-long-arrow-right:before {
+  content: "\f30b"; }
+
+.fa.fa-apple {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-windows {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-android {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-linux {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-dribbble {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-skype {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-foursquare {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-trello {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gratipay {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gittip {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gittip:before {
+  content: "\f184"; }
+
+.fa.fa-sun-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-sun-o:before {
+  content: "\f185"; }
+
+.fa.fa-moon-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-moon-o:before {
+  content: "\f186"; }
+
+.fa.fa-vk {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-weibo {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-renren {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pagelines {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-stack-exchange {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-arrow-circle-o-right {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-arrow-circle-o-right:before {
+  content: "\f35a"; }
+
+.fa.fa-arrow-circle-o-left {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-arrow-circle-o-left:before {
+  content: "\f359"; }
+
+.fa.fa-caret-square-o-left {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-caret-square-o-left:before {
+  content: "\f191"; }
+
+.fa.fa-toggle-left {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-toggle-left:before {
+  content: "\f191"; }
+
+.fa.fa-dot-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-dot-circle-o:before {
+  content: "\f192"; }
+
+.fa.fa-vimeo-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-try:before {
+  content: "\f195"; }
+
+.fa.fa-turkish-lira:before {
+  content: "\f195"; }
+
+.fa.fa-plus-square-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-plus-square-o:before {
+  content: "\f0fe"; }
+
+.fa.fa-slack {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wordpress {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-openid {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-institution:before {
+  content: "\f19c"; }
+
+.fa.fa-bank:before {
+  content: "\f19c"; }
+
+.fa.fa-mortar-board:before {
+  content: "\f19d"; }
+
+.fa.fa-yahoo {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-reddit {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-reddit-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-stumbleupon-circle {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-stumbleupon {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-delicious {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-digg {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pied-piper-pp {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pied-piper-alt {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-drupal {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-joomla {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-spoon:before {
+  content: "\f2e5"; }
+
+.fa.fa-behance {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-behance-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-steam {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-steam-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-automobile:before {
+  content: "\f1b9"; }
+
+.fa.fa-cab:before {
+  content: "\f1ba"; }
+
+.fa.fa-envelope-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-envelope-o:before {
+  content: "\f0e0"; }
+
+.fa.fa-deviantart {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-soundcloud {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-file-pdf-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-pdf-o:before {
+  content: "\f1c1"; }
+
+.fa.fa-file-word-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-word-o:before {
+  content: "\f1c2"; }
+
+.fa.fa-file-excel-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-excel-o:before {
+  content: "\f1c3"; }
+
+.fa.fa-file-powerpoint-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-powerpoint-o:before {
+  content: "\f1c4"; }
+
+.fa.fa-file-image-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-image-o:before {
+  content: "\f1c5"; }
+
+.fa.fa-file-photo-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-photo-o:before {
+  content: "\f1c5"; }
+
+.fa.fa-file-picture-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-picture-o:before {
+  content: "\f1c5"; }
+
+.fa.fa-file-archive-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-archive-o:before {
+  content: "\f1c6"; }
+
+.fa.fa-file-zip-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-zip-o:before {
+  content: "\f1c6"; }
+
+.fa.fa-file-audio-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-audio-o:before {
+  content: "\f1c7"; }
+
+.fa.fa-file-sound-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-sound-o:before {
+  content: "\f1c7"; }
+
+.fa.fa-file-video-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-video-o:before {
+  content: "\f1c8"; }
+
+.fa.fa-file-movie-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-movie-o:before {
+  content: "\f1c8"; }
+
+.fa.fa-file-code-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-file-code-o:before {
+  content: "\f1c9"; }
+
+.fa.fa-vine {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-codepen {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-jsfiddle {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-life-ring {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-life-bouy {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-life-bouy:before {
+  content: "\f1cd"; }
+
+.fa.fa-life-buoy {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-life-buoy:before {
+  content: "\f1cd"; }
+
+.fa.fa-life-saver {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-life-saver:before {
+  content: "\f1cd"; }
+
+.fa.fa-support {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-support:before {
+  content: "\f1cd"; }
+
+.fa.fa-circle-o-notch:before {
+  content: "\f1ce"; }
+
+.fa.fa-rebel {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ra {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ra:before {
+  content: "\f1d0"; }
+
+.fa.fa-resistance {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-resistance:before {
+  content: "\f1d0"; }
+
+.fa.fa-empire {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ge {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ge:before {
+  content: "\f1d1"; }
+
+.fa.fa-git-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-git {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-hacker-news {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-y-combinator-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-y-combinator-square:before {
+  content: "\f1d4"; }
+
+.fa.fa-yc-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-yc-square:before {
+  content: "\f1d4"; }
+
+.fa.fa-tencent-weibo {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-qq {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-weixin {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wechat {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wechat:before {
+  content: "\f1d7"; }
+
+.fa.fa-send:before {
+  content: "\f1d8"; }
+
+.fa.fa-paper-plane-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-paper-plane-o:before {
+  content: "\f1d8"; }
+
+.fa.fa-send-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-send-o:before {
+  content: "\f1d8"; }
+
+.fa.fa-circle-thin {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-circle-thin:before {
+  content: "\f111"; }
+
+.fa.fa-header:before {
+  content: "\f1dc"; }
+
+.fa.fa-sliders:before {
+  content: "\f1de"; }
+
+.fa.fa-futbol-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-futbol-o:before {
+  content: "\f1e3"; }
+
+.fa.fa-soccer-ball-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-soccer-ball-o:before {
+  content: "\f1e3"; }
+
+.fa.fa-slideshare {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-twitch {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-yelp {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-newspaper-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-newspaper-o:before {
+  content: "\f1ea"; }
+
+.fa.fa-paypal {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-wallet {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-visa {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-mastercard {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-discover {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-amex {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-paypal {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-stripe {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bell-slash-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-bell-slash-o:before {
+  content: "\f1f6"; }
+
+.fa.fa-trash:before {
+  content: "\f2ed"; }
+
+.fa.fa-copyright {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-eyedropper:before {
+  content: "\f1fb"; }
+
+.fa.fa-area-chart:before {
+  content: "\f1fe"; }
+
+.fa.fa-pie-chart:before {
+  content: "\f200"; }
+
+.fa.fa-line-chart:before {
+  content: "\f201"; }
+
+.fa.fa-lastfm {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-lastfm-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ioxhost {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-angellist {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-cc:before {
+  content: "\f20a"; }
+
+.fa.fa-ils:before {
+  content: "\f20b"; }
+
+.fa.fa-shekel:before {
+  content: "\f20b"; }
+
+.fa.fa-sheqel:before {
+  content: "\f20b"; }
+
+.fa.fa-meanpath {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-meanpath:before {
+  content: "\f2b4"; }
+
+.fa.fa-buysellads {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-connectdevelop {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-dashcube {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-forumbee {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-leanpub {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-sellsy {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-shirtsinbulk {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-simplybuilt {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-skyatlas {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-diamond {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-diamond:before {
+  content: "\f3a5"; }
+
+.fa.fa-intersex:before {
+  content: "\f224"; }
+
+.fa.fa-facebook-official {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-facebook-official:before {
+  content: "\f09a"; }
+
+.fa.fa-pinterest-p {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-whatsapp {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-hotel:before {
+  content: "\f236"; }
+
+.fa.fa-viacoin {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-medium {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-y-combinator {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-yc {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-yc:before {
+  content: "\f23b"; }
+
+.fa.fa-optin-monster {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-opencart {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-expeditedssl {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-battery-4:before {
+  content: "\f240"; }
+
+.fa.fa-battery:before {
+  content: "\f240"; }
+
+.fa.fa-battery-3:before {
+  content: "\f241"; }
+
+.fa.fa-battery-2:before {
+  content: "\f242"; }
+
+.fa.fa-battery-1:before {
+  content: "\f243"; }
+
+.fa.fa-battery-0:before {
+  content: "\f244"; }
+
+.fa.fa-object-group {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-object-ungroup {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-sticky-note-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-sticky-note-o:before {
+  content: "\f249"; }
+
+.fa.fa-cc-jcb {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-cc-diners-club {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-clone {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hourglass-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hourglass-o:before {
+  content: "\f254"; }
+
+.fa.fa-hourglass-1:before {
+  content: "\f251"; }
+
+.fa.fa-hourglass-2:before {
+  content: "\f252"; }
+
+.fa.fa-hourglass-3:before {
+  content: "\f253"; }
+
+.fa.fa-hand-rock-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-rock-o:before {
+  content: "\f255"; }
+
+.fa.fa-hand-grab-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-grab-o:before {
+  content: "\f255"; }
+
+.fa.fa-hand-paper-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-paper-o:before {
+  content: "\f256"; }
+
+.fa.fa-hand-stop-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-stop-o:before {
+  content: "\f256"; }
+
+.fa.fa-hand-scissors-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-scissors-o:before {
+  content: "\f257"; }
+
+.fa.fa-hand-lizard-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-lizard-o:before {
+  content: "\f258"; }
+
+.fa.fa-hand-spock-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-spock-o:before {
+  content: "\f259"; }
+
+.fa.fa-hand-pointer-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-pointer-o:before {
+  content: "\f25a"; }
+
+.fa.fa-hand-peace-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-hand-peace-o:before {
+  content: "\f25b"; }
+
+.fa.fa-registered {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-creative-commons {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gg {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gg-circle {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-tripadvisor {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-odnoklassniki {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-odnoklassniki-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-get-pocket {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wikipedia-w {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-safari {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-chrome {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-firefox {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-opera {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-internet-explorer {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-television:before {
+  content: "\f26c"; }
+
+.fa.fa-contao {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-500px {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-amazon {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-calendar-plus-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-calendar-plus-o:before {
+  content: "\f271"; }
+
+.fa.fa-calendar-minus-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-calendar-minus-o:before {
+  content: "\f272"; }
+
+.fa.fa-calendar-times-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-calendar-times-o:before {
+  content: "\f273"; }
+
+.fa.fa-calendar-check-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-calendar-check-o:before {
+  content: "\f274"; }
+
+.fa.fa-map-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-map-o:before {
+  content: "\f279"; }
+
+.fa.fa-commenting:before {
+  content: "\f4ad"; }
+
+.fa.fa-commenting-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-commenting-o:before {
+  content: "\f4ad"; }
+
+.fa.fa-houzz {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-vimeo {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-vimeo:before {
+  content: "\f27d"; }
+
+.fa.fa-black-tie {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-fonticons {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-reddit-alien {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-edge {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-credit-card-alt:before {
+  content: "\f09d"; }
+
+.fa.fa-codiepie {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-modx {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-fort-awesome {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-usb {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-product-hunt {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-mixcloud {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-scribd {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pause-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-pause-circle-o:before {
+  content: "\f28b"; }
+
+.fa.fa-stop-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-stop-circle-o:before {
+  content: "\f28d"; }
+
+.fa.fa-bluetooth {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-bluetooth-b {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-gitlab {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wpbeginner {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wpforms {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-envira {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wheelchair-alt {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wheelchair-alt:before {
+  content: "\f368"; }
+
+.fa.fa-question-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-question-circle-o:before {
+  content: "\f059"; }
+
+.fa.fa-volume-control-phone:before {
+  content: "\f2a0"; }
+
+.fa.fa-asl-interpreting:before {
+  content: "\f2a3"; }
+
+.fa.fa-deafness:before {
+  content: "\f2a4"; }
+
+.fa.fa-hard-of-hearing:before {
+  content: "\f2a4"; }
+
+.fa.fa-glide {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-glide-g {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-signing:before {
+  content: "\f2a7"; }
+
+.fa.fa-viadeo {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-viadeo-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-snapchat {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-snapchat-ghost {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-snapchat-square {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-pied-piper {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-first-order {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-yoast {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-themeisle {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus-official {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus-official:before {
+  content: "\f2b3"; }
+
+.fa.fa-google-plus-circle {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-google-plus-circle:before {
+  content: "\f2b3"; }
+
+.fa.fa-font-awesome {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-fa {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-fa:before {
+  content: "\f2b4"; }
+
+.fa.fa-handshake-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-handshake-o:before {
+  content: "\f2b5"; }
+
+.fa.fa-envelope-open-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-envelope-open-o:before {
+  content: "\f2b6"; }
+
+.fa.fa-linode {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-address-book-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-address-book-o:before {
+  content: "\f2b9"; }
+
+.fa.fa-vcard:before {
+  content: "\f2bb"; }
+
+.fa.fa-address-card-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-address-card-o:before {
+  content: "\f2bb"; }
+
+.fa.fa-vcard-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-vcard-o:before {
+  content: "\f2bb"; }
+
+.fa.fa-user-circle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-user-circle-o:before {
+  content: "\f2bd"; }
+
+.fa.fa-user-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-user-o:before {
+  content: "\f007"; }
+
+.fa.fa-id-badge {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-drivers-license:before {
+  content: "\f2c2"; }
+
+.fa.fa-id-card-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-id-card-o:before {
+  content: "\f2c2"; }
+
+.fa.fa-drivers-license-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-drivers-license-o:before {
+  content: "\f2c2"; }
+
+.fa.fa-quora {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-free-code-camp {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-telegram {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-thermometer-4:before {
+  content: "\f2c7"; }
+
+.fa.fa-thermometer:before {
+  content: "\f2c7"; }
+
+.fa.fa-thermometer-3:before {
+  content: "\f2c8"; }
+
+.fa.fa-thermometer-2:before {
+  content: "\f2c9"; }
+
+.fa.fa-thermometer-1:before {
+  content: "\f2ca"; }
+
+.fa.fa-thermometer-0:before {
+  content: "\f2cb"; }
+
+.fa.fa-bathtub:before {
+  content: "\f2cd"; }
+
+.fa.fa-s15:before {
+  content: "\f2cd"; }
+
+.fa.fa-window-maximize {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-window-restore {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-times-rectangle:before {
+  content: "\f410"; }
+
+.fa.fa-window-close-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-window-close-o:before {
+  content: "\f410"; }
+
+.fa.fa-times-rectangle-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-times-rectangle-o:before {
+  content: "\f410"; }
+
+.fa.fa-bandcamp {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-grav {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-etsy {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-imdb {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-ravelry {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-eercast {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-eercast:before {
+  content: "\f2da"; }
+
+.fa.fa-snowflake-o {
+  font-family: 'Font Awesome 5 Pro';
+  font-weight: 400; }
+
+.fa.fa-snowflake-o:before {
+  content: "\f2dc"; }
+
+.fa.fa-superpowers {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-wpexplorer {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
+
+.fa.fa-spotify {
+  font-family: 'Font Awesome 5 Brands';
+  font-weight: 400; }
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.min.css b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..61fa6f3d0e291911d8a59e59b02d92304f728e19
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/css/v4-shims.min.css
@@ -0,0 +1 @@
+.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Pro";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.eot b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.eot
new file mode 100644
index 0000000000000000000000000000000000000000..ab8906591723547a4e65eff466fc7fe07f376ca1
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.eot differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.svg b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.svg
new file mode 100644
index 0000000000000000000000000000000000000000..698f0339d1a65a4d5d50cebe365ce106b5306140
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.svg
@@ -0,0 +1,1256 @@
+<?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">
+<defs>
+  <font id="fontawesome-pro" horiz-adv-x="640.4">
+    <font-face font-family="Font Awesome 5 Brands"
+      units-per-em="512" ascent="448"
+      descent="64"
+      font-weight="400"
+      font-style="Regular" />
+    <missing-glyph horiz-adv-x="0" />
+    <glyph glyph-name="500px"
+      unicode="&#xF26E;"
+      horiz-adv-x="448" d=" M103.3 103.7C96.8 117.9 96.4 122 110.7 126.8C136.3 134.8 118.7 117.6 153.9 77.6H154.2V171.5C155.4 221.7 198.2 263.7 251.9000000000001 263.7C305.8 263.7 349.6 220.2 349.6 166.9C349.6 103.5 288.8 53.7 221.1 73.6C210.6 77.8 219 105.3 229.6 102.2C282.6 102.2 319 112.3 319 166.6C319 227.6 241.9 256.2000000000001 202.1 211.2C178.6 184.8 184.5 169.1 184.5 53.6C235.2 22.6 302.8 31.6 344.9 73.7000000000001C369.7 98.5000000000001 383.4 131.7000000000001 383.4 166.7000000000001C383.4 201.9 369.6 234.9000000000001 344.6 260.0000000000001C319.8 284.8000000000001 286.8 298.5000000000001 251.3 298.5000000000001S182.5 284.7000000000001 157.8 260.0000000000001C157.5 259.7000000000001 141.8 243.5000000000001 136.6 236.1000000000001L136.1 235.5000000000001C132.8 230.8000000000001 129.8 226.4000000000001 116 229.4000000000001C109.1 231.1000000000001 101.7 235.2000000000001 101.7 241.2000000000001V428C101.7 433 105.6 438.5 112.2 438.5H353.5C361.8 438.5 361.8 426.9 361.8 423.4C361.8 419.5 361.8 408.3 353.5 408.3H130.3V275.4H130.6C234.8 385.2 413.4000000000001 311.4 413.4000000000001 166.5C413.4000000000001 -11.6 168.6 -53.8 103.3 103.7zM166.6 364.5C166.1 360.3 171.2 340 181.2 343.9C306 391.4 384 303.5 390.6 303.5C395.4000000000001 303.5 413.4000000000001 318.8 404.9000000000001 326.3C311.7000000000001 415.3 170.4 383.3 166.6 364.5zM393 33.3C283 -76.6 94 -27.5 61 137.5C61 149.7 30.6 144.9 32.1 134.2C56.1 -39.2 278.1 -122.7 413.7000000000001 12.9C420.6 20.7 401.1 41.3 393.0000000000001 33.3zM213.6 141.4C213.6 137.4 217.9 134.1 219.1 132.9C222.1 129.9 225.2 128.5 227.6 128.5C231.4 128.5 230.2 128.3 249.9 148C269.5 128.7 269 128.5 272.2 128.5C277.6 128.5 290.7 138.9 282.9 146.7L265.6 164L283.8 182.2C290.1 189 273.7 204 267.6 197.9L249.7 180C231.1 198.8 231.3 199.5 228.2 199.5C223.2 199.5 210.2 187.8 215.8 182.2L234 164C215.9 146.1 213.6 144.8 213.6 141.4z" />
+    <glyph glyph-name="accessible-icon"
+      unicode="&#xF368;"
+      horiz-adv-x="448" d=" M423.9 192.2L411 34.9C407.7 -5.8 347.1 -0.2 350.4 39.8L360.4 162.3L319.3 160C329.4 139.3 335.1 116.1 335.1 91.4999999999999C335.1 50.3 319 12.8 292.8 -15.0000000000001L253.5 24.3C311.3999999999999 87.9999999999999 266.6 191.5 179.5 191.5C153.5999999999999 191.5 130 181.6 112.2999999999999 165.5L73 204.8C95 225.5 123.1 239.9 154.4 245L229.7 330.7L187.1 355.5L135.5 309.5C105.5 282.7 64.9 328 95 354.9L163 415.6C172.8 424.4000000000001 187.1 425.8 198.5 419.2C198.5 419.2 337.8 338.3 338 338.1C354.2 328 358.7 302.1 344.1 285.5L285.7 219L391.8 224.9C410.3 226 425.4 210.5 423.9 192.2zM359 346.2C387.1 346.2 409.9 369 409.9 397.1C409.9 425.2 387.1 448 359 448C330.9 448 308.1 425.2 308.1 397.1C308.1 369 330.9000000000001 346.2 359 346.2zM179.6 -8.5C99 -8.5 52.2 82.1 96.9 147.6L57.2 187.3C36.4 161 24 127.7 24 91.6C24 -39.1 174.7 -109.7999999999999 275.4 -30.9L235.7 8.8C219.7 -2.1 200.4 -8.5 179.6 -8.5z" />
+    <glyph glyph-name="accusoft"
+      unicode="&#xF369;"
+      horiz-adv-x="640" d=" M482.2 75.9C476.5 82.8 250 373 242.3 382.5C228.6 399.7 242.3 399.3 261.5 399.4C271.2 399.5 367.8 400 378 400C402.1 400.1 406.7 399.4 416.4 387.2C418.5 384.5 621.5 141.4 623.5999999999999 138.9C629.0999999999999 132.2 638.8 119.8 630.8 115.5C628.4 114.2 516.1999999999999 67.8 513 66.6C502.9 62.6 495.5 59.8 482.2 75.9M596.9 81.5000000000001S481.9 31.1000000000001 479.4 29.9C463.4 22.6 452.5 33.1 442.7 44.5000000000001L385.6 118.5000000000001C380.2 119.4 325.2 128.1000000000001 320.3 127.8000000000001C317.2 127.6000000000001 310.7 127.0000000000001 305.9 124.9000000000001C301 122.8000000000001 160.7 72.1000000000001 155.7 70.2000000000001C150.6 68.2000000000001 144.3 66.6000000000001 144.6 62.6000000000001C144.8 60.1000000000001 146.6 60.0000000000001 149.2 59.1000000000001C151.9 58.3000000000001 450.1 -8.4999999999999 457.2 -9.9999999999999C472.8 -13.2999999999999 495.7 -20.4999999999999 510.8 -11.6999999999999C512.9 -10.4999999999999 634.6 64.7000000000002 636.6 66.1000000000001C642 70.1000000000001 640.9 72.9000000000002 634.9 74.3000000000001C632.6 74.6000000000001 610.3 79.0000000000001 596.9 81.5000000000001M270.9 262.8000000000002S258.9 261.2000000000002 245.9 247.7000000000002C236.9 238.4000000000001 3.8 8.6000000000001 2.5 6.8000000000001C-4.5 -3.1999999999999 4.1 1e-13 18.2 5.1000000000001C19 5.1000000000001 132.7 41.7000000000002 132.7 41.7000000000002C133.2 42.3000000000002 132.6 41.8000000000002 133.3 42.3000000000002C132.9 47.4000000000002 132.5 68.5000000000002 132.3 70.0000000000002C131.7 75.2000000000002 134.5 76.9000000000002 139.3 78.9000000000002L231.9 112.7000000000002C232.5 113.5000000000002 320.4 194.4000000000002 322.1 196.0000000000002V197.0000000000002L270.9 262.8000000000002" />
+    <glyph glyph-name="acquisitions-incorporated"
+      unicode="&#xF6AF;"
+      horiz-adv-x="344.76" d=" M344 448C343.19 442.53 342.37 437.21 341.61 431.88C340.2200000000001 422.14 338.7100000000001 412.4 337.56 402.63C337.21 399.67 336.35 398.31 333.26 398.3C312.65 398.19 292.05 398.16 271.44 397.77C252.68 397.42 233.86 397.49 215.21 395.77C201.79 394.53 191.93 383.1 196.33 369.13C204.88 342.02 223.98 300.03 232.7 279.68C298.42 125.54 294.13 122.69 316.7000000000001 121.12C323.3700000000001 120.66 330.1 121.05 337.1300000000001 121.05C338.5200000000001 111.65 339.7900000000001 103.01 341.1800000000001 93.54H225.17V120.54C235.5 120.54 245.53 120.66 255.55 120.48C259.07 120.42 260.6 121.11 258.99 124.85C254.55 135.1400000000001 250.22 145.48 245.74 155.75C244.12 159.47 241.68 160.53 237.34 159.27C225.02 155.68 212.55 152.58 200.08 149.58C195.83 148.56 194.15 146.81 194.22 142.12C195.07 84.65 195.17 14.59 195.22 13C195.62 0.46 203.97 -8.41 216.25 -10.07C217.14 -10.19 229.14 -12.79 328.93 -12.63C337.18 -12.62 337.3400000000001 -12.46 338.5 -20.19C340.65 -34.53 342.64 -48.89 344.76 -63.72C-22.99 -63.72 190.83 -64.33 7.67 -63.72C3.72 -63.71 1.59 -63.03 2.39 -57.98C4.43 -45.12 5.89 -32.16 7.36 -19.22C7.91 -14.41 9.65 -12.41 14.99 -12.45C133.08 -13.4400000000001 129.92 -12.8000000000001 136.42 -10.0600000000001C145.84 -6.08 151.4 2.79 151.37 13.0099999999999C151.25 55.9399999999999 151.04 98.87 151.12 141.8C151.13 145.67 149.96 147.79 146.56 148.6399999999999C130.92 152.56 115.25 156.3499999999999 98.98 160.3399999999999C93.75 148.0699999999999 88.59 135.9699999999999 83.32 123.6399999999999C85.15 120.2899999999999 111.7 120.7099999999999 118.6 120.7099999999999V93.0699999999999H4.34C5.37 101.68 6.11 109.8799999999999 7.57 117.9499999999999C7.82 119.36 11.1 121.0899999999999 13.04 121.17C21.5 121.52 29.99 121.46 38.47 121.2599999999999C42.46 121.17 44.39 122.3 46.08 126.42C62.71 167.12 59.59 157.59 113.39 287.39C144.92 363.48 146.45 363.41 146.03 374.82C145.34 393.38 120.66 397.08 108.38 396.93C78.34 396.55 69.93 397.4 6.54 397.4C-0.62 441.89 2.37 429.46 0.16 442.68C-0.55 446.92 1.19 447.9700000000001 4.8 447.98M117.88 200.79C120.18 199.64 121.85 198.5 123.7 197.92C136.99 193.71 150.34 189.68 163.63 185.46C169.77 183.51 175.61 183.34 181.93 185.41C194.95 189.69 208.22 193.22 221.36 197.14C222.82 197.58 224.1 198.58 225.29 199.23C218.58 216.6 212.17 233.38 205.62 250.11C196.74 272.78 187.99 310.43 178.64 332.92C177.11 333.7 176.73 330.56 169.21 332.92C152.1 288.87 135.07 245.04 117.88 200.79z" />
+    <glyph glyph-name="adn"
+      unicode="&#xF170;"
+      horiz-adv-x="496" d=" M248 280.5L312.9 181.7H183.1L248 280.5zM496 192C496 55.1 384.9 -56 248 -56S0 55.1 0 192S111.1 440 248 440S496 328.9 496 192zM396.2 109.3L248 332.5L99.8 109.3H130.2L163.8 161H332.4L366 109.3H396.2z" />
+    <glyph glyph-name="adobe"
+      unicode="&#xF778;"
+      horiz-adv-x="460.8" d=" M289.9 383.7H460.8V-0.3L289.9 383.7zM170.9 383.7H0V-0.3L170.9 383.7zM230.4 241.6L337.9 -0.3H264.9L234.2 76.5000000000001H155.5L230.4 241.6000000000001z" />
+    <glyph glyph-name="adversal"
+      unicode="&#xF36A;"
+      horiz-adv-x="512" d=" M482.1 416H28.7C5.8 416 0 410.1 0 387.1V-3.1C0 -26.4 5.8 -32 28.7 -32H482.1C506.4999999999999 -32 511.9999999999999 -26.8 511.9999999999999 -2.3V385.8C511.9999999999999 410.4 506.6 416 482.1 416zM178.4 227.7C150.9 247.9 106.3 236.4 94.2 204.3C89.9 193.2 84.9 194.8 76.7 196C67 197.5 59.5 199.2 54.2 201.5C25.4 212.9 62.8 256.8 79.1 265.8C120.2 287.2 162.5 288 204.4 270.6C245.3 253.8 238.9 211.4 238.9 142.1C241.6 116.3 234.6 83.8 248.2 53.3C250.1 48.9 248.6 45.4 245.5 42.6C237.1 35.9 206.2 40.4 198.9 49.9999999999999C197 52.1999999999999 197.1 53.6 195 56.1999999999999C191.4 60.0999999999999 187.7 58.3999999999999 183.1 55.1999999999999C125.7 18.8 42.8 33.8 36.1 98.4999999999999C33 127.8 48.5 155.6 75.7 169.5C113.9 189 187.9 181.3 189.7 200.4C190.8 210.5999999999999 187.8 220.5 178.4 227.7zM465.1 5.7C465.1 -9.4 454 -4.2 447.3 -4.2H52.4C45 -4.2 34.2 -9 34.6 6.5C35 20.4 45.1 15.6 51.7 15.6C184 16 316.2 16 448.5 15.6C455.3 15.6 465.1 20 465.1 5.7zM468.9 346.2V55.2C468.9 49.5 468.2 41.3 460.8 41.3C448.4000000000001 41.7 433.3 34.2 424.7 46.9C418.9 55.6 416.9 50.9 412.3 48.1C358.9000000000001 18.4 284.2000000000001 41 267.9 133.3C261.8 166.7 267.2 200.4 283.6 233.3C295.4 257.2000000000001 340.5 309.4 419.7 263.8V334.8C419.7 361 419.5999999999999 361 445.7 361C448.8 361 452.3 360.6 455.3999999999999 361C465.4999999999999 361.8 468.9999999999999 356.6 468.9999999999999 346.7000000000001C468.8999999999999 346.5 468.8999999999999 346.4000000000001 468.8999999999999 346.2000000000001zM417.4000000000001 113.9C397.9000000000001 66.3 344.5 70.6 327.4000000000001 108.7C312.3 142 311.9000000000001 176.9 327.8 210.2C344.1 244.3 387.5 245.9 409.3 215C429.9000000000001 186.2 424.2 130.4 417.4000000000001 113.9zM122.6 78.6C115.1 79.9 89.6 81.9 88.9 106.4C88.5 120.3 96.7 129.4 108.7 132.2C133.1 138.1 158 142.1 182.4 146.9C191.3000000000001 148.9 189.8000000000001 142.5 190.2000000000001 137.4C191.6000000000001 104.4 164.1000000000001 78.2 122.6000000000001 78.6z" />
+    <glyph glyph-name="affiliatetheme"
+      unicode="&#xF36B;"
+      horiz-adv-x="512" d=" M159.7 210.6C108.4 139.7 43.1 99.8 14 121.4C-15.2 143.1 2.8 218 54.2 288.9C105.5 359.8 170.8 399.7 199.9 378.1C229 356.5 211 281.5 159.7 210.6zM510.9 267.9C437.1 144.5 319 80.2 246.4 124.3C221.4 139.5 205.1 165.5 197.4 198.1C163.8 133.3 104.6 84.3 33.3 64.9C83.1 5.6 157.4 -32 240.3 -32C390.3 -32 511.9 91.1 511.9 242.9C512 251.4 511.6 259.7 510.9 267.9z" />
+    <glyph glyph-name="algolia"
+      unicode="&#xF36C;"
+      horiz-adv-x="448" d=" M229.3 265.4C180 265.4 140.1 225.5 140.1 176.2C140.1 126.9 180 87 229.3 87S318.5 126.9 318.5 176.2C318.5 225.5 278.5 265.4 229.3 265.4zM292 208.8L233.1 178.2C231.3 177.3 229.3 178.6 229.3 180.5V247C229.3 248.5 230.6 249.7 232 249.6C258.2 248.6 280.9 233.9 293.1 212.5C293.8 211.2 293.3 209.5 292 208.8zM389.1 416H58.9C26.4 416 0 389.6 0 357.1V27C0 -5.6 26.4 -32 58.9 -32H389C421.6 -32 447.9 -5.6 447.9 26.9V357.1C448 389.6 421.6 416 389.1 416zM186.5 331.3C186.5 342.1 195.2 350.8 206 350.8H251.3C262.1 350.8 270.8 342.1 270.8 331.3V315.9C270.8 314.1 269.1 312.9 267.5 313.4C255.2 316.8 242.4 318.5 229.4 318.5C215.9 318.5 202.7 316.7 190 313C188.3 312.5 186.6 313.8 186.6 315.5V331.3zM102.1 294.3L111.3 303.5C118.9 311.1 131.2 311.1 138.8 303.5L146.5 295.8C147.6 294.7000000000001 147.5 292.8 146.2 291.8C140 287.3 134.1 282.4 128.6 276.9C123.2 271.5 118.2 265.6 113.8 259.5C112.8 258.2 110.9 258 109.8 259.2L102.1 266.9C94.5 274.4 94.5 286.7 102.1 294.3zM229.3 49.5C159.3 49.5 102.7 106.2 102.7 176.1S159.4 302.7000000000001 229.3 302.7000000000001C299.3 302.7000000000001 355.9 246.1 355.9 176.1C355.9 106.3 299.2 49.5 229.3 49.5z" />
+    <glyph glyph-name="alipay"
+      unicode="&#xF642;"
+      horiz-adv-x="448" d=" M377.74 416H70.26C31.41 416 0 384.5900000000001 0 345.74V38.26C0 -0.59 31.41 -32 70.26 -32H377.74C416.26 -32 447.5 -0.92 448 37.6C402.04 63.22 337.41 97.9400000000001 276.4 126.04C244.33 82.0700000000001 192.26 45.04 127.78 45.04C57.19 45.04 34.05 90.34 30.74 121.41C26.77 160.42 45.62 202.91 130.26 202.91C165.64 202.91 209.61 192.66 257.39 177.9500000000001C273.92 208.0400000000001 283.84 238.2900000000001 283.84 238.2900000000001H105.64V254.9900000000001H197.72V286.23H88.28V305.24H197.72V355.66H248.64V305.24H358.08V286.23H248.63V254.99H337.4S322.19 208.37 299.05 164.07C347.98 147.37 399.06 128.03 447.67 111.33V345.74C447.83 384.43 416.43 416 377.74 416zM47.28 125.05C48.27 104.88 57.53 71.32 117.21 71.32C169.28 71.32 209.79 111 235.08 144.22C190.45 162.9 150.6 175.6300000000001 125.64 175.6300000000001C58.19 175.6300000000001 46.29 142.5700000000001 47.28 125.0500000000001z" />
+    <glyph glyph-name="amazon-pay"
+      unicode="&#xF42C;"
+      horiz-adv-x="611.2" d=" M0 122.8C2.3 127 5.2 127.7 9.7 125.3C20.1 119.7 30.3 113.9 40.9 108.6C81.6 88.2000000000001 124.1 73 168.3 62.3C189.2 57.3 210.2 53.3 231.5 50.5C263 46.3 294.7 44.5 326.5 45.3C343.9 45.7 361.3 47.1 378.6 49.1C435 55.8 489.5 69.9 541.9000000000001 91.9C544.8000000000001 93.1 547.8000000000001 93.9 551.0000000000001 93.1C557.7000000000002 91.3 560.0000000000001 84.1 555.1000000000001 79.2000000000001C552.3000000000002 76.4 548.8000000000002 74.1 545.5000000000001 71.8000000000001C514.8000000000001 50.7 481.3000000000001 35.4000000000001 445.9000000000001 23.9000000000001C421.3000000000001 16.0000000000001 396.3000000000001 10.1000000000001 370.8000000000001 6.3000000000001C353.2000000000001 3.7 335.4000000000001 1.9000000000001 317.6000000000001 1.5000000000001C316.8000000000001 1.5000000000001 315.9000000000001 1.3000000000001 315.1000000000001 1.2H294C293.2 1.3000000000001 292.3 1.5000000000001 291.5 1.5000000000001C287.9 1.7 284.3 1.8000000000001 280.8 1.9C263.9000000000001 2.6 247.1 4.5000000000001 230.4 7.2C203 11.7 176.2 18.6 150 28.1C95.9 47.7 47.4 76.7000000000001 4.4 115.1C2.6 116.7000000000001 1.4 118.9 0 120.8V122.8zM158 383C156.6 382.8 155.1 382.6 153.7 382.4C139.7 380.7 127.1 375.5 115.7 367.3C113.3 365.6 111.1 363.8 108.6 361.9C108.4 362.4 108.2 362.9 108.2 363.3C107.8 366 107.4 368.8 106.9 371.5C106.2 376.1 103.9 378.1 99.3 378.1H87.8C80.9 378.1 79.6 376.8 79.6 369.9V160.6C79.6 159.6 79.6 158.6 79.7 157.6C79.9 154.6 81.7 152.7000000000001 84.6 152.6C91.6 152.5 98.7 152.5 105.7 152.6C108.6 152.6 110.4 154.6 110.7 157.6C110.8 158.6 110.8 159.6 110.8 160.6V233C111.9 232.1 112.5 231.6 113 231.1C130.9 216.2 151.5 211.3 174 215.7C194.4 219.7 208.6 232.2 217.8 250.6C224.8 264.5 227.7 279.3 228.1 294.7C228.6 311.8 226.9000000000001 328.6 220 344.5C211.5 364.1 197.4 377 176.1 381.4C172.9 382.1 169.6 382.4 166.3 382.9C163.5 383 160.8 383 158 383zM110.6 341.1C110.6 342.6 111 343.5 112.3 344.4C126 353.9 141.1 358.9 157.9 357.6C172.8 356.5 185 349.2 191.4 331.7C195.3 321 196.3 309.9 196.3 298.7C196.3 288.3 195.5 278.1 192.3 268.1C185.5 246.8 169.9 238.7 149.7 239.6C135.7 240.2 123.5 245.6 112.3 253.5C111.1 254.4 110.6 255.2 110.6 256.8C110.7 270.9 110.6 284.9 110.6 299C110.6 313 110.7 327 110.6 341.1zM316.3 383C315.3 382.9 314.3 382.7 313.4000000000001 382.6C303.6 382.1 294.0000000000001 380.9 284.5000000000001 378.5C278.4000000000001 376.9 272.5000000000001 374.7 266.6000000000001 372.7C263.0000000000001 371.5 261.2000000000001 368.9 261.3000000000001 365C261.4000000000001 361.7 261.2000000000001 358.4 261.3000000000001 355.1C261.4000000000001 350.3 263.4000000000001 349 268.1000000000001 350.2C275.9000000000001 352.2 283.7000000000001 354.4 291.6000000000001 355.9C303.9000000000001 358.2 316.3000000000001 359.2 328.8000000000001 357.3C335.3000000000001 356.3 341.4000000000001 354.4 345.6000000000001 348.9C349.3000000000001 344.1 350.7000000000001 338.4 350.9000000000001 332.5C351.2000000000001 324.2 351.1000000000001 315.9 351.2000000000001 307.6C351.2000000000001 307.2 351.1000000000001 306.7 351.0000000000001 306.2C350.5000000000001 306.3 350.1000000000002 306.2 349.7000000000001 306.3C339.2000000000001 308.8 328.6000000000001 310.6 317.7000000000001 311.2C306.4000000000001 311.8 295.2000000000001 311.1 284.4000000000001 307.3C271.5000000000001 302.8 261.1000000000001 295 255.0000000000001 282.4C250.3000000000001 272.6 249.6000000000001 262.2 251.1000000000001 251.7C253.1000000000001 237.7 260.1000000000001 226.9 272.5000000000001 220C284.4000000000001 213.4 297.3000000000001 212.6 310.4000000000001 214.6C325.5000000000001 216.9 338.9000000000001 223.3 350.7000000000001 233C351.1 233.4 351.6 233.7 352.3000000000001 234.1C352.9000000000001 230.3 353.4000000000001 226.7 354.1000000000001 223.1C354.7000000000001 220 356.6000000000001 218 359.5000000000001 217.9C364.9000000000001 217.8 370.4000000000001 217.8 375.8000000000001 217.9C378.5000000000001 218 380.3000000000001 219.8 380.6000000000001 222.6C380.7000000000001 223.5 380.7000000000001 224.5 380.7000000000001 225.4V331.4C380.7000000000001 335.7 380.5000000000001 340 379.8000000000002 344.3C377.9000000000002 357.2000000000001 372.4000000000002 367.8 360.8000000000002 374.7000000000001C354.1000000000002 378.7000000000001 346.7000000000001 380.7000000000001 339.0000000000001 381.8C335.4000000000001 382.3 331.8000000000002 382.6 328.2000000000001 383.1C324.3000000000002 383 320.3000000000002 383 316.3000000000002 383zM351.3 255.3C351.3 254 350.9000000000001 253.1 349.8 252.3C338.6 244.2 326.3 238.8 312.4000000000001 237.4C306.7000000000001 236.8 301.0000000000001 237 295.6 239.2C289.3 241.7 285.2000000000001 246.1 283.2000000000001 252.5000000000001S281.2000000000001 265.5 283.1 271.9000000000001C285.6 280.2000000000001 291.5 284.9000000000001 299.5 287.5C307.6 290.1 316 290.5 324.3 289.7000000000001C332.7 289 340.9000000000001 287.4 349.3 286.3C350.9000000000001 286.1 351.4000000000001 285.3 351.4000000000001 283.7000000000001C351.3 278.9 351.4000000000001 274.2000000000001 351.4000000000001 269.4C351.3 264.7000000000001 351.2000000000001 260 351.3 255.3zM611.2 125.9C610.2 130.9 606.4000000000001 132.8 602.1 134.2C595.3000000000001 136.5 588.2 137.5 581.1 138.1C568 139.2 554.9 138.6 541.9 136.2C527.6 133.5 514 128.9 501.9 120.6C500.5 119.6 499.1 118.5 498.2 117.1C497.5 116 497.3 114.3 497.7 113.1C498.1 111.6 499.8 111.2 501.3 111.3C502 111.3 502.8 111.3 503.5 111.4C511.3 112.2 519 113.1 526.8 113.9C538.1999999999999 115 549.6999999999999 115.7 561.0999999999999 114.8C565.8999999999999 114.5 570.8 113.4 575.4999999999999 112.1C580.5999999999999 110.7 582.8999999999999 106.9 583.0999999999999 101.7C583.4999999999999 93.7 581.6999999999999 86 579.5999999999999 78.4C575.4999999999999 63 569.5999999999999 48.1 563.8 33.3C563.4 32.3 563 31.3 562.8 30.3C562.3 27.4 564 25.4999999999999 566.9 26.1999999999999C568.6 26.5999999999999 570.5 27.4999999999999 571.6999999999999 28.6999999999999C576.0999999999999 32.9999999999999 580.5999999999999 37.3 584.4 42.0999999999999C597.1999999999999 58.4999999999999 604.6999999999999 77.3999999999999 609.1 97.6999999999999C609.9 101.3 610.5 104.9999999999999 611.2 108.5999999999999V125.8999999999999zM479.1 249.1C466.2 284.8 453.3 320.6 440.4000000000001 356.3C438.4000000000001 362 436.2000000000001 367.6 434.1 373.2C433 376.1 430.9000000000001 378 427.7000000000001 378C420.1 378.1 412.5000000000001 378.2 404.8000000000001 378.1C402.3000000000001 378.1 401.1000000000001 376.1 401.6000000000001 373.6C402.1000000000001 371.5 402.7000000000001 369.5 403.5000000000001 367.5C423.1000000000001 319 442.8000000000001 270.4 462.6000000000001 222C464.3000000000001 217.9 464.7000000000001 214.4 462.8000000000001 210.2C459.5000000000001 202.9 456.9000000000001 195.2 453.5000000000001 187.9C450.5000000000001 181.4 445.5000000000001 176.5 438.3000000000001 174.6C433.2000000000001 173.2 428.1000000000001 173 422.9000000000001 173.5C420.4000000000001 173.6999999999999 417.9000000000001 174.3 415.4000000000001 174.5C412.0000000000001 174.6999999999999 410.3000000000001 173.1999999999999 410.2000000000001 169.6999999999999C410.1000000000001 166.3999999999999 410.1000000000001 163.0999999999999 410.2000000000001 159.8C410.3000000000002 154.3 412.2000000000001 151.8 417.6000000000001 150.9C423.2000000000001 149.9 428.9000000000001 149 434.5000000000001 148.9C451.6000000000001 148.5 465.2 155.4 474.0000000000001 170.3C477.5000000000001 176.1999999999999 480.7 182.4 483.2 188.6999999999999C506.9 248.5 530.3000000000001 308.3999999999999 553.8000000000001 368.3C554.5000000000001 370.0999999999999 555.1 371.8999999999999 555.4000000000001 373.8C555.8000000000001 376.5999999999999 554.5000000000001 378.2 551.7 378.2C545.1 378.3 538.4000000000001 378.2 531.8000000000001 378.2C528.1 378.2 525.5000000000001 376.5999999999999 524.1 373C523.6 371.5999999999999 523 370.3 522.5 368.8999999999999C510.9 335.5999999999999 499.3 302.3 487.7 268.8999999999999C485.2 261.7 482.6 254.3999999999999 480 246.7C479.6 247.8 479.4 248.3999999999999 479.1 249.1z" />
+    <glyph glyph-name="amazon"
+      unicode="&#xF270;"
+      horiz-adv-x="448" d=" M257.2 285.3C208.5 283.5 87.7 269.8 87.7 167.8C87.7 58.3 226 53.8 271.2 124.6C277.7 114.4 306.6 87.1 316.5 77.8L373.3 133.8S341 159.1 341 186.6V333.7C341 359 316.5 416 228.7 416C140.7 416 94 361 94 311.7L167.5 304.9C183.8 354.4 221.7 354.4 221.7 354.4C262.4 354.5 257.2 324.6 257.2 285.3zM257.2 198.5C257.2 118.5 173 130.5 173 181.3C173 228.5 223.5 238 257.2 239.1V198.5zM393.2 35C385.5 25 323.2 -32 218.7 -32S34.2 39.5 9.7 69C2.9 76.7 10.7 80.3 15.2 77.3C88.5 32.8 203 -40.5 387.7 47C395.2 50.7 401 45 393.2 35zM433 32.8C426.5 17 417 6 411.8 1.8C406.3 -2.7 402.3 -0.9 405.3 5.6S424.6 52.1 418 60.6C411.5 68.9 381 64.9 370 63.8C359.2 62.8 357 61.8 356 64.1C353.7 69.8 377.7 79.6 393.5 81.6C409.2 83.4 434.5 82.4 439.5 75.9C443.2 70.8 439.5 48.8 433 32.8z" />
+    <glyph glyph-name="amilia"
+      unicode="&#xF36D;"
+      horiz-adv-x="448" d=" M240.1 416C178.2 416 108.6 399.1 55.9 360.6C50.8 357.5 46.8 351.4 48.7 341.2C49.8 336.1 53.8 313.8 58.9 301.6C63 291.4 73.1 291.4 79.2 295.5C111.7 317.8 175.7 343.2 231.5 343.2C289.4 343.2 290.4 314.8 290.4 270.1V231.6C203 220.3 78.2 197 46.7 183.8C11.2 167.5 16.3 90.3 16.3 72S31.5 -32 141.2 -32C189 -32 254.9000000000001 -11.3 294.5 10.1V-15.3C294.5 -18.3 296.6 -23.4999999999999 300.6 -24.4C303.7000000000001 -25.4 351.3 -26.4 360.5 -26.4S423 -26.7 427 -25.7C431.1 -24.7 432.1 -19.6 432.1 -16.6V280C432 360.3 374.2000000000001 416 240.1 416zM152.2 88.3C152.2 100.5 149.2 131 170.5 141.2C194.8 154.4 245.6 170.6 290.3 174.7V68C268.9000000000001 54.8 241.6 43.6 211.2 43.6C158.4 43.6 152.3 77.1 152.2 88.3" />
+    <glyph glyph-name="android"
+      unicode="&#xF17B;"
+      horiz-adv-x="448" d=" M89.6 243.5V127.7C89.6 112.3 77.5 100 62.1 100C46.8 100 32 112.4 32 127.7V243.5C32 258.6 46.8 271 62.1 271C77.2 271 89.6 258.6 89.6 243.5zM100.4 86.5C100.4 70.1 113.6 56.9 130 56.9H149.9L150.2 -4.2C150.2 -41.1 205.4 -40.8000000000001 205.4 -4.2V56.9H242.6V-4.2C242.6 -40.9 298.1 -41.0000000000001 298.1 -4.2V56.9H318.3C334.5 56.9 347.7 70.1 347.7 86.5V265.9H100.4V86.5zM348.4 275.6H99.3C99.3 318.4 124.9 355.6 162.9 375L143.8 410.3C141 415.2 148.1 418.3 150.5 414.1L169.9 378.5C204.8 394 244.9 393.2 278.2 378.5L297.5 414C300 418.3 307 415.1 304.2 410.2L285.1 375C322.8 355.6 348.4000000000001 318.4 348.4000000000001 275.6zM177.7 331.1C177.7 336.8 173.1 341.6 167.2 341.6C161.5 341.6 157 336.8 157 331.1S161.6 320.6 167.2 320.6C173.1 320.6 177.7 325.4 177.7 331.1zM291.1 331.1C291.1 336.8 286.5 341.6 280.9000000000001 341.6C275.0000000000001 341.6 270.4000000000001 336.8 270.4000000000001 331.1S275.0000000000001 320.6 280.9000000000001 320.6C286.5000000000001 320.6 291.1 325.4 291.1 331.1zM385.9000000000001 271C370.8 271 358.4000000000001 258.9 358.4000000000001 243.5V127.7C358.4000000000001 112.3 370.8 100 385.9000000000001 100C401.3 100 416.0000000000001 112.4 416.0000000000001 127.7V243.5C416.0000000000001 258.9 401.2000000000001 271 385.9000000000001 271z" />
+    <glyph glyph-name="angellist"
+      unicode="&#xF209;"
+      horiz-adv-x="448" d=" M347.1 232.6C358.8 265.2 392.5 359.5 392.5 389.7C392.5 416.3 376.8 438.6 348.8 438.6C304.2 438.6 264.2000000000001 306.9 251.7 275.5C242 304 196.6 448 156.6 448C125.5 448 110.9 425.1 110.9 396.3C110.9 361 145.1 269.5 157.5 234.3C151.2 236.6 144.4 238.6 137.5 238.6C114.1 238.6 89.2 209.5 89.2 186C89.2 177.1 94.1 164.6 97.2 156.3C60.3 146.3 46.1 121.7 46.1 84.6C46 12.4 114.4 -64 210.6 -64C328.6 -64 402 24.6 402 138.9C402 182 395.1 220.9 347.1 232.6zM311.7 340C315.7 352.3 332.8 404.3 348.8 404.3C357.4000000000001 404.3 359.7 395.4 359.7 388.3C359.7 369.2 321.1 263.7 312.6 240.3L278.6 246.3L311.7 340zM142.3 399.7C142.3 411.6 156.8 445.4 188.6 352.6L223.2 252.3C207.6 253.6 195.5 255.3 187.8 250.9C176.9 279.7000000000001 142.3 370.6 142.3 399.7000000000001zM140 204C169.3 204 207.1 109.4 207.1 96.6C207.1 91.5 202.2 85.2000000000001 196.5 85.2000000000001C175.6 85.2000000000001 119.6 162.1 119.6 182.9C119.7 190.6 132.3 204 140 204zM324.3 17.7C295.2 -14.3 258 -30.9 214.6 -30.9C155.2 -30.9 108.3 1.7 85.7 57.4C68.6 100.8 89.5 125.7 106.3 125.7C117.7 125.7 160.6 65.4 160.6 52.6C160.6 47.7 152.9 44.3 148.9 44.3C132.8000000000001 44.3 126.5 59.8 97.8 95.7C68.1 66 118.3000000000001 8.8 156.1 8.8C182.2 8.8 199.2 32.9999999999999 194.1 50.8C197.8 50.8 202.4 50.4999999999999 205.8 51.4C206.9 24.3 214.9 -8 247.5 -10.3C247.5 -9.4 249.5 -3.2 249.5 -2.9C249.5 14.4999999999999 238.9 29.7 238.9 47.4C238.9 75.7 260.6 103.1 282.6 119.1C290.6 125.1 300.3 128.8 309.7000000000001 132.2C319.4000000000001 135.9 329.7000000000001 140.2 337.1 147.6C336 158.8 331.4000000000001 168.7 320.2000000000001 168.7C292.5000000000001 168.7 199.6000000000001 164.7 199.6000000000001 208.4C199.6000000000001 215.1 199.7000000000001 221.5 217.0000000000001 221.5C249.3000000000001 221.5 331.3000000000001 213.5 355.3000000000001 192.4C373.4000000000001 176.3 379.6000000000001 79.2 324.3000000000001 17.7zM225.7 143.7C235.4 140.6 245.4 139.7 255.4 137.7C248 132.3 241.4 125.7 235.1 118.6C232.3 127.1 228.9 135.4 225.7 143.7z" />
+    <glyph glyph-name="angrycreative"
+      unicode="&#xF36E;"
+      horiz-adv-x="640" d=" M640 209.8L636.8 181.6L602.3 179.3L600.3 161.2L634.8 163.5L631.5999999999999 135.3L597.1999999999999 133.1L594.9 113L629.3 115.2L626.3 89.1L561.5999999999999 84.9999999999999L574.3 198.1999999999999L527 82.8L495.1 80.8L471.3 198.6L501.6 200.6L515.2 121.2000000000001L546.9000000000001 203.6000000000001L640.0000000000001 209.8000000000001zM426.8 76.5L455.1 78.3L468 198.4L439.6 196.5L426.8 76.5zM162 59.9L142.6 95.9L139.1 58.5L110.9 56.8L113.6 85.9C102.6 67.9 81.6 51.6 56.7 50.1C23.9 48.1 -3 71 0.3 108.3C2.9 137.6 27 171.1 67.8 173.7000000000001C105.5 176.1 115.4 150.5000000000001 119.1 144.9L121.9 175.7000000000001L160.8 178.2000000000001C180.9 179.5000000000001 199.5 174.5000000000001 203.3 154.5000000000001L205.9 181.1000000000001L270.7 185.3000000000001L268 157.4000000000001L231.6 155.0000000000001L229.9 137.1000000000001L266.3 139.4000000000002L263.6 111.5000000000002L227.2 109.2000000000002L225.3 89.3000000000002L261.6 91.6000000000002L259.5 70.8000000000002L314.5 188.0000000000002L338.3 189.6000000000002L370.4 79L379.3 164.6L357 163.2000000000001L359.8999999999999 191.1L434.8999999999999 196L431.8999999999999 168L407.5999999999999 166.4L397.8999999999999 74.5L339.8999999999999 70.8L335.5999999999999 86.4L296.2 83.9L288.2 67.6L162 59.9zM117.7 130.1L91.3 128.4C84.6 140.8 76.9 145 65 144.2C46 143 31.7 126.7 30.4 110.9C29 94.9 37.7 78.4 59.1 79.7C71.9 80.5 80.4 88.3 88 98.6L115 100.3L117.7 130.1zM173.8 137.8C175 150.6999999999999 166.2 151.4 147.7 150.1999999999999L145 121.6999999999999C159.2 122.5999999999999 172.5 123.8 173.8000000000001 137.8zM194.9 66.9999999999999L200.7 127C195.7 113.5 186 105.8999999999999 172.8 100.3999999999999L194.9 66.9999999999999zM330.3 111.9999999999999L322.4000000000001 149.8L306.6 110.4999999999999L330.3 111.9999999999999zM160.2 186.5999999999999L155.9 204.0999999999999L116.3 201.4999999999999L108.2 183.2999999999999L76.3 181.1999999999999L133.3 303.0999999999999L157.2 304.6999999999999L187.9 202.6999999999999L197.8 307.3999999999999L224.8 309.1999999999999L262.6 245.5999999999999L269.1 312.1999999999999L297.6 314.0999999999999L293.6 272.8999999999999C301 286.3999999999999 316.5 317.5999999999999 357.2000000000001 320.3999999999999C397.7000000000001 323.1999999999999 409.6 291.0999999999999 410.6 290.0999999999999L413.9000000000001 322.0999999999999L453.2 324.7999999999999C465.9 325.6999999999999 481.0000000000001 324.4999999999999 489.5000000000001 315.0999999999999L485.1000000000001 326.9999999999999L517.3000000000001 329.1999999999999L530.2 285.9999999999999L553.2 331.6999999999999L584.2 333.8999999999999L540.6 255.4999999999999L535.8000000000001 211.1999999999999L507.4000000000001 209.2999999999999L512.2 253.5999999999999L496.4 296.5999999999999C497.4 274.2999999999999 487.2 256.4999999999999 464.4 246.9999999999999L489.6 208.1999999999999L453.2 205.7999999999999L434.0000000000001 242.5999999999999L430.0000000000001 204.2999999999999L401.6000000000001 202.3999999999998L404.9000000000001 233.8999999999999C398.2000000000001 224.5999999999998 385.2000000000001 198.4999999999998 345.3000000000001 195.8999999999998C319.1000000000001 194.1999999999999 299.7000000000001 206.1999999999999 289.9000000000001 235.0999999999999L285.9000000000001 194.7999999999999L260.9000000000001 193.1999999999999L223.3000000000001 256.4999999999999L217.0000000000001 190.2999999999999L160.2000000000001 186.5999999999999zM436.8000000000001 268.7C447.0000000000001 269.3999999999999 454.3000000000001 270.7999999999999 458.4000000000001 272.9999999999999C462.9000000000001 275.3999999999999 465.4000000000001 279.3999999999999 466.0000000000001 285.0999999999999C466.6000000000001 290.3999999999999 465.4000000000001 293.8999999999999 462.6000000000001 295.4999999999999C459.0000000000001 297.5999999999999 452.0000000000001 298.3 439.7000000000002 297.4999999999999L436.8000000000002 268.7zM327.7 234C333.3 228.1 340.4 225.5 349 226.1C353.7 226.4 358.1 227.9 362.3 230.2C367.8 233.2 372.9000000000001 238.2 377.4000000000001 244.5L343.2000000000001 242.2L345.6 266.1L408.7000000000001 270.4L409.9000000000001 282.4L378.7000000000001 280.3C374.6 284 370.9000000000001 286.9 367.6 288.4C363.6 290.1 359.5 291.2000000000001 355.4000000000001 290.9C347.4000000000001 290.4 340.1 287.3 333.4000000000001 281.7000000000001C325.7000000000001 275.3 321.4000000000001 267.2000000000001 320.5000000000001 257.3C319.4000000000001 247.7 321.9000000000001 240 327.7000000000001 234zM126.4 225.8L150.2 227.4L141.9 265L126.4 225.8z" />
+    <glyph glyph-name="angular"
+      unicode="&#xF420;"
+      horiz-adv-x="415.6" d=" M169.7 179.9H245.9L207.8 271.5L169.7 179.9zM207.8 416L0 341.6L31.8 65.9L207.8 -32L383.8 65.9L415.6 341.6L207.8 416zM338 74.2H289.4L263.2 139.6H152.6L126.4 74.2000000000001H77.7L207.8 366.5L338 74.2z" />
+    <glyph glyph-name="app-store-ios"
+      unicode="&#xF370;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM127 63.5C121.5 53.9 109.2 50.7 99.7 56.2C90.1 61.7 86.9 74 92.4 83.5L106.7 108.2C122.8 113.1 136 109.3 146.3 96.8L127 63.5zM265.9 117.4H84C73 117.4 64 126.4 64 137.4S73 157.4 84 157.4H135L200.4 270.6L179.9 306C174.4 315.6 177.7 327.8 187.2 333.3C196.8 338.8 209 335.5 214.5 326L223.4 310.6L232.3000000000001 326C237.8000000000001 335.6 250.1000000000001 338.8 259.6 333.3C269.2000000000001 327.8 272.4000000000001 315.5 266.9000000000001 306L181.1 157.4H243.2C263.4000000000001 157.4 274.7000000000001 133.7 265.9000000000001 117.4zM364 117.4H335L354.6 83.5C360.1 73.9 356.8 61.7 347.3 56.2C337.7 50.7 325.5 54 320 63.5C287.1 120.4 262.5 163.2 246 191.6C229.3 220.6 241.2 249.6 253.1 259.4000000000001C266.2 236.7000000000001 285.8 202.7000000000001 312 157.4H364C375 157.4 384 148.4 384 137.4C384 126.3 375 117.4 364 117.4z" />
+    <glyph glyph-name="app-store"
+      unicode="&#xF36F;"
+      horiz-adv-x="512" d=" M255.9 327.1L265 342.8C270.6 352.6 283.1 355.9 292.9 350.3C302.7 344.7 306 332.2 300.4 322.4L212.9 170.9H276.2C296.7 170.9 308.2 146.8 299.3 130.1H113.8C102.5 130.1 93.4 139.2 93.4 150.5C93.4 161.8 102.5 170.8999999999999 113.8 170.8999999999999H165.8L232.4 286.3L211.6 322.3999999999999C206 332.2 209.3 344.5999999999999 219.1 350.3C228.9 355.8999999999999 241.3 352.5999999999999 247 342.8L255.9 327.0999999999999zM177.2 109.1L157.6 75.1C152 65.3 139.5 62 129.7 67.6C119.9 73.2000000000001 116.6 85.7000000000001 122.2 95.5L136.8 120.7C153.2 125.8 166.6 121.9 177.2 109.1zM346.1 170.8H399.2000000000001C410.5000000000001 170.8 419.6 161.7 419.6 150.4C419.6 139.1 410.5 130.0000000000001 399.2000000000001 130.0000000000001H369.7000000000001L389.6 95.5000000000001C395.2000000000001 85.7000000000001 391.9000000000001 73.3000000000001 382.1 67.6000000000001C372.3 62.0000000000001 359.9000000000001 65.3000000000001 354.2000000000001 75.1000000000001C320.7000000000001 133.2000000000001 295.5000000000001 176.7000000000001 278.8000000000001 205.7000000000001C261.7000000000001 235.2000000000001 273.9000000000001 264.8000000000001 286.0000000000001 274.8000000000001C299.4000000000001 251.8000000000001 319.4000000000001 217.1000000000001 346.1000000000001 170.8000000000001zM256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192z" />
+    <glyph glyph-name="apper"
+      unicode="&#xF371;"
+      horiz-adv-x="640" d=" M42.1 208.9C64.3 208.9 71.1 206.1 75.6 194.3H76.4V217.2C76.4 228.5000000000001 71.6 232.6 58.5 232.6C47.2 232.6 44.1 230.1 43.4 219.8H4.8C5.1 233.7 6.3 238.9 10.6 244.2C17.9 253 29.5 256 56.7 256C89.7 256 103.8 251 110.6 237.1C112.6 232.8 114.6 221.5 114.6 213.4V137.1H76.3L77.6 156.2000000000001H76.6C71.3 140.6 63 135.8000000000001 41.1 135.8000000000001C10.8 135.8000000000001 0 145.9000000000001 0 173.1000000000001C0 198.3000000000001 12.3 208.9000000000001 42.1 208.9000000000001zM59.2 160.8C72.3 160.8 76.1 163.8 76.1 174.2C76.1 183.3 71.8 185.8 56.5 185.8C43.4 185.8 38.6 182.8 38.6 173.7C38.5 163.3 42.3 160.8 59.2 160.8zM137 255.7H175.3L173.8 235.1H174.6C183.7 252.2 190.5 256 212.1 256C226.5000000000001 256 236.8 253.0000000000001 243.6 246.9000000000001C253.4000000000001 238.3000000000001 256.4000000000001 226.5000000000001 256.4000000000001 198.8000000000001C256.4000000000001 168.8000000000001 253.4000000000001 155.7000000000001 244.3000000000001 145.9C237.5000000000001 138.6 227.9000000000001 135.8 211.1 135.8C190.7 135.8 181.9 141.3 177.3 157H176.5V86.7H137V255.7zM217.9 195C217.9 222.5 214.6 227.5 197.2 227.5C180.3 227.5 176.5 222.5 176.5 198.8C176.5 170.8 180 165.3 197.7 165.3C214.1 165.3 217.9 170.9 217.9 195zM275.8 255.7H314.1L312.6 235.1H313.4000000000001C322.5000000000001 252.2 329.3 256 350.9000000000001 256C365.3 256 375.6 253 382.4000000000001 246.9C392.2000000000001 238.3 395.2000000000001 226.5 395.2000000000001 198.8C395.2000000000001 168.8 392.2000000000001 155.7 383.1 145.9C376.3 138.6 366.7000000000001 135.8 349.8 135.8C329.4000000000001 135.8 320.6 141.3 316 157H315.2V86.7H275.7V255.7zM356.7000000000001 195C356.7000000000001 222.5 353.4000000000001 227.5 336.0000000000001 227.5C319.1000000000001 227.5 315.3000000000001 222.5 315.3000000000001 198.8C315.3000000000001 170.8 318.8000000000001 165.3 336.5000000000001 165.3C352.9000000000001 165.3 356.7000000000001 170.9 356.7000000000001 195zM410.5000000000001 198.8C410.5000000000001 224.2 413.8000000000001 236.6 422.8000000000001 244.6C431.6000000000001 252.7 445.0000000000001 255.9000000000001 467.9000000000001 255.9000000000001C510.7000000000001 255.9000000000001 523.6000000000001 243.1 523.6000000000001 200.2000000000001V189.1H448.3000000000002C448.0000000000001 187.1 448.0000000000001 185.1 448.0000000000001 184.3C448.0000000000001 167.4 452.5000000000001 162.4 468.1000000000001 162.4C482.0000000000001 162.4 486.0000000000001 165.4 486.0000000000001 176.3H523.5000000000001V174C523.5000000000001 164.2 521.0000000000001 155.1 516.7000000000002 149.3C509.4000000000001 139.5 497.1000000000001 135.7 472.4000000000001 135.7C444.9000000000002 135.7 430.8000000000002 139 421.8000000000002 148C413.3000000000002 156.5 410.5000000000001 169.3 410.5000000000001 198.8zM486.9000000000001 210.4C486.6000000000001 212.2 486.6000000000001 213.7 486.6000000000001 214.2C486.6000000000001 226.5000000000001 483.3000000000001 228.8 467.0000000000001 228.8C452.6000000000001 228.8 449.9000000000001 225.8 448.9000000000001 213.7L448.6 210.4H486.9zM542.5000000000001 255.7H580.8000000000001L579.0000000000001 235.8H579.7000000000002C586.5000000000001 250.7 594.1000000000001 256 609.4000000000002 256C620.2000000000002 256 628.5000000000002 252.7 632.8000000000002 246.7C638.1000000000001 239.4 639.6000000000001 232.3 639.6000000000001 212.7C639.6000000000001 211.2 639.6000000000001 207.7 639.8000000000002 203.4H604.8000000000002C605.1000000000001 205.2 605.1000000000001 206.7 605.1000000000001 207.4C605.1000000000001 222.8 603.1000000000001 226.8 594.8000000000002 226.8C588.5000000000002 226.8 584.0000000000002 223.5 581.7000000000002 217.5C580.7000000000002 214.5 580.7000000000002 213.1999999999999 580.7000000000002 205.1999999999999V137.1999999999999H542.4000000000002V255.7z" />
+    <glyph glyph-name="apple-pay"
+      unicode="&#xF415;"
+      horiz-adv-x="640" d=" M116.9 289.5C109.4 280.6 97.4 273.6 85.4 274.6C83.9 286.6 89.8 299.4 96.7 307.2C104.2 316.3 117.3 322.8 128 323.3C129.2 310.9 124.3 298.6 116.9 289.5M127.8 272.3C110.4 273.3 95.5 262.4 87.3 262.4C78.9 262.4 66.3 271.8 52.5 271.5C34.6 271.2 18 261.1 8.9 245C-9.9 212.7 4 165 22.2 138.7C31.1 125.7 41.7 111.4 55.7 111.9C69 112.4 74.2 120.5 90.2 120.5C106.3 120.5 111 111.9 125 112.1C139.5 112.4 148.6 125.1 157.5 138.1C167.6 152.9 171.8 167.2000000000001 172 168C171.7 168.3 144 178.9 143.7 210.9C143.4 237.7 165.6 250.4 166.6 251.2C154.1 269.8 134.6 271.8 127.8 272.3M228.2 308.5V113.6H258.5V180.2000000000001H300.4C338.7 180.2000000000001 365.5 206.5000000000001 365.5 244.5000000000001S339.1 308.5000000000001 301.4 308.5000000000001H228.2zM258.5 283H293.4C319.7 283 334.7 269 334.7 244.4S319.7 205.6 293.3 205.6H258.5V283zM420.7 112.1C439.7 112.1 457.3 121.7000000000001 465.3 137H465.9V113.6H493.9V210.6C493.9 238.7 471.4 256.9000000000001 436.8 256.9000000000001C404.7 256.9000000000001 380.9000000000001 238.5000000000001 380 213.3000000000001H407.3C409.6 225.3000000000001 420.7 233.2000000000001 435.9000000000001 233.2000000000001C454.4 233.2000000000001 464.8 224.6000000000001 464.8 208.7000000000001V197.9L427 195.6C391.9 193.5 372.9 179.1 372.9 154.1C373 128.9 392.6 112.1 420.7 112.1zM428.9 135.2000000000001C412.8 135.2000000000001 402.5 143.0000000000001 402.5 154.8000000000001C402.5 167.1000000000001 412.4 174.2000000000001 431.3 175.3000000000001L464.9 177.4000000000001V166.4000000000001C464.9 148.2000000000001 449.4000000000001 135.2000000000001 428.9000000000001 135.2000000000001zM531.4 60.6C560.9 60.6 574.8 71.9 586.9 106L640 255H609.2L573.6 139.9H573L537.4 255H505.8L557 113.1L554.2 104.5C549.6 89.9 542.1 84.2 528.7 84.2C526.3000000000001 84.2 521.7 84.5 519.8000000000001 84.7V61.3C521.6 60.9 529.1 60.6 531.4000000000001 60.6z" />
+    <glyph glyph-name="apple"
+      unicode="&#xF179;"
+      horiz-adv-x="376.5" d=" M314.7 179.3C314.5 216 331.1 243.7 364.7 264.1C345.9 291 317.5 305.8 280 308.7000000000001C244.5 311.5 205.7 288 191.5 288C176.5 288 142.1 307.7000000000001 115.1 307.7000000000001C59.3 306.8 0 263.2 0 174.5C0 148.3 4.8 121.2 14.4 93.3C27.2 56.6 73.4 -33.4 121.6 -31.9C146.8 -31.3 164.6 -14 197.4 -14C229.2 -14 245.7 -31.9 273.8 -31.9C322.4000000000001 -31.2 364.2000000000001 50.6 376.4 87.4C311.2 118.1 314.7 177.4 314.7 179.3000000000001zM258.1 343.5C285.4 375.9 282.9 405.4 282.1 416C258 414.6 230.1 399.6 214.2 381.1C196.7 361.3 186.4 336.8 188.6 309.2C214.7 307.2 238.5 320.6 258.1 343.5z" />
+    <glyph glyph-name="artstation"
+      unicode="&#xF77A;"
+      horiz-adv-x="508.1" d=" M0 70.6L43 -3.7C51.5 -20.5 68.8 -32 88.9 -32H374.3L315.1 70.6H0zM499.8 98L333.6 388.7C325 404.9 307.9 416 288.2 416H199.8L457.1 -31.6L497.8 38.9C499.7 42.1 518.8 68.6 499.8 98zM273 143.5L157.5 343.5L42 143.5H273z" />
+    <glyph glyph-name="asymmetrik"
+      unicode="&#xF372;"
+      horiz-adv-x="576" d=" M517.5 138.8C556.3 178.8 575.6 218.8 576 254.9C576.8 320.4 516.6 373.1 406.6 389.9C277.9 409.6 118.1 374.4 0 307.5C52 334 110.6 355.7 170.7 365.7C245.2 386.2 323.7 391.1 392 380.5C544.5 356.7 588.8 253 490.8 148.8C480.6 138 468.8 127.7 455.8 118.2L304.9 344.6L114.7 59.1C49.1 88.5 38.2 149.3 95.6 210.3C116.4 232.5 143.9 252.2 175.1 268.4C195.1 280.6 214.8 291 237.1 299.1C172 278.8 114.4 246.2 75.5 206.2C47.8 177.6 34.1 149.1 33.8 123.3C33.3 88.1999999999999 57.2 58.1999999999999 102.2 40.3L67.7 -11.4H169.3L191.3 22.9999999999999C213.5 21.9999999999999 236.6 22.9999999999999 259.9 25.6999999999999L237.1 -11.4000000000001H372.6L340 41.7C358.6 47 376.9 53.2 394.5 60.4L440.4 -11.4H542L468.6 99C487.1 111.1 503.6 124.5 517.5 138.8zM329.9 58.3L304.9 98.9L272.2 45.6C248.8 42.1 225.5 40.5 203 41.2L304.9 200.5000000000001L383.6 77.5000000000001C366.4 70.1000000000001 348.3 63.6000000000001 329.9 58.3000000000001z" />
+    <glyph glyph-name="atlassian"
+      unicode="&#xF77B;"
+      horiz-adv-x="512" d=" M152.2 211.6C144.5 219.8 132.5 219.3 127.4 208.8L1.6 -42.2C-3.4 -52.2 4 -63.9 15 -63.9H190C195.8 -64 201 -60.7 203.4 -55.5C241.3 22.3 218.5 140.8 152.2 211.6zM244.4 439.9C122.1 246.5 235.9 91.3 309.4 -55.6C311.9 -60.7 317.1 -64 322.8 -64H497C508.2 -64 515.4 -52.2 510.4 -42.3C510.4 -42.3 275.9 428.3 270 440C264.7 450.6 251.2 450.8 244.4 439.9z" />
+    <glyph glyph-name="audible"
+      unicode="&#xF373;"
+      horiz-adv-x="640" d=" M640 248.1V194.1L320 -5.9L0 194V248L320 48L640 248.1zM445.5 176.1L492.6 205.5C455.4 261.3 391.9000000000001 298.1 319.9000000000001 298.1C247.9000000000001 298.1 184.4 261.4000000000001 147.3000000000001 205.7H147.6000000000001C150.1000000000001 208 152.7000000000001 210.2 155.3000000000001 212.4C245.0000000000001 286.8 374.7000000000001 270.5 445.5 176.1zM225.4 157.3C242.3 169.2 261.9 176 282.8 176C317.2 176 348 157.6 369.2000000000001 128.4L414.6 156.8C393.7000000000001 186.6999999999999 359 206.3 319.8 206.3C280.9000000000001 206.3 246.4 186.9 225.4 157.3zM103.6 286.9C235.4 391.2 421.8 363.3 521.1 224.8L521.8000000000001 223.8L570.6 254.2C517.1 335.9 424.8 389.9 319.9 389.9C216.4 389.9 123.3 336.4 69.4 254.3C79.3 264.8 92.1 277.8 103.6 286.9zM570.6 254.2z" />
+    <glyph glyph-name="autoprefixer"
+      unicode="&#xF41C;"
+      horiz-adv-x="640" d=" M318.4 432L157.4 -48H234.9L260.3 33.4H379.8L405 -48H482.5L318.4 432zM278.1 90.1L319.3 220.5H320.8L361.7 90.1H278.0999999999999zM640 43L630 74.4L462.1 90L481.5 33.5L640 43zM177.9 90L10 74.3L0 43L158.5 33.6L177.9 90z" />
+    <glyph glyph-name="avianex"
+      unicode="&#xF374;"
+      horiz-adv-x="512" d=" M453.1 416H141.1C102.2 416 64.9 384.8 57.8 346.3L1.2 37.7C-5.9 -0.8 19.9 -32 58.9 -32H370.9C409.8 -32 447.1 -0.8 454.2 37.7L510.9 346.2C517.9 384.8 492.1 416 453.1 416zM394.9000000000001 68.7L362.9000000000001 55.2L247.5000000000001 165.2C232.8000000000001 155.2 218.3000000000001 145.7 205.8 138.1L227.9 73.9L210 61.2L169.4 122.2L117 170.3L132.7 185.7L190.7 154.6C200 165.1 211.5 177.2 223.5 189.5L203 219.1L134.2 318.9L153 347.8L161.9 352.6L265 240.2L269.9 235.7C289.3 254.5 303.7 268.1 303.7 268.1C311.4 274.6 325.2 271 334.4 260.2C343.4 249.7 345 235.5 337.1 228.9C335.3 227.6 321.6 217.5 301.8 203.3L306.3 196L401.2 76.6L394.8999999999999 68.7z" />
+    <glyph glyph-name="aviato"
+      unicode="&#xF421;"
+      horiz-adv-x="640" d=" M107.2 164.5L88.2 206.3H36.1L17.1 164.5H0L62.2 295.9L124.4 164.5H107.2zM62.2 262.6L42.6 220.1H81.8L62.2 262.6zM174.9 160.2L112.7 291.6H129.8L174.9 195.6L220 291.6H237L174.9 160.2zM255.5 164.5V291.6H271V164.5H255.5zM464.6 280.1V164.5H447.3V280.1H406.1V291.6H505.7V280.1H464.6zM640 229.2C640 220 638.3 211.4 634.9 203.4C631.5 195.4 626.6999999999999 188.3 620.6999999999999 182.3C614.6999999999999 176.3 607.5999999999999 171.5 599.5999999999999 168.1C591.5999999999999 164.7 582.9999999999999 163 573.8 163S556 164.6999999999999 548 168.1C540 171.5 532.9 176.3 526.9 182.3C520.9 188.3 516.1 195.3 512.6999999999999 203.4C509.3 211.4 507.5999999999999 220 507.5999999999999 229.2S509.2999999999999 247 512.6999999999999 255C516.0999999999999 263 520.9 270.1 526.9 276.1C532.9 282.1 539.9 284.5 548 288C556 291.4 564.6 293.1 573.8 293.1S591.5999999999999 291.4 599.5999999999999 288C607.5999999999999 284.6 614.6999999999999 282.2 620.6999999999999 276.1C626.6999999999999 270.1 631.4 263 634.9 255C638.3 247 640 238.4 640 229.2zM624.5 229.2C624.5 236.5 623.2 243.2 620.6 249.5C618 255.8 614.4 261.2 609.8000000000001 265.8C605.2 270.4 599.8000000000001 274 593.6 276.7000000000001C587.4 279.4 580.8000000000001 280.7000000000001 573.8000000000001 280.7000000000001S560.2 279.4 554.0000000000001 276.7000000000001C547.8000000000001 274 542.4000000000001 270.4 537.8000000000001 265.8C533.2 261.2000000000001 529.6 255.8 527.0000000000001 249.5C524.4000000000001 243.2 523.1000000000001 236.4 523.1000000000001 229.2C523.1000000000001 221.9 524.4000000000001 215.2 527.0000000000001 208.9C529.6000000000001 202.6 533.2000000000002 197.2 537.8000000000001 192.6C542.4000000000001 188 547.8000000000001 184.4 554.0000000000001 181.7C560.2000000000002 179 566.8000000000001 177.7 573.8000000000001 177.7S587.4000000000001 179 593.6 181.7C599.8000000000001 184.4 605.2 188 609.8000000000001 192.6C614.4000000000001 197.2 618.0000000000001 202.6 620.6 208.9C623.2 215.2 624.5 222 624.5 229.2zM529.7 132.5V138.8L618.6 148.8L375.7000000000001 135.4C376.3000000000001 137.6 376.8000000000001 140.0000000000001 377.1 142.6C377.4000000000001 144.6 377.6 146.8 377.7000000000001 149.1L442.5000000000001 157.2000000000001L377.6 155.3000000000001C377.6 155.7000000000001 377.5 156.0000000000001 377.5 156.4000000000001C374.7 173.6000000000001 352 180.1000000000001 352 180.1000000000001L350.9 206.4000000000001H374.7L393.7 164.6000000000001H410.8L348.6 296L286.4000000000001 164.6H303.5000000000001L322.5000000000001 206.4H346.1000000000001L345 180S322.3 173.5 319.5 156.3C319.4 156 319.4 155.6 319.4 155.2L254.5 157.1L319.3 149C319.4 146.6999999999999 319.6 144.6 319.9 142.5C320.2 139.8999999999999 320.7 137.5 321.3 135.3L78.4 148.8L167.3 138.8V132.5C161.4 131.6 156.8 126.5 156.8 120.3C156.8 113.5 162.4 107.9 169.2 107.9C176 107.9 181.6 113.5000000000001 181.6 120.3C181.6 126.5 177 131.6 171.1 132.5V138.3L251.4000000000001 129.3V123.9C245.7000000000001 122.8 241.5000000000001 117.7000000000001 241.5000000000001 111.8C241.5000000000001 105 247.1 101.6 253.9000000000001 101.6C260.7000000000001 101.6 266.3 105 266.3 111.8C266.3 117.8 262 122.8 256.4000000000001 123.9V128.8L284.8 125.6V101.9H278.9000000000001V88H284.8V94.6H289.8V88H295.7V101.8H289.8V125L328.1 120.7C336.2000000000001 109.3 347.1 107.1 347.1 107.1L347 100.4L341.9 100.2L341.8 88.1H345.9L346 93.1H351.2L351.3 88.1H355.4000000000001L355.3 100.2L350.2 100.4L350.1 107.1S361 109.2 369.1 120.7L407.4 125V101.8H401.5V88H407.4V94.6H412.4V88H418.3V101.8H412.4V125.5L440.8 128.7V123.8C435.1 122.7 430.9 117.6 430.9 111.7C430.9 104.9 436.5 101.5 443.3 101.5C450.1 101.5 455.6999999999999 104.9 455.6999999999999 111.7C455.6999999999999 117.7 451.3999999999999 122.7 445.8 123.8V129.2L526.0999999999999 138.2V132.4C520.1999999999999 131.5 515.5999999999999 126.4 515.5999999999999 120.2C515.5999999999999 113.4 521.1999999999999 107.8 527.9999999999999 107.8C534.7999999999998 107.8 540.3999999999999 113.4 540.3999999999999 120.2C540.1999999999998 126.5 535.6999999999998 131.6 529.6999999999998 132.5zM328.9000000000001 220.1L348.5000000000001 262.6L368.1000000000001 220.1H350.2000000000001L348.5000000000001 260.4L346.8000000000002 220.1H328.9000000000002z" />
+    <glyph glyph-name="aws"
+      unicode="&#xF375;"
+      horiz-adv-x="640" d=" M180.41 244.99C179.69 222.34 191.01 212.31 191.29 205.94A8.164 8.164 0 0 0 187.19 199.67L174.39 190.71A10.659999999999998 10.659999999999998 0 0 0 168.76 188.79C168.33 188.81 160.57 186.96 148.28 214.4A78.608 78.608 0 0 0 85.67 184.95C69.39 184.06 25.27 194.19 27.54 241.16C25.95 279.44 61.6 303.2200000000001 98.47 301.21C105.57 301.19 120.07 300.84 145.46 294.94V310.56C148.15 337.02 130.76 357.55 100.65 354.47C98.25 354.46 81.25 354.97 54.81 344.36C47.45 340.98 46.51 341.54 44.06 341.54C36.65 341.54 39.7 363.02 41.12 365.74C46.33 372.14 76.98 384.09 107.06 383.92A76.857 76.857 0 0 0 162.75 366.64A70.285 70.285 0 0 0 180.42 314.28L180.41 244.99zM93.99 212.6C126.42 213.07 140.15 232.57 143.28 243.07C145.74 253.12 145.33 259.48 145.33 270.4700000000001C135.66 272.79 121.74 275.32 105.77 275.3400000000001C90.62 276.48 62.95 269.7100000000001 64.03 243.08C62.79 226.29 75.15 211.68 93.99 212.6zM264.91 189.55C257.05 188.83 253.39 194.41 252.23 199.92L202.43 364.5700000000001C201.46 367.35 200.8199999999999 370.2200000000001 200.51 373.1500000000001A4.61 4.61 0 0 0 204.37 378.4000000000001C204.61 378.4400000000001 202.24 378.4000000000001 226.62 378.4000000000001C235.4 379.2800000000001 238.26 372.37 239.17 368.0300000000001L274.89 227.2L308.05 368.03C308.58 371.25 310.99 379.1 320.85 378.27H338.01C340.18 378.45 349.12 378.77 350.69 367.9L384.11 225.27L420.98 367.9C421.4600000000001 370.0800000000001 423.7000000000001 379.27 433.6600000000001 378.27H453.38C454.23 378.4 459.53 379.0800000000001 458.63 369.69C458.2 367.8400000000001 462.04 380.35 405.88 199.79C404.73 194.28 401.06 188.7000000000001 393.2 189.42H374.51C363.57 188.2700000000001 362 199.08 361.83 200.17L328.67 337.3L295.89 200.31C295.73 199.22 294.16 188.41 283.21 189.56H264.91zM538.39 183.92C532.51 183.91 504.47 184.22 481.03 196.21A12.802 12.802 0 0 0 473.22 208.12V218.87C473.22 227.32 479.42 225.77 482.05 224.76C492.09 220.7 498.53 217.62 510.86 215.16C547.51 207.63 563.63 217.46 567.5799999999999 219.64C580.7299999999999 227.45 581.77 245.32 572.8299999999999 254.59C562.3499999999999 263.38 557.3499999999999 263.71 519.6999999999999 275.59C515.06 276.88 475.9999999999999 289.2 475.9099999999999 327.95C475.2999999999999 356.19 500.9599999999999 384.13 545.43 383.9C558.0999999999999 383.91 591.8599999999999 379.77 601 368.28C602.35 366.19 603.02 363.73 602.92 361.24V351.13C602.92 346.69 601.3 344.47 598.05 344.47C590.3399999999999 345.33 576.66 355.64 548.89 355.22C542 355.58 509 354.31 510.48 330.25C510.05 311.29 537.09 304.18 540.1800000000001 303.36C576.6400000000001 292.39 588.83 290.57 603.3000000000001 273.78C620.44 251.53 611.2 225.48 607.6500000000001 218.34C588.57 180.85 539.2300000000001 183.9 538.3900000000001 183.92zM578.59 79.06C508.5600000000001 27.34 406.9000000000001 -0.19 320.1 -0.19A469.127 469.127 0 0 0 2.83 120.54C-3.7 126.43 2.06 134.5 10 130.0100000000001A637.37 637.37 0 0 1 326.88 45.89A630.22 630.22 0 0 1 568.47 95.4400000000001C580.25 100.4400000000001 590.24 87.64 578.59 79.0600000000001zM607.7800000000001 112.35C598.82 123.87 548.5000000000001 117.73 525.97 115.04C519.1800000000001 114.2700000000001 518.03 120.16 524.1800000000001 124.5100000000001C564.2500000000001 152.6800000000001 630.0600000000001 144.6100000000001 637.6200000000001 135.1400000000001C645.1700000000001 125.67 635.5700000000002 59.73 598.0600000000002 28.23C592.3000000000002 23.36 586.7900000000002 25.93 589.3500000000001 32.33C597.7900000000002 53.58 616.7400000000001 100.8200000000001 607.7800000000001 112.35z" />
+    <glyph glyph-name="bandcamp"
+      unicode="&#xF2D5;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM296.2 113.9H115.2L199.9 270H380.9L296.2 113.9z" />
+    <glyph glyph-name="behance-square"
+      unicode="&#xF1B5;"
+      horiz-adv-x="448" d=" M186.5 155C186.5 135.7 172.5 129.6 155.3 129.6H110.2V182.5H156.2C174.8 182.4 186.5 174.7 186.5 155zM178.8 237.3C178.8 255 165.1 259.2000000000001 149.9 259.2000000000001H110.3V214.4H153C168.1 214.4 178.8 221 178.8 237.3000000000001zM311.1 214.1C292.8 214.1 280.6 202.7 279.4000000000001 184.4H341.6C339.9000000000001 202.9 330.3 214.1 311.1 214.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM271.7 263H349.5V281.9H271.7V263zM228.7 152.7C228.7 176.8 217.3 197.6 193.7 204.3C210.9 212.5 219.9 222 219.9 241.3C219.9 279.5 191.4 288.8 158.5 288.8H68V96.8H161.1C196 96.9999999999999 228.7 113.6999999999999 228.7 152.6999999999999zM380 167.5C380 208.6 355.9 242.9 312.4 242.9C270 242.9 241.3 211.1 241.3 169.3C241.3 126 268.6 96.3 312.4 96.3C345.6 96.3 367.1 111.2 377.5 143.1H343.8C340.1 131.2000000000001 325.2 125 313.6 125C291.2000000000001 125 279.5 138.1 279.5 160.3H379.7C379.8 162.6 380 165.1 380 167.5z" />
+    <glyph glyph-name="behance"
+      unicode="&#xF1B4;"
+      horiz-adv-x="576" d=" M232 210.8C263.8 226 280.4 249 280.4 284.8C280.4 355.4 227.8 372.6 167.1 372.6H0V18.2H171.8C236.2 18.2 296.7000000000001 49.1 296.7000000000001 121.1C296.7000000000001 165.6 275.6 198.5 232.0000000000001 210.8zM77.9 312.1H151C179.1 312.1 204.4 304.2 204.4 271.6C204.4 241.5 184.7 229.4 156.9 229.4H77.9V312.1zM161.2 78.4H77.9V176H162.8C197.1 176 218.8 161.7 218.8 125.4C218.8 89.6 192.9 78.4 161.2 78.4zM519.7 319.1H376V354H519.7V319.1zM576 142.8C576 218.7 531.6 282 451.1 282C372.9000000000001 282 319.8 223.2 319.8 146.2C319.8 66.3 370.1 11.5 451.1 11.5C512.4 11.5 552.1 39.1 571.2 97.8H509C502.3 75.9 474.7 64.3 453.3 64.3C412 64.3 390.3 88.5 390.3 129.6H575.4C575.6999999999999 133.8 576 138.3 576 142.8zM390.4 174C392.7 207.7 415.1 228.8 448.9 228.8C484.3 228.8 502.1 208 505.1 174H390.4z" />
+    <glyph glyph-name="bimobject"
+      unicode="&#xF378;"
+      horiz-adv-x="448" d=" M416 416H32C14.4 416 0 401.6 0 384V0C0 -17.6 14.4 -32 32 -32H416C433.6 -32 448 -17.6 448 0V384C448 401.6 433.6 416 416 416zM352 158.6C352 109.2000000000001 340.6 76 248.2 76H231.3C187.2 76 168.9 90.9 160.9 114.8H160V80H96V312H160V237.3H161.1C165.7 267.8 200.8 276.1 230.8 276.1H248.1C340.5 276.1 351.9000000000001 243.0000000000001 351.9000000000001 193.6V158.6zM288 187.5V164.6C288 142.9 284.6 130.8 249.6 130.8H204.3C175.4 130.8 160.2 137.3 160.2 166.5V185.5C160.2 214.8 175.4 221.2 204.3 221.2H249.6C284.6 221.4 288 209.2 288 187.5z" />
+    <glyph glyph-name="bitbucket"
+      unicode="&#xF171;"
+      horiz-adv-x="499.2" d=" M16.2 416.4C7.4 416.5 0.1 409.5 0 400.6C0 399.7 0.1 398.7 0.2 397.8L68.1 -14.3C69.8 -24.7 78.8 -32.4 89.4 -32.5H415.1C423 -32.6 429.8 -26.9 431.1 -19.1L499 397.7C500.4 406.4 494.5 414.6 485.8 416C484.9 416.1 484 416.2 483 416.2L16.2 416.4zM302.1 118.6H198.1L170 265.6H327.3L302.1 118.6z" />
+    <glyph glyph-name="bitcoin"
+      unicode="&#xF379;"
+      horiz-adv-x="512" d=" M504 192C504 55.033 392.967 -56 256 -56S8 55.033 8 192S119.033 440 256 440S504 328.967 504 192zM362.349 227.33C367.286 260.329 342.158 278.069 307.799 289.903L318.945 334.605L291.732 341.386L280.881 297.862C273.727 299.645 266.379 301.326 259.078 302.992L270.007 346.802L242.809 353.583L231.656 308.897C225.734 310.246 219.9209999999999 311.579 214.279 312.981L214.31 313.121L176.78 322.491L169.541 293.429S189.732 288.802 189.3059999999999 288.516C200.3279999999999 285.765 202.3199999999999 278.472 201.9859999999999 272.691L189.2899999999999 221.766C190.0499999999999 221.572 191.0339999999999 221.293 192.119 220.859C191.2119999999999 221.084 190.243 221.332 189.243 221.572L171.447 150.2339999999999C170.098 146.8859999999999 166.68 141.8639999999999 158.976 143.7699999999999C159.2469999999999 143.375 139.196 148.7069999999999 139.196 148.7069999999999L125.6859999999999 117.56L161.0999999999999 108.733C167.6879999999999 107.0819999999999 174.1449999999999 105.3539999999999 180.5 103.727L169.238 58.514L196.4199999999999 51.733L207.5729999999999 96.466A1038.209 1038.209 0 0 1 229.26 90.8389999999999L218.1449999999999 46.3159999999999L245.3579999999999 39.5349999999999L256.6199999999999 84.6629999999999C303.0239999999999 75.8819999999999 337.9189999999999 79.4239999999999 352.6059999999999 121.3899999999999C364.4419999999999 155.1799999999999 352.0169999999999 174.6709999999999 327.6019999999999 187.3809999999999C345.3819999999999 191.4789999999999 358.7759999999999 203.1729999999999 362.3489999999999 227.3299999999999zM300.172 140.151C291.762 106.3609999999999 234.864 124.6279999999999 216.417 129.208L231.361 189.107C249.807 184.504 308.961 175.39 300.172 140.151zM308.589 227.818C300.916 197.082 253.558 212.698 238.196 216.526L251.744 270.853C267.107 267.025 316.58 259.88 308.589 227.818z" />
+    <glyph glyph-name="bity"
+      unicode="&#xF37A;"
+      horiz-adv-x="496" d=" M78.4 380.8C173.8 470 324.5 472 421.5 377C435.8 362.9 415.1 339.9 399.1 355.5C314.3 437.9 183.3 435.8 100.2000000000001 358.7C83.9000000000001 343.6 63.7000000000001 367 78.4000000000001 380.8zM177.3 -37.8C196.6 -43.5 206.6 -14.2 185.2 -7.8C73 26.1 9.4 141.9 37.7 253.2C42.7 272.8 12.8 281.3 7.5 260.3C-24.6 132.9 48.6 0.5 177.3 -37.8000000000001zM325.4 -35.8C447.3 4.4 518.3 131.1 489.8 255.2C485.3 274.9 454.9 269 459.8 247.3C483.9999999999999 139.6 422.7 29.4 316.6 -6.1C295.4 -13.1 306.2 -42.1 325.4 -35.8zM262.5 43.2L262.7 115C262.7 123.2 256.1 129.8 247.9 129.8C239.7 129.8 233.1 123.1 233.1 115L232.9 43.2C232.9 35 239.5 28.4 247.7 28.4S262.5 35 262.5 43.2zM333.5 312.2C335.6 221.3 338.2 180.3 248 179.7C155.5 180.4 161.1 224 162.5 312.2C162.5 334 130 331.8 130 312.2V240.6C130 171.3 190.7 149.7 248 150.5C305.3 149.7 366 171.3 366 240.6V312.2C366 331.8 333.5 334 333.5 312.2z" />
+    <glyph glyph-name="black-tie"
+      unicode="&#xF27E;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM316.5 90.8L224 2.1L131.5 90.8L196 274.8L131.5 361.4H316.4L252 274.8L316.5 90.8z" />
+    <glyph glyph-name="blackberry"
+      unicode="&#xF37B;"
+      horiz-adv-x="512" d=" M166 331.1C166 307.7 149.6 282 93.5 282H23.4L44.4 370.8H112.2C154.3 370.8 166 347.5 166 331.1zM292.2 370.8H224.4L205.7 282H275.8C329.6 282 345.9 307.7 345.9 331.1C346 347.5 334.3 370.8 292.2 370.8zM88.8 239.9H21L0 151.1H70.1C126.2 151.1 142.6 174.5 142.6 200.2C142.6 216.5 130.9 239.9000000000001 88.8 239.9000000000001zM268.9 239.9H201.1L182.4 151.1H252.5C306.3 151.1 322.6 174.5 322.6 200.2C322.6 216.5 310.9 239.9000000000001 268.9 239.9000000000001zM458.2 293.7H390.4L371.7 204.9H441.8C495.6 204.9 511.9 228.3 511.9 254C512 270.3 500.3 293.7 458.2 293.7zM430.2 155.8H362.4L343.7 67H413.8C469.9 67 483.9 90.4 483.9 116.1C483.9 132.4 472.3 155.8 430.2 155.8zM240.8 102H173L154.3 13.2H224.4C280.5 13.2 294.5 38.9 294.5 62.3C294.6 78.6 282.9 102 240.8 102z" />
+    <glyph glyph-name="blogger-b"
+      unicode="&#xF37D;"
+      horiz-adv-x="448" d=" M446.6 225.3C444.8 233.3 439.8 240.7 434.1 243.8C432.3 244.8 421.1 246 409.1 246.5C389 247.4 386.8 247.8 380.4000000000001 251.5C370.3 257.4 367.6 263.8 367.5000000000001 281C367.4000000000001 314 353.7000000000001 344.7 326.6000000000001 372.3C307.3000000000001 392 285.7000000000001 405.3 261.1000000000001 412.8C255.2000000000001 414.6 242.0000000000001 415.2 197.8000000000001 415.7C128.4000000000001 416.5 113.0000000000001 415.1 89.4000000000001 405.7C45.9 388.5 14.7 351.9 3.3 305.1C1.2 296.3 0.7 282.2 0.2 201.2C-0.4 99.7 0.3 84.8 6.6 64.7C22.2 15.1 66.5 -21.6 111 -29.6C125.8 -32.3 308.3 -32.9 327 -30.4C359.5 -26.0000000000001 385 -12.9 408.9 11.4999999999999C426.2 29.1999999999999 437 48.3 444.1 73.6C449 91.2 448.6 216.4 446.6 225.3zM124.5 288.9C132.3 296.8 134.5 297.1 183.3 297.1C227.2 297.1 228.7 297 235.1 293.7C244.4000000000001 289 248.5000000000001 282.4 248.5000000000001 271.8C248.5000000000001 262.3 244.7 255.6 236.2 250.2C231.6 247.3 228.9 247.1 185.9 246.9C159.4 246.7 138.2000000000001 247.3 135.1 248.1C118.5 252.8 112.3 276.6 124.5 288.9zM316.3 89.1L301.4000000000001 86.7000000000001L223.9 85.8000000000001C155.8000000000001 85.0000000000001 136.6 86.2000000000001 133 87.8000000000001C125.9 90.9000000000001 119.2 99.5000000000001 118.1 107.2000000000001C117 114.5000000000001 120.7 124.5000000000001 126.3 129.6C133.4 136 136.5 136.2000000000001 223.6 136.3C313.2000000000001 136.4 312.7000000000001 136.4 321.2000000000001 128.5C333.3000000000001 117.2 330.7000000000001 97.3 316.3000000000001 89.1z" />
+    <glyph glyph-name="blogger"
+      unicode="&#xF37C;"
+      horiz-adv-x="448" d=" M162.4 252C167.2 256.9 168.6 257.1 198.8 257.1C226 257.1 226.9 257 230.9 255C236.7 252.1 239.2 248 239.2 241.4C239.2 235.5 236.8 231.4 231.6 228C228.8 226.2 227.1 226.1 200.5 225.9C184.1 225.8 171 226.1 169 226.7C158.7 229.6 154.9 244.4 162.4 252.0000000000001zM223.8 157.5C169.9 157.5 168 157.3 163.6 153.4C160.1 150.3 157.9 144 158.5 139.5C159.2 134.8 163.3000000000001 129.4 167.7 127.5C169.9 126.5 181.8 125.8 224 126.3L271.9 126.9L281.1 128.4C290.1 133.5000000000001 291.6 145.8 284.2 152.8C278.9 157.5 279.2 157.5 223.8 157.5zM447.2000000000001 27.4C443.7000000000001 -1 424.2000000000001 -23 396.1 -30.1C388.9000000000001 -31.9 386.4000000000001 -32 223.2 -31.9C65.4 -31.9 57.3 -31.8 51.2 -30.1C42.8 -27.9 35.6 -24.6 28.9 -20.1C23.3 -16.3 15 -8.3 11.9 -3.7C8.1 1.9 3.7 11.6 1.9 18.3C0.1 25 0 27.7 0 191.7C0 354.8 0 358.3 1.8 365.4C8.1 390.1 27.7 409 53 414.6C60.3 416.2 385.1 416.5 393 414.9C414.2 410.6 430.9 397.8 440.6 378.5C448.3 363.2 447.6 380 447.9000000000001 197.9C448.1 82.1 447.9000000000001 33.4 447.2000000000001 27.4zM361.8000000000001 212.6C360.7000000000001 217.6 357.6000000000001 222.2 354.1000000000001 224.1C353.0000000000001 224.7 346.1000000000001 225.4 338.6000000000001 225.8C326.2000000000001 226.4 324.8000000000001 226.6 320.8000000000001 228.9C314.6000000000001 232.5 312.9000000000001 236.5 312.8000000000001 247.2C312.8000000000001 267.6 304.3000000000001 286.6 287.5000000000001 303.7C275.5000000000001 315.9 262.2000000000001 324.2 246.9000000000001 328.8C243.3000000000001 329.9 235.1000000000001 330.3 207.7000000000001 330.6C164.8000000000001 331.1 155.2000000000001 330.2 140.6000000000001 324.4C113.6000000000001 313.7 94.3000000000001 291 87.2000000000001 262C85.9000000000001 256.5999999999999 85.6000000000001 247.8 85.3 197.6999999999999C84.9 134.8999999999999 85.3 125.5999999999999 89.3 113.1999999999999C99 82.4999999999999 126.4 59.8 153.9 54.8C163.1 53.1 276.1 52.6999999999999 287.6 54.3C307.7000000000001 56.9999999999999 323.5 65.1 338.3 80.1999999999999C349 91.0999999999999 355.7 102.9999999999999 360.1 118.6999999999999C363.3 129.5999999999999 363 207.0999999999999 361.8 212.5999999999999z" />
+    <glyph glyph-name="bluetooth-b"
+      unicode="&#xF294;"
+      horiz-adv-x="320" d=" M196.48 187.977L289.106 291.31L143.125 448V241.67L57.014 327.781L25.608 296.376L133.669 187.977L25.608 79.578L57.014 48.173L143.125 134.284L145.84 -64L294.392 84.644L196.48 187.977zM237.34 290.973L187.363 240.995L187.025 341.29L237.34 290.973zM187.363 134.96L237.34 84.982L187.025 34.6659999999999L187.363 134.9599999999999z" />
+    <glyph glyph-name="bluetooth"
+      unicode="&#xF293;"
+      horiz-adv-x="448" d=" M292.6 276.9L249.7 234L249.4 320L292.6 276.9M249.4 57.1L292.5 100.2000000000001L249.6 143.1L249.4 57.1zM416 188.6C416 -17 344.1 -64 230.9 -64S32 -17 32 188.6S115.4 448 228.6 448S416 394.1 416 188.6zM257.5 188.6L336.9 277.2000000000001L211.8 411.5V234.6L138 308.4L111 281.5L203.7 188.5L111 95.5L137.9 68.6L211.7 142.4L214 -27.6L341.4 99.9L257.5 188.6z" />
+    <glyph glyph-name="btc"
+      unicode="&#xF15A;"
+      horiz-adv-x="384" d=" M310.204 205.362C337.9340000000001 219.542 355.581 244.752 351.4840000000001 286.662C346.1260000000001 344.013 299.0260000000001 363.235 236.6340000000001 368.591V448H188.1060000000001V370.7970000000001C175.5010000000001 370.7970000000001 162.5810000000001 370.482 149.662 370.1670000000001V448H101.134V368.591C83.2920000000001 368.052 62.512 368.315 3.764 368.591V316.913C42.078 317.591 62.181 320.053 66.787 295.486V78.057C63.862 58.565 48.263 61.372 13.532 61.986L3.765 4.32C92.246 4.32 101.135 4.005 101.135 4.005V-64H149.663V3.06C162.897 2.745 175.817 2.745 188.107 2.745V-64H236.635V4.005C317.9340000000001 8.417 372.2820000000001 28.899 379.5300000000001 105.472C385.201 166.918 356.2100000000001 194.334 310.2040000000001 205.362zM150.608 313.447C178.023 313.447 263.7340000000001 321.954 263.7340000000001 264.919C263.7340000000001 210.404 178.0240000000001 216.707 150.608 216.707V313.447zM150.608 61.671V168.179C183.38 168.179 283.735 177.317 283.735 114.924C283.7340000000001 54.738 183.38 61.671 150.608 61.671z" />
+    <glyph glyph-name="buromobelexperte"
+      unicode="&#xF37F;"
+      horiz-adv-x="448" d=" M0 416V288H128V416H0zM120 296H8V408H120V296zM160 416V288H288V416H160zM280 296H168V408H280V296zM320 416V288H448V416H320zM440 296H328V408H440V296zM0 256V128H128V256H0zM120 136H8V248H120V136zM160 256V128H288V256H160zM280 136H168V248H280V136zM320 256V128H448V256H320zM440 136H328V248H440V136zM0 96V-32H128V96H0zM120 -24H8V88H120V-24zM160 96V-32H288V96H160zM280 -24H168V88H280V-24zM320 96V-32H448V96H320z" />
+    <glyph glyph-name="buysellads"
+      unicode="&#xF20D;"
+      horiz-adv-x="448" d=" M224 297.3L266.9 136.6H181.1L224 297.3zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM382.7 42.7L288.2 341.4H159.8L65.3 42.7H156L267.7 134.3L291.9 42.6999999999999H382.7z" />
+    <glyph glyph-name="canadian-maple-leaf"
+      unicode="&#xF785;"
+      horiz-adv-x="465.9" d=" M232.9 448S195.4 375.7 190.4 368.2C185.4 358.2 180.4 358.2 172.8 363.2C162.8 368.2 132.7 385.6 132.7 385.6S160.3 266 160.3 256C162.8 246 152.8 238.5 142.7 246C140.2 248.5 87.6 308.3 87.6 308.3S75.1 281 72.6 276C70.1 271 67.6 266.1 60.1 268.5C50 271 2.4 281 2.4 281S20 221.3 22.5 213.7C24.9 207.7 27.5 201.2 17.5 196.3L0 188.7S102.6 98.8 105.2 96.3C110.3 91.3 115.2 88.8 110.3 73.8C105.2 58.8 100.2 38.6999999999999 100.2 38.6999999999999S195.4 58.8 205.5 61.3C214.2 62.1999999999999 223.8 58.8 223.8 48.8C223.8 38.6999999999999 218 -64 218 -64H248S242.2 38.7 242.2 48.8C242.2 58.8 251.7 62.2 260.6 61.3C270.6 58.8 365.8 38.7 365.8 38.7S360.8 58.8 355.8 73.8S355.8 91.3 360.8 96.3C363.3 98.8 465.9999999999999 188.7000000000001 465.9999999999999 188.7000000000001L448.5 196.2000000000001C438.5 201.1000000000001 441.1 207.7000000000001 443.5 213.6000000000001C445.8999999999999 221.2000000000001 463.6 280.9000000000001 463.6 280.9000000000001S415.9 270.9000000000001 405.9 268.4000000000001C398.4 266 395.9 270.9000000000001 393.4 275.9000000000001S378.4 308.3000000000001 378.4 308.3000000000001S325.8 248.4000000000001 323.3 246.0000000000001C313.3 238.5000000000001 303.2 246.0000000000001 305.7 256.0000000000001C305.7 266.0000000000001 333.3 385.6 333.3 385.6S303.2 368.2000000000001 293.2 363.2000000000001C285.7 358.2000000000001 280.5999999999999 358.2000000000001 275.5999999999999 368.2000000000001C270.5 375.7 232.9 448 232.9 448" />
+    <glyph glyph-name="cc-amazon-pay"
+      unicode="&#xF42D;"
+      horiz-adv-x="576" d=" M124.7 246.2C124.8 258 124.7 269.7 124.7 281.5V316.8C124.7 318.1 125.1 318.8 126.1 319.5C137.6 327.5 150.2 331.6 164.3 330.6C176.8 329.7 187 323.6 192.4 308.9C195.7 300 196.5 290.7000000000001 196.5 281.2000000000001C196.5 272.5 195.8 263.9 193.1 255.6C187.4 237.8 174.4 230.9000000000001 157.4 231.7C145.7 232.2 135.5 236.7 126 243.4C125.1 244.2 124.6 245 124.7 246.2zM279.6 231.6C284.2000000000001 229.8 288.9000000000001 229.6 293.7000000000001 230.1C305.3000000000001 231.3 315.6 235.8 325.0000000000001 242.6C325.9000000000001 243.2 326.3000000000001 243.9 326.3000000000001 245.1C326.2000000000001 249 326.3000000000001 253 326.3000000000001 256.9C326.3000000000001 260.9 326.2000000000001 264.9 326.3000000000001 268.9C326.3000000000001 270.3 325.9000000000001 270.9 324.5000000000001 271.1C317.5000000000001 272 310.6000000000001 273.3 303.6000000000001 274C296.6000000000001 274.6 289.6000000000001 274.3 282.8000000000001 272.1C276.1000000000001 269.9 271.1000000000001 265.9 269.1000000000001 259C267.5000000000001 253.6 267.5000000000001 248.2 269.2000000000001 242.8C270.8000000000002 237.3 274.4000000000001 233.6 279.6000000000001 231.6zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM368.5 344.1C368.9 342.4 369.4 340.7 370.1 339C386.6 298.4 403 257.7 419.6 217.1C421 213.6 421.3 210.7 419.8 207.2C417 201 414.9000000000001 194.6 412 188.5C409.4 183 405.3 179 399.3 177.3C395.1 176.2 390.8 176 386.4000000000001 176.4C384.3 176.6 382.2000000000001 177.1 380.1 177.2000000000001C377.3 177.4 375.9000000000001 176.1 375.8 173.2000000000001C375.7 170.4 375.7 167.6 375.8 164.9C375.9000000000001 160.3 377.4000000000001 158.2000000000001 382 157.4C386.7 156.6 391.4 155.8 396.2 155.7000000000001C410.5 155.4 421.9 161.1 429.3 173.6C432.2 178.5 434.9000000000001 183.7000000000001 437 189C456.8 239.1 476.5 289.3 496.2 339.5C496.8 341 497.3 342.5 497.5 344.1C497.9 346.5 496.8 347.7 494.4 347.8C488.8 347.9 483.3 347.8 477.7 347.8C474.6 347.8 472.4 346.4 471.3 343.5C470.9 342.4 470.4 341.2 470 340.1L440.9 256.4C438.8 250.3 436.7 244.3 434.4 237.8C434 238.7 433.8 239.2 433.6 239.7C422.8 269.6 412 299.6 401.2 329.5C399.5 334.2 397.7 339 395.9 343.7C395 346.2 393.2 347.7 390.5 347.7C384.1 347.8 377.7 347.9 371.3 347.8C369.1 347.8 368 346.2 368.5 344.1zM242.4 242C244.1 230.3 250 221.2 260.4 215.4C270.3 209.9 281.1 209.2 292.1 210.8C304.8 212.7 316 218.1 325.9 226.3C326.3 226.6 326.7 226.9 327.3 227.3C327.8 224.1 328.2 221.1 328.8 218.1C329.3 215.5 330.9 213.8 333.3 213.7C337.9 213.6 342.4 213.6 347 213.7C349.3 213.8 350.8 215.3 351 217.6C351.1 218.4 351.1 219.2 351.1 219.9V308.7000000000001C351.1 312.3000000000001 350.9 315.9000000000001 350.4 319.5000000000001C348.8 330.3000000000001 344.2 339.2000000000001 334.5 344.9000000000001C328.9 348.2000000000001 322.7 349.9000000000001 316.3 350.8000000000001C313.3 351.2000000000001 310.3 351.5000000000001 307.2 351.9000000000001H297.2C296.4 351.8000000000001 295.6 351.6000000000001 294.7 351.6000000000001C286.5 351.2000000000001 278.4 350.2000000000001 270.5 348.1000000000001C265.4 346.8000000000001 260.5 344.9000000000001 255.5 343.2000000000001C252.5 342.2000000000001 251 340.0000000000001 251.1 336.7000000000001C251.2 333.9000000000001 251 331.1000000000001 251.1 328.4000000000001C251.2 324.3000000000001 252.9 323.2000000000001 256.8 324.3000000000001C263.3 326.0000000000001 269.9000000000001 327.8000000000001 276.5 329.1000000000001C286.8 331.0000000000001 297.2 331.8000000000001 307.6 330.3000000000001C313 329.5000000000001 318.1 327.9000000000001 321.7000000000001 323.3000000000001C324.8000000000001 319.3000000000001 325.9000000000001 314.5000000000001 326.1 309.6000000000001C326.4000000000001 302.7000000000001 326.3 295.7000000000001 326.4000000000001 288.8000000000001C326.4000000000001 288.4000000000001 326.3 288.1000000000001 326.2000000000001 287.6000000000001C325.8000000000001 287.6000000000001 325.4000000000001 287.6000000000001 325.1 287.7000000000001C316.3 289.8000000000001 307.4000000000001 291.3000000000001 298.3 291.8000000000001C288.8 292.3000000000001 279.4000000000001 291.7000000000001 270.4000000000001 288.6000000000001C259.6 284.8000000000001 250.9000000000001 278.3000000000001 245.8000000000001 267.8000000000001C241.7000000000001 259.5000000000001 241.2000000000001 250.8000000000001 242.4000000000001 242.0000000000001zM98.7 341.1V165.8C98.7 165 98.7 164.1 98.8 163.3C99 160.8 100.5 159.1999999999999 102.9 159.1C108.8 159 114.7 159 120.6 159.1C123.1 159.1 124.6 160.8 124.7 163.2C124.8 164 124.8 164.9 124.8 165.7V226.4C125.7 225.7 126.2 225.2 126.7 224.8C141.7 212.3 158.9 208.2 177.8 211.9C194.9 215.3 206.7 225.8 214.5 241.1C220.3 252.7 222.8 265.2 223.2 278.1C223.7 292.4 222.2 306.5 216.4 319.8C209.3 336.2 197.5 347.1 179.7 350.7C177 351.3 174.2 351.5 171.5 351.9H164.5C163.3 351.7 162.1 351.6 160.9 351.4C149.2 350 138.6 345.6 129.1 338.7C127.1 337.3 125.2 335.7 123.2 334.2C123.1 334.7 122.9 335 122.8 335.4C122.4 337.7 122.1 340 121.7 342.3C121.1 346.2 119.2 347.8 115.3 347.9H105.6C99.7 348 98.7 346.9 98.7 341.1zM493.6 109C490.9 109.7 488.5 109 486 108C442.1 89.6 396.5 77.8 349.2 72.2C334.7 70.5 320.1 69.4 305.5 69C278.9 68.3 252.3 69.8 225.9 73.3C208.1 75.7 190.4 79 172.9 83.2C135.9 92.1 100.2 104.9 66.2 122C57.4 126.4 48.8 131.3 40.1 136C36.3 138.1 33.9 137.5 31.9 133.9V132.2C33.1 130.6 34.1 128.8 35.6 127.4C71.6 95.2 112.2 70.9 157.6 54.5C179.5 46.6 202 40.8 224.9 37C238.9 34.7 252.9 33.2 267.1 32.5C270.1 32.4 273.1 32.3 276.1 32.1C276.8 32.1 277.5 31.9 278.2 31.8H295.9C296.6 31.9 297.3 32.1 298 32.1C312.9 32.5 327.8 33.9 342.6 36.1C364 39.3 385 44.2 405.5 50.8C435.1 60.4 463.2 73.2 488.9 90.9C491.7 92.8 494.6 94.7000000000001 496.9 97.1C501.2 101.5 499.2 107.5 493.6 109zM544 136.7C543.2 140.9 540 142.5 536.4 143.7C530.6999999999999 145.6 524.8 146.5 518.8 147C507.8 147.9 496.8 147.4 485.9999999999999 145.4C473.9999999999999 143.2 462.6 139.3 452.4999999999999 132.3C451.3 131.5 450.1 130.5 449.3999999999999 129.3C448.7999999999999 128.4 448.7 127 448.8999999999999 125.9C449.2 124.6 450.5999999999999 124.3 451.8999999999999 124.4C452.4999999999999 124.4 453.0999999999999 124.4 453.6999999999999 124.5L473.1999999999999 126.6C482.8 127.5 492.3999999999999 128.1 501.9999999999999 127.4C506.1 127.1 510.1 126.2000000000001 514 125.2000000000001C518.3 124.1 520.2 120.8000000000001 520.4 116.5000000000001C520.6999999999999 109.8000000000001 519.1999999999999 103.4 517.5 97.0000000000001C514 84.1000000000001 509.2 71.6000000000001 504.2 59.2000000000001C503.9 58.4 503.5 57.5000000000001 503.4 56.7000000000001C503 54.2 504.4 52.7 506.8 53.2C508.1999999999999 53.5000000000001 509.8 54.3000000000001 510.8 55.3000000000001C514.5 58.9000000000001 518.3 62.5000000000001 521.4 66.5000000000001C532.1 80.3000000000001 538.4 96.1000000000001 542.1 113.1000000000001C542.8000000000001 116.1000000000001 543.3000000000001 119.2000000000001 543.8000000000001 122.2000000000001C544.0000000000001 126.9000000000001 544.0000000000001 131.8000000000001 544.0000000000001 136.7000000000001z" />
+    <glyph glyph-name="cc-amex"
+      unicode="&#xF1F3;"
+      horiz-adv-x="576" d=" M576 192.6C538.1 192.8 531.8 193.5 521.5 187.6V192.6C476.2 192.6 468 194.3 456.6 187.4V192.6H378.4000000000001V187.5C367.0000000000001 194 357.0000000000001 192.6 302.7000000000001 192.6V187C296.4000000000001 190.7 288.2000000000001 192.6 278.4000000000001 192.6H220.4C216.9 188.8 207.9 178.9 204.7000000000001 175.4C192.0000000000001 189.5 194.2000000000001 187 189.2000000000001 192.6H106.1000000000001V100.3H188.1000000000001C191.4000000000001 103.8 201.0000000000001 114.1999999999999 204.2000000000001 117.6999999999999C216.9 103.3999999999999 214.5000000000001 105.9999999999999 219.6000000000001 100.3H268.5000000000001C268.5000000000001 115 268.6000000000001 108.6 268.6000000000001 123.3C280.1000000000001 123.1 292.9000000000001 123.5 302.9000000000001 129.5C302.9000000000001 115.6 302.8000000000001 112.3999999999999 302.8000000000001 100.3H342.4000000000001C342.4000000000001 118.8 342.5000000000001 107.6999999999999 342.5000000000001 125.6C348.7000000000001 125.6 350.2000000000001 125.6 351.9000000000001 125.5C352.0000000000001 124.1999999999999 351.9000000000001 125.5 351.9000000000001 100.3C504.7000000000001 100.3 497.8000000000001 99.1999999999999 508.6000000000001 104.8V100.3C543.4000000000001 100.3 563.4000000000001 98.1 576.1000000000001 106.4V16C576.1000000000001 -10.5 554.6000000000001 -32 528.1000000000001 -32H48C21.5 -32 0 -10.5 0 16V219.7H26.6C30.8 229.8 28.8 225 33 235H52.2C56.4 225 54.4 229.8 58.6 219.7H111.5V231.1C113.7 226.1 112.6 228.6 116.6 219.7H146.1C148.5 225.2 148.7 225.5 151.2 231.1V219.7H286.7V244.8C293.1 244.8 294.7 244.9 296.5 244.6C296.5 244.6 296.3 233.7 296.6 219.8H363.1V228.7C370.5 222.8 380.5 219.8 392.8 219.8H419.6C423.8 229.9 421.8 225.1 426 235.1H445C451.5 220.1 445.2 234.6 451.6 219.8H504.4V241.7C516.2 222 512.2 228.8 517.6 219.8H559.2V311.8H519.3000000000001V293.4C507.1000000000001 313.6 513.0000000000001 303.8 508.1000000000001 311.8H464.8000000000001V291.2C458.6000000000001 305.8 460.2 302 456.0000000000001 311.8H423.6000000000001C423.2000000000001 311.8 421.3000000000001 311.6 421.3000000000001 312.1H393.7000000000001C380.9000000000001 312.1 370.6 308.9 363.0000000000001 302.8V312.1H323.1000000000001V306.8C312.3000000000001 312.9 302.4000000000001 311.9 258.7000000000001 312.1C258.6 312.1 247.1000000000001 312.2 247.1000000000001 312.1H144.1000000000001C141.6000000000001 306 137.3000000000001 295.7 131.5000000000001 282.1C128.7000000000001 288.1 120.5000000000001 305.9 117.6000000000001 312.1H71.6000000000001V291C64.2000000000001 308.4 66.9000000000001 302 62.6000000000001 312.1H22.9C19.5 304.2 9.2 280.1 -0.2 258.2V368C-0.2 394.5 21.3 416 47.8 416H527.8C554.3 416 575.8 394.5 575.8 368V192.6zM389.4 273.2C389.1 273 388 271 388 265.6C388 259.6 388.9 257.9 389.1 257.7C389.3 257.6 390.2000000000001 257.2 392.5 257.2L399.8 274.1C398.7 274.1 397.7 274.2 396.7 274.2C391.1 274.2 389.7 273.5 389.4 273.2zM369.5 142.3C378.7 139 380.5 132.8 380.5 123.9L380.4 110.1H363.8L363.9 121.6C363.9 133.4 360.1 135.4 349.1 135.4H331.5L331.3999999999999 110.1H314.7999999999999L314.8999999999999 179.4H354.2999999999999C367.2999999999999 179.4 381.3999999999999 177.1 381.3999999999999 160.7C381.2999999999999 153.1 377.2 145.4 369.5 142.3zM363.2 157.6999999999999C363.2 164.0999999999999 357.6 165.0999999999999 352.5 165.0999999999999H331.5V149.4999999999999H352.2C357.8 149.4999999999999 363.2 150.7999999999999 363.2 157.6999999999999zM544.9 164.8H575V179.4H542.1C529.3000000000001 179.4 518.3000000000001 172.8 518.3000000000001 158.7C518.3000000000001 125.7 561.0000000000001 145.9 561.0000000000001 131.3C561.0000000000001 126.2 556.7000000000002 124.9 552.6000000000001 124.9H520.6000000000001L520.5000000000001 110.1H552.5000000000001C560.9000000000001 110.1 570.1000000000001 111.9 575.0000000000001 119V144.8C564.5000000000001 158.6 535.7000000000002 146.1 535.7000000000002 158.3C535.7000000000002 164.1 540.3000000000002 164.8 544.9000000000002 164.8zM445.7 165.1V179.4H390.5L390.4 110.1H445.6L445.7 124.4L407.1 124.7V138.5H445V152.6H407.2V165.1H445.7zM487.9 125H455.7L455.6 110.1999999999999H487.8C502.6 110.1999999999999 514 115.8 514 132.1999999999999C514 165.3999999999999 471.1 143.3999999999999 471.1 158.5C471.1 164.1 476 164.8999999999999 480.3 164.8999999999999H510.7V179.5H477.5C464.7 179.5 454 172.8999999999999 454 158.8C454 125.8 496.7 146.3 496.7 131.4C496.6 126 492 125 487.9 125zM409.8 283.7C392.4 284 376.6 287.8 376.6 264C376.6 252.2 379.4 244.1 392.7 244.1H400.1L423.6 298.5999999999999H448.4L476.3 233.2V298.5999999999999H501.6L530.6999999999999 250.5V298.5999999999999H547.5999999999999V229.6H524L492.8 281.5V229.6H459.1L452.5 244.9H418.2L411.8 229.6H392.6C369.8 229.6 359.6 241.4 359.6 263.5999999999999C359.6 286.9 370.1 298.8999999999999 393.6 298.8999999999999H409.7000000000001V283.7zM424.1 259.2H446.9L435.7 286.8L424.1 259.2zM351.5 298.8H334.6V229.5H351.5V298.8zM313.4 261.5C322.9 258.2 324.4 252.3 324.4 243.1V229.6H307.8C307.5 244.4 311.4 254.7 293 254.7H275V229.6H258.6V298.8999999999999L297.7 298.5999999999999C311 298.5999999999999 325.1 296.5999999999999 325.1 280.2C325.2 272.2 320.8 264.4999999999999 313.4 261.4999999999999zM306.7 276.8C306.7 283.2 301.1 284.2 296 284.2H275V268.9H295.7C301.4 268.9 306.7 270.2 306.7 276.8zM247.2 284.2V298.8H191.7V229.5H247.2V243.8H208.3V257.6H246.1V271.7H208.3V284.2H247.2zM162.6 229.5V283.7L138.6 229.5H124L100 283.7V229.5H66.2L59.8 244.8H25.3L18.9 229.5H1L30.7 298.8H55.2L83.3 233.1V298.8H110.4L132.1 251.8L151.8 298.8H179.4V229.5H162.6zM53.9 259.2L42.4 286.8L31.2 259.2H53.9zM306.9 156.7C306.9 128.8 276.5 133.4 257.6 133.4L257.5 110.1H225.3L204.9 133.1L183.5999999999999 110.1H118.1999999999999L118.2999999999999 179.4H184.7999999999999L205.2999999999999 156.6L226.3 179.4H279C294.6 179.4 306.9 174 306.9 156.7zM194.2 144.9L176.3 165.1H134.6V152.6H170.9V138.5H134.6V124.6999999999999H175.2L194.2 144.8999999999999zM241 172L215.7 144.6L241 116.5V172zM289.3 156.7C289.3 162.8 284.7 165.1 279.1 165.1H257.6V147.5H278.8C284.7 147.5 289.3 150.3 289.3 156.6999999999999z" />
+    <glyph glyph-name="cc-apple-pay"
+      unicode="&#xF416;"
+      horiz-adv-x="576" d=" M302.2 229.6C302.2 212.4 291.7 202.5 273.2 202.5H248.9V256.7H273.3C291.7 256.7 302.2 246.9 302.2 229.6zM349.7 167C349.7 158.7 356.9 153.3 368.2 153.3C382.6 153.3 393.4 162.4 393.4 175.2V182.9L369.9 181.4C356.6 180.5 349.7 175.6 349.7 167zM576 369V17C576 -9.5 554.5 -31 528 -31H48C21.5 -31 0 -9.5 0 17V369C0 395.5 21.5 417 48 417H528C554.5 417 576 395.5 576 369zM127.8 250.8C136.2 250.1 144.6 255 149.9 261.2000000000001C155.1 267.6 158.5 276.2000000000001 157.6 284.9C150.2 284.6 141 280 135.7 273.6C130.9 268.1 126.8 259.2 127.8 250.8zM188.4 176.3C188.2 176.5 168.8 183.9 168.6 206.3C168.4 225 183.9 234 184.6 234.5C175.8 247.5 162.2 248.9 157.5 249.2C145.3 249.9 134.9 242.3 129.1 242.3C123.2 242.3 114.4 248.9 104.8 248.7C92.3 248.5 80.6 241.4 74.3 230.1C61.2 207.5 70.9 174.1 83.6 155.7C89.8 146.6 97.3 136.6 107.1 137C116.4 137.4 120.1 143 131.3 143C142.6 143 145.8 137 155.6 137.1C165.8 137.3 172.1 146.2000000000001 178.4 155.3C185.3 165.7 188.2 175.7 188.4 176.3zM323.8 229.7C323.8 256.3 305.3 274.5 278.9000000000001 274.5H227.7000000000001V138.1H248.9000000000001V184.7000000000001H278.2000000000001C305.0000000000001 184.7000000000001 323.8000000000001 203.1000000000001 323.8000000000001 229.7000000000001zM413.8 206C413.8 225.7 398 238.4000000000001 373.8 238.4000000000001C351.3 238.4000000000001 334.7 225.5000000000001 334.1 207.9H353.2000000000001C354.8000000000001 216.3000000000001 362.6 221.8000000000001 373.2000000000001 221.8000000000001C386.2000000000001 221.8000000000001 393.4000000000001 215.8000000000001 393.4000000000001 204.6000000000001V197.1000000000001L367.0000000000001 195.5000000000001C342.4000000000001 194.0000000000001 329.1000000000001 183.9 329.1000000000001 166.4C329.1000000000001 148.7000000000001 342.8000000000001 137.0000000000001 362.5000000000001 137.0000000000001C375.8000000000001 137.0000000000001 388.1000000000001 143.7000000000001 393.7000000000001 154.4H394.1V138H413.7000000000001V206zM516 237.1H494.5L469.6 156.5H469.2L444.3000000000001 237.1H422L457.9 137.8L456 131.8C452.8 121.6 447.5 117.6 438.1 117.6C436.4000000000001 117.6 433.2000000000001 117.8 431.9000000000001 117.9V101.5000000000001C433.1 101.1000000000001 438.4000000000001 101.0000000000001 440.0000000000001 101.0000000000001C460.7 101.0000000000001 470.4 108.9 478.9 132.8000000000001L516 237.1z" />
+    <glyph glyph-name="cc-diners-club"
+      unicode="&#xF24C;"
+      horiz-adv-x="576" d=" M239.7 368.1C142.8 368.1 63.9 289.5 63.9 192.3C63.9 95.4 142.8 16.5 239.7 16.5C336.9 16.5 415.5 95.4 415.5 192.3C415.5 289.5 336.9 368.1 239.7 368.1zM199.8 88.5C158.1 104.4 128.4 144.9 128.4 192.3S158.1 280.2000000000001 199.8 296.4V88.5zM279.6 88.2V296.4C321.3 280.2000000000001 351 239.7 351 192.3S321.3 104.4 279.6 88.2000000000001zM528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM329.7 0H239.4C133.2 0 45.6 85.5 45.6 190.2C45.6 304.8 133.2 384 239.4 384H329.7C434.7 384 530.4 304.8 530.4 190.2C530.4 85.5 434.7 0 329.7 0z" />
+    <glyph glyph-name="cc-discover"
+      unicode="&#xF1F2;"
+      horiz-adv-x="576" d=" M83 235.9C83 228 79.8 220.4 74.1 215.2C69.2 210.8 62.5 208.8 52.2 208.8H48V263H52.2C62.5 263 68.9 261.3 74.1 256.4C79.8 251.4 83 243.8 83 235.9zM504.8 264H499.9V239.1H504.6C514.9 239.1 520.4 243.5 520.4 251.9C520.4 259.8 514.9 264 504.8 264zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM428 195H473.3V208.8H444V231H472.3V244.8H444V263H473.3V277H428V195zM341.8 277L376.8 192.8H385.4000000000001L420.9000000000001 277H403.4000000000001L381.2000000000001 221.8L359.3000000000001 277H341.8000000000001zM258.8 235.4C258.8 210.8 278.7 190.8 303.4000000000001 190.8C328.0000000000001 190.8 348.0000000000001 210.7 348.0000000000001 235.4C348.0000000000001 260 328.1000000000001 280 303.4000000000001 280C278.8 280 258.8 260.1 258.8 235.4zM190.8 235.9C190.8 203.4 224.4 183.4 254.1 197.7V216.7C234.8 197.4 207.3 210.9 207.3 235.9C207.3 259.6 234 275 254.1 254.9V273.9C223.9 288.9 190.8 267.1 190.8 235.9zM156.9 207.6C149.3 207.6 143.1 211.3 139.4 218.4L129.1 208.5C146.9 182.4 185.7 190.3 185.7 219.8C185.7 232.9 180.3 238.8 162.1 245.4C152.5 248.8 149.8 251.3 149.8 255.7C149.8 264.4 164.3 269.8 174.7 258.2000000000001L183.1 269C164 286.1 133.4 277.9000000000001 133.4 254.7C133.4 243.4 138.6 237.5000000000001 153.6 232.0000000000001C179.3 222.9 168.3 207.6 156.9 207.6zM99.5 235.9C99.5 260 81.5 277 55.4 277H32V195H55.4C86.3 195 99.5 217.4 99.5 235.9zM122.9 277H106.9V195H122.9V277zM544 160C510.7 139.2 317.6 35.6 128 0H529C537.2 0 544 6.8 544 15V160zM544 195L518.1 229.5C530.2 232 536.8000000000001 240.1 536.8000000000001 252.7C536.8000000000001 281.2 506.5000000000001 277.1 483.9000000000001 277.1V195.1H499.9000000000001V227.9H502.1000000000001L524.3000000000001 195.1H544z" />
+    <glyph glyph-name="cc-jcb"
+      unicode="&#xF24B;"
+      horiz-adv-x="576" d=" M431.5 203.7V236C472.7 236 470 235.8 470 235.8C477.3 234.5 483.3 228.5 483.3 219.8C483.3 211 477.3 205.3 470 204C468.8 203.6 466.7 203.7 431.5 203.7zM474.3 183.5C471.5 184.2 471 184 431.5 184V149C471.1 149 471.5 148.8 474.3 149.5C481.8 151 487.8 157.5 487.8 166.5C487.8 175.2 481.8 182 474.3 183.5zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM182 255.7H125C125 188.6 135.7 146 89.2 146C69.7 146 50.4 151.7 32 160.8V132.8C62 124.5 100 124.5 100 124.5C197.9 124.5 182 172.2 182 255.7zM360.5 251.2C297.1 267.2 195.5 266.1 195.5 191.9C195.5 114.8 303.7 118.3 360.5 132.7V161C312.9 136.3 253 139 253 192S312.8 247.6 360.5 223.2V251.2zM544 161.5C544 180 527.5 192 506 193.5V194.3C525.5 197 536.3 209.8 536.3 224.5C536.3 243.5 520.5999999999999 254.5 499.3 255.5C499.3 255.5 505.6 255.8 379 255.8V128.3H501.6999999999999C525.9999999999999 128.2 543.9999999999999 141.2 543.9999999999999 161.5z" />
+    <glyph glyph-name="cc-mastercard"
+      unicode="&#xF1F1;"
+      horiz-adv-x="576" d=" M482.9 37.7C482.9 30.9 478.3 26 471.7 26C464.9 26 460.5 31.2 460.5 37.7C460.5 44.2 464.9 49.4 471.7 49.4C478.3 49.4 482.9 44.2 482.9 37.7zM172.1 49.4C165 49.4 160.9 44.2 160.9 37.7C160.9 31.2 165 26 172.1 26C178.6 26 183 30.9 183 37.7C182.9 44.2 178.6 49.4 172.1 49.4zM289.6 49.7C284.2 49.7 280.9 46.2 280.1 41H299.2C298.3 46.7 294.8 49.7 289.6 49.7zM397.4 49.4C390.6 49.4 386.5 44.2 386.5 37.7C386.5 31.2 390.6 26 397.4 26C404.2 26 408.6 30.9 408.6 37.7C408.6 44.2 404.2 49.4 397.4 49.4zM503.3 23.3C503.3 22.9999999999999 503.6 22.8 503.6 22.1999999999999C503.6 21.8999999999999 503.3 21.6999999999999 503.3 21.0999999999999C502.9999999999999 20.7999999999999 502.9999999999999 20.5999999999999 502.8 20.2999999999999C502.4999999999999 19.9999999999999 502.3 19.7999999999999 501.6999999999999 19.7999999999999C501.3999999999999 19.4999999999999 501.1999999999999 19.4999999999999 500.5999999999999 19.4999999999999C500.2999999999999 19.4999999999999 500.0999999999999 19.4999999999999 499.4999999999999 19.7999999999999C499.1999999999999 19.7999999999999 498.9999999999999 20.0999999999999 498.6999999999999 20.2999999999999C498.3999999999999 20.5999999999999 498.1999999999999 20.7999999999999 498.1999999999999 21.0999999999999C497.8999999999999 21.5999999999999 497.8999999999999 21.8999999999999 497.8999999999999 22.1999999999999C497.8999999999999 22.6999999999999 497.8999999999999 22.9999999999999 498.1999999999999 23.3C498.1999999999999 23.8 498.4999999999999 24.1 498.6999999999999 24.4C498.9999999999999 24.7 499.1999999999999 24.7 499.4999999999999 24.9C499.9999999999999 25.2 500.2999999999999 25.2 500.5999999999999 25.2C501.0999999999999 25.2 501.3999999999999 25.2 501.6999999999999 24.9C502.1999999999999 24.6 502.4999999999999 24.6 502.8 24.4S502.9999999999999 23.8 503.3 23.3zM501.1 21.9C501.6 21.9 501.6 22.2 501.9 22.2C502.2 22.5 502.2 22.7 502.2 23C502.2 23.3 502.2 23.5 501.9 23.8C501.6 23.8 501.4 24.1 500.8 24.1H499.1999999999999V20.6H499.9999999999999V22H500.3L501.4 20.6H502.2L501.1 21.9zM576 367V15C576 -11.5 554.5 -33 528 -33H48C21.5 -33 0 -11.5 0 15V367C0 393.5 21.5 415 48 415H528C554.5 415 576 393.5 576 367zM64 227.4C64 150.9 126.1 88.9 202.5 88.9C229.7 88.9 256.4 97.1 279 112C206.1 171.3 206.6 283.2 279 342.5C256.4 357.5 229.7 365.6 202.5 365.6C126.1 365.7 64 303.6 64 227.4zM288 118.6C358.5 173.6 358.2 280.8 288 336.1C217.8 280.8 217.5 173.5 288 118.6zM145.7 42.3C145.7 51 140 56.7 131 57C126.4 57 121.5 55.6 118.2 50.5C115.8 54.6 111.7 57 106 57C102.2 57 98.4 55.6 95.4 51.6V56H87.2V19.3H95.4C95.4 38.2 92.9 49.5 104.4 49.5C114.6 49.5 112.6 39.3 112.6 19.3H120.5C120.5 37.6 118 49.5 129.5 49.5C139.7 49.5 137.7 39.5 137.7 19.3H145.9V42.3zM190.6 56H182.7V51.6C180 54.9 176.2 57 171 57C160.7 57 152.8 48.8 152.8 37.7C152.8 26.5 160.7 18.4 171 18.4C176.2 18.4 180 20.3 182.7 23.8V19.1999999999999H190.6V56zM231.1 30.4C231.1 45.4 208.2 38.6 208.2 45.6C208.2 51.3 220.1 50.4 226.7 46.7L230 53.2C220.6 59.3 199.8 59.2 199.8 45C199.8 30.7 222.7 36.7 222.7 30C222.7 23.7 209.2 24.2 202 29.2L198.5 22.9C209.7 15.3 231.1 16.9 231.1 30.4zM266.5 21.1L264.3 27.9C260.5 25.8 252.1 23.5 252.1 32V48.6H265.2000000000001V56H252.1000000000001V67.2H243.9000000000001V56H236.3000000000001V48.7H243.9000000000001V32C243.9000000000001 14.4 261.2000000000001 17.6 266.5000000000001 21.1zM279.8 34.4999999999999H307.3C307.3 50.6999999999999 299.9000000000001 57.1 289.9000000000001 57.1C279.3 57.1 271.7000000000001 49.2 271.7000000000001 37.8C271.7000000000001 17.3 294.3000000000001 13.9 305.5000000000001 23.6L301.7000000000001 29.6C293.9000000000001 23.2 282.1 23.8 279.8000000000001 34.4999999999999zM338.9000000000001 55.9999999999999C334.3 57.9999999999999 327.3 57.8 323.7000000000001 51.6V56H315.5000000000001V19.3H323.7000000000001V40C323.7000000000001 51.6 333.2000000000001 50.1 336.5000000000001 48.4L338.9000000000001 56zM349.5000000000001 37.6999999999999C349.5000000000001 49.0999999999999 361.1000000000001 52.8 370.2000000000001 46.0999999999999L374.0000000000001 52.5999999999999C362.4000000000001 61.6999999999999 341.3000000000001 56.6999999999999 341.3000000000001 37.5999999999999C341.3000000000001 17.7999999999999 363.7000000000001 13.7999999999999 374.0000000000001 22.5999999999999L370.2000000000001 29.0999999999999C361.0000000000001 22.5999999999999 349.5000000000001 26.4999999999999 349.5000000000001 37.6999999999999zM416.2000000000001 55.9999999999999H408V51.6C399.7 62.6 378.1 56.4 378.1 37.7C378.1 18.5 400.5 13 408 23.8V19.2H416.2V56zM449.9000000000001 55.9999999999999C447.5000000000001 57.1999999999999 438.9000000000001 58.8999999999999 434.7000000000001 51.6V56H426.8000000000001V19.3H434.7000000000001V40C434.7000000000001 51 443.7000000000001 50.3 447.5000000000001 48.4L449.9000000000001 56zM490.2 70.8999999999999H482.3000000000001V51.5999999999999C474.1000000000001 62.4999999999999 452.4000000000001 56.6999999999999 452.4000000000001 37.6999999999999C452.4000000000001 18.3 474.9000000000001 13.0999999999999 482.3000000000001 23.8V19.1999999999999H490.2V70.8999999999999zM497.8000000000001 145.9999999999999V141.3999999999999H498.6000000000001V146H500.5000000000001V146.8H495.9V146H497.8zM504.4000000000001 22.1999999999999C504.4000000000001 22.6999999999999 504.4000000000001 23.2999999999999 504.1000000000001 23.7999999999999C503.8000000000001 24.0999999999999 503.6000000000001 24.5999999999999 503.3000000000001 24.8999999999999C503.0000000000001 25.1999999999999 502.5000000000001 25.3999999999999 502.2 25.6999999999999C501.7 25.6999999999999 501.1 25.9999999999999 500.6 25.9999999999999C500.3 25.9999999999999 499.8 25.6999999999999 499.2 25.6999999999999C498.7 25.3999999999999 498.4 25.1999999999999 498.1 24.8999999999999C497.6 24.5999999999999 497.3 24.0999999999999 497.3 23.7999999999999C497 23.2999999999999 497 22.6999999999999 497 22.1999999999999C497 21.8999999999999 497 21.3999999999999 497.3 20.7999999999999C497.3 20.4999999999999 497.6 19.9999999999999 498.1 19.6999999999999C498.4 19.3999999999999 498.6 19.1999999999999 499.2 18.8999999999999C499.7 18.5999999999999 500.3000000000001 18.5999999999999 500.6 18.5999999999999C501.1 18.5999999999999 501.7 18.5999999999999 502.2 18.8999999999999C502.5000000000001 19.1999999999999 503.0000000000001 19.3999999999999 503.3000000000001 19.6999999999999C503.6000000000001 19.9999999999999 503.8000000000001 20.4999999999999 504.1000000000001 20.7999999999999C504.4000000000001 21.3999999999999 504.4000000000001 21.8999999999999 504.4000000000001 22.1999999999999zM507.6000000000001 146.8999999999999H506.2000000000001L504.6000000000001 143.3999999999999L503.0000000000001 146.8999999999999H501.6000000000001V141.4999999999999H502.4000000000001V145.5999999999999L504.0000000000001 142.0999999999999H505.1000000000001L506.5000000000001 145.5999999999999V141.4999999999999H507.6000000000001V146.8999999999999zM512.0000000000001 227.3999999999999C512.0000000000001 303.5999999999999 449.9000000000001 365.6999999999999 373.5000000000001 365.6999999999999C346.3000000000002 365.6999999999999 319.6000000000002 357.4999999999999 297.0000000000001 342.5999999999999C369.1000000000002 283.2999999999999 370.2000000000001 171.0999999999999 297.0000000000001 112.0999999999999C319.6000000000002 97.0999999999999 346.5000000000001 88.9999999999999 373.5000000000001 88.9999999999999C449.9000000000001 88.8999999999999 512.0000000000001 150.8999999999999 512.0000000000001 227.3999999999999z" />
+    <glyph glyph-name="cc-paypal"
+      unicode="&#xF1F4;"
+      horiz-adv-x="576" d=" M186.3 189.8C186.3 177.6 176.6 168.3 164.3 168.3C155.1 168.3 148.3 173.5 148.3 183.3C148.3 195.5 157.8 205.3 170 205.3C179.3 205.3 186.3 199.6 186.3 189.8zM80.5 238.3H75.8C74.3 238.3 72.8 237.3 72.6 235.6L68.3 208.9L76.5 209.2000000000001C87.5 209.2000000000001 96 210.7000000000001 98 223.4C100.3 236.8000000000001 91.8 238.3000000000001 80.5 238.3000000000001zM364.5 238.3H360C358.2 238.3 357 237.3 356.8 235.6L352.6 208.9L360.6 209.2000000000001C373.6 209.2000000000001 382.6 212.2000000000001 382.6 227.2000000000001C382.5 237.8000000000001 373 238.3000000000001 364.5 238.3000000000001zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM128.3 232.6C128.3 253.6 112.1 260.6 93.6 260.6H53.6C51.1 260.6 48.6 258.6 48.4 255.9L32 153.8C31.7 151.8 33.2 149.8 35.2 149.8H54.2C56.9 149.8 59.4 152.7 59.7 155.5L64.2 182.1C65.2 189.3 77.4 186.8 82.2 186.8C110.8 186.8 128.3 203.8 128.3 232.6zM212.5 223.8H193.5C189.7 223.8 189.5 218.3 189.3 215.6C183.5 224.1 175.1 225.6 165.6 225.6C141.1 225.6 122.4 204.1 122.4 180.4C122.4 160.9 134.6 148.2 154.1 148.2C163.1 148.2 174.3 153.1 180.6 160.1C180.1 158.6 179.6 155.4 179.6 153.9C179.6 151.6 180.6 149.9 182.8 149.9H200C202.7 149.9 205 152.8 205.5 155.6L215.7 219.9C216 221.8 214.5 223.8 212.5 223.8zM253 125.9L316.7 218.5C317.2 219 317.2 219.5 317.2 220.2C317.2 221.9 315.7 223.7 314 223.7H294.8C293.1 223.7 291.3 222.7 290.3 221.2L263.8 182.1999999999999L252.8 219.6999999999999C252 221.8999999999999 249.8 223.6999999999999 247.3 223.6999999999999H228.6C226.9000000000001 223.6999999999999 225.4000000000001 221.8999999999999 225.4000000000001 220.1999999999999C225.4000000000001 219 244.9000000000001 163.3999999999999 246.6 158.0999999999999C243.9000000000001 154.2999999999999 226.1 129.4999999999999 226.1 126.4999999999999C226.1 124.6999999999999 227.6 123.2999999999999 229.3 123.2999999999999H248.5C250.3 123.3999999999999 252 124.3999999999999 253 125.8999999999999zM412.3 232.6C412.3 253.6 396.1 260.6 377.6 260.6H337.9000000000001C335.2000000000001 260.6 332.7000000000001 258.6 332.4000000000001 255.9L316.2000000000001 153.9C316.0000000000001 151.9 317.5000000000001 149.9 319.4000000000001 149.9H339.9000000000001C341.9000000000001 149.9 343.4000000000001 151.4 343.9000000000001 153.1L348.4000000000001 182.1C349.4000000000001 189.3 361.6 186.8 366.4000000000001 186.8C394.8 186.8 412.3 203.8 412.3 232.6zM496.5 223.8H477.5C473.7 223.8 473.5 218.3 473.2 215.6C467.7 224.1 459.2 225.6 449.5 225.6C425 225.6 406.3 204.1 406.3 180.4C406.3 160.9 418.5 148.2 438 148.2C447.3 148.2 458.5 153.1 464.5 160.1C464.2 158.6 463.5 155.4 463.5 153.9C463.5 151.6 464.5 149.9 466.7 149.9H484C486.7 149.9 489 152.8 489.5 155.6L499.7 219.9C500 221.8 498.5 223.8 496.5 223.8zM544 257.1C544 259.1 542.5 260.6 540.8 260.6H522.3C520.8 260.6 519.3 259.4 519.0999999999999 257.9L502.8999999999999 153.9L502.5999999999999 153.4C502.5999999999999 151.6 504.0999999999999 149.9 506.0999999999999 149.9H522.5999999999999C525.0999999999999 149.9 527.5999999999999 152.8 527.8 155.6L544 256.8V257.1zM454 205.3C441.8 205.3 432.3 195.6 432.3 183.3C432.3 173.6 439.3 168.3 448.5 168.3C460.5 168.3 470.2 177.5 470.2 189.8C470.3 199.6 463.3 205.3 454 205.3z" />
+    <glyph glyph-name="cc-stripe"
+      unicode="&#xF1F5;"
+      horiz-adv-x="576" d=" M396.9 191.5C396.9 172.4 388.1 158.1 375 158.1C366.7 158.1 361.7 161.1 358.2 164.8L358 217.6C361.7 221.7 366.8 224.6 375 224.6C387.9 224.7 396.9 210.1 396.9 191.5zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM122.2 166.9C122.2 209.2 67.9 201.6 67.9 217.6C67.9 223.1 72.5 225.3 80 225.3C90.8 225.3 104.5 222 115.3 216.2V249.6C103.5 254.3 91.8 256.1 80 256.1C51.2 256.1 32 241.1 32 215.9C32 176.6 86 183 86 166C86 159.4 80.3 157.3 72.4 157.3C60.6 157.3 45.5 162.2 33.5 168.6V134.7000000000001C46.7 129.0000000000001 60.1 126.6 72.3 126.6C101.9 126.8 122.2 141.3 122.2 166.9zM191.1 253.8H164.1V284.6L129.4 277.2L129.2000000000001 163.3C129.2000000000001 142.3 145.0000000000001 126.8 166.1000000000001 126.8C177.7000000000001 126.8 186.3000000000001 128.9 191.0000000000001 131.5V160.3999999999999C186.5000000000001 158.5999999999999 164.0000000000001 152.0999999999999 164.0000000000001 173V223.5H191.0000000000001V253.8zM264.9000000000001 253.8C260.2000000000001 255.5 243.6 258.6 235.3000000000001 243.3L233.1000000000001 253.8H202.4000000000001V129.3H237.9000000000001V213.7C246.3000000000001 224.7 260.5000000000001 222.6 265.0000000000001 221.1V253.8zM309.1 253.8H273.4000000000001V129.3H309.1V253.8zM309.1 301.1L273.4000000000001 293.5V264.6L309.1 272.2V301.1zM431.8 192.3C431.8 233.6 408.3 256.1 383.4000000000001 256.1C369.5000000000001 256.1 360.5000000000001 249.5 355.6 245L353.8 253.8H322.5V88L358 95.5L358.1 135.7C363.2000000000001 132 370.8 126.7 383.2000000000001 126.7C408.6 126.8 431.8000000000001 147.2 431.8000000000001 192.3zM544 191.1C544 227.5 526.4 256.2 492.7 256.2C458.9 256.2 438.4 227.5 438.4 191.3C438.4 148.5 462.6 126.8 497.2 126.8C514.2 126.8 526.9 130.6999999999999 536.6 136V164.6C526.9 159.7 515.8000000000001 156.7 501.7 156.7C487.9 156.7 475.7 161.6 474.1 178.2H543.6C543.7 180.2 544 187.6 544 191.1zM492.4 227.2C483.5 227.2 473.7 220.5 473.7 204.5H510.4C510.4 220.5 501.1 227.2 492.4 227.2z" />
+    <glyph glyph-name="cc-visa"
+      unicode="&#xF1F0;"
+      horiz-adv-x="576" d=" M470.1 216.7S477.7 179.5 479.4 171.7H446C449.3 180.6 462 215.2 462 215.2C461.8 214.9 465.3 224.3 467.3 230.1L470.1 216.7zM576 368V16C576 -10.5 554.5 -32 528 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368zM152.5 116.8L215.7 272H173.2L133.9 166L129.6 187.5L115.6 258.9C113.3 268.8 106.2 271.6 97.4 272H32.7L32 268.9C47.8 264.9 61.9 259.1 74.2 251.8L110 116.8H152.5zM246.9 116.6L272.1 272H231.9000000000001L206.8000000000001 116.6H246.9000000000001zM386.8 167.4C387 185.1 376.2 198.6 353.1 209.7000000000001C339 216.8000000000001 330.4000000000001 221.6000000000001 330.4000000000001 228.9000000000001C330.6 235.5000000000001 337.7000000000001 242.3000000000001 353.5000000000001 242.3000000000001C366.6000000000001 242.6000000000001 376.2000000000001 239.5000000000001 383.4000000000001 236.4000000000001L387.0000000000001 234.7000000000001L392.5000000000001 268.3000000000001C384.6000000000001 271.4000000000001 372.0000000000001 274.9000000000001 356.5000000000001 274.9000000000001C316.8000000000001 274.9000000000001 288.9000000000001 253.7000000000001 288.7000000000001 223.5C288.4000000000001 201.2 308.7000000000001 188.8 323.9000000000001 181.3C339.4000000000001 173.7 344.7000000000001 168.7 344.7000000000001 162C344.5000000000001 151.6 332.1 146.8 320.6 146.8C304.6 146.8 296 149.3 282.9000000000001 155.1L277.6 157.6L272 122.7000000000001C281.4 118.4 298.8 114.6 316.8 114.4C359 114.3 386.5 135.2000000000001 386.8 167.4zM528 116.6L495.6 272H464.5C454.9 272 447.6 269.2 443.5 259.1L383.8 116.6H426S432.9 135.8 434.4 139.9H486C487.2 134.4 490.8 116.6 490.8 116.6H528z" />
+    <glyph glyph-name="centercode"
+      unicode="&#xF380;"
+      horiz-adv-x="512" d=" M329.2 179.4C325.4 144.2 293.8 118.8 258.6 122.6C223.4 126.4 198 158 201.8 193.2C205.6 228.4 237.2 253.8 272.4 250C307.5 246.2 333 214.5999999999999 329.2 179.4zM243.4 -55.7C96.7 -48 -8.2 82.5 10.1 223.7C21.3 310.3 75.9 380.6 149.2 415.7C310.2 492.8 498.9 378.3 503.9 199.1C508 52.1 385.5 -63.1 243.4 -55.7zM423.3 124.3C451.1999999999999 242.3 262.8 330.2 186.1 358.5C128.6 302.2 117 169.9 152.3 14.1C221.1 -1.7 321.4 40.4999999999999 423.3 124.3z" />
+    <glyph glyph-name="centos"
+      unicode="&#xF789;"
+      horiz-adv-x="447.5" d=" M289.6 350.2L321.2000000000001 318.5L244.9000000000001 242V350.2H289.6zM127.2 318.5L203.5 242V350.2H158.8L127.2 318.5zM168.7 360.1H213.4V232.2L224.2000000000001 221.4L235.0000000000001 232.2V360.1H279.7000000000001L224.2000000000001 415.7L168.7000000000001 360.1zM194.9 192L184.1 202.8H55.5V247.6L0 192L55.5 136.4V181.2H184.1L194.9 192zM274.2 212.7H382.1V257.5L350.5 289.2L274.2 212.7zM447.5 192L392 247.6V202.8H264.3L253.5 192L264.3 181.2H392V136.4L447.5 192zM65.4 271.5L97.9 303.2L188.2 212.7H203.5V228L113.2 318.5L144.8 350.2H65.4V271.5zM382.1 350.2H303.6L335.2000000000001 318.5L244.9000000000001 228V212.7H260.2000000000001L350.5000000000001 303.2L382.1000000000001 271.5V350.2zM203.5 33.8V141.9L127.2 65.4L158.8 33.7H203.5zM65.4 212.7H174.2L97.9 289.2L65.4 257.5V212.7zM382.1 112.5L350.5 80.8L260.2 171.3H244.9V156L335.2 65.5L303.6 33.8H382.1V112.5zM382.1 171.3H274.2L350.5 94.8L382.1 126.5V171.3zM321.2000000000001 65.5L244.9 142V33.9H289.6L321.2000000000001 65.5zM97.9 94.8L174.2 171.3H65.4V126.5L97.9 94.8zM279.7000000000001 23.9H235V151.8L224.2 162.6L213.4 151.8V23.9H168.7L224.2 -31.7L279.7 23.9zM113.2000000000001 65.5L203.5000000000001 156V171.3H188.2000000000001L97.9000000000001 80.8L65.4000000000001 112.5V33.8H144.8000000000001L113.2000000000001 65.5z" />
+    <glyph glyph-name="chrome"
+      unicode="&#xF268;"
+      horiz-adv-x="496" d=" M131.5 230.5L55.1 347.9C102.7 407.1 174.1 439.7 247.1 440C289.4 440.3 332.6 429.5 371.9 406.8C415.3 381.6 448.3 345.4 469.3 303.8L264 314.6C205.9 318 150.6 285.3 131.5 230.5zM164.4 192C164.4 145.8 201.8 108.4 248 108.4S331.6 145.8 331.6 192S294.2000000000001 275.6 248.0000000000001 275.6S164.4 238.3 164.4 192zM479.3 281.2L339.6 274C377.5 229.7 378.1 165.8 346.2000000000001 116.8L234.1 -55.6C280.6 -58.1 328.5 -47.9 371.9 -22.7C479.3 39.3 522.8 169.3 479.3 281.2zM133.7 144.4L40.4 327.9C14.9 288.9 0 242.1 0 192C0 68 90.8 -34.7 209.5 -52.9L273.2 71.9C215.6 61.1 160 92.7000000000001 133.7 144.4z" />
+    <glyph glyph-name="cloudscale"
+      unicode="&#xF383;"
+      horiz-adv-x="448" d=" M318.1 294L308.7000000000001 286.4C286.2000000000001 305.7000000000001 257.2000000000001 320 225.4000000000001 320C153.8 320 96 259.2 96 187.7C96 181.1 96.4 174.6 97.4 168.3C95.4 224.3 139.2 265.7000000000001 190 265.7000000000001C214.2 265.7000000000001 236.2 256.3 252.6 241.0000000000001L227.4 220.6C219.1 221.5 210.6 218.8 204.3 212.5C193.2 201.5 193.2 183.6 204.3 172.5C215.4 161.5 233.2 161.5 244.3 172.5C250.6 178.8 253.3 187.4 252.4 195.6L327.6 284.4C333.9000000000001 290.9 324.3 300.3 318.1 294zM234.3 182.5C228.7 177 219.7 177 214.1 182.5C208.5 188.1 208.5 197.1 214.1 202.7S228.7 208.3 234.3 202.7S239.9 188 234.3 182.5zM224 416C100.5 416 0 315.5 0 192S100.5 -32 224 -32S448 68.5 448 192S347.5 416 224 416zM224 32C135.8 32 64 103.8 64 192S135.8 352 224 352S384 280.2 384 192S312.2 32 224 32z" />
+    <glyph glyph-name="cloudsmith"
+      unicode="&#xF384;"
+      horiz-adv-x="332" d=" M332.5 28.1C332.5 -18.3 294.9 -56 248.5 -56S164.5 -18.3 164.5 28.1S202.1 112.1 248.5 112.1S332.5 74.5 332.5 28.1zM248.5 272C294.9 272 328.5 309.6 328.5 356S294.9 440 248.5 440S160.5 402.4000000000001 160.5 356S130.9 280 84.5 280S0.5 238.4000000000001 0.5 192S38.1 112 84.5 112S168.5 145.6 168.5 192S202.1 272 248.5 272z" />
+    <glyph glyph-name="cloudversify"
+      unicode="&#xF385;"
+      horiz-adv-x="616" d=" M148.6 144C156.8 75.5 216 28.5 294.6 32.7C345.8 -10.6 431.4000000000001 -13.1 481 38.3C550.2 37.2 599.5 82.9 612.5 137.8C627.3 200.3 594.3 270.3 520.4 292.9C487.4 381 389 394.4 333.9 377.9C276.6 360.6 249.6 324.7 234.6 268.2C226.8 265.5 208.1 259.3 189.6 244.1C201.3 244.1 204.8 235.2 204.8 224.6V204.2C204.8 193.5 196.1 184.7 185.3 184.7H165.1C154.4 184.7 145.6 190.7 145.6 201.4V208H98.8C95 208 88 203.7 88 196.1V155.7C88 149.3 93.3 143.9 99.7 143.9H148.6zM376 136C365.3 89.7 397.7 63.6 431.3 49.2C324.1 15.4 259.7 100 296 160C262.8 138.4 262.3 88.8 266.8 67.1C248.9 79.5 213 99.5 209.4 146.9C206.4 186.8 230.9 222.6 266.4 240.8000000000001C297 256.6 369.9 249.3 400 200C385.9 248 346.2 270.1 298.2 274.8C329.1 305.5 362.6 325.1 412.4 318.5C482.2 309.2 545.5999999999999 235.7 480.1 168C515.0999999999999 184.3 528.8 222.4 527.5999999999999 244.9L538.0999999999999 225.3C549.8999999999999 203.3 553.3 177.7 547.4999999999999 153.3C538.2999999999998 114.3 506.8999999999999 84.5 467.7999999999999 76.8C435.6999999999999 70.5 384.7 81.9 375.9999999999999 136zM128 240H88.2C79.3 240 72 247.3 72 256.2V295.8C72 304.7 79.3 312 88.2 312H128C136.9 312 144.2 304.7 144.2 295.8V256.2C144.2 247.3 136.9 240 128 240zM10.1 280C4.5 280 0 284.5 0 290.1V317.9C0 323.5 4.5 328 10.1 328H37.8C43.3 328 47.9 323.5 47.9 317.9V290.1C47.9 284.5 43.4 280 37.8 280H10.1zM168 305.3V326.7000000000001C168 331.8 172.2 336 177.3 336H198.7C203.8 336 208 331.8 208 326.7000000000001V305.3C208 300.2000000000001 203.8000000000001 296 198.7 296H177.3C172.2 296 168 300.2 168 305.3zM56 212.5V187.5C56 181.2 50.9 176 44.6 176H19.4C13.1 176 8 181.2 8 187.5V212.5C8 218.8 13.1 224 19.4 224H44.5C50.9 224 56 218.8 56 212.5z" />
+    <glyph glyph-name="codepen"
+      unicode="&#xF1CB;"
+      horiz-adv-x="512" d=" M502.285 288.296L268.2850000000001 444.296C260.298 449.211 251.7740000000001 449.256 243.7140000000001 444.296L9.714 288.296C3.714 284.2970000000001 0 277.153 0 270.011V114.012C0 106.869 3.714 99.726 9.715 95.726L243.715 -60.296C251.702 -65.211 260.226 -65.256 268.286 -60.296L502.286 95.726C508.286 99.725 512.001 106.869 512.001 114.012V270.011C512 277.153 508.286 284.2970000000001 502.285 288.296zM278 384.8690000000001L450.286 270.011L373.429 218.582L278 282.2970000000001V384.8690000000001zM234 384.8690000000001V282.2970000000001L138.571 218.582L61.714 270.011L234 384.8690000000001zM44 228.868L99.143 192.011L44 155.154V228.868zM234 -0.847L61.714 114.011L138.571 165.4400000000001L234 101.725V-0.847zM256 140.011L178.285 192.011L256 244.011L333.7150000000001 192.011L256 140.011zM278 -0.847V101.725L373.429 165.4400000000001L450.286 114.0110000000001L278 -0.847zM468 155.154L412.857 192.011L468 228.868V155.154z" />
+    <glyph glyph-name="codiepie"
+      unicode="&#xF284;"
+      horiz-adv-x="472" d=" M422.5 245.1C453.2 245.1 456 192 422.2 192H411.4V147.7H384.8V245.1H422.5zM472 95.4C429.9 3.5 350.4 -56 248 -56C111 -56 0 55 0 192S111 440 248 440C345.4 440 420.8 386.3 466.2 301.6L280.2 192.8L472 95.4zM433.5 82.9L373.2 113.6C346.1 69.3 302.8 42.1999999999999 250.8 42.1999999999999C168.3 42.1999999999999 101.6 108.8999999999999 101.6 191.0999999999999C101.6 273.5999999999999 168.3 340.2999999999999 250.8 340.2999999999999C299.2 340.2999999999999 339.7 316.7999999999999 367.7 276.8999999999999L427.2 311.4999999999999C386.5 374.0999999999999 322.5 411.4999999999999 248 411.4999999999999C126.8 411.4999999999999 28.5 313.1999999999999 28.5 191.9999999999999S126.8 -27.5 248 -27.5C326.6 -27.5 394.5 14.6 433.5 82.9z" />
+    <glyph glyph-name="confluence"
+      unicode="&#xF78D;"
+      horiz-adv-x="512" d=" M2.3 35.8C-2.2 28.2 0.2 18.3 7.8 13.6L113.7 -51.6C121.4 -56.2999999999999 131.4 -53.9999999999999 136.1 -46.3C136.1 -46.1999999999999 136.2 -46.1 136.2 -46.1C203.3 66.1 216.7 49.8000000000001 417.1 -45.4C425.2 -49.3 434.9 -45.8 438.8 -37.7C438.9 -37.6 438.9 -37.4 439 -37.3L489.3999999999999 76.8C492.9999999999999 84.9 489.2999999999999 94.4 481.2999999999999 98.1C459.0999999999999 108.4999999999999 415.0999999999999 129.3 375.3999999999999 148.4C127.5 269 44.6 102.7 2.3 35.8zM509.7 347.9000000000001C514.2 355.5 511.8 365.4000000000001 504.2 370.1L398.4 435.2C390.9 440.2 380.8 438.3 375.8 430.8C375.6 430.5 375.4 430.2 375.2 429.8C307.8999999999999 317.2 294.0999999999999 334.2 94.5999999999999 428.9C86.4999999999999 432.8 76.7999999999999 429.3 72.8999999999999 421.2C72.7999999999999 421.1 72.7999999999999 420.9 72.6999999999999 420.8L22.2 306.7C18.6 298.6 22.3 289.1 30.3 285.4C52.5 275 96.6 254.2 136.3 235C384.3 115 467.1 280.4 509.7 347.9z" />
+    <glyph glyph-name="connectdevelop"
+      unicode="&#xF20E;"
+      horiz-adv-x="576" d=" M550.5 207L500.411 293.786C501.482 295.928 502.286 298.339 502.286 301.0180000000001C502.286 309.054 495.59 315.751 487.554 316.019L432.107 411.9120000000001C432.643 413.519 433.178 415.126 433.178 416.733C433.178 425.304 426.214 432.001 417.91 432.001C413.089 432.001 409.071 429.858 406.124 426.376H299.518C296.839 429.857 292.8210000000001 432 288 432S279.161 429.857 276.482 426.375H170.411C167.464 429.857 163.447 432 158.625 432C150.322 432 143.357 425.304 143.357 416.732C143.357 415.125 143.893 413.25 144.429 411.911L88.446 314.678C83.09 312.2680000000001 79.339 307.178 79.339 301.017C79.339 300.482 79.607 299.9460000000001 79.607 299.41L26.303 207.267C19.071 205.928 13.713 199.767 13.713 192.267C13.713 185.035 18.802 178.874 25.767 177.267L80.946 81.909C80.41 80.302 80.142 78.963 80.142 77.088C80.142 69.8559999999999 85.231 63.6949999999999 92.196 62.356L143.893 -27.376C143.357 -28.983 142.822 -30.858 142.822 -32.733C142.822 -41.304 149.786 -48.001 158.09 -48.001C162.911 -48.001 166.929 -45.858 169.608 -42.6439999999999H276.483C279.161 -45.857 283.447 -48 288 -48S296.839 -45.857 299.5180000000001 -42.643H406.6610000000001C409.3390000000001 -45.589 413.3570000000001 -47.464 417.6430000000001 -47.464C426.2140000000001 -47.464 432.9110000000001 -40.5 432.9110000000001 -32.196C432.9110000000001 -30.589 432.6440000000001 -29.25 432.1080000000001 -27.911L483.8050000000001 62.357C490.7690000000001 63.696 495.859 69.857 495.859 77.0889999999999C495.859 78.696 495.5910000000001 80.3029999999999 495.0550000000001 81.91L549.9660000000001 177.268C556.9300000000002 178.607 562.2880000000001 184.768 562.2880000000001 192.268C562.2860000000002 199.5 557.1960000000001 205.661 550.5000000000001 207zM153.535 -2.732L109.875 73.071H153.535V-2.732zM153.535 81.107H109.875C109.607 82.178 109.071 83.249 108.536 84.321L153.535 131.731V81.107zM153.535 143.518L103.178 90.2139999999999C101.839 90.7499999999999 100.499 91.5539999999999 99.16 91.821L43.447 188.25C43.982 189.589 43.982 190.929 43.982 192.268S43.982 194.678 43.714 195.75L95.679 285.75C98.358 286.0180000000001 101.036 286.822 103.447 288.429L153.536 236.464V143.518zM153.535 245.84L107.732 293.25C109.071 295.393 109.875 298.071 109.875 301.017C109.875 301.285 109.607 301.821 109.607 302.089L153.535 317.893V245.84zM153.535 326.465L109.875 310.661L153.535 386.197V326.465zM480.054 287.357L480.8579999999999 286.018L445.5 118.875L381.75 186.107L479.786 287.625L480.054 287.357zM291.75 92.893L303.2680000000001 81.107H280.5L291.75 92.893zM291.4820000000001 104.143L208.179 189.589L287.7320000000001 273.964L370.7680000000001 186.375L291.4820000000001 104.1429999999999zM296.8390000000001 98.25L376.1250000000001 180.482L443.6250000000001 109.232L437.7330000000001 81.107H313.714L296.839 98.25zM410.411 403.607C411.4820000000001 403.0710000000001 412.553 402.535 413.8930000000001 402.267L471.75 301.553V301.017C471.75 298.0710000000001 472.553 295.3930000000001 473.893 293.25L376.393 192L293.358 279.589L410.411 403.607zM401.304 405.75L287.7320000000001 285.482L230.6780000000001 345.75L397.0170000000001 405.75H401.3040000000001zM277.821 405.75C280.499 403.072 283.981 401.4650000000001 288 401.4650000000001S295.5 403.072 298.1789999999999 405.75H373.1789999999999L224.786 352.179L173.893 405.75H277.8210000000001zM161.572 400.125L162.643 402.267A33.834 33.834 0 0 1 165.322 403.0710000000001L216.483 349.231L161.572 329.41V400.125zM161.572 320.839L222.375 342.803L282.107 279.589L202.554 195.482L161.572 237.535V320.839zM161.572 228.161L198 190.393L161.572 152.089V228.161zM161.572 140.303L203.625 184.767L286.393 98.785L269.25 81.107H161.572V140.303zM168.536 -21.75C166.929 -20.143 165.054 -19.072 162.643 -18.268L161.572 -16.6609999999999V73.071H261.482L169.875 -21.75H168.536zM298.447 -21.75C295.7680000000001 -19.34 292.019 -17.465 288 -17.465S280.233 -19.34 277.553 -21.75H181.124L272.731 73.071H311.035L402.642 -21.75H298.447zM418.447 -9.964L414.161 -17.464C412.822 -17.732 411.751 -18.267 410.679 -18.803L321.483 73.072H435.8589999999999L418.447 -9.964zM431.303 12.268L444.161 73.071H466.125L431.303 12.268zM466.125 81.107H445.7680000000001L450.3210000000001 102.2670000000001L467.4640000000001 84.0530000000001C466.929 83.2500000000001 466.393 82.179 466.1250000000001 81.107zM532.2860000000001 188.518L476.8390000000001 91.821C475.5000000000001 91.286 474.1600000000001 90.75 472.8210000000001 89.947L452.1960000000001 111.911L486.7500000000001 275.839L532.5530000000001 196.553C532.2860000000001 195.214 531.7500000000001 193.875 531.7500000000001 192.268C531.7500000000001 190.929 532.0180000000001 189.857 532.2860000000001 188.518z" />
+    <glyph glyph-name="contao"
+      unicode="&#xF26D;"
+      horiz-adv-x="512" d=" M45.4 143C59.8 75.9 71.8 14 113.6 -32H34C15.3 -32 0 -16.8 0 2V382C0 400.7 15.2 416 34 416H91.7C77.9 403.4 65.6 388.8 54.8 372.4C9.4 302.4 27.8 225.6 45.4 143zM478 416H387.8C409.2 394.6 427 366.5 440.5 331.9L303.4 302.6C288.5 331.6 265.6 355.9 220.8 346.5C196.2 341.2 179.8 327.2 172.5 311.9C163.7 293.2000000000001 159.3 272.1 180.7 171.6C201.8 71.4 214.4 53.9 230.2 40.4C243.1 29.3 263.6 23.4 288.5 28.7C333 38.1 344.2 69.4 345.9 101.9L483.3 131.5000000000001C486.4999999999999 60.0000000000001 464.6 6.3000000000001 425.9 -32.0999999999999H478C496.7 -32.0999999999999 512 -16.8999999999999 512 1.9000000000001V382C512 400.8 496.8 416 478 416z" />
+    <glyph glyph-name="cpanel"
+      unicode="&#xF388;"
+      horiz-adv-x="640" d=" M52.9 234.3H92.9L86.7 210.7C84.8 204.2 79.3 199.8 72.4 199.8H53.8C28.9 199.8 29.1 162.4 53.8 162.4H65.1C69.3 162.4 72.7 158.5000000000001 71.5 154.1L64.4 128H52C18.5 128 -7 159.4 1.7 193.2C9 220.2 30 234.3 52.9 234.3M73.1 128L108 258.1C109.8 264.5 115.2 269 122.3 269H159.3C183.4 269 204.7 252.6 210.3 227.8C216.9 198.7 195.8 162.5 158.6 162.5H126.6L133 186.3C134.8000000000001 192.5 140.3000000000001 197.1 147.3000000000001 197.1H157.6000000000001C170.0000000000001 197.1 178.4000000000001 208.8 175.9000000000001 219.7C173.8000000000001 228.9 166.0000000000001 234.5000000000001 157.6000000000001 234.5000000000001H137.8000000000001L112 138.8C110.1 132.6 104.6 128.1 97.8 128.1L73.1 128M293.7 197.4C294 198.4 295.6 202.7 291.6 202.7H234.1C224.4 202.7 217.5 211.6 219.9 221.2L223.4 234.6H301.3C320.1 234.6 334.6 217 329.8 197.8L315.8 146C313 135.4 303.6 128.2 292.4 128.2L234.9 128.4C192 128.4 196.4 192.2 235.6 192.2H284L280.5 179C278.6 172.8 273.1 168.2 266.3 168.2H244.7C239.4 168.2 239.4 160.3 244.7 160.3H279.6C284.2000000000001 160.3 284.7000000000001 164.2 285.1 165.6L293.7000000000001 197.4M396.8000000000001 234.3000000000001C431.2000000000001 234.3000000000001 456.1000000000001 202.0000000000001 447.1000000000001 168.9L438.3000000000001 135.8C437.1000000000001 130.9 432.6000000000001 128 428.0000000000001 128H408.9000000000001C404.4000000000001 128 401.3 132 402.5000000000001 136.3L413.1000000000001 176.3C416.4000000000001 187.9 407.5000000000001 199.7 395.0000000000001 199.7H375.2000000000001L358.0000000000001 135.7000000000001C356.8000000000001 130.9 352.4000000000001 127.9 347.6000000000001 127.9H328.7000000000001C324.5000000000001 127.9 321.1000000000001 131.8 322.3000000000002 136.2000000000001L348.5000000000001 234.2000000000001H396.8000000000002M498 196.4L490 166.4C489.1 163.1 491.5 159.7 495.1 159.7H568.4L562.6999999999999 138.7C560.8 132.5 555.3 128 548.4999999999999 128H481.7999999999999C461.7999999999999 128 448.4999999999999 147 453.4999999999999 164.7L464.2999999999999 204.7C469.0999999999999 222.3 484.9999999999999 234.3 502.8999999999999 234.3H550.1999999999999C569.1999999999999 234.3 583.4 216.6 578.4999999999999 197.5L575.2999999999998 185.5C572.3999999999999 174.5 562.5999999999998 167.9 552.0999999999998 167.9H498.6999999999998L502.1999999999998 180.9C503.7999999999998 187.1 509.3999999999998 191.7 516.3999999999999 191.7H538C540 191.7 541.3 192.7 541.9 194.7L542.6 197.3C543.3000000000001 200 541.3000000000001 202.4 538.7 202.4H505.8000000000001C501.7 202.4 498.9000000000001 200.3 498.0000000000001 196.4zM568.2 128L603.8000000000001 261.1C605.0000000000001 265.8 609.3000000000001 269 614.2 269H633.1C637.6 269 640.8000000000001 265 639.6 260.7L613.1 162.5C608 141.8 588.9 128 568.2 128" />
+    <glyph glyph-name="creative-commons-by"
+      unicode="&#xF4E7;"
+      horiz-adv-x="496" d=" M314.9 253.6V152.2H286.6V31.7H209.5V152.1H181.2V253.6C181.2 258 182.8 261.8 185.8 264.9C188.9 268 192.7 269.6 197.1 269.6H299C303.1 269.6 306.8 268 310.1 264.9C313.2000000000001 261.7000000000001 314.9000000000001 258 314.9000000000001 253.6zM213.4 317.3C213.4 340.6 224.9 352.3 247.9 352.3S282.4 340.6 282.4 317.3C282.4 294.3 270.9 282.8 247.9 282.8S213.4 294.3 213.4 317.3zM247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3z" />
+    <glyph glyph-name="creative-commons-nc-eu"
+      unicode="&#xF4E9;"
+      horiz-adv-x="496" d=" M247.7 440C103.6 440 0 323.2 0 192C0 55.7 111.7 -56 247.7 -56C377.9 -56 496 44.9 496 192C496 331 388.4 440 247.7 440zM248.3 -10.7C136.3 -10.7 44.7 81.8 44.7 192C44.7 215.2 48.4 237.2 55.6 258L121.3 228.9H116.6V199.4H139.9C139.9 193.2 139.5 196.2 139.5 179.9H116.7V150.4H143.7C155.1 83.4 210.9 49.1 268.3 49.1C294.9 49.1 318.9 56.9999999999999 333.1 64.9L323.1 111C314.4 106.4 294.9 100.2 275.8 100.2C247.6 100.2 217.7 111.1 208.5 150.4H298.8L427.1 93.6C425.6 91.4999999999999 370.9 -10.7 248.3 -10.7zM231.6 179.9L231.1 180.3L232 179.9H231.6zM308.8 199.4H312.5V228.9H242.2L213.6 241.5C216.1 247 219 252 222.4 255.8C235.3 271.6 253.5 278.2 273.5 278.2C291.8 278.2 308.8 272.8 319.6 268.2L331.2000000000001 315.5C316.2000000000001 322.1 294.2000000000001 327.9 268.9000000000001 327.9C229.9000000000001 327.9 196.7000000000001 312.1 173 285.6C167.7 279.5 163.2 272.7000000000001 159.1 265.5L77.5 301.6C142.1 398.4000000000001 235.2 395.2000000000001 248.2 395.2000000000001C361.2000000000001 395.2000000000001 451.2 305 451.2 191.8C451.2 173.1 449.1 155.5 444.9000000000001 138.9L308.8000000000001 199.4z" />
+    <glyph glyph-name="creative-commons-nc-jp"
+      unicode="&#xF4EA;"
+      horiz-adv-x="496" d=" M247.7 440C103.6 440 0 323.2 0 192C0 55.6 111.8 -56 247.7 -56C377.9 -56 496 44.8 496 192C496 330.8 388.5 440 247.7 440zM248.3 -10.7C136.3 -10.7 44.7 81.8 44.7 192C44.7 213.1 47.7 233.2 53.7 252.3L180.7 195.8H152.8V157.2H210.9L216.6 145.4V126.7H152.8V88H216.6V32H278.3V88H342.5V123.7L423.5 87.6C422 85.4 366.3999999999999 -10.7 248.3 -10.7zM335.9 126.6H278.3V145.3L281.2 150.9L335.8999999999999 126.6zM342.4 178V195.8H303.8L366.8 311.8H301L257.6 215.8L234.6 226L195 311.7H129.2000000000001L156.5000000000001 260.7L74.6000000000001 297.2C102.4000000000001 341.3 157.2000000000001 395.3 248.3000000000001 395.3C361.1 395.3 451.3000000000001 305.3 451.3000000000001 191.9C451.3000000000001 170.9 448.6000000000001 151.3 443.4000000000001 132.9L342.4000000000001 178z" />
+    <glyph glyph-name="creative-commons-nc"
+      unicode="&#xF4E8;"
+      horiz-adv-x="496" d=" M247.6 440C387.4 440 496 332.1 496 192C496 44.8 377.5 -56 247.6 -56C113.1 -56 0 54.8 0 192C0 324.9 104.7 440 247.6 440zM55.8 258.9C48.4 238.5 44.7 216.2 44.7 192C44.7 81.1 136.8 -10.4 248.4 -10.4C370.8 -10.4 425.6 91.4 426.9 93.7000000000001L333.5 135.3000000000001C325.8 98.2000000000001 292.3 82.3000000000001 265.3 79.9000000000001V41.8000000000001H236.5V80C209 80.3 183.9 90.2 161.2 109.7L195.3 144.2C227 114.8 281.7 112.4 281.7 146.4C281.7 152.6 279.5 157.6 275.1 161.5C260.9 167.5 273.3 161.6 55.8 258.9zM248.4 395.7C210 395.7 136 387 77.9 302.7L172.7 260.2C182.7 291.5 213.1 303.1 236.5 304.5V342.6H265.3V304.5C288 303.3 308.7 295.6 327.3 281.5L295 248.3C252.3 278.2000000000001 211.5 256.3 225 237.2C278.4 213.1 268.8 217.4 318 195.6L445.1 138.9C449.2000000000001 156.3 451.3 174.0000000000001 451.3 192C451.3 249.0000000000001 431.5 297 392 335.9000000000001C352.7 375.8000000000001 304.8 395.7000000000001 248.4 395.7000000000001z" />
+    <glyph glyph-name="creative-commons-nd"
+      unicode="&#xF4EB;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM342.4 251V208.5H162.1V251H342.4zM342.4 171.2V128.7H162.1V171.2H342.4z" />
+    <glyph glyph-name="creative-commons-pd-alt"
+      unicode="&#xF4ED;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM135.5 124.7V262H203.7C237.4 262 254.2 246.5 254.2 215.5C254.2 206.5 251.2 169 197.1 169H170.1V124.7H135.5zM169.6 236.3V194.7H198.8C226.7 194.7 228.8 236.3 197.9 236.3H169.6zM263.5 124.7V262H316.7C338.1 262 386.7 256.8 386.7 193.4C386.7 129.9 338.1 124.8 316.7 124.8H263.5zM297.6 233.2V153.5H317.5C341.5 153.5 352 168.8 352 193.4C352 235.4 320.8 233.3 317 233.3L297.6 233.2z" />
+    <glyph glyph-name="creative-commons-pd"
+      unicode="&#xF4EC;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 328.9 0 192C0 55 111 -56 248 -56S496 55 496 192C496 328.9 385 440 248 440zM248 -9.5C108.8 -9.5 12.2 128.5 57.8 258.4L136.6 223.3C134.5 212.8 133.3 201.8 133.3 190.4C133.3 91.4 207.2 63.5 253.7 63.5C276.6 63.5 307.2000000000001 70.2 333.1 93L297 136.9C291.5 130.6 279.4 120.2 260.7 120.2C222.9 120.2 207 160.1 206.8 192.1C437.2 89.5 423.3 95.6 424.7 95.3C390.4 32.9 324.1 -9.5 248 -9.5zM442.2 140.5L218.2 240.5C237 274.5 273.1 271.2 292.9 251.5L333.3 293.1C306.2 316.4 275.3 320.6 255.2 320.6C207.8 320.6 174.3 300.1 154.5 269L79.5999999999999 302.4C115.6999999999999 357.3 177.6999999999999 393.6 248.1 393.6C359.2 393.6 449.5999999999999 303.2 449.5999999999999 192.1C449.5999999999999 174.1 447.2 156.7000000000001 442.7999999999999 140.1C442.4999999999999 140.2000000000001 442.3999999999999 140.3 442.1999999999999 140.5z" />
+    <glyph glyph-name="creative-commons-remix"
+      unicode="&#xF4EE;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM410.1 187.6L415 185.4V115.4C407.8 111.8 351.6 87.9 347.7 86.6C341.2 88.4 234 133.4 210.4 142.8L146.2 116.2L82.9 143.7V207.5L142.2 232.3C141.5 233 141.8 227.3 141.8 302.7000000000001L209.1 332.4000000000001L361 269.5V207.9L410.1 187.6zM339.7000000000001 106.1V149.9H339.3000000000001V151.7000000000001L225.5000000000001 198.2000000000001V153L339.3000000000001 106.1V106.5L339.7000000000001 106.1zM347.2000000000001 163.7000000000001L387.1 180.1L350.3 195.6L311.3 179.2000000000001L347.2 163.7000000000001zM399.5000000000001 125.6V168.6L355.2 150V106.6L399.5 125.6z" />
+    <glyph glyph-name="creative-commons-sa"
+      unicode="&#xF4EF;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM137.7 227C150.7 310.9 218.2 322.7 246.6 322.7C346.4 322.7 374.1 240.2 374.1 188.5C374.1 124.9 333.1 55.6 245.2 55.6C206.3 55.6 146.1 75.6 135.8 152.6H198.3C199.8 122.5 217.9 107.4 252.8 107.4C276.1 107.4 310.8 125.6 310.8 190.2000000000001C310.8 272.7000000000001 261.7 270.8000000000001 254.1 270.8000000000001C221 270.8000000000001 202.4 256.2000000000001 198.3 227.0000000000001H216.5L167.3 177.8000000000001L118.3 227.0000000000001H137.7z" />
+    <glyph glyph-name="creative-commons-sampling-plus"
+      unicode="&#xF4F1;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM355.4 189.7C350.7 189.7 346.4 186.9 344.7 182.5L340.7 173L329.7 265.8C328 279.7000000000001 307.7 279.2000000000001 306.6 265.4L302.3 214L297.1 282.8C296 297.1 275 297 273.9 282.8L270.4 237.9L264.5 332.2C263.6 346.7 242.2 346.6 241.3 332.2L236.2 248.5L231.9 314.8C231 329.2000000000001 209.7 329.2000000000001 208.7 314.8L203.4 234.6L199.3 291.6C198.2 305.9000000000001 177.3 305.9000000000001 176.1 291.8L168.4 202L166.6 214.2C164.9 225.6 149.5 227.8 144.6 217.5L131.4 189.8H87.5V166.6H138.8C143.2 166.6 147.2 169.1 149.2 173L159.9 99.9C161.9 86.4 181.8 86.9 183 100.6L186.8 144.2L192.5 65.9C193.6 51.5 214.8 51.7 215.7 66L220.3 136.4L225.1 63.1C226 48.7 247.4 48.7 248.3 63.2L253.2 143.7L257.7 71.9C258.6 57.6 279.8 57.4 280.9 71.7L285.5 130.3L290.4 65.9C291.5 51.6 312.4 51.7 313.5 65.8L320.3 148.8L323 126.5C324.4 114.6999999999999 340.7 112.3999999999999 345.3 123.3999999999999L363.3 166.7999999999999H413.8V190L355.4000000000001 189.7zM277.4 184.5H255.5V162.6C255.5 158.5 252.2 155.1 248 155.1C243.9 155.1 240.5 158.4 240.5 162.6V184.5H218.6C214.5 184.5 211.1 187.8 211.1 192C211.1 196.1 214.5 199.5 218.6 199.5H240.5V221.4C240.5 225.5 243.9 228.9 248 228.9S255.5 225.6 255.5 221.4V199.5H277.4C281.5 199.5 284.9 196.2 284.9 192C284.9 187.9 281.5 184.5 277.4 184.5z" />
+    <glyph glyph-name="creative-commons-sampling"
+      unicode="&#xF4F0;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM252 342.1C254.8 342.4 263.5 341.1 263.5 330.6L270.1 223.4L275 282.7C275 288.7 279.7 293.3 285.6 293.3C291.5 293.3 296.2000000000001 288.6 296.2000000000001 282.7C296.2000000000001 280.2 295.7000000000001 288.4 301.9000000000001 201.2L307.7000000000001 265.4C308.0000000000001 268.3 310.6 274.7 317.9000000000001 274.7C321.7000000000001 274.7 327.8 272.4 328.5000000000001 265.8L340.0000000000001 169.3L345.3000000000001 182.1C347.1000000000001 186.5 350.5000000000001 188.7 355.5000000000001 188.7H413.5000000000001V167.4H362.6000000000001L344.4000000000001 123.1C340.5000000000001 113.2 324.9000000000001 114 323.6000000000001 126.2L319.6000000000001 158.1L312.1000000000001 65.5C311.8000000000001 62.5 309.1000000000001 56.2 301.9000000000001 56.2C298.9000000000001 56.2 292.1000000000001 58.3 291.3000000000001 65.5C291.3000000000001 67.4 291.9000000000001 59.7 285.1000000000001 143.4L279.8000000000001 71.2C278.7000000000001 66.4 275.0000000000001 61.9 269.2000000000001 61.9C266.3000000000001 61.9 259.4000000000001 63.9 258.6 71.2C258.6 73.1 259.1 64.5 252.8 158.9L247 64.1C247 57.8 243.4 51.7 236.4 51.7C231.2 51.7 225.8 55.8 225.8 63.7L220 151.4C214.2 58.9 214.7 67.4 214.7 65.5C213.6 60.7 209.9 56.2 204.1 56.2C201.1 56.2 194.3 58.3 193.5 65.5C193.5 66.2 193.1 66.6 193.1 68.1L186.9 156.7000000000001L182 100C181.3 93.5 175.3 90.7 171.4 90.7C165.6 90.7 161.8 94.8 160.8 99.6L149.7 176C147.7 172 146.2 167.6 138.6 167.6H87.2V188.9H132L145.7 216.8000000000001C150.1 226.7000000000001 163.9 224 165.6 214.1000000000001L168.7 193.7000000000001L177.1 291.6C177.1 297.6 181.9 302.2000000000001 187.7 302.2000000000001C188.2 302.2000000000001 198.3 302.4000000000001 198.3 289.8000000000001L203.2 220.7000000000001L209.8 313.3000000000001C209.8 323.4000000000001 219.3 323.9000000000001 220 323.9000000000001C220.6 323.9000000000001 230.6 323.2000000000001 230.6 313.3000000000001L235.9 232.7000000000001L242.1 330.6C242.2 331.7000000000001 241.5 340.9000000000001 252 342.1z" />
+    <glyph glyph-name="creative-commons-share"
+      unicode="&#xF4F2;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM349.4 262.9C357.2 262.9 363.1 256.8 363.1 249.2V66.7C363.1 59 357 53 349.4 53H214.3C206.6 53 200.6 59 200.6 66.7V120.7H146.6C138.8 120.7 132.9 126.7 132.9 134.4V316.9C132.9 325.1 139.5 329.6 145.3000000000001 330.6H281.7000000000001C289.4000000000001 330.6 295.4000000000001 324.6 295.4000000000001 316.9V262.9H349.4000000000001zM159.9 147.7H200.6V249.1C200.6 256.5 206.4 261.7 212.6 262.8H268.4000000000001V303.1H159.9V147.6999999999999zM336.1 235.8H227.6V80.4H336.1V235.8z" />
+    <glyph glyph-name="creative-commons-zero"
+      unicode="&#xF4F3;"
+      horiz-adv-x="496" d=" M247.6 440C389.4 440 496 329.9 496 192C496 44.9 377.5 -56 247.6 -56C113.6 -56 0 53.5 0 192C0 324.9 104.7 440 247.6 440zM248.4 395.3C130.2 395.3 44.7 297.4 44.7 192C44.7 82.2 135.9 -10.8 248.4 -10.8C351.6 -10.8 451.2 70.3 451.2 192C451.3 305.8 361 395.3 248.4 395.3zM248 334.8C166.1 334.8 145.5 257.5 145.5 192C145.5 126.5 166.1 49.2 248 49.2S350.5 126.5 350.5 192C350.5 257.5 329.9 334.8 248 334.8zM248 280.9C251.3 280.9 254.4 280.4 257.2 279.7000000000001C263.1 274.6 266 267.6 260.3 257.8L205.8 157.6C204.1 170.3 203.9 182.7000000000001 203.9 192C203.9 220.8000000000001 205.9 280.9000000000001 248 280.9000000000001zM288.8 234.7C291.7 219.3 292.1 203.3 292.1 192C292.1 163.1 290.1 103.1 248.0000000000001 103.1C234.5000000000001 103.1 215.4 110.8 227.9000000000001 129.5L288.8 234.7z" />
+    <glyph glyph-name="creative-commons"
+      unicode="&#xF25E;"
+      horiz-adv-x="496" d=" M245.83 233.13L212.61 215.85C203.18 235.43 187.37 235.78 185.15 235.78C163.02 235.78 151.93 221.17 151.93 191.94C151.93 168.37 161.14 148.1 185.15 148.1C199.62 148.1 209.8 155.19 215.72 169.36L246.27 153.86C240.1 142.35 220.58 114.88 181.17 114.88C158.57 114.88 107.21 125.2 107.21 191.93C107.21 250.62 150.21 268.99 179.84 268.99C210.56 269 232.54 257.04 245.8300000000001 233.13zM388.88 233.13L356.1 215.85C346.6 235.62 330.38 235.78 328.2000000000001 235.78C306.0600000000001 235.78 294.98 221.17 294.98 191.94C294.98 168.39 304.2100000000001 148.1 328.2000000000001 148.1C342.6500000000001 148.1 352.85 155.19 358.7400000000001 169.36L389.7400000000001 153.86C387.6400000000001 150.11 368.3500000000001 114.88 324.6500000000001 114.88C301.9600000000001 114.88 250.6900000000001 124.75 250.6900000000001 191.93C250.6900000000001 250.6 293.6600000000001 268.99 323.3200000000001 268.99C354.0300000000001 269 375.9000000000001 257.04 388.8800000000001 233.13zM247.56 439.95C104.74 439.95 0 324.89 0 191.95C0 53.46 113.6 -56.05 247.56 -56.05C377.49 -56.05 496 44.82 496 191.95C496 329.82 389.38 439.95 247.56 439.95zM248.43 -10.86C135.89 -10.86 44.73 82.18 44.73 191.95C44.73 297.37 130.16 395.2200000000001 248.45 395.2200000000001C360.98 395.2200000000001 451.27 305.76 451.27 191.96C451.26 70.27 351.59 -10.86 248.43 -10.86z" />
+    <glyph glyph-name="critical-role"
+      unicode="&#xF6C9;"
+      horiz-adv-x="445.64" d=" M224.82 448C225.08 447.85 441.39 323.49 441.94 323.28C444.98 322.1 445.64 319.82 445.64 316.7200000000001C445.57 233.27 445.58 149.82 445.63 66.36C445.63 63.59 444.65 61.93 442.25 60.58C420.88 48.59 234.39 -57.71 223.32 -64H220.32C141 -18.34 2.08 61.44 1.93 61.52C0.64 62.26 -0.03 63.27 0.05 64.76C0.09 65.63 0.02 290.7 0 317.86C0 320.3 0.89 321.65 2.93 322.79C26.19 335.89 212.2 442.02 223.07 448H224.82zM214.4 427.58L214.18 427.74C149.43 390.88 84.69 354 19.95 317.13C19.99 317.01 20.03 316.9 20.08 316.78C30.27 312.94 40.47 309.0900000000001 50.94 305.14C43.23 299.15 42.62 299.11 40.29 300.01C40.19 300.05 16.12 309.29 13.49 310V79.58C14.37 80.9900000000001 77.56 190.49 77.62 190.59C79.24 193.41 80.65 192.51 86.74 192.1100000000001C88.14 192.0200000000001 88.22 191.8900000000001 87.52 190.6900000000001C46.33 119.3600000000001 51.12 127.7000000000001 20.04 73.7500000000001C19.23 72.3500000000001 19.43 72.6200000000001 21.29 72.6200000000001C249.02 72.6200000000001 197.69 72.6200000000001 207.79 72.5900000000001C209.23 72.5900000000001 209.48 72.8200000000001 209.49 74.2300000000001C209.5 77.1900000000001 209.5 80.1500000000001 209.49 83.1100000000001C209.49 84.4500000000001 211.85 83.9200000000001 191.12 84.1200000000001C183.66 84.1900000000001 176.98 87.3400000000001 169.74 96.8200000000001C162.36 106.4800000000001 155.12 116.2500000000001 147.89 126.03C145.61 129.11 144.44 128.41 131.13 128.41C129.38 128.41 129.35 128.41 129.37 126.59C129.66 100.3800000000001 129.52 101.3200000000001 130.41 93.9300000000001C130.93 89.5600000000001 132.57 89.7300000000001 140.1 89.1200000000001C143.24 88.8600000000001 143.98 85.0400000000001 140.62 84.2000000000001C139.05 83.8100000000001 109.02 83.6900000000001 106.95 84.3000000000001C104.68 84.9600000000001 104.4 88.3800000000001 107.25 89.0300000000001C110.54 89.7900000000001 113.41 88.2200000000001 113.91 93.4700000000001C115.21 107.1300000000001 115.08 102.5100000000001 115.01 172.8900000000001C115 183.7100000000001 114.66 185.4700000000001 109.65 186.4400000000001C108.43 186.6800000000001 106.11 186.6000000000001 104.96 186.9900000000001C102.08 187.9600000000002 102.96 191.8300000000001 106.73 191.8400000000002C140.4 191.8700000000001 152.81 192.9100000000002 162.79 186.9800000000001C170.53 182.3700000000001 174.77 175.5000000000001 175.3 166.5800000000002C176.18 151.9900000000002 168.79 144.2300000000001 160.31 133.9900000000001C159.63 133.1700000000001 159.59 132.6100000000001 160.27 131.7700000000001C162.87 128.5200000000001 165.32 125.1400000000001 167.98 121.9400000000001C195.54 88.7100000000001 192.09 91.4000000000001 209.26 88.8800000000001C210.15 88.7500000000001 210.28 89.3000000000001 210.27 90.0300000000001C210.25 93.7000000000001 210.28 97.3600000000001 210.25 101.0300000000001C210.24 102.0500000000001 210.57 102.4600000000001 211.66 102.2900000000001C224.2 100.3800000000001 233.51 102.3600000000001 235.24 102.5900000000001C236.32 102.7400000000001 236.74 102.3900000000001 236.72 101.2600000000001C236.72 101.1500000000001 237.6 74.5700000000001 237.59 74.4600000000001C237.54 72.9400000000001 238.26 72.8400000000001 239.48 72.8400000000001C301.86 72.8600000000001 364.63 72.8600000000001 426.19 72.8600000000001C399.07 119.8900000000001 372.08 166.71 345.01 213.6700000000001C347.2699999999999 214.3300000000001 344.61 213.7000000000001 351.7 215.0600000000001C353.7299999999999 215.4500000000001 353.75 215.4700000000001 354.81 213.6200000000001C362.12 200.9800000000001 432.12 79.6600000000001 432.18 79.5600000000001V310.02C430.4599999999999 309.52 328.88 271.3 326.42 270.3400000000001C325.34 269.92 324.87 270.14 324.51 271.2200000000001C323.88 273.12 323.17 274.98 322.42 276.8400000000001C322.1 277.63 322.33 277.9700000000001 323.07 278.23C323.17 278.27 418.5999999999999 314.08 426.11 317C360.69 354.57 295.55 392 230.1 429.6C259.17 379.24 288.05 329.23 316.92 279.2100000000001C316.83 279.1 316.74 278.99 316.64 278.88C307.07 279.78 306.18 280.48 304.84 282.82C303.88 284.51 231.34 410.53 222.84 424.98C213.74 410.31 139.28 278.77 137.47 278.66C134.54 278.49 131.59 278.58 128.22 278.58C157.05 328.41 185.72 378 214.4 427.58zM266.33 297.6600000000001C268.18 297.7100000000001 270.03 298.1800000000001 271.87 298.51C273.56 298.8100000000001 274.4 298.3100000000001 274.4700000000001 296.5900000000001C274.4700000000001 296.48 274.54 277.5300000000001 273.61 276.1400000000001C272.74 274.8400000000001 271.73 274.9200000000001 271.01 276.3300000000001C266.05 286.0200000000001 277.23 285.99 231.89 288.3800000000001C231.19 288.4200000000001 230.89 288.1500000000001 230.92 287.4500000000001C230.92 287.3200000000001 234.64 165.47 234.65 165.34C234.67 164.4500000000001 235.17 164.1400000000001 235.86 163.8300000000001C238.78 162.5200000000001 241.82 161.41 244.56 159.78C251.87 155.4500000000001 255.94 148.9400000000001 256.97 140.47C258.41 128.67 254.2 104.7000000000001 224.76 103.33C222.01 103.2000000000001 196.5 102.2500000000001 190.62 126.5800000000001C185.96 145.84 198.88 159.28 210.5099999999999 162.98C212 163.4500000000001 212.4599999999999 164.24 212.4899999999999 165.6400000000001C212.5899999999999 171.2700000000001 215.4899999999999 272.74 216.1999999999999 286.99C216.25 288.0700000000001 215.5799999999999 288.1500000000001 214.8499999999999 288.1400000000001C182.5 287.62 178.0999999999999 288.48 174.63 279.62C172.21 273.4400000000001 170.49 278.3000000000001 170.68 279.3900000000001A1361.1 1361.1 0 0 0 173.99 297.4200000000001C174.39 299.5300000000001 175.42 300.0300000000001 177.42 299.2800000000001C183.01 297.1700000000001 184.14 297.5800000000001 214.67 297.3600000000001C216.4 297.3500000000001 216.45 297.4400000000001 216.49 299.2100000000001C217.17 326.7000000000001 217.07 321.8000000000001 217.46 328.7600000000001C217.53 330.0500000000001 217.05 330.9300000000001 215.83 331.5600000000001C210.23 334.4700000000001 207.08 339.1100000000001 206.93 345.4300000000001C206.58 360.2400000000001 224.65 367.1000000000001 234.31 356.9400000000001C241.15 349.7500000000001 240.11 338.0300000000001 231.86 332.7900000000001C230.2 331.7300000000001 229.55 330.4600000000001 229.64 328.4500000000001C229.67 327.8600000000001 229.53 332.7600000000001 230.62 298.4000000000001C230.65 297.5000000000001 231.05 297.2800000000001 231.86 297.2900000000001C231.96 297.2900000000001 254.87 297.3800000000001 266.33 297.6600000000001zM67.27 306.3C87.11 310.81 99.95 306.86 119.76 304.61C122.52 304.3 123.5 303.39 123.38 300.62C123.17 295.63 122.22 278.29 122.14 277.4700000000001C122.04 276.43 121.54 275.56 120.51 275.13C116.45 273.43 116.9 279.58 116.5 282.42C113.37 304.85 42.63 315.12 41.87 257.02C41.56 233.1 58.88 203.39 95.95 206.14C123.19 208.15 115 226.33 120.79 226.61C122.77 226.71 124.12 225.28 123.77 223.25C121.94 212.4 120.35 204.3 120.32 204.1C118.81 194.92 33.65 182.02 26.97 246.15C24.29 272.02 37.44 299.52 67.27 306.3zM147.26 218.63C140.76 218.66 134.27 218.63 127.77 218.67C125.81 218.68 124.99 220.28 125.11 220.46C127.49 224.21 131 219.54 130.97 226.6C130.89 252.35 131.18 264.59 131.2 266.7C131.23 270.12 130.67 271.35 127.88 271.64C120.88 272.36 124.77 275.01 126.77 275.02C138.61 275.12 149.39 275.2 156.82 274.3C165.59 273.23 173.53 261.67 164.75 251.68C162.77 249.43 160.72 247.26 158.61 244.95C159.56 243.8 165.51 236.13 175.89 225.27C178.55 222.49 182.04 221.76 185.77 222.14C186.99 222.26 187.88 222.89 188 224.26C188.3 227.68 188.26 219.53 188.45 264.84C188.47 270.49 188.11 271.42 185.22 271.67C181.27 272.02 181.19 273.93 184.53 275.04C184.65 275.08 203.51 275.13 203.62 275.13C203.94 275.13 208.11 274.6 204.67 271.75C204.62 271.7 204.51 271.7200000000001 204.43 271.7100000000001C200.82 271.4500000000001 200.49 270.73 200.47 267.0900000000001C200.2 223.16 200.54 226.86 200.88 224.27C200.99 223.43 201.15 222.04 205.98 222.13C208.47 222.17 209.84 218.76 205.96 218.73C195.59 218.65 185.22 218.7 174.85 218.66C164.18 218.62 161.38 224.86 150.64 239.48C149.04 241.6600000000001 142.33 241.8400000000001 142.44 239.85C143.32 223.38 142.44 222.07 146.43 222.18C151.18 222.28 151.16 218.61 147.26 218.63zM422.23 228.78C421.0200000000001 221.65 422.4000000000001 218.4 416.93 218.44C355.38 218.86 369.11 218.66 366.2100000000001 218.75C364.99 218.79 363.7800000000001 219.19 362.5800000000001 219.48C360.0500000000001 220.08 364.0600000000001 220.71 362.2000000000001 225.08C360.7700000000001 228.45 359.4200000000001 231.86 358.0900000000001 235.27C357.7100000000001 236.25 357.1500000000001 236.71 356.05 236.71C352.93 236.71 348.7800000000001 237.15 341.4700000000001 236.64C340.8900000000001 236.6 340.0700000000001 236.09 339.85 235.58C338.2700000000001 231.96 336.7800000000001 228.29 335.3400000000001 224.62C334.0700000000001 221.39 343.2000000000001 223.3 347.5300000000001 222.46C350.5000000000001 221.89 352.06 218.74 348.1900000000001 218.73C339.4000000000001 218.7 330.6100000000001 218.67 321.8200000000001 218.68C318.9000000000001 218.68 318.7300000000001 221.83 321.0800000000001 221.89C323.7500000000001 221.96 325.8200000000001 223.02 327.0000000000001 225.36C328.5000000000001 228.33 329.8000000000001 231.4 331.1100000000001 234.45C349.2900000000001 276.59 348.1700000000001 274.62 349.5300000000001 276.06C350.5300000000001 277.12 351.6000000000001 277.11 352.5600000000001 276.02C355.4900000000001 272.68 370.9600000000001 231.31 376.1800000000001 224.1C378.1400000000001 221.4 381.9200000000001 222.12 382.5400000000001 222.09C386.1500000000001 221.96 386.5100000000001 223.2000000000001 386.6700000000001 226.38C386.7600000000001 228.2500000000001 386.7500000000001 225.2100000000001 386.7400000000001 267.62C386.7400000000001 272.0800000000001 384.3800000000001 271.36 381.1900000000001 271.8900000000001C380.9300000000001 271.9300000000001 378.6300000000001 272.5200000000001 381.1100000000001 274.9500000000001C381.3200000000001 275.1500000000001 380.2200000000001 275.1900000000001 402.8100000000001 275.1C405.1300000000001 275.0900000000001 408.1300000000001 272.35 401.6000000000001 271.6500000000001C399.7900000000001 271.4600000000001 399.0200000000001 270.6500000000001 398.9400000000001 268.8200000000001C398.8700000000001 267.1900000000001 398.7500000000001 229.9300000000001 399.2300000000001 227.6100000000001C399.5800000000001 225.8800000000001 400.9600000000001 225.2300000000001 402.4600000000001 225.1800000000001C415.7100000000001 224.75 417.3800000000001 224.7400000000001 418.5000000000001 228.5900000000001C420.1700000000002 234.3700000000001 422.6300000000001 231.1100000000001 422.2300000000002 228.7800000000001zM317.55 164.41C313.31 164.41 313.13 167.8 316.94 167.82C352.85 167.98 345.05 167.44 354.13 168.47C355.81 168.66 356.51 168.23 356.38 166.58C356.12 163.19 355.74 159.8 355.35 156.42C355.1 154.2599999999999 352.1500000000001 153.81 351.9500000000001 156.5699999999999C351.5700000000001 161.88 349.8000000000001 161.0199999999999 336.3200000000001 161.6499999999999C334.7400000000001 161.7199999999999 334.6800000000001 161.6699999999999 334.6800000000001 160.13V144.0099999999999C334.6800000000001 142.36 334.6800000000001 142.4099999999999 336.3000000000001 142.5399999999999C339.4200000000001 142.7899999999999 346.6100000000001 142.1999999999999 351.9900000000001 144.0599999999999C352.4600000000001 144.2199999999999 355.2900000000001 145.8499999999999 355.0600000000001 142.2999999999999C355.0500000000001 142.0899999999999 354.3000000000001 131.9499999999999 353.8800000000001 130.9099999999999C353.3500000000001 129.6199999999999 352.0000000000001 129.3999999999999 351.3000000000001 130.5899999999999C350.1300000000001 132.5399999999999 351.3000000000001 135.6699999999999 347.5900000000001 135.8899999999999C332.1700000000001 136.7899999999999 334.6800000000001 138.44 334.6800000000001 129.8999999999999C334.6800000000001 117.6499999999999 333.9200000000001 113.7899999999999 338.5700000000001 113.6599999999999C355.2100000000001 113.1799999999999 352.9700000000001 113.6599999999999 355.0000000000001 119.3699999999999C355.8400000000001 121.7399999999999 358.5000000000001 121.1399999999999 358.1800000000001 118.7899999999999C357.7400000000001 115.5799999999999 357.3300000000001 112.3599999999999 356.9500000000001 109.1499999999999C356.9100000000001 108.7899999999999 356.79 106.7499999999999 352.29 106.7599999999999C315.13 106.8399999999999 317.75 106.9499999999999 317.0800000000001 107.0699999999999C314.36 107.5799999999999 314.8800000000001 110.11 317.3000000000001 110.5199999999999C318.4000000000001 110.7099999999999 321.3300000000001 109.9799999999999 321.4600000000001 113.0799999999999C323.9000000000001 169.3 321.3900000000001 164.42 317.5500000000001 164.4099999999999zM317.14 273.93C319.6 273.32 320.27 272.17 320.09 269.28C319.76 263.9799999999999 319.75 260.3 319.54 259.5899999999999C318.88 257.36 316.39 257.4699999999999 316.2 259.86C315.82 264.67 313.15 267.68 308.63 269.01C282.35 276.74 275.82 253.55 281.46 238.79C287.34 223.38 303.45 222.87 310.32 225.01C316.24 226.86 316.2 231.51 317.23 232.59C318.4600000000001 233.89 319.48 234.43 320.35 231.49C320.38 231.39 320.92 219.6 314.38 218.74C312.78 218.53 295 215.05 281.7 222.13C260.69 233.32 264.96 257.6 274.82 267.46C288.85 281.52 314.73 274.52 317.14 273.93zM288.8 167.86C292.08 167.86 292.4600000000001 164.86 288.9600000000001 164.43C286.35 164.11 283.99 164.85 283.9600000000001 158.97C283.9500000000001 156.99 283.7700000000001 129.92 284.36 117.5200000000001C284.4700000000001 115.23 285.51 114.0000000000001 287.8 113.8700000000001C309.8300000000001 112.6600000000001 302.75 115.5200000000001 306.5900000000001 120.21C308.42 122.4500000000001 309.35 119.3700000000001 309.35 119.1300000000001C309.7000000000001 105.5100000000001 305.3900000000001 106.7400000000001 304.1600000000001 106.7300000000001C304.06 106.7300000000001 266.0800000000001 106.9100000000001 265.98 106.9200000000001C264.05 107.1500000000001 263.92 109.9100000000001 265.56 110.3000000000001C267.55 110.7800000000001 270.5 109.9000000000001 270.69 113.1000000000001C271.65 128.9700000000001 271.26 157.7500000000001 271.03 160.9100000000001C270.76 164.6800000000001 268.23 164.1800000000001 265.35 164.6200000000001C262.88 165.0000000000001 263.36 167.8400000000001 265.69 167.8400000000001C267.16 167.8600000000001 283.68 167.8700000000001 288.8 167.8600000000001zM257.17 225.65C257.24 221.57 260.0300000000001 222.19 263.18 222.07C265.79 221.97 265.71 218.66 263.11 218.64C256.63 218.6 249.4100000000001 218.66 241.5 218.7C237.66 218.72 238.12 222.05 241.54 222.07C246.03 222.1 244.78 220.46 244.95 267.61C244.97 272.69 241.68 271.15 240.23 271.84C237.65 273.07 238.87 274.93 240.64 274.99C241.93 275.04 260.83 275.4 261.81 274.78C262.94 274.06 263.68 273.13 261.39 271.92C260.4 271.4 257.53 272.2 257.24 269.45C257.2200000000001 269.24 256.42 267.82 257.17 225.65zM220.26 -48.62C221.4 -49.28 222.38 -49.28 223.52 -48.62C240.51 -38.83 405.49 54.95 420.94 63.89C420.8 64.32 432.2 64.07 239.42 64.16C238.2 64.16 237.85 63.79 237.89 62.6C237.89 62.4999999999999 239.14 18.09 239.11 12.22C239.09 9.64 238.49 6.9999999999999 237.75 4.51C237.2 2.68 238.13 5.01 224.25 -27.72C223.52 -29.4400000000001 223.21 -29.93 222.28 -27.64C218.09 -17.3000000000001 214 -6.9200000000001 209.71 3.3699999999999C208.25 6.8699999999999 207.47 10.3699999999999 207.71 14.16C207.87 16.6199999999999 208.51 30.28 209.22 62.18C209.26 64.1299999999999 209.23 64.1399999999999 207.26 64.1399999999999H24.26C26.84 62.5099999999999 202.58 -38.4300000000001 220.26 -48.6200000000001zM129.36 140.13C129.36 137.73 129.72 137.34 132.12 137.1C143.66 135.93 153.16 133.36 157.76 144.42C163.77 158.88 160.42 178.8300000000001 145.28 183.26C143.27 183.85 129.32 186.02 129.34 181.75C129.39 173.74 129.35 170.17 129.36 140.13zM235.11 155.18C235.11 153.05 236.18 116.5 236.2 116.05C236.54 106.11 210.62 110.28 210.97 118.64C211.0500000000001 120.66 212.34 156.06 212.07 158.07C197.97 150.63 197.65 117.86 218.51 109.27C226.9400000000001 105.8 236.05 108.67 240.9000000000001 116.34C245.8100000000001 124.1 247.7400000000001 145.81 235.4700000000001 155.3C235.35 155.25 235.23 155.21 235.11 155.18zM222.83 353.2200000000001C213 353.25 213.1 338.4700000000001 222.76 338.35C232.35 338.24 232.86 353.19 222.83 353.2200000000001zM142.68 249.35C142.7 247.55 143.09 246.95 144.85 246.77C158.47 245.38 157.36 257.76 157.01 260.13C155.32 271.35 142.63 270.33 142.66 267.94C142.71 263.44 142.63 254.26 142.68 249.35zM354.99 242.95C352.9600000000001 248.23 350.99 253.34 348.89 258.79C346.73 253.31 344.73 248.22 342.66 242.95H354.99z" />
+    <glyph glyph-name="css3-alt"
+      unicode="&#xF38B;"
+      horiz-adv-x="384" d=" M0 416L34.9 20.2L192 -32L349.1 20.2L384 416H0zM313.1 336L308.3 288.7L193 239.4L192.7 239.3H304.2L291.4 92.7000000000001L193.2 64.0000000000001L94.4 93.2000000000001L88 167.1H136.9L140.1 128.8L192.7 115.5L247.4 130.9L251.1 192.5L84.8 193V193.1L84.6 193L81 239.3L193.1 286L199.6 288.7H76.7L70.9 336H313.1z" />
+    <glyph glyph-name="css3"
+      unicode="&#xF13C;"
+      horiz-adv-x="512" d=" M480 416L416 48L192.7 -32L0 48L19.6 142.8H101.6L93.6 102.2L210 57.8L344.1 102.2L362.9000000000001 199.3H29.5L45.5 281.3H379.2L389.7 334H56.3L72.6 416H480z" />
+    <glyph glyph-name="cuttlefish"
+      unicode="&#xF38C;"
+      horiz-adv-x="440" d=" M344 142.5C326.5 110.9 286.6 88 248 88C191.4 88 144 135.4 144 192S191.4 296 248 296C286.6 296 326.5 273.1 344 241.5C357.7 292.4 385.7 334.8 431 359.3C385.7 408.9 320.5 440 248 440C111 440 0 329 0 192S111 -56 248 -56C320.5 -56 385.7 -24.9 431 24.7C385.7 49.2 357.7 91.6 344 142.5z" />
+    <glyph glyph-name="d-and-d-beyond"
+      unicode="&#xF6CA;"
+      horiz-adv-x="640" d=" M285.96 232.59C285.96 238.28 287.54 247.99 295.57 253.1C295.44 253.1 291.89 253.88 286.6 251.98C288.63 255.03 296.57 259.83 297.01 259.83C288.84 285.88 259.02 282.74 264.81 282.74C233.89 282.74 232.17 282.4 224.92 286.75C225.05 285.99 225.4400000000001 278.59 234.5300000000001 271.85C236.13 270.57 237.4100000000001 269.45 237.4100000000001 265.28V226.51C237.4100000000001 222.34 236.61 221.22 234.6900000000001 220.1C234.57 220.03 227.17 215.64 226.8400000000001 215.45H261.92C271.94 215.45 279.3300000000001 216.98 287.87 224.1C287.23 229.07 288.0300000000001 233.55 288.67 236.12C288.68 236.28 286.92 234.68 285.9600000000001 232.59zM256 231.79V266.39C260.58 266.39 279.07 269.73 279.07 249.09C279.07 228.37 260.7 231.79 256 231.79zM360.77 223.14C361.5 224.6 362.57 228.18 360.61 232.11C361.33 231.99 366.22 231.63 366.22 227.62C366.22 224.74 363.33 223.46 360.77 223.14zM375.35 215.45H375.03C378.62 219.76 378.44 227.39 372.79 231.79C373.96 231.79 392.49 228.59 392.49 249.09C392.49 269.82 374.13 266.39 369.42 266.39V262.06C364.03 262.8300000000001 361.97 261.79 361.89 261.74C363.97 263.5 366.38 264.3 367.98 264.62C360.93 266.2200000000001 354.36 262.2200000000001 353.4 261.1C354.2 262.86 355.8 264.4600000000001 356.92 265.5900000000001C354.68 264.79 352.59 263.67 350.83 262.55C350.83 267.73 351.09 270 347.95 272C338.85 278.57 338.46 286.17 338.34 286.9C345.41 282.66 346.03 282.89 378.23 282.89C410.9 281.3300000000001 412.03 253.06 412.03 249.4100000000001C412.04 242.7800000000001 408.71 215.45 375.35 215.45zM363.97 234.84C361.57 234.84 359 234.36 359 234.36C358.5199999999999 234.84 355.32 237.24 353.87 237.56C357.8999999999999 233.28 354.33 227.73 350.83 230.35V246.05C351.4699999999999 246.85 352.1099999999999 247.81 352.9099999999999 248.61C354.6699999999999 250.69 357.5599999999999 251.97 360.4399999999999 251.97C362.1999999999999 251.97 363.9599999999999 251.49 365.0899999999999 250.53L366.0499999999999 249.89L366.8499999999999 250.69C367.3299999999999 251.17 368.4499999999999 251.65 369.5699999999999 252.13V233.71C367.8199999999999 234.52 366.0599999999999 234.84 363.9699999999999 234.84zM360.77 256.62C354.84 257.42 345.71 253.42 341.07 247.65C342.03 251.49 346.2 257.74 351.32 260.63C351.32 260.63 348.76 257.43 349.88 256.95C351.48 256.15 355.65 262.72 361.09 262.88C361.09 262.88 357.08 260.96 357.89 259.52C358.53 258.56 361.25 260.8 365.9 260.8C371.67 260.8 376.79 257.28 379.2 254.55C375.19 255.67 367.67 253.75 365.42 251.83C365.1600000000001 252.03 353.6600000000001 260.75 343.4700000000001 236.29C338.6900000000001 240.12 339.0300000000001 239.99 337.06 240.78C341.39 246.85 350.36 256.14 360.77 256.62zM298.29 274.57C298.09 276.87 298.34 294.36 318.32 293.47C329.5299999999999 292.83 334.98 285.14 334.98 276.97C334.98 272.64 332.74 266.88 329.53 263.19C327.32 265.4 323.97 267.85 321.84 271.04C325.68 276.65 324.08 285.4599999999999 317.19 285.4599999999999C312.86 285.4599999999999 309.34 280.9699999999999 310.78 275.53C310.14 273.13 309.82 269.92 310.3 267.52C305.33 270.08 303.73 273.45 302.77 276.49C301.49 273.93 300.69 270.4 301.65 267.04C301.66 266.72 298.77 269.28 298.29 274.57zM301.18 260.95C300.7 259.19 294.13 257.27 290.93 254.06C295.74 255.02 297.98 254.22 298.78 252.3C299.26 250.86 298.62 248.94 298.3 246.69C299.9 248.45 305.35 252.14 309.35 252.94C308.39 253.26 305.99 253.74 305.02 253.74C307.9 257.1 314.31 258.23 317.84 257.42C315.6 257.58 311.11 256.3 309.35 254.86C310.95 254.54 312.39 254.22 313.68 253.74C311.6 252.94 308.87 250.38 307.91 247.65C314.94 252.61 320.98 242.49 314.96 239.48C315.76 239.32 317.68 239.48 318.48 239.96C318.16 238.84 316.56 236.92 315.44 236.6C318.32 236.6 322.49 238.52 323.61 241.25C323.61 241.25 321.85 240.61 321.05 241.41S321.37 245.74 321.37 245.74C319.09 242.81 317.95 247.05 320.09 249.91C319.13 250.23 316.57 250.55 315.44 250.39C318.64 251.51 325.85 252.15 326.65 250.71C327.29 249.59 325.69 247.35 325.69 247.35C329.7 247.85 333.95 246.22 332.42 242.22C335.3 243.66 337.87 248.15 337.23 252.63C336.9100000000001 251.67 335.63 250.23 334.35 249.91C334.5100000000001 251.35 333.3900000000001 252.15 332.43 252.47C334.13 262.0899999999999 317.81 266.7 318.33 276.3399999999999C317.37 275.06 316.57 271.37 317.53 269.29C320.25 266.0899999999999 326.18 262.56 327.62 257.1099999999999C325.06 263.5199999999999 312.56 268.4799999999999 313.04 277.3C311.44 275.7 310.48 269.45 311.76 266.2499999999999C314.16 264.81 316.25 262.4099999999999 316.57 260.1599999999999C314.33 265.2899999999999 305.2 266.2499999999999 302.63 272.3399999999999C301.99 270.0999999999999 302.31 267.3699999999999 303.59 265.6099999999999C303.59 265.6099999999999 301.35 266.41 296.54 266.2499999999999C298.13 265.5999999999999 301.5 262.7099999999999 301.18 260.95zM327.13 253.58C324.4099999999999 253.58 323.61 255.66 322.9599999999999 257.91C326.1699999999999 256.62 327.13 253.58 327.13 253.58zM362.05 211.77C363.97 210.01 368.62 208.73 371.02 209.85C367.13 202.93 347.95 202.32 347.95 216.26C345.07 213.38 345.87 208.89 347.95 206.97C345.71 207.61 342.18 210.01 341.54 214.34C340.23 224.39 345.94 220.8 331.13 232.44C326.32 236.12 328.0899999999999 239.01 327.12 240.93C326.0199999999999 243.14 320.14 245.06 322.63 249.42C322.4699999999999 247.82 323.5899999999999 246.54 325.19 245.9C326.95 245.26 328.39 245.74 330 244.94C331.76 243.82 330.9599999999999 241.1 332.24 239.97C333.36 239.17 336.41 240.29 338.81 238.21C341.37 236.13 346.98 231.48 349.38 229.56C353.7099999999999 226.04 358.19 230.04 356.75 234.21C361.24 231.65 361.72 224.28 358.0299999999999 221.71C368.6199999999999 219.3 371 231.75 363 233.08C370.2099999999999 233.72 376.4599999999999 228.75 376.4599999999999 222.35C376.1499999999999 215.93 369.58 210.81 362.0499999999999 211.77zM338.66 224.42C334.82 216.57 327.61 206.48 313.83 206.48C303.87 206.48 297.75 213.53 298.29 213.53C294.04 219.19 295.29 213.23 295.89 211.61C285 221.86 290.6 236.92 290.76 237.56C291.4 239.48 290.76 239.8 290.12 239.48C289.1600000000001 239.16 288.04 237.56 288.04 237.56C288.8400000000001 246.69 297.3300000000001 252.3 297.3300000000001 252.3L297.4900000000001 252.14C298.4500000000001 250.7 297.0100000000001 248.94 296.8500000000001 243.17C298.4500000000001 245.41 304.7000000000001 249.74 308.2200000000001 251.02C307.1000000000001 249.58 306.1400000000001 247.5 306.1400000000001 244.45C309.8500000000001 248.63 313.6500000000001 247.1 314.1500000000001 246.85C301.9700000000001 235 307.1000000000001 220.26 317.3500000000001 220.26C323.1200000000001 220.26 328.8800000000001 226.67 331.2900000000001 230.99C333.7100000000001 228.58 337.6100000000001 225.48 338.6600000000001 224.42zM354.52 189.8199999999999C280.58 189.8199999999999 277.05 90.4999999999999 354.2 90.4999999999999C432.09 90.4999999999999 428.27 189.8199999999999 354.52 189.8199999999999zM354.2 112.2799999999999C316.83 112.2799999999999 317.31 167.5499999999999 354.36 167.5499999999999C391.23 167.5499999999999 393.19 112.2799999999999 354.2 112.2799999999999zM484.9299999999999 186.7799999999999H524.18L516.81 178.4499999999999V93.2199999999999H495.5C491.49 105.8799999999999 450.64 138.2399999999999 446.96 148.81H446.64V101.3899999999999L454.01 93.2199999999999H415.08L422.29 101.5499999999999V178.4499999999999L414.92 186.94H446.48C449.36 177.49 486.21 150.41 491.66 136H491.98V178.4499999999999L484.9299999999999 186.7799999999999zM579.5999999999999 188.8599999999999C558.93 188.8599999999999 539.55 187.5799999999999 529.3 186.7799999999999L536.67 178.6099999999999V101.3899999999999L529.3 93.2199999999999C539.7099999999999 92.4199999999999 560.2199999999999 91.1399999999999 580.88 91.1399999999999C623.01 91.1399999999999 639.99 111.8099999999999 639.99 139.9999999999999C640 169.3199999999999 616.77 188.8599999999999 579.6 188.8599999999999zM564.55 113.2499999999999V166.6C594.62 169.94 611.3299999999999 162.8 611.3299999999999 140.3300000000001C611.3199999999999 114.72 589.8699999999999 110.08 564.55 113.2500000000001zM263.05 101.5499999999999L270.26 93.3799999999999H227.6499999999999L235.3399999999999 101.5499999999999L235.1799999999999 120.9299999999999L191.1199999999999 186.7699999999999H235.9799999999999L229.5699999999999 179.5599999999999L250.5599999999999 142.3899999999999H250.8799999999999L271.39 179.5599999999999L265.3 186.7699999999999H306.95L262.89 120.6099999999999L263.05 101.5499999999999zM199.93 114.5299999999999L185.83 93.3799999999999H185.99H104.61L111.98 101.55V178.61L104.61 186.78L178.14 186.94V186.78L192.24 165.79H139.85V150.89H177.02L162.92 129.74V129.58L139.85 129.74V114.36L199.93 114.53zM79.94 142.08C97.09 146.65 96.12 160.12 96.12 161.94C96.12 182.51 71.98 186.93 59.11 186.93H3.04L11.37 178.28V148.8H0L11.37 134.22V102.02L3.04 93.3700000000001C64.78 93.3700000000001 76.85 91.83 89.39 99.3000000000001C96.12 103.3100000000001 99.32 109.0700000000001 99.32 116.9200000000001C99.32 122.0500000000001 101.94 135.7100000000001 79.94 142.0800000000001zM38.61 169.64C58.59 169.64 68.25 170.49 68.25 160.51V157.47C68.25 145.39 49.29 148.66 38.61 148.66V169.64zM71.45 119.65C71.45 108.45 59.02 110.36 38.61 110.36V132.9499999999999C50.81 132.9499999999999 71.29 135.2299999999999 71.29 124.1399999999999V119.6499999999999H71.45z" />
+    <glyph glyph-name="d-and-d"
+      unicode="&#xF38D;"
+      horiz-adv-x="576" d=" M82.5 349.1C81.9 366.3 84.5 382.9 95.2 397.3C95.5 389.9 96.4 382.8 99.4 375.7C105.3 403.2 119.1 425 141.7 441.2C139.8 435.3 138.2 429.4 138.7 423.5C147.4 430.9 157.5 441.3 183.1 446.2C197.8 449 212.8 448.2 225.2 445.2C263.7 435.9 286.2 410.9 294.9 372.9C300.2 349.8 295.6 327.9 286.6 306.5C281.4 294.1 274.6 282.1 265.9 271.4C263.9 273.3 262 275.2000000000001 260.1 277C217.3 317.8 233.3 302.2 222.7 314.4C221.6 315.6 221.7 316.6 222.6 318C230.9 331.5 234.4 346.2 232.6 362C231.5 371.8 228.3 380.9 221.3 388.2C206.8 403.5 182.1 403.2 167.8 387.6C156.4 375.1 153.7 360.2 156.9 344C157.0999999999999 342.7 157.3 341.3 156.9 340.1C153.5 326.4 152.3 312.5 154.4 298.5C154.5 298 154.5 297.4 154.5 296.9C154.5 296.6 154.4 296.4 154.3 295.8C132.5 306.8 118.3 324.1 111.1 348C102.8 330.2000000000001 100 312.5 104.5 293.9C88.9 309.1 83.2 328.2 82.5 349.1zM552.1 225.9C540.5 237.5 527.1 246.3 512 252.5C499.2 257.7 486 260.4 472.1 259.6C462.1 259 452.5 256.5 443.1 253.2C440.6 252.3 438 251.6 435.4000000000001 251C430.5000000000001 249.8 428.1 254.1 430.7000000000001 257.8C433.9000000000001 262.4 434.1 262 445.7000000000001 269.8C446.3000000000001 270.2 446.9000000000001 270.6 447.9000000000001 271.3H445.4000000000001C444.8 271.3 444.2000000000001 271.1 443.5000000000001 271C424.2000000000001 267.7 412.8000000000001 255.5 394.6000000000001 241.4C384.2000000000001 233.3 380.8000000000001 237.6 382.6000000000001 241.9C384.0000000000001 245.4 385.9000000000001 248.6 387.7000000000001 251.9C388.7000000000001 253.7 390.0000000000001 255.3 391.2000000000001 257C391.0000000000001 257.2 390.7000000000001 257.3 390.5000000000001 257.5C363.5000000000001 239.2 343.8000000000002 215.1 332.8000000000002 184.2C333.1000000000002 183.9 333.5000000000001 183.6 333.8000000000002 183.3C334.1000000000002 183.9 334.3000000000002 184.5 334.7000000000001 185C345.1000000000001 197.1 357.5000000000001 206.8 371.3000000000002 214.8C389.5000000000001 225.4 408.8000000000002 233.1 430.0000000000001 235C434.3000000000002 235.4 438.7000000000001 235.1 443.1000000000002 235.1C441.3000000000002 234.4 439.6000000000002 234.2 437.8000000000002 234C419.3000000000002 231.6 402.3000000000002 225 386.3000000000002 215.5C356.1000000000002 197.6 331.8000000000002 173.3 311.2000000000002 145.1C310.9000000000002 144.7000000000001 310.8000000000002 144.2000000000001 310.5000000000002 143.8C325.0000000000002 138.5 334.5000000000002 126.5 346.6000000000002 118.2C346.8000000000002 118.3 346.9000000000002 118.4 347.0000000000002 118.6L348.2000000000002 121.3C360.4000000000002 148.1999999999999 375.2000000000002 173.6 394.9000000000002 195.8C411.6000000000002 214.6 432.9000000000002 221.1 457.4000000000001 215.8C463.3000000000001 214.5 468.8000000000001 211.4 474.6000000000001 209C476.9000000000001 210.4 479.7000000000002 212.1999999999999 482.6000000000001 213.6999999999999C491.0000000000001 218 500.0000000000001 220.6999999999999 509.3000000000001 222.6999999999999C524.0000000000001 225.8 538.8000000000002 227.6 553.8000000000002 224V224.5C553.3000000000002 224.9 552.6000000000001 225.3 552.1000000000001 225.9zM316.7 50.4C277.3 83.4 293.9 69.9 274 86C273.2 85.1 274 86.2 272.1 83C260.9000000000001 63.9 246.6 47.7 228.1 35.4C217.8 28.6 206.6 23.6 194 23.6C172.4 23.6 155.8 33.1 144.6 51.4C132.6 70.9 131.3 92.1 136.4 114C144.2000000000001 147.8 166.5 169.2 175 178.3C156.3000000000001 184.5 142 176.6 128.6 164.4C129.4 178.3 132.9 190.6 140.4 201.7000000000001C116.1 191.1 94.5 176.7000000000001 75.6 157.8000000000001C75.3 163.6000000000001 81 201.5000000000001 81.2 202.5000000000001C81.5 205.2000000000001 80.6 207.8000000000001 78.2 209.9000000000001C54 185.2000000000001 33.7 158.1000000000001 22.1 125.3000000000001C29.5 131.2000000000001 37 136.7000000000001 45.7 141.5000000000001C37.4 119.2000000000001 26.1 88.7000000000001 37.9 40.4000000000001C42.5 21.4000000000001 49.8 3.6000000000001 62 -11.8999999999999C64.9 -15.5999999999999 68.3 -18.7999999999999 71.5 -22.1999999999999C71.7 -21.9999999999999 71.9 -21.8999999999999 72.1 -21.6999999999999C70.7 -14.6999999999999 69.9 -7.5999999999999 70.6 0.2C72.8 -2.9999999999999 74.5 -5.8 76.5 -8.4C89.1 -24.4 105.2 -35.8 123.7 -44C148.7000000000001 -55.3 174.8000000000001 -57.3 201.6 -52.6C256.5 -42.9 292.3 -4 317.6 46.2C318.6 48 318.2000000000001 49.1 316.7000000000001 50.4zM488.7 96.8C479.2 99.9 466.5 100.9999999999999 460 99.6999999999999C469.9 95.6999999999999 474.1 93.0999999999999 478.8 87.6999999999999C491.4 73.3 489.2 52.9999999999999 473.4 42.0999999999999C461.7 33.9999999999999 448.5000000000001 31.5999999999999 434.5000000000001 32.9999999999999C433.3000000000001 33.0999999999999 432.2000000000001 33.3999999999999 431.5000000000001 33.5999999999999C434.3000000000001 37.2999999999999 437.5000000000001 40.5999999999999 439.6000000000001 44.3999999999999C449.0000000000001 61.1999999999999 445.0000000000001 86.4999999999999 430.9000000000001 100.4999999999999C428.8000000000001 102.6 426.3000000000001 104.3999999999999 423.9000000000001 106.3999999999999C423.6000000000001 105.0999999999999 423.8000000000001 104.2999999999999 424.0000000000001 103.5999999999999C428.2000000000001 86.9999999999999 415.9000000000001 71.1999999999999 399.2000000000001 71.7999999999999C391.6000000000001 72.0999999999999 385.3000000000002 75.5999999999999 379.6000000000001 80.2999999999999C360.1000000000001 96.3999999999999 340.5000000000001 112.3999999999999 321.1000000000001 128.5999999999999C315.2000000000001 133.4999999999999 308.6000000000001 136.6999999999999 301.0000000000001 137.2999999999999C296.4000000000001 137.6999999999999 291.7000000000001 137.8999999999999 287.1000000000001 138.1999999999999C281.2000000000001 138.5999999999999 278.3000000000001 140.9999999999999 276.7000000000001 146.5999999999999C275.8000000000002 149.9999999999998 275.2000000000001 153.3999999999999 274.5000000000001 156.7999999999999C273.0000000000001 164.8999999999999 268.3000000000002 169.7999999999999 260.2000000000001 170.9999999999998C255.8000000000001 171.6999999999998 251.3000000000001 171.9999999999998 246.9000000000001 172.4999999999998C233.9000000000001 173.8999999999998 227.1000000000001 179.8999999999998 224.3000000000001 192.7999999999999C219.3000000000001 181.7999999999999 222.7000000000001 170.3999999999999 231.6000000000001 162.8999999999999C236.1000000000001 159.0999999999999 240.9000000000001 155.5999999999999 245.4000000000001 151.6999999999999C250.0000000000001 147.8999999999999 252.8000000000002 142.9999999999999 253.3000000000002 136.8999999999999C253.7000000000002 132.1999999999999 254.1000000000002 127.3999999999999 255.1000000000002 122.7999999999999C257.3000000000002 112.1999999999998 264.0000000000001 104.3999999999999 272.1000000000002 97.6999999999998C288.6000000000002 83.9999999999998 305.1000000000002 70.3999999999998 321.6000000000002 56.5999999999998C339.5000000000001 41.5999999999998 335.5000000000001 23.7999999999998 334.6000000000002 0.5999999999998C333.7000000000002 -22.3000000000002 346.8000000000002 -42.3000000000002 368.1000000000002 -50.6000000000002C369.1000000000002 -51.0000000000002 370.1000000000002 -51.2000000000002 371.7000000000002 -51.7000000000002C356.0000000000002 -33.5000000000002 361.6000000000002 -7.6000000000002 372.4000000000002 0.5999999999998C372.7000000000002 -1.6000000000002 372.8000000000002 -3.7000000000002 373.3000000000002 -5.8000000000002C382.7000000000001 -49.9000000000002 418.7000000000001 -70.0000000000002 458.3000000000001 -62.7000000000002C474.3000000000001 -59.8000000000002 488.9000000000001 -53.8000000000002 501.2000000000001 -42.9000000000001C503.2000000000001 -41.1000000000001 504.9000000000001 -38.8000000000001 507.1000000000001 -36.4000000000001C487.8000000000001 -41.0000000000002 471.3000000000001 -36.5000000000002 456.2000000000001 -25.8000000000001C456.9000000000001 -25.5000000000001 457.5000000000001 -25.5000000000001 458.1000000000001 -25.5000000000001C479.4000000000001 -27.3000000000001 498.7000000000001 -22.1000000000001 515.1000000000001 -8.1000000000001C534.6000000000001 8.4999999999999 541.7000000000002 34.7999999999998 532.5000000000001 57.8999999999999C524.2000000000002 77.9999999999999 508.9000000000001 90.1999999999999 488.7000000000001 96.7999999999998zM99.4 268.7C94.1 277.9 86.2 284.3 77.3 290C91 290.5 103.9 289.8 116.9 286.3C109.9 298.5 108.4 311 111.9 325C117.2 313.1 125.6 304.9 135.5 298.2000000000001C155.2 285 171.2 278.6 182.2 268C185.6 264.7000000000001 188.5 260.9000000000001 191.8 257.1C191 259.2000000000001 190.4 261.2000000000001 189.6 263.1C184.6 273.7000000000001 176.6 281.7000000000001 167 288.1C165.2 289.3 164.2 290.6 163.6 292.6C160.3 305.1 160.6 317.7000000000001 162.9 330.2000000000001C163.9 335.7000000000001 165.7 341.1 167.4 346.5C168.2 348.9000000000001 169.7 351.1 171.4 353.1C172 346.2 171.4 327.6 191 307.1C201.8 295.8 213.4 285.2000000000001 224.9 274.4000000000001C233.9 265.9000000000001 243.2 257.7000000000001 250.4 247.6C251.5 246.0000000000001 252.6 244.3 254.2 242.9000000000001C249.2 255.9000000000001 240.0000000000001 267 230.0000000000001 276.7000000000001C220.4 286.0000000000001 210.6 295.1 200.8000000000001 304.1C197.5 307.1 196.2000000000001 310.8000000000001 195.7000000000001 315.0000000000001C194.5000000000001 325.4000000000001 195.7000000000001 335.6 200.0000000000001 345.2000000000001C200.5000000000001 346.2000000000001 201.1000000000001 347.2000000000001 201.9000000000001 348.5000000000001C202.4000000000001 344.3000000000001 202.5000000000001 340.6 203.3000000000001 336.9000000000001C208.1000000000001 313.8000000000001 223.7000000000001 300.6000000000001 252.6000000000001 273.4000000000001C262.6000000000001 264.0000000000001 271.9000000000001 254.2000000000001 278.2000000000001 241.8000000000001C283.0000000000001 232.5000000000001 285.5000000000001 222.8000000000001 283.9000000000001 212.2000000000001C283.8000000000001 211.6000000000001 284.4000000000001 210.5000000000001 285.0000000000001 210.2000000000001C291.2000000000001 207.6000000000001 295.0000000000001 203.3000000000001 294.7000000000001 195.9000000000001C302.4000000000001 198.5000000000001 307.2000000000001 203.9000000000001 311.1000000000001 210.4000000000001C315.3000000000001 190.2000000000001 302.0000000000001 160.1000000000001 283.9000000000001 151.7000000000001C284.3000000000001 156.2000000000001 288.9000000000001 175.1 267.4000000000001 179.4C260.6000000000001 180.7000000000001 254.6000000000001 180.7000000000001 244.5000000000001 181.5000000000001C249.2000000000001 190.5000000000001 254.9000000000001 202.1000000000001 245.0000000000001 203.9000000000001C220.1000000000001 208.5000000000001 192.2000000000001 202.0000000000001 187.2000000000001 199.3000000000001C195.4000000000001 198.9000000000001 203.5000000000001 198.3000000000001 210.7000000000001 196.0000000000001C208.7000000000001 189.5000000000001 206.7000000000001 183.3000000000001 204.9000000000001 177.1000000000001C203.0000000000001 170.6000000000001 207.0000000000001 162.5000000000001 214.2000000000001 167.5000000000001C215.4000000000001 168.4 216.5000000000001 169.4 217.5000000000001 170.2000000000001C214.4000000000001 152.3000000000001 214.6000000000001 154.3000000000001 214.7000000000001 151.9C215.0000000000001 141.7000000000001 224.2000000000001 144.1 230.4000000000001 144.6C227.9000000000001 132.8 200.9000000000001 117.3 185.0000000000001 118.8C192.0000000000001 123.5 197.7000000000001 129.1 200.9000000000001 136.7C194.4000000000001 135.9 188.0000000000001 135.1 181.7000000000001 134.3L181.4000000000001 135.2C186.1000000000001 138.6 189.4000000000001 143 191.6000000000001 148.3C200.3000000000001 169.4 188.0000000000001 186.3 166.6000000000001 188.2C157.5000000000001 189 148.8000000000001 187.4 140.7000000000001 182.7C146.9000000000001 198.3 157.9000000000001 209.3 173.3000000000001 217.2C158.1000000000001 221.5 164.4000000000001 219.9 148.7000000000001 223.5C163.3000000000001 232.8 178.9000000000001 236.7 195.2000000000001 238.1C190.0000000000001 241.3 147.1000000000001 241.7 125.0000000000001 217.2C132.9000000000001 215.8 140.5000000000001 214.4 148.2000000000001 213C124.4000000000001 206 104.2000000000001 193.3 85.8000000000001 177.4C86.9000000000001 182.2 88.5000000000001 186.9 89.1000000000001 191.7C89.7000000000001 196.2 89.9000000000001 200.9 89.2000000000001 205.3C87.7000000000001 214.7 80.3000000000001 220.4 69.5000000000001 221.6C61.6000000000001 222.5 53.9000000000001 221.5 46.2000000000001 220.3C45.3000000000001 220.2 44.5000000000001 220 43.3000000000001 220.3C59.1000000000001 235.1 79.3000000000001 242 96.4000000000001 253.8C102.4000000000001 258.3 103.2000000000001 262 99.4000000000001 268.7zM227.8 241.9C231.1 225.9 240.4 216.4 251.6 217.6C247.0000000000001 228.9 239.5000000000001 237.1 227.8 241.9z" />
+    <glyph glyph-name="dashcube"
+      unicode="&#xF210;"
+      horiz-adv-x="448" d=" M326.6 344H110.4C59.3 344 19.2 300.7 19.2 250.5V21C19.2 -29.5 59.3 -64 110.4 -64H337.6C388.7000000000001 -64 428.8 -29.5 428.8 21V448L326.6 344zM153.9 31.5C136.2 31.5 121.5 46.6 121.5 64.3V207.2C121.5 224.9 136.2 239.7 153.9 239.7H294.6C312.3 239.7 326.6 224.9 326.6 207.2V83.7L377.7000000000001 31.4H153.9z" />
+    <glyph glyph-name="delicious"
+      unicode="&#xF1A5;"
+      horiz-adv-x="448" d=" M446.5 380C446.1 381.5 445.6 383 445.1 384.5C444.2000000000001 387 443.1 389.3 441.8 391.6C440.4000000000001 394 438.8 396.4 437.1 398.5C435 401 432.7000000000001 403.3 430.2000000000001 405.3C429.1 406.2 428.0000000000001 407 426.9000000000001 407.8C425.6 408.7 424.3 409.5 422.9000000000001 410.2C421.1 411.2 419.3 412 417.4000000000001 412.7C415.7000000000001 413.4 413.9000000000001 414 412.0000000000001 414.4C408.2000000000001 415.4 404.1000000000001 415.9 400.0000000000001 415.9H48C21.5 416 0 394.5 0 368V16C0 11.9 0.5 7.8 1.5 4C3.5 -3.7 7.3 -10.6 12.5 -16.3C13.5 -17.4 14.6 -18.5 15.8 -19.6C21.5 -24.8 28.4 -28.6 36.1 -30.6C39.9 -31.6 44 -32.1 48.1 -32.1H400.1C426.6 -32.1 448.1 -10.6 448.1 15.9V368C448 372.1 447.5 376.2 446.5 380zM416 16C416 7.2 408.8 0 400 0H224V192H32V368C32 376.8 39.2 384 48 384H224V192H416V16z" />
+    <glyph glyph-name="deploydog"
+      unicode="&#xF38E;"
+      horiz-adv-x="512" d=" M382.2 312H433.9V72.4H382.2V93.1C362.4 68.3 329.4 68.9999999999999 308.4 78.4C282.2 90.1 264.1 116.5 264.1 150.2C264.1 180 278.9 208.1 307.4 221C327.6 230.1 360.1 231.6 382.2 208.1V312zM317.5 150.2C317.5 132 331.1 116.7 350.7 116.7C370.5 116.7 383.9 133.1 383.9 149.6C383.9 166.7 370.2 182.8 350.7 182.8C331.1 182.8 317.5 166.4 317.5 150.1999999999999zM188.5 312H240.2V72.4H188.5V93.1C168.7 68.3 135.7 68.9999999999999 114.7 78.4C88.5 90.1 70.4 116.5 70.4 150.2C70.4 180 85.2 208.1 113.7 221C133.9 230.1 166.4 231.6 188.5 208.1V312zM123.8 150.2C123.8 132 137.4 116.7 157 116.7C176.8 116.7 190.2 133.1 190.2 149.6C190.2 166.7 176.5 182.8 157 182.8C137.3 182.8 123.8 166.4 123.8 150.1999999999999zM448 352C465.5 352 480 337.6 480 320V64C480 46.5 465.6 32 448 32H64C46.5 32 32 46.4 32 64V320C32 337.5 46.4 352 64 352H448M448 384H64C28.8 384 0 355.2 0 320V64C0 28.8 28.8 0 64 0H448C483.2 0 512 28.8 512 64V320C512 355.2 483.2 384 448 384z" />
+    <glyph glyph-name="deskpro"
+      unicode="&#xF38F;"
+      horiz-adv-x="480" d=" M205.9 -64L237 -25.6C249.3 -25.4 262.6 -24.2 273.5 -19C312.4 -0.4 311.9 42.9 311.8 44.8C311.7 49.8 311 49.2 282.9000000000001 82.2H362C361.8 32.1 354.7 13.7 351.8 6.5C342.4000000000001 -17.2 307.9000000000001 -56.3 256.6 -62.9C247.9000000000001 -64 223.8 -64.1 205.9 -64zM406.3 103.7C444.9000000000001 103.7 464.8 117.3 480 134.6L304.5 134.9L287.1 103.6L406.3 103.7zM362.7 327.6V159.3H289.2L256.5 103.8H250C197.7 103.8 191.9 160.3 191.7 162.6999999999999C190.5 175.8999999999999 170.4 174.3 171.6 160.8999999999999C173 145.0999999999999 180.4 120.8999999999999 198 103.7999999999999H107C81.5 103.7999999999999 -3.8 130.5999999999999 0 217.7999999999999V431.1C0 447.1 9.7 447.7 15 447.9H97C97.2 447.9 97.3 447.8 97.5 447.8C101.8 448.2 147.6 449.9 147.6 404.1C147.6 390.8 167.8 390.7 167.8 404.1C167.8 422.3 162.3 436.9 152 447.8H236.2C344.9 448.2 362.7 368.4 362.7 327.6zM230.2 271.6L294.2 242.3C307.5 287.8 252 314 230.2 271.6z" />
+    <glyph glyph-name="dev"
+      unicode="&#xF6CC;"
+      horiz-adv-x="448" d=" M120.12 239.71C116.24 242.61 112.35 244.06 108.47 244.06H91.03V139.59H108.48C112.36 139.59 116.25 141.04 120.13 143.9400000000001C124.01 146.84 125.95 151.1900000000001 125.95 157.0000000000001V226.6500000000001C125.94 232.4500000000001 123.99 236.8100000000001 120.12 239.7100000000001zM404.1 416H43.9C19.7 416 0.06 396.41 0 372.2V11.8C0.06 -12.41 19.7 -32 43.9 -32H404.1C428.31 -32 447.94 -12.41 448 11.8V372.2C447.94 396.4100000000001 428.3 416 404.1 416zM154.2 156.81C154.2 138 142.59 109.5 105.84 109.56H59.44V275.02H106.82C142.26 275.02 154.18 246.56 154.19 227.74L154.2 156.81zM254.88 245.47H201.6V207.05H234.17V177.48H201.6V139.0700000000001H254.89V109.5000000000001H192.71C181.55 109.21 172.27 118.03 171.99 129.1900000000001V254.3C171.72 265.4500000000001 180.55 274.7100000000001 191.7 274.99H254.89L254.88 245.47zM358.52 130.18C345.32 99.43 321.67 105.55 311.08 130.18L272.55 274.98H305.12L334.83 161.26L364.3999999999999 274.98H396.9799999999999L358.5199999999999 130.18z" />
+    <glyph glyph-name="deviantart"
+      unicode="&#xF1BD;"
+      horiz-adv-x="320" d=" M320 354.8L221.8 175.7L229.2 166.2H320V38.5H159.1L145.6 29.3L101.9 -54.7C101.6 -54.7 93.3 -63.3 92.7 -63.9H0V29.3L93.2 208.7L85.8 217.9H0V345.5H156L169.5 354.7L213.2 438.7C213.5 438.7 221.8 447.3 222.4 447.9H320V354.8z" />
+    <glyph glyph-name="dhl"
+      unicode="&#xF790;"
+      horiz-adv-x="640" d=" M238 146.8H296.7L319 177H260.3L238 146.8zM0 165.1V158.7000000000001H81.8L86.5 165.1H0zM172.9 177C164.2 177 166.9 180.6 168.3 182.5C171.1 186.3 175.9 192.9 178.7 196.6C181.5 200.3 181.5 202.5 175.9 202.5H124.9L83.8 146.7H183.9C217 146.7 235.4 169.2 241.1 177H172.9zM490.4 183.9L529.6999999999999 237.3H467.4999999999999L428.2 183.9H490.3999999999999zM95.3 177H0V170.6H90.6L95.3 177zM206.3 203.6C203.5 199.8 198.8 193.2 196 189.4C194.6 187.4 191.9 183.9 200.6 183.9H246.2S253.5 193.9 259.7 202.3C268.1 213.7 260.4 237.3 230.5 237.3H112.6L92.2 209.5H203.6C209.2 209.5 209.1 207.3 206.3 203.6zM0 146.8H73.1L77.8 153.2H0V146.8zM323 146.8H381.7L404 177H345.3C345.2 177 323 146.8 323 146.8zM545 146.7H640V153.1H549.7L545 146.7zM567.3 177L562.5999999999999 170.6H640V177H567.3zM553.8 158.7H640V165.1H558.5L553.8 158.7zM389.6 237.3L367.1 206.7H340.9L363.4 237.3H304.7L265.4 183.9H409L448.3 237.3H389.6zM423.1 177S418.8 171.1 416.7 168.3C409.3 158.3 415.8 146.7 439.9 146.7H534.1999999999999L556.4999999999999 177H423.1z" />
+    <glyph glyph-name="diaspora"
+      unicode="&#xF791;"
+      horiz-adv-x="462.1" d=" M226.6 93.3C225.2 93.3 138.6 -26.6 137.9 -26.6C137.2 -26.6 51.3 33.9 51 34.6C50.7 35.4 137.6 160.3 137.6 162C137.6 164.2 8 206 0 209.1C-1.3 209.6 31.4 310.9 31.7 311.2C32.3 311.9 176.1 264.2 177.2 264.2C177.6 264.2 178.1 264.8 178.2 265.5C178.6 267.5 179.2 414.1 179.9 415.1C180.7 416.3 284.4 415.8 285 415.4C286.5 414.4 288.5 259.3 291.1 259.3C292.5 259.3 429.8 306.3 430.4 305.6C431.2 304.7000000000001 462.3 203.4 461.9 203C461 202.1 321.7 155.9 321.3 154.2000000000001C321 152.8000000000001 404.1 32.1 403.8 31.3000000000001C403.6 30.6000000000001 318.3 -32.1999999999999 317.5 -32.1999999999999C316.5 -31.9999999999999 228.5 93.3000000000001 226.6 93.3000000000001z" />
+    <glyph glyph-name="digg"
+      unicode="&#xF1A6;"
+      horiz-adv-x="512" d=" M81.7 275.7H0V101.3H132.7V352H81.7V275.7zM81.7 142.3H50.9V234.6H81.7V142.3zM378.9 275.7V101.3H460.7V72.8H378.9V32H512V275.7H378.9zM460.7 142.3H429.9V234.6H460.7V142.3zM225.1 101.3H307.2V72.8H225.1V32H358.4V275.7H225.1V101.3zM276.3 234.6H307.1V142.3H276.3V234.6zM153.3 352H204.6V301H153.3V352zM153.3 275.7H204.6V101.3H153.3V275.7z" />
+    <glyph glyph-name="digital-ocean"
+      unicode="&#xF391;"
+      horiz-adv-x="512" d=" M256 -56V40.1C357.8 40.1 436.8 141 397.7 248.1C383.4 287.7000000000001 351.6 319.5 311.9 333.8C204.8 372.6 103.8 293.9000000000001 103.8 192.1H8C8 354.3 164.9 480.8 335 427.7C409.2 404.4 468.6 345.3 491.6 271.1C544.8 100.8 418.6 -56 256 -56zM256.3 135.4H160.7V39.8H256.3V135.4zM160.7 39.8H87V-33.8000000000001H160.7V39.8zM87 101.4H25.4V39.8H87V101.4z" />
+    <glyph glyph-name="discord"
+      unicode="&#xF392;"
+      horiz-adv-x="448" d=" M297.216 204.8C297.216 189.184 285.6960000000001 176.384 271.104 176.384C256.768 176.384 244.992 189.184 244.992 204.8S256.512 233.216 271.104 233.216C285.696 233.216 297.216 220.416 297.216 204.8zM177.664 233.216C163.072 233.216 151.552 220.416 151.552 204.8S163.328 176.384 177.664 176.384C192.256 176.384 203.776 189.184 203.776 204.8C204.032 220.416 192.256 233.216 177.664 233.216zM448 395.264V-64C383.506 -7.006 404.132 -25.872 329.216 43.776L342.784 -3.584H52.48C23.552 -3.584 0 19.968 0 49.152V395.264C0 424.448 23.552 448 52.48 448H395.5200000000001C424.448 448 448 424.448 448 395.264zM375.04 152.576C375.04 235.0080000000001 338.1760000000001 301.824 338.1760000000001 301.824C301.3120000000001 329.472 266.24 328.704 266.24 328.704L262.656 324.608C306.176 311.296 326.4 292.096 326.4 292.096C265.589 325.425 194.156 325.4310000000001 135.168 299.52C125.696 295.168 120.064 292.096 120.064 292.096S141.312 312.32 187.392 325.632L184.832 328.704S149.76 329.472 112.896 301.824C112.896 301.824 76.032 235.008 76.032 152.576C76.032 152.576 97.536 115.456 154.112 113.6640000000001C154.112 113.6640000000001 163.584 125.184 171.264 134.912C138.752 144.6400000000001 126.464 165.12 126.464 165.12C130.23 162.484 136.44 159.067 136.96 158.72C180.17 134.5220000000001 241.548 126.5940000000001 296.704 149.7600000000001C305.664 153.088 315.648 157.9520000000001 326.144 164.864C326.144 164.864 313.344 143.872 279.808 134.4C287.488 124.672 296.704 113.6640000000001 296.704 113.6640000000001C353.28 115.456 375.04 152.576 375.04 152.576z" />
+    <glyph glyph-name="discourse"
+      unicode="&#xF393;"
+      horiz-adv-x="448" d=" M225.9 416C103.3 416 0 317.5 0 195.9C0 192 0.1 -32 0.1 -32L225.9 -31.8C348.6 -31.8 448 70.5 448 192.1C448 313.7 348.6 416 225.9 416zM224 64C204.6 64 186.1 68.3 169.6 76.1L88.5 56L111.4 131C101.6 149.1 96 169.9 96 192C96 262.7 153.3 320 224 320S352 262.7 352 192S294.7 64 224 64z" />
+    <glyph glyph-name="dochub"
+      unicode="&#xF394;"
+      horiz-adv-x="416" d=" M397.9 288H256V428.4L397.9 288zM304 256V126C304 59.2 267.5 25.9 190.7 25.9H96V363.2H190.7C202.7 363.2 213.8 362.4 223.8 360.7V444.7C212.9 446.9 201.4 448 189.2 448H0V-64H189.2C329.7 -64 400 0.6 400 129.9V256H304z" />
+    <glyph glyph-name="docker"
+      unicode="&#xF395;"
+      horiz-adv-x="640" d=" M349.9 211.7H283.8V271.1H349.9V211.7zM349.9 416H283.8V355.3H349.9V416zM428.1 271.2H362V211.8H428.1V271.2zM271.8 343.3H205.7V283.2H271.8V343.3zM349.9 343.3H283.8V283.2H349.9V343.3zM626.7 243.3C612.3000000000001 253 579.1 256.5 553.6 251.7C550.3000000000001 275.7 536.9 296.6 512.5 315.4L498.5 324.7L489.2 310.7C470.8 282.9 465.8 237.1 485.5 206.9C476.8 202.2 459.7 195.8 437.1 196.2H2.4C-6.3 145.4 8.2 79.4 46.4 34.1C83.5 -9.8 139.1 -32.1 211.8 -32.1C369.2000000000001 -32.1 485.7 40.4 540.2 172.1C561.6 171.7000000000001 607.8000000000001 172 631.5 217.3C633 219.8 638.1 230.5 640 234.4L626.7 243.3zM115.6 271.2H49.6V211.8H115.7V271.2zM193.7 271.2H127.6V211.8H193.7V271.2zM271.8 271.2H205.7V211.8H271.8V271.2zM193.7 343.3H127.6V283.2H193.7V343.3z" />
+    <glyph glyph-name="draft2digital"
+      unicode="&#xF396;"
+      horiz-adv-x="480" d=" M369.9 22.6V77L417 49.8L369.9 22.6zM82.4 67.4C107.9 94.7 180.1 172.1 233.3 237.4C268.4000000000001 280.5 273.6 319.8 261.7 350.1C254.3 368.9 244.2 380.3 237.4 385.8C282.7 383.7 305.4 362.4 319.6 347.5C319.6 347.5 362 299.3 325.4 234.2C288.4 168.3 214.5 86.7 196.9 67.5H82.4zM134.2 286.6C134.2 274.2 124.2 264.2 111.8 264.2C99.4 264.2 89.4 274.2 89.4 286.6C89.4 299 99.4 309 111.8 309C124.2 309 134.2 298.9 134.2 286.6M336 132.1V67.4H244.7C275.5 102.4 326.5 163.3000000000001 356.5 216.7000000000001C391.7 279.3000000000001 372.6 340.1 343.7 370.0000000000001C339.3 374.6 281.5 432.9000000000001 177.7 411.2000000000001C118.6 398.8000000000001 88.3 367.8000000000001 73.4 343.9000000000001C60.3 323.0000000000001 56.4 304.1000000000001 55.2 296.2000000000001C49.7 263.2000000000001 74.6 229.1000000000001 111.9 229.1000000000001C143.6 229.1000000000001 169.2 254.8000000000001 169.2 286.5000000000001C169.2 313.6 149.5 338.6 121.2 343.3000000000001C123 350.6 138.9 364.4000000000001 147.5 368.0000000000001C188.6 385.3000000000001 225.5 362.8000000000001 230.8 334.5000000000001C239.1 290.2000000000001 193.7 244.1000000000001 161.1 206.9000000000001C84.5 119.9 18.3 51.2 0 32.1L336 32.2V-32L480 49.9L336 132.1z" />
+    <glyph glyph-name="dribbble-square"
+      unicode="&#xF397;"
+      horiz-adv-x="448" d=" M90.2 219.8C99.1 262.2000000000001 127.6 297.5 165.9 315.5C169.5 310.6 193.9 276.7 216.6 236.5C152.6 219.5 96.3 219.7 90.2 219.8zM314.6 294C281 323.8 235.3 335.1 192 324.6C195.8000000000001 319.5 220.6 285.7 243.0000000000001 244.6C291.6 262.9 312.1 290.5 314.6 294zM140.1 84C180.6 52.4 233.4 47.3 277.4 66C275.4 78 267.4 119.8 248.2 169.6C193.1 150.8 154.4 113.2000000000001 140.1 84zM238.9 192.2C235.5 200 231.7 207.7 227.8 215.4C159.6 195 93.4 195.8 87.4 196C87.4 194.6 87.3 193.2 87.3 191.8C87.3 156.7 100.6 124.7000000000001 122.4 100.4C144.6 138.3 189.5 178.3 238.9 192.2zM273.8 175.9C291.7 126.8 298.9 86.8 300.3 78.5C331 99.2 352.8 132.1 358.9 170.1C354.3 171.6 316.6 182.8 273.8 175.9zM253.5 224.3C258.3 214.5 261.8 206.5 265.5 197.5C311 203.2 356.2 194.1 360.7 193.1C360.3999999999999 225.4 348.8999999999999 255 329.8 278.2C326.9 274.3 304 245 253.5 224.3zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM384 192C384 280.2 312.2 352 224 352S64 280.2 64 192S135.8 32 224 32S384 103.8 384 192z" />
+    <glyph glyph-name="dribbble"
+      unicode="&#xF17D;"
+      horiz-adv-x="512" d=" M256 440C119.252 440 8 328.748 8 192S119.252 -56 256 -56S504 55.252 504 192S392.748 440 256 440zM419.9700000000001 325.634C449.473 289.588 467.3390000000001 243.677 467.805 193.679C460.821 195.156 390.7870000000001 209.361 320.303 200.497C314.551 214.538 309.122 226.89 301.686 242.111C380.007 274.088 415.504 319.593 419.97 325.634zM396.421 350.13C392.611 344.703 360.724 301.844 285.4 273.611C250.688 337.387 212.215 389.779 206.36 397.619C273.536 413.812 344.326 396.349 396.421 350.13zM165.941 383.38C171.526 375.721 209.379 323.264 244.478 260.871C145.391 234.558 58.118 234.937 48.644 235.062C62.38 300.795 106.678 355.427 165.941 383.38zM44.17 191.677C44.17 193.843 44.213 195.999 44.278 198.15C53.546 197.96 156.198 196.637 261.984 228.2960000000001C268.048 216.4280000000001 273.841 204.3810000000001 279.158 192.347C202.559 170.7720000000001 132.964 108.8200000000001 98.627 50.0410000000001C64.794 87.595 44.17 137.27 44.17 191.677zM125.977 24.564C148.104 69.797 208.155 128.186 293.5560000000001 157.3200000000001C323.2960000000001 80.037 335.5950000000001 15.2670000000001 338.7450000000001 -3.318C270.6330000000001 -32.331 188.7300000000001 -24.371 125.9770000000001 24.564zM374.357 16.075C372.186 28.9610000000001 360.911 90.972 333.205 167.1080000000001C399.585 177.734 457.905 160.3400000000001 465.152 158.0530000000001C455.71 99.1120000000001 421.879 48.2090000000001 374.357 16.075z" />
+    <glyph glyph-name="dropbox"
+      unicode="&#xF16B;"
+      horiz-adv-x="528" d=" M264.4 331.7L132.4 247.4L264.4 163.1L132.4 78.8L0 163.9L132.3 248.2L0 331.7L132.3 416L264.4 331.7zM131.6 52.3L263.6 136.6L395.6 52.3L263.6 -32L131.6 52.3zM264.4 163.9L396.4 248.2L264.4 331.8L395.7 416L528 331.7L395.7 247.4L528 163.2L395.7 78.9L264.4 163.9z" />
+    <glyph glyph-name="drupal"
+      unicode="&#xF1A9;"
+      horiz-adv-x="448" d=" M319.5 333.3C297.3 347.3 276 352.8 254.8 366.8C241.8 375.6 223.5 396.8 208.3 415.1C205.6 385.8 196.8 373.9 186.3 365.6C165 348.6 151.5 343.4 132.8 333.3C117 325 32 266.5 32 157.5C32 48.3 123.8 -32 225.8 -32C327.5 -32 416 42 416 154C416 266.3 333 325 319.5 333.3zM322 7.7C301.9 -12.4 231.9 -21 205.3 3.5C200.5 8.3 205.6 15.5 211.8 15.5C211.8 15.5 228.8 2.2 263.3 2.2C290.3 2.2 309.3 9.9 317.8 16.2C323.9000000000001 20.8 326.2 11.9 322 7.7zM267.5 60.3C276.2 63.9 296.5 64.1 304.3 59C308.4000000000001 56.2 320.4000000000001 40.2 310.5 35.3C302.1 31.1 309.3 51 284 51C269.3 51 264.5 45.8 257.3 40C250.3 34 247.5 32 245.1 35.3C239.1 43.5 261 57.6 267.5 60.3zM360 43C344.8 44 314.5 91.8 295 92.5C264.1 93.4 190.9 11.8 133.7 50.5C94.9 77.1 119.1 155.3 185.5 155.7C235 156.2 269.3 106.7 294 107.2C315.3 107.5 355.8 149 375.8 149C424.5 149 399.1 39.7 360 43z" />
+    <glyph glyph-name="dyalog"
+      unicode="&#xF399;"
+      horiz-adv-x="416" d=" M0 416V296.8H64V352H171.2C284.6 352 352 271.8 352 192.1C352 116 293.4 32 171.2 32H0V-32H171.2C331.9 -32 416 80.7 416 192.1C416 250.8 393.9 305.5 353.7 346.4C308.9 392 245.7 416 171.2 416H0z" />
+    <glyph glyph-name="earlybirds"
+      unicode="&#xF39A;"
+      horiz-adv-x="480" d=" M313.2 400.5C314.4 413.5 334.5 414.5 349.8 409.2C350.7 408.9 376 399.5 368.8 394C340.9000000000001 401.4 312.4000000000001 375.8 313.2 400.5zM112.2 393.6C142.9 401.7 174.2 373.6 173.3 400.7C172 414.9 149.9 416 133.1 410.3C132.1 410 104.4 399.8 112.2 393.6zM319.4 288C310.6 288 303.4 280.8 303.4 272S310.6 256 319.4 256S335.4 263.2 335.4 272S328.2 288 319.4 288zM159.7 288C150.9 288 143.7 280.8 143.7 272S150.9 256 159.7 256S175.7 263.2 175.7 272S168.5 288 159.7 288zM478.2 124.8C468.3 100.8 437.5 113.8 414.3 126C400.8 56.9 356.2 14.6 288 1.8C288.3 0.9 286 1.9 312 0.8C345.6 -0.6 375.8 3.9 409.4 8.8C389.6 22.6 398 45.9 399.6 46.9C401 47.8 414.3 45.2 421.2 35.4C429.8 47.9 449.6 50.2 451.4 49.0000000000001C453 47.9 458 28.1000000000001 444.5 14.4C449.2 15.3 452.7 16.0000000000001 454.3 16.5000000000001C456.9 17.3000000000001 472 5.2 457.4 3.2C443.1 0.9 434.8 -1.9 410.3 -7.6C364.4000000000001 -18.3 324.4 -19.4 292.6 -20.4L293.6 -32C297.4000000000001 -50.1 270.2000000000001 -56.3 266 -38.2C266.8 -56.1 238.9 -60 237.6 -37.2L237.1 -42.5C236.4 -60.9 208.7 -60.4 208.8 -41.9C201.3 -55.4 180.7 -48.7 182.4 -33.4L183.6 -21C146.9 -21.9 123.9 -24.1 121.8 -24.1C100.9 -24.1 100.9 7.5 121.8 7.5C124.2 7.5 149.5 6.2 185 4.7C123.9 20.2 81.3 59.7 70.1 122.9C45.1 110.1 12.6 96.1 1.9 122.1C-8.6 147.5 23.4 164.7 68.7 195.5C69.4 202.1 70.3 208.8 71.4 215.3C57 234.9 59.8 251.6 55.3 275.7C38.5 273.3 32.1 284.8 31.7 298.8C32 306.1 33.8 313.7 34.1 314.2C35.2 316 44.2 316.2 46.8 316.8C52.8 348.5 97.4 350 137.7 351.3C157.4 373.1 182.9 392.8 218.6 399.6C203.3 419 215.2 439.5 216.2 440C217.9 440.8 237.4 435.7 242.5 416.8C247.7 425.6 260.8 428.2 262.1 427.5C263.2000000000001 426.9 268.5 412.5 257.2000000000001 401.6C297.5000000000001 398.1 329.4000000000001 376.9 353.2000000000001 350.9C389.3000000000001 349.4 425.0000000000001 345 430.3000000000001 316.9C433.0000000000001 316.3 441.9000000000001 316.1 443.0000000000001 314.3C443.3000000000001 313.8 445.1000000000001 306.2000000000001 445.4000000000001 298.9C444.9000000000001 285 438.6 273.5 421.8 275.8C418.6 258.5 419.1 242.9 413.1 228.1C415.5 216.4 417.1 204.3 417.9000000000001 191.7000000000001C454.9 166.3000000000001 488.2 149.2000000000001 478.2 124.8000000000001zM207.4 288.1C208.3 332.1 169.5 330.3 128.8 328.4C107.1 327.4 89.9 326.5 83.3 314.5C71.9 293.6 89.2 221.6 106.5 213.3C116.3 208.6 179.9 205.4 192.8 220.4C201 229.8 207.8 269.8 207.4 288.1zM259.4 229.8C255.1 242.2 253.4 259.9 244.1 262.5C242.1 263 235.1 263 233.1 262.5C223.1 259.7 222.3 240.4 216.1 225.3C231.5 225.3 235.4 215.6 239.8 215.6C244.1 215.6 246.1 226.9000000000001 259.4 229.8zM395.1 314.5C388.5 326.6 370.3 327.4 348.6 328.4C308.4 330.3 270.4 332.2 271.3 288.1C270.8 269.8 276.3 229.8 284.5 220.3C297.5 205.4 361.0999999999999 208.5 370.8 213.2C386.6 220.8 407.3 292.1 395.1 314.5z" />
+    <glyph glyph-name="ebay"
+      unicode="&#xF4F4;"
+      horiz-adv-x="640" d=" M405.2 184.2C376.1 183.3 358 178 358 158.9C358 146.5 367.9 133.1 393 133.1C426.7 133.1 444.6 151.5 444.6 181.5V184.8C432.8 184.8 418.3 184.6999999999999 405.2000000000001 184.1999999999999M476.7 144.5C476.7 135.1999999999999 477.0000000000001 125.8999999999999 477.7 117.6999999999999H447.9000000000001C447.1 124.5999999999999 446.8 131.3 446.8 137.8999999999999C430.7 118.0999999999999 411.5 112.3999999999999 384.9000000000001 112.3999999999999C345.4000000000001 112.3999999999999 324.3 133.2999999999999 324.3 157.3999999999999C324.3 192.3999999999999 353.1 204.6999999999999 402.9 205.7999999999999C416.6 206.0999999999999 431.9 206.1999999999999 444.6 206.1999999999999V209.5999999999999C444.6 233 429.6 242.6 403.6 242.6C384.3 242.6 370 234.6 368.6 220.7999999999999H334.9C338.5 255.2 374.6 263.8999999999999 406.4 263.8999999999999C444.5 263.8999999999999 476.7 250.3999999999999 476.7 210.0999999999999V144.4999999999999zM127.7000000000001 201.3C125.4000000000001 256 40.2 257.9 33.3 201.3H127.7000000000001zM32.7 179.9C36.2 121.6 111.9000000000001 122.5 123.9000000000001 158.3H157C150.6 123.9 114 112.1999999999999 82.6 112.1999999999999C25.4 112.1999999999999 0.1 143.6999999999999 0.1 186.1999999999999C0.1 233 26.3 263.8 83.1 263.8C128.4 263.8 161.5 240.1 161.5 188.3999999999999V179.8999999999999H32.7zM243.7000000000001 134.2C273.5000000000001 134.2 293.9000000000001 155.7 293.9000000000001 188C293.9000000000001 220.4 273.5000000000001 241.8 243.7000000000001 241.8C214.1000000000001 241.8 193.5000000000001 220.4 193.5000000000001 188C193.5000000000001 155.7 214.1000000000001 134.2 243.7000000000001 134.2M161.5000000000001 320.2H193.6000000000001V239.6C209.3000000000001 258.3 231.0000000000001 263.8 252.3000000000001 263.8C288.0000000000001 263.8 327.7000000000001 239.7 327.7000000000001 187.6C327.7000000000001 144 296.2000000000001 112.1999999999999 251.7000000000001 112.1999999999999C228.4000000000001 112.1999999999999 206.6000000000001 120.5 193.0000000000001 137.0999999999999C193.0000000000001 130.4999999999999 192.6000000000001 123.8999999999999 191.9000000000001 117.5999999999999H160.4000000000001C160.9000000000001 127.7999999999999 161.5000000000001 140.3999999999999 161.5000000000001 150.6999999999999V320.2zM640 258.5L540.8 63.7H504.9L533.4 117.8L458.8 258.5H496.3L551.1999999999999 148.6L606 258.5H640z" />
+    <glyph glyph-name="edge"
+      unicode="&#xF282;"
+      horiz-adv-x="512" d=" M25.714 219.837C25.825 219.999 25.944 220.16 26.056 220.322C26.035 220.16 26.011 219.999 25.991 219.837H25.714zM486.286 204.329C486.286 248.361 478.532 288.794 457.485 326.734C416.498 400.121 343.912 439.999 258.893 439.999C118.962 440.276 40.617 334.786 26.056 220.321C68.485 281.633 143.129 341.697 246.431 345.287C246.431 345.287 356.097 345.287 345.85 240.33H169.997C176.366 277.716 188.551 299.316 204.336 319.256C129.288 284.363 82.486 223.16 83.594 130.941C84.424 59.493 133.718 -13.895 204.337 -41.035C287.694 -72.8820000000001 397.113 -48.235 444.469 -19.711V84.693C363.605 28.199 173.598 23.768 172.214 152.265H486.287V204.329z" />
+    <glyph glyph-name="elementor"
+      unicode="&#xF430;"
+      horiz-adv-x="448" d=" M425.6 416H22.4C10 416 0 406 0 393.6V-9.6C0 -22 10 -32 22.4 -32H425.6C438 -32 448 -22 448 -9.6V393.6C448 406 438 416 425.6 416M164.3 92.5H124.5V291.5H164.3V92.5zM323.6 92.5H204.1V132.3H323.6V92.5zM323.6 172.1H204.1V211.9H323.6V172.1zM323.6 251.8H204.1V291.6H323.6V251.8z" />
+    <glyph glyph-name="ello"
+      unicode="&#xF5F1;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM391.8400000000001 154.8C375.31 89.49 315.79 43.2 248 43.2S120.69 89.49 104.16 154.8C102.51 162.24 106.64 170.5099999999999 114.08 172.16C121.52 173.81 129.79 169.68 131.44 162.24C145.49 109.3299999999999 193.44 72.1299999999999 248 72.1299999999999S350.51 109.3299999999999 364.56 162.24C366.21 169.68 374.48 174.6399999999999 381.92 172.16C389.36 170.51 394.32 162.24 391.8400000000001 154.8z" />
+    <glyph glyph-name="ember"
+      unicode="&#xF423;"
+      horiz-adv-x="640" d=" M639.9 193.4C638.8 204.1 629.1999999999999 200.2 629.1999999999999 200.2S613.5999999999999 188.1 599.9 189.5C586.1999999999999 190.8 590.5 221.5 590.5 221.5S593.5 249.6 585.4 251.9C577.3 254.3 567.4 244.6 567.4 244.6S555 230.9 549.1 213.4L547.5 212.9S549.4 243.5 547.2 250.5C545.6 254 530.8000000000001 253.7 528.4000000000001 247.5S514.2 198.3 513.4000000000001 180.3C513.4000000000001 180.3 490.3000000000001 160.7 470.1000000000001 157.5S445.1000000000001 166.9 445.1000000000001 166.9S499.9000000000001 182.2 498.0000000000001 226C496.1000000000001 269.8 453.8000000000001 253.6 449.0000000000001 250C444.4000000000001 246.5 419.6000000000001 231.6 412.4000000000001 190.3C412.2000000000001 188.9 411.7000000000001 182.8 411.7000000000001 182.8S390.5000000000001 168.6 378.7000000000001 164.8C378.7000000000001 164.8 411.7000000000001 220.4 371.4000000000001 245.7C353.1 256.7 338.6 233.6 338.6 233.6S393.1 294.3 381.1 345.6C375.3 370 363.1 372.7 351.9000000000001 368.7C334.9000000000001 362 328.4000000000001 352 328.4000000000001 352S306.4000000000001 320 301.3 272.5S288.7 167.4 288.7 167.4S278.2 157.2 268.5 156.7S263.1 185.4 263.1 185.4S270.6 230 270.1 237.5S269 249.1 260.2000000000001 251.7C251.3000000000001 254.4 241.7000000000001 243.1 241.7000000000001 243.1S216.2000000000001 204.4 214.0000000000001 198.5L212.7000000000001 196.1L211.4 197.7S229.4000000000001 250.4 212.2000000000001 251.2C195.0000000000001 252 183.7000000000001 232.4 183.7000000000001 232.4S164.1000000000001 199.6 163.3000000000001 195.9L162 197.5S170.1 235.7 168.4 245.1C166.8000000000001 254.5 157.9 252.6 157.9 252.6S146.6 253.9 143.7000000000001 246.7S130.0000000000001 191.3999999999999 128.7000000000001 176C128.7000000000001 176 100.5 155.8 81.9000000000001 155.6C63.4000000000001 155.3 65.2000000000001 167.4 65.2000000000001 167.4S133.2000000000001 190.7 114.6000000000001 236.6C106.3000000000001 248.4 96.6000000000001 252.1 82.9000000000001 251.9C69.2000000000001 251.6 52.6000000000001 243.3 41.6000000000001 218.6C36.3000000000001 206.8 34.8000000000001 195.6 33.8000000000001 187.1C33.8000000000001 187.1 21.5000000000001 184.7 15.0000000000001 190S5.0000000000001 190 5.0000000000001 190S-6.1999999999999 176 4.9000000000001 171.6999999999999S33.0000000000001 165.5999999999999 33.0000000000001 165.5999999999999C34.6000000000001 158.0999999999999 39.2000000000001 146.0999999999999 52.6000000000001 135.8999999999999C72.8000000000001 120.5999999999999 111.4000000000001 137.1999999999999 111.4000000000001 137.1999999999999L127.3000000000001 146S127.8000000000001 131.3999999999999 139.4000000000001 129.3C151.0000000000001 127.1999999999999 155.8000000000001 128.3 175.9000000000001 177.1999999999999C187.7000000000001 202.1999999999999 188.5000000000001 200.7999999999999 188.5000000000001 200.7999999999999L189.8000000000001 201.0999999999999S180.7000000000001 154.3 184.2000000000001 141.3999999999999C187.7 128.6 203 130 203 130S211.3 127.6 218 151.2C224.7 174.8 237.6 201.1 237.6 201.1H239.2S233.6 153 242.2 137.4C250.8 121.8 273.1 132.1 273.1 132.1S288.7 139.9 291.1 142.3C291.1 142.3 309.6 126.5 335.7 129.4C394 140.9 414.8 155.3 414.8 155.3S424.8 130.9 455.9 128.6C491.4 125.9 510.7 147.2 510.7 147.2S510.4 133.7 522.8 128.6C535.1999999999999 123.5 543.5 151.4 543.5 151.4L564.2 208.6H566.1S567.2 171.3 587.6 165.4S634.6 179.1 634.6 179.1S641 182.6 639.9 193.4zM61.9 188.1C62.7 220.1 83.7 234.0000000000001 90.9 227.1C98.2 220.1 95.5 205.1 81.8 195.7C68.1 186.2000000000001 61.9 188.1 61.9 188.1zM334.7 311.9000000000001S353.8 361.6 358.3 337.4000000000001S318.3 241.2000000000001 318.3 241.2000000000001C318.8 257.4000000000001 334.7 311.9000000000001 334.7 311.9000000000001zM357.5 173.5C344.9 140.5 314.2 153.9 314.2 153.9S310.7 165.7 320.6 198.8S353.9 219 353.9 219S370.1 206.6 357.5 173.5zM442.1 188.1S439.1 198.6 450.2000000000001 218.7C461.2 238.9 469.8000000000001 227.8 469.8000000000001 227.8S479.2 217.6 468.5000000000001 202.3S442.1000000000001 188.1 442.1000000000001 188.1z" />
+    <glyph glyph-name="empire"
+      unicode="&#xF1D1;"
+      horiz-adv-x="496" d=" M287.6 393.8C276.8 396 265.5 397.1 254.1 397.4V415.6C332.2000000000001 413.4 400.2000000000001 371.6 438.7000000000001 309L422.9000000000001 299.9C416.8 309.6 410.2000000000001 318.7000000000001 402.7000000000001 327L384.7000000000001 311.5C358.7000000000001 341.1 323.3000000000001 362.2 282.8000000000001 369.9L287.6000000000001 393.8zM53.4 125.6L76.4 133.3C70 151.6 66.4 171.5 66.4 192S69.7 232.4 76.1 250.7L53.4 258.4C57 269.2 61.7 279.7 67 289.4L51.2 298.5C34 267 24.1 230.5 24.1 192S34.1 117 51.2 85.4L67 94.5C61.7 104.5 57.3 114.8 53.4 125.6zM213.1 14C172.7 22 137.3 43.1 111.2 72.7L93.2 56.9C85.7 65.5 78.8 74.6 73 84.3L57 74.9C95.5 12.6 163.8 -29.4 241.9 -31.7V-13.4C230.6 -13.1 219.2 -11.7 208.4 -9.8L213.1 14zM93.3 327.1L111.3 311.6C137.3 341.2 172.7 362.3 213.2 370L208.5 393.8C219.3 396 230.6 397.1 242 397.4V415.6C163.9 413.4 95.9 371.6 57.4 309L73.2 299.9C79.2 309.6 85.8 318.8 93.3 327.1zM402.7 56.9L384.7 72.7C358.7 43.1 323.3 22 282.8 14L287.5 -9.8C276.7 -11.7 265.3999999999999 -13.1 254 -13.4V-31.7C332.0999999999999 -29.5000000000001 400.4 12.6 438.9 74.9L422.8 84.3C417.1 74.6 410.2 65.4999999999999 402.7 56.9zM496 192C496 55 385 -56 248 -56S0 55 0 192S111 440 248 440S496 329 496 192zM483.8 192C483.8 322.1 378.1 427.8 248 427.8S12.2 322.1 12.2 192S117.9 -43.8 248 -43.8S483.8 61.9 483.8 192zM444.8 298.6L429 289.5C434.3 279.8 439 269.3 442.6 258.5L419.9000000000001 250.8C426.3 232.5 429.6 212.6 429.6 192.1S426 151.7000000000001 419.6 133.4L442.6 125.7000000000001C438.7000000000001 114.9 434.3 104.7000000000001 429 94.7000000000001L444.8 85.6C462 117 471.9 153.5 471.9 192S462 267 444.8 298.6zM261.8 120.9C278.1 124.2 292.2 132.5 302.5 144.4L353.7 99.6C365.6 113.2 375 128.9 380.8 146.4L316.6 168.5C319.1 176 320.5 183.7 320.5 192S319.1 208.1 316.6 215.5L381.1 237.6C375 255 365.6 270.8 353.7000000000001 284.4L302.5000000000001 239.6C292.3000000000001 251.5 278.1000000000001 260.1 261.8000000000001 263.4L275.1000000000001 329.8C266.5000000000001 331.7 257.4000000000001 332.6 248.0000000000001 332.6C238.6000000000001 332.6 229.5000000000001 331.8 220.9000000000001 329.8L234.2000000000001 263.4C217.9000000000001 260.1 203.8000000000001 251.5 193.5000000000001 239.6L142.3000000000001 284.4C130.4000000000001 270.8 121.0000000000001 255.1 114.9000000000001 237.6L179.4000000000001 215.5C176.9000000000001 208 175.5000000000001 200.3 175.5000000000001 192S176.9000000000001 175.9 179.4000000000001 168.5L115.2000000000001 146.4C121.0000000000001 129 130.4000000000001 113.2 142.3000000000001 99.6L193.5000000000001 144.4C203.7000000000001 132.5 217.9000000000001 124.2 234.2000000000001 120.9L220.9000000000001 54.2C229.5000000000001 52.5 238.6000000000001 51.4 248.0000000000001 51.4C257.4000000000001 51.4 266.5000000000001 52.5 275.1000000000001 54.2L261.8000000000001 120.9z" />
+    <glyph glyph-name="envira"
+      unicode="&#xF299;"
+      horiz-adv-x="448" d=" M0 416C477.6 416 366.6 98.7 367.1 49.7L448 -32H422L351.6 39.2C312.6 35 227.2 4.7 137.2 76.2C47 147.7 52 233.3 0 416zM79.7 370C30 393.5 74.5 360.8 74.5 360.8C119.7 329.6 140.5 287.1 164.7 240.9C196.2 180.7 243.7 101.2 308.9 73.2C373.9 45.2 343.1 60.7 314.9 81.7C286.7 102.9 246.7 168.7 223.9 211.9C192.2 271.9 162.9 330.5 79.7 370z" />
+    <glyph glyph-name="erlang"
+      unicode="&#xF39D;"
+      horiz-adv-x="640" d=" M21.7 201.6C21.6 114.8 50.7 42.1 100.4 -10.5H0V394.5H87.2C45.7 344.3 21.6 278.3 21.7 201.6zM640 394.4H556.4C587.8 351.7 605.1 296.9 602.6 231.7C603.1 225.7 603.1 220 602.6 207.6H230.2C230 97.9 269.1 12.7 368.8 12.3C437.3 12.6 486.8 63.3 520.6999999999999 118.4L617.0999999999999 70.2C599.6999999999999 39.3 580.5999999999999 12.4 559.1999999999999 -10.6H640V394.4zM559.2 -10.6S559.2 -10.5 559.2 -10.6H559H559.2zM556.1 394.4H556.4L556.3 394.5L556.0999999999999 394.4zM325.4000000000001 384.8C279.5000000000001 384.7 240.3000000000001 351.3 236.2000000000001 301.6H406.1C405 351.3 371.6 384.7 325.4000000000001 384.8z" />
+    <glyph glyph-name="ethereum"
+      unicode="&#xF42E;"
+      horiz-adv-x="320" d=" M311.9 187.2L160 94.4L8 187.2L160 448L311.9 187.2zM160 64.6L8 157.4L160 -64L312 157.4L160 64.6z" />
+    <glyph glyph-name="etsy"
+      unicode="&#xF2D7;"
+      horiz-adv-x="384" d=" M384 100C382.25 89.25 370.25 -10 368.5 -32C250.621 -27.701 148.605 -27.257 0 -32V-6.5C45.457 2.448 60.627 1.519 61 28.75C62.793 101.072 64.524 272.8930000000001 61 350.75C59.971 379.2100000000001 48.87 377.515 0 386.75V412.25C73.886 409.892 255.933 403.699 362.999 416C359.499 377.75 355.249 289.5 355.249 289.5H332C320.947 332.335 313.241 380 277.25 380H140.25C130 380 129.5 376.5 129.5 370.25V206.5C187.5 206 218 209 218 209C247.77 209.951 245.56 217.502 258.75 274.251H284.5C280.093 172.9 280.59 212.422 282.75 114.001H257C247.845 154.087 247.935 175.046 217.499 175.501C217.499 175.501 195.999 177.501 129.499 177.501V38.501C129.499 12.501 143.749 0.251 173.749 0.251H263C326.636 0.251 329.564 25.247 361.751 100.001H384z" />
+    <glyph glyph-name="expeditedssl"
+      unicode="&#xF23E;"
+      horiz-adv-x="496" d=" M248 404.6C130.6 404.6 35.4 309.4 35.4 192S130.6 -20.6 248 -20.6S460.6 74.6 460.6 192S365.4 404.6 248 404.6zM150.6 271.7C150.6 325.4 194.3 369.1 248 369.1S345.4 325.4 345.4 271.7V245.1C345.4 240.1 341.5 236.2 336.5 236.2H318.8C313.8 236.2 309.9000000000001 240.1 309.9000000000001 245.1V271.7C309.9000000000001 353.8 185.9 353.8 185.9 271.7V245.1C185.9 240.1 182 236.2 177 236.2H159.3000000000001C154.3000000000001 236.2 150.4 240.1 150.4 245.1V271.7zM389.7 68C389.7 58.3 381.7 50.3 372 50.3H124C114.3 50.3 106.3 58.3 106.3 68V209.7C106.3 219.4 114.3 227.4 124 227.4H372C381.7 227.4 389.7 219.4 389.7 209.7V68zM141.7 205.3V72.4C141.7 69.9 139.8 68 137.3 68H128.4C125.9 68 124 69.9 124 72.4V205.3C124 207.8 125.9 209.7 128.4 209.7H137.3C139.8 209.7 141.7 207.8 141.7 205.3zM283.4 156.6C283.4 143.6 276.2 132.2000000000001 265.7 126.2000000000001V94.6C265.7 89.6 261.8 85.7000000000001 256.8 85.7000000000001H239.1C234.1 85.7000000000001 230.2 89.6 230.2 94.6V126.2000000000001C219.7 132.3000000000001 212.5 143.6 212.5 156.6C212.5 176.3 228.3000000000001 192 247.9000000000001 192S283.4000000000001 176.2000000000001 283.4000000000001 156.6zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -38.3C121 -38.3 17.7 65 17.7 192S121 422.3 248 422.3S478.3 319 478.3 192S375 -38.3 248 -38.3z" />
+    <glyph glyph-name="facebook-f"
+      unicode="&#xF39E;"
+      horiz-adv-x="264" d=" M76.7 -64V165H0V256H76.7V327.7C76.7 405.6 124.3 448 193.8 448C227.1 448 255.7 445.5 264 444.4V363H215.8C178 363 170.7 345 170.7 318.7V256H256L244.3 165H170.7V-64" />
+    <glyph glyph-name="facebook-messenger"
+      unicode="&#xF39F;"
+      horiz-adv-x="448" d=" M224 416C15.9 416 -77.5 170 84.6 47.4V-32L160.3 10C302.5 -29.8 445.7 69.9 445.7 208.7C445.8 323.2 346.5 416 224 416zM247.4 137.9L190 197.5L79.6 136.4L200.7 264.9L258.1 205.3L368.5 266.4L247.4 137.9z" />
+    <glyph glyph-name="facebook-square"
+      unicode="&#xF082;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.5 426.5 -32 400 -32H314.7V145.2H375.3L384 212.8H314.7V256C314.7 275.6 320.1 288.9 348.2 288.9H384V349.3C377.8 350.1 356.6 352 331.8 352C280.2 352 244.8 320.5 244.8 262.6V212.7H184V145.1H244.9V-32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368z" />
+    <glyph glyph-name="facebook"
+      unicode="&#xF09A;"
+      horiz-adv-x="448" d=" M448 391.3V-7.2C448 -20.9 436.9 -31.9 423.3 -31.9H309.1V141.5H367.3L376 209.1H309V252.3C309 271.9 314.4 285.2000000000001 342.5 285.2000000000001H378.3V345.7000000000001C372.1 346.5 350.9000000000001 348.4000000000001 326.1 348.4000000000001C274.5 348.4000000000001 239.1 316.9000000000001 239.1 259V209.1H180.7V141.5H239.1V-32H24.7C11.1 -32 0 -20.9 0 -7.3V391.3C0 404.9 11.1 416 24.7 416H423.2C436.9 416 448 404.9 448 391.3z" />
+    <glyph glyph-name="fantasy-flight-games"
+      unicode="&#xF6DC;"
+      horiz-adv-x="512" d=" M256 415.14L32.86 192L256 -31.14L479.14 192L256 415.14zM88.34 192.17C90.3 194.17 100.26 204.47 184.83 289.65C226.28 331.4 271.02 333.42 304.6 308.34C329.23 289.94 366.66 249.44 366.75 249.34C367.43 248.6 367.82 246.48 367.33 245.96C356.06 234.12 344.6499999999999 222.42 333.83 211.27C299.62 243.58 293.31 249.51 285.32 255.22C267.55 267.91 243.92 265.35 228.34 250.12C226.17 247.99 226.55 246.69 228.46 244.77C231.4 241.82 256.56 216.44 263.55 208.99C251.6 197.39 239.89 186.02 227.86 174.33C215.84 186.87 203.38 199.86 191.32 212.44C169.93 191.35 149.63 171.33 129.47 151.45A42569.01 42569.01 0 0 0 88.34 192.17zM323.16 90.57C287.67 55.14 245.07 52.43 216.17 70.1C194.09 83.6 176.79 102.18 143.24 136.9400000000001C155.29 149.3100000000001 167.03 161.3600000000001 178.61 173.2500000000001C211.63 141.34 215.67 137.2400000000001 223.29 131.1600000000001C241.77 116.4200000000001 265.81 117.4900000000001 282.61 132.9600000000001C286.29 136.3500000000001 286.3 136.6000000000001 282.75 140.2000000000001C272.16 150.9300000000001 261.56 161.6400000000001 250.98 172.3800000000001C249.66 173.7200000000001 247.95 174.8600000000001 250.1799999999999 177.0700000000001C260.9699999999999 187.7800000000001 271.6599999999999 198.5900000000001 282.39 209.3600000000001C282.6499999999999 209.6200000000001 283.0399999999999 209.7400000000001 284.3 210.4300000000001C296.67 197.5600000000001 309.22 184.5100000000001 321.55 171.6800000000001C342.56 192.4100000000001 362.79 212.3600000000001 382.8 232.1000000000001C396.48 218.7000000000001 409.93 205.5200000000001 423.66 192.0700000000001C403.49 171.2100000000001 341.98 109.3600000000001 323.16 90.5700000000001zM256 448L0 192L256 -64L512 192L256 448zM16 192L256 432L496 192L256 -48L16 192z" />
+    <glyph glyph-name="fedex"
+      unicode="&#xF797;"
+      horiz-adv-x="640" d=" M586 163.5L639.3 223.4H576.9L555.1999999999999 198.6L532.6999999999999 223.4H414V239.4H470.1V287.5H318.9V212H318.4C308.8 223 296.9 226.8 283 226.8C254.6 226.8 233.2 207.4 225.7 181.9C207.7 241.3000000000001 128.3 239.5000000000001 103.8 195.9V220.1H49V246.3H109V287.4H0V103H49V180.5H97.9C96.4 174.8 95.6 168.7 95.6 162.3C95.6 89.2000000000001 198.2 70.9 225.8 138.6H183.8C169.1 117.7000000000001 138 129.7000000000001 138 153.2000000000001H223.5C227.2 122.7000000000001 250.9 96.3000000000001 283.6 96.3000000000001C297.7000000000001 96.3000000000001 310.6 103.2000000000001 318.5 114.9000000000001H319V103H531.2L553.3000000000001 128L575.6 103H640L586 163.5zM139.3 180.1C145.4 206.4 181 205.7 185.8 180.1H139.3zM292.7000000000001 131.2000000000001C258.1 131.2000000000001 258.7000000000001 194.0000000000001 292.7000000000001 194.0000000000001C325.3000000000001 194.0000000000001 327.2000000000001 131.2000000000001 292.7000000000001 131.2000000000001zM460.5000000000001 112.1H366.1V278.6H461.1V248.4H405V214.5H460.5V186.4H404.4V141.7H460.5V112.1zM414.6000000000001 151.9V176.3H470.7000000000001V220.3L521.4000000000001 163.3L470.7000000000001 106.3V151.9H414.6000000000001zM553.2 141.6L527.1 112.1H489L534.6 163.3L489 214.5H528.7L555.3000000000001 185.2L580.9000000000001 214.5H619.4000000000001L574.0000000000001 163.5L620.0000000000001 112.1H579.5000000000001L553.2000000000002 141.6z" />
+    <glyph glyph-name="fedora"
+      unicode="&#xF798;"
+      horiz-adv-x="448.44" d=" M53.62 -31.56C23.83 -31.48 -0.08 -7.45 0 22.34L0.44 192.58C0.76 316.29 101.31 416.32 225.02 416C348.73 415.68 448.76 315.13 448.44 191.42S347.57 -32.32 223.86 -32L53.62 -31.56M289.84 362.07C231.6 362.2200000000001 184.44 315.3 184.29 257.06L184.15 201.06L141.59 201.17C108.96 201.25 108.84 151.97 141.46 151.89L175.06 151.8C179.54 151.79 184.01 147.3 184 142.82L183.88 95.78C183.8 64.87 158.65 39.85 127.74 39.93C118.37 39.9499999999999 118.34 41.5199999999999 112.06 41.54C98.84 41.5699999999999 87.62 30.4 87.58 16.96C87.54 1.39 101.77 -7.28 107.45 -7.28C168.77 -20.1300000000001 232.98 26.36 233.16 95.66L233.3 151.66L275.86 151.55C308.51 151.47 308.56 200.75 275.99 200.83L242.39 200.92C237.44 200.93 233.44 204.95 233.45 209.9L233.57 256.94C233.67 297.4599999999999 272.2 317.81 299.57 311.87C314.93 307.99 329.83 320.3 329.87 335.76C329.8999999999999 347.86 321.19 357.9599999999999 310 359.78C303.2799999999999 361.36 296.7799999999999 362.05 289.8399999999999 362.07M108.8399999999999 184.68L97 196.59C92.29 195.26 87.58 193.48 83.32 191.25L110.35 164.08C108.79 168.12 107.91 172.15 107.92 176.63M101.76 46.72H100.19H101.76M80.85 16.98C80.86 22.13 82.22 27.06 84.47 31.31L22.58 93.52C22.56 85.9 23.66 78.73 25.44 71.56L80.85 15.86V16.98M86.4 -0.96C84.39 1.96 83.06 4.87 82.17 8.23L27.88 62.8C37.44 34.12 58.88 10.99 86.4 -0.96M308.6 168.04L320.44 156.1400000000001C325.15 157.47 329.86 159.2500000000001 334.12 161.48L307.0900000000001 188.65C308.6500000000001 184.61 309.5300000000001 180.5800000000001 309.5200000000001 176.1M336.8100000000001 335.74C336.8000000000001 330.5900000000001 335.2200000000001 326.11 332.9600000000001 321.4100000000001L394.85 258.75C394.6500000000001 266.81 393.7700000000001 273.98 392 281.16L336.82 337.3L336.81 335.74M331.0300000000001 353.68C333.04 350.76 334.37 347.85 335.2600000000001 344.49L389.5500000000001 289.92C380.0000000000001 318.61 358.5600000000001 341.73 331.0300000000001 353.68M315.51 154.8L307.02 163.33C305.22 159.08 302.74 155.28 299.37 151.93C304.98 152.37 310.36 153.47 315.51 154.8M363.97 182.23L329.12 217.26A64.478 64.478 0 0 0 318.57 208.78L353.87 173.3C357.4599999999999 176.2 360.82 179.1 363.97 182.23M350.27 170.62L314.07 206.55C310.03 204.32 305.32 202.99 300.39 201.88L338.37 163.48C342.42 165.71 346.46 168.16 350.27 170.62M375.65 196.09L339.9 232.02C337.65 227.77 335.18 223.97 332.25 220.62L367.1 185.59C370.0300000000001 188.9400000000001 372.9500000000001 192.29 375.6500000000001 196.09M384.8800000000001 211.97L345.3300000000001 251.7200000000001C344.8700000000001 246.35 343.73 241.2 341.7100000000001 236.5000000000001L378.1300000000001 199.8900000000001C380.6000000000001 203.6900000000001 382.8500000000001 207.7200000000001 384.8800000000001 211.9700000000001M394.8400000000001 252.9400000000001L330.5 317.6200000000001C327.8 313.8200000000001 324.43 310.6900000000001 320.62 308.4600000000001L392.56 236.3700000000001C393.9100000000001 241.5100000000001 394.6 247.5600000000001 394.84 252.9400000000001M391.64 230.7700000000001L338.47 284.2200000000001C342.71 276.37 345.37 267.4000000000001 345.57 257.99L386.9 216.4400000000001C388.71 221.1400000000001 390.29 225.8400000000001 391.64 230.7700000000001M63.57 179.42C59.98 176.5200000000001 56.39 173.61 53.47 170.04L88.32 135.4500000000001C91.46 138.5800000000001 95.06 141.48 98.87 143.9300000000001L63.57 179.4200000000001M78.83 189.2400000000001C75.02 187.0100000000001 70.98 184.5600000000001 67.61 182.1000000000001L102.91 146.1700000000001C107.4 148.4000000000001 112.33 149.9500000000001 117.03 150.8400000000001L78.83 189.2400000000001M118.06 200.7900000000001C112.46 200.3600000000001 107.08 199.2500000000001 101.92 197.9200000000001L110.41 189.3900000000001C112.44 193.6300000000001 114.92 197.4400000000001 118.06 200.7900000000001M24.66 116.8000000000001C23.53 111.2000000000001 22.62 105.6100000000001 22.6 99.7800000000001L86.95 35.5500000000001C89.65 38.9000000000002 93.01 42.0300000000001 96.83 44.2600000000001L24.66 116.8M39.31 152.8300000000001C36.84 149.03 34.59 145.0000000000001 32.56 140.7500000000001L72.11 101C72.57 106.37 73.71 111.52 75.73 116.22L39.31 152.8300000000001M30.54 136.5000000000001C28.74 131.5800000000001 27.16 126.8800000000001 25.8 121.9500000000001L78.53 68.5000000000001C74.74 76.3500000000001 72.08 85.3200000000001 71.88 94.7300000000001L30.54 136.5M50.33 167.14C47.41 163.79 44.49 160.44 41.79 156.63L77.54 120.7C79.79 125.17 82.26 128.75 85.19 132.1L50.33 167.14z" />
+    <glyph glyph-name="figma"
+      unicode="&#xF799;"
+      horiz-adv-x="341.3" d=" M341.3 192C341.3 144.9 303.1 106.7 256 106.7S170.7 144.9 170.7 192S208.9 277.3 256 277.3S341.3 239.1 341.3 192zM256 277.3C303.1 277.3 341.3 315.5 341.3 362.6S303.1 448 256 448H85.3C38.2 448 0 409.8 0 362.7S38.2 277.4 85.3 277.4C38.2 277.3 0 239.1 0 192S38.2 106.7 85.3 106.7C38.2 106.7 0 68.5 0 21.3S38.2 -64 85.3 -64S170.6 -25.8 170.6 21.3V277.3H256z" />
+    <glyph glyph-name="firefox"
+      unicode="&#xF269;"
+      horiz-adv-x="480" d=" M478.1 212.7C477.4 217.2 476.7 219.8 476.7 219.8S474.9 217.8 472.0000000000001 213.9C471.1000000000001 224.6 469.2 235.1 466.2 245.5C462.5000000000001 258.4 457.7 270.9 451.7 282.9C447.9000000000001 290.9 443.5000000000001 298.5 438.4000000000001 305.7C436.6 308.4 434.7000000000001 311.1 432.8 313.6C424 328 413.8 336.9 402.1 353.6C394.5 366.4 389.2000000000001 380.5 386.7000000000001 395.2C383.5000000000001 386.3 381.0000000000001 377.2 379.3000000000001 367.9C367.2000000000001 380.1 356.8000000000001 388.7 350.4000000000001 394.6C319.4 423.8 323 438.9 323 438.9S264.7 373.8 289.9 306C298.6 283 313.7 262.9 333.3 248.1C357.7 227.9 384.1 212.1 398 171.5C386.8 192.8 369.8999999999999 210.7 349.2 223C355.3999999999999 208.3 358.5999999999999 192.4 358.5 176.5C358.5 115.5 308.8999999999999 66 247.9 66.1C239.6 66.1 231.4 67 223.4 68.9C213.9 70.7000000000001 204.7 73.8 196 78.2000000000001C183.0999999999999 86.0000000000001 172 96.3000000000001 163.1999999999999 108.5000000000001L163 108.8000000000001L165 108.1000000000001C169.5999999999999 106.5000000000001 174.1999999999999 105.3000000000001 179 104.4000000000001C197.6999999999999 100.4000000000001 217.3 102.7000000000001 234.6 111.0000000000001C252.1 120.7000000000001 262.5999999999999 127.9000000000001 271.2 125.0000000000001H271.3999999999999C279.7999999999999 122.3000000000001 286.3999999999999 130.5000000000001 280.3999999999999 139.0000000000001C270 152.4000000000001 252.9999999999999 159.0000000000001 236.2 156.0000000000001C218.6999999999999 153.5000000000001 202.6999999999999 141.0000000000001 179.7999999999999 153.1000000000001C178.2999999999999 153.9000000000002 176.8999999999999 154.7000000000002 175.4999999999999 155.6000000000001C173.8999999999999 156.5000000000001 180.3999999999999 154.3000000000001 178.8999999999999 155.3000000000001C173.8999999999999 157.8000000000001 169.0999999999999 160.7000000000001 164.4999999999999 163.9000000000002C164.1999999999999 164.2000000000002 167.9999999999999 162.8000000000001 167.5999999999999 163.1000000000001C161.6999999999999 167.1000000000001 156.5999999999999 172.3000000000001 152.5999999999999 178.3000000000001C148.4999999999999 185.7000000000001 148.0999999999999 194.7000000000001 151.5999999999999 202.4000000000001C153.6999999999999 206.2000000000001 156.9999999999999 209.3000000000001 160.8999999999999 211.1000000000001C163.8999999999999 209.6000000000001 165.6999999999999 208.5000000000001 165.6999999999999 208.5000000000001S164.3999999999999 211.0000000000001 163.5999999999999 212.3000000000001C163.9 212.4000000000001 164.0999999999999 212.3000000000001 164.4 212.5000000000001C167 211.4000000000001 172.7 208.5000000000001 175.8 206.7000000000001C177.9 205.6000000000001 179.6 204.0000000000001 181 202.0000000000001C181 202.0000000000001 182 202.5000000000001 181.3 204.7000000000001C180.2 207.4000000000001 178.4 209.7000000000001 175.9 211.3000000000001H176.0999999999999C178.4 210.1000000000001 180.5999999999999 208.7000000000001 182.6999999999999 207.2000000000001C184.5999999999999 211.6000000000001 185.5 216.4000000000001 185.2999999999999 221.2000000000001C185.4999999999999 223.8000000000001 185.0999999999999 226.5000000000001 184.1999999999999 229.0000000000001C183.3999999999999 230.6000000000001 184.6999999999999 231.2000000000001 186.0999999999999 229.5000000000001C185.9 230.8000000000002 185.4 232.0000000000001 184.9 233.2000000000001V233.3000000000001S185.7 234.4000000000001 186.0999999999999 234.8000000000001C187.0999999999999 235.8000000000001 188.1999999999999 236.7000000000001 189.5 237.5000000000001C196.6999999999999 242.0000000000001 204.3 245.9000000000001 212.1999999999999 249.1000000000001C218.5999999999999 251.9000000000001 223.8999999999999 254.0000000000001 225 254.7000000000001C226.6 255.7000000000001 228.1 256.9000000000001 229.5 258.2000000000001C234.8 262.7000000000001 238.5 269.0000000000001 239.7 275.9000000000001C239.8 276.8000000000001 239.8999999999999 277.7000000000001 240 278.7000000000001V280.2000000000001C239.1 283.7000000000001 233.1 286.3000000000001 201.5999999999999 289.3000000000001C190.5 291.1000000000001 181.5999999999999 299.4000000000001 179.0999999999999 310.4000000000001V310.3000000000001C178.6999999999999 309.2000000000001 178.1999999999999 308.0000000000001 177.7999999999999 306.8000000000001C178.1999999999999 308.0000000000001 178.5999999999999 309.1000000000001 179.0999999999999 310.3000000000001V310.5000000000001C185.0999999999999 326.2000000000001 195.9 339.6 209.9 348.8000000000001C210.7 349.5000000000001 206.7 348.6 207.5 349.3000000000001C210.1999999999999 350.6 212.9 351.8000000000001 215.6999999999999 352.8000000000001C217.0999999999999 353.4000000000001 209.6999999999999 356.2000000000001 203.0999999999999 355.5000000000001C199.0999999999999 355.3000000000001 195.0999999999999 354.3000000000001 191.4 352.7000000000001C193 354.0000000000001 197.5999999999999 355.8000000000001 196.5 355.8000000000001C188.0999999999999 354.2000000000001 180 351.1 172.5999999999999 346.8000000000001C172.5999999999999 347.6 172.6999999999999 348.3000000000001 173.0999999999999 349.0000000000001C167.1999999999999 346.5000000000001 162.0999999999999 342.5000000000001 158.0999999999999 337.5000000000001C158.1999999999999 338.4000000000001 158.2999999999999 339.3000000000001 158.2999999999999 340.2000000000001C155.5999999999999 338.2000000000001 153.0999999999999 335.9000000000001 150.9999999999999 333.3000000000001L150.8999999999999 333.2000000000001C133.4999999999999 339.9000000000001 114.5999999999999 341.5000000000001 96.2999999999999 337.9000000000001L96.0999999999999 338.0000000000001H96.2999999999999C92.4999999999999 341.1 89.1999999999999 344.7000000000001 86.5999999999999 348.9000000000001L86.3999999999999 348.8000000000001L85.9999999999999 349.0000000000001C84.7999999999999 350.8000000000001 83.5999999999999 352.8000000000001 82.2999999999999 355.0000000000001C81.3999999999999 356.6000000000001 80.4999999999999 358.4000000000001 79.5999999999999 360.2000000000001C79.5999999999999 360.3000000000001 79.4999999999999 360.4000000000001 79.3999999999999 360.4000000000001C78.9999999999999 360.4000000000001 78.7999999999999 358.7000000000001 78.4999999999999 359.1000000000001V359.2000000000001C75.2999999999999 367.5000000000001 73.7999999999999 376.4000000000001 74.0999999999999 385.4000000000001L73.8999999999999 385.3000000000001C68.7999999999999 381.8000000000001 64.8999999999999 376.7000000000001 62.7999999999999 370.8000000000001C61.8999999999999 368.7000000000001 61.1999999999999 367.5000000000001 60.5999999999999 366.3000000000001V366.8000000000001C60.6999999999999 367.9000000000001 61.1999999999999 370.1000000000001 61.0999999999999 369.9000000000001C60.9999999999999 369.7000000000001 60.8999999999999 369.6000000000001 60.7999999999999 369.5000000000001C59.2999999999999 367.8000000000001 57.8999999999999 365.8000000000001 56.8999999999999 363.7000000000001C55.9999999999999 361.8000000000001 55.1999999999999 359.8000000000001 54.5999999999999 357.8000000000001C54.4999999999999 357.5000000000001 54.5999999999999 358.1 54.5999999999999 358.8000000000001S54.6999999999999 360.8000000000001 54.5999999999999 360.5000000000001L54.2999999999999 359.8000000000001C47.5999999999999 344.9000000000001 43.3999999999999 329.0000000000001 41.8999999999999 312.7000000000001C41.4999999999999 309.9000000000001 41.2999999999999 307.1 41.3999999999999 304.4000000000001V304.2000000000001C36.5999999999999 299.0000000000001 32.3999999999999 293.2000000000001 28.6999999999999 287.1C16.5999999999999 266.7000000000001 7.5999999999999 244.6000000000001 1.8999999999999 221.5000000000001C5.8999999999999 230.3000000000001 10.6999999999999 238.7000000000001 16.1999999999999 246.6000000000001C5.5 219.5 0 190.6 0 161.4C1.8 170 4.2 178.4 7 186.7C5.3 152.2 11.9 117.8 26.4 86.4C45.8 42.9 78 6.4 118.7 -18.3C135.3 -29.5 153.4 -38.2 172.5 -44.1C175 -45 177.6 -45.9 180.2 -46.8C179.4 -46.5 178.6 -46.1 177.8 -45.8C200.4 -52.6 224 -56.1 247.6 -56.1C331.3 -56.1 358.9 -24.2 361.4 -21.1C365.5 -17.4 368.9 -12.9 371.3 -7.8C372.9 -7.1 374.5 -6.4 376.2 -5.7L377.2 -5.2L379.0999999999999 -4.3C391.7 1.6 403.5999999999999 9.1 414.3999999999999 17.8C430.7 29.5 442.2999999999999 46.5 447.2999999999999 65.9C450.2999999999999 73.0000000000001 450.3999999999999 80.9 447.6999999999999 88.1C448.5999999999999 89.5 449.3999999999999 90.9 450.3999999999999 92.4C468.3999999999999 121.3 478.5999999999999 154.3 479.9999999999999 188.3000000000001V191.1000000000001C479.9999999999999 198.4000000000001 479.3999999999999 205.6000000000001 478.0999999999999 212.7000000000001z" />
+    <glyph glyph-name="first-order-alt"
+      unicode="&#xF50A;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -48.21C115.34 -48.21 7.79 59.34 7.79 192S115.34 432.21 248 432.21S488.21 324.66 488.21 192S380.6600000000001 -48.21 248 -48.21zM248 411.7100000000001C126.66 411.71 28.29 313.3400000000001 28.29 192S126.66 -27.71 248 -27.71S467.71 70.66 467.71 192S369.34 411.71 248 411.71zM248 -19.51C131.19 -19.51 36.49 75.18 36.49 192S131.19 403.51 248 403.51S459.51 308.81 459.51 192S364.81 -19.51 248 -19.51zM434.23 143.47A191.613 191.613 0 0 0 414.1 94.78L339.9700000000001 130.66L401.4500000000001 75.84A193.515 193.515 0 0 0 364.2500000000001 38.55L309.4500000000001 100.12L345.3300000000001 25.85A190.94399999999996 190.94399999999996 0 0 0 296.7000000000001 5.62L269.4100000000001 84.09L274.2000000000001 1.16C265.5900000000001 -0.02 256.8000000000001 -0.64 247.8700000000001 -0.64S230.1500000000001 -0.02 221.5400000000001 1.16L226.3000000000001 83.62L199.1500000000001 5.59A191.365 191.365 0 0 0 150.5000000000001 25.79L186.4300000000001 100.13L131.5600000000001 38.49A193.85 193.85 0 0 0 94.3400000000001 75.77L155.9300000000001 130.67L81.6700000000001 94.74A191.638 191.638 0 0 0 61.5300000000001 143.43L139.3700000000001 170.54L57.1400000000001 165.78C55.9800000000001 174.35 55.3600000000001 183.1 55.3600000000001 191.99C55.3600000000001 200.99 55.9900000000001 209.83 57.1800000000001 218.5L139.5600000000001 213.7299999999999L61.6200000000001 240.89A191.726 191.726 0 0 0 81.8500000000001 289.56L156.0700000000001 253.64L94.55 308.5A193.85 193.85 0 0 0 131.8300000000001 345.7199999999999L186.59 284.19L150.7600000000001 358.36A191.48999999999998 191.48999999999998 0 0 0 199.4100000000001 378.49L226.2800000000001 301.24L221.5700000000001 382.85C230.1800000000001 384.03 238.9600000000001 384.65 247.8900000000001 384.65S265.6 384.03 274.2100000000001 382.85L269.4700000000001 300.69L296.5200000000001 378.45C313.79 373.95 330.1200000000001 367.1 345.1500000000001 358.28L309.3300000000001 284.16L364.0500000000001 345.63A193.12999999999997 193.12999999999997 0 0 0 401.2900000000001 308.4L339.8400000000001 253.63L413.9600000000001 289.49A191.51499999999996 191.51499999999996 0 0 0 434.1600000000001 240.84L356.3500000000001 213.74L438.5900000000001 218.49C439.7800000000001 209.83 440.4100000000001 200.99 440.4100000000001 192C440.4100000000001 183.12 439.8000000000001 174.37 438.6300000000001 165.81L356.5100000000001 170.56L434.2300000000002 143.47z" />
+    <glyph glyph-name="first-order"
+      unicode="&#xF2B0;"
+      horiz-adv-x="448" d=" M12.9 218.8C13 218.9 13.1 219.1 13.2 219.2C13.2 219.1 13.2 218.9 13.1 218.8H12.9zM224 351.4C216.9 351.4 209.4 350.8 202.6 349.7L206.3 282.3L184.3 346.3C170 342.6 156.6 336.9 144.3 329.7000000000001L173.7 268.3L128.6 319.2000000000001C117.2 310.3 106.9 300.1 98 288.3L148.6 242.9L87.5 272.6C80.4 260.3 74.6 246.9 70.9 232.6L135.2 210L67.2 214C66.3 206.9 65.8 199.4 65.8 192S66.4 177.4 67.2 170.3L134.9 174.3L70.9 151.7C74.6 137.4 80.3 124 87.5 111.4L148.6 141.1L97.7 96C106.6 84.3 116.8 73.7 128.6 65.1L173.5 116L144 54.6C156.3 47.2 169.7 41.5 184 37.7L206.3 102.3000000000001L202.3 34.3000000000001C209.4 33.2 216.9 32.6000000000001 224 32.6000000000001C231.4 32.6000000000001 238.6 33.2000000000001 245.7 34.3000000000001L241.7 102.9000000000001L264.3 37.8000000000001C278.6 41.8000000000001 292 47.2 304.3 54.7L274.9 116L319.8 65.1C331.5 74 341.8 84.2000000000001 350.4 96L299.8 141.1L360.9 111.7000000000001C368 124.0000000000001 373.8 137.4 377.5 152.0000000000001L313.5 174.3000000000001L380.9 170.3000000000001C382 177.4000000000001 382.3 184.6000000000001 382.3 192.0000000000001S382 206.9000000000001 380.9 214.0000000000001L313.2 210.0000000000001L377.2 232.3000000000001C373.5 246.6000000000001 368.1 260.3000000000001 360.6 272.6000000000001L299.7 242.9000000000001L350.3 288.3000000000001C341.4000000000001 300.0000000000001 331.2 310.3000000000001 319.7 319.2000000000001L274.6 268.3000000000001L304 329.4000000000001C291.7 336.8000000000001 278.3 342.5000000000001 264 346.3000000000001L241.7 282L245.7 349.7C238.6 350.9 231.4 351.4 224 351.4zM443.4 320V64L224 -64L4.6 64V320L224 448L443.4 320zM426.3 309.7L224 427.1L21.7 309.7V74.6L224 -43.1L426.3 74.6V309.7zM224 410.9L411.7 301.5V82.6L224 -26.9L36.3 82.6V301.4L224 410.9zM224 360C131.7 360 57.1 284.9 57.1 192C57.1 99.4 131.7 24.3 224 24.3C316 24.3 390.9 99.4 390.9 192C390.9 284.9 316 360 224 360z" />
+    <glyph glyph-name="firstdraft"
+      unicode="&#xF3A1;"
+      horiz-adv-x="384" d=" M384 256H320V128H192V0H0V25.6H166.4V153.6H294.4V281.6H384V256zM358.4 217.6V89.6H230.4V-38.4H64V-64H256V64H384V217.6H358.4zM384 25.6H294.4V-64H320V0H384V25.6zM0 448V64H128V192H256V320H384V448H0z" />
+    <glyph glyph-name="flickr"
+      unicode="&#xF16E;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM144.5 129C109.4 129 81 157.4 81 192.5S109.4 256 144.5 256S208 227.6 208 192.5S179.6 129 144.5 129zM303.5 129C268.4 129 240 157.4 240 192.5S268.4 256 303.5 256S367 227.6 367 192.5S338.6 129 303.5 129z" />
+    <glyph glyph-name="flipboard"
+      unicode="&#xF44D;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM358.4 236.8H268.8V147.2000000000001H179.2V57.6H89.6V326.4H358.4V236.8z" />
+    <glyph glyph-name="fly"
+      unicode="&#xF417;"
+      horiz-adv-x="384" d=" M197.8 20.2C210.7 8.5 231.5 -13.1 231 -30.5C231 -31.3 230.9 -32.1 230.9 -33C229.1 -52.8 212.1 -64.1 191.8 -64C166.8 -63.9 151.9 -47.2 153.1 -28.2C154.1 -12 173.6 8.5 185.5 19.4C187.8000000000001 21.5000000000001 188.2 22.1 191.1 23.0000000000001C194.5 23.0000000000001 195 22.7 197.8 20.2zM331.9 380.7C315.6 406.4 293.3 421.3 268.6 432.8C243.1 443.5 214 448.2 192 448C147.9 448 120.8 434.8 110.9 430.7C57.3 402.8 26.5 360.8 28 289.4C35.1 207.2 125 113.4 183.8 55.6C185.5 54 188.3 51.1 190 50.5L193.3 50.4C195.4 51.1 195.1 50.9 196.8 52.5C249.1 101.7 337.5 198.3 352.7000000000001 268.2C359.7000000000001 307.4 355.8000000000001 340.7 331.9000000000001 380.7zM186.8 96.1C158.8 147.2000000000001 121.6 226.8 117.5 285.1C114.1 332.6 128.9 416.3 186.8 421.8V96.1zM328.7 268C312.3 211.2 251.4 140 209.8 97.7C237.6 149.6 275 231 277 289.6C278.6 335.5 267.2 395.4 229 421C317.8 402.7 344.5 322.9 328.7 268z" />
+    <glyph glyph-name="font-awesome-alt"
+      unicode="&#xF35C;"
+      horiz-adv-x="448" d=" M397.8 380.2C405.6 380.2 412.1 373.6 412.1 365.9V18.3C412.1 10.4999999999999 405.5 3.9999999999999 397.8 3.9999999999999H50.2C42.4 3.9999999999999 35.9 10.6 35.9 18.3V365.8C35.9 373.6 42.5 380.1 50.2 380.1H397.8M397.8 416H50.2C22.7 416 0 393.3 0 365.8V18.2C0 -9.3 22.7 -32 50.2 -32H397.8C425.3 -32 448 -9.3 448 18.2V365.8C448 393.3 425.3 416 397.8 416zM339.3 276.8C333.3 276.8 309.4000000000001 261.3 286.7 261.3C282.5 261.3 278.3 261.9 274.2 263.7000000000001C254.5 271.5 237.2 277.4 215.1 277.4C194.8 277.4 173.3 270.8 155.4 263.7000000000001C153.6 263.1 151.8 262.5 150.6 261.9V279.8C158.4 285.8 163.1 294.7000000000001 163.1 305.5C163.1 323.4 148.8 337.8 130.8 337.8S98.5 323.5 98.5 305.5C98.5 295.3 103.3 285.8 111 279.8V67.7000000000001C111 56.9 120 48.0000000000001 130.7 48.0000000000001C139.7 48.0000000000001 146.8 54.0000000000001 149.2 61.7000000000001V63C149.8 64.8 149.8 66 149.8 67.8V112C151 112 152.2 112.6 152.8 113.2C172.5 121.6 195.8 129.9 218.5 129.9C249.6 129.9 261.5 113.8 287.8 113.8C306.3 113.8 324.2 120.4 339.8 127.5C344 129.3 347 131.1 347 135.3V269.7C348.8 273.8 344.7 276.8 339.3 276.8z" />
+    <glyph glyph-name="font-awesome-flag"
+      unicode="&#xF425;"
+      horiz-adv-x="448" d=" M444.373 88.576C444.373 81.408 438.229 78.336 431.061 75.264C402.389 62.976 371.669 51.712 338.901 51.712C292.821 51.712 271.317 80.384 216.021 80.384C176.085 80.384 134.101 66.048 100.309 50.688C98.261 49.664 96.213 49.664 94.165 48.64V-29.184C94.165 -50.5890000000001 78.043 -64 60.373 -64C40.9169999999999 -64 25.5569999999999 -48.64 25.5569999999999 -29.184V345.6C12.245 355.8400000000001 3.029 372.224 3.029 390.656C3.029 422.4 28.629 448 60.373 448S117.717 422.4 117.717 390.656C117.717 372.224 109.525 355.8400000000001 95.189 345.6V313.856C99.313 315.23 153.957 342.528 209.877 342.528C275.147 342.528 307.553 314.88 336.853 314.88C375.765 314.88 418.773 342.528 429.0130000000001 342.528C437.2050000000001 342.528 444.3730000000001 336.384 444.3730000000001 329.216V88.576z" />
+    <glyph glyph-name="font-awesome"
+      unicode="&#xF2B4;"
+      horiz-adv-x="448" d=" M397.8 416H50.2C22.7 416 0 393.3 0 365.8V18.2C0 -9.3 22.7 -32 50.2 -32H397.8C425.3 -32 448 -9.3 448 18.2V365.8C448 393.3 425.3 416 397.8 416zM352.4000000000001 131.7C352.4000000000001 127.5 348.8 125.7 344.6 123.9C327.9000000000001 116.7 310 110.2 290.8 110.2C263.9000000000001 110.2 251.4 126.9 219.1 126.9C195.8 126.9 171.3 118.5 151.6 109.6C150.4 108.9999999999999 149.2 108.9999999999999 148 108.4V63C148 61.2 148 59.4 147.4 58.2V57C145 48.6 137.2000000000001 42.7 128.3000000000001 42.7C117.0000000000001 42.7 108 51.7 108 63V281.6C100.2000000000001 287.6 94.9000000000001 297.1 94.9000000000001 307.9C94.9000000000001 326.4 109.8000000000001 341.4 128.4 341.4C146.9 341.4 161.9 326.5 161.9 307.9C161.9 297.1 157.1 287.6 148.8000000000001 281.6V263.1C150.6000000000001 263.7 152.4 264.3 154.2000000000001 265.5C172.7000000000001 273.3 194.8000000000001 279.8 215.7000000000001 279.8C238.4000000000001 279.8 256.3000000000001 273.8 276.6 266.1C280.8 264.3 285 263.7000000000001 289.7000000000001 263.7000000000001C312.4000000000001 263.7000000000001 337.5000000000001 279.8 343.5000000000001 279.8C348.3000000000001 279.8 352.5000000000001 276.2000000000001 352.5000000000001 272V131.7z" />
+    <glyph glyph-name="fonticons-fi"
+      unicode="&#xF3A2;"
+      horiz-adv-x="384" d=" M114.4 224H206.8L191.6 172.8H115.2V15C115.2 7 112.4 5.8 119.6 5L179.2 -0.6V-35H0V0.2L29.2 3C36.4 3.8 38.4 6.2 38.4 13.8V169.6C38.4 172.8 34.4 172.8 30.4 172.8H0V224H38.4V252.8C38.4 320.8 74.8 348.8 144.4 348.8C191.2 348.8 233.2 337.6 233.2 276.4L163.6 268C164 293.6 157.6 299.6 141.2 299.6C116 299.6 115.2 286 115.2 262V230C115.2 226.8 110.4 224 114.4 224zM384 -35H243.2V-0.6L271.2 3C278.4 3.8 281.6 5.4 281.6 13V161C281.6 166.6 277.6 170.2 272.4 171.8L239.2 180.6L248.4 221H358.4V13C358.4 5 354.8 4.2 362.4 3L384 -0.6V-35zM354 312.2L366.4 266.6L356.4 256.6L313.6 279.4L270.8 256.6L260.8 266.6L273.2 312.2L243.2 348.6L248 358.6H286L307.2 397H320L341.2 358.6H379.2L384 345.4L354 312.2z" />
+    <glyph glyph-name="fonticons"
+      unicode="&#xF280;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM167.4 220H234.8L223.7 182.7H168V69.8C168 63.9999999999999 166 63.1 171.2 62.4999999999999L214.7 58.3999999999999V33.2999999999999H84V59L105.3 61C110.5 61.6 112 63.3 112 68.9V180.3C112 182.6 109.1 182.6 106.2 182.6H84V220H112V241C112 290.6 138.5 311 189.3 311C223.4 311 254 302.8 254 258.2L203.3 252.1C203.6 270.8 198.9 275.1 187 275.1C168.6 275.1 168 265.2 168 247.7V224.4C168 222 164.5 220 167.4 220zM364 33.3H261.3V58.4L281.7 61.0000000000001C286.9 61.6000000000001 289.3 62.7000000000001 289.3 68.3000000000001V176.2C289.3 180.3 286.4000000000001 182.9 282.6 184.1L258.4000000000001 190.5L265.1 220H345.3V68.3C345.3 62.4999999999999 342.7 61.9 348.2 60.9999999999999L363.9 58.3999999999999V33.2999999999999zM342.1 288.8L351.1 255.6L343.8 248.3L312.6 264.9L281.4000000000001 248.3L274.1 255.6L283.1 288.8L261.3 313L264.8 322.6H292.5L308 350.6H317.3L332.8 322.6H360.5L364 313L342.1 288.8z" />
+    <glyph glyph-name="fort-awesome-alt"
+      unicode="&#xF3A3;"
+      horiz-adv-x="512" d=" M211.7 206.9V155.2C211.7 153.1 210.1 151.5 208 151.5H185.8C183.7 151.5 182.1 153.1 182.1 155.2V206.9C182.1 209 183.7 210.6 185.8 210.6H208C210.1 210.6 211.7 209 211.7 206.9zM326.2 210.6H304C301.9 210.6 300.3 209 300.3 206.9V155.2C300.3 153.1 301.9000000000001 151.5 304 151.5H326.2C328.3 151.5 329.9 153.1 329.9 155.2V206.9C329.8 209 328.2 210.6 326.2 210.6zM297.1 -52.6C296.2 -52.7 295.4 -52.9 294.5 -53C293.5 -53.2 292.3999999999999 -53.3 291.3999999999999 -53.5C290.5 -53.6 289.5999999999999 -53.8 288.5999999999999 -53.9C287.5999999999999 -54 286.5999999999999 -54.2 285.5999999999999 -54.3C284.5999999999999 -54.4 283.5999999999999 -54.4999999999999 282.7 -54.6C281.7 -54.7 280.8 -54.8 279.8 -54.9C278.8 -55 277.7 -55.1 276.7 -55.2C275.8 -55.3 274.8999999999999 -55.4 274 -55.4C272.8999999999999 -55.5 271.7 -55.5 270.6 -55.6C269.8 -55.6 268.9 -55.7 268.1 -55.7C266.8 -55.8 265.5 -55.8 264.2 -55.8C263.5 -55.8 262.8 -55.9 262.1 -55.9C260.1 -55.9 258.1 -56.0000000000001 256.1 -56.0000000000001S252.1 -56.0000000000001 250.1 -55.9C249.4 -55.9 248.7 -55.9 248 -55.8C246.7 -55.8 245.4 -55.7 244.1 -55.7C243.3 -55.7 242.4 -55.6 241.6 -55.6C240.5 -55.4999999999999 239.3 -55.4999999999999 238.2 -55.4C237.3 -55.3 236.4 -55.3 235.5 -55.2C234.5 -55.1 233.4 -55 232.4 -54.9C231.4 -54.8 230.5 -54.7 229.5 -54.6C228.5 -54.4999999999999 227.5 -54.4 226.6 -54.3C225.6 -54.1999999999999 224.6 -54.1 223.6 -53.9C222.7 -53.8 221.8 -53.6 220.8 -53.5C219.8 -53.4 218.7 -53.2 217.7 -53C216.8 -52.9 216 -52.7 215.1 -52.6C149.5 -41.7 92.6 -4.9 55.1 46.8C54.9 46.9999999999999 54.8 47.3 54.6 47.4999999999999C53.8 48.6 53 49.6999999999999 52.3 50.8C52 51.1999999999999 51.7 51.6 51.5 51.9999999999999C50.8 53.1 50.1 54.1 49.4 55.1999999999999C49.1 55.6999999999999 48.8 56.0999999999999 48.5 56.5999999999999C47.8 57.6999999999999 47.1 58.6999999999999 46.5 59.7999999999999C46.2 60.2999999999999 45.9 60.6999999999999 45.6 61.1999999999999C44.9 62.2999999999999 44.3 63.3999999999999 43.6 64.4999999999999C43.4 64.8999999999999 43.1 65.2999999999999 42.9 65.6999999999999C40.5 69.6999999999999 38.3 73.7999999999999 36.1 77.8999999999999C36 78.0999999999999 35.9 78.1999999999999 35.8 78.3999999999999C35.2 79.4999999999999 34.7 80.5999999999999 34.1 81.6999999999999C33.8 82.2999999999999 33.5 82.7999999999999 33.3 83.3999999999999C32.8 84.3999999999999 32.3 85.4999999999999 31.8 86.4999999999999C31.5 87.1999999999999 31.2 87.7999999999999 30.9 88.4999999999999C30.4 89.4999999999999 30 90.4999999999999 29.5 91.4999999999999L28.6 93.5999999999999C28.2 94.5999999999999 27.7 95.5999999999999 27.3 96.5999999999999C27 97.2999999999999 26.7 98.0999999999999 26.4 98.7999999999999L25.2 101.7999999999999C24.9 102.5999999999999 24.6 103.2999999999999 24.3 104.0999999999999C23.9 105.0999999999999 23.5 106.0999999999999 23.2 107.0999999999999C22.9 107.9999999999999 22.6 108.8999999999999 22.2 109.8999999999999C21.6 111.4999999999999 21.1 113.1999999999999 20.5 114.7999999999999C20.2 115.6999999999999 19.9 116.5999999999999 19.6 117.5999999999999C19.3 118.4999999999999 19.1 119.3999999999999 18.8 120.2999999999999C18.5 121.1999999999999 18.2 122.1999999999999 18 123.0999999999999C17.7 123.9999999999999 17.5 124.8999999999999 17.2 125.7999999999999C16.9 126.7999999999999 16.7 127.6999999999999 16.4 128.6999999999999C16.2 129.5999999999999 15.9 130.4999999999999 15.7 131.3999999999999C15.4 132.3999999999999 15.2 133.3999999999999 15 134.3999999999999C14.8 135.2999999999999 14.6 136.0999999999999 14.4 136.9999999999999C14.2 138.0999999999999 13.9 139.1999999999999 13.7 140.1999999999999C13.5 140.9999999999999 13.4 141.7999999999999 13.2 142.5999999999999C12.9 143.8999999999999 12.7 145.2999999999999 12.4 146.5999999999999C12.3 147.1999999999999 12.2 147.6999999999999 12.1 148.2999999999999L11.2 153.9999999999998C11.1 154.5999999999999 11 155.2999999999999 10.9 155.8999999999998C10.7 157.1999999999998 10.5 158.4999999999998 10.4 159.7999999999998C10.3 160.5999999999998 10.2 161.2999999999998 10.1 162.0999999999998C10 163.2999999999998 9.8 164.4999999999998 9.7 165.6999999999998C9.6 166.4999999999998 9.5 167.2999999999999 9.5 168.0999999999998C9.4 169.2999999999998 9.3 170.4999999999998 9.2 171.5999999999998C9.1 172.3999999999998 9.1 173.1999999999998 9 173.9999999999998C8.9 175.1999999999998 8.8 176.3999999999998 8.8 177.6999999999998C8.8 178.4999999999998 8.7 179.1999999999998 8.7 179.9999999999998C8.6 181.2999999999998 8.6 182.6999999999998 8.5 183.9999999999998C8.5 184.6999999999998 8.5 185.2999999999998 8.4 185.9999999999998C8.4 187.9999999999998 8.3 189.9999999999998 8.3 191.9999999999998C8.3 245.4999999999998 25.2 294.9999999999998 54.1 335.5999999999998C56.4 338.7999999999998 58.8 341.9999999999998 61.2 345.0999999999998C66.1 351.2999999999998 71.3 357.3999999999998 76.8 363.0999999999998C79.5 365.9999999999998 82.3 368.7999999999998 85.2 371.4999999999998C88.1 374.1999999999998 91 376.8999999999998 94 379.4999999999998C98.5 383.3999999999998 103.1 387.0999999999998 107.9 390.6999999999998C109.5 391.8999999999998 111.1 393.0999999999998 112.7 394.1999999999998C140 413.8 171.7 427.9 206 435C222.1 438.3 238.9 440 256 440S289.8 438.3 306 435C340.3 428 372 413.9 399.6 394.3C401.2000000000001 393.1 402.8 392 404.4000000000001 390.8C409.2000000000001 387.2 413.8 383.5 418.3 379.6C430.3 369.2 441.3 357.7 451.1 345.2C453.6 342.1 455.9 338.9 458.2 335.7C487.1 295 504 245.5 504 192C504 190 504 188 503.9 186C503.9 185.3 503.9 184.7 503.8 184C503.8 182.7 503.6999999999999 181.3 503.6 180C503.6 179.2 503.4999999999999 178.5 503.4999999999999 177.7C503.3999999999999 176.5 503.3999999999999 175.3 503.3 177C503.1999999999999 176.2 503.1999999999999 175.4 503.1 174.6C502.9999999999999 173.4 502.9 172.2000000000001 502.8 171.1C502.6999999999999 170.3 502.6 169.5 502.6 168.7000000000001C502.4999999999999 167.5000000000001 502.3 166.3000000000001 502.2 165.1C502.1 164.3 502 163.6 501.9 162.8C501.7 161.5 501.5 160.2 501.4 158.9C501.3 158.3 501.2 157.6 501.1 157.0000000000001L500.2 151.3000000000001C500.1 150.7000000000001 500 150.2000000000001 499.9 149.6000000000001C499.7 148.3000000000001 499.4 146.9000000000001 499.1 145.6000000000001C498.9 144.8000000000001 498.8 144.0000000000001 498.6 143.2000000000001C498.4 142.1000000000001 498.1 141.0000000000001 497.9 140.0000000000001C497.7 139.1000000000001 497.5 138.3000000000001 497.3 137.4000000000001C497.1 136.4000000000001 496.8 135.4000000000001 496.6 134.4000000000001C496.4 133.5000000000001 496.1 132.6000000000001 495.9 131.7000000000001C495.6 130.7000000000001 495.4 129.8000000000001 495.1 128.8000000000001C494.9 127.9000000000002 494.6 127.0000000000001 494.3 126.1000000000001C493.9999999999999 125.2000000000002 493.6999999999999 124.2000000000002 493.4999999999999 123.3000000000001C493.1999999999999 122.4000000000002 492.9999999999999 121.5000000000001 492.6999999999999 120.6000000000001C492.3999999999999 119.7000000000002 492.0999999999999 118.8000000000001 491.8 117.8000000000001C491.3 116.2000000000001 490.6999999999999 114.5000000000001 490.1 112.9000000000002C489.8 112.0000000000002 489.4999999999999 111.1000000000001 489.1 110.1000000000001C488.7 109.1000000000001 488.4 108.1000000000001 487.9999999999999 107.1000000000001C487.6999999999999 106.3000000000001 487.3999999999999 105.6000000000001 487.1 104.8000000000001L485.9 101.8000000000001C485.6 101.1000000000001 485.3 100.3000000000001 485 99.6000000000001C484.6 98.6000000000001 484.2 97.6000000000001 483.7 96.6000000000001L482.8 94.5000000000001C482.4 93.5000000000001 481.9 92.5000000000001 481.4 91.5000000000001C481.1 90.8000000000001 480.8 90.2000000000001 480.5000000000001 89.5000000000001C480.0000000000001 88.5000000000001 479.5000000000001 87.4000000000001 479.0000000000001 86.4000000000001C478.7 85.8000000000001 478.4 85.3000000000001 478.2 84.7000000000001C477.6 83.6000000000001 477.1 82.5000000000001 476.5000000000001 81.4000000000001C476.4 81.2000000000001 476.3000000000001 81.1000000000001 476.2 80.9000000000001C474.0000000000001 76.8000000000001 471.8000000000001 72.7000000000001 469.4 68.7000000000001C469.2 68.3000000000001 468.9 67.9000000000001 468.7 67.5000000000001C468.0000000000001 66.4000000000001 467.4 65.3000000000001 466.7 64.2000000000001C466.4 63.7000000000001 466.1 63.3000000000001 465.8000000000001 62.8000000000001C465.1000000000001 61.7000000000001 464.4000000000001 60.7000000000001 463.8000000000001 59.6000000000001C463.5000000000001 59.1000000000001 463.2 58.7000000000002 462.9000000000001 58.2000000000002C462.2000000000001 57.1000000000001 461.5000000000001 56.1000000000001 460.8000000000001 55.0000000000002C460.5000000000001 54.6000000000002 460.2 54.2000000000002 460.0000000000001 53.8000000000002C459.2 52.7000000000002 458.5000000000001 51.6000000000002 457.7 50.5000000000002C457.5000000000001 50.3000000000002 457.4 50.0000000000002 457.2 49.8000000000002C419.6 -4.8999999999998 362.7000000000001 -41.5999999999998 297.1 -52.5999999999998zM414.4 33.6C427.4 46.6 438.6 60.9999999999999 448 76.4999999999999V147.8C448 149.9 446.4 151.5 444.3 151.5H422.1C420 151.5 418.4000000000001 149.8999999999999 418.4000000000001 147.8V122H388.9000000000001V266C388.9000000000001 268.1 387.3 269.7 385.2000000000001 269.7H363.1C361 269.7 359.4000000000001 268.1 359.4000000000001 266V240.1H329.9000000000001V266C329.9000000000001 268.1 328.3 269.7 326.2000000000001 269.7H304C301.9 269.7 300.3 268.1 300.3 266V240.1H270.8V266C270.8 270.8 264.3 269.7 261.3 269.7V300.4C268 302 275.1 303.2 282.1 303.2C290.9000000000001 303.2 298.9000000000001 299.7 307.5 299.7C311.2 299.7 329.9 300.6 329.9 306.2V354.6C329.9 356.7 328.3 358.3 326.2 358.3C322 358.3 314 354.8 306.8 354.8C298.9000000000001 354.8 289.9000000000001 358.3 280.5 358.3C274 358.3 267.6 357.4 261.3 356V359.9C265.7 362 268.7 366.6 268.7 371.4C268.7 388.2 243.3 388.2 243.3 371.4C243.3 366.6 246.3 361.9 250.7 359.9V269.7C247.7 269.7 241.2 270.8 241.2 266V240.1H211.7V266C211.7 268.1 210.1 269.7 208 269.7H185.8C183.7 269.7 182.1 268.1 182.1 266V240.1H152.6V266C152.6 268.1 151 269.7 148.9 269.7H126.8000000000001C124.7000000000001 269.7 123.1 268.1 123.1 266V122H93.5V147.8C93.5 149.9 91.9 151.5 89.8 151.5H67.7C65.6 151.5 64 149.9 64 147.8V76.5C73.4 61 84.6 46.6 97.6 33.6C118.2 13 142.1 -3.1 168.8 -14.4C182.7 -20.3 197 -24.7 211.7 -27.6V48.2C211.7 106.8000000000001 300.3 106.8000000000001 300.3 48.2V-27.6C315 -24.7 329.3 -20.2 343.2 -14.4C369.9 -3.1 393.8 13 414.4 33.6" />
+    <glyph glyph-name="fort-awesome"
+      unicode="&#xF286;"
+      horiz-adv-x="512" d=" M489.2 160.1H461.8C459.2 160.1 457.2 158.1 457.2 155.5V123.5H420.6V301.8C420.6 304.4 418.6 306.4 416 306.4H388.6C386 306.4 384 304.4 384 301.8V269.8H347.3999999999999V301.8C347.3999999999999 304.4 345.3999999999999 306.4 342.7999999999999 306.4H315.3999999999999C312.7999999999999 306.4 310.7999999999999 304.4 310.7999999999999 301.8V269.8H274.1999999999999V301.8C274.1999999999999 307.8 266.1999999999999 306.4 262.4999999999999 306.4V344.4C270.7999999999999 346.4 279.5999999999999 347.8 288.1999999999999 347.8C299.0999999999999 347.8 309.0999999999999 343.5 319.5999999999999 343.5C324.1999999999999 343.5 347.2999999999999 344.6 347.2999999999999 351.5V411.5C347.2999999999999 414.1 345.2999999999999 416.1 342.6999999999998 416.1C337.5999999999998 416.1 327.5999999999998 411.8 318.6999999999998 411.8C308.9999999999999 411.8 297.7999999999999 416.1 286.0999999999998 416.1C278.0999999999998 416.1 270.0999999999998 415 262.3999999999998 413.2000000000001V418.1C267.7999999999998 420.7000000000001 271.4999999999999 426.4000000000001 271.4999999999999 432.4000000000001C271.4999999999999 453.1 240.0999999999998 453.2 240.0999999999998 432.4000000000001C240.0999999999998 426.4000000000001 243.7999999999998 420.7000000000001 249.1999999999998 418.1V306.4C245.4999999999999 306.4 237.4999999999999 307.8 237.4999999999999 301.8V269.8H200.8999999999998V301.8C200.8999999999998 304.4 198.8999999999998 306.4 196.2999999999999 306.4H168.8999999999998C166.2999999999999 306.4 164.2999999999999 304.4 164.2999999999999 301.8V269.8H128V301.8C128 304.4 126 306.4 123.4 306.4H96C93.4 306.4 91.4 304.4 91.4 301.8V123.5H54.8V155.5C54.8 158.1 52.8 160.1 50.2 160.1H22.8C20.2 160.1 18.2 158.1 18.2 155.5V-64H201.1V32C201.1 104.6 310.8 104.6 310.8 32V-64H493.7V155.5C493.8000000000001 158.1 491.8000000000001 160.1 489.2 160.1zM201.1 164.6C201.1 162 199.1 160 196.5 160H169.1C166.5 160 164.5 162 164.5 164.6V228.6C164.5 231.2 166.5 233.2 169.1 233.2H196.5C199.1 233.2 201.1 231.2 201.1 228.6V164.6zM347.5 164.6C347.5 162 345.5 160 342.9 160H315.5C312.9 160 310.9 162 310.9 164.6V228.6C310.9 231.2 312.9 233.2 315.5 233.2H342.9C345.5 233.2 347.5 231.2 347.5 228.6V164.6z" />
+    <glyph glyph-name="forumbee"
+      unicode="&#xF211;"
+      horiz-adv-x="448" d=" M5.8 138.3C2 155.3 0 172.5 0 189.7C0 313 99.8 413 223.1 413C239.7 413 256.4 411 272.4 407.5C149 360.5 51.9 262 5.8 138.3zM398.7 327.5C385 345 369 360.2 350.9 372.8C201.3 328.5 84.6 210.7 41.2 60.8C53.7 42.7 69.2 25.2 86.4 11.8C129.5 163.1 247.6 283.5 398.7 327.5zM414.5 74.8C429.7 99.9 439.9 128.5 444 157.6C364.6 114.7000000000001 299 47 256.4 -32.7C286.4 -28.3 315.3 -17.4 341 -1.4C376 -14.5 411.9 -25.7 448 -35C438.7 1.5 427.6 39.5 414.5 74.8zM444.2 220.3C441.6 239.8 436.3 259 428.4 277.1C290.5 231.3 182 120.5 137.1 -18C155.2 -25.6 174.1 -30.5 193.7 -33.2C240 80.9 330.5 173.6 444.2 220.3z" />
+    <glyph glyph-name="foursquare"
+      unicode="&#xF180;"
+      horiz-adv-x="368" d=" M323.1 445H49.9C12.4 445 0 416.7 0 398.9V-34.9C0 -55.2 12.1 -62.6 18.2 -65C24.4 -67.5 41 -69.6 51.1 -57.9C180 91.5 182.2 94 182.2 94C185.3 97.4 185.6 97.1 189 97.1H272.4C307.5 97.1 313 122.3 316.7 136.8L365.3 379.8C373.8 422.2 363.1 445 323.1 445zM306.8 371.2L295.4000000000001 311.5C294.2000000000001 305 285.9000000000001 298.3 278.5000000000001 298.3H172.1C160.1 298.3 151.5 290 151.5 278V265C151.5 253 160.1 244.4 172.1 244.4H262.5C270.8 244.4 279.1 235.2 277.3 226.2C275.5 217.3 266.8 172.4 265.9000000000001 167.4C265.0000000000001 162.5000000000001 259.1 153.9 249.0000000000001 153.9H175.5C162 153.9 158.3000000000001 152.1 149 141.3C149 141.3 140.1 129.9 59.5 33C58.6 32.1 57.7 32.4 57.7 33.3V372.1C57.7 379.8 64.5 388.7 74.3 388.7H293.3000000000001C301.5000000000001 388.7 308.9000000000001 381 306.8000000000001 371.2z" />
+    <glyph glyph-name="free-code-camp"
+      unicode="&#xF2C5;"
+      horiz-adv-x="576" d=" M69.3 303.5C28.3 235 32.9 140.5 70.3 76.5C92.5 38.3 120 24.1 120 10C120 3.2 114 -3 107.2 -3C87.7 -3 8 72.5 8 194.8C8 306.3 86 380.8 105.1 380.8C111.1 380.8 120 376 120 369.7000000000001C120 357 91.7 341.1 69.3 303.5zM265.1 89.7C269.6 87.9 277.4000000000001 84.5 277.4000000000001 90.9C277.4000000000001 93.6 275.2000000000001 93.8 273.1 94.5C264.6 97.9 259.1 102.2 254.0000000000001 109.7C245.8000000000001 121.8 243.9000000000001 133.9 243.9000000000001 148.3C243.9000000000001 180.4 288.1 186.2 288.1 218.3C288.1 230.6 280.4000000000001 234.2 280.4000000000001 237.6C280.4000000000001 239.8 281.1 239.8 283.3 239.8C291.3 239.8 302.4000000000001 226.5 305.8 220C308 215.4 308.2 214 308.2 208.9C308.2 201.9 307.5 194.7 307.5 187.6C307.5 160.6 339.4 167.8 339.4 180.8C339.4 186.8 335.8 192.4 335.8 198.2C335.8 198.9 335.8 199.4 336.5 199.4C339.8999999999999 199.4 345.8999999999999 191.7 347.6 189.3C353.4 180.4 356.1 168.5 356.1 157.9C356.1 125.5000000000001 326.6 108.9 326.6 101.9C326.6 100.9 329.5 94.2000000000001 338.7 100.0000000000001C368.4 115.1000000000001 391.8 147.6000000000001 391.8 189.8000000000001C391.8 223.4000000000001 383.1 247.5000000000001 359.7 272.4000000000001C355.8 276.5000000000001 343.3 289.3000000000001 337.2 289.3000000000001C329 289.3000000000001 344.4 270.7000000000001 344.4 258.1000000000001C344.4 250.9000000000001 339.6 245.8000000000001 332.1 245.8000000000001C320.5 245.8000000000001 317.6 271.2000000000001 316.2 279.1000000000001C310.4 312.9000000000001 303.4 337.3000000000001 269.8 353.2000000000001C259.4000000000001 358.2000000000001 233.3 365.0000000000001 233.3 355.4000000000001C233.3 353.0000000000001 236 351.3000000000001 237.9 350.3000000000001C247.1 344.7000000000001 257.5 328.9000000000001 257.5 312.1000000000001C257.5 266.0000000000001 199.8 223.9000000000001 199.8 175.9000000000001C199.6 135.6000000000001 227.9 103.3000000000001 265.1 89.7000000000001zM470.4 381C464.4 381 456 374.5 456 368.4C456 359.7 468.1 348.8 473.6 343C555.2 257.9 552.2 128.7 491.2 52C484.2 43.1 455.9 16.7 455.9 8.5C455.9 3.4 464.1 -2.9 469.1 -2.9C494.5 -2.9 567.9 77.9 567.9 182.8C568 302.1 491.8 381 470.4 381zM428.1 57.9H167C157.6 57.9 151.5 50.4 151.5 41.5C151.5 33 158.5 26 167 26H428.1C437.5 26 440 33.5 440 42.4C440 50.9 436.5 57.9 428.1 57.9z" />
+    <glyph glyph-name="freebsd"
+      unicode="&#xF3A4;"
+      horiz-adv-x="448" d=" M303.7 351.8C314.8 362.9 419.2 428.8 442.9 405C466.6 381.3 400.8 276.9 389.7 265.8C378.6 254.7 350.3 264.9 326.6 288.7000000000001C302.8 312.4 292.5 340.7000000000001 303.7 351.8zM109.9 379.9C73.6 400.5 22 423.4 5.6 406.9C-11 390.3 12.7 337.5 33.5 301.2C52 333.4 78.3 360.5 109.9 379.9zM406.7 274C410 262.7 409.4 253.3 404 247.9C383.7 227.6 316.5 274.9 294.7 318C276.7 350.3 283.6 371.4 309.6 366.7C315.3 370.3 321.9 374.3 329.2 378.3C299.4 393.8 265.6 402.6 229.7 402.6C110.6 402.6 14.1 306.1 14.1 187C14.1 68 110.6 -28.6 229.7 -28.6S445.3 67.9 445.3 187C445.3 225.4 435.2 261.5 417.6 292.8C413.7000000000001 285.8 410 279.5 406.7000000000001 274z" />
+    <glyph glyph-name="fulcrum"
+      unicode="&#xF50B;"
+      horiz-adv-x="269.66" d=" M70.75 283.86L35.37 240.31L0 283.86L35.38 327.4100000000001L70.75 283.86zM119.23 448L98.69 249.82L47.72 192L98.7 134.18L119.23 -64V147.11L78.15 192L119.23 236.89V448zM198.9 283.86L234.28 240.31L269.6600000000001 283.86L234.2800000000001 327.4100000000001L198.9 283.86zM150.42 236.89L191.5 192L150.42 147.11V-64L170.96 134.18L221.94 192L170.96 249.82L150.42 448V236.89z" />
+    <glyph glyph-name="galactic-republic"
+      unicode="&#xF50C;"
+      horiz-adv-x="496" d=" M248 -56C111.25 -56 0 55.25 0 192S111.25 440 248 440S496 328.75 496 192S384.75 -56 248 -56zM248 423.4700000000001C120.37 423.4700000000001 16.53 319.63 16.53 192S120.37 -39.47 248 -39.47S479.47 64.37 479.47 192S375.63 423.4700000000001 248 423.4700000000001zM275.62 401.6600000000001V377.04A185.933 185.933 0 0 0 359.19 342.5L376.58 359.86C347.83 381.92 313.28 396.75 275.62 401.6600000000001zM220.25 401.5900000000001C182.61 396.6500000000001 148.09 381.79 119.37 359.74L136.65 342.38H136.73C160.8 360.2200000000001 189.28 372.4400000000001 220.25 377.05V401.5900000000001zM232.5 351.42V268.55C222.46 266.52 213.08 262.61 204.83 257.13L146.21 315.7200000000001L124.28 293.79L182.95 235.12C177.48 226.89 173.5 217.53 171.48 207.5H88.58V176.5H171.48C173.5 166.48 177.49 157.19 182.95 148.96L124.28 90.27L146.21 68.34L204.83 126.96A77.873 77.873 0 0 1 232.5 115.49V32.5899999999999H263.5V115.4899999999999C273.55 117.5199999999999 282.87 121.5499999999999 291.12 127.0399999999999L349.79 68.3499999999999L371.7200000000001 90.2799999999999L313.05 148.9699999999999C318.51 157.1999999999999 322.5200000000001 166.4899999999999 324.55 176.5099999999999H407.42V207.5099999999999H324.55C322.5300000000001 217.53 318.5200000000001 226.89 313.05 235.13L371.7200000000001 293.8L349.79 315.73L291.12 257.06C282.87 262.55 273.55 266.53 263.5 268.56V351.42H232.5zM415.74 320.7000000000001L398.38 303.3400000000001A186.337 186.337 0 0 0 433.05 219.67H457.67C452.72 257.36 437.8400000000001 291.9600000000001 415.74 320.7000000000001zM80.19 320.5700000000001C58.13 291.85 43.28 257.3100000000001 38.34 219.66H62.99C67.59 250.6200000000001 79.75 279.11 97.58 303.18L80.19 320.57zM38.34 164.33C43.26 126.69 58.09 92.15 80.14 63.43L97.5 80.8199999999999C79.69 104.8899999999999 67.58 133.3899999999999 62.99 164.3399999999999H38.34zM433.04 164.33C428.43 133.34 416.24 104.83 398.37 80.73L415.73 63.37C437.81 92.11 452.71 126.66 457.66 164.33H433.04zM136.66 41.62L119.3 24.26C148.03 2.17 182.6 -12.72 220.26 -17.67V6.97C189.27 11.6 160.73 23.76 136.66 41.62zM359.19 41.57C335.1 23.73 306.61 11.49 275.62 6.9V-17.67C313.29 -12.75 347.83 2.12 376.58 24.18L359.27 41.57H359.19z" />
+    <glyph glyph-name="galactic-senate"
+      unicode="&#xF50D;"
+      horiz-adv-x="512" d=" M249.86 414.52V388.45C236.28 367.83 226 279.86 225.39 173.1C237.13 188.72 244.52 206.43 244.52 221.34V238.2200000000001C244.49 243.54 245.27 248.7500000000001 246.71 253.8700000000001C247.36 256.01 248.1 257.9500000000001 249.33 259.6900000000001C250.56 261.4400000000001 252.76 263.48 256.01 263.48C259.25 263.48 261.46 261.43 262.69 259.6900000000001C263.92 257.9400000000001 264.6600000000001 256.01 265.31 253.8700000000001C266.75 248.7500000000001 267.5300000000001 243.54 267.5 238.2200000000001V221.34C267.5 206.43 274.89 188.72 286.63 173.1C286 279.86 275.72 367.8300000000001 262.14 388.4500000000001V414.52H249.86zM223.52 266.75C214 264.6 204.82 261.56 196.06 257.67C204.96 241.55 205.82 225.03 197.77 220.38C189.77 215.76 175.92 224.61 166.41 240.2C154.83 231.41 144.53 220.88 135.85 209.11C150.58 199.49 158.74 186.19 154.17 178.45C149.63 170.75 134.14 171.31 118.7 179.41C112.92 166.16 108.95 151.9 107.05 136.99C116.73 136.81 125.72 134.61 133.23 130.9499999999999C151.01 131.25 166 132.9099999999999 173.72 135.17C179.2700000000001 161.52 196.7400000000001 183.4 220.04 194.68C220.77 220.23 221.92 244.35 223.52 266.75zM288.48 266.75C290.07 244.35 291.23 220.23 291.9500000000001 194.68C315.2400000000001 183.4 332.7200000000001 161.52 338.2700000000001 135.17C345.9900000000001 132.91 360.98 131.25 378.7600000000001 130.95C386.2700000000001 134.61 395.2600000000001 136.8 404.9400000000001 136.99C403.0400000000001 151.9 399.0800000000001 166.16 393.2900000000001 179.41C377.8500000000001 171.31 362.3600000000001 170.75 357.8200000000001 178.4500000000001C353.2500000000001 186.1900000000001 361.4200000000001 199.5000000000001 376.1400000000001 209.1100000000001C367.4600000000001 220.8800000000001 357.1600000000001 231.4100000000001 345.5800000000001 240.2000000000001C336.0700000000001 224.6100000000001 322.2200000000001 215.7600000000001 314.2200000000001 220.3800000000001C306.17 225.0300000000001 307.0300000000001 241.5400000000001 315.93 257.6700000000001A147.49 147.49 0 0 1 288.48 266.7500000000001zM256 258.15C252.77 258.15 250.14 249.34 249.91 238.22H249.86V221.34C249.86 179.92 200.85 126.3 156.37 126.3C104.37 126.3 33.62 127.75 0 97.13V94.62C9.42 77.5 20.58 61.45 33.18 46.65C45.7 67.74 84.77 87.6 141.2 88C186.88 86.98 220.23 67.67 231.96 47.13C231.97 47.12 231.95 47.09 231.96 47.08C239.63 44.94 247.81 43.85 256 43.87C264.19 43.85 272.37 44.94 280.04 47.08C280.05 47.09 280.03 47.12 280.04 47.13C291.78 67.67 325.12 86.98 370.8 88C427.23 87.61 466.29 67.74 478.8199999999999 46.65C491.42 61.45 502.5799999999999 77.51 511.9999999999999 94.62V97.13C478.3899999999999 127.75 407.63 126.3 355.63 126.3C311.1499999999999 126.3 262.14 179.92 262.14 221.34V238.2200000000001H262.0899999999999C261.8599999999999 249.3400000000001 259.2299999999999 258.1500000000001 255.9999999999999 258.1500000000001zM256 161.56C278.42 161.56 296.6 143.38 296.6 120.96S278.42 80.31 256 80.31S215.4 98.54 215.4 120.96C215.4 143.38 233.58 161.56 256 161.56zM256 153.92C237.81 153.92 223.04 139.15 223.04 120.96S237.81 88 256 88S288.96 102.77 288.96 120.96S274.19 153.92 256 153.92zM256 147.78C270.81 147.78 282.82 135.7700000000001 282.82 120.96S270.81 94.14 256 94.14S229.18 106.15 229.18 120.96S241.19 147.78 256 147.78zM141.2 81.11C131.01 81.04 119.6 80.75 110.7 79.45C111.13 75.03 112.21 60.82 117.81 49.69C126.92 52.25 136.17 53.59 145.43 53.59C186.71 52.65 216.91 19.24 223.69 -20.88L223.8 -25.58C234.2 -27.49 244.99 -28.52 256.01 -28.52C267.04 -28.52 277.82 -27.5 288.22 -25.58L288.33 -20.88C295.11 19.24 325.31 52.65 366.59 53.59C375.85 53.59 385.1 52.2500000000001 394.21 49.6900000000001C399.81 60.8200000000001 400.89 75.03 401.32 79.4500000000001C392.42 80.7500000000001 381 81.03 370.82 81.1100000000001C352.06 80.6900000000001 335.63 76.9400000000001 322.21 71.4400000000001C309.67 55.4100000000001 293.05 41.4100000000001 272.63 38.3700000000001C272.54 38.3500000000001 272.46 38.33 272.36 38.3200000000001C272.31 38.3100000000001 272.25 38.28 272.2 38.27C266.96 37.2 261.57 36.67 256.01 36.67C250.46 36.67 245.06 37.2 239.82 38.27C239.77 38.28 239.71 38.3100000000001 239.66 38.3200000000001C239.56 38.34 239.49 38.3600000000001 239.39 38.3700000000001C218.97 41.4 202.36 55.4100000000001 189.81 71.4400000000001C176.39 76.9300000000001 159.95 80.6900000000001 141.2 81.1100000000001z" />
+    <glyph glyph-name="get-pocket"
+      unicode="&#xF265;"
+      horiz-adv-x="448" d=" M407.6 384H40.6C18.5 384 0 365.5 0 343.4V208.2C0 83.5 99.7 -16 224.2 -16C348.2 -16 448 83.5 448 208.2V343.4C448 365.8 430.3 384 407.6 384zM245.6 115.5C233.2 103.7 214.2 104.4 203.2 115.5C89.5 224.4 88.3 220.6 88.3 238.7C88.3 255.6 102.1 269.4 119 269.4C136 269.4 135.1 265.6 224.2 180.1C314.8 267 312.8 269.4 329.7 269.4C346.6 269.4 360.4 255.6 360.4 238.7C360.4 220.9 357.5 223 245.6 115.5z" />
+    <glyph glyph-name="gg-circle"
+      unicode="&#xF261;"
+      horiz-adv-x="512" d=" M257 440C120 440 9 329 9 192S120 -56 257 -56S505 55 505 192S394 440 257 440zM207.5 65.2L81.8 190.9L207.5 316.6L242.7 281.2L218.5 257L207.4 268.1L130.2 190.9L207.4 113.7L234 140.3L180.9 193.2L205.3 217.6L282.5 140.4L207.5 65.2000000000001zM306.5 67.4L271.3 102.6L295.4000000000001 127L306.5000000000001 115.8999999999999L383.7000000000001 193.0999999999999L306.5000000000001 270.2999999999999L280.0000000000001 243.7999999999999L333.1000000000001 190.8999999999999L308.7000000000001 166.5L231.5000000000001 243.7L306.5000000000001 318.7L432.2 193L306.5 67.4z" />
+    <glyph glyph-name="gg"
+      unicode="&#xF260;"
+      horiz-adv-x="512" d=" M179.2 217.6L281.6 115.2L179.2 12.8L0 192L179.2 371.2L224 326.4L198.4 300.8L179.2 320L51.2 192L179.2 64L230.7 115.5L153.6 192L179.2 217.6zM332.8 371.2L230.4 268.8L332.8 166.4L358.4000000000001 192L281.3000000000001 268.5L332.8000000000001 320L460.8000000000001 192L332.8000000000001 64L313.6000000000001 83.2L288.0000000000001 57.6L332.8000000000001 12.8L512 192L332.8 371.2z" />
+    <glyph glyph-name="git-square"
+      unicode="&#xF1D2;"
+      horiz-adv-x="448" d=" M140.1 99.5C152.2 99.5 169.6 97.4 169.6 81.6C169.6 66.1 155.7 62.8 142.6 62.8C130.3 62.8 111.7 64.8 111.7 80.8S127.4 99.5 140.1 99.5zM115.4 216.1C115.4 201.3 122 192 137.7 192C153.2 192 158.9 202 158.9 216.5C159 250.9 115.4 251.3 115.4 216.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM207 274.3C194.7 269.5 181.5 265.9 168.1 265.9C129.6 288 77.4 265 77.4 216.4C77.4 198.4 89 173.5 107 167.5V166.8C93.6 160.9 89.9 130.7 107.7 119.8V119.1C88.2 112.7000000000001 75.4 100.3 75.4 78.9C75.4 42.1 110.2 31.9 140.8 31.9C177.9 31.9 205.6 45.3 205.6 86.2000000000001C205.6 136.6 133.5 118.0000000000001 133.5 145.3000000000001C133.5 154.9000000000001 138.7 158.7000000000001 147.6 160.5000000000001C177.2 166.0000000000001 195.8 189.1000000000001 195.8 219.2000000000001C195.8 224.4 194.7 229.4000000000001 192.9 234.2000000000001C197.7 235.3000000000001 202.4 236.5000000000001 207 238.1000000000001V274.3000000000001zM263.8 272.5H224.2C225.5000000000001 261.9 225.3 129.9 224.2 117H263.8C262.7 129.8 262.6 262.1 263.8 272.5zM268.3 325.8C268.3 339.2 258.3 352 244.2 352C229.9 352 219.6 339.5 219.6 325.8C219.6 312.2 230.1 299.9 244.2 299.9C257.9000000000001 299.9 268.3 312.4 268.3 325.8zM372.6 272.5H336.2000000000001C336.2000000000001 282.3 335.8000000000001 292.1 337.3000000000001 302H296.8000000000001C298.1000000000001 294.7 297.9000000000001 288.4 297.9000000000001 272.5H280.8000000000001V238.6C292.7000000000001 240.5 292.9000000000001 239.3 297.9000000000001 239.3V238.6H297.5000000000001V175.9C297.5000000000001 144.8 302.0000000000001 114.7 340.2000000000001 114.7C350.9000000000001 114.7 363.2000000000001 116.5 372.7000000000001 121.7V156.7C367.0000000000001 152.8 358.8000000000002 150.8 351.8000000000002 150.8C338.6000000000002 150.8 336.3000000000002 163.7 336.3000000000002 174.2V239.4C359.0000000000001 239.4 372.7000000000001 238.7 372.7000000000001 238.7V272.5z" />
+    <glyph glyph-name="git"
+      unicode="&#xF1D3;"
+      horiz-adv-x="448" d=" M18.8 226.3C18.8 201 35 166.3 60.3 157.8V156.8C41.5 148.5 36.3 106.2 61.3 91V90C34 81 16 63.7 16 33.8C16 -17.7 64.8 -32 107.5 -32C159.5 -32 198.2 -13.3 198.2 44C198.2 114.5 97.2 88.5 97.2 126.8C97.2 140.3 104.4 145.5 116.9 148.1C158.4 155.8 184.4 188.1 184.4 230.3C184.4 237.6 182.9 244.5 180.4 251.3C187.1 252.8 193.6 254.6 200.1 256.8V307.3C182.9 300.5 164.4 295.5 145.6 295.5C91.8 326.5 18.8 294.2 18.8 226.3zM106.5 62.5C123.5 62.5 147.7 59.5 147.7 37.5C147.7 15.7 128.2 11.2 110 11.2C92.7 11.2 66.7 13.9 66.7 36.4C66.8 58.7 88.8 62.5 106.5 62.5zM103.3 192C81.3 192 72 205 72 225.8C72 275.1 133 274.6 133 226.3C133 206 125 192 103.3 192zM432 142.5V93.5C418.7 86.2 401.5 83.7 386.5 83.7C333 83.7 326.7 125.9 326.7 169.4V257.1H327.2V258.1C320.2 258.1 319.9 259.7 303.2 257.1V304.6H327.2C327.2 326.9 327.5 335.6 325.7 345.8H382.4C380.4 332 380.9 318.3 380.9 304.6H431.9V257.1S412.6 258.1 380.9 258.1V167C380.9 152.2 384.2 134.2 402.7 134.2C412.5 134.2 424 137 432 142.5zM286 379.3C286 360.6 271.5 343.1 252.2 343.1C232.4 343.1 217.7 360.3 217.7 379.3C217.7 398.6 232.2 416 252.2 416C272 416 286 398 286 379.3zM279.8 304.8C278 290.2000000000001 278.2 105 279.8 87H224.3C225.9 105.1 226.1 290 224.3 304.8H279.8z" />
+    <glyph glyph-name="github-alt"
+      unicode="&#xF113;"
+      horiz-adv-x="480" d=" M186.1 119.3C186.1 98.4 175.2 64.2 149.4 64.2S112.7 98.4 112.7 119.3S123.6 174.4 149.4 174.4S186.1 140.2000000000001 186.1 119.3zM480 169.8C480 137.9 476.8 104.1 462.5 74.8C424.6 -1.8 320.4 0 245.8 0C170 0 59.6 -2.7 20.2 74.8C5.6 103.8 0 137.9 0 169.8C0 211.7 13.9 251.3 41.5 283.4C36.3 299.2000000000001 33.8 315.8 33.8 332.2C33.8 353.7 38.7 364.5 48.4 384C93.7 384 122.7 375 157.2 348C186.2 354.9 216 358 245.9000000000001 358C272.9000000000001 358 300.1 355.1 326.3000000000001 348.8C360.3000000000001 375.5 389.3000000000001 384 434.1000000000001 384C443.9000000000001 364.5 448.7000000000001 353.7 448.7000000000001 332.2C448.7000000000001 315.8 446.1000000000001 299.5 441.0000000000001 284C468.5000000000001 251.6 480.0000000000001 211.7 480.0000000000001 169.8zM415.7 119.3C415.7 163.2 389 201.9 342.2 201.9C323.3 201.9 305.2 198.5 286.2 195.9C271.3 193.6 256.4 192.7 241.1 192.7C225.9 192.7 211 193.6 196 195.9C177.3 198.5 159 201.9 140 201.9C93.2 201.9 66.5 163.2 66.5 119.3C66.5 31.5 146.9 18 216.9 18H265.1C335.4000000000001 18 415.7000000000001 31.4 415.7000000000001 119.3zM333.1 174.4C307.3 174.4 296.4000000000001 140.2000000000001 296.4000000000001 119.3S307.3 64.2 333.1 64.2S369.8 98.4 369.8 119.3S358.9000000000001 174.4 333.1 174.4z" />
+    <glyph glyph-name="github-square"
+      unicode="&#xF092;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM277.3 32.3C268.9000000000001 30.8 265.8 36 265.8 40.3C265.8 45.7 266 73.3 266 95.6C266 111.2000000000001 260.8 121.1 254.7 126.3C291.7 130.4 330.7 135.5 330.7 199.4C330.7 217.6 324.2 226.7 313.6 238.4C315.3 242.7 321 260.4 311.9 283.4C298 287.7000000000001 266.2 265.5 266.2 265.5C253 269.2 238.7 271.1 224.6 271.1C210.5 271.1 196.2 269.2 183 265.5C183 265.5 151.2 287.7 137.3 283.4C128.2 260.5 133.8 242.8 135.6 238.4C125 226.7 120 217.6 120 199.4C120 135.8 157.3 130.4 194.3 126.3C189.5 122 185.2 114.6 183.7 104C174.2 99.7 149.9 92.3 135.4 117.9C126.3000000000001 133.7 109.9 135 109.9 135C93.7 135.2 108.8 124.8 108.8 124.8C119.6 119.8 127.2000000000001 100.6 127.2000000000001 100.6C136.9 70.9 183.3000000000001 80.9 183.3000000000001 80.9C183.3000000000001 67.0000000000001 183.5 44.4 183.5 40.3C183.5 36 180.5 30.8 172 32.3C106 54.4 59.8 117.2000000000001 59.8 190.6C59.8 282.4000000000001 130 352.1 221.8 352.1S388 282.4 388 190.6C388.1 117.2000000000001 343.3 54.3 277.3 32.3zM179.2 93.4C177.3 93.0000000000001 175.5 93.8 175.3 95.1C175.1 96.6 176.4 97.9 178.3 98.3C180.2 98.5 182 97.7 182.2 96.4C182.5 95.1 181.2 93.8 179.2 93.4zM169.7 94.3C169.7 93 168.2 91.9 166.2 91.9C164 91.7000000000001 162.5 92.8 162.5 94.3C162.5 95.6 164 96.7 166 96.7C167.9 96.9 169.7 95.8 169.7 94.3zM156 95.4C155.6 94.1 153.6 93.5000000000001 151.9 94.1C150 94.5 148.7000000000001 96 149.1 97.3C149.5 98.6 151.5 99.2 153.2 98.8C155.2 98.2 156.5 96.7 156 95.4zM143.7 100.8C142.8 99.7 140.9 99.9 139.4 101.4C137.9 102.7000000000001 137.5 104.6 138.5 105.5000000000001C139.4 106.6000000000001 141.3 106.4 142.8 104.9C144.1 103.6 144.6 101.6 143.7 100.8zM134.6 109.9C133.7 109.3 132 109.9 130.9 111.4S129.8000000000001 114.6 130.9 115.3C132 116.2 133.7000000000001 115.5 134.6 114C135.7 112.5 135.7 110.7 134.6 109.9zM128.1 119.6C127.2 118.7000000000001 125.7 119.2000000000001 124.6 120.2000000000001C123.5 121.5000000000001 123.3 123.0000000000001 124.2 123.7000000000001C125.1 124.6 126.6 124.1 127.7 123.1C128.8 121.8 129 120.3 128.1 119.6zM121.4 127C121 126.1 119.7 125.9 118.6 126.6C117.3 127.2000000000001 116.7 128.3 117.1 129.2000000000001C117.5 129.8000000000001 118.6 130.1 119.9 129.6C121.2 128.9 121.8 127.8 121.4 127z" />
+    <glyph glyph-name="github"
+      unicode="&#xF09B;"
+      horiz-adv-x="496" d=" M165.9 50.6C165.9 48.6 163.6 47 160.7 47C157.4 46.7 155.1 48.3 155.1 50.6C155.1 52.6 157.4 54.2 160.3 54.2C163.3 54.5000000000001 165.9 52.9 165.9 50.6zM134.8 55.1C134.1 53.1 136.1 50.8 139.1 50.2C141.7 49.2 144.7 50.2 145.3 52.2S144 56.5000000000001 141 57.4C138.4 58.1 135.5 57.1 134.8 55.1zM179 56.8C176.1 56.1 174.1 54.2 174.4 51.9C174.7 49.9 177.3 48.6 180.3 49.3C183.2 50 185.2 51.9 184.9 53.9C184.6 55.8 181.9 57.1 179 56.8zM244.8 440C106.1 440 0 334.7 0 196C0 85.1 69.8 -9.8 169.5 -43.2C182.3 -45.5 186.8 -37.6 186.8 -31.1C186.8 -24.9 186.5 9.3 186.5 30.3C186.5 30.3 116.5 15.3 101.8 60.1C101.8 60.1 90.4 89.2000000000001 74 96.7000000000001C74 96.7000000000001 51.1 112.4 75.6 112.1C75.6 112.1 100.5 110.1 114.2 86.3C136.1 47.7 172.8 58.8 187.1 65.4C189.4 81.4 195.9 92.5000000000001 203.1 99.1C147.2 105.3 90.8 113.4 90.8 209.6C90.8 237.1 98.4 250.9000000000001 114.4 268.5C111.8 275 103.3 301.8 117 336.4000000000001C137.9 342.9000000000001 186 309.4000000000001 186 309.4000000000001C206 315 227.5 317.9000000000001 248.8 317.9000000000001S291.6 315 311.6 309.4000000000001C311.6 309.4000000000001 359.7000000000001 343 380.6 336.4000000000001C394.3 301.7000000000001 385.8 275 383.2000000000001 268.5C399.2000000000001 250.8000000000001 409.0000000000001 237.0000000000001 409.0000000000001 209.6C409.0000000000001 113.1 350.1000000000001 105.4 294.2000000000001 99.1C303.4000000000001 91.2000000000001 311.2000000000001 76.2000000000001 311.2000000000001 52.7C311.2000000000001 19.0000000000001 310.9000000000001 -22.6999999999999 310.9000000000001 -30.9C310.9000000000001 -37.4 315.5000000000001 -45.3 328.2000000000001 -43C428.2 -9.8 496 85.1 496 196C496 334.7 383.5 440 244.8 440zM97.2 95.1C95.9 94.1 96.2 91.8 97.9 89.9C99.5 88.3 101.8 87.6 103.1 88.9C104.4 89.9 104.1 92.2000000000001 102.4 94.1C100.8 95.7000000000001 98.5 96.4 97.2 95.1zM86.4 103.2000000000001C85.7 101.9 86.7 100.3000000000001 88.7 99.3000000000001C90.3 98.3000000000001 92.3 98.6000000000001 93 100.0000000000001C93.7 101.3000000000001 92.7 102.9 90.7 103.9C88.7 104.5000000000001 87.1 104.2000000000001 86.4 103.2000000000001zM118.8 67.6C117.2 66.3 117.8 63.3 120.1 61.4C122.4 59.1 125.3 58.8 126.6 60.4C127.9 61.7000000000001 127.3 64.7000000000001 125.3 66.6C123.1 68.9 120.1 69.2000000000001 118.8 67.6zM107.4 82.3C105.8 81.3 105.8 78.7 107.4 76.4C109 74.1 111.7 73.1 113 74.1C114.6 75.4 114.6 78 113 80.3C111.6 82.6 109 83.6 107.4 82.3z" />
+    <glyph glyph-name="gitkraken"
+      unicode="&#xF3A6;"
+      horiz-adv-x="592" d=" M565.7 329.9C563.4000000000001 336 556.4000000000001 339.1 550.4000000000001 336.5C544.7 334.1 541.9000000000001 327.6 544.1000000000001 321.9C555.0000000000001 292.9 561.0000000000001 261.4 561.0000000000001 228.6C561.0000000000001 94 460.7000000000001 -17.1 330.8000000000002 -34.1V89.6C338.7000000000001 91.1 346.3000000000002 93.2000000000001 353.8000000000002 95.8V-8.2C460.5000000000001 17.7 539.7000000000002 113.9 539.7000000000002 228.6C539.7000000000002 320.4000000000001 488.9000000000001 400.4000000000001 413.9000000000002 441.9000000000001C408.2000000000002 445.1 400.9000000000002 442.8 398.0000000000002 436.9000000000001C395.3000000000002 431.4000000000001 397.4000000000002 424.7000000000001 402.7000000000002 421.8C470.6000000000001 384.2000000000001 516.6000000000001 311.8000000000001 516.6000000000001 228.6000000000001C516.6000000000001 135.3000000000001 458.7000000000002 55.5000000000001 376.8000000000002 23.2V115.4C391.0000000000001 119.9 401.7000000000001 133.1 401.7000000000001 148.9C401.7000000000001 162.0000000000001 394.9000000000001 173.3 384.4000000000001 179.4C392.7000000000001 258.9000000000001 428.9000000000001 238.0000000000001 428.9000000000001 263.3000000000001V278C428.9000000000001 316 341.0000000000001 439.8 299.9000000000001 442.7C297.4000000000001 442.9 294.9000000000001 442.9 292.3000000000001 442.7C251.1 439.7 163.2 316 163.2 278V263.2C163.2 237.9 199.5 258.9 207.7 179.3C197.1 173.1999999999999 190.4 161.9 190.4 148.8C190.4 133 201 119.8 215.2 115.3V23.1C133.3 55.3 75.4 135.1 75.4 228.5C75.4 311.6 121.4 384 189.3 421.7C194.7 424.7 196.7 431.3 194 436.8C191.1 442.7 183.9 445 178.1 441.8C103.1 400.3 52.3 320.3 52.3 228.5C52.3 113.8 131.5 17.6999999999999 238.2 -8.3000000000001V95.6999999999999C245.8 93.1999999999999 253.3 91.0999999999999 261.2 89.4999999999999V-34.2C131.4 -17.2 31 93.9 31 228.5C31 261.3 37 292.8 47.9 321.8C50.1 327.6 47.3 334 41.6 336.4C35.6 339 28.6 336 26.3 329.8C14.5 298.3 8 264.2 8 228.5C8 73.4 130.6 -53.1 284.3 -59.3V86.6C291.1 86.2000000000001 299.3 86.1 307.7 86.6V-59.2C461.4 -53.1 584 73.4 584 228.5C584 264.2 577.5 298.3 565.7 329.9zM365.9 172.5C378.9 172.5 389.6 162 389.6 148.8C389.6 135.7 379 125.1 365.9 125.1C352.9 125.1 342.2 135.6 342.2 148.8C342.2 161.9 352.8 172.5 365.9 172.5zM226.1 125.2C212.9 125.2 202.4 135.9 202.4 148.9S212.9 172.6 226.1 172.6C239.2 172.6 249.8 162 249.8 148.9C249.8 135.9 239.3 125.2 226.1 125.2z" />
+    <glyph glyph-name="gitlab"
+      unicode="&#xF296;"
+      horiz-adv-x="512" d=" M29.782 248.268L256 -45.714L8.074 138.301C1.218 143.443 -1.638 152.297 0.933 160.294L29.782 248.268zM105.187 423.074C102.045 431.928 89.478 431.928 86.336 423.074L29.782 248.268H161.743L105.187 423.074zM161.743 248.268L256 -45.714L350.257 248.2680000000001H161.743zM511.067 160.294L482.218 248.268L256 -45.714L503.926 138.301C510.781 143.443 513.637 152.297 511.067 160.294zM425.663 423.074C422.521 431.928 409.954 431.928 406.812 423.074L350.257 248.268H482.218L425.663 423.074z" />
+    <glyph glyph-name="gitter"
+      unicode="&#xF426;"
+      horiz-adv-x="384" d=" M66.4 125.5H16V448H66.4V125.5zM166.9 371.9H116.5V-64H166.9V371.9zM267.5 371.9H217.1V-64H267.5V371.9zM368 372H317.6V125H368V372z" />
+    <glyph glyph-name="glide-g"
+      unicode="&#xF2A6;"
+      horiz-adv-x="448" d=" M407.1 236.8C403.6 238.2 395.5 240.6 391.7000000000001 240.6C354.6 240.6 329.5000000000001 223.8 298.2000000000001 206.1L297.3000000000001 207C304.3000000000001 254.3 320.8000000000001 298.9000000000001 320.8000000000001 347.4000000000001C320.8 418.9 282.6 448 212.4 448C97.3 448 39 334.3 39 249.6C39 161.7 90.3 113 177.6 113C189.6 113 188.6 114 188.6 109.2C171.7 -19.7 97.8 -23.9 97.8 14.6C97.8 53.8 142.8 73.2000000000001 143.3 75.6C143 87.8 96.3 103.2000000000001 84.4 103.2000000000001C50.5 103.1 32 52.0000000000001 32 23.9C32 -28 64.8 -64 117.5 -64C194.9 -64 251.5 13.8 268.9 81.4C284 141.9 280.1 144.7 288.6 149C320.8 165.2 346.1 176 382.4 176C400.2 176 412.9 172.3 441.3 167.6C444.2 167.6 448 170.5 448 173.4C448 181.4 414.6 233.9000000000001 407.1 236.8000000000001zM231.8 321.2000000000001C222.5 276.5 213.2 231.6 204 186.9C201.7 176.7 190.7 179.1 182 179.1C143.7 179.1 133 220.9 133 252.2C133 299.2 151 361.5 194.8 385.6C201.8 389.7 209.6 392.3 217.4 392.3C236 392.3 237.4 379 237.4 363.6C237.3 349.3 234.7 335.1 231.8 321.2z" />
+    <glyph glyph-name="glide"
+      unicode="&#xF2A5;"
+      horiz-adv-x="448" d=" M252.8 299.4C252.8 290.6 251.2 281.7000000000001 249.4 273C243.6 245.2 237.8 217.2 232.1 189.4C230.7 183.1 223.8 184.5 218.4 184.5C194.6 184.5 187.9 210.5 187.9 230C187.9 259.3 199.1 298.1 226.4 313.1C230.7 315.6 235.6 317.3 240.5 317.3C251.9 317.3 252.8 309 252.8 299.4zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM384 181C384 186.1 363.2 218.7 358.5 220.5C356.3 221.4 351.3 222.8 348.9 222.8C325.8 222.8 310.2 212.3 290.7 201.3L290.2 201.8C294.5 231.2 304.8 259 304.8 289.2000000000001C304.8 333.8 281 351.9000000000001 237.3 351.9000000000001C165.6 351.9000000000001 129.3 281.1 129.3 228.4000000000001C129.3 173.7000000000001 161.3 143.4 215.6 143.4C223.1 143.4 222.5 144.0000000000001 222.5 141.1C212 60.8 166 58.2000000000001 166 82.2000000000001C166 106.6 194 118.7000000000001 194.3000000000001 120.2000000000001C194.1000000000001 127.8000000000001 165 137.4 157.6 137.4C136.5 137.4 124.9 104.4 124.9 86.8C124.9 54.5 145.3 32.1 178.2 32.1C226.4000000000001 32.1 261.6 81.8 272.5 123.8C281.9 161.5 279.5 163.2 284.8 165.9C304.8 176.0000000000001 320.6 182.7000000000001 343.2 182.7000000000001C354.3 182.7000000000001 362.2 180.4 379.9 177.5000000000001C381.7 177.4 384 179.2000000000001 384 181.0000000000001z" />
+    <glyph glyph-name="gofore"
+      unicode="&#xF3A7;"
+      horiz-adv-x="400" d=" M324 128.2H310.8V93.5C286.3 70.4 254.5 57.7 220.9 57.7C147.7 57.7 88.5 117.9 88.5 192.1C88.5 266.2 147.7 326.5 220.9 326.5C256.2 326.5 289.5 312.5 314.5 287.1L376.8 350.4C335 392.7 279.7 416 220.7 416C98 416 0 315.4 0 192C0 69.5 97 -32 220.7 -32C283.9 -32 345.2 -5.8 391.7 50.5C389.7 78.1 378.3 128.2 324 128.2zM311.9 240.7H205.6V151.7H324C357.5 151.7 384.5 136.6 400 109.9V140.5C400 205.7 359.6 240.7 311.9 240.7z" />
+    <glyph glyph-name="goodreads-g"
+      unicode="&#xF3A9;"
+      horiz-adv-x="384" d=" M42.6 44.7H45.4C58.1 44.7 70.9 44.7 83.6 44.6C85.2 44.6 86.7 44.9999999999999 87.2 42.4999999999999C94.3 7.6 117.2 -12.1000000000001 150.1 -21.4C177 -29.0000000000001 204.2 -29.2 231.4 -23.2C265.2 -15.8000000000001 287.4 5.1 299.4 37.1999999999999C307.4 58.6999999999999 310.1 80.9999999999999 310.4 103.6999999999999C310.5 109.4999999999999 310.7 150.6999999999999 310.2 156.5L309.3 156.8C308.5 155.3 307.6 153.9 306.8 152.4C284.7 109.3 245.5 85 201.4 83.3C98.4 79.3 32 140.3 29.4 259.5C28.9 283.2 31.2 306.4 37.7 329.2C58.3 400.3 112.3 447.4 191.6 448C252.9 448.4 293.1 409.3 307.8 377.7C308.3 376.6 309.1 375.4 310.2 375.8V437.4H354.5C354.5 157.1 354.6 105.2 354.6 105.2C354.5 26.7 327.9000000000001 -38.5 251.6 -57C182.1 -73.9 92.6 -61.8 55.6 0.2C47.6 13.7 43.8 28.5 42.6 44.7zM188.9 411.5C136.4 412 80.4 370.8 73.9 277.7C69.8 218.7 88.7 155.5 145.4 129.1C173 116.2000000000001 219.7 114.1 253.7 137.8C301.3 171 316.4 234.8 308.5 291.8C298.8 362.9 260.7 411.8 188.9 411.5z" />
+    <glyph glyph-name="goodreads"
+      unicode="&#xF3A8;"
+      horiz-adv-x="448" d=" M299.9 256.8C305 219.5 295.2 177.8 264 156.1C241.7 140.6 211.2 142 193.2 150.4C156.1 167.7000000000001 143.7 209 146.4 247.6C150.7 308.5 187.3 335.5 221.7 335.1C268.6 335.3 293.5 303.3 299.9 256.8zM448 360V24C448 -6.9 422.9 -32 392 -32H56C25.1 -32 0 -6.9 0 24V360C0 390.9 25.1 416 56 416H392C422.9 416 448 390.9 448 360zM330 134.8S329.9 168.8 329.9 352.1H300.9V311.8C300.1 311.5 299.7 312.3 299.3 313C289.7 333.7 263.4 359.3 223.3 359C171.4 358.6 136.1 327.8 122.7 281.2C118.4 266.3 116.9 251.1 117.2 235.6C118.9 157.7 162.3 117.8 229.6 120.4C258.5 121.5 284.1 137.4 298.6 165.6C299.1 166.6 299.7 167.5 300.3 168.5C300.5 168.3999999999999 300.7 168.3999999999999 300.9 168.3C301.2 164.5 301.1 137.6 301 133.8C300.8 119 299 104.3 293.8 90.3C286 69.3 271.5 55.6 249.3 50.8C231.5 46.9 213.7 46.9999999999999 196.1 51.9999999999999C174.6 58.1 159.6 70.9999999999999 155 93.8C154.7 95.4 153.7 95.1 152.7 95.1H125.9C126.7 84.4999999999999 129.1 74.8 134.4 65.9C158.6 25.4 217.1 17.4 262.6 28.5C312.5 40.8 329.9000000000001 83.4 330 134.8z" />
+    <glyph glyph-name="google-drive"
+      unicode="&#xF3AA;"
+      horiz-adv-x="512" d=" M339 133.1L175.4 416H336.6L500.2 133.1H339zM201.5 109.5L120.9 -32H431.4L512 109.5H201.5zM154.1 380.6L0 109.5L80.6 -32L237 239.2L154.1 380.6z" />
+    <glyph glyph-name="google-play"
+      unicode="&#xF3AB;"
+      horiz-adv-x="512" d=" M325.3 213.7L104.6 435L385.4 273.8L325.3 213.7zM47 448C34 441.2 25.3 428.8 25.3 412.7V-28.6C25.3 -44.7 34 -57.1 47 -63.9L303.6 192.1L47 448zM472.2 222.4L413.3 256.5L347.6 192L413.3 127.5L473.4 161.6C491.4 175.9 491.4 208.1 472.2 222.4zM104.6 -51L385.4 110.2L325.3 170.3L104.6 -51z" />
+    <glyph glyph-name="google-plus-g"
+      unicode="&#xF0D5;"
+      horiz-adv-x="640" d=" M386.061 219.504C387.895 209.812 389.204 200.12 389.204 187.548C389.204 77.795 315.599 0 204.8 0C98.716 0 12.8 85.915 12.8 192S98.716 384 204.8 384C256.664 384 299.8830000000001 365.141 333.411 333.708L281.2850000000001 283.678C267.1400000000001 297.299 242.2570000000001 313.277 204.8 313.277C139.316 313.277 85.88 259.056 85.88 192C85.88 124.944 139.316 70.723 204.8 70.723C280.761 70.723 309.313 125.468 313.765 153.496H204.8V219.505H386.0610000000001zM571.467 213.067V268.8H515.466V213.067H459.733V157.066H515.466V101.333H571.467V157.066H627.2V213.067H571.4670000000001z" />
+    <glyph glyph-name="google-plus-square"
+      unicode="&#xF0D4;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM164 92C108.7 92 64 136.7 64 192S108.7 292 164 292C191 292 213.5 282.2 231 265.8L203.9 239.7C196.5 246.8 183.6 255.1 164.1 255.1C130 255.1 102.2 226.9000000000001 102.2 191.9C102.2 157.0000000000001 130 128.7000000000001 164.1 128.7000000000001C203.7 128.7000000000001 218.5 157.2000000000001 220.9 171.8000000000001H164V206.2000000000001H258.4C259.4 201.2000000000001 260 196.1000000000001 260 189.6000000000001C260 132.5000000000001 221.7 92.0000000000001 164 92.0000000000001zM384 173.8H355V144.8H325.8V173.8H296.8V203H325.8V232H355V203H384V173.8z" />
+    <glyph glyph-name="google-plus"
+      unicode="&#xF2B3;"
+      horiz-adv-x="496" d=" M248 440C111.1 440 0 328.9 0 192S111.1 -56 248 -56S496 55.1 496 192S384.9 440 248 440zM177.3 68C108.5 68 53.3 123.5 53.3 192S108.5 316 177.3 316C208.6 316 237.4 305 260.3 283.7L226.7 251.1C213.5 264 195.4 270.2 177.3 270.2C134.4 270.2 100.1 234.7 100.1 192.1S134.3 114 177.3 114C209.9 114 242.2 133.1 247.4 167.3H177.3V209.9H294.2000000000001C295.5000000000001 203.1 296.1 196.3 296.1 189.2C296.1 118.4 248.6 68 177.3 68zM407.5 174.2V138.7H372V174.2H336.5V209.7H372V245.2H407.5V209.7H442.7V174.2H407.5z" />
+    <glyph glyph-name="google-wallet"
+      unicode="&#xF1EE;"
+      horiz-adv-x="448" d=" M156.8 321.2C194.4 260.6 221 208.1 241.1 158.7C232.8 124.9 222.3 92.2 209.8 60.4C196.6 112.7 183.3 161.7 153.8 208.9C160.3 245.3 156.1 282.5 156.8 321.2zM109.3 248H16.1C9.6 248 5.6 240.5 9.6 235.3C51.8 181 81.3 117.5 101.3 48H204.8C188.6 117.7 166.1 181.7 122.3 241.5C119.3 245.5 114.3 248 109.3 248zM157.1 336C225.6 228 287.1 101.5 295.3 -32H409C397 106 340.6 233 265.8 336H157.1zM408.9 404.5C407.1 411.3 400.7 416 393.7 416H305.4C300.1 416 296.4 411 297.6 405.7C310.8 359.2 319.9 310.2 324.1 259.7C372.3 173.5 403.8 81.4 414.7 -11.1C430.5 49.4 440 122.4 440 191.9C440 265.5 427.8999999999999 337 408.8999999999999 404.5z" />
+    <glyph glyph-name="google"
+      unicode="&#xF1A0;"
+      horiz-adv-x="488" d=" M488 186.2C488 44.7 391.1 -56 248 -56C110.8 -56 0 54.8 0 192S110.8 440 248 440C314.8 440 371 415.5 414.3 375.1L346.8 310.2C258.5 395.4 94.3 331.4 94.3 192C94.3 105.5 163.4 35.4 248 35.4C346.2 35.4 383 105.8 388.8 142.3H248V227.6H484.1C486.4 214.9 488 202.7 488 186.2z" />
+    <glyph glyph-name="gratipay"
+      unicode="&#xF184;"
+      horiz-adv-x="496" d=" M248 440C111.1 440 0 328.9 0 192S111.1 -56 248 -56S496 55.1 496 192S384.9 440 248 440zM362.6 213.6L249.6 60.9L136.9 213.6C128.2000000000001 225.5 117.8000000000001 264 150.5 285.6C178.6 303.7 205.1 289.8 219 273.7C234.9000000000001 255.8 265.6 256.8 280.7000000000001 273.7C294.6 289.8 321.1 303.7 348.8000000000001 285.6C381.7000000000001 264 371.4000000000001 225.6 362.6000000000001 213.6z" />
+    <glyph glyph-name="grav"
+      unicode="&#xF2D6;"
+      horiz-adv-x="512" d=" M301.1 236C305.5 231.6 305.5 224.1 301.1 219.7L291.4000000000001 210C287.0000000000001 205.3 279.5000000000001 205.3 274.8 210L264.3 220.5C259.9000000000001 225.2 259.9000000000001 232.4 264.3 237.1L274 246.8C278.4 251.2 285.9 251.2 290.6 246.8L301.1 236zM270.9000000000001 255.7C273.9000000000001 258.7 273.9000000000001 263.5 270.9000000000001 266.2C268.1 269.2 263.4000000000001 269.2 260.4000000000001 266.2C257.6 263.4 257.6 258.7 260.4000000000001 255.7C263.5000000000001 252.9 268.2000000000001 252.9 270.9000000000001 255.7zM244.9000000000001 250.4C241.9000000000001 247.6 241.9000000000001 242.9 244.9000000000001 240.2C247.7000000000001 237.2 252.4000000000001 237.2 255.4000000000001 240.2C258.2000000000001 243 258.2000000000001 247.7 255.4000000000001 250.4C252.4000000000001 253.4 247.7000000000001 253.4 244.9000000000001 250.4zM317.4000000000001 263.7C297.5000000000001 278.1 283.6 306.9 305.5000000000001 331.8C327.1000000000001 356.7 346.2000000000001 349 365.3000000000001 331C377.2000000000001 319.7 394.6000000000001 306.1 382.5000000000001 282.8C370.0000000000001 259.3 337.4000000000001 249.6 317.4000000000001 263.7zM365.1 308.2C356.2000000000001 318.2 341.8 301.3 349.6 292.1C357 283.1 381.7000000000001 289.7 365.1 308.2zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM437.8 149.4C440.3 165.5 417.6 166 412.6 175.1C399 199.2 384.9000000000001 211.9 358.1 205.5C369.7000000000001 213.5 381.6 211.6 381.6 211.6C381.9000000000001 218 381.6 224.6 372.2000000000001 236.5C376.1 249 372.5000000000001 258.9 372.5000000000001 258.9C388.0000000000001 267.5 399.3000000000001 283.3 401.6000000000001 302.1C405.2000000000001 333.1 382.8000000000001 361.3 351.8000000000001 364.9C329.7000000000001 367.4 308.1000000000001 357.2 297.5000000000001 339.2C274.3000000000001 299.1 298.9000000000001 268.3 319.9000000000001 257.8C305.5000000000001 259.2 285.6 269.7 279.8 292.1C273.2 317.8 282.6 341.9 288.7 353.5C288.7 353.5 284.3 359.3 280.7 362.4C280.7 362.4 266.9 362.4 256.1 357.1C268 372.3 281.3 371.5 281.3 371.5C281.3 377.9 280.7 386.4 277.7 393.1C272.3 404.1 253.8999999999999 406 246 390.3C246.1 390.5 246.3 390.7 246.4 390.8C241.4 378.9 245.3 334.9 263.3 303.6C260.8 302.2 254.2 297.5 250.3 293.6C228.7 283.9 194.1 233.3 194.1 233.3C165.9 222.5 116.9 182.4 123.5 153.6C123.8 150.6 124.9 148.1 126.5 146.1C123.7 143.9 121 141.1 118.2 137.8C106.3 124 112.9 102.6 135.9 113.4C151.7 120.6 165.5 133.6 172.2 143.8C172.2 143.8 166.7 148.8 155.9 148.2C183.6 154.8 190.2 157.6 202.1 157.3C210.1 153.4 210.1 191.6 210.1 191.6C210.1 206.3 207.9 222.6 199 233.1C211.5 220.9 228.1 200.4 227 172.5C226.2 154.2 211.8 149.5 211.8 149.5C202.7 132.9 168.6 83.6 181.4 43.5C181.4 43.5 171.7 58.4 171.2 65.6C153.8 46.2 124.7 13.3 146.6 1.1C173.2 -13.6 255.4 89.7000000000001 272.8 143.4C307.4000000000001 164.2000000000001 328.2 190.7000000000001 336.7 208.4C358.7 164.9 432 113.9 437.8 149.4z" />
+    <glyph glyph-name="gripfire"
+      unicode="&#xF3AC;"
+      horiz-adv-x="384" d=" M171.8 -55.8C171.8 -50.5 176.6 -43.6 176.6 -33.5C176.6 -18.3 163.6 6.4 98.5 53.1C64.2 82.2 32 111.6 32 161.4C32 276.1 179.1 337.9 179.1 430C179.1 433.3 178.9 436.7 178.5 440C183.6 437.6 217.6 396.7 217.6 349.6C217.6 269.1 112.5 220.4 112.5 146.6C112.5 119.7000000000001 129.1 99.4 145.1 77.1C167.6 46.9 189.3 20.2 189.3 -9.4C189.2 -23.9 184.9 -39.1 171.8 -55.8zM317.8 185.6C319.3 177.2000000000001 320 169 320 161C320 109.2 290.6 63.5 252.7 24.2C251.7 23.2 250.5 21.8 249.5 21.8C245.9 21.8 214 63.4 214 75C214 75 255.8 130.7 255.8 171.9C255.8 182.7 253.1 193.6 246.7 205.3C245.2 173 191 117.6 188.6 117.6C185.9 117.6 170.7 139.6 170.7 159.7C170.7 165 171.7 170.4 173.9 175.5C176.3 181 230.5 247.5 230.5 292.2C230.5 298.4 229.5 304.2 227.1 309.3L223.1 316.5C239.8 310 305.7 252.4 317.8 185.6" />
+    <glyph glyph-name="grunt"
+      unicode="&#xF3AD;"
+      horiz-adv-x="384" d=" M61.3 258.7C60.2 248.7 66.5 239.6 66.5 239.6C67.2 247.1 68.7 252.4 70.5 256.2C70.9 245.9 73.7 232.7 83.3 222.1C90.2 214.5 118.9 198.8 138.2 216C139.2 213.6 140.3 210.7 141.2 207.5C144.1 197.2 138.5 182.2 138.5 182.2S153.6 199.3 152.4 214.7C163.2 215.2 173.8 223.1 173.5 234.2C173.5 234.2 154.6 223.8 138 243C128.3 254.2 97.1 285 54.9 274.8C59.2 273.8 63.8 272.4 68.4 270.7000000000001H68.3C64.1 268.7000000000001 61.8 263.6 61.3 258.7000000000001zM89.6 260.5C109.1 249.5 127 234.8 134.5 223.5C128.8 220.2 112.8 213.1 96.5 225.2C86.2 232.8 86.7 251.4 89.6 260.5zM168.8 26.8C171 24.5 170.3 21.5 169.7 20C168.6 17.3 164.2 8.4 156.7 0.2C154 -2.7 150.1 -4.4 145.7 -4.4C141.4 -4.4 137 -2.8 133.9 -0.1C131.6 2 123.7 9.4 120.2 18.5C118.9 21.9 119.2 24.6 121.1 26.6C122.4 27.9 125.1 29.5 130.6 29.5H160C164.1 29.5 167 28.6 168.8 26.8zM231.7 214.7C230.5000000000001 199.2 245.6 182.2000000000001 245.6 182.2000000000001S240.0000000000001 197.2000000000001 242.9000000000001 207.5000000000001C243.8000000000001 210.7000000000001 244.9000000000001 213.5000000000001 245.9000000000001 216.0000000000001C265.2000000000001 198.7000000000001 293.9000000000001 214.5000000000001 300.7000000000001 222.1000000000001C310.3000000000001 232.7000000000001 313.0000000000001 245.9000000000001 313.5000000000001 256.2000000000001C315.3000000000001 252.4000000000001 316.9000000000001 247.1000000000001 317.5000000000001 239.6000000000001C317.5000000000001 239.6000000000001 323.9000000000001 248.7000000000001 322.7000000000001 258.7000000000001C322.1 263.7000000000001 319.8000000000001 268.7000000000001 315.7000000000001 270.5000000000001H315.6C320.2000000000001 272.3000000000001 324.8 273.7000000000001 329.1 274.6C286.8 284.8000000000001 255.7 254.0000000000001 246.0000000000001 242.8000000000001C229.3000000000001 223.6000000000001 210.5 234.0000000000001 210.5 234.0000000000001C210.3000000000001 223.1 220.9 215.1 231.7 214.7zM249.5000000000001 223.5C257 234.9000000000001 274.9000000000001 249.5000000000001 294.4000000000001 260.5C297.4000000000001 251.4000000000001 297.8 232.8000000000001 287.4000000000001 225.1C271.1 213 255.2000000000001 220.1 249.5000000000001 223.5C249.4000000000001 223.4 249.5000000000001 223.5 249.5000000000001 223.5zM263 26.6C264.9 24.7 265.2 22 263.9 18.7C260.4 9.8000000000001 252.5 2.6 250.2 0.6C247.1 -2 242.8 -3.6 238.4 -3.6S230.1 -1.9999999999999 227.4 0.9C219.9 8.9 215.4 17.6 214.4 20.2C213.8 21.7 213.1 24.6 215.3 26.9C217 28.7 220 29.6 224.2 29.6H253.6C259 29.5 261.7 27.9 263 26.6zM164.7 278.1C174.6 272.1 183.5 270 192 269.8C200.5 270 209.4 272.1 219.3 278.1C219.3 278.1 204.8 260.4000000000001 192.1 260.3H191.9C179.2000000000001 260.5 164.7000000000001 278.1 164.7000000000001 278.1zM349.2 130.7000000000001C346.8 112.8000000000001 336.2 96.9 324.6 87.0000000000001C321.5 109.7000000000001 320.9 142.5000000000001 320.9 149.4C320.9 164.1 330.4 173.9 333.1 175.5000000000001C335.6 177.0000000000001 338.5 178.5000000000001 341.4 180.1000000000001C359.4 189.7000000000001 381.8 201.7000000000001 381.8 223.8000000000001C381.8 240.0000000000001 372.5 247.0000000000001 366.4 251.6000000000001C365.6 252.2000000000001 364.9 252.7000000000001 364.2 253.3000000000001C362.1 255.0000000000001 360.5 256.3000000000001 359.9 257.7000000000001C355.5 267.5000000000001 356.3 291.9000000000001 358.2 295.3000000000001C358.8 295.9000000000001 374.9 316.2000000000001 370 334.5000000000001C368 341.9000000000001 363.1 347.8000000000001 355.9 351.5000000000001C350.6 354.2000000000001 344 355.7000000000001 336.4 356.0000000000001C336.3 358.0000000000001 335.9 359.9000000000001 335.5 361.9000000000001C334.9 364.5000000000001 334.4 367.2000000000001 334.6 370.0000000000001C335 374.7000000000001 335.4000000000001 379.0000000000001 336.8 381.3000000000001C345.2 394.6000000000001 365.6 398.9000000000001 365.8 398.9000000000001L378.1 401.3000000000001L370 410.8000000000001C369.9 411.0000000000001 352.7 428.3000000000001 323.7 428.3000000000001C315.8 428.3000000000001 307.7 427.0000000000001 299.6 424.4000000000001C275.4 416.6000000000001 256.7 393.9000000000001 250.2 385.1000000000001C247.1 386.1000000000001 243.9 387.0000000000001 240.6 387.8000000000001C236.4 403.6000000000001 249.6 426.3000000000001 249.6 426.3000000000001S236 429.3000000000001 215.9 411.1000000000001C213.3 417.6000000000001 207.8 431.6000000000001 214.1 448.3000000000001C184.6 437.9 177.2 422 175 407.6C167.4 413 168.3 430.7 167.8 435.2C160.3 434.3 138.6 413.3 139.6 386.9C137.6 386.4 135.7 385.8 133.7 385.2C127.2 394 108.6 416.7 84.3 424.5C76.4 426.7 68.3 428 60.4 428C31.4 428 14.3 410.7 14.1 410.5L6 401.1L18.3 398.7C18.5 398.7 38.9 394.4 47.3 381.1C48.7 378.9 49.1 374.5 49.5 369.8C49.7 367 49.1 364.3 48.6 361.7C48.2 359.8 47.8 357.8 47.7 355.8C40 355.5 33.5 354 28.2 351.3C21 347.6 16.1 341.7 14.1 334.3C9.1 316.1 25.3 295.8 25.9 295.1C27.8 291.7 28.6 267.3 24.2 257.5C23.6 256.1 22 254.8 19.9 253.1C19.2 252.6 18.5 252 17.7 251.4C11.6 246.8 2.3 239.7 2.3 223.6C2.3 201.5 24.7 189.5 42.7 179.9C45.7 178.3 48.5 176.8 51 175.3C53.7 173.6999999999999 63.2 163.9 63.2 149.1999999999999C63.2 142.3 62.6 109.4999999999999 59.5 86.8C47.9 96.6999999999999 37.3 112.6999999999999 34.9 130.6C34.9 130.6 5.7 107.9999999999999 14.3 59.8C19.5 30.3 37.5 13.6999999999999 61.3 5.1C70.1 -14.0000000000001 90.7 -40.6 128.6 -44.5000000000001C143 -56.3 163 -64 192.2 -64H192.4C221.5 -64 241.5 -56.3 256 -44.5C293.9 -40.6 314.5 -14 323.3 5.1C347.1 13.8 365 30.3 370.3 59.8C378.5 108.2 349.2 130.7000000000001 349.2 130.7000000000001zM305.7 410.3C311.3 412.1 317.3 413 323.4 413C334.4 413 343.3 410 348.1 408C345 406.6 341.7 404.8 338.4 402.7C336 403.1 332.8 403.5 329.2 403.5C318.7 403.5 308.7 400.4 300.5 394.6C288.2 385.9 282.5 377.7 279.8 372.2C277.6 373.5 275.3 374.7 272.7 375.9C271.1 376.7 269.6 377.4 268 378.1C274.1 387.2 287.9 404.6 305.7 410.3zM326.7 392.1C325.9 391.1 325.1 390 324.4 388.9C321.1 383.7 320.5 377.3 320 371.1C319.5 364.7 318.9 358.6 315.6 354.1C311.4000000000001 353.3 307.5 352.4 304.1 351.4C301.8 354.5 298.5 358.4 293.6 362.6C295 367.4 299.1 378.7 307.1 385.1C312.7000000000001 389.4 319.3 391.8 326.7000000000001 392.1zM45.6 402.7C42.3 404.9 39 406.7 35.9 408C40.7 410 49.6 413 60.6 413C66.7 413 72.6 412.1 78.3 410.3C96.1 404.5 109.9 387.1 116 378.2C114.4 377.5 112.8 376.8 111.2 376C108.7 374.8 106.3 373.5 104.1 372.3C101.5 377.7 95.8 386 83.4 394.7C75.1 400.5 65.2 403.6 54.6 403.6C51.2 403.5 48 403.1 45.6 402.7zM90.3 362.6C85.4 358.4 82 354.6 79.8 351.4C76.4 352.3 72.5 353.3 68.3 354.1C65 358.5 64.5 364.6 64 371C63.5 377.2 62.9 383.6 59.6 388.8C58.9 389.9 58.1 391 57.3 392C64.7 391.7 71.3 389.4 76.8 385C84.8 378.7 88.9 367.4 90.3 362.6zM58.1 188.1C55.4 189.7000000000001 52.5 191.2000000000001 49.7 192.7C34.8 200.7 19.5 209 19.5 223.2C19.5 234.3 23.8 237.8 28.4 241.4L28.9 241.8C29.6 242.4 30.3 243 31.1 243.6C30.2 236.4000000000001 29.2 230.3 28.4 228.7C28.4 228.7 40.5 243.7 44.1 273C45.5 284.5 43 307.3 39 316C39.2 311.1 39 306.2 38.7 301.6C38.3 302.4 37.9 303.2 37.4 303.8C34.2 307.8 25.6 321.3 28 330.4C28.9 333.9 31.1 336.4 34.7 338.2C38.5 340.1 43.5 341.1 49.8 341.1C62.1 341.1 75.7 337.4 82.7 335.1C107.8 327.1 138.1 304.2 146.8 297.4C147 297.2 147.2 297.1 147.2 297.1L152.8 293.2L149.3 299C149.1 299.3 130.2 330.4 96.1 345.5C98.1 348.4 103.5 353.6 117.7 360.6C139.1 371.1 164.2 376.4 192 376.4C219.9 376.4 244.9 371.1 266.3 360.6C280.5 353.7 285.9000000000001 348.4 287.9000000000001 345.5C253.9000000000001 330.4 235.0000000000001 299.3 234.8000000000001 299L231.3000000000001 293.2L236.9000000000001 297.1S237.1 297.2 237.3000000000001 297.4C246.0000000000001 304.2 276.3000000000001 327.2 301.4000000000001 335.1C308.4000000000001 337.3 322.0000000000001 341.1 334.3 341.1C340.6 341.1 345.6 340.1 349.4000000000001 338.2C352.9000000000001 336.4 355.1 333.8 356.1 330.4C358.6 321.3 350 307.8 346.7000000000001 303.8C346.2000000000001 303.2 345.8000000000001 302.5 345.4000000000001 301.6C345.1 306.2 344.9000000000001 311.1 345.1 316C341.1 307.2 338.6 284.5 340 273C343.6 243.7 355.7 228.7 355.7 228.7C354.9 230.3 353.9 236.4 353 243.6C353.7 243 354.5 242.4 355.2 241.8L355.7 241.4C360.3 237.7 364.6 234.3 364.6 223.2C364.6 209 349.2 200.7 334.4 192.7C331.5 191.2 328.7 189.6 326 188.1C317.3 183.1 308 171.4 306.9 153.9C306 139.3 307.8 104 310.3 78C297.9 73.2 283.6 71.6 270.6 71.2C268.6 75.3 266.7 79.7 265.1 84.3C264.4 86.3 245.5 135.4 238.7 146.5C244.2 107.5 256.2 72.8 262.2 56.9C258.7 57.4 254.8999999999999 57.6 250.5 57.6H133.5C129.0999999999999 57.6 125.2 57.3 121.8 56.9C127.8 72.8 139.9 107.5 145.3 146.5C138.5 135.3 119.6 86.2 118.9 84.3C117.3 79.7 115.4 75.3 113.4 71.2C100.4 71.6 86.2 73.2 73.7 78C76.2 104 77.9999999999999 139.2 77.1 153.9C76.2 171.3 66.8 183.1 58.1 188.1zM34.8 43.4C22.7 63.4 26.1 97.5 31.1 102.5C42 68.1 78.3 58.2 105.5 57.1C102.8 52.9 100.3 49.5 98.5 47.1L97.1 45.7C89.9 37.9 88.5 27.2 93 13.9C70.3 14.0000000000001 46.7 23.7 34.8 43.4zM80.5 -0.1C86.5 -1.2 92.7 -2 99.1 -2.5C102.6 -10.5 106.5 -18.4 111.4 -25.6C97 -19.7 87 -9.6 80.5 -0.1zM192 -50.2C131.4 -50.1 113.7 -4.4 107.1 14.5C103.4 25 103.7 32.7 108 37.6C110.9 40.9 117.5 44.8 132.6 44.8H251.4C266.5 44.8 273.2 40.9 276 37.6C280.2 32.8 280.5 25 276.9 14.5C270.3 -4.3 252.6 -50.1 192 -50.2zM272.6 -25.6C277.5 -18.4 281.4000000000001 -10.4999999999999 284.9000000000001 -2.4999999999999C291.3 -1.9999999999999 297.5000000000001 -1.1999999999999 303.5000000000001 -0.1C297.0000000000001 -9.6 287.0000000000001 -19.7 272.6000000000001 -25.6zM349.2000000000001 43.4C337.2000000000001 23.7 313.6 14.1 291.1 13.7C295.6 27.0000000000001 294.2000000000001 37.8000000000001 287 45.5000000000001C286.6 46.0000000000001 286.1 46.5000000000001 285.6 47.0000000000001C283.8 49.4 281.3 52.8000000000001 278.6 57.0000000000001C305.8 58.2000000000001 342.1 68.0000000000001 353 102.4C358 97.4 361.4 63.3 349.2 43.4z" />
+    <glyph glyph-name="gulp"
+      unicode="&#xF3AE;"
+      horiz-adv-x="256" d=" M209.8 56.9L195.7 32.3L191.1 -47.9C191.1 -56.8 162.8 -64 128 -64S64.9 -56.8 64.9 -47.9L59.1 31.5L44.2 56.9C85.4 39.6 170.2000000000001 40.2 209.8000000000001 56.9zM13.8 310.2L27.4 184.7C33.3 204.7 48.2 231.7 67.4 239.9C73.7 242.6 80.1 242.6 86.1 239C91.3 236 95.7 229.7 96.2 227.2C97.4 220.7 94.2 218.1 91.7 218.1C88.7 218.1 86.4 222.7 84.9 225.4C80.8 232.7 74.6 233 68 228.2C61.1 223.2 55.1 214.8 50.9 207.5C45.8 198.7 41.5 189 38.9 179.3C37.4 173.7 36 164.7 38.3 159.4C39.3 157.2000000000001 40.8 155.8 43.2 155.8C48.2 155.8 55.5 162.4 59 165.9C63.5 170.4 69.3 177.4 71.5 181.9L76.7 197.4C79.3 204.2000000000001 86.6 203 86.6 197.4C86.6 187.2000000000001 82.9 183.8 76.6 162.7000000000001C70.8 143.2000000000001 69 136.9 69 136.9C68.3 134.1 65.6 129.4 62.7 129.4C61.5 129.4 60.6 129.8 60.1 130.6C59.1 132 59.2 135.9 59.3 136.9C59.5 140.1 65.6 159.1 66.6 162.1C64.6 159.9 62.5 157.7000000000001 60.2 155.5C54.8 150.4 46.1 143.7 38.7 143.7C35.3 143.7 33.1 144.6 31 146.1L38.6 66.5C40.6 61.5 77.8 49.4 126.8 49.4C175.9 49.4 213.1 61.6 215 66.5L225.9000000000001 161.1C220.2000000000001 155.9 213.6 149.5 206.3000000000001 146.3C200.9 144 188.9 142.5 188.9 152C188.9 157.2 198 166.8 203.3000000000001 173.5C204.7000000000001 175.2 208 179.4 208 181.6C208 184.5 202 183.8 196.3000000000001 179.1C193.1000000000001 176.4 190.1000000000001 172.8 187.6000000000001 169.4C183.3000000000001 163.4 181.0000000000001 158.2000000000001 179.1000000000001 153.9C172.9000000000001 139.7000000000001 175.0000000000001 145.3 170.0000000000001 131.9C165.0000000000001 118.6 165.8000000000001 120.1 164.8000000000001 117.9C163.9000000000001 116.0000000000001 162.6000000000001 114.4 160.8000000000001 113.4C158.9000000000001 112.4 156.3000000000001 112.5000000000001 154.7000000000001 113.7000000000001C153.8000000000001 114.3000000000001 153.4000000000001 115.6 153.4000000000001 117.4C153.4000000000001 118.3 153.5000000000001 119.2000000000001 153.7000000000001 120.1C155.2000000000001 126.2000000000001 161.5000000000001 138.2000000000001 168.7000000000001 154.4C170.3000000000001 158.1 169.7000000000001 157.0000000000001 169.5000000000001 156.7000000000001C163.3000000000001 150.7000000000001 158.6000000000001 147.8000000000001 155.1000000000001 146.2000000000001C149.3000000000001 143.6 142.1000000000001 143.6 140.6000000000001 150.3000000000001C140.5000000000001 150.7000000000001 140.5000000000001 151.1000000000001 140.4000000000001 151.5000000000001C128.6000000000001 142.3000000000001 116.1000000000001 139.8000000000001 120.4000000000001 159.6000000000001C115.8000000000001 151.4000000000001 107.8000000000001 144.7000000000001 98.0000000000001 144.7000000000001C93.9000000000001 144.7000000000001 90.9000000000001 146.1000000000001 89.4000000000001 149.8000000000001C87.1000000000001 155.3000000000001 90.7000000000001 164.7000000000001 94.0000000000001 173.6000000000001C95.7000000000001 178.1000000000001 98.0000000000001 183.5000000000001 101.1000000000001 189.8000000000001C102.7000000000001 193.2000000000001 105.3000000000001 195.2000000000001 108.7000000000001 194.3000000000001C109.3000000000001 194.1000000000001 109.8000000000001 193.9000000000001 110.3000000000001 193.6000000000001C112.9000000000001 191.8000000000001 111.9000000000001 189.1000000000001 110.6000000000001 186.4000000000002C106.8000000000001 178.9000000000002 103.5000000000001 173.4000000000002 101.3000000000001 165.6000000000001C100.4000000000001 162.3000000000001 99.3000000000001 156.6000000000001 102.8000000000001 156.6000000000001C105.2000000000001 156.6000000000001 107.5000000000001 157.4000000000002 109.7000000000001 159.0000000000001C114.3000000000001 162.4000000000001 118.0000000000001 167.5000000000001 120.8000000000001 172.5000000000001C122.8000000000001 176.1000000000001 125.2000000000001 180.8000000000001 126.4000000000001 184.8000000000001C126.9000000000001 186.5000000000001 127.5000000000001 188.1000000000001 128.2000000000001 189.6000000000001C129.3000000000001 192.1000000000001 130.8000000000001 194.7000000000001 133.4000000000001 194.7000000000001C134.7000000000001 194.7000000000001 135.8000000000001 194.2000000000001 136.6000000000001 193.2000000000001C138.3000000000001 191.0000000000001 137.9000000000001 188.7000000000002 137.0000000000001 186.3000000000001C135.0000000000001 180.7000000000001 132.3000000000001 175.7000000000001 130.1000000000001 169.6000000000001C128.8000000000001 166.1000000000001 127.4000000000001 161.6000000000001 127.4000000000001 157.9000000000002C127.4000000000001 154.5000000000002 131.1000000000001 155.3000000000001 134.2000000000001 156.7000000000002C136.6000000000001 157.8000000000002 139.0000000000001 159.5000000000002 141.0000000000001 161.2000000000002C142.2000000000001 166.1000000000001 141.9000000000001 165.0000000000002 167.4000000000001 229.4000000000002C168.7000000000001 232.7000000000002 171.1000000000001 234.1000000000002 173.5000000000001 234.1000000000002C174.7000000000001 234.1000000000002 175.7000000000001 233.7000000000002 176.7000000000001 233.0000000000002C178.4 231.7000000000002 178.4 228.9000000000002 177.7000000000001 226.8000000000002C177.0000000000001 224.9000000000002 177.1000000000001 225.5000000000002 173.2000000000001 216.3000000000002C168.0000000000001 204.2000000000002 164.6000000000001 195.5000000000002 160.0000000000001 184.4000000000002C158.1000000000001 179.8000000000001 152.3000000000001 165.5000000000002 151.3000000000001 162.1000000000001C150.7000000000001 159.9000000000002 150.0000000000001 156.3000000000001 152.3000000000001 156.3000000000001C157.7000000000001 156.3000000000001 171.6000000000001 169.4000000000002 175.4000000000001 173.3000000000001C175.6000000000001 173.6000000000001 175.9000000000001 173.7000000000001 176.3000000000001 173.9000000000002C176.9000000000001 175.8000000000001 177.5000000000001 177.6000000000001 178.0000000000001 179.4000000000002C179.4000000000001 183.2000000000002 180.7000000000001 187.6000000000001 183.3000000000001 190.7000000000002C184.1000000000001 191.7000000000002 185.0000000000001 192.3000000000002 186.0000000000001 192.3000000000002C188.8000000000001 192.3000000000002 190.2000000000001 191.1000000000001 190.2000000000001 188.3000000000002C190.2000000000001 187.2000000000002 189.5000000000001 183.2000000000002 189.1000000000001 182.1000000000002C190.5000000000001 183.6000000000002 192.0000000000001 185.1000000000002 193.6000000000001 186.6000000000002C208.6000000000001 200.5000000000002 219.3000000000001 193.4000000000002 219.3000000000001 186.4000000000002C219.3000000000001 179.0000000000002 210.4 168.7000000000002 205.5 163.0000000000002C203.9 161.1000000000003 200.6 157.6000000000003 200.5 156.6000000000003C200.5 155.3000000000003 201.4 154.8000000000003 202.7 154.8000000000003C204.7 154.8000000000003 209.1 158.3000000000003 210.7 159.5000000000002C215.7 163.4000000000002 222.5 169.4000000000002 227.3 173.6000000000003L242.1 310.4000000000003C211.6 293.3000000000003 44.5 293.2000000000003 13.8 310.2000000000003zM243.5 318.7C243.5 297.7 12.3 297.7 12.3 318.7C12.3 327.5 64.1 334.6 127.9 334.6C136.9 334.6 145.7 334.5 154.2 334.2L166.8 382.9L228.1 447.4C229.5 448.8 233.9 447.6 238 443.9S244.6 436 243.3 434.6L243.2 434.5L185.9 374L175.9 333.3C215.8 330.7 243.5 325.2 243.5 318.7zM174.1 314.1C174.1 314.9 173.2 315.6 171.6 316.2L171.4 315.4C171.4 314.1 166.4 313 160.3 313S149.2 314.1 149.2 315.4C149.2 315.5 149.2 315.6 149.3 315.7L149.5 316.4C147.7 315.8 146.5 315 146.5 314.1C146.5 312 152.7 310.4 160.2 310.4C167.9 310.3 174.1 312 174.1 314.1z" />
+    <glyph glyph-name="hacker-news-square"
+      unicode="&#xF3AF;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM21.2 218.8H21C21.1 218.9 21.2 219.1 21.3 219.2C21.3 219.1 21.3 218.9 21.2 218.8zM239.2 164.9V64H207.8V166.7L128 320H165.3C217.8 221.7 214.5 218.8 224.6 194.4C236.9000000000001 221.4 230.4000000000001 218.8 285.2000000000001 320H320L239.2 164.9z" />
+    <glyph glyph-name="hacker-news"
+      unicode="&#xF1D4;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM21.2 218.8H21C21.1 218.9 21.2 219.1 21.3 219.2C21.3 219.1 21.3 218.9 21.2 218.8zM239.2 164.9V64H207.8V166.7L128 320H165.3C217.8 221.7 214.5 218.8 224.6 194.4C236.9000000000001 221.4 230.4000000000001 218.8 285.2000000000001 320H320L239.2 164.9z" />
+    <glyph glyph-name="hackerrank"
+      unicode="&#xF5F7;"
+      horiz-adv-x="464.36" d=" M453.5 320C439.01 344.95 261.13 448 232.16 448C203.2 448 25.25 345.21 10.84 320C-3.57 294.79 -3.65 89.2 10.84 63.99C25.33 38.79 203.22 -64 232.16 -64S439.01 38.92 453.49 64C467.97 89.08 467.98 295.05 453.5 320zM292.13 33.78C288.17 33.78 251.22 69.55 254.13 72.47C255 73.34 260.39 73.95 271.68 74.3C271.68 100.53 272.27 142.89 272.62 160.62C272.6600000000001 162.6399999999999 272.18 164.05 272.18 166.47H192.25C192.25 159.37 191.79 130.27 193.62 93.59C193.85 89.05 192.04 87.63 187.88 87.65C177.75 87.68 167.61 87.76 157.47 87.73C153.37 87.72 151.6 89.2599999999999 151.73 93.84C152.65 127.28 154.69 177.86 151.58 306.51V309.68C141.91 310.03 135.2 310.64 134.32 311.52C131.4 314.44 168.86 350.2099999999999 172.81 350.2099999999999C176.77 350.2099999999999 213.98 314.43 211.08 311.52C210.21 310.65 203.18 310.03 194.31 309.68V306.52C191.89 280.77 192.28 226.93 191.68 201.13H271.94C271.94 205.68 272.33 235.87 270.74 284.7699999999999C270.64 288.1599999999999 271.69 289.94 274.95 289.9699999999999C286.02 290.05 297.1 290.0999999999999 308.18 290.0299999999999C311.64 290.0099999999999 312.75 288.31 312.68 284.6499999999999C309.0300000000001 93.3599999999999 312.02 106.7099999999999 312.02 74.31C320.89 73.9599999999999 328.84 73.35 329.71 72.47C332.59 69.56 296.09 33.78 292.13 33.78z" />
+    <glyph glyph-name="hips"
+      unicode="&#xF452;"
+      horiz-adv-x="640" d=" M0 367.8C0 369.6 0.9 370.5 2.7 370.5H43.6C45.5 370.5 46.4 369.6 46.4 367.8V286.6C61.6 294.3 78.1 298.1 96.2 298C120.2 297.9 140.4 291.8 156.5 280C175.2 266.5 184.5 248.1 184.5 224.7V88.6C184.5 86.7000000000001 183.6 85.8 181.8 85.8H154.5C145.4 85.8 138.1 93.1 138.1 102.1V224.7C138.1 225.6 140.8 251.7 92.3 251.7C43.7 251.7 46.5 225.5 46.5 224.7V88.6C46.5 86.7000000000001 45.6 85.8 43.7 85.8H2.7C0.9 85.8 0 86.7 0 88.6V367.8zM497.7 146.3C511.4 136.1 531.8 127.2 556.1 127.2C579.4 127.2 588.9 131.7 592.6 140.8C595.6 148.7 592 156.9 580.4 162L526.8 185.5C505.4 194.9 492.9999999999999 209.5 489.6 229.1C483.9 262.8 511.8 282.4 512.3 282.8C525.5 292.4 544.3 298.2000000000001 570.8 298.2000000000001C589.8 298.2000000000001 608.1999999999999 294.9 625.9 288.3C627.1999999999999 287.8 627.8 287 627.8 285.7000000000001V241C627.8 238.9 625.5 237.6 623.8 238.6C584.0999999999999 259.3 547.1999999999999 250.9 539.8 245.4C533.1999999999999 240.5 533.8 232.9 542.4 229.3L600 204C616.5 196.9 628.1 185.6 634.9 169.9C640.4 157.3 641.5 144.3 638 130.8C628.4 93.9 593.1 85.3 592.4 84.9999999999999C581.9 81.8999999999999 568.8 80.6999999999999 556.1 80.6999999999999C539.5 80.6999999999999 523.5 83.3999999999999 507.9 88.8999999999999C498.2 92.2999999999999 493.3 99.1999999999999 493.3 109.5999999999999V144C493.3 146.1 495.6 147.7 497.7 146.3zM376.2 298.2C344.5 298.2 272 278.1 272 194.7V11.2C272 10.4 272.6 8.5 274.7 8.5H315.6C317.5 8.5 318.4 9.4 318.4 11.2V100C334.9 87.3 354.2 80.9 376.1 80.9C436.6 80.9 484.8 129.4 484.8 189.6C484.9 249.9 436.6 298.2 376.2 298.2zM376.2 127.3C359 127.3 344.3 133.4 332.2 145.5C320 157.6999999999999 314 172.3 314 189.5C314 224 341.6 251.7 376.2 251.7C410.7 251.7 438.4 224.0999999999999 438.4 189.5C438.5 155.1999999999999 411.1 127.3 376.2 127.3zM251.6 88.6C251.6 86.7 250.7 85.8 248.8 85.8H207.9C206.3 85.8 205.2 87.1999999999999 205.2 88.6V290.4C205.2 291.8 206.3 293.2000000000001 207.9 293.2000000000001H248.8C250.7 293.2000000000001 251.6 292.3 251.6 290.4V88.6M228.3 375.5C244.2 375.5 257.2 362.8 257.2 346.6C257.2 330.8 244.5 317.7 228.3 317.7S199.4 331 199.4 346.6C199.5 362.6 212.4 375.5 228.3 375.5" />
+    <glyph glyph-name="hire-a-helper"
+      unicode="&#xF3B0;"
+      horiz-adv-x="512" d=" M443.1 448H71.9C67.9 410.7 37.4 380.2 0 376.3V4.8C37.4 -0.1 66 -27.6 71.9 -64H444.1C447.1 -27.6 476.6 1.8 512 5.8V376.3C475.6 382.2 447 411.6 443.1 448zM406.1 43.1C369.8 43.1 387.3 45.1 351 45.1C315.2 45.1 330 43.1 294.9 43.1C289 43.1 290 51.3 294.9 52.9C317.7 60.5000000000001 317.8 63.1 319.5 65.7000000000001C329.9 81.3000000000001 325.4 148.7000000000001 325.4 178.7000000000001C325.4 184.0000000000001 319 191.5000000000001 311.6 191.5000000000001H200.4C193 191.5000000000001 186.6 184.0000000000001 186.6 178.7000000000001C186.6 148.7000000000001 182.1 81.3000000000001 192.5 65.7000000000001C194.2 63.2000000000001 194.3 60.5000000000001 217.1 52.9C222 51.3 223.1 43.1 217.1 43.1C182 43.1 196.8 45.1 161 45.1C124.7 45.1 142.2 43.1 105.9 43.1C98 43.1 100.1 53.9 105.9 53.9C116.1 57.3 119.4 57.4 127.6 67.7000000000001C135.3 80.6 135.5 112.1 135.5 195.5000000000001V296.7C135.5 318.9 123.3 325 106.9 329.1C98.1 331.3 102.9 340.9 107.9 340.9C144.4 340.9 128.5 338.9 165 338.9C197.7 338.9 181.5 340.9 214.2 340.9C217.5 340.9 222.7 332.6 215.2 330.1C210.3 328.5 187.6 326.4 187.6 290.8C187.6 245.2 187.4 235 188.6 222C188.6 220.7 190.9 209.2 201.4 209.2H310.6C321.1 209.2 323.4000000000001 220.7 323.4000000000001 222C324.6 235 324.4000000000001 245.2 324.4000000000001 290.8C324.4000000000001 326.4 301.7000000000001 328.5 296.8 330.1C289.3 332.6 294.5 340.9 297.8 340.9C330.5 340.9 314.3 338.9 347 338.9C383.5 338.9 367.6 340.9 404.1 340.9C409 340.9 414 331.3 405.1 329.1C388.7000000000001 325 376.5 318.8 376.5 296.7000000000001V195.5C376.5 112.1 376.6 80.6 384.4 67.7C392.6 57.5 395.8 57.3 406.1 53.9C411.9 53.9 413.9 43.1 406.1 43.1z" />
+    <glyph glyph-name="hooli"
+      unicode="&#xF427;"
+      horiz-adv-x="640" d=" M508.4 96H566.3V291.3L508.4 264V96zM582.1 206.5V96H640V206.5H582.1zM331.4000000000001 215.4C313.2000000000001 233.6 281.0000000000001 232.5 281.0000000000001 232.5S248.8000000000001 233.6 230.6000000000001 215.4C228.7000000000001 213.5 226.9000000000001 211.5 225.3000000000001 209.4C187.1 239 152.8000000000001 255.9 123.2000000000001 270.5V291.2L100.7000000000001 280.6C46.3000000000001 302.7 11.7 298.8 3.4 280.5C3.4 280.5 -21.4999999999999 247.7 65.3 169.6V200.6C16.5 255.2 26.3 276.7000000000001 30 279.8C43.5 291.2000000000001 67.5 287.8 94.4000000000001 277.7000000000001L65.2 264V200.7C78.3 186 95.7 169.2 118.7 150.3L123.2 146.7V176.5C123.2 183.4 124.9 194.7 134 194.7S144.6 187.8 144.6 179.7V131C162.6 118.8 181.9 108.9 202.3 101.4V195.3C202.3 214 188.9 232.7 161.7 232.7C145.9 232.8 131.2 224.5 123.2 210.8V265.1C165.1 244.2 207.1 218.6 223.1 206.8C212.9 192.2 213.8 178.6999999999999 213.8 163.1C213.8 144.4 212.4 128.8 230.6 110.6C248.8 92.4 281 93.4999999999999 281 93.4999999999999S313.3 92.3999999999999 331.4 110.6C349.6 128.8 348.1 144.4 348.1 163.1C348.1 181.6 349.6 197.3 331.4 215.4zM291.7000000000001 143.5C291.7000000000001 139.9 289.9000000000001 131 281.0000000000001 131C272.1000000000001 131 270.3000000000001 139.9 270.3000000000001 143.5V183.9C270.3000000000001 192.6 277.6000000000001 194.8 281.0000000000001 194.8C284.4000000000001 194.8 291.7000000000001 192.7 291.7000000000001 183.9V143.5zM477.4 215.4C459.2 233.6 427.0000000000001 232.5 427.0000000000001 232.5S394.7000000000001 233.6 376.6000000000001 215.4C358.4000000000001 197.2 359.8000000000001 181.5 359.8000000000001 162.8C359.8000000000001 144.1 358.4000000000001 128.5 376.6000000000001 110.3C394.8000000000001 92.1 427.0000000000001 93.2 427.0000000000001 93.2S459.3000000000001 92.1 477.4 110.3C495.6 128.5 494.2 144.1 494.2 162.8C494.1 181.6 495.5000000000001 197.3 477.4 215.4zM437.6 143.5C437.6 139.9 435.8 131 426.9000000000001 131C418.0000000000001 131 416.2000000000001 139.9 416.2000000000001 143.5V183.9C416.2000000000001 192.6 423.5000000000001 194.8 426.9000000000001 194.8C430.3 194.8 437.6 192.7 437.6 183.9V143.5zM611.1 216.5C627 216.5 640 229.4 640 245.4S627.1 269.9 611.1 269.9C595.2 269.9 582.2 261.3 582.2 245.4S595.1 216.5 611.1 216.5zM144.5 96L182.8 95.2C169.6 99.8 156.8 105.4 144.5 112V96zM123.1 96V124.6C116.6 128.8 110.1 133.3 103.7 138.2000000000001C88.9 149.4 76.2 159.9 65.2 169.7000000000001V96H123.1zM182.8 95.2C219.3 82.7 252.7 81 277.5 88C257.6 87.8 231.7 90.6 202.2 101.3V96L182.8 95.2z" />
+    <glyph glyph-name="hornbill"
+      unicode="&#xF592;"
+      horiz-adv-x="509.02" d=" M75.37 77.7C77.51 61.87 69.6 45.72 54.43 38.41C35.58 29.3099999999999 12.88 37.24 3.75 56.09C-5.33 74.92 2.62 97.67 21.45 106.74C28.5 110.1399999999999 36.08 111.16 43.3 110.12C-34.98 221.47 95.3 300.65 95.3 300.65C89.44 257.61 87.06 209.49 87.06 209.49C19.75 168.04 87.98 145.43 126.87 136.62C146.64 82.9999999999999 198.05 44.68 258.5300000000001 44.68C260.4500000000001 44.68 262.3 44.8899999999999 264.2000000000001 44.9599999999999L264.3100000000001 26.0999999999999C165.0900000000001 24.7099999999999 105.6100000000001 55.2399999999999 75.3700000000001 77.6999999999999zM183.38 405.4C184.27 412.4 183.28 419.73 179.99 426.55C170.89 445.39 148.17 453.33 129.33 444.24C110.47 435.14 102.53 412.41 111.64 393.56C118.62 379.0900000000001 133.66 371.14 148.82 372.33C126.27 342.42 94.99 282.76 96.4 182.3L118.24 182.45C118.22 183.35 118.1 184.22 118.1 185.13C118.1 244.08 154.47 294.46 205.95 315.29C213.96 353.04 236.6900000000001 429.59 279.79 359.58C279.79 359.58 327.93 357.2 370.9700000000001 351.34C370.9700000000001 351.35 293.13 479.37 183.38 405.4zM487.56 271.23C506.4 280.3200000000001 514.37 303.04 505.26 321.88C496.16 340.73 473.43 348.6500000000001 454.59 339.5700000000001C439.32 332.2000000000001 431.4 315.88 433.72 299.93C402.01 321.87 343.88 348.98 250.27 347.67L250.41 325.17C253.11 325.3200000000001 255.8 325.5800000000001 258.55 325.5800000000001C317.85 325.5800000000001 368.45 288.7800000000001 389.04 236.82C428.14 227.8 494.1 205.24 427.5 164.28C427.5 164.28 425.16 116.15 419.29 73.12C419.29 73.12 552.74 154.28 468.2499999999999 267.73C474.6799999999999 267.23 481.3199999999999 268.2200000000001 487.5599999999999 271.23zM373.05 11.76C394.48 44.22 419.4700000000001 101.45 418.19 191.42L398.67 191.28C398.75 189.22 398.9700000000001 187.21 398.9700000000001 185.13C398.9700000000001 124.86 360.92 73.58 307.5800000000001 53.68C298.73 14.73 276.1400000000001 -52.98 234.8100000000001 14.19C234.8100000000001 14.19 186.6900000000001 16.53 143.6200000000001 22.41C143.6200000000001 22.41 223.5400000000001 -108.9299999999999 335.5200000000001 -28.5599999999999C335.8300000000001 -33.28 336.9700000000001 -38.0099999999999 339.1600000000001 -42.53C348.2200000000001 -61.42 370.9600000000001 -69.3099999999999 389.8000000000001 -60.2399999999999C408.6600000000001 -51.1399999999999 416.5900000000001 -28.41 407.5000000000001 -9.59C400.9400000000001 4.03 387.2400000000001 11.84 373.0500000000001 11.76z" />
+    <glyph glyph-name="hotjar"
+      unicode="&#xF3B1;"
+      horiz-adv-x="448" d=" M414.9 286.5C340.2 419 121.1 448 121.1 448S222.2 337.6 93 250.3C11.3 195.2 -21 123.6 14 45.4C40.8 -14.5 97.5 -38.9 158.6 -48C129.4 7.1 152 74.4 154.5 81.6C211.6 -4.8 319.5 81.6 265.3 175.5C336.3 160.1 346.9 36.9 292.4000000000001 -40C372.9000000000001 -14.7 426.5 48.9 441.2000000000001 105.6C456.7 164.9 444.9000000000001 233.5000000000001 414.9000000000001 286.5z" />
+    <glyph glyph-name="houzz"
+      unicode="&#xF27C;"
+      horiz-adv-x="414.6" d=" M258.9 117.3H154.3V-32H0V416H109.5V311.5L414.6 225.9V-32H258.9V117.3z" />
+    <glyph glyph-name="html5"
+      unicode="&#xF13B;"
+      horiz-adv-x="384" d=" M0 416L34.9 20.2L191.5 -32L349.1 20.2L384 416H0zM308.2 288.1H124.4L128.5 238.7H304.1L290.5 90.3L192.6 63.3V62.9999999999999H191.5L92.8 90.3L86.8 166.1H134.5L138 128L191.5 113.5L245.2 128L251.2 190.2H84.3L71.5 335.8H312.6L308.2000000000001 288.1z" />
+    <glyph glyph-name="hubspot"
+      unicode="&#xF3B2;"
+      horiz-adv-x="512" d=" M267.4 236.4C242.3 212.7 226.6 179.1 226.6 141.8C226.6 112.5 236.3 85.5 252.6 63.8L203.1 14C198.7 15.6 194 16.5 189.1 16.5C178.3 16.5 168.2 12.3 160.6 4.7C153 -2.9 148.8 -13.1 148.8 -23.9S153 -44.8 160.6 -52.4C168.2 -60.0000000000001 178.4 -64 189.1 -64C199.9 -64 210 -60.1 217.7 -52.4C225.3 -44.8 229.5 -34.6 229.5 -23.9C229.5 -19.7 228.9 -15.7 227.6 -11.8L277.6 38.4C299.6 21.5000000000001 327 11.5000000000001 356.9000000000001 11.5000000000001C428.8000000000001 11.5000000000001 486.9 69.8000000000001 486.9 141.7000000000001C486.9 206.9 439.2000000000001 260.9000000000001 376.7000000000001 270.4000000000001V332C394.2000000000001 339.4 404.9000000000001 355.8 404.9000000000001 374.9C404.9000000000001 401 384.0000000000001 422.8 357.9000000000001 422.8S311.2 401 311.2 374.9C311.2 355.8 321.9 339.4 339.4 332V270.8C324.2 268.7000000000001 309.8 264.1 296.7 257.2000000000001C269.1 278.1 179.2 342.9000000000001 127.8 382C129 386.4000000000001 129.8 391 129.8 395.8C129.8 424.6 106.3 448 77.4 448C48.6 448 25.2 424.6 25.2 395.8C25.2 366.9 48.6 343.5 77.4 343.5C87.2 343.5 96.3 346.4 104.2 351.1L267.4 236.4zM356.9 72.8C318.8 72.8 287.9 103.7 287.9 141.8S318.8 210.8 356.9 210.8S425.9 179.9 425.9 141.8S395 72.8 356.9 72.8z" />
+    <glyph glyph-name="imdb"
+      unicode="&#xF2D8;"
+      horiz-adv-x="448" d=" M350.5 159.3C350.5 153.9 352.1 144.9 344.3 144.9C342.7 144.9 341.3 145.7000000000001 340.5 147.3C338.3 152.4 339.4 191.4 339.4 192C339.4 195.8 338.3 204.7 344.3 204.7C351.6 204.7 350.5 197.4 350.5 192V159.3zM265 218.1C265 227.8 266.6 234.1 254.7 234.1V150.4C266.9 150.1 265 159.1 265 168.8V218.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM21.3 219.2C21.2 219.1 21.1 218.9 21 218.8H21.3V219.2zM97 256H64V128.2H97V256zM210.3 256H167.2L159.6 196.1C156.9 216.1 154.2 236.2 150.9 256H108.1V128.2H137.1V212.7L149.3 128.2H169.9L181.5 214.6V128.2H210.2V256zM296.6 210.7C296.6 218.8 296.9000000000001 227.5 295.2000000000001 235.1C290.9000000000001 257.6 263.8000000000001 256 246.2000000000001 256H221.6000000000001V128.2C307.7000000000001 128.1 296.6 122.2 296.6 210.7zM382.5 193.4C382.5 210.7 381.7 223.5 360.3 223.5C351.4000000000001 223.5 345.4000000000001 220.8 339.4000000000001 214.3V256H307.7000000000001V128.2H337.5000000000001L339.4000000000001 136.3C345.1 129.5 351.3 126.5 360.3 126.5C380.1 126.5 382.5 141.7 382.5 157.4V193.4z" />
+    <glyph glyph-name="instagram"
+      unicode="&#xF16D;"
+      horiz-adv-x="448" d=" M224.1 307C160.5 307 109.2 255.7 109.2 192.1S160.5 77.2 224.1 77.2S339 128.5 339 192.1S287.7 307 224.1 307zM224.1 117.4C183 117.4 149.4 150.9 149.4 192.1S182.9 266.8 224.1 266.8S298.8 233.3 298.8 192.1S265.2 117.4 224.1 117.4zM370.5 311.7C370.5 296.8 358.5 284.9 343.7 284.9C328.8 284.9 316.9 296.9 316.9 311.7S328.9 338.5 343.7 338.5S370.5 326.5 370.5 311.7zM446.6 284.5C444.9000000000001 320.4 436.7000000000001 352.2 410.4000000000001 378.4C384.2000000000001 404.6 352.4000000000001 412.8 316.5 414.6C279.5 416.7 168.6 416.7 131.6 414.6C95.8 412.9 64 404.7 37.7 378.5S3.3 320.5 1.5 284.6C-0.6 247.6 -0.6 136.7 1.5 99.7C3.2 63.8 11.4 32 37.7 5.8S95.7 -28.6 131.6 -30.4C168.6 -32.5000000000001 279.5 -32.5000000000001 316.5 -30.4C352.4 -28.7 384.2 -20.5000000000001 410.4 5.8C436.6 31.9999999999999 444.8 63.8 446.6 99.6999999999999C448.7 136.6999999999999 448.7 247.5 446.6 284.5zM398.8 60C391 40.4 375.9000000000001 25.3 356.2 17.4C326.7 5.7 256.7 8.4 224.1 8.4S121.4 5.8 92 17.4C72.4 25.2 57.3 40.3 49.4 60C37.7 89.5 40.4 159.5 40.4 192.1S37.8 294.8 49.4 324.2C57.2 343.8 72.3 358.9 92 366.8C121.5 378.5 191.5 375.8 224.1 375.8S326.8 378.4 356.2 366.8C375.8 359 390.9 343.9 398.8 324.2C410.5 294.7 407.8 224.7 407.8 192.1S410.5 89.4 398.8 60z" />
+    <glyph glyph-name="intercom"
+      unicode="&#xF7AF;"
+      horiz-adv-x="448" d=" M392 416H56C25.1 416 0 390.9 0 360V24C0 -6.9 25.1 -32 56 -32H392C422.9 -32 448 -6.9 448 24V360C448 390.9 422.9 416 392 416zM283.7 333.9C283.7 353.7 313.6 353.7 313.6 333.9V134.4C313.6 114.6 283.7 114.6 283.7 134.4V333.9zM209.1 341.4C209.1 361.2 239 361.2 239 341.4V124.9C239 105.1 209.1 105.1 209.1 124.9V341.4zM134.4 333.9C134.4 353.7 164.3 353.7 164.3 333.9V134.4C164.3 114.6 134.4 114.6 134.4 134.4V333.9zM59.7 304C59.7 323.8 89.6 323.8 89.6 304V169.7C89.6 149.9 59.7 149.9 59.7 169.7V304zM383.1 76.2C310.3 13.2 141.4 10.8 64.9999999999999 76.2C49.9999999999999 89 69.4 111.7 84.4 98.9C150.3 43.6 300.5 45 363.7 98.9C378.5999999999999 111.8 398 89.1 383.0999999999999 76.2zM388.3 169.7C388.3 149.9 358.4 149.9 358.4 169.7V304C358.4 323.8 388.3 323.8 388.3 304V169.7z" />
+    <glyph glyph-name="internet-explorer"
+      unicode="&#xF26B;"
+      horiz-adv-x="512" d=" M483.049 288.294C493.904 312.8690000000001 504.473 348.7320000000001 504.473 376.165C504.473 448.887 424.832 474.536 294.8 414.742C187.168 421.923 83.579 341.072 57.7019999999999 228.2850000000001C88.554 263.1470000000001 135.973 310.5830000000001 179.679 329.4430000000001C125.404 281.15 79.128 219.998 43.992 156.275C23.246 118.349 0 57.06 0 11.253C0 -87.322 92.854 -75.2470000000001 180.251 -30.753C211.674 -46.183 246.81 -46.326 281.9460000000001 -46.326C379.0700000000001 -46.326 466.1950000000001 7.968 498.76 99.696H377.927C325.418 11.103 181.108 46.7 181.108 147.132H509.9C516.307 190.713 508.245 242.847 483.049 288.294zM64.559 101.123C82.27 49.973 118.262 5.252 164.825 -22.181C76.084 -71.1210000000001 -8.442 -51.277 64.559 101.1229999999999zM180.536 209.996C182.536 265.147 230.812 304.867 284.516 304.867C337.9340000000001 304.867 386.497 265.147 388.497 209.996H180.536zM365.072 397.596C386.497 407.883 413.635 419.599 437.63 419.599C469.052 419.599 491.904 397.882 491.904 365.877C491.904 345.874 484.477 316.87 477.335 298.01C451.0549999999999 340.302 411.349 379.594 365.072 397.596z" />
+    <glyph glyph-name="invision"
+      unicode="&#xF7B0;"
+      horiz-adv-x="448" d=" M407.4 416H40.6C18.2 416 0 397.8 0 375.4V8.6C0 -13.8 18.2 -32 40.6 -32H407.4000000000001C429.8 -32 448.0000000000001 -13.8 448.0000000000001 8.6V375.4C448.0000000000001 397.8 429.8000000000001 416 407.4000000000001 416zM176.1 302.4C176.5 279 153.7 275.1 149.5 275C134.6 275 122.4 287 122.4 302C122.5 337.2 175.5 337.5 176.1 302.4zM332.8 71C267.2000000000001 71 298.7 145 307.8 177.6C321.9000000000001 224 262.6 236.6 247.9 176.9L222.1 73.6H177L185.1 106.1C153.6 54.3 90.5 61.7000000000001 90.5 110.4C90.6 124.7000000000001 91.4 124.4 113.5 214.5H81.7L91.4 250.1H167.8C134.2 116.4 135.2 123.2000000000001 134.9 111.9C134.9 91.0000000000001 175.8 98.4 192.3 135.1L212.1 214.5H179.8L189.5 250.1H258.3L249.4 209.6C289.9 285.1 377.3 257.4000000000001 351.2 171.6C337 120.5 336.6 120.9 336.3 112.8C336.3 97.3 353.8 90.2 368.1 129.7L386 123C375.5 86.3 356.6 71 332.8 71z" />
+    <glyph glyph-name="ioxhost"
+      unicode="&#xF208;"
+      horiz-adv-x="640" d=" M616 288H548.7C511.2 377.3 422.9 440 320 440C183 440 72 329 72 192C72 175.6 73.6 159.5 76.7 144H24C10.7 144 0 133.2 0 120C0 106.7 10.7 96 24 96H91.3C128.8 6.7 217.1 -56 320 -56C457 -56 568 55 568 192C568 208.4 566.4 224.5 563.3 240H616C629.3 240 640 250.8 640 264C640 277.3 629.3 288 616 288zM520 192C520 81.5 430.5 -8 320 -8C244.3 -8 178.4 34 144.5 96H424C437.3 96 448 106.8 448 120C448 133.3 437.3 144 424 144H125.8C122 159.4 120 175.4 120 192C120 302.5 209.5 392 320 392C395.7 392 461.6 350 495.5 288H216C202.7 288 192 277.2 192 264C192 250.7 202.7 240 216 240H514.2C518 224.6 520 208.6 520 192zM216 216H424C437.3 216 448 205.3 448 192C448 178.8 437.3 168 424 168H216C202.7 168 192 178.7 192 192C192 205.2 202.7 216 216 216z" />
+    <glyph glyph-name="itunes-note"
+      unicode="&#xF3B5;"
+      horiz-adv-x="384" d=" M381.9 59.8C375.5 32.4 354.7 17 326.8 11.8C302.3 7.3 281.9 6.2 262.3 22C238.4 42.1 238.1 75.4 259.6 96.4C276.6 112.6 300.5 115.9 336.4 122.2C342.4 123.3 347.6 124.7 352 129.6C358.4 136.8 356.4 133.7 356.4 292.8C356.4 304 350.9 307.1 339.4 305.1C331.2 303.7 153.7 270.5 153.7 270.5C143.5 268.3 140.3 265.3 140.3 253.8C140.3 19.1 141.4 29.9 137.8 14.3C133.6 -3.9 122.4 -17.6 107.6 -25.2C90.8 -34.5000000000001 60.4 -38.6 44.2 -35.6C1 -27.5 -14.2 22.4 15.1 51C32.1 67.2 56 70.5 91.9 76.8C97.9 77.9 103.1 79.3 107.5 84.2C117.6 95.7 109.3 340.8 112.7 354.4C113.5 359.6 115.7 364 119.8 367.3C124 370.8 131.6 372.8 133.2 372.8C337.2 411 362.1 415.9 365.6 415.9C377.1 416.7 383.7 409.9 383.7 398.3C383.9 53.8 384.8 72.3 381.9 59.8z" />
+    <glyph glyph-name="itunes"
+      unicode="&#xF3B4;"
+      horiz-adv-x="448" d=" M223.6 367.7C129 367.7 52.5 291 52.5 196.5S129 25.2 223.6 25.2S394.8 101.9 394.8 196.4C394.8 291 318.1 367.7 223.6 367.7zM303 127.7C299.8 114.1 289.5 106.5 275.7 103.9C263.6 101.7 253.5 101.1 243.8 108.9C232 118.9 231.8 135.3 242.4 145.7C250.8 153.7 262.7 155.3 280.4 158.5C283.4 159 286 159.7 288.1 162.2C291.3 165.8 290.3 164.2 290.3 243C290.3 248.6 287.6 250.1 281.9 249.1C277.9 248.4 190 232 190 232C185 230.9 183.3 229.4 183.3 223.7C183.3 107.6 183.8 112.9 182.1 105.2C180 96.2 174.5 89.4 167.2 85.6C158.9 80.9999999999999 143.8 78.9999999999999 135.8 80.4C114.4 84.4 106.9 109.1 121.4 123.3C129.8 131.3 141.7 132.9 159.4 136.1C162.4 136.6 165 137.3 167.1 139.8C172.1 145.5 168 266.8 169.7 273.5C170.1 276.0999999999999 171.2 278.3 173.2 279.9C175.3 281.5999999999999 179 282.5999999999999 179.9 282.5999999999999C280.9 301.5999999999999 293.2 304 295 304C300.7 304.4 304 301 304 295.3C303.8999999999999 124.6999999999999 304.3999999999999 133.9 303 127.6999999999999zM345.2 416H102.8C45.9 416 0 370.1 0 313.2V70.8C0 13.9 45.9 -32 102.8 -32H345.2C402.2 -32 448 13.9 448 70.8V313.2C448 370.1 402.1 416 345.2 416zM223.6 4C117.3 4 31.1 90.2 31.1 196.5S117.3 389 223.6 389S416.1 302.8 416.1 196.5S329.9 4 223.6 4z" />
+    <glyph glyph-name="java"
+      unicode="&#xF4E4;"
+      horiz-adv-x="377.6" d=" M121.6 52S102 40.6 135.5 36.8C176.1 32.2 196.8 32.8 241.5 41.3C241.5 41.3 253.3 33.9 269.7 27.5C169.5 -15.4 42.9 30 121.6 52M109.4 108.1S87.5 91.9 121 88.4C164.3 83.9 198.6 83.6 257.8 95.0000000000001C257.8 95.0000000000001 266 86.7000000000001 278.9000000000001 82.2000000000001C157.6 46.7 22.6 79.3000000000001 109.4 108.1M212.6 203.2C237.3 174.8 206.1 149.2000000000001 206.1 149.2000000000001S268.8 181.6 240.0000000000001 222.1000000000001C213.1 259.9000000000001 192.5 278.7000000000001 304.1 343.4000000000001C304.2000000000001 343.4000000000001 128.9 299.6 212.6 203.2000000000001M345.2000000000001 10.6S359.7000000000001 -1.3 329.3000000000001 -10.6C271.4000000000001 -28.1 88.5000000000001 -33.4 37.7 -11.3C19.4 -3.4 53.7 7.7 64.5 10.0000000000001C75.7000000000001 12.4 82.2000000000001 12.0000000000001 82.2000000000001 12.0000000000001C61.9000000000001 26.3000000000001 -49.1 -16.1 25.8 -28.1999999999999C230.0000000000001 -61.3999999999999 398.2000000000001 -13.3 345.2000000000001 10.6000000000001M131 166.2S37.9 144.1 98 136.1C123.4 132.7 174 133.5 221.1 137.4C259.6 140.6 298.3 147.6 298.3 147.6S284.7 141.8 274.9000000000001 135.1C180.4 110.2 -2.1 121.8 50.4 147.2C94.9 168.6 131 166.2 131 166.2M298 72.9C394.1 122.8 349.6 170.8 318.6 164.3C311 162.6999999999999 307.6 161.3 307.6 161.3S310.4000000000001 165.6999999999999 315.8 167.6C377.1 189.2 424.3 103.9999999999999 296 70.3C296 70.4 297.5 71.6999999999999 298 72.9M240 448S293.2 394.8 189.5 313C106.4 247.4 170.5 209.9 189.5 167.2C141 211 105.4 249.5 129.3 285.4C164.4 337.9 261.5 363.5 240 448M140.5 -62.4C232.7 -68.2999999999999 374.3 -59.1 377.6 -15.5C377.6 -15.5 371.2000000000001 -32 301.4000000000001 -45.2C222.7000000000001 -60 125.6 -58.3 68.1 -48.8C68.1 -48.7 79.9 -58.5 140.5 -62.4" />
+    <glyph glyph-name="jedi-order"
+      unicode="&#xF50E;"
+      horiz-adv-x="448" d=" M231.89 112.28L263.33 158.17L243.15 102.67L305.71 93.58L243.15 84.5L267.37 37.07S237.15 68.84 232.88 73.32C234.64 4.54 235.07 -12.38 235.07 -12.38S389.4700000000001 59.27 303.69 217.71C303.69 217.71 410.66 335.78 313.78 408.44C313.78 408.44 479.28 308.53 374.33 136.98C374.33 136.98 461.11 221.75 415.7 307.52C415.7 307.52 494.41 196.51 398.54 74.41C398.54 74.41 424.78 90.56 447.99 152.12C447.99 152.12 431.06 -31.14 226.03 -33.5400000000001V-33.5600000000001H221.9499999999999V-33.5400000000001C16.93 -31.14 0 152.12 0 152.12C23.21 90.56 49.44 74.41 49.44 74.41C-46.43 196.5200000000001 32.29 307.5200000000001 32.29 307.5200000000001C-13.12 221.7400000000001 73.67 136.98 73.67 136.98C-31.28 308.54 134.21 408.44 134.21 408.44C37.33 335.78 144.3 217.71 144.3 217.71C58.52 59.27 212.92 -12.38 212.92 -12.38S213.35 4.55 215.11 73.32L180.63 37.07L204.85 84.5L142.29 93.58L204.85 102.67L184.67 158.17L216.11 112.28C218.36 200.13 223.93 418.1 223.96 419.13L223.97 421.56L223.99 420.56L224.02 421.56L224.03 419.13C224.08 417.41 229.64 199.93 231.89 112.28z" />
+    <glyph glyph-name="jenkins"
+      unicode="&#xF3B6;"
+      horiz-adv-x="512" d=" M487.1 23C485.7 34.2 468.1 46.1 458.9 54.9C453.8 59.9 429.9000000000001 78 428.5000000000001 84.8C427.1000000000001 91.4 438.2000000000001 106.3 441.8000000000001 113.6999999999999C446.9000000000001 124.3999999999999 450.6000000000001 137.3999999999999 453.1000000000001 146.3C471.9000000000001 212.4 473.8000000000001 303.2 446.9000000000001 357.5C436.7000000000001 378.0999999999999 408.3000000000001 406.5 390.5000000000001 420C348.5000000000001 451.6999999999999 270.9000000000001 455.3 220.4000000000001 436.6C206.3000000000001 431.3999999999999 192.6000000000001 426.8 180.3000000000001 419.5C147.2000000000001 400.1 112.0000000000001 387 102.2000000000001 347.9C78.0000000000001 337.1 70.7000000000001 306.1 71.9000000000001 270.1C72.1000000000001 263.1 76.0000000000001 254.3 74.6000000000001 247.7C73.9000000000001 244.4 69.4000000000001 240.1 68.5000000000001 237.9C56.9000000000001 210.2 66.2000000000002 173.9 79.6000000000001 154.1999999999999C87.7000000000001 142.3 101.1000000000001 131.8 118.8000000000002 129C119.5000000000002 118.3999999999999 122.1000000000001 109.3 127.0000000000002 98.6C130.1000000000001 91.8 141.7000000000001 79.6 137.4000000000002 70.9C135.2000000000002 66.5 116.4000000000002 57.1 110.1000000000002 53.3C89 40.8 73.7 33 54.2 19C41.6 10 21.9 8.8 25 -12.1C27.1 -26.2 35.1 -43.7 39.7 -57.9C40.4 -59.9 41.1 -62.0000000000001 41.8 -63.9H463.8C468.7 -48.6 473.5 -33.0000000000001 478.4 -16.7C481.8 -5.3000000000001 488.6 11.1 487.1 22.9999999999999zM205.9 414.3C207.7 414.8 209.3 413.6 210.8 411.9C210.6 406.7 205.4 406.8 201.9 405.1C196.5 398.4 188.5 395.3 181.9 387.9C175.1 380.4 167.5 360.2 158.5 357.9C154 356.8 148.8 358.7 144.9 358.4C134.5 357.7 127.2 352.4 116.6 350.9C130.2 380.8 172.7 404.9 205.9 414.3zM101.1 320.7C114.6 335.6 133.2 344.8 155.9 346.6C167.6 316.9 147.5 281.6 155 249C157.3 239.1 165.2 223.6 152.6 223.3C152.9 251.6 117.8 269.6 91.3 252.9C89.5 274.4 86.4 304.6 101.1 320.7zM137.8 120.5C136.8 124.6 135.1 133.4 135.5 135.6C137.1 144.3 152.6 148.1 146.5 160.3C135.2 160.4 132.7 150.1 122.4 149C95.7 146.4 76.8 184.4 78 207.4C79 226.9 95.6 245.6 118.1 243.2C134.1 241.4 139.5 224 142.6 208.5C151.8 208 165.1 208.9 169.5 216.1C168.9 233.6 160.7 247.7 161.3 263.8C162.3 294.1 178.8 321.4 166.1 351.2000000000001C179.7 382.1 219.6 406.5 249.2 421.2000000000001C285.8 439.5 344.1 424.9000000000001 378.5 405.4000000000001C398.2 394.3 412.9 372.7000000000001 426.8 354.7000000000001C407.3 360.5 390.7 350.5 393.7 334.4000000000001C410 349.3 437.9 334.6 446.2 318C454.1 302.2000000000001 454 278.7000000000001 455.2 255.2000000000001C458.1 198.2000000000001 444.8 139.3000000000001 416.1 98.1C408.4 87.1 402 75.1 391.2 67.5C365.2 49.3 325.8 32.8 292 44.1C247.3 59.1 227 88.9 202.5 122.9C203.2 104.2000000000001 216.3 88.8 229.3 74.5000000000001C240.6 62.0000000000001 254.3 47.9 269 42.1000000000001C256.7 45.0000000000001 237.9 45.9000000000001 232.8 34.9000000000001C204.2 36.8000000000001 177.7 39.7000000000001 164.1 59.1000000000001C153.5 74.5000000000001 142.7 100.5000000000001 137.8 120.5000000000001zM359.8 -3.6C363.9000000000001 -0.6 370.9000000000001 -0.7 377.2 0C371.8 2.7 364.2 3.7 357.9 2.2C357.8 6.4 355.9 9 354.7 12.4C365.3 16.2 390.2 40.9 404.3 32.7C411 28.8 413.8 6.5 414.4000000000001 -4.3C414.8 -13.3 413.6 -22.3 409.9000000000001 -27.1C391.1 -26.5 374.1 -24.3 359.2000000000001 -20.1C360.1 -14 358.2000000000001 -8 359.8000000000001 -3.6zM342.6 16.4C325.8 15.6 316.6 17.6 304.3 27.2C304.5 28 305.7 27.7 305.8 28.6C323.8 20.6 346.6 31.9 364.8 33.4999999999999C356.9000000000001 28.3999999999999 350.2 21.8999999999999 342.6 16.3999999999999zM330.5 -16.8C328.9 -7.4 327 -4.8 327.7 3.4C352.7 20 357.4 -25.2 330.5 -16.8zM226 9.4C214.4 10.1 177.9 23.4 187.5 33.1C196.9 26.6 215 28.2 228.8 25.8C229.6 21.4 226 15.6 226 9.4zM57.7 -49.1C53.4 -36.4 48.5 -24 42.9 -12.2C73.7 11.6 108.2 36.6999999999999 145.1 51.3C147.9 52.4 168.3 25.9 171.3 23.6999999999999C187.8 11.9999999999999 208.3 2.6999999999999 227.5 -6.5000000000001C228.7 -15.3000000000001 231.4 -26.7 236.2 -42.0000000000001C236.9 -44.3000000000001 237.6 -46.7 238.4 -49.2H57.7zM298.3 -54.8H297.5C297.8 -54.6 298 -54.4 298.3 -54.3V-54.8zM305.8 -49.1C307.9000000000001 -47.7 310.1 -46.3 312.2 -44.8C313.3 -46.2 314.4 -47.6 315.4 -49.1H305.8zM320.9000000000001 -24.4C310.1 -31.7 300.3 -42.7 287.6 -49.6C281.6 -52.9 260.6 -61.3 254.2 -59.8C250.6 -59 250.3 -54.5 248.8 -50.3C245.7 -41.3 238.7 -26.9 238 -13.3C237.2 3.9 235.5 32.7 254 29.1C268.9 26.2 286.3 19.4 297.9 12.9999999999999C305 9.1 309 4.3999999999999 319.8 3.4999999999999C319.7 2.1 319.7 0.6999999999999 319.6 -0.8000000000001C313.7 -4.7 304.3 -4.6000000000001 297.8 -7.9000000000001C307.3 -8.3000000000001 314.8 -10.6000000000001 321.3 -13.8000000000001C321.2 -17.2 321 -20.8000000000001 320.9 -24.4000000000001zM374.3 -49.1H360.3C360.2 -45.9 357.5 -43.3 354.2 -43.3S348.3 -45.9 348.1 -49.1H330.7C327.9 -44.7 325 -40.5 321.8 -36.6C323.9000000000001 -34.4 325.8 -31.9 327.8 -29.7C336.8 -33.4 342.6 -24.8000000000001 349.5 -25.5000000000001C357.4 -26.3000000000001 363.7 -37.2 374.9 -36.5000000000001L374.3 -49.1000000000001zM383 -49.1C383.2 -45.1 383.4 -41.3 383.6 -37.6C399.2000000000001 -30.3 412.6 -38.9 419.3 -49.1H383zM466.4 -12.1C464.1 -23.3 460.6 -36.1 456.5 -49.2C456.3 -49.1 456.1 -49.1 455.9 -49.1H428C428.6 -48 429.2 -46.9 429.9 -45.8C427.3 -39.7 420.9 -37.1 419 -30.3C431.1 -7.6 425.5 63.1 394.8 48.2C399.1 54.5 410.4000000000001 59.7 415.6 67.5C428.6 57.1 436.4000000000001 47.2 448.8 36.1C455.6 30.1 468.8 22.8 470.2 13C471 7.5 467.6 -5.9 466.4 -12.1zM222.2 317.5C227.6 332.4 249.4 352.2 267.2 349.5C274.9 348.3 285.2 341.3 279.4 331.8C249.2 338.8 234.2 319.2 225 298.7C216.9 300.7 220.1 311.8 222.2 317.5zM406.3 254.4C414.5 258 428.7 255.1 435.9 259.7000000000001C431.7 271.2000000000001 425.6 281.1 426.6 297.4000000000001C427.1 297.4000000000001 427.6 297.4000000000001 428 297.3000000000001C434.8 283.1 440.7 268.1 449.3999999999999 255.6C443.7 242.1 405.7999999999999 230.2 406.2999999999999 254.4000000000001zM426.7 297.4zM309.5 251.7C302.7 262.6 290.5 284.2 295 297C301.5 285.1 303.6 272.6 312.8 263.7C316.9 259.7 325 254.7 321 243.5C320.1 240.8 313.2 234.9 309.3 233.8C294.9 229.5 261.4 232.9 272.7 250.9C284.5999999999999 250.2 300.5999999999999 243.1 309.5 251.7zM336.8 181.7C340.6 175.1 338.2 163 348.9 161.1C369.1 157.7 392.5 173.4 407 178.9C416 194.1 406.2 199.6 398.1 209.4C381.5 229.4 359.3 254.2 360.1 284.1C366.8 289 367.4000000000001 276.7 368.3 274.4C377 254.1 398.7 228.2 414.6 210.9C418.5 206.6 424.9000000000001 202.5 425.6 199.7C427.7000000000001 191.5 420.2000000000001 181.7 421.1 176.2C399.4000000000001 162.3 375.3 147.1 339.7000000000001 150.6C332.3000000000001 157.3 329.4000000000001 172 336.8000000000001 181.7zM135.5 190.9C128.6999999999999 194.8 127.0999999999999 211.9 119.0999999999999 212.3C107.6999999999999 213 109.7999999999999 190.1 109.7999999999999 176.8C101.9999999999999 183.9 100.5999999999999 205.9 106.2999999999999 217.1C99.7 220.3 96.7999999999999 213.5 93.2 211.2C97.9 245.3 143 227 135.5 190.9zM435.1 162.1C425 142.9 410.7 121.7 381.1 121.1C380.5 127.3 380 136.7 381.1 140.5C403.8 142.6999999999999 417.7 154.1999999999999 435.1 162.1zM293.2 149.7C312.0999999999999 139.8 346.8 138.7 372.5 139.5C373.8999999999999 133.9 373.8 126.9 373.8999999999999 120.1C340.8999999999999 118.3 301.8999999999999 126.5 293.2 149.7000000000001zM385.3999999999999 103C383.7 98.7 380.0999999999999 93.7 375.5999999999999 91.9C363.4999999999999 87 329.9999999999999 83.2 313.2 92.2C302.5 97.9 295.7 110.7 289.8 118.2C287 121.8 272.9 131.1 289.6 131.1C302.7 98.4 347.6 102.1 385.4 102.9999999999999z" />
+    <glyph glyph-name="jira"
+      unicode="&#xF7B1;"
+      horiz-adv-x="496" d=" M490 206.3C417.1 279 320.6 376.2 248.5 448C83 283.1 6 206.3 6 206.3C-1.9 198.4 -1.9 185.6 6 177.6C138.8 45.3 67.8 116.1 248.5 -64C627.9 314 264.2 -47.3 490 177.7C498 185.6 498 198.4 490 206.3zM248.5 116.3L172.5 192L248.5 267.7L324.5 192L248.5 116.3z" />
+    <glyph glyph-name="joget"
+      unicode="&#xF3B7;"
+      horiz-adv-x="496" d=" M227.5 -20.7C218.5 -7.1 207.6 12.6 203.8 21.7C198.1 35.4 176.6 67.3 235 88.8C286.7 107.9 411.7 105.3 443.8 106.4C439.8 97.4 435.2 88.5 429.9000000000001 79.8C389.5000000000001 14.3 319.5 -21.7 247.9000000000001 -21.7C241.1 -21.7 234.3000000000001 -21.3000000000001 227.5000000000001 -20.7M66.1 304.1C128 404.6 259.6 435.8 360.1 373.9C434.9000000000001 327.8 471.3 243 459.4 161.2000000000001C434.5000000000001 161.7000000000001 280.1 164.8000000000001 229.1 166.1C173.6 167.5 147.4 186.9 170.6 214.3C193.8 241.7 221.7 255 239.5000000000001 265.5C257.4000000000001 276 266.8 299.2 215.9 295.2C87.3 286.5 48.6 195.9 37.6 155C28.8 204.7 37.5 257.7 66.1 304.1M36.9 322.1C-35 205.5 1.3 52.8 117.9 -19.1C234.5 -91 387.2 -54.7 459.1 61.8C531 178.4 494.7 331.2 378.1 403C337.6 428.1 292.6 440 248.2 440C165 440 83.8 398.1 36.9 322.1M281.3 211.7C249.8 191.2 216 180.4 216 180.4L385.5 182L432 205.4S435.6 214.9 412.9 220.9C390.2 226.9 355.9 209.6 326.2 193.7C296.5 177.9 295.1 185.5 295.1 185.5S335.3 213.6 345.8 220C356.3 226.4 377.7 234 359.2 244.6C356 246.4 352.5 247.3 348.8 247.3C331 247.3 307.3 228.6 281.3 211.7" />
+    <glyph glyph-name="joomla"
+      unicode="&#xF1AA;"
+      horiz-adv-x="448" d=" M0.6 355.9C0.6 389.2 27.4 416 60.4 416C90.4 416 114.9 394.1 119.6 365.8C152.2 373.4 186.7 365.2 216.1 335.8L171.8 291.5C151.3 312 129.2 307.8 116.4 295C102.1 280.7 102.1 257.1 116.4 242.8L215.9 143.3L171.9 99C84.2 186.2 122.2 148.7 72.1 198.7C45.3 225.2 37.1 263.5 47.3 297.6C20.4 303.4 0.6 327.3 0.6 355.9zM130.1 239.5L174.4 195.2C184.4 205.2 264.1 284.9 274.1 295C288.4 309.3 311.7 309.3 326 295C338.8 282.2 343 260 322.5 239.6L366.5 195.3C397.7 226.5 405 262.9 395.3999999999999 296.5C424.5999999999999 300.6 447.2999999999999 325.7 447.2999999999999 356C447.2999999999999 389.2 420.4999999999999 416.1 387.4999999999999 416.1C357.1999999999999 416.1 332.0999999999999 393.6 327.9999999999999 364.5C294.1999999999999 374.4 256.2999999999999 366 229.6999999999999 339.4C211.3999999999999 320.3 158.5999999999999 267.9 130.0999999999999 239.5zM396.4 87.3C404.6 120 395.5 155.8 370.1 181.2000000000001C358.3 193.4 375.1 176.5000000000001 270.6 280.9000000000001L226.3 236.6L326 136.9C340.3 122.6 340.3 99.3 326 85.0000000000001C313.2 72.2000000000001 291 68.0000000000001 270.6 88.5000000000001L226.6 44.2C254.2 14.0000000000001 294.6 5.4 329.3 16.2C334.8 -11.1999999999999 359 -31.9 388.2 -31.9C421.2 -31.9 448 -5.1 448 28.2C448 58.4 425.5 83.2000000000001 396.3999999999999 87.3000000000001zM312.1 140.4L268.1 184.7000000000001C181.1 98.3000000000001 217.7 134.3000000000001 168.4 84.9C154.1 70.6 130.8 70.6 116.5 84.9C103.4 98.3 99.6 120.2000000000001 119.7 140.3L75.7 184.6C45.5 154.4 37.7 119.4 46.2 86.3C19.5 80.3 0 56.4 0 28.1C0 -5.2 26.8 -32 59.8 -32C88.4 -32 112.3 -12.2 118.4 14.7C151.1 6.5 186.9 15.3 212.6 40.7C244.7 72.7 224.8 53.1 312.1 140.4z" />
+    <glyph glyph-name="js-square"
+      unicode="&#xF3B9;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM243.8 66.6C243.8 23 218.2 3.1 180.9 3.1C147.2 3.1 127.7 20.5 117.7 41.6L152 62.3C158.6 50.6 164.6 40.7 179.1 40.7C192.9 40.7 201.7 46.1 201.7 67.2V210.3H243.8V66.6zM343.4 3.1C304.3 3.1 279 21.7 266.7 46.1L301 65.9C310 51.2 321.8 40.3 342.5 40.3C359.9 40.3 371.1 49 371.1 61.1C371.1 75.5 359.7000000000001 80.6 340.4000000000001 89.1L329.9000000000001 93.6C299.5000000000001 106.5 279.4000000000001 122.8 279.4000000000001 157.1C279.4000000000001 188.7000000000001 303.5000000000001 212.7 341.0000000000001 212.7C367.8000000000001 212.7 387.0000000000001 203.4 400.8000000000001 179L368 158C360.8 170.9 353 176 340.9 176C328.6 176 320.8 168.2 320.8 158C320.8 145.4 328.6 140.3 346.7 132.4L357.2 127.9C393 112.6 413.0999999999999 96.9 413.0999999999999 61.7C413.0999999999999 23.9 383.2999999999999 3.1 343.3999999999999 3.1z" />
+    <glyph glyph-name="js"
+      unicode="&#xF3B8;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM243.8 66.6C243.8 23 218.2 3.1 180.9 3.1C147.2 3.1 127.7 20.5 117.7 41.6L152 62.3C158.6 50.6 164.6 40.7 179.1 40.7C192.9 40.7 201.7 46.1 201.7 67.2V210.3H243.8V66.6zM343.4 3.1C304.3 3.1 279 21.7 266.7 46.1L301 65.9C310 51.2 321.8 40.3 342.5 40.3C359.9 40.3 371.1 49 371.1 61.1C371.1 75.5 359.7000000000001 80.6 340.4000000000001 89.1L329.9000000000001 93.6C299.5000000000001 106.5 279.4000000000001 122.8 279.4000000000001 157.1C279.4000000000001 188.7000000000001 303.5000000000001 212.7 341.0000000000001 212.7C367.8000000000001 212.7 387.0000000000001 203.4 400.8000000000001 179L368 158C360.8 170.9 353 176 340.9 176C328.6 176 320.8 168.2 320.8 158C320.8 145.4 328.6 140.3 346.7 132.4L357.2 127.9C393 112.6 413.0999999999999 96.9 413.0999999999999 61.7C413.0999999999999 23.9 383.2999999999999 3.1 343.3999999999999 3.1z" />
+    <glyph glyph-name="jsfiddle"
+      unicode="&#xF1CC;"
+      horiz-adv-x="576" d=" M510.634 210.538C505.907 213.159 504.97 216.286 504.253 221.314C501.9010000000001 237.802 500.7140000000001 254.933 495.1560000000001 270.409C459.2610000000001 370.366 341.1660000000001 413.795 248.3070000000001 362.055C220.9370000000001 346.805 199.3360000000001 325.6860000000001 182.8140000000001 298.1520000000001C179.6300000000001 299.6600000000001 177.3560000000001 300.862 174.9900000000001 301.838C144.8880000000001 314.259 115.9410000000001 311.9590000000001 89.6590000000001 292.6710000000001C64.1280000000001 273.9340000000001 53.2370000000001 248.123 56.9830000000001 216.263C57.3380000000001 213.238 55.0160000000001 208.642 52.4690000000001 206.7180000000001C12.7570000000001 176.7260000000001 -3.5619999999999 128.653 10.5670000000001 82.1030000000001C24.3980000000001 36.5340000000001 68.0810000000001 2.3070000000001 116.1750000000001 0.6700000000001C146.4660000000001 -0.3609999999999 176.8120000000001 0.1240000000001 207.1340000000001 0.1310000000001C291.1750000000001 0.1520000000001 375.2240000000001 -0.3999999999999 459.2540000000001 0.6110000000001C511.9180000000001 1.2450000000001 555.3620000000001 37.4840000000001 567.4660000000001 87.9040000000001C579.0060000000001 135.9780000000001 556.3220000000001 185.2040000000001 510.6340000000001 210.5380000000001zM531.741 53.658C513.511 31.226 489.398 18.405 460.461 18.008C403.587 17.227 346.694 17.778 289.8090000000001 17.778C289.8090000000001 17.078 126.781 17.619 126.081 17.624C82.22 17.956 49.342 37.39 30.906 77.619C12.004 118.864 26.902 168.4670000000001 65.092 193.725C74.274 199.798 77.597 205.291 75.188 216.861C69.698 243.222 79.641 264.817 101.608 279.842C124.595 295.5650000000001 149.03 295.988 173.642 282.925C183.911 277.475 188.249 271.361 195.84 285.452C210.0620000000001 311.851 230.3970000000001 332.179 256.511 346.746C353.971 401.112 484.881 339.178 486.751 214.049C486.873 205.899 489.163 201.621 496.599 198.155C554.1590000000001 171.326 571.0550000000001 102.033 531.7410000000001 53.658zM443.952 134.1570000000001C438.104 103.0000000000001 409.33 79.061 377.286 79.062C360.3330000000001 79.063 345.228 85.607 333.207 96.767C305.51 122.48 262.066 171.747 237.27 190.154C217.214 205.042 195.28 202.487 176.998 186.372C127.002 142.3010000000001 192.857 64.597 244.061 109.184C248.609 113.144 251.901 118.727 256.805 122.028C264.989 127.537 277.571 122.912 269.973 111.406C252.615 85.122 220.643 73.209 191.11 82.105C162.213 90.809 142.27 118.073 142.484 152.284C143.709 174.769 154.848 195.344 177.898 208.249C200.473 220.887 224.267 221.395 244.889 205.775C295.68 167.3 320.467 124.03 352.185 104.53C376.743 89.431 406.439 97.167 421.008 122.036C449.838 171.245 386.416 227.052 342.14 185.4959999999999C338.151 181.7519999999999 335.223 176.5639999999999 330.73 173.7759999999999C319.755 166.9649999999999 313.397 177.8889999999999 317.921 184.1289999999999C338.6239999999999 212.6829999999999 368.385 224.5689999999999 401.192 212.3429999999999C432.6209999999999 200.6289999999999 450.3 167.9769999999999 443.952 134.1569999999999z" />
+    <glyph glyph-name="kaggle"
+      unicode="&#xF5FA;"
+      horiz-adv-x="291.72" d=" M291.7200000000001 -60.98C291.2100000000001 -62.99 289.2100000000001 -63.99 285.7100000000001 -63.99H218.79C214.77 -63.99 211.28 -62.24 208.27 -58.72L97.74 81.86L66.92 52.54V-56.48C66.92 -61.4999999999999 64.41 -63.9999999999999 59.4 -63.9999999999999H7.52C2.5 -64 0 -61.5 0 -56.48V440.49C0 445.49 2.5 448 7.52 448H59.4C64.41 448 66.92 445.49 66.92 440.49V134.49L199.24 268.31C202.75 271.81 206.26 273.57 209.76 273.57H278.9400000000001C285.9000000000001 273.57 286.8400000000001 265.7 284.2000000000001 263.05L144.35 127.74L290.2100000000001 -53.46" />
+    <glyph glyph-name="keybase"
+      unicode="&#xF4F5;"
+      horiz-adv-x="412.3" d=" M177.2 17.1C177.2 7.3 169.2 -0.7 159.4 -0.7S141.6 7.3 141.6 17.1S149.6 34.9 159.4 34.9C169.2 35.0000000000001 177.2 27.0000000000001 177.2 17.1zM270 35C260.2 35 252.2 27 252.2 17.2S260.2 -0.6 270 -0.6S287.8 7.4 287.8 17.2S279.8 35 270 35zM412.3 71C412.3 32.1 404.7 -2.9 390.1 -32H362.8C386.3 6.7 393.3 62.8 385.2 102.3C369.1 72.8 333.1 63.7 299.3 73.5C171.5 111 106.8 53.8 64.7 23.2L83.6 82.5L43.7 40.2C48.5 13.5 59.4 -11.1 74.9 -32.1H46.1C36.4 -16.3 28.9 0.9 23.9 19.2L0.1 -6C0.1 68.9 -5.4 141.6 61.6 209.2C81.8 229.6 105.3 245.4 130.7 255.9C123.9 269.4 121.2 285.1 122.9 301.9L103 303.1C85.1 304.2 71.4 319.6 72.4 337.5V337.6L74 363.8C75.1 380.9 89.4 394.4 106.5 394.4C107.8 394.4 106.2 394.5 134.7 392.7C148.6 391.9 156.2 382.9 157.5 381.3C164.6 391.7 172 401.8 182.1 415.8L202.7 403.7C189.1 374.7 193.6 367.5 193.7 367.4C197.6 367.4 207.6 367.9 226.1 361.7C246 355.1 262 341 271 322C271.4 321.1 286.5 293 272.2 259.4C291.2 253.3 323.5 239.5 354.6 207.6C391.2000000000001 170 412.3 120.2000000000001 412.3 71zM128 325.7C131.2 335.7 135.7 345.4 141.1 355.1C141.2 357.1 143.3 368.2 133.3 368.9C104.8 370.7 107 370.5 106.6 370.5C102 370.5 98.3 367 98 362.4L96.4 336.2C96.1 331.5 99.8 327.4 104.5 327.1L128 325.7zM153.8 263.9C159.4 254.5 167.9 247.8 176.1 243.9C176.1 265.1 204.6 285.8 228.9000000000001 261.4L237.3000000000001 251.1C258.1 269.9 256.7000000000001 296.4 249.4000000000001 312C235.6 341.1 202.5 344 195.1 343.7C184.8 343.3 175.4 349.1 171.4 359C157.7000000000001 337.8 134.2000000000001 296.5 153.8000000000001 263.9zM236.7 195.5L217 179.4C215.1 177.8 214.8 175 216.4 173.1L225.3 162.2C226.3 161 229.1 159.5 231.6 161.6L251.2 177.6L256.7000000000001 170.8C261.6 164.8 270.5000000000001 172.1999999999999 265.7000000000001 178.1C202.1000000000001 256.4 224.2000000000001 229.2 210.4 246.2C205.7000000000001 252.2 196.5 244.8 201.4 238.9C203.3000000000001 236.6 219.8000000000001 216.3 221.2000000000001 214.5999999999999L211.6000000000001 206.6999999999999C207.0000000000001 202.8999999999999 214.2000000000001 193.3999999999999 219.0000000000001 197.2999999999999L228.7000000000001 205.2999999999999L236.7000000000001 195.4999999999999zM355.1 169.8C338.2000000000001 193.5 312.5 216.5 281.7000000000001 230.2C273.8000000000001 233.7 266.7000000000001 236.3 258.8000000000001 238.8C256.8000000000001 236.6 254.7000000000001 234.5 252.4000000000001 232.6L284.3000000000001 193.4C294.7000000000001 180.7000000000001 292.8000000000001 161.9 280.1000000000001 151.5000000000001C278.8000000000001 150.4 267.0000000000001 140.8000000000001 251.1000000000001 146.6000000000001C248.2000000000001 144.3000000000001 241.0000000000001 136.7000000000001 228.9000000000001 136.7000000000001C220.3000000000001 136.7000000000001 212.3000000000001 140.5000000000001 206.8000000000001 147.2000000000001L197.9000000000001 158.1000000000001C191.6000000000001 165.9000000000001 190.0000000000001 176.0000000000001 192.9000000000001 184.9000000000001C184.7000000000001 194.8000000000001 184.6000000000001 206.2000000000001 188.3000000000001 214.9000000000001C181.1000000000001 216.2000000000001 161.6000000000001 221.1000000000001 145.6000000000001 236.3000000000001C89.8000000000001 215.6000000000001 57.6000000000001 171.9000000000001 44.3000000000001 145.1000000000001C29.4000000000001 114.9000000000001 25.5000000000001 84.2000000000001 24.4000000000001 54.9000000000001C32.6000000000001 63.6000000000001 20.5000000000001 50.8000000000001 138.4000000000001 175.8000000000001L108.5000000000001 82.2000000000001C166.3000000000001 113.3000000000001 232.5000000000001 118.2000000000001 305.9000000000001 96.6C329.5000000000001 89.7000000000001 351.0000000000001 95 361.9000000000001 110.5C373.0000000000001 126.1 370.4000000000001 148.2 355.1000000000001 169.8zM110.6 340.7L126.2 339.7L127.2 355.3L111.6 356.3L110.6 340.7z" />
+    <glyph glyph-name="keycdn"
+      unicode="&#xF3BA;"
+      horiz-adv-x="512" d=" M63.8 38.7L124.3 97.7C156.4 54.9 195.4 31.7 250.9 30.3C281.4 29.6 311.2 37.3 337.3 52.6999999999999C342.4 47.3999999999999 355.8 33.1999999999999 358.2 30.6999999999999C326 9.9999999999999 288.5999999999999 -0.4000000000001 250.1 0.4999999999999C206.8 1.6 165.5 17.1999999999999 132.3999999999999 44.8999999999999C132.6999999999999 45.4999999999999 94.1999999999999 7.3999999999999 93.7999999999999 6.9999999999999C103.2999999999999 -22.8000000000001 80.6999999999999 -55.4 47.4999999999999 -55.4C20.7 -55.3 0 -33.7 0 -6.9C0 27.4 33.1 49.7 63.8 38.7zM418.7 291.1C437.8 259.8 448.3 223.7 447.4 187.1C446.3 142.3 428.4 99.6 398.8 66.1C399.1 65.8 422.6 40.9 422.9 40.6C432.5 41.9 442.1 38.6 448.8 31.5C460.1 19.5 459.6999999999999 0.6 447.7 -10.9C435.7 -22.2 416.8 -21.8 405.3 -9.8C398.6 -2.8 395.9 7.0000000000001 397.7 16.5000000000001C372.8 43.1000000000001 353.3 63.7000000000001 353.3 63.7000000000001C396 97.8000000000001 416.6 143.3000000000001 417.7 187.9C418.3999999999999 216.8000000000001 410.5 245.1 396.5999999999999 270.1L418.7 291.1zM104 394.9C110.7 387.9 113.4 378.1 111.6 368.6L157.5 320.5C152.8 316.7 144.2 310.1 134.7 299.2C109.3 270.7 95.1 234.4 94 196.3C93.3 167.4 100.1 139.1 114 113.9L92 92.4C72.7 124 63.1 160.1 64.2 197.1C65.2 241.7 82.5 284.7 111.7 318.2L86.4 344.6C76.8 343.3 67.2 346.6 60.5 353.7C49.2 365.7 49.6 384.6 61.6 396.1C73.5 407.3 92.2 407 104 394.9zM464.9 440C490.9 440 512 417.6 512 391.7S490.9 344 464.9 344C458.6 343.9 450.9 345.1 449 345.8L386.1 286.1C353.4000000000001 329.7 309.4000000000001 352 259.2000000000001 353.3C228.7000000000001 354 198.9 346.5 173.0000000000001 330.9L151.9000000000001 352.9C184.1 373.7 221.5 384 260 383.1C303.3 382 344.6 366.4 377.7 338.5L418.8 377.1C417.3 381.8 416.6 386.7 416.6 391.6C416.5 418.3 438.9 440 464.9 440zM256.7 334.6C262.2 334.6 267.6 334.2 273.1 333.5C351.2 323.7 406.5 252.4 396.9 174.4C387.1 96.3 315.8 41 237.8 50.6C159.7 60.4 104.4 131.6999999999999 114 209.8C123.3 282.2 184.1 334.4 256.7 334.6zM197.7 215.2C198.3 192.5 209.9 173.4 230.1 163L219.1 111.3H292.8L281.8 163C301.9000000000001 173.9 313.9000000000001 192 314.2 215.2C313.8 248 288.4 272.7 255.9 273.5C223.8 272.7 198.6 248.7 197.7 215.2zM256 288" />
+    <glyph glyph-name="kickstarter-k"
+      unicode="&#xF3BC;"
+      horiz-adv-x="384" d=" M147.3 333.6C147.3 389.8 114.8 416 73.9 416C26.2 416 0 379.8 0 334.6V51.6C0 4.3 25.3 -31.8 74.9 -31.8C114.7 -31.8 147.3 -6.1999999999999 147.3 51.6V128.1L259.4 -10.2C282.1 -37.4 331.5 -40.9 362.6 -10.2C389.6 17.4 389.9 57.2000000000001 370 82L279.2 196.8L354.0999999999999 304.2000000000001C371.4999999999999 328.9000000000001 371.5999999999999 367.3 343.7 394C313.3999999999999 423 261.3 425.6 230.1 381.2000000000001L147.3 263V333.6z" />
+    <glyph glyph-name="kickstarter"
+      unicode="&#xF3BB;"
+      horiz-adv-x="448" d=" M400 -32H48C21.6 -32 0 -10.4 0 16V368C0 394.4 21.6 416 48 416H400C426.4 416 448 394.4 448 368V16C448 -10.4 426.4 -32 400 -32zM199.6 269.5C199.6 300.2 182 314.6 159.9 314.6C134.1 314.6 119.9 294.8 119.9 270.1V115.3C119.9 89.4999999999999 133.6 69.6999999999999 160.4 69.6999999999999C181.9 69.6999999999999 199.6 83.6999999999999 199.6 115.3V157.1L260.2 81.4C272.5 66.5 299.2 64.6 316 81.4C330.6 96.5 330.8 118.2 320 131.8L270.9 194.6L311.4 253.3C320.8 266.8 320.9 287.8 305.8 302.4C289.4 318.3 261.2 319.7 244.4 295.4L199.6 230.7V269.5z" />
+    <glyph glyph-name="korvue"
+      unicode="&#xF42F;"
+      horiz-adv-x="446" d=" M386.5 414H59.5C26.8 414 0 387.2 0 354.5V27.4C0 -5.2 26.8 -32 59.5 -32H386.6C419.6 -32 446.1 -5.2 446.1 27.5V354.5C446 387.2 419.2 414 386.5 414zM87.1 327.2H183.1V211.2L244.9 327.2H355.8L274.6 195.2H87.1V327.2zM248.9 55.1L183.2 168.6999999999999V55.0999999999999H87.2V185.9H278.7L367.3 55.1H248.9z" />
+    <glyph glyph-name="laravel"
+      unicode="&#xF3BD;"
+      horiz-adv-x="640" d=" M637.5 206.4C633.3 211.2 574.7 284.5 564.4 296.9C554.1 309.3 549 307.1 542.6999999999999 306.2000000000001C536.3 305.3 462.1999999999999 292.8 453.5999999999999 291.4C444.9999999999999 289.9 439.5999999999999 286.5 444.8999999999999 279.1C449.5999999999999 272.5 498.2999999999999 203.4 509.0999999999999 188.2L315.3999999999999 141.8L161.2 399.3C155.1 408.4 153.8 411.6 139.8 410.9C125.8 410.3 18.9 401.4 11.3 400.7C3.7 400.1 -4.7 396.7 2.9 378.7S131.9 99.1 135.3 91.5C138.7 83.9 147.5 71.5 168.1 76.5C189.2 81.6 262.4 100.7 302.4 111.2C323.5 72.9 366.6 -4.7 374.6 -15.8C385.2 -30.7 392.6 -28.2 408.9 -23.2C421.7 -19.3 608.5 47.9 616.9 51.3C625.3 54.8 630.5 57.2 624.8 65.7C620.5999999999999 71.9 571.3 137.9 545.5 172.5C563.2 177.2 626.1 193.9 632.8 195.8C640.6999999999999 197.8 641.8 201.6 637.5 206.4zM285.3 134.4C283 133.9 174.5 107.9 168.7 106.6C162.9 105.3 162.9 105.9 162.2 107.9C161.5 109.9 33.2 374.6 31.4 377.9C29.6 381.2 29.7 383.8 31.4 383.8S133.9 392.8 137.4 393C141 393.2 140.6 392.4 141.9 390.2C141.9 390.2 284.1 144.8 286.5 140.5C289.1 136.2 287.6 134.9 285.3 134.4zM591.3 77C593 74.3 594.8 72.5 589.3 70.6C583.9 68.6 405.6 8.5 402.2 7C398.7 5.5 396 5 391.5999999999999 11.5S329.2 118.3 329.2 118.3L518 167.4C522.7 168.9 524.2 169.9 527.2 165.2C530.1 160.4 589.6 79.7 591.3000000000001 77zM603.4 211.1C599.1999999999999 210.2 529.8 193 529.8 193L473.1 270.8C471.4999999999999 273.1 470.2 275.3 474.2 275.8S542.6 288 545.5 288.6C548.4 289.3 550.9 290.1 554.5 285.2000000000001C558.1 280.3 607.1 218.2 609 215.8C610.8 213.5 607.6 212.1 603.4 211.1z" />
+    <glyph glyph-name="lastfm-square"
+      unicode="&#xF203;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM307.8 103.1C244.4 103.1 222.4 131.7000000000001 210.7 167.2000000000001C194.4 218.2000000000001 189.2 251.5000000000001 147.7 251.5000000000001C125.3 251.5000000000001 102.6 235.4000000000001 102.6 190.3000000000001C102.6 155.1000000000001 120.6 133.1000000000001 145.9 133.1000000000001C174.5 133.1000000000001 193.5 154.4000000000001 193.5 154.4000000000001L205.2 122.5000000000001S185.4 103.1000000000001 144 103.1000000000001C92.7 103.1000000000001 64.1 133.2000000000002 64.1 188.9000000000002C64.1 246.8000000000002 92.7 280.9000000000002 146.6 280.9000000000002C220.1 280.9000000000002 227.4 239.5000000000002 247.4 179.0000000000001C256.2 152.2000000000001 271.6 132.8000000000001 308.6 132.8000000000001C333.5 132.8000000000001 346.7 138.3000000000001 346.7 151.9000000000002C346.7 171.8000000000001 324.9 173.9000000000002 296.8 180.5000000000002C266.4000000000001 187.8000000000002 254.3 203.6000000000002 254.3 228.5000000000002C254.3 268.5000000000002 286.6 280.9000000000002 319.5 280.9000000000002C356.9 280.9000000000002 379.6 267.3000000000002 382.5 234.3000000000002L345.8 229.9000000000002C344.3 245.7000000000002 334.8 252.3000000000002 317.2 252.3000000000002C301.1 252.3000000000002 291.2 245.0000000000002 291.2 232.5000000000002C291.2 221.5000000000002 296 214.9000000000002 312.1 211.2000000000002C344.8 204.1000000000002 383.9 199.2000000000002 383.9 153.7000000000002C384 117.0000000000002 353.2 103.1000000000001 307.8 103.1000000000001z" />
+    <glyph glyph-name="lastfm"
+      unicode="&#xF202;"
+      horiz-adv-x="512" d=" M225.8 80.9L207 131.9S176.5 97.9 130.8 97.9C90.3 97.9 61.6 133.1 61.6 189.4C61.6 261.5 98 287.3 133.7 287.3C200.2 287.3 208.5 234 234.6 152.4C253.4 95.5 288.6 49.8 390 49.8C462.7 49.8 512 72.1 512 130.6999999999999C512 203.5999999999999 449.3 211.2999999999999 397 222.7999999999999C371.2 228.7 363.6 239.2 363.6 256.8C363.6 276.7 379.4000000000001 288.4999999999999 405.2000000000001 288.4999999999999C433.4000000000001 288.4999999999999 448.6 277.8999999999999 450.9 252.7L509.5000000000001 259.7C504.8000000000001 312.5 468.4 334.2 408.6 334.2C355.8 334.2 304.2000000000001 314.3 304.2000000000001 250.3C304.2000000000001 210.3999999999999 323.6 185.1999999999999 372.2000000000001 173.5C417.1 162.8999999999999 452.0000000000001 159.6999999999999 452.0000000000001 127.8C452.0000000000001 106.1 430.9000000000001 97.3 391.0000000000001 97.3C331.8000000000001 97.3 307.1 128.4 293.1 171.1999999999999C261.1 268 249.5000000000001 334.2 131.8 334.2C45.7 334.2 0 279.7 0 187C0 97.9 45.7 49.8 127.9 49.8C194.1 49.8 225.8 80.9 225.8 80.9z" />
+    <glyph glyph-name="leanpub"
+      unicode="&#xF212;"
+      horiz-adv-x="576" d=" M386.539 336.515L401.635 87.56L390.656 87.835C354.424 88.659 319.016 79.052 287.999 59.838C256.983 79.052 221.575 87.835 185.3420000000001 87.835C139.7780000000001 87.835 103.2720000000001 77.13 61.826 60.112L93.117 318.4C121.663 330.203 154.601 336.515 185.343 336.515C226.516 336.515 259.1790000000001 323.3400000000001 288 293.971C315.723 322.242 347.013 335.692 386.539 336.515zM569.07 0C543.5440000000001 0 521.585 5.215 498.528 15.645C464.218 31.29 428.5350000000001 40.623 390.6570000000001 40.623C351.6800000000001 40.623 315.7230000000001 27.722 288.0000000000001 0C260.2770000000001 27.723 224.3200000000001 40.623 185.3430000000001 40.623C147.4650000000001 40.623 111.7820000000001 31.29 77.4720000000001 15.645C55.239 5.764 32.731 0 8.303 0H6.93L49.475 349.141C88.726 371.374 136.486 384 181.775 384C218.83 384 256.984 376.315 288 354.905C319.016 376.315 357.17 384 394.225 384C439.514 384 487.274 371.374 526.5250000000001 349.141L569.07 0zM525.702 44.741L491.666 324.987C460.924 338.986 424.418 346.397 390.657 346.397C352.229 346.397 316.272 334.32 288 307.695C259.728 334.32 223.772 346.397 185.343 346.397C151.582 346.397 115.076 338.986 84.334 324.987L50.298 44.741C97.509 64.228 133.192 78.227 185.343 78.227C222.947 78.227 256.16 68.621 288 48.583C319.84 68.621 353.052 78.227 390.657 78.227C442.808 78.227 478.491 64.228 525.702 44.741z" />
+    <glyph glyph-name="less"
+      unicode="&#xF41D;"
+      horiz-adv-x="640" d=" M612.7 229C612.7 249.5 615.9000000000001 261.6 615.9000000000001 283.6C615.9000000000001 317.8 603.3000000000001 328.8 575.4000000000001 328.8H554.9000000000001V304.6H561.2C575.4000000000001 304.6 578.5 299.9 578.5 282.5C578.5 266.2 576.9 249.9 576.9 231C576.9 206.8 584.8 197.4 600.5 193.7V192.1C584.7 188.4 576.9 179 576.9 154.8C576.9 135.9 578.5 120.6 578.5 103.3C578.5 85.4 574.8 80.7 561.2 80.7V80.2H554.9000000000001V55H575.4000000000001C603.2 55 615.9000000000001 66 615.9000000000001 100.2C615.9000000000001 122.8 612.7 134.4 612.7 154.8C612.7 165.8 619.5 177.4 640 178.4V205.7000000000001C619.5 206.4 612.7 218.0000000000001 612.7 229.0000000000001zM507.1 197C491.3 203.3 476.6 207 476.6 217.5C476.6 225.4 482.9 230.1 494.5 230.1S516.6 225.4 528.1 217L549.1 244.8C536 254.8 518.1 265.3 493.9 265.3C458.2 265.3 434.0000000000001 244.8 434.0000000000001 215.9C434.0000000000001 190.2 456.6000000000001 177 475.5000000000001 169.7C491.8000000000001 163.4 507.6000000000001 158.1 507.6000000000001 147.6C507.6000000000001 139.7 501.3000000000001 134.5 487.1000000000001 134.5C474.0000000000001 134.5 460.8000000000001 139.8 446.6000000000001 150.8L425.6000000000001 120.3C441.4000000000001 107.1999999999999 465.5000000000001 98.1999999999999 485.5000000000001 98.1999999999999C527.5 98.1999999999999 550.1 120.3 550.1 149.1999999999999S527.6 190.1999999999999 507.1 197zM148.2000000000001 137.6C144.5000000000001 137.6 139.8000000000001 140.8 139.8000000000001 150.7000000000001V328.9H65.2C36.8 328.9 24.2 317.9 24.2 283.7C24.2 261.1 27.4 248.5 27.4 229.1C27.4 218.1 20.6 206.5 0.1 205.5V178.2C20.6 177.7 27.4 166.1 27.4 155.1C27.4 135.7 24.2 124.1 24.2 101.4999999999999C24.2 67.3 36.8 56.3 64.7 56.3H85.2V80.4999999999999H78.9C65.8 80.4999999999999 61.6 85.8 61.6 103.1S63.2 135.2 63.2 154.6C63.2 178.8 55.3 188.2 39.6 191.9V193.5C55.4 197.2 63.2 206.6 63.2 230.8C63.2 249.7 61.6 265 61.6 282.3S65.3 304.4 78.9 304.4H93V153.5999999999999C93 121.4999999999999 104 100.4999999999999 136.1 100.4999999999999C146.1 100.4999999999999 154 102.0999999999999 159.7 104.1999999999999L154.4 138.3999999999999C151.3 137.5999999999999 149.8 137.5999999999999 148.2 137.5999999999999zM379.9 197C363.6 203.3 348.9 207 348.9 217.5C348.9 225.4 355.2 230.1 366.8 230.1C378.4 230.1 388.9 225.4 400.4 217L421.4 244.8C408.3 254.8 390.4 265.3 366.2 265.3C330.5 265.3 306.3 244.8 306.3 215.9C306.3 190.2 328.9000000000001 177 347.8 169.7C364.1 163.4 379.9000000000001 158.1 379.9000000000001 147.6C379.9000000000001 139.7 373.6 134.5 359.4000000000001 134.5C346.3 134.5 333.1 139.8 318.9000000000001 150.8L298.4000000000001 120.3C314.2000000000001 107.1999999999999 338.3 98.1999999999999 358.3 98.1999999999999C400.3 98.1999999999999 422.9 120.3 422.9 149.1999999999999C423 178.0999999999999 400.4 190.1999999999999 379.9 197zM224.9 265.8C186.5 265.8 149.8 233.7 150.8 183.3C150.8 131.3 185 100.8 230.1 100.8C249 100.8 270 107.6 286.3 118.7L270.5 146.5C258.8999999999999 139.7 247.9 136.5 236.3 136.5C215.3 136.5 199 146.5 194.8 170.7H290C290.5 174.4 291.6 181.7 291.6 190.1C292.2000000000001 232.7 269 265.8 224.9 265.8zM194.9 199.6C198.1 220.6 210.7 230.6 225.4 230.6C244.3 230.6 251.7 217.5 251.7 199.6H194.9z" />
+    <glyph glyph-name="line"
+      unicode="&#xF3C0;"
+      horiz-adv-x="448" d=" M272.1 243.8V172.7000000000001C272.1 170.9 270.7000000000001 169.5000000000001 268.9000000000001 169.5000000000001H257.5000000000001C256.4000000000001 169.5000000000001 255.4000000000001 170.1000000000001 254.9000000000001 170.8000000000001L222.3000000000001 214.8000000000001V172.6000000000001C222.3000000000001 170.8000000000001 220.9000000000001 169.4000000000001 219.1000000000001 169.4000000000001H207.7000000000001C205.9000000000001 169.4000000000001 204.5000000000001 170.8000000000001 204.5000000000001 172.6000000000001V243.7000000000001C204.5000000000001 245.5000000000001 205.9000000000001 246.9000000000001 207.7000000000001 246.9000000000001H219C220 246.9000000000001 221.1 246.4000000000001 221.6 245.5000000000001L254.2 201.5000000000001V243.7000000000001C254.2 245.5000000000001 255.6 246.9000000000001 257.4 246.9000000000001H268.8C270.6 247.0000000000001 272.1 245.5000000000001 272.1 243.8000000000001zM190.1 247H178.7C176.9 247 175.5 245.6 175.5 243.8V172.7000000000001C175.5 170.9 176.9 169.5000000000001 178.7 169.5000000000001H190.1C191.9 169.5000000000001 193.3 170.9 193.3 172.7000000000001V243.8000000000001C193.3 245.5000000000001 191.9 247.0000000000001 190.1 247.0000000000001zM162.6 187.4H131.5V243.8C131.5 245.6 130.1 247 128.3000000000001 247H116.9C115.1 247 113.7 245.6 113.7 243.8V172.7C113.7 171.8 114 171.1 114.6 170.5C115.2 170 115.9 169.6 116.8000000000001 169.6H162.5000000000001C164.3000000000001 169.6 165.7000000000001 171 165.7000000000001 172.8V184.2C165.7000000000001 185.9 164.3000000000001 187.4 162.6000000000001 187.4zM332.1 247H286.4000000000001C284.7000000000001 247 283.2000000000001 245.6 283.2000000000001 243.8V172.7000000000001C283.2000000000001 171.0000000000001 284.6 169.5000000000001 286.4000000000001 169.5000000000001H332.1C333.9000000000001 169.5000000000001 335.3 170.9 335.3 172.7000000000001V184.1C335.3 185.9 333.9000000000001 187.3 332.1 187.3H301V199.3H332.1C333.9000000000001 199.3 335.3 200.7 335.3 202.5V214C335.3 215.8 333.9000000000001 217.2 332.1 217.2H301V229.2H332.1C333.9000000000001 229.2 335.3 230.6 335.3 232.4V243.8C335.2 245.5 333.8 247 332.1 247zM448 334.3V49C447.9 4.2 411.2 -32.1 366.3 -32H81C36.2 -31.9 -0.1 4.9 0 49.7V335C0.1 379.8 36.9 416.1 81.7 416H367C411.8 415.9 448.1 379.2 448 334.3zM386.4 211.7C386.4 284.7 313.2 344.1 223.3 344.1C133.4 344.1 60.2 284.7 60.2 211.7C60.2 146.3 118.2 91.5 196.6 81.1C215.7 77 213.5 70 209.2 44.3C208.5 40.2 205.9 28.2 223.3 35.5C240.7 42.8 317.2 90.8 351.5 130.2C375.1 156.2 386.4 182.5 386.4 211.7z" />
+    <glyph glyph-name="linkedin-in"
+      unicode="&#xF0E1;"
+      horiz-adv-x="448.1" d=" M100.3 0H7.4V299.1H100.3V0zM53.8 339.9C24.1 339.9 0 364.5 0 394.2S24.1 448 53.8 448S107.6 423.9 107.6 394.2S83.5 339.9 53.8 339.9zM448 0H355.3V145.6C355.3 180.3 354.6 224.8 307 224.8C258.7 224.8 251.3 187.1 251.3 148.1V0H158.5V299.1H247.6V258.3H248.9C261.3 281.8 291.6 306.6 336.8 306.6C430.8 306.6 448.1 244.7 448.1 164.3V0H448z" />
+    <glyph glyph-name="linkedin"
+      unicode="&#xF08C;"
+      horiz-adv-x="448" d=" M416 416H31.9C14.3 416 0 401.5 0 383.7V0.3C0 -17.5 14.3 -32 31.9 -32H416C433.6 -32 448 -17.5 448 0.3V383.7C448 401.5 433.6 416 416 416zM135.4 32H69V245.8H135.5V32zM102.2 275C80.9 275 63.7 292.3 63.7 313.5S80.9 352 102.2 352C123.4 352 140.7 334.7 140.7 313.5C140.7 292.2 123.5 275 102.2 275zM384.3 32H317.9V136C317.9 160.8 317.4 192.7 283.4 192.7C248.8 192.7 243.5 165.7 243.5 137.8V32H177.1V245.8H240.8V216.6H241.7C250.6 233.4000000000001 272.3 251.1 304.6 251.1C371.8 251.1 384.3 206.8 384.3 149.2000000000001V32z" />
+    <glyph glyph-name="linode"
+      unicode="&#xF2B8;"
+      horiz-adv-x="448" d=" M437.4 221.7C437.1 222.6 436.5 223.1 436 223.7L366 262.3C365.1 262.9 364 262.9 362.9 262.3L304 226.3C303.1 225.7 302.6 224.6 302.6 223.7L301.7000000000001 192.3L277.7000000000001 208.3C276.8000000000001 208.9 275.4000000000001 208.9 274.6 208.3L240 187.1L238.6 222.2C238.6 223.1 238 224.2 237.2 224.5L201.2 248.8000000000001L234.9 266.2000000000001C236 266.8000000000001 236.6 267.9000000000001 236.6 269.1L230.9 401.4000000000001C230.9 402.3000000000001 230 403.4000000000001 229.2 404.0000000000001L138.6 447.7C137.7 448 136.9 448 136.3 448L12.6 409.4C11.2 408.8 10.3 407.4 10.6 405.7L38 272.6C38.9 269.2 72 245.2 76.6 241.7L49.7 228.8C48.3 227.9 47.7 226.5 48 225.4L68.6 125.1C69.2 122.2 92.3 101.9999999999999 95.7 98.8L78.3 88.1999999999999C77.4 87.5999999999999 76.6 86.1999999999999 76.9 85.0999999999999C78.3 77.9999999999999 92.3 7.3999999999999 93.8 5.9999999999999L158.9 -63.1000000000001C159.5 -63.7000000000002 160.3 -63.7000000000002 161.2 -64.0000000000001C161.8 -64.0000000000001 162.3 -63.7000000000001 162.9 -63.4000000000001L246.6 3.4999999999999C247.5 4.0999999999999 247.7 4.8999999999999 247.7 5.7999999999999L245.7 51.7999999999999L273.7 28.0999999999999C274.8 27.1999999999999 276.5999999999999 27.1999999999999 277.7 28.0999999999999L344.5999999999999 81.4999999999999C345.4999999999999 82.0999999999999 345.7 82.8999999999999 345.7 83.7999999999999L348 117.1999999999999L368.3 103.1999999999999C369.4 102.2999999999999 370.9 102.2999999999999 372 103.1999999999999L426.6 146.8999999999999C427.2 147.1999999999999 427.7 147.9999999999999 427.7 148.8999999999999C428.6 155.3999999999999 438 219.6999999999999 437.4 221.6999999999999zM232.6 216.9L236.6 124.3L146 63.1L132 159.6999999999999L232.6 216.8999999999999zM224.9 396.9L230.3 270.9L123.7 215.5L104 350.3L224.9 396.9zM44 274.9L18 400L97.7 350.6L117.1 217.7L44 274.9zM74.6 127.1L55.7 218L125.7 159.7L139.4 66.3L74.6 127.1zM98.9 9.4L85.2 76.5L146.9 15.6L156.6 -51.8L98.9 9.4zM163.4 -55.1L152.8 15.8000000000001L238.5 77.2000000000001L241.6 7.2L163.4 -55.1zM245.4 60C245.4 63.4 246.3 82.9 243.4 85.1L219.1 105.1L241.4 120C243.7 121.7 242.5 125.7 242.5 128L271.9 105.4L272.5 37.1L245.4 59.9999999999999zM339.7 85.4L278.8 36.8L278.2 105.4L343.9 152.3L339.7 85.4zM367.4 111.1L348.3 124.5L350.3 158.5C350.6 159.3999999999999 350 160.5 349.2 161.1L308 188.3L308.6 218.3L373.2000000000001 177.7L367.4000000000001 111.1zM422 150.9L373.7 112.6L379.4 177.6999999999999L430.5 214.2999999999999L422 150.8999999999999z" />
+    <glyph glyph-name="linux"
+      unicode="&#xF17C;"
+      horiz-adv-x="448" d=" M196.1 324.4C195.9 325.8 198 326.7 199.3 327.3C201 328 203.2 328.3 204.8 327.4C205.2 327.2 205.6 326.7 205.4 326.3C205 325.1 203 325.3 201.9 324.7000000000001C200.9 324.2000000000001 200.1 323 198.9 323C197.9 322.9000000000001 196.2 323.4000000000001 196.1 324.4000000000001zM220.8 324.7C221.8 324.2 222.6 323 223.8 323C224.9 323 226.6 323.4 226.7 324.5C226.9 325.9 224.8 326.8 223.5 327.4C221.8 328.1 219.6 328.4 218 327.5C217.6 327.3 217.2 326.8 217.4 326.4C217.7 325.1 219.7 325.3 220.8 324.7zM435.5 14.5C435 6.3 429 0.7 421.6 -3.8C406.7000000000001 -12.8 384.3 -19.6 370.7000000000001 -36L368.1 -33.8L370.7000000000001 -36C356.5000000000001 -52.9 339.0000000000001 -62.6 322.4000000000001 -63.9C305.9000000000001 -65.1999999999999 290.4000000000001 -57.6 282.1 -40.9V-40.8C281 -38.6999999999999 280.2000000000001 -36.4 279.6 -34.1C258.1 -35.3 239.4000000000001 -28.8 224.5 -29.9999999999999C202.5 -31.1999999999999 188.7000000000001 -36.4999999999999 176.2000000000001 -36.6C171.4 -47.2 161.9 -54.2 150.3000000000001 -56.7999999999999C134.3000000000001 -60.4999999999999 114.2000000000001 -56.7999999999999 94.4 -46.4L96 -43.4L94.4 -46.4C75.9 -36.6 52.4 -37.5 35.1 -33.9C26.4 -32.1 18.8 -28.9 15 -21.6C11.3 -14.3 12 -4.3 17.2 10.1C18.9 15.2 17.6 22.8 16.4 30.9C15.8 34.8 15.2 38.8 15.2 42.7C15.2 47.0000000000001 15.9 51.2 18 55.1C22.5 63.6 29.8 67.2000000000001 36.5 69.6C43.2 72 49.3 73.6 53.5 77.9C58.7 83.4 63.6 92.3 70.1 98.1C67.5 115.3 70.3 133.5 76.3 151.4C88.9 189.3 115.5000000000001 225.6 134.4 248.1C150.5 271 155.2000000000001 289.4000000000001 156.9 312.8C158 344.6 132.4 448.2 234.8 448C315.7000000000001 447.9 311.1 362.6 310.6 316.7C310.3 286.6 326.9000000000001 266.2 344 244.7C359.2 226.7 379.1 200.4 390.5 170.3C399.8 145.6999999999999 403.4 118.5 394.2 91.1999999999999C395.6 90.6999999999999 397 89.9999999999999 398.3 89.1999999999999C399.7 88.3999999999999 401 87.3999999999999 402.3 86.3C408.9000000000001 80.6999999999999 411 71.9999999999999 412.8 63.9C414.7 55.8 416.4000000000001 48.2 420 44.2C431.1 31.8 435.9 22.7 435.5 14.5zM220.8 338.9C224.4 338 229.7 336.5 233.8 334.5C231.7 346.7 238.3 358 245.6 357.5C254.5000000000001 357.2 259.5 342 254.7 330.2C253.9 328.3 251.9 326.8 250.8 325.6C257.5 323.3 261.8 321.5 263.4000000000001 320.7C271.3 330.2 274.2000000000001 346.9 267.7000000000001 361.1C257.9000000000001 382.5 233.5000000000001 382.9 223.7000000000001 360.7C220.5000000000001 353.5 219.8000000000001 345.8 220.8000000000001 338.9zM174.6 320.1C182.4 325.8 181.5 324.8 180.5 325.6C172.5 332.5 173.9 353 182.3000000000001 353.7000000000001C188.6000000000001 354.2000000000001 193.1000000000001 343 191.9 334.1C195 336.2000000000001 198.6 337.7000000000001 202.1 338.7000000000001C203.8 358 193.1 372.2000000000001 183 372.2000000000001C164.1 372.2000000000001 159 334.7000000000001 174.6 320.1zM165.2 299.2000000000001C166.7 294.3 171.3 288.7000000000001 179.9 283.9C187.7 279.3 191.9 272.4 199.9 268.9C202.5 267.8 205.6 267 209.5 266.8C227.9 265.7000000000001 236.6 278.1 247.7 281.7000000000001C259.4 285.4 267.8 292.7000000000001 270.4 299.8C273.6 308.3 268.3 314.5 259.9 318C248.6 322.9 243.6 323.2 237.3 327.3C227 333.9 218.5 336.2 211.4 336.2C197 336.2 188.2 326.4 183.5 322C183 321.5 175.6 316.1 169.4 311.5C165.2 308.2 163.8 304.1 165.2 299.2zM131.7 46.4L112.1 82C105.3 91.2 98.3 96.8 90.2 98C82.5 99.2 77.6 96.6 72.5 91.1C67.7 86 63.7 78.8 58.2 73.1C50.4 66.6 48.9 66.9 38.6 63.2000000000001C32.3 61.0000000000001 27.3 58.6 23.8 51.9C21.1 46.9 21.7 39.7 22.9 31.9C24.1 24.0000000000001 25.9 15.6 23.5 8.0000000000001V7.8000000000001C18.5 -5.8999999999999 18.5 -13.8999999999999 20.9 -18.5999999999999C28.8 -33.9999999999999 67.5 -24.6999999999999 97.4 -40.4999999999999C128.8 -56.8999999999999 170 -57.5999999999999 172.7 -22.4999999999999C174.8 -1.9999999999999 141.2 26.5000000000001 131.7 46.4000000000001zM285.6 10.6C288.8 21.6 291.9000000000001 31.9 292.4000000000001 39.6C293.2000000000001 54.8 294.0000000000001 68.3 296.8 79.4999999999999C299.9000000000001 92.1 306.1 102.6 318.2 106.8C320.5 127.9 336.9 127.9 356.5 119.3C375.4 110.8 382.5 103.3 379.3 93.1999999999999C380.3 93.1999999999999 381.3 93.3 383.5 93.1999999999999C388.7 110.0999999999999 369.2 121.1999999999999 352.8 128C355.7 140 355.2 152.1 352.4000000000001 163.6999999999999C346.4000000000001 189 329.8 211.5 317.2000000000001 222.6999999999999C314.9000000000001 222.7999999999999 315.1 220.7999999999999 319.8000000000001 216.1999999999999C331.4000000000001 205.5 356.9000000000001 167 343.1000000000001 131.3C339.2000000000001 132.3 335.5000000000001 132.8 332.2000000000001 132.6999999999999C326.9000000000001 161.8 314.7000000000001 185.8999999999999 308.6000000000001 197.2999999999999C297.1000000000001 218.6999999999999 279.1000000000001 262.5999999999999 271.4000000000001 293C266.9000000000001 286.5999999999999 259.0000000000001 281.0999999999999 249.1000000000001 278C244.4000000000001 276.5 239.4000000000001 272.5 233.2000000000001 269C219.3000000000001 261 203.2000000000001 260.2 190.8000000000001 270.2C186.3000000000001 273.8 182.8000000000001 277.8 178.2000000000001 280.5C176.6000000000001 281.4 173.1000000000001 283.8 172.0000000000001 284.5999999999999C170.0000000000001 246.8 144.7000000000001 199.3 132.7000000000001 171.8999999999999C124.4000000000001 152.1999999999999 119.5000000000001 131.0999999999999 118.9000000000001 110.3999999999999C97.1000000000001 139.5 113.0000000000001 176.6999999999999 121.5000000000001 192.7999999999999C131.0000000000001 210.3999999999999 132.5000000000001 215.2999999999999 130.2000000000001 213.5999999999999C121.6000000000001 199.5999999999999 108.2000000000001 177.3 103.0000000000001 154.3999999999999C100.3000000000001 142.5 99.8000000000001 130.3999999999999 103.3000000000001 119.1999999999999C106.8000000000001 107.9999999999999 114.4000000000001 97.6999999999999 127.9000000000001 89.3C127.9000000000001 89.3 152.7000000000001 74.9999999999999 166.2000000000001 56.8C173.6000000000001 46.8 175.9000000000001 38.1 173.6000000000001 31.9C171.1000000000001 25.2 164.0000000000001 23 156.9000000000001 23C161.7000000000001 17 167.2000000000001 10 171.3000000000001 3.4C208.9000000000001 -22.3 253.5000000000001 -12.3 285.6000000000002 10.6zM415 39.5C405 50.8 407.8 72.6 397.9 81.1C391 87.1 384.3 86.5 375.3 86.2000000000001C367.6 77.4 349.5 66.6 336.9 69.9C325.4 72.8 318.9 86.2000000000001 318.1 99.4C317.8 99.2000000000001 317.4 99.1 317.1 98.9C310 95.0000000000001 306 88.1 303.4 77.8C300.9 67.6 300 54.3 299.2 39.1C298.5 27.3 293 12.7 289.3 -1.5C285.8 -14.7 283.5 -26.7 288.2 -37.8C295.4 -52.3 307.7 -58.2 321.9 -57.1C336.1 -56 352.3 -47.3 365.5 -31.6C387.5 -5 427.8 -1.9 428.7 14.9C429 20 425.6 27.9 415 39.5zM173.3 299.3C175.3 297.4 178 294.8 181.3 292.2000000000001C187.9 287 197.1 281.6 208.6 281.6C220.2 281.6 231.1 287.5 240.4000000000001 292.4000000000001C245.3000000000001 295 251.3000000000001 299.4000000000001 255.2000000000001 302.8000000000001C259.1 306.2000000000001 261.1 309.1 258.3000000000001 309.4000000000001C255.5000000000001 309.7000000000001 255.7000000000001 306.8000000000001 252.3000000000001 304.3000000000001C247.9000000000001 301.1 242.6000000000001 296.9000000000001 238.4000000000001 294.5C231.0000000000001 290.3000000000001 218.9000000000001 284.3000000000001 208.5000000000001 284.3000000000001C198.1000000000001 284.3000000000001 189.8000000000001 289.1 183.6000000000001 294C180.5000000000001 296.5 177.9000000000001 299 175.9000000000001 300.9000000000001C174.4000000000001 302.3000000000001 174.0000000000001 305.5 171.6000000000001 305.8000000000001C170.2000000000001 305.9000000000001 169.8000000000001 302.1 173.3000000000001 299.3000000000001z" />
+    <glyph glyph-name="lyft"
+      unicode="&#xF3C3;"
+      horiz-adv-x="512" d=" M0 366.9H77.8V158.2000000000001C77.8 125.1 92.8 105.4 105 97.2000000000001C92.3 86.1 53.8 76.3000000000001 24.8 100.0000000000001C7.8 114 0 137.3 0 159V366.9zM485.9 193.4V215.4H509.7V292.2H483.6C473.4999999999999 338.5 432.4 372.9 383.3 372.9C326.7 372.9 280.6 326.9 280.6 270.2V91C296.6 88.7 316 91.3 332.3 105C349.4 119 357.1 142.2 357.1 164V170.7H395.9V247.5H357.1V270.8C357.1 305.4 409.3 305.4 409.3 270.8V193.7C409.3 137.1 455.3 91 511.9999999999999 91V167.5C497.4999999999999 167.5 485.8999999999999 179.2 485.8999999999999 193.4zM191.6 292.4V179.4C191.6 164 167.8 164 167.8 179.4V292.4H91V159.7C91 135.9 99 105.7 136 95.8C173 86 194.2 106.4 194.2 106.4C192.1 93.0000000000001 179.7 83.1 159.3 81.1C143.8 79.5 124.1 84.7000000000001 114.3 88.9V18.6C139.4 11.1 165.8 8.8 191.9 13.9C239 23.0000000000001 268.7 62.3 268.7 114.7000000000001V292.9H191.6V292.4z" />
+    <glyph glyph-name="magento"
+      unicode="&#xF3C4;"
+      horiz-adv-x="448" d=" M445.7 320.1V64L382.3 27.5V283.3L223.8 374.9L65.2 283.3L65.6 27.4L2.3 64V319.9L224.2 448L445.7 320.1zM255.6 27.5L224 9.1L192.2 27.3V283.3L128.9 246.7L129 -9.2L223.9 -64.1L319 -9.2V246.8L255.6 283.4V27.4999999999999z" />
+    <glyph glyph-name="mailchimp"
+      unicode="&#xF59E;"
+      horiz-adv-x="428.07" d=" M426.56 124.28C423.4700000000001 130.87 417.59 135.41 410.21 137.16C407.74 148.43 404.33 153.96 404.02 154.79C405.32 156.27 406.58 157.76 406.86 158.11C417.28 171.04 410.48 189.97 392.67 194.44C382.65 204.0799999999999 373.58 208.6099999999999 366.13 212.34C358.99 215.91 361.8399999999999 214.5099999999999 355.14 217.53C353.36 226.24 352.7699999999999 246.5 349.94 260.7199999999999C347.3999999999999 273.51 342.2799999999999 282.78 334.38 288.87C331.2199999999999 295.7099999999999 326.79 302.61 321.45 307.68C346.2899999999999 345.76 352.83 383.37 334.64 403.07C326.5399999999999 411.8399999999999 314.51 416 300.12 416C279.86 416 254.94 407.74 229.78 392.4599999999999C229.78 392.4599999999999 213.4 405.64 213.05 405.92C142.97 461.11 -55.23 217.22 14.73 163.92L32.79 150.12C21.45 118.5799999999999 37.22 80.98 70.08 68.91C77.34 66.24 85.22 64.9399999999999 93.39 65.4C93.39 65.4 146.48 -31.96 258.49 -31.99C388.07 -32.03 421.04 94.73 421.39 95.87C421.39 95.86 431.89 111.38 426.56 124.28zM20.12 180.05C5.92 204.01 30.63 253.24 48.21 281.2200000000001C91.66 350.37 163.98 404.94 196.82 397.15L205.85 400.61C205.88 400.58 230.52 379.76 230.55 379.74C247.52 389.93 269.13 400.31 289.35 402.38C277.05 399.61 262.06 393.23 244.3 382.37C243.87 382.12 202.28 354.05 176.87 328.85C163.02 315.12 107.42 248.44 107.4699999999999 248.5C117.63 267.73 124.33 277.17 140.41 297.4C149.5099999999999 308.8400000000001 159.22 319.9700000000001 169.15 330.24C173.76 335.01 178.43 339.6 183.0999999999999 343.9500000000001C186.31 346.94 189.5399999999999 349.8200000000001 192.75 352.5700000000001C194.2299999999999 353.8400000000001 195.71 355.0700000000001 197.18 356.2800000000001L197.19 356.29L164.6 383.2L166.32 371.14L190.01 350.27S169.05 336.16 158.62 327.26C116.83 291.6 75.82 236.86 60.56 183.57L61.29 183.6C53.69 179.41 46.15 172.69 39.56 163.55C39.4 163.59 22.52 175.98 20.12 180.05zM89.23 79.96C64.2 79.96 43.9 101.33 43.9 127.6800000000001C43.9 154.0400000000001 64.19 175.4000000000001 89.23 175.4000000000001C95.72 175.4000000000001 101.89 173.9600000000001 107.47 171.3800000000001C107.47 171.3800000000001 117.1 166.5200000000001 119.81 143.5700000000001C122.63 150.7400000000001 124.05 156.6300000000001 124.05 156.6300000000001C127.28 146.7500000000001 128.93 136.3700000000001 128.28 125.8700000000001C130.96 129.4300000000001 133.83 136.1400000000001 133.83 136.1400000000001C138.83 106.8100000000001 117.43 79.9600000000001 89.23 79.9600000000001zM145.03 248.4900000000001S164.52 285.5500000000001 207.36 310.0600000000001C204.17 310.5700000000001 196.37 309.5800000000001 195 309.4200000000001C202.78 316.11 217.24 320.5800000000001 227.23 322.61C224.31 324.4700000000001 217.34 324.9400000000001 213.89 325.0300000000001C212.87 325.0600000000001 212.88 325.0500000000001 211.67 325.0000000000001C221.07 330.2500000000001 238.49 333.3400000000001 254.32 330.5500000000001C252.33 333.1900000000001 247.82 335.12 244.65 336.0600000000001C244.37 336.1400000000001 243.13 336.4500000000001 243.13 336.4500000000001L244.32 336.73C253.86 338.5700000000001 265.01 336.5800000000001 273.82 333.0400000000001C272.82 335.36 270.37 338.0700000000001 268.53 339.7800000000001C268.34 339.9600000000001 267.24 340.7500000000001 267.24 340.7500000000001C276.46 338.8400000000001 285.3 334.8100000000001 291.95 330.2500000000001C291.05 332.0000000000001 288.81 334.9400000000001 287.26 336.5400000000001C296.07 334.0200000000001 305.9699999999999 327.73 310.2099999999999 318.7200000000001C310.31 318.5200000000001 310.58 317.7800000000001 310.6099999999999 317.6900000000001C293.9099999999999 330.5300000000001 245.1699999999999 326.8900000000001 196.3699999999999 295.2700000000001C174.0399999999999 280.7900000000001 157.6599999999999 264.9500000000001 145.0299999999999 248.4900000000001zM408.35 102.15C407.7600000000001 101.0000000000001 401.62 67.7500000000001 366.49 40.14C322.12 5.28 263.8300000000001 8.8100000000001 241.82 28.34C230.06 39.34 224.97 55.0700000000001 224.97 55.0700000000001S223.64 46.2 223.41 42.72C214.54 57.81 215.29 76.24 215.29 76.24S210.56 67.41 208.39 62.47C201.86 79.09 205.23 96.25 205.23 96.25L200.07 88.55S197.65 107.36 203.59 123.02C209.95 139.76 222.27 151.92 224.7 153.44C215.35 156.41 204.58 164.93 204.56 164.95C204.56 164.95 208.84 164.67 211.82 165.35C211.82 165.35 192.92 178.89 189.6 199.61C192.34 196.23 198.09 192.4 198.09 192.4C196.23 197.8199999999999 195.1 209.89 196.84 221.7599999999999L196.85 221.7699999999999C200.43 244.45 219.12 259.2199999999999 240.29 259.04C262.83 258.8399999999999 277.94 254.11 296.84 271.54C300.84 275.2299999999999 304.03 278.41 309.65 279.6499999999999C310.24 279.7799999999999 311.71 280.3999999999999 314.72 280.3999999999999C317.77 280.3999999999999 320.7 279.7099999999999 323.39 278.1099999999999C333.64 272.01 335.85 256.0999999999999 336.95 244.4299999999999C341.02 201.1499999999999 339.38 208.8599999999999 356.89 199.9399999999999C365.25 195.6899999999999 374.63 191.6499999999999 385.32 180.2199999999999C385.35 180.19 385.4 180.13 385.4 180.13H385.53C394.54 179.9099999999999 399.18 172.8199999999999 395.03 167.6599999999999C364.8 131.5599999999999 322.57 114.2699999999999 275.52 112.8199999999999C273.58 112.7699999999999 269.2 112.67 269.18 112.67C250.17 112.09 243.99 87.5099999999999 255.91 72.72C263.45 63.37 277.94 60.3 289.88 60.26L290.05 60.32C341.5 59.28 393.19 95.69 402.12 115.76C402.18 115.91 402.73 117.18 402.73 117.18C400.6600000000001 114.75 350.55 67.57 289.6500000000001 69.28C289.6500000000001 69.28 282.99 69.42 276.7200000000001 70.8800000000001C268.4500000000001 72.8000000000001 262.17 76.4400000000001 259.7700000000001 84.6800000000001C264.8200000000001 83.6700000000001 271.2200000000001 83.02 278.6400000000001 83.02C322.6 83.02 354.2700000000001 103.0000000000001 350.9700000000001 103.27C350.8400000000001 103.27 350.7100000000001 103.2400000000001 350.49 103.1900000000001C345.36 102.0000000000001 292.52 81.53 259.12 92.03C259.2 93.05 259.36 94.04 259.6 94.93C262.5700000000001 104.88 267.85 103.49 276.3900000000001 103.86C306.8700000000001 104.87 331.4600000000001 112.54 349.8900000000001 121.29C369.54 130.62 384.5200000000001 142.6400000000001 389.9200000000001 148.71C396.9200000000001 136.92 396.8800000000001 121.79 396.8800000000001 121.79S399.6200000000001 122.75 403.2600000000001 122.75C414.6400000000001 122.74 416.9900000000001 112.52 408.35 102.15zM259.0600000000001 88.4500000000001C259.0600000000001 88.5000000000001 259.0500000000001 88.5500000000001 259.0500000000001 88.6C259.0600000000001 88.55 259.0600000000001 88.5 259.0600000000001 88.4500000000001zM259.0500000000001 88.66C259.0400000000001 88.79 259.0400000000001 88.92 259.0300000000001 89.05C259.0100000000001 89.7 259.0000000000001 90.38 259.0300000000001 91.07C259.0100000000001 90.33 259.0100000000001 89.65 259.0300000000001 89.05C259.0400000000001 88.92 259.0400000000001 88.78 259.0500000000001 88.66zM259.1700000000001 87.2000000000001C259.1700000000001 87.1800000000001 259.1700000000001 87.16 259.1800000000001 87.14C259.1800000000001 87.16 259.1800000000001 87.1800000000001 259.1700000000001 87.2000000000001zM259.1900000000001 87.08C259.3900000000001 85.5000000000001 259.7000000000001 84.77 259.7400000000001 84.6800000000001C259.5100000000001 85.1700000000001 259.3200000000001 86.02 259.1900000000001 87.08zM193.96 388.32L196.83 397.15L201.71 379.43L195.68 381.38L193.96 388.32zM216.34 370.6L212.72 383.19L222.69 374.83C220.45 373.39 218.33 371.9700000000001 216.34 370.6zM259.05 88.66C259.04 88.79 259.04 88.92 259.0300000000001 89.05C259.04 88.92 259.04 88.78 259.05 88.66zM259.04 89.05C259.0200000000001 89.6999999999999 259.0100000000001 90.3799999999999 259.04 91.0699999999999C259.0100000000001 90.3199999999999 259.0100000000001 89.6499999999999 259.04 89.05zM259.06 88.4499999999999C259.06 88.4999999999999 259.05 88.55 259.05 88.5999999999999M259.18 87.1399999999999C259.18 87.1599999999999 259.18 87.18 259.17 87.1999999999999M259.19 87.0799999999999C259.39 85.4999999999999 259.7 84.7699999999999 259.74 84.68C259.51 85.17 259.32 86.0199999999999 259.19 87.0799999999999zM311.29 225.69C311.2200000000001 229.05 311.7600000000001 234.61 314.92 235.64H314.93C320.3400000000001 237.5199999999999 327.51 223.66 327.8400000000001 211.3599999999999C323.5600000000001 213.4999999999999 318.54 214.41 313.37 213.9599999999999C312.07 217.9299999999999 311.45 221.6599999999999 311.29 225.6899999999999zM205.38 362.73L191.79 374.11L212.36 367.83C209.71 365.95 207.36 364.23 205.38 362.73zM233.08 195.79C229.67 194.49 227.25 193.48 226.08 193.65C224.19 193.93 226.02 197.4 230.16 200.7600000000001C238.49 207.4 249.92 209.46 259.69 205.8300000000001C263.97 204.2600000000001 268.77 201.1100000000001 271.29 197.4400000000001C272.24 196.0500000000001 272.5 195.0000000000001 272.11 194.5600000000001C271.3400000000001 193.6600000000001 268.6 194.8700000000001 264.56 196.4500000000001C254.21 200.3100000000001 246.58 200.9 233.08 195.7900000000001zM247.63 181.2600000000001C245.32 180.3200000000001 243.82 179.6 243.21 180.09C242.59 180.5700000000001 243.2 182.5100000000001 245.36 184.6C247.24 186.41 249.1900000000001 187.43 251.43 188.37C251.78 188.52 252.15 188.65 252.53 188.75C253.57 189.03 254.62 189.38 255.76 189.55C264.88 191.1 271.56 186.04 270.69 184.57C270.3 183.88 268.61 184.04 266.09 184.21C260.86 184.57 255.38 184.48 247.63 181.26zM60.86 124.88zM85.16 150.66C83.31 150.27 84.35 150.49 82.52 149.98A7 7 0 0 1 81.75 149.73C81.17 149.46 80.64 149.28 80.13 149C79.7 148.7599999999999 76.06 147.1399999999999 73.1 143.5199999999999C69.11 138.5699999999999 67.66 132.0899999999999 67.91 125.8499999999999C68.15 119.7899999999999 69.93 116.4399999999999 70.26 115.6199999999999C71.64 112.6599999999999 68.41 112.0499999999999 65.47 115.2299999999999L65.46 115.2399999999999C63.11 117.7299999999999 61.6 121.5299999999999 60.86 124.8999999999999C57.88 138.8499999999999 64.1 152.8699999999999 78.47 158.4699999999999C79.27 158.7899999999999 80.21 158.9799999999999 80.97 159.1999999999999H80.96C82.43 159.6399999999999 87.68 160.6999999999999 93.03 159.87C98.9 158.9599999999999 104.07 156.0199999999999 107.36 152.1999999999999L107.37 152.19C109.9 149.3199999999999 111.8 145.2699999999999 111.46 141.66V141.65C111.33 140.15 110.67 138 109.32 137.44C108.82 137.23 108.31 137.34 107.96 137.69C106.98 138.65 107.74 140.62 105.36 143.99C102.19 148.46 95.05 152.75 85.16 150.66zM115.44 119.49C117.32 108.67 109.44 98.99 99.92 98.79C93.25 98.64 89.61 102.81 90.26 103.72C90.56 104.15 91.58 103.96 93.14 103.73C101.64 102.41 106.8 107.59 108.04 113.02C108.06 113.11 108.39 114.56 108.38 115.56C108.45 116.44 108.35 117.32 108.22 118.12C107.22 123.74 100.77 124.8 96.62 129.27C92.9 133.31 93.63 138.49 95.97 140.98C98.78 143.75 102.8 142.74 102.75 141.7599999999999C102.75 141.24 101.78 140.8499999999999 100.58 140.0199999999999C99.02 138.9199999999999 98.81 137.8599999999999 99.21 136.0399999999999C99.47 135.0399999999999 99.92 134.3899999999999 100.89 133.6199999999999C104.37 130.8599999999999 113.74 128.9199999999999 115.44 119.4899999999999zM328.31 200.96C330.89 200.56 332.5300000000001 197.37 331.98 193.83C331.43 190.29 328.8900000000001 187.75 326.31 188.16C323.73 188.56 322.09 191.75 322.64 195.29C323.2 198.82 325.73 201.36 328.31 200.96zM299.98 190.65C301.4000000000001 193.24 305.42 193.76 308.9700000000001 191.81C312.5200000000001 189.87 314.24 186.19 312.8300000000001 183.61C311.4100000000001 181.0200000000001 307.3900000000001 180.5 303.8400000000001 182.45C300.29 184.39 298.5600000000001 188.06 299.98 190.65z" />
+    <glyph glyph-name="mandalorian"
+      unicode="&#xF50F;"
+      horiz-adv-x="390.88" d=" M203.28 -63.89C202.3 -60.63 201.59 -48.06 201.89 -39.31C202.44 -23.42 202.87 -14.59 203.29 -10.55C203.93 -4.35 206.16 10.17 206.57 10.83C207.17 11.79 206.97 38.7 206.33 43.96C206.02 46.54 205.7 55.86 205.64 64.69C205.51 81.16 205.11 84.81 202.91 89.45C201.81 91.77 201.68 93.29 201.92 100.88C202.08 105.69 201.92 111.41 201.58 113.59C199.53 126.56 198.12 141.29 198.33 147.49C198.54 153.61 198.76 154.6399999999999 200.39 157.16C203.44 161.87 206.9 171.2 209.01 180.43C211.27 190.29 212.89 197.61 213.6 201.17C214.49 205.59 216.03 210.89 217.96 216.22C220.2300000000001 222.47 220.4500000000001 231.61 218.3300000000001 231.61C218.03 231.61 216.9500000000001 230.39 215.9200000000001 228.9C214.8900000000001 227.41 211.1600000000001 224.0999999999999 207.6300000000001 221.5399999999999C199.2600000000001 215.4599999999999 195.9300000000001 212.1499999999999 194.9700000000001 208.9599999999999C194.0400000000001 205.8499999999999 193.9500000000001 201.7299999999999 194.8100000000001 201.1999999999999C195.1500000000001 200.9899999999999 196.1000000000001 198.7999999999999 196.9200000000001 196.3199999999999C198.5400000000001 191.44 198.7900000000001 186.1999999999999 197.6400000000001 180.9599999999999C197.2500000000001 179.19 196.5900000000001 175.4899999999999 196.1800000000001 172.7299999999999C195.7700000000001 169.9699999999999 195.2000000000001 166.2699999999999 194.9300000000001 164.5099999999999C194.6500000000001 162.7499999999999 193.9600000000001 160.8299999999999 193.3800000000001 160.2499999999999C192.4200000000001 159.2899999999999 192.2400000000001 159.3399999999999 191.3300000000001 160.7799999999999C190.78 161.6499999999999 190.1300000000001 163.7899999999999 189.8900000000001 165.5299999999999C189.6400000000001 167.2699999999999 188.2600000000001 172.6399999999999 186.81 177.4599999999999C183.53 188.3599999999999 183.29 193.6099999999999 185.85 198.4199999999999C186.77 200.1499999999999 187.52 202.2299999999999 187.52 203.0299999999999C187.52 205.4199999999999 185.32 208.3499999999999 180.11 212.9199999999999C173.06 219.0999999999999 171.48 220.8399999999999 169.88 224.2199999999999C168.17 227.8199999999999 166.82 228.2799999999999 165.34 225.7599999999999C163.56 222.7499999999999 162.7400000000001 216.6499999999999 162.37 203.7399999999999L162.0200000000001 191.6099999999999L163.97 189.3599999999999C167.18 185.6599999999999 176.04 172.9099999999999 177.75 169.5299999999999C181.16 162.7899999999999 182.09 157.8399999999999 182.16 145.9699999999999C182.23 134.13 183.11 123.2199999999999 184.16 121.2599999999999C184.5200000000001 120.5999999999999 184.67 119.9099999999999 184.5 119.74C184.3300000000001 119.5699999999999 184.91 117.65 185.79 115.47C186.67 113.29 187.6 109.2499999999999 187.85 106.49C188.1 103.73 188.87 99.06 189.56 96.12C191.79 86.56 192.3300000000001 82.04 191.95 75.98C191.75 72.71 191.42 64.91 191.22 58.66C189.91 16.9 189.37 0.68 189.18 -2.55C189.06 -4.57 188.7900000000001 -14.06 188.5800000000001 -23.62C188.22 -39.92 187.28 -50.99 186.1600000000001 -52.27C185.5200000000001 -53 178.0900000000001 -47.36 173.6400000000001 -42.78C169.8900000000001 -38.91 169.62 -37.9899999999999 170.81 -32.83C171.51 -29.82 173.07 -14.54 174.1400000000001 -0.21C174.5000000000001 4.57 174.9500000000001 10.29 175.15 12.5C175.9800000000001 21.87 176.81 32.85 177.7600000000001 47.28C178.3200000000001 55.74 179.0900000000001 63.72 179.4800000000001 65.01C179.8600000000001 66.3 180.37 74.9 180.6100000000001 84.12L181.0400000000001 100.89L178.7800000000001 105.19C177.0600000000001 108.47 173.9100000000001 112.13 165.5600000000001 120.53C159.5300000000001 126.6 153.7200000000001 132.83 152.6500000000001 134.38L150.7000000000001 137.19L151.4500000000001 148.09C152.5400000000001 163.8 152.5500000000001 196.66 151.4700000000001 207.15L150.5800000000001 215.85L147.3000000000001 220.37C141.4400000000001 228.45 141.5000000000001 228.12 141.0800000000001 253.64C140.9800000000001 259.71 140.7000000000001 265.14 140.4500000000001 265.7C139.6200000000001 267.57 137.4000000000001 268.36 131.9100000000001 268.75C123.0500000000001 269.37 120.9500000000001 270.65 108.0600000000001 283.3C101.9100000000001 289.3400000000001 95.7200000000001 295.27 94.3100000000001 296.49C91.5000000000001 298.91 91.5200000000001 298.48 93.7500000000001 306.12L95.1000000000001 310.77L93.4100000000001 313.81C92.4800000000001 315.48 91.3200000000001 317.32 90.8200000000001 317.88C89.4900000000001 319.39 85.3200000000001 328.77 84.8300000000001 331.37C84.5200000000001 333.03 84.7400000000001 334.04 85.7000000000001 335.27C87.9300000000001 338.13 89.1000000000001 340.95 90.1500000000001 346C92.4800000000001 357.19 97.8900000000001 372.0900000000001 100.7500000000001 375.2200000000001C103.9300000000001 378.69 108.4500000000001 376.27 110.1600000000001 370.19C111.5000000000001 365.4 111.5300000000001 360.4 110.2600000000001 351.64C109.7300000000001 347.96 109.2800000000001 342.9600000000001 109.2700000000001 340.53C109.2500000000001 336.52 109.4600000000001 335.8400000000001 111.5200000000001 333.14C114.8500000000001 328.77 119.2500000000001 325.73 126.7200000000001 322.62C128.4200000000001 321.9100000000001 130.5400000000001 320.63 131.4400000000001 319.77C142.6100000000001 309.05 150.0600000000001 303.5900000000001 154.3900000000001 302.92C159.5700000000001 302.12 162.3700000000001 298.38 164.4300000000001 289.5300000000001C165.7400000000001 283.88 168.4300000000001 278.3900000000001 169.8900000000001 278.3900000000001C170.4800000000001 278.3900000000001 171.9800000000001 279.0200000000001 173.2200000000001 279.7800000000001C175.2000000000001 281 175.4700000000001 281.51 175.4700000000001 283.9600000000001C175.4600000000001 287.6700000000001 174.3000000000001 298.0400000000001 173.4700000000001 301.8000000000001C173.1000000000001 303.4600000000001 172.6900000000001 305.86 172.5400000000001 307.1500000000001C172.4000000000001 308.4400000000001 171.9300000000001 311 171.5100000000001 312.8400000000001C168.9600000000001 324 167.8600000000001 328.3000000000001 167.4100000000001 328.8900000000001C165.8600000000001 330.9100000000001 163.3300000000001 339.0900000000001 162.4800000000001 344.8100000000001C160.8400000000001 355.92 158.5200000000001 359.04 149.5700000000001 362.2000000000001C144.9300000000001 363.8400000000001 140.6800000000001 366.3200000000001 136.2500000000001 369.98C135.1000000000001 370.9300000000001 132.2400000000001 373.2000000000001 129.9000000000001 375.04C127.5500000000001 376.87 125.4900000000001 378.5700000000001 125.3000000000001 378.8000000000001C125.1200000000001 379.0300000000001 123.9100000000001 379.9400000000001 122.6100000000001 380.8200000000001C116.3700000000001 385.04 113.7700000000001 387.8000000000001 111.3500000000001 392.7800000000001L108.9100000000001 397.8000000000001L108.6900000000001 410.7800000000001L108.4700000000001 423.7600000000001L115.3800000000001 430.3100000000001C119.3300000000001 434.0600000000001 123.8600000000001 437.6600000000001 125.9700000000001 438.7400000000001C129.2800000000001 440.4300000000001 130.4200000000001 440.6300000000001 137.3400000000001 440.79C145.8700000000001 440.98 147.4600000000001 440.7700000000001 149.0000000000001 439.23C150.5300000000001 437.7000000000001 150.3600000000001 432.8300000000001 148.7100000000001 430.73C147.9700000000001 429.79 147.3700000000001 428.7500000000001 147.3700000000001 428.4100000000001C147.3700000000001 427.8300000000001 144.7600000000001 423.5000000000001 141.9500000000001 419.4200000000001C141.2700000000001 418.4300000000001 139.8200000000001 414.0700000000001 139.5800000000001 412.6C160.0200000000001 399.2100000000001 161.1300000000002 408.8300000000001 153.6500000000001 383.6200000000001L165.0500000000001 381.0800000000001C168.1600000000002 389.74 171.5200000000001 398.3400000000001 173.6600000000002 407.3000000000001C173.9500000000001 414.9300000000001 161.6800000000002 411.49 158.2600000000001 415.98C155.9300000000001 421.9100000000001 161.3900000000001 430.1600000000001 164.3200000000001 435.1800000000001C165.9200000000001 437.5200000000001 170.9400000000002 439.8800000000001 173.1400000000001 439.3300000000001C174.0200000000001 439.11 177.3000000000001 439.6800000000001 180.5100000000001 440.61C183.6900000000002 441.5300000000001 187.0900000000002 442.29 188.0600000000002 442.29C189.0300000000002 442.29 191.7200000000002 442.8700000000001 194.0400000000001 443.5800000000001C197.6900000000002 444.6900000000001 198.5400000000001 444.7500000000001 200.3900000000001 443.98C201.5600000000001 443.5000000000001 204.1800000000001 442.8900000000001 206.2100000000001 442.6200000000001C208.2300000000001 442.36 210.9300000000001 441.5000000000001 212.2100000000001 440.7100000000001C213.4900000000001 439.92 215.7400000000001 438.9400000000001 217.2300000000001 438.54C219.7400000000001 437.86 220.2300000000001 437.9700000000001 224.2800000000002 440.2100000000001L228.6300000000002 442.61L239.3300000000002 443.0200000000001C249.7700000000001 443.42 250.1400000000002 443.4900000000001 254.5900000000001 445.7000000000001L259.1700000000002 448.0000000000001L261.6300000000001 446.5700000000001C263.3900000000001 445.55 264.7700000000001 443.8400000000001 266.4800000000002 440.5900000000001C268.8400000000002 436.0800000000001 268.8600000000002 436.0100000000001 267.8500000000002 433.2200000000001C266.9700000000002 430.7800000000001 266.9600000000002 429.92 267.7500000000001 426.8300000000001C268.2500000000001 424.8700000000001 269.2000000000001 422.2100000000001 269.8500000000002 420.92C270.5000000000001 419.6300000000001 271.0900000000002 417.8300000000001 271.1600000000002 416.9100000000001C271.4700000000002 412.5800000000001 271.1300000000002 411.61 268.7500000000001 409.99C266.5800000000001 408.5200000000001 261.7700000000001 402.0800000000001 261.7700000000001 400.6500000000001C261.7700000000001 400.3300000000001 261.2900000000001 398.9600000000001 260.7000000000001 397.62C255.6600000000001 386.11 253.9400000000001 384.0600000000001 246.4400000000001 380.6400000000001C237.2400000000001 376.4400000000001 234.1400000000001 375.4500000000001 230.2300000000001 375.4500000000001C227.1300000000001 375.4500000000001 226.2300000000001 375.2000000000001 225.6900000000001 374.1900000000001C225.3200000000001 373.5 223.4800000000001 371.8200000000001 221.6000000000001 370.48C219.5600000000001 369.0100000000001 217.8000000000001 367.1 217.2200000000001 365.7000000000001C216.6800000000001 364.42 215.5600000000001 363.11 214.7300000000001 362.79C213.9000000000001 362.4700000000001 212.7900000000001 361.7100000000001 212.2800000000001 361.0800000000001C211.7600000000001 360.4600000000001 208.6200000000001 358.04 205.2800000000001 355.7000000000001C201.9500000000001 353.36 198.4100000000001 350.6800000000001 197.4100000000001 349.7400000000001C196.4100000000001 348.8000000000001 195.3400000000001 348.0300000000001 195.0200000000001 348.0300000000001S193.7400000000001 347.2900000000001 192.8900000000001 346.3800000000001C191.5800000000001 344.9900000000001 191.4000000000001 344.2700000000001 191.7500000000002 341.7800000000001C191.9700000000002 340.1500000000001 192.6100000000002 337.5100000000001 193.1700000000001 335.9000000000001C194.4900000000001 332.1000000000001 194.4800000000001 328.0400000000001 193.1200000000001 325.3300000000001C191.6900000000001 322.4700000000001 192.2300000000001 318.6800000000001 194.4700000000001 315.7400000000001C196.4800000000001 313.1100000000001 196.6300000000001 311.1800000000001 195.1800000000001 306.9000000000001C194.5700000000001 305.1 194.1300000000001 301.4500000000001 194.1200000000001 297.9900000000001C194.1000000000001 293.1100000000001 194.3400000000001 291.7100000000001 195.5800000000001 289.6100000000001C196.7800000000001 287.5700000000001 197.4000000000001 287.1300000000001 198.8200000000001 287.2900000000001C200.8000000000001 287.5200000000001 201.1200000000002 288.3400000000001 203.5300000000002 299.4100000000001C205.7100000000002 309.4400000000001 207.2400000000002 311.3300000000001 217.2900000000001 316.4900000000001C220.2300000000001 318.0000000000001 224.7500000000002 320.4500000000001 227.3200000000002 321.9300000000001C229.9000000000002 323.4100000000001 234.1100000000002 325.6200000000001 236.6900000000002 326.8400000000001C243.3600000000002 330.0000000000001 247.7400000000002 333.3600000000001 251.9100000000002 338.5100000000001C259.0200000000002 347.3000000000001 261.8900000000002 354.7300000000001 264.7600000000002 371.8100000000001C265.3100000000002 375.0900000000001 266.1900000000002 377.4600000000001 267.6200000000002 379.5400000000001C268.9100000000002 381.4100000000001 269.9900000000002 384.1600000000001 270.5100000000002 386.8500000000001C271.5300000000002 392.1500000000001 273.3600000000002 395.9300000000001 276.0900000000002 398.3600000000001C280.7900000000002 402.5400000000001 282.0900000000002 399.4500000000001 280.6800000000001 387.4900000000001C280.2200000000002 383.6300000000001 279.5800000000001 377.1600000000001 279.2400000000001 373.1100000000001L278.6300000000001 365.7500000000001L283.0800000000001 361.6600000000001L287.5300000000001 357.5700000000001L287.6400000000001 349.1500000000001C287.7000000000001 344.5200000000001 288.1100000000002 339.6200000000001 288.5600000000001 338.2600000000001L289.3800000000001 335.7900000000001L282.9500000000001 329.5100000000001C274.4100000000001 321.1800000000001 270.0700000000001 315.5800000000001 266.1900000000001 307.9000000000001C264.4200000000002 304.4100000000001 262.4500000000001 300.7900000000001 261.8100000000001 299.8700000000001C259.6300000000001 296.7600000000001 255.3500000000001 286.8600000000001 253.0500000000002 279.6100000000001L250.7600000000002 272.3900000000001L243.7900000000002 265.9000000000001C239.9600000000001 262.3300000000001 235.8300000000002 258.6500000000001 234.6200000000002 257.7300000000001C231.5700000000002 255.4100000000001 230.3600000000002 252.5800000000001 230.3600000000002 247.7400000000001C230.3600000000002 244.7600000000001 230.7900000000002 242.7800000000001 231.9500000000002 240.4800000000001C232.8200000000002 238.7400000000001 233.7600000000002 236.5700000000001 234.0400000000002 235.6500000000001C234.3200000000002 234.7300000000001 235.0200000000002 233.4300000000001 235.6100000000002 232.7600000000001C237.0100000000002 231.1700000000001 237.5300000000002 216.6400000000001 236.4400000000002 209.5400000000001C235.7600000000002 205.0600000000001 232.8100000000002 197.5200000000001 231.7400000000002 197.5200000000001C229.9500000000002 197.5200000000001 227.6800000000002 188.2500000000001 226.6700000000002 176.7800000000001C226.4900000000002 174.7600000000001 226.0500000000002 170.8400000000001 225.6900000000002 168.0800000000001C225.3300000000002 165.3200000000001 224.7300000000002 158.1000000000001 224.3400000000002 152.0300000000001C223.5700000000002 139.8100000000001 224.1500000000002 133.2600000000001 226.3900000000002 128.8800000000001C229.8000000000002 122.1900000000001 226.9100000000002 116.1900000000001 215.3600000000002 106.0400000000001L211.3900000000002 102.5500000000001L211.4600000000002 97.3600000000001C211.5000000000002 94.5000000000001 212.0100000000002 90.5100000000001 212.6000000000002 88.4900000000001C217.2100000000002 72.5100000000001 217.3300000000002 71.5700000000001 216.9800000000002 51.3600000000001C216.5200000000002 24.9600000000002 216.7200000000002 11.0900000000001 217.6100000000002 7.2100000000002C218.0300000000002 5.3700000000002 218.5200000000002 2.2100000000002 218.6900000000002 0.1900000000002C218.8600000000002 -1.8299999999998 219.3500000000002 -5.1399999999998 219.7700000000002 -7.1699999999998C220.2400000000002 -9.4299999999998 220.5500000000002 -18.1899999999998 220.5600000000002 -29.9099999999999L220.5800000000002 -48.9699999999999L218.7700000000002 -51.5999999999998C216.0600000000002 -55.5099999999999 203.6600000000002 -65.1399999999999 203.2800000000002 -63.8899999999999zM232.81 -18.78C232.63 -18.48 232.48 -11.91 232.48 -4.19C232.48 9.87 231.59 23.35 230.22 30.26C229.82 32.28 229.41 39.96 229.32 47.32C229.17 59.25 227.92 71.69 226.68 73.7C226.02 74.77 223.66 91.36 223.65 95C223.64 99.23 224.67 101 228.93 104.13C233.07 107.17 233.79 107.27 234.41 104.85C234.69 103.75 235.86 99.23 237.01 94.8200000000001C240.94 79.7000000000001 241.15 78.5500000000001 241.06 73.08C240.96 67.3000000000001 240.93 66.9500000000001 239.32 55.35C238.34 48.28 238.15 42.96 238.28 26.92C238.45 7.52 237.64 -8.81 236.24 -14.35C235.53 -17.1299999999999 233.44 -19.83 232.81 -18.78zM161.82 18.8C161.58 19.18 160.81 24.04 160.09 29.59C159.37 35.15 158.6 40.0000000000001 158.36 40.3800000000001C158.13 40.7600000000001 157.68 43.6800000000001 157.37 46.8700000000001C157.06 50.0600000000001 156.46 54.33 156.04 56.3500000000001C155.05 61.1400000000001 152.69 75.7000000000001 152.62 77.4200000000001C152.59 78.1600000000001 152.28 81.4700000000001 151.92 84.7800000000001C151.25 90.9900000000001 151.08 112.4500000000001 151.7 113.0700000000001C152.66 114.0300000000001 158.33 110.3100000000001 163.03 105.6400000000001L168.31 100.3900000000001L167.8600000000001 93.9200000000001C167.6100000000001 90.3600000000001 167.2600000000001 83.6900000000001 167.0800000000001 79.0900000000001C166.9 74.4900000000001 166.59 69.2200000000001 166.4100000000001 67.3800000000001C166.2300000000001 65.5400000000001 165.8000000000001 58.0200000000001 165.4700000000001 50.6600000000001C164.6800000000001 33.2500000000001 163.5300000000001 19.3700000000001 162.8200000000001 18.6600000000001C162.5000000000001 18.3600000000001 162.0600000000001 18.4200000000001 161.8200000000001 18.8000000000001zM74.63 285.39C95.7 272.6 92.47 271.24 103.12 267.73C116.13 263.44 121.99 260.6 126.27 250.86C82.61 214.72 57.26 192.96 49.56 180.04C18.54 128.03 43.57 78.4499999999999 112.31 92.83C98.13 63.6 34.34 64.2 13.63 97.73C-11.05 137.68 -8.46 216.03 74.63 285.39zM285.42 106.37C342.08 99.49 367.74 144.11 331.96 195.6C331.96 195.6 305.09 224.94 267.68 263.56C270.66 279.01 277.17 295.68 298.25 317.38C387.45 253.87 390.25 175.77 390.7099999999999 168.02C394.9799999999999 97.44 312.05 76.9 285.4199999999999 106.37z" />
+    <glyph glyph-name="markdown"
+      unicode="&#xF60F;"
+      horiz-adv-x="640" d=" M593.85 -4.92H46.15C20.7 -4.92 0 15.78 0 41.23V342.77C0 368.2200000000001 20.7 388.92 46.15 388.92H593.84C619.2900000000001 388.92 639.99 368.2200000000001 639.99 342.77V41.23C640 15.78 619.3 -4.92 593.85 -4.92zM153.85 87.38V207.38L215.39 130.46L276.93 207.38V87.38H338.4700000000001V296.62H276.93L215.39 219.7L153.85 296.62H92.31V87.39H153.85zM566.15 192H504.61V296.62H443.07V192H381.5299999999999L473.8399999999999 84.31L566.15 192z" />
+    <glyph glyph-name="mastodon"
+      unicode="&#xF4F6;"
+      horiz-adv-x="417.8" d=" M417.8 268.9C417.8 366.1 354.1 394.6 354.1 394.6C291.6 423.3 125.6 423 63.7000000000001 394.6C63.7000000000001 394.6 0 366.1 0 268.9C0 153.2 -6.6 9.5 105.6 -20.2C146.1 -30.9 180.9 -33.2 208.9 -31.6C259.7000000000001 -28.8 288.2000000000001 -13.5 288.2000000000001 -13.5L286.5000000000001 23.4S250.2000000000001 12 209.4000000000001 13.3C169.0000000000001 14.6999999999999 126.4000000000001 17.6999999999999 119.8000000000001 67.3C119.2000000000001 71.6999999999999 118.9000000000001 76.3 118.9000000000001 81.1999999999999C204.5000000000001 60.3 277.5000000000001 72.0999999999999 297.6 74.4999999999999C353.7000000000001 81.1999999999999 402.6 115.8 408.8 147.4C418.6 197.2 417.8 268.9 417.8 268.9zM342.7000000000001 143.7H296.1V257.9C296.1 307.6 232.1 309.5 232.1 251V188.5H185.8V251C185.8 309.5 121.8 307.6 121.8 257.9V143.7H75.1C75.1 265.8 69.9 291.6 93.5 318.7C119.4 347.6 173.3 349.5 197.3 312.6L208.9 293.1L220.5 312.6C244.6 349.7 298.6 347.4 324.3 318.7C348 291.4 342.7 265.7 342.7 143.7z" />
+    <glyph glyph-name="maxcdn"
+      unicode="&#xF136;"
+      horiz-adv-x="512" d=" M461.1 5.3H363.7000000000001L415.6 248C417.9000000000001 258.2 416.5 267.5 411.2000000000001 273.7C406.2000000000001 279.8 397.5000000000001 283.3 387.0000000000001 283.3H337.7000000000001L278.2000000000001 5.3H180.8000000000001L240.3000000000001 283.3H156.9L97.4 5.3H0L59.5 283.3L14.9 378.7H387C426.4 378.7 462.3 362.4 485.3 333.8C508.6 305.2 517.1 266.4 508.9 227.9L461.1 5.3z" />
+    <glyph glyph-name="medapps"
+      unicode="&#xF3C6;"
+      horiz-adv-x="320" d=" M118.3 209.6C121.8 222.1 125.2 243.2 131.5 243.2C139.8 241.4 141.1 219.8 150.1 206.6C154.7 230.1 155.4 291.7 164.2 293.3C173.2 294 183.9 226.8 186.2 215.8C196.1 211.7 235.1 209.2 235.1 209.2C237 201.9 211.1 201.6 195.1 201.4C190.5 186.6 189.7 173.7 183.7 173.4C179 173.2 175.5 202.2 166.2 223L156.8 157.5C152.4 144.5 141.3 180 134.9 196.8C131.6 196.9 72.5 198.4 87.3 204.6L118.3 209.6zM228 0C249.2 0 249.2 32 228 32H92C70.8 32 70.8 0 92 0H228zM204 -64C225.2 -64 225.2 -32 204 -32H116C94.8 -32 94.8 -64 116 -64H204zM238.2 77.5C241.4 96.4 243.4 113.9 250.1 126.3C258 141 266.2 154.4 274.1 167.3C298.7000000000001 207.7 320 242.5 320 292.8C320 378.4 248.2 448 160 448S0 378.4 0 292.8C0 242.6 21.3 207.7 45.9 167.3C53.8 154.4 61.9 141 69.9 126.3C76.6 113.8 78.6 96.5 81.8 77.4C85.3 56.4 117.9 61.7000000000001 114.4 82.5000000000001C110.8 104.2000000000001 108.8 123.2000000000001 99.1 141.1000000000001C66.5 201.5 33 236.7 33 292.8C33 360.7 90 416 160 416S287 360.7 287 292.8C287 236.7 253.5 201.5 220.9 141.2000000000001C211.2 123.2000000000001 209.2 103.8000000000001 205.6 82.6C202.2 62 234.6 56.2 238.2 77.5z" />
+    <glyph glyph-name="medium-m"
+      unicode="&#xF3C7;"
+      horiz-adv-x="512" d=" M71.5 305.7C72.1 311.6 69.8 317.5 65.4 321.5L20.3 375.9V384H160.5L268.9 146.3L364.2 384H497.9V375.9L459.3 338.9C455.9999999999999 336.4 454.3 332.2 454.9999999999999 328.1V56.1C454.3 52 455.9999999999999 47.8 459.3 45.3L496.9999999999999 8.3V0.2H307.3V8.3L346.4000000000001 46.2C350.2000000000001 50 350.2000000000001 51.2 350.2000000000001 57V276.8L241.5 0.9H226.8L100.4 276.8V91.9C99.3 84.1 101.9 76.3 107.4 70.7L158.2 9.1V0.9999999999999H14.2V8.9999999999999L65 70.7C70.4 76.3 72.9 84.2 71.5 91.9V305.7z" />
+    <glyph glyph-name="medium"
+      unicode="&#xF23A;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM372.2 309.9L348.2 286.9C346.1 285.3 345.1 282.7000000000001 345.5 280.2000000000001V110.9C345.1 108.3 346.1 105.7 348.2 104.2L371.7 81.2V76.1H253.7V81L278 104.6C280.4 107 280.4 107.7000000000001 280.4 111.3V248.2L212.8 76.6H203.7L125 248.2V133.2C124.3 128.4 126 123.5 129.4 120L161 81.7V76.6H71.2V81.7L102.8 120C106.2 123.5 107.7 128.4 106.9 133.2V266.2C107.3 269.9 105.9 273.5 103.1 276L75 309.9V315H162.3L229.7 167L289 314.9H372.2V309.9z" />
+    <glyph glyph-name="medrt"
+      unicode="&#xF3C8;"
+      horiz-adv-x="544" d=" M113.7 192C113.7 70.2 197.6 -30.8 307.2 -49.1C288.5 -53.6 269 -56 249 -56C111.4 -56 0 55 0 192S111.4 440 248.9 440C269 440 288.5 437.6 307.1 433.1C197.5 414.8 113.7 313.8 113.7 192M411.1 91.7C333.4 36.3 231.5 44.2 170.7 106.3C176.2 92.2 183.4 78.6 192.4 65.8C254 -22.4 374.8 -43.5 462.0999999999999 18.8C549.3999999999999 81.1 570.1999999999999 203.1 508.5999999999999 291.4000000000001C499.5999999999999 304.3000000000001 489.2999999999999 315.7000000000001 478.0999999999999 325.6C515.4999999999999 246.8000000000001 488.7999999999999 147.1 411.0999999999999 91.7000000000001M192.2999999999999 335.7000000000001C190.8999999999999 334.7000000000001 189.5999999999999 333.6 188.2999999999999 332.6C252.5999999999999 350.4000000000001 324.2 328.6 367.2 272.1C402.8999999999999 225.1000000000001 410.0999999999999 165.5000000000001 391.5999999999999 114.1C448.2999999999999 170.3 459.1999999999999 256.2000000000001 413.8999999999999 315.9000000000001C363.8999999999999 381.4000000000001 264.8 390.3000000000001 192.2999999999999 335.7000000000001M296 224C291.6 224 288 227.6 288 232V272C288 276.4 284.4 280 280 280H232C227.6 280 224 276.4 224 272V232C224 227.6 220.4 224 216 224H176C171.6 224 168 220.4 168 216V168C168 163.6 171.6 160 176 160H216C220.4 160 224 156.4 224 152V112C224 107.6 227.6 104 232 104H280C284.4 104 288 107.6 288 112V152C288 156.4 291.6 160 296 160H336C340.4 160 344 163.6 344 168V216C344 220.4 340.4 224 336 224H296z" />
+    <glyph glyph-name="meetup"
+      unicode="&#xF2E0;"
+      horiz-adv-x="512" d=" M99 33.7C100.1 28 96.7 22.6 91 21.4C85.6 20.3 80.1 23.7 79 29.4C77.9 34.8 81.3 40.5 86.7 41.7C92.1 42.9 97.8 39.4 99 33.7zM242.1 -37.7C235.8 -42.3000000000001 234.1 -51.1 238.4 -57.7C243 -64.3000000000001 251.8 -66 258.4 -61.4C264.7 -56.8 266.4 -48.0000000000001 261.8 -41.4C257.6 -34.9 248.7 -33.1 242.1 -37.7zM156.1 424.6C162.4 426 166.4 432.3 165 438.6C163.9 445.2 157.6 449.2 151.3 447.7C145 446.3 141 440 142.2 433.7C143.6 427.1 149.8 423.1 156.1 424.6zM34.4 221.7C24.4 228.6 10.7 226 3.8 215.7C-3.1 205.7 -0.5 191.7 9.5 184.8C19.5 177.7 33.2 180.2 40.1 190.5C47 200.9 44.4 214.6 34.4 221.7zM306.4 392.6C317 398.9 320.1 412.6 314.1 422.9C307.8 433.5 294.4 436.9 284.1 430.6S270.4 410.6 276.7 400C282.7 389.7 296.1 386.3 306.4 392.6zM115.3 334.6C123 340 124.7 350.6 119.6 358.3S103.9 367.7 96.5 362.6C88.8 357.2 87.1 346.6 92.2 338.9C97.3 331.1 107.8 329.4 115.3 334.6zM487.6 178.6C480.2 176.9 475.3 169.5 477 161.7000000000001C478.4 154.3000000000001 485.9 149.4 493.3 151.1C500.7 152.5 505.6 160 503.9 167.7000000000001C502.4 175.1 495.0000000000001 180.0000000000001 487.6 178.6zM527.3000000000001 235.4000000000001C526.2 241.1 520.7 244.5000000000001 515.3000000000001 243.4000000000001C509.6000000000001 242.3000000000001 506.2 236.5000000000001 507.3000000000001 230.8000000000001C508.4000000000001 225.4000000000001 513.9000000000001 221.7000000000001 519.6 222.8000000000001C525 224.3000000000001 528.7 229.7000000000001 527.3000000000001 235.4000000000001zM447 309.1C438.4 303.1 436.4 291.4 442.1 282.8C447.8 274.2 459.5 272.2 468.1 277.9C476.4 283.9 478.4 295.6 472.7 304.2C467.0000000000001 312.9 455.3000000000001 315.1 447.0000000000001 309.1zM440.7 169.7C467 126.6 455.8 69.7 414.4 40.6C397 28.3 377.3 22.9 357.5 23.5C345.5 -23.6 288.1 -41.1 252.4 -9.1C251.3 -10 249.8 -10.8 248.7 -12C209.6 -39.1 156.4 -29.4 129.3 10.3C119.6 24.6 114.7 40.9 114.2 57.2C48.8 68.1 24.2 151.2 73.1 196.9C44.8 243.8 73.7 304.3 126.5 311.8C151.6 378 234.1 409.4 290.1 366C357.5 388.3 426.4000000000001 336.6 421 264.9C462.1 252.3 473.8 198 440.7 169.7zM370.7 95.4C367.6 116 329.8 100 327.6 122.5C324.5 154.5 371.3 223.6 367.6 250.5C364.2 274.5 348.2 279.6 334.2 279.9C320.8 280.2000000000001 317.3 277.9 312.8 275.3C309.9000000000001 273.6 306.2 270.4 301.1 275.6C294.8 281.6 290 287.3 281.7000000000001 288.5C269.4000000000001 290.5 264.0000000000001 286.5 255.1000000000001 278.8000000000001C251.7000000000001 275.9000000000001 243.1000000000001 265.9000000000001 235.1000000000001 269.7000000000001C231.7000000000001 271.4000000000001 219.7000000000001 277.4000000000001 211.1000000000001 281.1C194.8000000000001 288.2000000000001 171.1000000000001 276.5000000000001 162.5000000000001 261.1C149.6000000000001 238.2000000000001 124.5000000000001 148.0000000000001 120.8000000000001 136.0000000000001C112.2000000000001 109.4 131.7000000000001 87.4 157.7000000000001 88.9C168.8000000000001 89.5000000000001 176.0000000000001 93.5000000000001 183.1000000000001 106.3C187.1000000000001 113.7 224.8000000000001 214 227.7000000000001 218.9C229.7000000000001 222.3 236.6000000000001 226.9 242.3000000000001 224C248.0000000000001 220.9 249.2000000000001 214.6 248.3000000000001 208.9C247.2000000000001 199.2 220.3000000000001 138 219.4 131.2C216 108.3 246.3000000000001 104.6 258.0000000000001 127.2C261.7000000000001 134.3 303.7000000000001 219.8 307.4000000000001 225.5C311.7000000000001 231.8 314.8 233.8 319.1 233.5C322.2000000000001 233.5 327.4000000000001 232.6 326.2000000000001 222.6C324.8000000000001 213.2 291.1 150.3 287.3000000000001 134.9C282.7000000000001 114.3 293.9000000000001 93.5 312.2000000000001 84.3C323.6 78.6 374.7000000000001 68.6 370.7000000000001 95.4zM376.4 3.1C366.1 -4.3 363.5 -18.9 370.7 -29.5000000000001C377.8 -40.1000000000001 392.1 -42.6000000000001 402.7 -35.5000000000001C413.3 -28.1000000000001 415.8 -13.5000000000001 408.7 -2.9C401.3 7.7 387 10.6 376.4 3.1z" />
+    <glyph glyph-name="megaport"
+      unicode="&#xF5A3;"
+      horiz-adv-x="496" d=" M248 440C111.04 440 0 328.96 0 192C0 55.03 111.04 -56 248 -56C384.9600000000001 -56 496 55.03 496 192C496 328.96 384.96 440 248 440zM333.46 172.33L393.12 112.66V25.61L367.05 6.3799999999999L341 25.61V91.07L307.56 124.51L274.12 91.07V25.61L248 6.38L221.88 25.61V91.07L188.44 124.51L155 91.08V25.62L128.93 6.39L102.87 25.62V112.67L162.34 172.14V260L221.84 319.5V395.12L247.9 414.35L273.96 395.12V319.48L333.46 259.98M247.9 271.84L281.34 238.4V172L248 138.67L214.46 172.21V238.4100000000001L247.9 271.8400000000001z" />
+    <glyph glyph-name="mendeley"
+      unicode="&#xF7B3;"
+      horiz-adv-x="640" d=" M320.1 267.5H320.7000000000001C355.4000000000001 267.5 383.5000000000001 239.4 383.5000000000001 204.7C383.5000000000001 179.7 364.3000000000001 141.9 320.7000000000001 141.9H320.1C276.7000000000001 141.9 257.3 179.4 257.3 204.7C257.3 239.4 285.5 267.5 320.1 267.5M54.2 14.9C101.3 9 135.8 57.8 115.4 102.7C68.1 206.4 301.3 208.8 261.9 110.9C261.8 110.8 261.7 110.7 261.6 110.5C234.8 67.7 268.4 13.1 320.4 15.3C372.5 13.2 405.8 67.9 379.2 110.5C379.1 110.7 379 110.8 378.9 110.9C339.5 208.8 572.7 206.4 525.4 102.7C520.8 92.7 518.6999999999999 81.4 519.6999999999999 69.7C524.5999999999999 16.3 588.4 -4.4 624.5999999999999 34.5C642.3999999999999 49.3 647.6999999999999 100.1 624.5999999999999 122.8C612.3 135.2 594.8999999999999 142 576.1999999999999 140C532.9 141 526.4999999999999 174.9 538.6999999999999 238.8C561.4999999999999 296.3 523.8 370.3 451.3 369.6C373.9 368.9000000000001 369.6 287.6 320.4 287.6C272.3 287.6 266.4 368.9000000000001 189.5 369.6C116.6 370.4000000000001 79.4 296.3 102.1 238.8C114.3 174.9 107.9 141 64.6 140C43.4 142.3 27.6 133.5 11.6 117.5C-8.3 97.8 -7.7 22.7 54.2 14.9" />
+    <glyph glyph-name="microsoft"
+      unicode="&#xF3CA;"
+      horiz-adv-x="448" d=" M0 416H214.6V201.4H0V416zM233.4 416H448V201.4H233.4V416zM0 182.6H214.6V-32H0V182.6zM233.4 182.6H448V-32H233.4V182.6z" />
+    <glyph glyph-name="mix"
+      unicode="&#xF3CB;"
+      horiz-adv-x="448" d=" M0 384V35.1C0 -21.1 88 -23 88 35.1V273.7C95.9 326.6 176 324.1 176 267.2V91.9C176 34 272 33.9 272 91.9V208C277.3 262.7 360 260.5 360 203.7V179.9C360 120 448 123.3 448 179.9V384H0z" />
+    <glyph glyph-name="mixcloud"
+      unicode="&#xF289;"
+      horiz-adv-x="640" d=" M424.43 228.271C416.124 313.273 344.135 380 256.919 380C184.653 380 120.695 333.4840000000001 97.714 265.926C43.169 257.897 1.084 211.104 1.084 154.344C1.084 92.046 51.752 41.378 114.327 41.378H403.9409999999999C456.2699999999999 41.378 498.9099999999999 83.74 498.9099999999999 136.071C498.9099999999999 181.202 466.7919999999999 219.134 424.4299999999999 228.271zM403.9410000000001 83.741H114.327C75.287 83.741 43.446 115.305 43.446 154.345S75.287 224.949 114.327 224.949C133.154 224.949 150.875 217.474 164.165 204.183C184.128 184.22 214.298 214.41 194.345 234.363C179.67 248.761 161.673 258.728 142.292 263.712C162.227 308.012 207.082 337.638 256.92 337.638C326.416 337.638 382.899 281.155 382.899 211.936C382.899 198.368 380.6840000000001 185.079 376.53 172.342C367.587 144.825 408.663 133.403 416.677 159.052C419.446 167.358 421.661 175.941 423.046 184.524C442.4269999999999 177.048 456.5479999999999 158.221 456.5479999999999 136.0709999999999C456.5479999999999 107.2759999999999 433.0129999999999 83.7409999999999 403.9409999999999 83.7409999999999zM639.01 136.071C639.01 92.047 626.273 49.6849999999999 601.908 13.414C597.755 7.322 591.11 4 584.188 4C567.871 4 557.061 22.826 566.745 36.949C586.126 66.298 596.648 100.631 596.648 136.071S586.1270000000001 205.844 566.745 234.9160000000001C551.09 257.747 586.106 282.1560000000001 601.908 258.4500000000001C626.274 222.457 639.01 180.0940000000001 639.01 136.071zM568.13 136.071C568.13 104.506 558.9929999999999 74.05 541.273 47.746C537.12 41.655 530.475 38.61 523.553 38.61C506.352 38.61 496.531 57.5889999999999 506.11 71.5579999999999C519.123 90.6619999999999 525.768 112.8129999999999 525.768 136.0709999999999C525.768 159.0519999999999 519.123 181.4789999999999 506.11 200.5829999999999C490.349 223.5689999999999 525.118 247.6779999999999 541.273 224.1179999999999C558.9920000000001 198.0919999999999 568.13 167.6349999999999 568.13 136.0709999999999z" />
+    <glyph glyph-name="mizuni"
+      unicode="&#xF3CC;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 328.9 0 192C0 55 111 -56 248 -56S496 55 496 192C496 328.9 385 440 248 440zM168 88.1C136.6 77.5 109.2 60.8 88 39.9V312C88 334.1 105.9 352 128 352S168 334.1 168 312V88.1zM288 98C275.1 100 261.8 101.1 248.2 101.1C234.4 101.1 221 100 208 98V312C208 334.1 225.9 352 248 352S288 334.1 288 312V98zM408 40.3C386.8 61.1 359.4 77.7 328 88.3V312C328 334.1 345.9 352 368 352S408 334.1 408 312V40.3z" />
+    <glyph glyph-name="modx"
+      unicode="&#xF285;"
+      horiz-adv-x="448" d=" M356 206.2L392.7 182.5V-32L259.7 51.8L356 206.2zM440 373H226.3L203.3 335.2L356.8 238.7L440 373zM351 230.2L55.2 416V201.5L101.2 172.5L351 230.2zM97 153.8L8 11H221.7L346.7 211.5L97 153.8z" />
+    <glyph glyph-name="monero"
+      unicode="&#xF3D0;"
+      horiz-adv-x="496" d=" M352 64H460.4C417 -7.9 338.1 -56 248 -56S79 -7.9 35.6 64H144V191.8L248 87L352 192V64zM88 112V320L247.4 160.6L408 320V112H482.8C491.3 137.1 496 164 496 192C496 329 385 440 248 440S0 329 0 192C0 164 4.6 137.1 13.2 112H88z" />
+    <glyph glyph-name="napster"
+      unicode="&#xF3D2;"
+      horiz-adv-x="496" d=" M298.3 74.4C284.1 60.8 267 50.3 247.9 43.9C228.9 50.3 211.7 60.8 197.6 74.4H298.3zM342.3 274C362.3 290.9 385.9000000000001 303.2 411.9 310.2V149C411.9 -70.4 83.9 -68.6 83.9 148.7V310.3C109.8 303.4 133.5 290.7000000000001 153.4 273.9C210.2 313.9 285.9 313.8 342.3 274zM133.5 332.5C197.9 392.5 297.8 392.6 362.4 332.7C355.3 329.2 348.5 325.4 341.8 321.2C283.1 351.7 212.6 351.6 153.9 321.1C147.5999999999999 325.1 140 329.3 133.5 332.5zM43.8 354.8V285.5C-14.6 249 -14.6 164.4 43.9 127.2C70.3 -117.9 425.6 -113.1 451.5 125.7L451.8 127.4C510.5 163.7 510.7 249.1 452 285.6V354.8C434.7 354.3 418 351.8 401.9 347.4C319.9 438.9 176.4 438.9 94.4 347.3C78.1 351.7 61.3 354.3 43.8 354.8zM259.2 96S295.2 96.3 320.5 97.5C330.7 98 341.6 101.5 346 104C372.3 119.1 371.4 143.2 372.2 151.4C292.7 152 272.3 155.3 259.2 96zM123.7 151.3C124.5 143.1 123.6 119 149.9 103.9C154.3 101.4 165.1 97.9 175.4 97.4C200.7 96.3 236.7 95.9 236.7 95.9C223.5 155.3 203 152.0000000000001 123.7 151.3zM292.8 27.9C289.6 33.2 285.9 35.2 285.9 35.2C261.1 27.9 233.7 28.3 210 35.2C210 35.2 207.1 33.7 203.6 28.6C200.8 24.4999999999999 199.9 18.9999999999999 199.9 18.9999999999999C229 1.3999999999999 267 1.3999999999999 296.1 18.9999999999999C296 19.1 295.8 22.9999999999999 292.8 27.8999999999999z" />
+    <glyph glyph-name="neos"
+      unicode="&#xF612;"
+      horiz-adv-x="456.38" d=" M387.44 -64H292.33L184.12 90.54V-0.5599999999999L97.69 -64H0V418.18L40.47 448H148.52L272.26 271.87V384.55L358.69 448H456.38V-13.5L387.44 -64zM10.77 412.73V-47.99L82.78 4.89V254.05L298.27 -53.64H383.06L435.4100000000001 -15.47H357.1400000000001L40.96 435.02L10.77 412.73zM93.31 -53.88L173.35 4.9V105.94L93.55 220.3V-0.64L20.97 -53.89H93.31zM52.63 437.23L363.23 -5.34H445.6V437.23H365.85V119.67L142.91 437.23H52.63zM283.0300000000001 256.35L355.04 153.54V432.07L283.0300000000001 379.11V256.35z" />
+    <glyph glyph-name="nimblr"
+      unicode="&#xF5A8;"
+      horiz-adv-x="355.52" d=" M232.6 148.71C248.17 148.71 259.75 137.25 259.75 121.75C259.75 106.2 248.13 94.79 232.6 94.79C216.9 94.79 205.45 106.36 205.45 121.75C205.45 137.26 217.03 148.71 232.6 148.71zM99.01 121.75C99.01 137.36 110.69 148.71 126.16 148.71C141.73 148.71 153.31 137.25 153.31 121.75C153.31 106.34 141.84 94.79 126.16 94.79C110.72 94.79 99.01 106.1 99.01 121.75M177.76 289.05C143 289.05 75.45 269.23 45.25 221L0 448V112.52C0 14.87 79.61 -64 177.76 -64C276 -64 355.52 14.95 355.52 112.52C355.52 209.98 276.13 289.05 177.76 289.05zM177.76 -19.07C104.49 -19.07 45.25 39.83 45.25 112.52C45.25 185.2 104.49 244.11 177.76 244.11C251.03 244.11 310.27 185.2 310.27 112.52S251.02 -19.07 177.76 -19.07z" />
+    <glyph glyph-name="nintendo-switch"
+      unicode="&#xF418;"
+      horiz-adv-x="448" d=" M95.9 414.5C51.3 406.5 15.4 373.5 4.1 330.1C0 314.4 -0.3 305.2 0.2 183.6C0.4 72 0.5 69.4 2.4 60.7C12.7 14.2 45.7 -18.9 92.7 -29.8C98.8 -31.2 106.6 -31.5 156.8 -31.7C208.7 -32.1 214.1 -32 215.5 -30.6C216.9 -29.2 217 -11.3 217 191.6C217 342.1 216.7 412.9000000000001 216.1 414.2000000000001C215.2 415.9000000000001 213.6 416 159.2 415.9000000000001C115 415.8 101.7 415.5 95.9 414.5zM179.8 191.9V4L142 4.5C107.2 4.9 103.5 5.1 96.5 6.8C66.6 14.5 44.5 37.5 38.2 67.5C36.2 76.9 36.2 307.6 38.1 316.8C43.7 342.9 61.8 364.5 86.1 374.2000000000001C98.3 379.1 104 379.7000000000001 143.7 379.8L179.6 379.9V191.9zM103.9 323.1C98.1 322 89.2 317.5 84.4 313.4C74.7 305 69.8 293 70.6 278.9C71 271.6 71.4 269.6 74.4 263.7C78.8 254.7 85.3 248.1 94.3 243.7C100.5 240.6 102.1 240.3 110.2 240C117.5 239.7 120.1 240 125 241.7C145.1 248.5 157.3 268 153.8 288.1C149.9 311.8 127.2 327.8 103.9 323.1zM262.1 415.4C261.7000000000001 415.1 261.5 314.6 261.5 191.9C261.5 -10.4 261.6 -30.9 263 -31.5C265.5 -32.4 337.5 -32.1 346.4 -31.1C384.1 -26.8 417.4 -3.9 435.4 30.1C437.7 34.4999999999999 440.8 41.8 442.4 46.3C448.2 63.6999999999999 448.1 59.1 448.1 192.4C448.1 298.8 447.9 314.7 446.6 321.4C437.4 369.7 400.5 406.2 352.1 414.5C345.6 415.6 335.6 415.8999999999999 303.3 415.8999999999999C280.9 416 262.4 415.7 262.1 415.3999999999999zM361.2000000000001 213.3C375.7000000000001 209.5 387.5000000000001 198.5 392.4000000000001 184.4C395.5000000000001 175.7 395.4000000000001 162.9 392.3 154.9C386.6 140.2 375.5 129.9 361.2 126.1C338 120.1 313.3 134.1 306.6 157.1C304.6 164.1 304.7 176 307 183.3C313.8999999999999 206 338 219.4 361.2 213.3z" />
+    <glyph glyph-name="node-js"
+      unicode="&#xF3D3;"
+      horiz-adv-x="448" d=" M224 -60C217.3 -60 210.5 -58.2 204.6 -54.8L142.9 -18.3C133.7 -13.1 138.2 -11.3 141.2 -10.3C153.5 -6 156 -5.1 169.1 2.4C170.5 3.2 172.3 2.9 173.7 2L221.1 -26.1C222.8 -27.1 225.2 -27.1 226.8 -26.1L411.5 80.5C413.2 81.5 414.3 83.5 414.3 85.5V298.7C414.3 300.8 413.2 302.7 411.4000000000001 303.8L226.8 410.3C225.1 411.3 222.8 411.3 221.1 410.3L36.6 303.7C34.8 302.7 33.7 300.7 33.7 298.6V85.5C33.7 83.5 34.8 81.5 36.6 80.6L87.2 51.4C114.7 37.7 131.5 53.8 131.5 70.1V280.5C131.5 283.5 133.9 285.8 136.9 285.8H160.3C163.2 285.8 165.7 283.5 165.7 280.5V70C165.7 33.4 145.7 12.4 111 12.4C100.3 12.4 91.9 12.4 68.5 24L20.1 51.9C8.1 58.8 0.7 71.7 0.7 85.6V298.7C0.7 312.5 8.1 325.5 20.1 332.4L204.6 439C216.3 445.6 231.8 445.6 243.4 439L428.1 332.3C440.1 325.4 447.5 312.5 447.5 298.6V85.5C447.5 71.7 440.1 58.8 428.1 51.8L243.4 -54.8C237.5 -58.2 230.8 -60 224 -60zM373.1 150.1C373.1 190 346.1 200.6 289.4000000000001 208.1C232.0000000000001 215.7 226.2000000000001 219.6 226.2000000000001 233.0000000000001C226.2000000000001 244.1 231.1000000000001 258.9000000000001 273.6 258.9000000000001C311.5 258.9000000000001 325.5 250.7000000000001 331.3 225.1C331.8 222.7 334 220.9 336.5 220.9H360.5C362 220.9 363.4 221.5 364.4 222.6S365.9 225.2 365.8 226.7C362.1 270.8 332.8 291.3 273.6 291.3C220.9 291.3 189.5 269.1 189.5 231.8C189.5 191.4 220.8 180.2 271.3 175.2C331.8 169.3 336.5 160.4 336.5 148.5C336.5 127.9 319.8999999999999 119.1 281 119.1C232.1 119.1 221.4 131.4 217.8 155.7000000000001C217.4 158.3000000000001 215.2 160.2000000000001 212.5 160.2000000000001H188.5999999999999C185.5999999999999 160.2000000000001 183.2999999999999 157.8000000000001 183.2999999999999 154.9C183.2999999999999 123.8 200.1999999999999 86.7000000000001 281.0999999999999 86.7000000000001C339.4999999999999 86.8000000000001 373.0999999999999 109.9 373.0999999999999 150.1z" />
+    <glyph glyph-name="node"
+      unicode="&#xF419;"
+      horiz-adv-x="640" d=" M316.3 -4C314.2 -4 312.1 -3.4 310.2 -2.4L291 9C288.1 10.6 289.5 11.2 290.5 11.5C294.3 12.8 295.1 13.1 299.2 15.5C299.6 15.7 300.2 15.6 300.6 15.4L315.4 6.6C315.9 6.3 316.7 6.3 317.2 6.6L375 40C375.5 40.3 375.9 40.9 375.9 41.6V108.3C375.9 109 375.6 109.6 375 109.9L317.2 143.2000000000001C316.7 143.5000000000001 316 143.5000000000001 315.4 143.2000000000001L257.6 109.9C257 109.6 256.7 108.9 256.7 108.3V41.6C256.7 41 257.1 40.4 257.6 40.1L273.4 31C282 26.7 287.3 31.8 287.3 36.8V102.7000000000001C287.3 103.6 288 104.4 289 104.4H296.3C297.2 104.4 298 103.7000000000001 298 102.7000000000001V36.8000000000001C298 25.3000000000001 291.8 18.8000000000001 280.8999999999999 18.8000000000001C277.5999999999999 18.8000000000001 274.8999999999999 18.8000000000001 267.5999999999999 22.4000000000001L252.3999999999999 31.1000000000001C248.7 33.3000000000001 246.3 37.3000000000001 246.3 41.6000000000001V108.3000000000001C246.3 112.6000000000001 248.6 116.7000000000001 252.3999999999999 118.8000000000001L310.2 152.2000000000001C313.8999999999999 154.3000000000001 318.7 154.3000000000001 322.3 152.2000000000001L380.1 118.8000000000001C383.8 116.6000000000001 386.2 112.6000000000001 386.2 108.3000000000001V41.6000000000001C386.2 37.3000000000001 383.9 33.2000000000001 380.1 31.1000000000001L322.3 -2.2999999999999C320.6 -3.3999999999999 318.5 -3.9999999999999 316.3 -3.9999999999999zM363 61.8C363 74.3 354.6 77.6 336.8 80C318.8 82.4 317 83.6 317 87.8C317 91.3 318.5 95.9 331.8 95.9C343.7 95.9 348.1 93.3 349.9000000000001 85.3C350.1 84.5 350.7000000000001 84 351.5000000000001 84H359.0000000000001C359.5000000000001 84 359.9000000000001 84.2 360.2000000000001 84.5C360.5000000000001 84.9 360.7000000000001 85.3 360.6 85.8C359.4000000000001 99.6 350.3 106 331.8 106C315.3 106 305.5 99 305.5 87.4C305.5 74.7 315.3 71.3 331.1 69.7C350 67.8 351.5 65.1 351.5 61.4C351.5 54.9 346.3 52.2 334.1 52.2C318.8 52.2 315.4000000000001 56 314.3 63.6C314.2 64.4 313.5 64.9999999999999 312.6 64.9999999999999H305.1C304.2000000000001 64.9999999999999 303.4000000000001 64.3 303.4000000000001 63.3C303.4000000000001 53.6 308.7000000000001 41.9999999999999 334.0000000000001 41.9999999999999C352.5000000000001 41.9999999999999 363.0000000000001 49.1999999999999 363.0000000000001 61.8zM417.5 111.9C417.5 105.8 412.5 100.8 406.4 100.8S395.3 105.8 395.3 111.9C395.3 118.2000000000001 400.5 123.0000000000001 406.4 123.0000000000001C412.4 123.1000000000001 417.5 118.2000000000001 417.5 111.9zM415.7 111.9C415.7 117.1 411.5 121.2000000000001 406.3 121.2000000000001C401.2 121.2000000000001 397 117.1 397 111.9C397 106.7000000000001 401.2 102.5000000000001 406.3 102.5000000000001C411.5 102.6000000000001 415.7 106.8000000000001 415.7 111.9zM411.2 105.7000000000001H408.6C408.5 106.3000000000001 408.1 109.5000000000001 408.1 109.6C407.9 110.3 407.7 110.7000000000001 406.8 110.7000000000001H404.6V105.7000000000001H402.2V118.2000000000001H406.5C408 118.2000000000001 410.9 118.2000000000001 410.9 114.9C410.9 112.6 409.4 112.1 408.5 111.8C410.2 111.7 410.3 110.6 410.6 109C410.7000000000001 108 410.9000000000001 106.3 411.2000000000001 105.7zM408.4 114.5000000000001C408.4 116.2000000000001 407.2 116.2000000000001 406.6 116.2000000000001H404.6V112.7000000000001H406.5C408.1 112.7000000000001 408.3999999999999 113.8000000000001 408.3999999999999 114.5000000000001zM137.3 257C137.3 259.7 135.9 262.1 133.6 263.4L72.3 298.7C71.3 299.3 70.1 299.6 68.9 299.7H68.3C67.1 299.7 66 299.3 64.9 298.7L3.7 263.4C1.4 262.1 0 259.6 0 257L0.1 162C0.1 160.7 0.8 159.5 1.9 158.8C3 158.1 4.4 158.1 5.6 158.8L42 179.7C44.3 181.1 45.7 183.5 45.7 186.1V230.5C45.7 233.1 47.1 235.6 49.4 236.9L64.9 245.8C66.1 246.5 67.3 246.8 68.6 246.8C69.9 246.8 71.2 246.5 72.3 245.8L87.8 236.9C90.1 235.6 91.5 233.1 91.5 230.5V186.1C91.5 183.5 92.9 181 95.2 179.7L131.6 158.8C132.7 158.1 134.2 158.1 135.3 158.8C136.4 159.4 137.1 160.7 137.1 162L137.3 257zM472.5 360.7V184.3C472.5 181.7 471.1 179.2 468.8 177.9L407.5 142.5000000000001C405.2 141.2000000000001 402.4 141.2000000000001 400.1 142.5000000000001L338.8 177.9C336.5 179.2000000000001 335.1 181.7000000000001 335.1 184.3V255.1C335.1 257.7000000000001 336.5 260.2000000000001 338.8 261.5L400.1 296.9000000000001C402.4000000000001 298.2000000000001 405.2000000000001 298.2000000000001 407.5 296.9000000000001L422.8 288.1C424.5 287.1 426.7 288.4000000000001 426.7 290.3V384.3C426.7 387.1 429.7 388.9000000000001 432.2 387.5L468.7 367.1C471 365.9000000000001 472.5 363.4000000000001 472.5 360.7000000000001zM426.5 231.8C426.5 232.5 426.1 233.1 425.6 233.4L404.6 245.6C404 245.9 403.3 245.9 402.7000000000001 245.6L381.7000000000001 233.4C381.1 233.1 380.8000000000001 232.5 380.8000000000001 231.8V207.5C380.8000000000001 206.8 381.2000000000001 206.2 381.7000000000001 205.9L402.7000000000001 193.8C403.3000000000001 193.5 404.0000000000001 193.5 404.5000000000001 193.8L425.5000000000001 205.9C426.1000000000001 206.2 426.4000000000001 206.8 426.4000000000001 207.5V231.8zM636.3 232.5C638.5999999999999 233.8 640 236.3 640 238.9V256C640 258.6 638.6 261.1 636.3 262.4L575.4 297.8C573.1 299.1 570.3 299.1 568 297.8L506.7 262.4C504.4 261.1 503 258.6 503 256V185.2C503 182.5 504.4 180.1 506.7 178.8L567.6 144.1C569.8000000000001 142.8 572.6 142.8 574.9 144.1L611.6999999999999 164.6C614.1999999999999 166 614.1999999999999 169.6 611.6999999999999 171L550 206.4C548.8 207.1 548.1 208.3 548.1 209.6V231.8C548.1 233.1 548.8000000000001 234.3 550 235L569.2 246.1C570.3000000000001 246.8 571.8000000000001 246.8 572.9000000000001 246.1L592.1000000000001 235C593.2000000000002 234.3 594.0000000000001 233.1 594.0000000000001 231.8V214.4C594.0000000000001 211.6 597.1000000000001 209.8 599.6000000000001 211.2L636.3000000000002 232.5zM559 229C558.6 228.7 558.3 228.3 558.3 227.8V214.2C558.3 213.7 558.5999999999999 213.2 559 213L570.8 206.2C571.1999999999999 205.9 571.8 205.9 572.1999999999999 206.2L584 213C584.4 213.3 584.7 213.7 584.7 214.2V227.8C584.7 228.3 584.4000000000001 228.8 584 229L572.2 235.8C571.8000000000001 236.1 571.2 236.1 570.8000000000001 235.8L559 229zM304.8 185.5V255.9C304.8 258.5 303.2 261 300.9000000000001 262.3L239.8000000000001 297.5C237.7000000000001 298.7 234.8000000000001 298.9 232.4000000000001 297.5L171.3000000000001 262.3C169 261 167.4 258.6 167.4 255.9V185.5C167.4 182.7 169.3000000000001 180.3 171.4 179.1L232.6 143.9C235.0000000000001 142.5000000000001 237.8 142.6 240.0000000000001 143.9L301 179.1C302.8 180.1 304.1 181.8 304.6 183.8C304.7000000000001 184.3 304.8 184.9 304.8 185.5zM230.5 310.4L229.7 309.9H230.8L230.5 310.4zM306.7 180.2000000000001L306.3 180.9V180.0000000000001L306.7 180.2000000000001z" />
+    <glyph glyph-name="npm"
+      unicode="&#xF3D4;"
+      horiz-adv-x="576" d=" M288 160H256V224H288V160zM576 288V96H288V64H160V96H0V288H576zM160 256H32V128H96V224H128V128H160V256zM320 256H192V96H256V128H320V256zM544 256H352V128H416V224H448V128H480V224H512V128H544V256z" />
+    <glyph glyph-name="ns8"
+      unicode="&#xF3D5;"
+      horiz-adv-x="640" d=" M187.1 288.1L152.9 174.4L98.4 288.1H49L0 128H44.9L76 234.5L126.6 128H183.5L232 288.1H187.1zM639.6 289C636.7 307 615.7 317.1 597.5 320.3C552.9 328.1 495.6 304 509 261.5V261.4C465.2 252.7 434.7 234.6 414.8 213.2C411.8 223 401.2 229.8 380.8 229.8H293.2000000000001C283.9000000000001 229.8 280.3000000000001 232.1 281.7000000000001 237.2C283.3000000000001 242.7 283.6 244 285.4000000000001 249.4C287.5000000000001 255.8 293.2000000000001 256.5 298.7000000000001 256.5H432.2000000000001L441.9000000000001 288C302.2000000000001 288 297.4000000000001 288.5 281.8000000000001 286.8C269.5000000000001 285.5 258.3000000000001 282 251.2000000000001 271.8C244.4000000000001 261.9 236.8000000000001 236.2 233.6000000000001 224.7C228.2000000000001 205.3 233.0000000000001 196.1 266.4000000000001 196.1H353.7000000000001C361.5000000000001 196.1 362.5000000000001 193.4 361.4000000000001 189.5C360.3000000000001 185.1 358.6000000000001 179.5 356.9000000000001 174.9C355.3000000000001 170.7 352.2000000000001 167.5 343.1000000000001 167.5H216.3L204.7 128C344.6 128 350 128.6 365.6 130.3C372.2000000000001 131 378.6 132.4 384.1 135.2C384.3 131.5 384.6 127.9 385.3 124.4C390.7 93.9 412.7 72.1 442.1 64.9C490.7 53 550.8000000000001 81.7 577.2 132.9C595.9000000000001 169.1 591.3000000000001 209.1 573.8000000000001 238.4H573.9000000000001C603.5000000000001 244.3 644.2 260.4 639.6000000000001 289zM530.7 184.3C524.8000000000001 154.8 494.1 136.5 469.1 140.4C438.2000000000001 145.2000000000001 430.6 179.9 455 205.2000000000001C471.2 222.0000000000001 500.2 229.2000000000001 523.5 232.1000000000001C530.2 218.0000000000001 533.8 200.1000000000001 530.7 184.3000000000001zM552.5 267.4C548.3 273.4 542.7 285.9 550 293.7000000000001C556.7 300.9 570.9 303.8 581.8 301.4C597.0999999999999 298 601.5 285.5 586.6999999999999 277C575.9999999999999 270.9 563.0999999999999 268.9 552.4999999999999 267.4z" />
+    <glyph glyph-name="nutritionix"
+      unicode="&#xF3D6;"
+      horiz-adv-x="400" d=" M88 439.9S221.4 448.1 209 335.5C209 335.5 228.1 410.4 312 376.1C312 376.1 294.3 302.1 224 320.1C224 320.1 238.6 374.7 290.1 376.7C290.1 376.7 250.2 387 208 327.9C208 327.9 188.2 422.4 114.4 427.6C114.4 427.6 189.6 408.2 192 320.1C192 320 85.6 313.1 88 439.9zM400 124.3C400 75.8 390.3 28.9999999999999 368 -8.0000000000001C325.8 -38.9 263 -56.0000000000001 200 -56.0000000000001C137.1 -56.0000000000001 74.2 -38.9 32 -8.0000000000001C9.7 29 0 75.8 0 124.3C0 172.7 17.7 219 40 256C82.2 286.9 137.1 304.6 200 304.6C263 304.6 317.8 287 360 256C382.3 219 400 172.7 400 124.3zM120 20C120 35.5 107.5 48 92 48S64 35.5 64 20S76.5 -8 92 -8S120 4.5 120 20zM120 86.2C120 101.7 107.5 114.2 92 114.2S64 101.7 64 86.2S76.5 58.2 92 58.2S120 70.7 120 86.2zM120 152.4C120 167.9 107.5 180.4 92 180.4S64 167.9 64 152.4S76.5 124.4 92 124.4S120 136.9 120 152.4zM192 20C192 35.5 179.5 48 164 48S136 35.5 136 20S148.5 -8 164 -8S192 4.5 192 20zM192 86.2C192 101.7 179.5 114.2 164 114.2S136 101.7 136 86.2S148.5 58.2 164 58.2S192 70.7 192 86.2zM192 152.4C192 167.9 179.5 180.4 164 180.4S136 167.9 136 152.4S148.5 124.4 164 124.4S192 136.9 192 152.4zM264 20C264 35.5 251.5 48 236 48S208 35.5 208 20S220.5 -8 236 -8S264 4.5 264 20zM264 86.2C264 101.7 251.5 114.2 236 114.2S208 101.7 208 86.2S220.5 58.2 236 58.2S264 70.7 264 86.2zM264 152.4C264 167.9 251.5 180.4 236 180.4S208 167.9 208 152.4S220.5 124.4 236 124.4S264 136.9 264 152.4zM336 20C336 35.5 323.5 48 308 48S280 35.5 280 20S292.5 -8 308 -8S336 4.5 336 20zM336 86.2C336 101.7 323.5 114.2 308 114.2S280 101.7 280 86.2S292.5 58.2 308 58.2S336 70.7 336 86.2zM336 152.4C336 167.9 323.5 180.4 308 180.4S280 167.9 280 152.4S292.5 124.4 308 124.4S336 136.9 336 152.4zM360 192C355.2 214.3 352.6 228.9 344 248C305.2 267.9 253.5 280 200 280S94.8 267.9 56 248C47.2 228.5 44.8 214.1 40 192C82.2 199.9 138.7 206.8 200 206.8S317.8 199.9 360 192z" />
+    <glyph glyph-name="odnoklassniki-square"
+      unicode="&#xF264;"
+      horiz-adv-x="448" d=" M184.2 270.9C184.2 293 202.1 310.9 224 310.9S263.8 293 263.8 270.9C263.8 248.9 245.9 231.1 224 231.1S184.2 249.0000000000001 184.2 270.9000000000001zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM142.9 270.9C142.9 226.3 179.3 190 224 190S305.1 226.2 305.1 270.9C305.1 315.7 268.7 352 224 352S142.9 315.8 142.9 270.9zM317.4 180.2C312.8 189.3 300.1 197 283.3 183.8C283.3 183.8 260.6 165.8 224 165.8S164.6999999999999 183.8 164.6999999999999 183.8C147.8999999999999 197 135.1999999999999 189.3 130.5999999999999 180.2C122.6999999999999 164.1 131.6999999999999 156.5 152 143.2C169.3 132.1 193.1999999999999 128 208.5999999999999 126.4L195.6999999999999 113.5C177.5 95.5 160.1999999999999 78 148 65.8C130.4 48.2 158.6999999999999 20 176.4 37.2L224.1 85.1C242.3 66.9 259.8 49.4 271.8 37.2C289.4 20 317.8 47.9 300.4 65.8L252.7 113.5L239.7 126.4C255.2 128 278.8 132.3 295.9 143.2C316.3 156.5 325.2 164.2 317.4 180.2z" />
+    <glyph glyph-name="odnoklassniki"
+      unicode="&#xF263;"
+      horiz-adv-x="320" d=" M275.1 114C247.7 96.6 210 89.7 185.1 87.1L206 66.5L282.3 -9.8C310.2 -38.4 264.8 -83.1 236.6 -55.5C217.5 -36.1 189.5 -8.1 160.3 21.1L84 -55.4C55.8 -82.9 10.4 -37.8 38.6 -9.7C58 9.7 85.7 37.7 114.9 66.6L135.5 87.2000000000001C110.9 89.8000000000001 72.6 96.3000000000001 44.9 114.1C12.3 135.1 -2 147.4 10.6 173.1C18 187.7000000000001 38.3 200 65.2 178.8C65.2 178.8 101.5 149.9 160.1 149.9S255.0000000000001 178.8 255.0000000000001 178.8C281.9000000000001 199.9 302.1 187.7 309.6 173.1C322 147.4 307.7000000000001 135.1 275.1 114zM30.3 318.3C30.3 390 88.6 448 160 448S289.7 390 289.7 318.3C289.7 246.9 231.4 188.9 160 188.9S30.3 246.9 30.3 318.3zM96.3 318.3C96.3 283.2000000000001 124.9 254.6 160 254.6S223.7 283.2000000000001 223.7 318.3C223.7 353.7000000000001 195.1 382.3 160 382.3S96.3 353.7000000000001 96.3 318.3z" />
+    <glyph glyph-name="old-republic"
+      unicode="&#xF510;"
+      horiz-adv-x="496" d=" M235.76 437.77C243.26 438.08 250.76 438.05 258.26 437.86C261.87 437.7200000000001 265.46 437.46 269.05 437.13C273.9700000000001 436.86 278.8400000000001 436.1 283.7200000000001 435.51C286.6500000000001 435.08 289.55 434.53 292.4700000000001 434.05C300.37 432.72 308.1400000000001 430.77 315.86 428.65C328.1 425.18 340.05 420.73 351.62 415.44C378.18 403.2 402.56 386.23 423.25 365.56C443.28 345.4700000000001 459.97 322.01 472.14 296.37C473.27 293.78 474.58 291.27 475.61 288.63C478.42 282.2 481 275.66 483.19 269C487.33 256.67 490.53 244.01 492.61 231.17C493.18 228.0300000000001 493.65 224.87 494.01 221.7C494.56 217.87 494.95 214.01 495.19 210.14C496.02 201.8 496.03 193.41 495.96 185.04C495.89 180.07 495.7 175.1 495.21 170.15C494.97 166.7700000000001 494.7 163.3900000000001 494.23 160.03C493.84 157.31 493.6 154.5700000000001 493.1199999999999 151.86C492.22 146.71 491.42 141.55 490.2499999999999 136.45C486.1499999999999 117.95 479.9499999999999 99.9 471.74 82.82C455.97 49.99 432.91 20.65 404.62 -2.3A246.503 246.503 0 0 0 347.7099999999999 -37.16C341.5 -39.84 335.25 -42.41 328.8399999999999 -44.57C325.33 -45.7300000000001 321.83 -46.95 318.2699999999999 -47.96C311.6499999999999 -49.84 304.9799999999999 -51.6 298.2299999999999 -52.96C293.5699999999999 -53.8700000000001 288.89 -54.6900000000001 284.2 -55.4400000000001C278.95 -56.1000000000001 273.7 -56.88 268.4099999999999 -57.1800000000001C261.7199999999999 -57.8400000000001 254.9999999999999 -58.02 248.2899999999999 -57.9900000000001C241.4699999999999 -58.02 234.6399999999999 -57.8700000000001 227.8399999999999 -57.2C224.5499999999999 -56.97 221.2699999999999 -56.7 218.0099999999999 -56.2500000000001C215.2899999999999 -55.8600000000001 212.5499999999999 -55.6200000000001 209.8399999999999 -55.14C205.7199999999999 -54.42 201.5899999999999 -53.77 197.4899999999999 -52.92C193.2399999999999 -51.98 188.9999999999999 -51.03 184.7999999999999 -49.9C176.1699999999999 -47.73 167.7199999999999 -44.89 159.3899999999999 -41.77C148.8999999999999 -37.65 138.5999999999999 -33.02 128.75 -27.52C126.61 -26.3700000000001 124.47 -25.23 122.4 -23.95C111.18 -17.3700000000001 100.54 -9.85 90.48 -1.6100000000001C55.8 26.8 29.07 64.8199999999999 14.13 107.0899999999999C11.04 115.8299999999999 8.42 124.7399999999999 6.33 133.7699999999999C4.85 139.93 3.81 146.19 2.75 152.43C2.35 154.78 2.14 157.16 1.8 159.5199999999999C1.2 163.4799999999999 1.05 167.4799999999999 0.63 171.4599999999999C-0.17 180.93 -0.08 190.4499999999999 0.12 199.9499999999999C0.26 203.4599999999999 0.46 206.9599999999999 0.82 210.4599999999999C1.13 213.6299999999999 1.28 216.8299999999999 1.74 219.9799999999999C2.15 222.7899999999999 2.39 225.63 2.9 228.42C3.6 232.36 4.2 236.32 5.02 240.2399999999999C8.45 256.76 13.49 272.9699999999999 20.28 288.42C21.43 291.3399999999999 22.87 294.14 24.14 297.01C32.19 313.7199999999999 42.04 329.57 53.63 344.07C73.63 369.45 98.73 390.75 126.9 406.54C134.4 410.69 142.06 414.5899999999999 149.97 417.9099999999999C165.7899999999999 424.7899999999999 182.38 429.86 199.28 433.2899999999999C202.7899999999999 433.9599999999999 206.3199999999999 434.5299999999999 209.84 435.14C212.46 435.61 215.12 435.8399999999999 217.75 436.2199999999999C221.28 436.75 224.8499999999999 436.8999999999999 228.4 437.26C230.86 437.5 233.31 437.62 235.76 437.7699999999999M244.4 413.36C235.17 413.26 225.97 412.37 216.83 411.13C209.53 410.05 202.3 408.5299999999999 195.12 406.83C181.21 403.33 167.64 398.49 154.66 392.41C144.2 387.42 134.07 381.7099999999999 124.48 375.19C120.3 372.2699999999999 116.08 369.39 112.14 366.16C107.06 362.19 102.16 357.99 97.46 353.57C94.95 351.33 92.65 348.87 90.24 346.51C62.02 317.7199999999999 41.8 281.12 32.74 241.82C30.7 233.38 29.2 224.7999999999999 28.3 216.1699999999999C27.2 207.2799999999999 26.86 198.3199999999999 26.89 189.37C27 182.23 27.27 175.09 28.11 168C28.73 160.88 29.98 153.8399999999999 31.31 146.8199999999999C32.3799999999999 142.17 33.3399999999999 137.5 34.64 132.9099999999999C40.93 109.5299999999999 51.14 87.2099999999999 64.71 67.1599999999999C73.35 54.1799999999999 83.49 42.2299999999999 94.69 31.3899999999999C110.97 15.5699999999999 129.74 2.3499999999999 150.03 -7.83C157.31 -11.35 164.69 -14.7 172.3 -17.46C177.34 -19.22 182.36 -21.03 187.52 -22.4400000000001C198.78 -25.6700000000001 210.29 -28.0400000000001 221.91 -29.5000000000001C224.82 -29.7900000000001 227.72 -30.1100000000001 230.63 -30.4C244.45 -31.48 258.37 -31.4 272.17 -29.97C276.62 -29.37 281.09 -28.98 285.52 -28.1900000000001C289.15 -27.52 292.8 -26.9400000000001 296.39 -26.09C300.52 -25.11 304.67 -24.18 308.75 -23.02C335.25 -15.6800000000001 360.33 -3.3100000000001 382.33 13.18C398.11 24.9999999999999 412.29 38.9399999999999 424.45 54.4599999999999C427.71 58.4799999999999 430.62 62.7699999999999 433.58 67.0099999999999C436.97 72.0699999999999 440.16 77.2599999999999 443.18 82.55C445.58 86.99 447.92 91.46 450.13 95.9999999999999C455.82 108.05 460.41 120.62 463.88 133.49C466.47 143.5 468.63 153.65 469.78 163.94C471.55 177.41 471.72 191.04 471.07 204.59C470.78 208.4799999999999 470.4 212.36 470.07 216.25C467.84 235.33 463.28 254.16 456.25 272.05C450.3 287.18 442.7200000000001 301.68 433.64 315.18C420.95 333.98 405.4 350.86 387.67 365.01C362.62 385.01 333.2 399.56 302.02 407.0899999999999C294.24 409.0199999999999 286.33 410.43 278.39 411.54C274.48 412.13 270.54 412.36 266.62 412.78C259.23 413.35 251.81 413.5 244.4 413.36zM139.26 364.4700000000001C152.56 373.36 167.34 379.85 182.56 384.65C179.39 382.88 176.12 381.27 173.03 379.36C161.82 372.68 151.51 364.46 142.65 354.87C135.85 347.44 129.89 339.14 125.64 329.98C122.35 323.12 120 315.79 118.78 308.27C117.85 303.42 117.48 298.4600000000001 117.61 293.52C117.74 279.86 122.05 266.44 128.9 254.7C134.82 244.48 142.53 235.37 151.26 227.4400000000001C156.11 223.08 161.5 219.35 166.21 214.84C168.47 212.65 170.7 210.4200000000001 172.64 207.93C175.26 204.62 177.53 200.94 178.63 196.8300000000001C179.53 193.81 179.29 190.6300000000001 179.32 187.5200000000001C179.34 183.42 179.28 179.3200000000001 179.35 175.22C179.49 171.68 179.33 168.1300000000001 179.46 164.59C179.54 162.21 179.48 159.8300000000001 179.51 157.4500000000001C179.67 151.6800000000001 179.57 145.9200000000001 179.66 140.15C179.7700000000001 137.24 179.68 134.3300000000001 179.79 131.41C179.82 129.78 179.92 128.1300000000001 179.76 126.5C178.85 126.38 177.94 126.32 177.03 126.34C166.04 126.34 155.15 128.97 145.0800000000001 133.27C139.0800000000001 135.97 133.2700000000001 139.16 127.9900000000001 143.1C122.2400000000001 147.29 116.9 152.06 112.2000000000001 157.41C105.6700000000001 164.65 100.22 172.8 95.58 181.36C94.5100000000001 183.3899999999999 93.3400000000001 185.38 92.4 187.48C91.24 190.12 89.78 192.62 88.73 195.3C84.68 204.98 82.16 215.24 80.65 225.61C80.16 230.05 79.56 234.49 79.45 238.96C78.75 254.69 80.29 270.51 84.12 285.78C86.24 293.93 88.89 301.9599999999999 92.43 309.61C98.75 323.81 107.77 336.79 118.73 347.8C125.01 354 131.8600000000001 359.64 139.2600000000001 364.47zM314.63 384.5900000000001C317.37 383.85 320.04 382.85 322.72 381.91C329.08 379.58 335.4 377.07 341.43 373.95C354.54 367.51 366.74 359.14 377.25 348.98C387.45 339.03 395.99 327.38 402.39 314.64C403.6699999999999 311.89 405.0299999999999 309.18 406.2 306.38C412.51 291.28 416.2 275.12 417.43 258.81C417.84 254.27 417.87 249.72 417.88 245.17C417.95 233.5300000000001 416.39 221.92 413.58 210.64C411.6099999999999 203.37 409.2299999999999 196.15 405.7199999999999 189.46C402.5399999999999 182.8200000000001 399.0399999999999 176.3 394.88 170.22C387.94 159.75 379.2799999999999 150.35 369.06 143C358.58 135.36 346.42 129.98 333.66 127.62C330.15 126.93 326.58 126.54 323 126.41C321.1499999999999 126.35 319.2799999999999 126.25 317.44 126.5100000000001C317.16 128.66 317.44 130.8200000000001 317.43 132.97C317.4 136.7000000000001 317.57 140.42 317.53 144.1400000000001C317.72 151.16 317.55 158.1900000000001 317.74 165.21C317.7699999999999 167.59 317.71 169.97 317.7699999999999 172.35C317.94 177.42 317.7299999999999 182.49 317.9099999999999 187.56C318.01 190.55 317.6699999999999 193.6 318.4199999999999 196.52C319.08 199.02 320.1999999999999 201.38 321.5099999999999 203.6C325.9699999999999 210.91 332.5699999999999 216.56 339.1899999999999 221.86C344.5699999999999 226.04 349.6599999999999 230.63 354.2099999999999 235.7C361.8899999999999 244.07 368.3799999999999 253.58 372.9899999999999 263.9700000000001C375.4899999999999 269.9000000000001 377.5099999999999 276.0700000000001 378.5399999999999 282.4300000000001C379.3999999999999 286.8000000000001 379.5999999999999 291.2600000000001 379.5499999999999 295.7000000000001C379.5299999999999 303.5500000000001 378.1499999999999 311.35 375.9099999999999 318.8700000000001C374.1599999999999 324.6000000000001 371.64 330.0500000000001 368.82 335.3200000000001C364.95 342.2500000000001 360.17 348.6300000000001 354.86 354.5200000000001C344.92 365.3700000000001 333.11 374.4600000000001 320.26 381.6200000000001C318.4099999999999 382.6400000000001 316.42 383.4400000000001 314.63 384.5900000000001zM213.83 326.14C214.81 327.32 215.82 328.4700000000001 216.95 329.52C216.34 328.59 215.68 327.71 215 326.84C211.9 322.96 209.46 318.53 207.97 313.78C207.1 310.51 206.29 307.18 206.24 303.78C206.17 301.26 206.16 298.7100000000001 206.56 296.2100000000001C207.69 288.5800000000001 210.89 281.36 215.33 275.0900000000001C217.33 272.39 219.58 269.82 222.25 267.76C223.87 266.49 225.78 265.67 227.59 264.71C230.7 263.03 233.91 261.48 236.66 259.23C239.33 257.14 241.21 253.9 241.06 250.44C241.05 176.77 241.06 103.1 241.05 29.42C241.05 28.0699999999999 240.97 26.72 241.09 25.3799999999999C241.22 23.8999999999999 241.91 22.55 242.56 21.23C243.42 19.5699999999999 244.34 17.89 245.74 16.61C246.59 15.84 247.71 15.21 248.89 15.3699999999999C250.39 15.5699999999999 251.55 16.72 252.34 17.9399999999999C253.3 19.4499999999999 254.02 21.1 254.62 22.79C255.38 24.92 255.06 27.21 255.16 29.42C255.3 33.4499999999999 255.14 37.48 255.3 41.5099999999999C255.33 47.3999999999999 255.33 53.2799999999999 255.36 59.17C255.5 62.79 255.39 66.41 255.47 70.03C255.62 74.06 255.45 78.09 255.61 82.12C255.64 88.11 255.64 94.1 255.68 100.0899999999999C255.82 103.7099999999999 255.7 107.3299999999999 255.79 110.9499999999999C255.93 114.88 255.77 118.81 255.93 122.7299999999999C255.96 128.7199999999999 255.96 134.7099999999999 255.99 140.6999999999999C256.15 144.6399999999999 255.98 148.5799999999999 256.18 152.5199999999999C256.4700000000001 151.0799999999999 256.31 149.5999999999999 256.4000000000001 148.1399999999999C256.5900000000001 144.5299999999999 256.8200000000001 140.9099999999999 257.1600000000001 137.3C257.48 133.86 257.6 130.41 258.0200000000001 126.98C258.3900000000001 123.88 258.5300000000001 120.7599999999999 258.9700000000001 117.67C259.54 113.58 259.8400000000001 109.46 260.5100000000001 105.3799999999999C261.9700000000001 96.3399999999999 263.3400000000001 87.2699999999999 265.6 78.3899999999999C266.73 73.5699999999999 268 68.7799999999999 269.6 64.0899999999999C272.1400000000001 56.1899999999999 275.3200000000001 48.4199999999999 279.9100000000001 41.4699999999999C281.6400000000001 38.8299999999999 283.7800000000001 36.4899999999999 286.0100000000001 34.2599999999999C286.2800000000001 34.0099999999999 286.5600000000001 33.7499999999999 286.8900000000001 33.55C287.4900000000001 33.3 288.2000000000001 33.62 288.5900000000001 34.12C289.3 34.9999999999999 289.7600000000001 36.0599999999999 290.29 37.05C294.3400000000001 44.85 298.4700000000001 52.61 302.63 60.36C303.33 61.67 304.07 62.98 305.19 63.97C306.94 65.54 309.03 66.66 311.17 67.6C314.05 68.82 317.07 69.79 320.2 70.02C326.78 70.64 333.31 69.27 339.76 68.17C343.45 67.59 347.16 66.9999999999999 350.89 66.7599999999999C354.63 66.6599999999999 358.37 66.7099999999999 362.1 67.0399999999999C370.65 67.9599999999999 379.09 69.9999999999999 387.04 73.2899999999999C392.34 75.5299999999999 397.5 78.1199999999999 402.35 81.2199999999999C413.81 88.4299999999999 423.81 97.7899999999999 432.39 108.2299999999999C433.56 109.6499999999999 434.64 111.1299999999999 435.85 112.5099999999999C434.65 109.2699999999999 433.18 106.1399999999999 431.69 103.0299999999999C430.44 100.1299999999999 428.85 97.4199999999999 427.42 94.6099999999998C422.26 84.9799999999999 416.4 75.6999999999998 409.67 67.0899999999999C405.64 61.8799999999999 401.14 57.0399999999999 396.34 52.5199999999999C389.7 46.4699999999999 382.27 41.1499999999999 373.91 37.7599999999999C365.7 34.3899999999999 356.6 33.1299999999999 347.82 34.4699999999999C344.26 35.0499999999998 340.81 36.1599999999999 337.41 37.3499999999999C334.62 38.3199999999999 332.02 39.7299999999999 329.38 41.0399999999999C325.95 42.7499999999998 322.74 44.8499999999999 319.67 47.1199999999998C322.38 44.0599999999998 325.36 41.2599999999998 328.37 38.5099999999998C332.64 34.7499999999998 337.11 31.1999999999998 342 28.2799999999998C345.98 25.8299999999998 350.29 23.8799999999998 354.84 22.7699999999998C356.3 22.3999999999998 357.8 22.3099999999998 359.29 22.1699999999998C358.04 21.0699999999998 356.66 20.1299999999998 355.3 19.1899999999998C345.69 12.6499999999998 335.29 7.3299999999998 324.61 2.7599999999998C303.75 -5.9400000000002 281.44 -11.2100000000003 258.87 -12.5800000000002C254.21 -12.8200000000002 249.55 -12.9400000000002 244.89 -12.9400000000002C239.91 -12.8300000000002 234.92 -12.8100000000002 229.97 -12.2900000000002C218.77 -11.5300000000003 207.68 -9.5600000000002 196.8 -6.8600000000002C186.45 -4.1500000000003 176.25 -0.7400000000002 166.5 3.6899999999998C157.7899999999999 7.5499999999998 149.38 12.1099999999998 141.5099999999999 17.4799999999998C139.6799999999999 18.7899999999998 137.7699999999999 20.0099999999998 136.1399999999999 21.5599999999998C142.7399999999999 22.7499999999998 149.1699999999999 24.9499999999998 155.13 28.0399999999998C160.87 30.8999999999998 166.12 34.6999999999998 170.7599999999999 39.1099999999998C173 41.2999999999998 175.0499999999999 43.6999999999998 176.9499999999999 46.1999999999998C173.5199999999999 44.0699999999998 170.0199999999999 42.0499999999998 166.3299999999999 40.4199999999998C161.9199999999999 38.2599999999998 157.2599999999999 36.6499999999998 152.5199999999999 35.3999999999998C146.7899999999999 33.8799999999998 140.7799999999999 33.6699999999998 134.9099999999999 34.2599999999998C126.7799999999999 35.2099999999998 119.0499999999999 38.5299999999998 112.3999999999999 43.2399999999998C108.0799999999999 46.1799999999998 104.1799999999999 49.6699999999998 100.4399999999999 53.2999999999998C90.5099999999999 63.4599999999999 82.2399999999999 75.1099999999998 74.7799999999999 87.1599999999999C70.8399999999999 93.4299999999998 67.2499999999999 99.9099999999999 63.6599999999999 106.3799999999999C62.6099999999999 108.4199999999999 61.5099999999999 110.4299999999999 60.4799999999999 112.4799999999999C63.3299999999999 109.5599999999999 66.0499999999999 106.5099999999999 68.9099999999999 103.5999999999999C77.8999999999999 94.6299999999999 87.4699999999999 86.1599999999999 98.0699999999999 79.1199999999999C105.6199999999999 74.2199999999999 113.7399999999999 69.8899999999999 122.6299999999999 68.0899999999999C125.7399999999999 67.3599999999999 128.9499999999999 67.6199999999999 132.0999999999999 67.2799999999999C134.8699999999999 66.9999999999999 137.6599999999999 67.0799999999999 140.4399999999999 66.9799999999999C145.4899999999999 66.9199999999999 150.5499999999999 66.9399999999999 155.5999999999999 67.1399999999999C159.2499999999999 67.3 162.8699999999999 67.8 166.4899999999999 68.2299999999999C168.5599999999999 68.4799999999999 170.5999999999999 68.9399999999999 172.6299999999999 69.4299999999999C176.5099999999999 70.3799999999999 180.7399999999999 70.3899999999999 184.4599999999999 68.8199999999999C189.2199999999999 66.9699999999999 192.8999999999999 63.1799999999999 195.8399999999999 59.1099999999999C197.9999999999999 56.0899999999999 199.8999999999999 52.8899999999999 201.4999999999999 49.5299999999999C202.6599999999999 47.0999999999999 203.9599999999999 44.7399999999999 205.0499999999999 42.2699999999999C206.0499999999999 40.0299999999999 207.1999999999999 37.8499999999999 208.4699999999999 35.7499999999999C209.1399999999999 34.73 209.8699999999999 33.6 211.0899999999999 33.1999999999999C212.1499999999999 33.9499999999999 212.7999999999999 35.11 213.3699999999999 36.2299999999999C215.4699999999999 40.3899999999999 216.7899999999999 44.8799999999999 218.2599999999999 49.2799999999999C220.2799999999999 55.8699999999999 222.0399999999999 62.5499999999999 223.4499999999999 69.2999999999999C225.6599999999999 78.5499999999999 226.6999999999999 88.0199999999999 227.9899999999999 97.4299999999999C228.5499999999999 101.4099999999999 228.8199999999999 105.4199999999999 229.2999999999999 109.3999999999999C230.1699999999999 120.0399999999999 231.1999999999999 130.6699999999999 231.5399999999999 141.3399999999999C231.6199999999999 143.1999999999999 231.7799999999999 145.0499999999999 231.7899999999999 146.9099999999999C231.7999999999999 151.2599999999999 232.0399999999999 155.5999999999999 232.0099999999999 159.9399999999999C231.9999999999999 162.3199999999999 231.9999999999999 164.6999999999999 232.0099999999999 167.0699999999999C232.0599999999999 172.1399999999999 231.8099999999999 177.2099999999999 231.7899999999999 182.2799999999999C231.5899999999999 188.8899999999999 231.0799999999999 195.4799999999999 230.4999999999999 202.0599999999999C229.7699999999999 207.9399999999999 228.9499999999999 213.8399999999999 227.3799999999999 219.5699999999999C225.3299999999999 227.3199999999999 221.7899999999999 234.5999999999999 217.5799999999999 241.3899999999999C214.4199999999999 246.4599999999999 210.7899999999999 251.2699999999999 206.4899999999999 255.4199999999999C202.6099999999999 259.2799999999999 197.9099999999999 262.4999999999999 192.5499999999999 263.8699999999999C191.0499999999999 264.2799999999999 189.4899999999999 264.3199999999998 187.9599999999999 264.5099999999998C188.0299999999999 267.4999999999999 188.6599999999999 270.4399999999999 189.2199999999999 273.3599999999998C190.8099999999999 281.0699999999998 193.0199999999999 288.6599999999999 195.9799999999999 295.9599999999998C197.4999999999999 299.9899999999998 199.3899999999999 303.8599999999998 201.3699999999998 307.6799999999999C204.8199999999998 314.2399999999998 208.9899999999999 320.4699999999998 213.8299999999999 326.1399999999998zM245.1 324.44C245.45 324.5 245.81 324.56 246.17 324.63C246.36 322.84 246.26 321.05 246.27 319.26V281.13C246.26 279.39 246.4 277.64 246.12 275.91C245.76 275.94 245.41 275.9600000000001 245.06 275.9600000000001C244.11 279.7100000000001 243.34 283.51 242.44 287.27C242.06 288.8 241.86 290.36 241.37 291.86C239.67 292.1 237.94 292.03 236.22 292.06C231.16 292.07 226.09 292.06 221.03 292.07C219.37 292.08 217.71 291.98 216.05 292.1C216.02 292.49 215.79 293.01 216.21 293.28C217.49 293.93 218.93 294.16 220.27 294.63C223.7 295.77 227.15 296.79 230.58 297.94C231.97 298.42 233.48 298.66 234.74 299.48C234.78 300.04 234.76 300.61 234.69 301.16C233.46 301.7100000000001 232.16 302.03 230.88 302.44C227.75 303.4700000000001 224.59 304.4 221.47 305.4600000000001C219.68 306.0800000000001 217.8 306.4600000000001 216.06 307.25C216.03 307.62 215.99 307.98 215.95 308.3400000000001C221.04 308.53 226.15 308.28 231.25 308.4600000000001C234.61 308.5900000000001 237.98 308.38 241.34 308.53C241.46 308.92 241.6 309.3 241.71 309.69C242.79 314.63 244.04 319.52 245.1 324.44zM251.07 324.64C251.43 324.5900000000001 251.79 324.52 252.15 324.44C253.13 320.5900000000001 253.88 316.68 254.86 312.83C255.2200000000001 311.41 255.42 309.95 255.89 308.56C258.42 308.38 260.9600000000001 308.57 263.5 308.51C268.6600000000001 308.39 273.83 308.39 278.99 308.44C279.75 308.45 280.51 308.41 281.27 308.36C281.23 308 281.2 307.64 281.17 307.28C279.35 306.45 277.39 306.03 275.5 305.39C271.7699999999999 304.16 268.0199999999999 303 264.2799999999999 301.82C263.7099999999999 301.65 263.1599999999999 301.4 262.6099999999999 301.18C262.4599999999999 300.63 262.4299999999999 300.06 262.4899999999999 299.49C263.3599999999999 299.01 264.3099999999999 298.68 265.2599999999999 298.4C270.1399999999999 296.88 274.9899999999999 295.26 279.8899999999999 293.8C280.2699999999999 293.67 280.6699999999999 293.53 281.0199999999999 293.31C281.4199999999999 293.04 281.2499999999999 292.52 281.1699999999999 292.13C279.5099999999998 292 277.8599999999999 292.1 276.1999999999998 292.09C271.0299999999998 292.08 265.8699999999999 292.1 260.6999999999998 292.08C259.0899999999998 292.05 257.4799999999998 292.1 255.8799999999998 291.87C255.3599999999998 290.2 255.1599999999999 288.45 254.7099999999999 286.76C253.7699999999999 283.19 253.1899999999999 279.52 252.1699999999999 275.98C251.8099999999999 275.97 251.4599999999999 275.9599999999999 251.1099999999999 275.92C250.8199999999999 277.65 250.9599999999999 279.4 250.9599999999999 281.14V319.27C250.9799999999999 321.05 250.8799999999998 322.85 251.0699999999999 324.64zM65.05 279.67C66.17 281.82 67.13 284.07 68.42 286.13C66.6 278.57 65.51 270.86 64.8 263.13C64 255.42 63.95 247.64 64.26 239.9C65.31 219.96 69.8 200.07 78.49 182.02C81.48 176.03 84.84 170.19 88.99 164.91C95.11 157.44 101.52 150.15 108.83 143.82C113.63 139.72 118.82 136.04 124.37 133.02C127.64 131.37 130.88 129.63 134.31 128.34C139.32 126.31 144.5 124.73 149.73 123.4C153.56 122.44 157.51 121.99 161.25 120.69C166.25 119.12 170.72 116.08 174.28 112.26C179.21 107.03 182.37 100.39 184.48 93.59C185.47 90.69 186.07 87.68 186.65 84.67C186.8 83.92 186.87 83.15 186.81 82.3799999999999C180.31 79.6 173.55 77.3199999999999 166.55 76.1999999999999C162.44 75.42 158.26 75.2099999999999 154.09 75.12C143.84 74.8799999999999 133.62 76.8799999999999 123.97 80.24C120.23 81.66 116.48 83.09 112.94 84.96C104.88 88.8 97.3 93.66 90.48 99.42C87.56 101.97 84.65 104.55 82.08 107.4499999999999C72.92 117.2799999999999 65.78 128.86 60.29 141.0999999999999C57.9 146.6499999999999 55.68 152.2799999999999 53.92 158.0599999999999C52.75 161.9999999999999 51.56 165.9499999999999 50.66 169.9699999999999C49.91 172.9099999999999 49.44 175.9199999999999 48.79 178.8899999999999C48.33 181.0299999999999 48.1 183.2099999999999 47.76 185.37C46.91 190.8 46.48 196.3 46.43 201.8C46.54 207.98 46.68 214.17 47.5 220.3C47.9 223.16 48.17 226.04 48.65 228.9C49.63 234.6 50.79 240.27 52.36 245.83C55.45 257.48 59.84 268.78 65.05 279.67zM428.7800000000001 286.11C429.8800000000001 284.45 430.6900000000001 282.63 431.56 280.85C433.6600000000001 276.4 435.8 271.95 437.58 267.36C445.19 248.6 449.88 228.57 450.62 208.31C450.64 206.55 450.69 204.79 450.73 203.02C450.86 193.45 449.4600000000001 183.93 447.55 174.57C446.82 170.98 446.01 167.4 444.9700000000001 163.88C440.93 149.16 434.9700000000001 134.88 426.56 122.1C418.35 109.53 407.55 98.55 394.7200000000001 90.69C388.99 87.1 382.93 84.05 376.67 81.5C370.8900000000001 79.31 364.9600000000001 77.47 358.87 76.39C352.4700000000001 75.34 345.96 74.87 339.4700000000001 75.16C331.55 75.64 323.6900000000001 77.23 316.2600000000001 80.01C314.3200000000001 80.81 312.3200000000001 81.47 310.4200000000001 82.34C310.2100000000001 83.85 310.6700000000001 85.33 310.9500000000001 86.8C312.1100000000001 92.54 313.98 98.16 316.6500000000001 103.3799999999999C319.0200000000001 107.8899999999999 322.17 112.0299999999999 326.11 115.2799999999999C328.54 117.3299999999999 331.35 118.8899999999999 334.2700000000001 120.1099999999999C337.85 121.6099999999999 341.7400000000001 122.0799999999999 345.5100000000001 122.9399999999999C352.7400000000001 124.6499999999999 359.8800000000001 126.8699999999999 366.6600000000001 129.9399999999999C377.0100000000001 134.5899999999999 386.37 141.3199999999999 394.31 149.3999999999999C395.9 151.0099999999999 397.54 152.5799999999999 399.05 154.2699999999999C402.42 158.0299999999999 405.76 161.8399999999999 408.9000000000001 165.7999999999999C416.3800000000001 175.8699999999998 421.7200000000001 187.3899999999998 425.61 199.2799999999998C427.19 204.5799999999999 428.82 209.8799999999998 429.82 215.3299999999999C430.45 218.1999999999999 430.86 221.1099999999999 431.34 224.0099999999999C432.21 230.0999999999999 432.93 236.2299999999999 433.02 242.3899999999999C433.14 249.0399999999999 433.16 255.7099999999999 432.49 262.3299999999998C431.76 270.3199999999998 430.62 278.2899999999999 428.7800000000001 286.1099999999999z" />
+    <glyph glyph-name="opencart"
+      unicode="&#xF23D;"
+      horiz-adv-x="640" d=" M423.3 7.3C423.3 -18 403 -38.3 377.7 -38.3S331.9 -18 331.9 7.3S352.5 53.1 377.7 53.1C403.1 53.1 423.3 32.6 423.3 7.3zM169.4 53.1C144.1 53.1 123.8 32.5 123.8 7.3S144.1 -38.3 169.4 -38.3S215.2 -18 215.2 7.3S194.7 53.1 169.4 53.1zM461.1 323.1C158.9 323.1 81.9 335.9 0 422.3C34.4 370.6 53.3 273.4 373.1 278.1C706.4000000000001 283.1 503.1 192 443.9000000000001 89.2000000000001C630.6 255.9000000000001 763.3 323.1 461.1 323.1z" />
+    <glyph glyph-name="openid"
+      unicode="&#xF19B;"
+      horiz-adv-x="448" d=" M271.5 16L203.5 -16C88.5 -5.7 0 55.5 0 129.8C0 201.3 82.5 260.8 191.7 274.1V231.1C120.2 218.6 67.7 178.1 67.7 129.8C67.7 78.8 126.2 36.5 203.4 26.8V366.8L271.4 400V16zM448 157L316.7 185.5L353.5 206.2C334 217.7 310 226.2 283.5 231V274C329.7 268.5 371.2 254.5 403.8 234.7L438.8 254.5L448 157z" />
+    <glyph glyph-name="opera"
+      unicode="&#xF26A;"
+      horiz-adv-x="496" d=" M313.9 415.3C143.7 415.3 61.3 191.5 166.4 60.2C202.9 14.8 255 -15.4 313.9 -15.4C350.2 -15.4 384.2 -4.3 413.3 15C369.5 -24.2 311.4 -48 248 -48C244.1 -48 240 -48 236.1 -47.7C104.6 -41.6 0 66.9 0 200C0 337 111 448 248 448H248.8C311.9000000000001 447.7 369.5 423.9 413.2000000000001 384.9C384.2000000000001 404.3 350.1 415.3 313.9000000000001 415.3zM415.7 17.6C374.8 -7.1 325 -6 283.7 23.4C339.9 43.9 381.4 115 381.4 200C381.4 284.7000000000001 340.2 355.8000000000001 284 376.6C325.8 405.8 375.2 406.9000000000001 416.9 381.6C522.8 282.9000000000001 522.4 115.9 415.7 17.6z" />
+    <glyph glyph-name="optin-monster"
+      unicode="&#xF23C;"
+      horiz-adv-x="576" d=" M550.671 -2.303C550.671 -13.923 534.998 -21.76 518.513 -17.166C506.353 -13.923 487.167 0.399 482.302 10.128C476.628 21.748 486.356 42.826 501.218 40.934C516.892 39.313 550.671 15.533 550.671 -2.3030000000001zM372.86 372.777C369.077 444.928 272.064 452.495 246.932 396.2870000000001C291.5200000000001 420.608 337.189 411.9600000000001 372.86 372.777zM74.795 40.934C59.122 39.313 25.343 15.533 25.343 -2.303C25.343 -13.923 41.016 -21.76 57.5 -17.166C69.66 -13.923 88.576 0.399 93.44 10.128C99.386 21.748 89.658 42.826 74.795 40.934zM572.56 26.612C573.641 23.099 574.452 19.586 574.452 15.803C575.262 -15.813 530.135 -48.242 500.949 -49.322C483.654 -50.132 466.359 -40.945 458.253 -25.812C344.7560000000001 -29.865 231.2590000000001 -30.676 118.033 -25.812C109.656 -40.945 92.361 -49.862 75.066 -49.322C46.151 -48.241 1.023 -15.813 1.563 15.803C1.833 19.586 2.374 23.099 3.455 26.612C-2.111 36.075 -1.39 41.894 8.86 38.232C12.103 43.366 15.886 47.6900000000001 19.94 52.014C17.37 62.931 21.21 66.108 31.019 61.202C35.613 64.445 41.017 67.687 46.963 70.39C46.963 86.147 58.802 81.521 64.258 76.065C76.725 77.845 84.387 75.356 91.011 70.39V90.116C78.024 90.116 50.37 101.491 45.071 126.328C40.097 147.053 47.678 164.403 70.203 173.888C71.013 179.833 78.31 187.94 85.065 189.832C92.632 191.724 97.496 185.238 99.117 179.563C106.542 179.563 116.874 178.098 120.195 171.456C125.6 171.997 131.274 172.808 136.679 173.348C134.2470000000001 175.24 131.545 176.861 128.572 177.942C123.438 186.859 114.79 189.021 103.981 189.562C103.981 190.372 103.981 191.183 104.251 192.264C84.524 192.805 60.203 197.939 49.394 210.099C28.073 233.737 33.459 293.6760000000001 61.554 313.5970000000001C69.931 319.2720000000001 83.172 314.408 84.253 303.8690000000001C86.678 283.271 84.652 277.0360000000001 110.465 277.927C118.572 285.7630000000001 127.22 292.519 136.948 297.9240000000001C122.086 299.2760000000001 108.034 296.303 93.17 294.1410000000001C105.922 306.6210000000001 117.123 319.5830000000001 149.918 336.5680000000001C173.429 348.4580000000001 199.911 357.3760000000001 226.123 359.807C207.477 367.6440000000001 186.13 371.6980000000001 166.402 376.2910000000001C242.877 392.5050000000001 340.971 398.4500000000001 410.691 338.7290000000001C428.796 323.326 443.118 302.5180000000001 453.3869999999999 278.7370000000001C493.1859999999999 273.884 489.857 284.3180000000001 492.03 303.8690000000001C493.111 314.1380000000001 506.352 319.2720000000001 514.7289999999999 313.3270000000001C529.5909999999999 302.7880000000001 536.8879999999999 282.5210000000001 539.319 265.2260000000001C541.481 247.3910000000001 539.5889999999999 223.8810000000001 526.889 210.0990000000001C516.08 197.9390000000001 492.569 192.5340000000001 473.113 191.994V189.2910000000001C462.033 189.0210000000001 452.845 186.859 447.44 177.6710000000001C444.468 176.59 441.766 174.9680000000001 439.063 173.0770000000001C444.738 172.537 450.413 171.7260000000001 455.818 171.186C457.687 176.8050000000001 468.353 179.5630000000001 476.895 179.5630000000001C478.516 184.968 483.651 191.453 490.947 189.8320000000001S504.999 179.8340000000001 505.81 173.888C516.619 169.564 527.969 161.728 530.941 148.216C532.8330000000001 140.109 532.562 133.083 531.211 126.328C525.485 101.066 497.85 90.116 485.272 90.116C485.272 83.36 485.272 76.8750000000001 485.002 70.39C493.012 76.3960000000001 501.369 77.5480000000001 511.754 76.0650000000001C517.673 81.984 529.3190000000001 85.4750000000001 529.3190000000001 70.39C534.994 67.6870000000001 540.6680000000001 64.4450000000001 545.263 61.2020000000001C555.363 66.253 558.932 61.741 556.072 52.0140000000001C560.125 47.6910000000001 564.179 43.0970000000001 567.151 38.2320000000001C577.2869999999999 41.8520000000001 578.1719999999999 36.1540000000001 572.56 26.6120000000001zM498.7869999999999 280.6280000000001C516.0819999999999 273.872 524.9989999999999 258.4690000000001 529.0519999999999 244.9580000000001C530.1329999999999 255.497 526.3499999999999 284.4110000000001 515.2699999999999 296.0310000000001C507.9739999999999 303.327 501.2179999999998 301.165 501.2179999999998 295.221C501.2189999999998 289.005 499.8679999999998 283.601 498.7869999999999 280.6280000000001zM480.1409999999999 268.198C493.1119999999999 252.525 497.1649999999999 226.583 492.8409999999999 205.235C503.6499999999999 207.397 513.3779999999999 211.45 519.0529999999999 217.395C520.9449999999999 219.557 522.8359999999999 222.259 523.9169999999999 224.961C522.8359999999999 246.3090000000001 513.6479999999999 267.658 494.1919999999999 273.8730000000001C490.9499999999999 270.63 485.0049999999999 269.009 480.1409999999999 268.198zM458.2519999999999 267.387C465.8189999999999 246.85 470.6829999999999 224.691 472.5739999999999 202.802C476.0869999999999 202.802 480.1409999999999 203.072 484.1939999999999 203.613C490.1389999999999 227.9340000000001 483.9239999999999 255.2270000000001 470.1419999999999 267.117C466.3589999999999 267.117 462.0349999999999 267.117 458.2519999999999 267.3870000000001zM77.768 280.628C76.687 283.601 75.336 289.005 75.336 295.221C75.336 301.166 68.31 303.328 61.284 296.031C49.934 284.411 46.421 255.497 47.502 244.958C51.555 258.47 60.473 273.873 77.768 280.628zM83.443 205.234C79.119 226.582 83.173 252.525 96.144 268.197C91.279 269.008 85.335 270.629 82.092 273.872C62.635 267.657 53.717 246.309 52.366 224.96C53.717 222.258 55.338 219.556 57.23 217.394C62.905 211.179 72.633 207.396 83.443 205.234zM124.788 266.307C119.654 265.226 114.79 263.334 109.926 261.442L97.766 256.308V256.578C90.47 242.526 87.767 222.259 92.361 203.613C96.955 203.072 101.008 202.802 105.061 202.802C107.493 224.961 114.249 246.58 124.788 266.307zM212.883 289.546C212.883 247.391 247.202 213.341 289.088 213.341S365.293 247.391 365.293 289.546C365.293 331.432 330.974 365.481 289.088 365.481S212.883 331.432 212.883 289.546zM365.293 192.263C375.262 141.655 368.592 127.571 381.777 134.164C397.721 142.271 404.476 173.347 404.747 191.183C391.776 191.993 378.534 191.993 365.293 192.263zM293.682 192.804V193.074C293.4120000000001 187.94 293.952 154.971 298.0060000000001 151.999C309.0850000000001 146.594 337.4590000000001 147.405 349.079 150.918C354.484 152.5389999999999 351.511 187.94 350.7 192.804C331.784 193.074 312.598 193.074 293.682 192.804zM279.629 192.804V193.074C260.173 192.804 240.987 192.804 221.8 192.263C219.908 183.076 217.206 143.352 223.692 140.649C236.663 134.974 265.308 135.515 278.278 139.028C282.8730000000001 141.46 280.711 184.427 279.629 192.804zM193.967 135.244C199.372 132.812 202.614 132.812 203.695 139.568C205.587 148.215 206.127 176.32 208.56 191.723C196.4 191.453 183.969 190.912 171.808 190.102C166.403 170.375 172.078 144.973 193.967 135.244zM128.301 146.324C172.079 99.304 220.99 60.661 284.2240000000001 39.8539999999999C351.7820000000001 59.0399999999999 399.8830000000001 99.8449999999999 447.4430000000001 146.8649999999999C436.348 151.1799999999999 439.7280000000001 157.2279999999999 440.1470000000001 158.4849999999999C431.2290000000001 159.2949999999999 422.3120000000001 160.3769999999999 413.6640000000001 161.1869999999999C404.206 128.2189999999999 377.7240000000001 108.2219999999999 366.9140000000001 129.5709999999999C364.2120000000001 134.7049999999999 363.4010000000001 141.1909999999999 362.3200000000001 146.3249999999999C358.5370000000001 137.9479999999999 349.0780000000001 138.218 337.7290000000001 137.4069999999999C324.4880000000001 136.3259999999999 306.112 136.0559999999999 293.6810000000001 140.3789999999999C290.7090000000001 127.4079999999999 282.6020000000001 127.4079999999999 266.9290000000001 126.0569999999999C252.8770000000001 124.7049999999999 218.287 122.0029999999999 212.072 136.8659999999999C210.9910000000001 108.2219999999999 176.942 126.868 166.9430000000001 143.892C163.7000000000001 149.567 161.5380000000001 155.242 159.917 161.4569999999999C152.0800000000001 160.6469999999999 144.244 159.836 136.406 158.755C138.8490000000001 155.0919999999999 137.9550000000001 149.7029999999999 128.3010000000001 146.324zM115.6 -5.545C109.926 17.694 96.954 44.177 82.092 48.501C59.663 55.257 13.183 24.991 15.885 -6.085C28.586 -25.542 55.879 -41.755 75.066 -42.566C92.901 -43.376 111.006 -31.486 114.79 -13.652C115.329 -11.22 115.6 -8.518 115.6 -5.5450000000001zM122.896 0.399C156.405 19.856 192.075 36.07 228.827 47.419C190.184 67.956 160.729 95.25 131.544 124.435C129.382 123.083 126.41 122.003 123.708 120.922C122.071 116.012 132.426 115.5920000000001 129.113 108.491C126.951 104.4370000000001 120.465 100.924 113.98 99.3030000000001C111.819 96.6010000000001 108.846 94.4390000000001 106.144 92.818H105.874C105.604 79.307 105.604 65.794 106.144 52.283C115.083 36.319 121.57 18.969 122.896 0.399zM443.6600000000001 -12.301C406.908 9.047 369.6160000000001 29.044 328.0010000000001 40.664C314.2190000000001 34.449 300.168 29.315 285.846 25.261C283.6840000000001 24.45 283.6840000000001 24.45 281.522 25.261C269.632 29.044 258.283 33.3679999999999 246.663 38.502C206.398 26.8819999999999 169.377 9.317 134.247 -12.301H133.977V-12.571C134.247 -12.571 134.247 -12.571 134.247 -12.301C237.474 -16.355 340.702 -15.814 443.66 -12.301zM470.683 51.744L470.4130000000001 51.474C470.9540000000001 65.256 471.224 79.037 471.224 92.8190000000001C468.251 94.4400000000001 465.549 96.8730000000001 463.1170000000001 99.5750000000001C456.6320000000001 100.9260000000001 450.1460000000001 104.7090000000001 447.9840000000001 108.4930000000001C446.0920000000001 112.5460000000001 449.3350000000001 116.059 453.9290000000001 118.7620000000001C453.6590000000001 119.3030000000001 453.3880000000001 120.3830000000001 453.3880000000001 121.1940000000001C450.4160000000001 122.0050000000001 447.9830000000001 123.0860000000001 445.8210000000001 124.4370000000001C414.2050000000001 94.9820000000001 380.4250000000001 67.6880000000001 342.3230000000001 47.6910000000001C381.2370000000001 36.0710000000001 418.2580000000001 19.5870000000001 454.1980000000001 0.1300000000001C455.2480000000001 14.8220000000001 461.4290000000001 35.8790000000001 470.6830000000001 51.7440000000001zM493.9230000000001 48.5C479.33 44.177 466.0890000000001 17.694 460.414 -5.546C460.414 -29.372 481.6920000000001 -43.443 500.948 -42.568C520.134 -41.757 547.428 -25.544 560.129 -6.087C563.102 24.99 516.6220000000001 55.257 493.923 48.5zM290.709 313.867C290.754 313.867 290.798 313.8640000000001 290.843 313.8640000000001C290.889 313.8640000000001 290.933 313.867 290.9790000000001 313.867H290.7090000000001zM290.709 217.124C319.354 217.124 342.593 238.742 342.593 265.495C342.593 301.587 302.086 323.574 270.442 309.813C279.9000000000001 306.841 286.926 298.193 286.926 288.195C286.926 264.938 253.635 256.24 240.446 276.8450000000001C233.149 242.778 259.814 217.124 290.709 217.124zM68.039 -26.083C68.579 -32.569 80.199 -38.784 89.657 -35.5410000000001C96.413 -32.8380000000001 104.25 -25.0020000000001 106.952 -19.3270000000001C109.925 -12.301 105.871 0.67 97.224 -0.9520000000001C88.307 -2.573 67.499 -17.7060000000001 68.039 -26.0830000000001zM478.789 -0.952C470.412 0.669 466.358 -12.301 469.331 -19.327C471.763 -25.002 479.6 -32.838 486.626 -35.541C495.813 -38.784 507.704 -32.569 507.974 -26.083C508.785 -17.706 487.707 -2.573 478.789 -0.952z" />
+    <glyph glyph-name="osi"
+      unicode="&#xF41A;"
+      horiz-adv-x="495.8" d=" M0 188.8C2.3 324.6 97.4 421.2 213.8 436.9C352.6 455.5 469.4 361.1 491.8 235.8C513.1 117 447.8 5.8 340.2000000000001 -38.2C330.9000000000001 -42 325.8000000000001 -39.9 322.2000000000001 -30.5C304.4000000000001 15.8 286.6 62.2 268.8000000000001 108.5C265.7000000000001 116.6 267.8000000000001 121.7 275.8000000000001 125.3C300.0000000000001 136.3 315.1000000000001 154.7 319.1000000000001 181.1C325.5000000000001 223.5 294.6000000000001 259.8 254.6000000000001 263.3C215.6000000000001 266.7000000000001 182.8000000000001 239.6 177.1000000000001 203.6C171.9000000000001 170.6 188.2000000000001 139.9 219.0000000000001 125.9C228.6000000000001 121.5000000000001 230.5000000000001 117.3 226.8000000000001 107.5000000000001C208.9000000000001 60.9 191.0000000000001 14.3000000000001 173.1000000000001 -32.4C170.5000000000001 -39.3 164.8000000000001 -41.7 157.6000000000001 -38.9C105.0000000000001 -18.6 56.2000000000001 22.1 26.8000000000001 80.1C1.9 129.3 1.6 167.8 0 188.8zM20.9 190.7C21.3 184.1 21.5 176.4 22.2 168.6C28.5 96.6999999999999 71.8 25.1 153.2 -14.5C156.4 -16 157.6 -15.3 158.8 -12.2C173.7 26.9 188.7 66 203.8 105.1C205.1 108.4 204.4 109.9 201.4 111.8C169.8 131.7 154.1 160.3 155.8 197.8C156.8 219.4 165.1 238.3 179.6 254.1C209.6 286.8 256.6 293.9000000000001 295.1 271.7000000000001C327 253.3 344.6 217.9 340.3 181.3C336.7 150.7 321 127.4 294.6 111.5C291.9000000000001 109.9 291.1 108.6 292.3 105.5C307.5 66.3 322.5 27.1 337.5 -12.2C338.7 -15.3 339.9 -16 343.1 -14.5C378.6 2.1 408.3 25.8 431.2000000000001 57.5C466.0000000000001 105.7 480.3000000000001 159.4 473.5000000000001 218.5C459.8 336 354.1 433.3 218 416.5C111.9 403.5 22.7 314 20.9 190.7z" />
+    <glyph glyph-name="page4"
+      unicode="&#xF3D7;"
+      horiz-adv-x="496" d=" M248 -56C111 -56 0 55 0 192S111 440 248 440C268.9 440 289.3 437.4 308.7 432.5L42.3 56H248V-56zM248 87.6V301.2L98.6 87.6H248zM344 56V-36.7C389.7 -17.5 428.5 15 455.4 56H344zM401.4 194.2L380.2 185.8L401.4 177.5V194.2zM381.1 139.7C374.4 139.7 373.1 133.4 373.1 126.8V119.1H389.3V129.1C389.3 135 387 139.7000000000001 381.1 139.7000000000001zM496 192C496 154.7 487.8 119.3 473 87.6H344V420.7C433.3 383.2 496 294.9 496 192zM360.4 304.4H428.6V352H414.7V319.4H400.8V349H386.9000000000001V319.4H374.2000000000001V352H360.3000000000001V304.4zM428.5 119.1H402V130.1C402 145.5 396.4 155.3 381.1 155.3C365.7000000000001 155.3 360.4000000000001 144.7 360.4000000000001 129.4V104.1H428.6V119.1zM428.5 222.1L360.3 192.4V180L428.5 150.5V167.1L414.1 172.8V199.3L428.5 205.2V222.1zM423.7 290.6H388.1V264H402V276.2H413C421.6 260.4 414.3 240.9 394.4 240.9C371.9 240.9 366.1 266.2 378.9 278.6L367.3 289.2C351.1 271.7 355.1 225.3 394.4 225.3C428.4 225.3 439.1 261.2 423.7 290.6z" />
+    <glyph glyph-name="pagelines"
+      unicode="&#xF18C;"
+      horiz-adv-x="384" d=" M384 135.3C328.9 -1.4 196.9 81.3 196.9 81.3C156.4 -0.5 89.5 -53.1 12.3 -53.4C-3.8 -53.4 -4.3 -29 12.3 -29C76.7 -28.7 132.8 13.7 169.5 81.1C128.4 65.2000000000001 50.9 53.2 7.9 163.3C116.9 208.2 167 152.1 186.2 117.8C196.1 142.2 203.2 168.7 207.8 197.5C207.8 197.5 68.1 175.6 58.3 295.6C177.4 343.5 210.9 218.9 210.9 218.9C212.5 235.6 214.2 271.5 214.2 272.3C214.2 272.3 107.9 346 176.1 437.5C300.7000000000001 394.5 237.5000000000001 275.1 237.5000000000001 275.1C238.0000000000001 273.5 238.0000000000001 251.3 237.5000000000001 241.7C237.5000000000001 241.7 282.7000000000001 330.7 373.9000000000001 299.2C369.7000000000001 165.1999999999999 232.0000000000001 192.8 232.0000000000001 192.8C227.6 165.4 220.8000000000001 139.4 212 115.3C212 115.3 295 207.1 384 135.3z" />
+    <glyph glyph-name="palfed"
+      unicode="&#xF3D8;"
+      horiz-adv-x="576" d=" M384.9 254.1C384.9 301.5 329.7 298.3 289.5 283.9C288.2 244.5 287 203.2 286.5 164.1C287.2 161.3 289.1 157.9 301.6 157.9C338.4000000000001 157.9 385 200.7000000000001 384.9000000000001 254.1zM190.4 181.9C190.6 181.9 196.9 184.6 201.6 184.6C228.2 184.6 222.3 140.5 187.2 140.5C165.7 140.5 150.1 158.6 150.1 183.5C150.1 225.5 193 279.0999999999999 250.8 310C251.8 322.4 253.8 332 261.3 338.2C272.5 347.2 287.9 341.7 290.8 327.1C363 349.3 426 326.1 426 255.1C426 177.1999999999999 346.7 102.5 285.9 116.9C285.8 77.5 286.8 42.5 288.6 16.9V16.7C288.8 13.3 289.2 4.2 283.3 -2.4C273.7 -13.0000000000001 249.9 -12.4 246.9 19.9C242.8 64.3 247.1 226 248.3 262.4C226.8 247.4 189.8 212.1 189.8 186.5C190 184 190.2 182.5 190.4 181.9zM8 266.9S7.9 229.5 46.4 229.5H76.4L98.8 12.3S98.8 -32 143.5 -32H432.4S477.1 -31.6 477.1 12.3L499.4999999999999 229.5H529.5S567.9 228.3 567.9 266.9C567.9 266.9 568 304.3 529.5 304.3H499.4C492.1 329.9 469.2 378.6 380 378.6H352V397.7S349.3 416.1 330.9 416.1H245.1S224 416.1 224 397.7V378.6H195.9S90.9 374.4 75.4 304.3H46.4S8 305.5 8 266.9z" />
+    <glyph glyph-name="patreon"
+      unicode="&#xF3D9;"
+      horiz-adv-x="512" d=" M512 253.2C512 151.9 429.6 69.4 328.2 69.4C226.5 69.4 143.8 151.8 143.8 253.2C143.8 354.8 226.5 437.5 328.2 437.5C429.6 437.5 512 354.8 512 253.2zM0 -53.5H90V437.5H0V-53.5z" />
+    <glyph glyph-name="paypal"
+      unicode="&#xF1ED;"
+      horiz-adv-x="384" d=" M111.4 152.1C107.9 132.9 94 43.4 89.9 18.1C89.6 16.3 88.9 15.6 86.9 15.6H12.3C4.7 15.6 -0.8 22.2 0.2 29.5L58.8 401.4C60.3 411 68.9 418.3 78.8 418.3C231.1 418.3 243.9 422 282.8 406.9C342.9000000000001 383.6 348.4 327.4 326.8 266.6C305.3 204 254.3 177.1 186.7 176.3C143.3 175.6 117.2 183.3 111.4 152.1zM357.1 296C355.3 297.3 354.6 297.8 354.1 294.7C352.1 283.3 349 272.2 345.3 261.1C305.4000000000001 147.3 194.8 157.2 140.8 157.2C134.7 157.2 130.7 153.9 129.9 147.8C107.3 7.4 102.8 -21.9 102.8 -21.9C101.8 -29 106.3 -34.8 113.4 -34.8H176.9C185.5 -34.8 192.6 -28.4999999999999 194.3 -19.9C195 -14.5 193.2 -26 208.7 71.4C213.3 93.4 223 91.1 238.0000000000001 91.1C309 91.1 364.4000000000001 119.9 380.9000000000001 203.4C387.4000000000001 238.2000000000001 385.5000000000001 274.8000000000001 357.1 296z" />
+    <glyph glyph-name="penny-arcade"
+      unicode="&#xF704;"
+      horiz-adv-x="640" d=" M421.9100000000001 283.73C417.42 264.28 420.5100000000001 277.67 406.81 218.44L446.54 229.05C424.2000000000001 278.6600000000001 429.25 267.4600000000001 421.9100000000001 283.73zM215.82 232.62C195.63 227.22 204.51 229.59 176.19 222.04L180.65 175.85C208.8200000000001 183.44 201.2700000000001 181.42 215.47 185.19C257.7700000000001 194.98 248.32 241.61 215.82 232.62zM541.98 258.81L496.51 358.01C490.82 370.38 477.05 376.85 463.89 373.3400000000001C393.62 354.5900000000001 425.17 363.02 328.3 337.11A27.618 27.618 0 0 1 309.41 319.7000000000001C144.26 334.73 0 294.25 0 221.33C0 187.8300000000001 30.67 154.22 80.9 125.96L82.64 108.08A27.891 27.891 0 0 1 64.87 79.41L69.17 34.93C70.56 20.62 82.6 9.72 96.97 9.73C102.15 9.74 93.96 7.95 219.5 41.49C232.07 44.86 240.62 56.51 240.08 69.51C456.67 24.01 642.0699999999999 75.49 639.97 154.34C639.98 182.49 617.78 220.9 541.98 258.81zM255.14 149.7L233.23 143.82L184.79 130.91L187.25 107.36L207.78 112.87L212.29 68.36L96.98 37.5799999999999L92.68 82.0999999999999L112.7 87.4499999999999L101.59 202.0899999999999L81.47 196.6999999999999L77.12 241.2C255.27 288.7399999999999 247.3 287.62 263.34 287.8499999999999C320 288.9799999999999 327.49 216.0099999999999 305.89 183.42A86.7 86.7 0 0 0 255.14 149.6999999999999zM454.32 133.08L450.43 172.57L465.33 176.55L458.72 191.23L400.96 175.81L396.86 158.27L416.06 163.39L420.11 123.85L307.26 93.78L302.8 138.21L323.79 143.8L356.87 270.27L339.7200000000001 265.7099999999999L335.5200000000001 310.19C428.8800000000001 335.18 400.5300000000001 327.5999999999999 471.11 346.43L537.78 200.96L558.5699999999999 206.52L562.8699999999999 162.04L454.3199999999999 133.08z" />
+    <glyph glyph-name="periscope"
+      unicode="&#xF3DA;"
+      horiz-adv-x="448" d=" M370 384.4C331.4 425.4 280.5 448 226.6 448C111.9 448 18.5 351.8 18.5 233.6C18.5 158.5 76.3 73.8 101.2 40.9C137.8 -7.5 192.6 -64 226.6 -64C268.2 -64 339.5 30.2 347.5 41C372.1 74.1 429.5 159.3 429.5 233.6C429.5 290.1 408.4 343.7 370 384.4zM226.6 -45.9C184.1 -45.9 36.6 121.4 36.6 233.5C36.6 340.9 120.5 429.8 226.6 429.8C327.4 429.8 411.3 340.8 411.3 233.5C411.4 121.4 263.9 -45.9 226.6 -45.9zM338 241.2C338 182.1 286.9 131.5 227.2 131.5C126.6 131.5 76.5 239.7 134.3 313.3V312.9C134.3 288.4 154.4 268.5 179.1 268.5C203.8 268.5 223.9 288.4 223.9 312.9C223.9 331.1 212.8 346.7 197 353.6C273.6 372.8 338 314.3 338 241.2z" />
+    <glyph glyph-name="phabricator"
+      unicode="&#xF3DB;"
+      horiz-adv-x="496" d=" M323 185.9L322.9 198.9S344.6 218.7 344 220.1L334.5 240.1C333.9 241.5 305 240.6 305 240.6L295.6 249.9S295.8 278.4 294.4000000000001 279L274.3 288.2C272.9000000000001 288.8 253.6 267.2 253.6 267.2L240.5000000000001 267.4S220 288.8 218.6 288.2L198.6 279.9C197.2 279.4 198.8 251 198.8 251L189.7 241.9S160.5 242.8 160 241.5L151.9 221.6999999999999C151.3000000000001 220.2999999999999 172.9 200.6999999999999 172.9 200.6999999999999L173 187.8S151.3000000000001 168 151.9 166.6L161.4 146.6C162 145.2 190.9 146.1 190.9 146.1L200.3000000000001 136.8S200.1000000000001 104.9999999999999 201.5 104.4999999999999L221.6 96.1999999999999C223 95.5999999999999 242.3 119.6999999999999 242.3 119.6999999999999L255.4 119.5S275.9 95.6999999999999 277.2 96.1999999999999L297.2 103.6999999999999C298.6 104.3 297 135.8 297 135.8L306.1 144.9S335.3 144 335.8 145.4L343.9000000000001 165.2C344.6 166.3 323.0000000000001 185.9 323.0000000000001 185.9zM278.1 194.6C278.8 177.5 265.3 163 248.0000000000001 162.2C230.7 161.4 215.9 174.7 215.2000000000001 191.8C214.5000000000001 208.9 228.0000000000001 223.4 245.3000000000001 224.1C262.6 224.9 277.4000000000001 211.6 278.1 194.6zM479.3 232.5L382.3 329.5L382.2 329.4C307.1 402.7 186.8 402.2 112.4 327.8C61.5 276.8 84.6 299.9 16.7 232.5C-5.6 210.2 -5.6 173.8 16.7 151.5C86.6 82.1 63.1 105.5 114.1 54.5L114.2 54.6C189.3 -18.7 309.6 -18.3 384 56.2C435 107.1 411.9 84.1 479.3 151.5000000000001C501.6 173.8000000000001 501.6 210.2000000000001 479.3 232.5000000000001zM140.4 84.2C80.8 143.7 80.8 240.2 140.4 299.7C199.9 359.3 296.4 359.2 356 299.7C415.5 240.2 415.6 143.7 356 84.1C296.4 24.6 200 24.7 140.4 84.2000000000001z" />
+    <glyph glyph-name="phoenix-framework"
+      unicode="&#xF3DC;"
+      horiz-adv-x="640" d=" M212.9 103.7C216.7 103.8 235.7 105.1 238.5 105.9C236.1 108.5 194.9 106.9 170.5 155.5C166.2 164.1 163 173.1 164.1 183.1C167 208.6 197 213.1 216.1 201.6C252.1 180 279.4 110.3 329.8 104.1C366.8 99.6 414.4 121.1 438 149.5C437.4 149.6 437.2 149.7 437 149.6C436.6 149.5 436.2 149.4 435.9 149.3C402.6 137.2 341.6 139.6 301.2 164.1C263.6 186.9 248.1 222.8 249.4 238.7C251.2 260 272.3 261.9 285.3 258.3C299.7 254.4 309.7 240.7 324.2 230.9C339.8 220.5 357.0999999999999 217.2 375.5 220.6C390.3999999999999 223.3 409.8999999999999 232.9 412 235.1C410.8999999999999 235.2 410.2 235.2 409.5 235.3C403.3 235.9 397.1 236.1 391 237C279.8 253.5 262.1 400.6 138.5 410.1C94.2 413.5 39.1 402 2.2 375.1C1.4 374.5 0.7 373.9 0 373.3C0.1 373.1 0.1 373 0.2 372.8C1 372.8 1.8 372.9 2.6 373C8.9 374 15.1 373.8 21.3 372.7C45.1 368.4 69 349.6 77.2 296.2C82.5 261.9 76.5 245.4 85.2 210.1C104.2 133 176.2 102.5 212.9 103.7zM75.3 383.1C74.4 384.1 74.4 384.3 74 385.1C86.1 387.7 98.2 389.2 110.6 389.9C109.5 375.2 88.4 368.6 75.3 383.1zM272.2 32.6C229.4 31.4 180.2 59.3 148.7 94C144.1 99 131.9 114.2 130.1 117.4L130.5 117.8C137.1 113.6999999999999 156.2 99.1999999999999 185.3 90.8C209.5 83.8 233.4 84.4999999999999 256.9 94.1C279.6 103.4 297.9 94.6 300 91.2C281.5 87.4 279.9 86.8 276 83.3C270.9 78.9 271.4 71.6 283 66.1C309.2 53.7 346 68.9 380.2 40.7C382.6 38.7 388.3 32.9 390.3 30.0000000000001C390.2 29.8000000000001 390 29.7 389.9000000000001 29.5000000000001C385.1 31.0000000000001 373.5000000000001 37.0000000000001 349.7000000000001 38.8000000000001C325.0000000000001 40.8000000000001 303.4000000000001 33.5000000000001 272.2000000000001 32.6000000000001zM447 284.6C463.4 289.8 488.3 298 513.5 287.9000000000001C529.6 281.4000000000001 539.7 269.2000000000001 545.6 253.3000000000001C549.1 243.9000000000001 550.7 233.6000000000001 550.7 224.6000000000001C550.5 224.6000000000001 550.3000000000001 224.6000000000001 550.1 224.5000000000001C549.9 224.9000000000001 549.7 225.4000000000001 549.6 225.8000000000001C544.6 247.8000000000001 519.7 269.6000000000001 482 255.7000000000001C431.8 237.1000000000001 351.6 246.0000000000001 305.1 303.7000000000001C304.4000000000001 304.6000000000001 302.7000000000001 305.4000000000001 303.8 306.9000000000001C303.9000000000001 307.1 305.9000000000001 306.3000000000001 306.8 305.6C324.9000000000001 292.2000000000001 345.1 283.7000000000001 367.1 279.4000000000001C397.6 273.3000000000001 421.7000000000001 276.5000000000001 447 284.6zM549.7 167.1C517.3000000000001 166.9 515.9000000000001 117 446.1 102.7000000000001C427.9000000000001 99.0000000000001 407.4000000000001 98.1 401.2000000000001 98.5000000000001V98.9C404.0000000000001 100.4 415.9000000000001 101.5000000000001 430.9000000000001 115.5000000000001C438.8 122.8000000000001 446.2000000000001 130.6000000000001 453.7 138.4C473.2 158.6 495.1 180.6 535.6 177.4C558.7 175.6 564.9 169.2000000000001 571.7 164.7000000000001C572 164.5000000000001 572.1 164.2000000000001 572.4000000000001 163.8000000000001C571.9000000000001 163.8000000000001 571.7 163.7000000000001 571.5000000000001 163.8000000000001C564.5000000000001 166.5000000000001 557.2000000000002 167.1000000000001 549.7000000000002 167.1000000000001zM537.4000000000001 191.2000000000001C537.3000000000001 191.0000000000001 537.3000000000001 190.8000000000001 537.2 190.6C508.3000000000001 195 489.2 198.5 468.7 186.6C451.7 176.7000000000001 437.3000000000001 166.1 406.7000000000001 162.2000000000001C379.6 158.8000000000001 361.6 159.8000000000001 340.6 170.2000000000001C340.3 170.4 340 170.6 339.6 170.8000000000001C339.6 171.0000000000001 339.7000000000001 171.1000000000001 339.7000000000001 171.3000000000001C364.6 167.5000000000001 376.1 166.2000000000001 395.2000000000001 177.1000000000001C417.5000000000001 190.0000000000001 435.3000000000001 203.7000000000001 466.5000000000001 208.1000000000001C496.1000000000001 212.2000000000001 517.8000000000001 205.6000000000001 537.4000000000001 191.2000000000001zM268.6 350.7C268 351.3 267.5 351.9 266.5 353C274.1 353 296.2 354.2 319.9 344.6C339.6 336.6 352.1 323.6 370.1 311.7C381.2 304.4 393.5 302.4 406.5 303.6C410.8 304 415 304.8 419.3 305.3C419.7 305.4 420.2 305.3 420.8 305C420.2 304.6 419.6 304.1 419 303.8C410.8999999999999 299.8 402.3 297.5 393.3999999999999 296.7C367.2999999999999 294.1 343.0999999999999 300.4 319.9999999999999 312.1C300.6999999999999 322 283.5999999999999 335 268.5999999999999 350.7zM640 112.3C636.5 109.2 617.3 100.7 597.3 107C585 110.9 577.8 121.9 565.6999999999999 131.1C555.6999999999999 138.7000000000001 544.8 139 537.5999999999999 139.5C538.1999999999999 140.3 538.4999999999999 140.7 538.8 140.9C553.5999999999999 150.1 569.3 153.1 586.0999999999999 147.4C598.5999999999999 143.2 605.3 133.9 616.4999999999999 123.2C627.2999999999998 112.8 637.4999999999999 113.3 639.5999999999999 112.7C639.6999999999999 112.8 639.8 112.7 639.9999999999999 112.3zM427.5 -24.7C429.7 -25.9 429.1 -26.2 429 -26.7C410.5 -25.3 395.1 -19.1 382.2 -4.5C360.4 20.2 340.5 23.4 333.6 25.2C334.1 25.4 334.4 25.6 334.7 25.6C347.8 25.4999999999999 360.8 24.9 373.6 21.7C398.9 15.3 408.6 -3.7 415.2 -13.6C418.4 -18.4 422.5 -21.9 427.5 -24.7z" />
+    <glyph glyph-name="phoenix-squadron"
+      unicode="&#xF511;"
+      horiz-adv-x="513.52" d=" M96.24 385.19C142.91 421.43 202.15 441.43 261.28 439.92C290.95 440.3 320.57 434.54 348.45 424.55C324.25 429.19 299.27 430.9 274.85 427C231.85 421.65 191.59 399.77 162.69 367.65C168.38 368.64 173.5 371.3300000000001 178.76 373.53C196.95 381.42 216.36 386.82 236.1600000000001 388.4C255.9600000000001 390.54 275.9100000000001 388.83 295.61 386.4700000000001C281.1500000000001 383.68 266.4100000000001 381.89 252.5 376.86C217.97 365.75 187.04 343.6 165.95 314.04C152.11 294.27 142.25 271.05 141.21 246.71C140.86 230.17 146.44 211.8 161.1 202.54C172.23 195.88 185.95 193.15 198.73 195.78C214.22 198.25 228.89 204.45 242.46 212.16C254.01 219 265.19 226.75 274.51 236.48C278.31 239.71 277.05 244.96 277.14 249.31C275.01 249.65 272.74 250.42 270.82 249.01A203.975 203.975 0 0 0 234.89 233.59C214.8199999999999 227.4 192.6099999999999 225.11 172.6099999999999 232.81C185.44 231.08 198.75 232.5 210.4599999999999 238.27C230.7499999999999 248.02 247.38 263.54 265.06 277.15C292.8999999999999 298.44 322.7 317.26 354.23 332.62C380.01 344.63 407.32 355.47 436.04 356.82C420.36 343.06 403.79 330.22 389.12 315.31C374.57 301.27 361.58 285.73 348.89 270C345.36 265.39 339.9099999999999 263.04 335.2699999999999 259.81C313.0299999999999 244.78 294.6699999999999 223.85 283.2299999999999 199.53C273.8699999999999 179.79 268.6799999999999 157.56 271.4199999999999 135.69C273.3699999999999 121.9599999999999 280.1599999999999 108.0199999999999 292.3799999999999 100.68C305.3199999999999 92.6899999999999 321.5199999999999 92.59 335.9899999999999 95.5699999999999C368.8899999999999 103.04 397.5999999999999 124.54 417.2699999999999 151.5699999999999C437.7699999999999 179.17 447.8799999999999 213.9499999999999 446.5199999999999 248.2099999999999C445.9999999999999 255.73 444.9399999999999 263.2099999999999 444.8499999999999 270.76C452.8699999999998 251.22 459.7199999999999 230.93 461.5499999999998 209.75C463.5599999999998 195.43 462.2999999999998 180.91 459.9299999999998 166.73C458.0099999999998 155.71 454.2399999999998 145.15 452.1199999999998 134.1999999999999C472.4799999999998 156.93 486.2899999999998 185.44 491.5799999999998 215.5099999999999C497.2999999999998 250.88 492.1599999999998 287.87 477.3299999999998 320.4599999999999C498.1699999999998 288.3399999999999 509.7599999999998 250.67 513.1399999999999 212.66C513.6399999999999 199.8899999999999 513.6399999999999 187.0799999999999 513.1399999999999 174.3199999999999C510.2299999999998 140.06 500.1699999999998 106.37 483.3799999999999 76.3199999999999C457.1799999999999 28.8399999999999 415.1799999999999 -9.57 365.8399999999999 -32.0000000000001C287.3199999999999 -68.34 190.6399999999999 -63.4100000000001 117.1199999999999 -17.28C78.2799999999999 6.5 46.0599999999999 41.04 25.4399999999999 81.68C10.72 110.57 2.04 142.5 0 174.87V206.3C3.94 276.27 40.99 342.62 96.24 385.19M318.89 304.62C324.4 305.42 329.71 307.19 334.91 309.12C339.9 310.89 344.18 315.07 345.26 320.37C336.35 315.37 327.31 310.42 318.89 304.62z" />
+    <glyph glyph-name="php"
+      unicode="&#xF457;"
+      horiz-adv-x="640" d=" M320 343.5C491.4 343.5 623.2 271.3 623.2 192S491.3 40.5 320 40.5C148.6 40.5 16.8 112.7 16.8 192S148.7 343.5 320 343.5M320 360.3C143.3 360.3 0 285 0 192S143.3 23.7 320 23.7S640 99 640 192S496.7 360.3 320 360.3zM218.2 205.5C210.3 165 182.4 169.2 148.1 169.2L161.8 239.8C199.8 239.8 225.6 243.9 218.2 205.5zM97.4 97.7H134.1L142.8 142.5C183.9 142.5 209.4 139.5 233 161.6C259.1 185.6 265.9 228.3 247.3 249.7C237.6 260.9 222 266.4 200.8 266.4H130.1L97.4 97.7zM283.1 311.3H319.6L310.9000000000001 266.5C342.4000000000001 266.5 371.6 268.8 385.7000000000001 255.8C400.5000000000001 242.2 393.4000000000001 224.8 377.4000000000001 142.7000000000001H340.4000000000001C355.8 222.1000000000001 358.7000000000001 228.7000000000001 353.1 234.7000000000001C347.7000000000001 240.5000000000001 335.4000000000001 239.3000000000001 305.7000000000001 239.3000000000001L286.9000000000001 142.7000000000001H250.4000000000001L283.1 311.3000000000001zM505 205.5C497 164.4 468.3 169.2 434.9 169.2L448.6 239.8C486.8 239.8 512.4 243.9 504.9999999999999 205.5zM384.2 97.7H421L429.7 142.5C472.9 142.5 496.8 140 519.9 161.6C546 185.6 552.8 228.3 534.1999999999999 249.7C524.4999999999999 260.9 508.8999999999999 266.4 487.6999999999999 266.4H417L384.2 97.7000000000001z" />
+    <glyph glyph-name="pied-piper-alt"
+      unicode="&#xF1A8;"
+      horiz-adv-x="576" d=" M242 261C248.3 272.8 255.2 278 267.9 282.8C295.2 293.1 308.1 313.3 326.8 333.9C338.7 325.5 338.8 309.3 358.4 310.9V289.1L364.7 288.8C402.1 303.2 439.4 319 471.3 343.4C519.5999999999999 380.2 524.1999999999999 393.4 552.5999999999999 443.4L554.5999999999999 446C553.9999999999999 431.9 548.3 418.7 542.1999999999999 406.1C511.6999999999999 342.3 463.4999999999999 305.8 395.3999999999999 289.4C383 286.5 369 286.2 357.7999999999999 280.5C359.1999999999999 270.7 370.9999999999999 262.4 370.9999999999999 257.5C370.9999999999999 254.1 365.4999999999999 250.3 363.4999999999999 248.9C352.2999999999999 261.8 347.3999999999999 268.2 340.7999999999999 271C333.1999999999999 274.5 276.8999999999999 277.4 241.9999999999999 261zM379.9 4.1C360.9 4.1 315.8 -5.4 300 -15.7L306.9 -60.8C342.6 -66.9 377 -64.4 412.9 -51C408.1 -41 389.4 4.1 379.9 4.1zM244 202C240.8 204 237.7 204.9 233.9 204.9C227.3 204.9 221.3 201.7 214.6 201.2L216.3 196.3L244 202zM231.4 170.2L255.5 109L276.5 122.8L245.2 173.7L231.4 170.2zM555.5 448L554.9 446.9L554.6 446L555.2 446.6L555.5 448zM496.3 65.9C462.4 122.8 421 184.3 346.3 181.4L346 187.4C344.9 200.9 378.8 184.2 381.1 218.4L366.7000000000001 211.2C346.9000000000001 256.9 358.1 265.5 301.2000000000001 265.5C286.5000000000001 265.5 274.5000000000001 263.8 259.8000000000001 260.9C262.7000000000001 242.3 262.0000000000001 224.2 248.9000000000001 210.6L268.4000000000001 205.1C266.7000000000001 201.9 265.5000000000001 198.8 265.5000000000001 195.3C265.5000000000001 174.3 308.3000000000002 192.4 308.3000000000002 161.7C308.3000000000002 143.3 271.5000000000001 101.6 253.4000000000001 101.6C245.4000000000001 101.6 199.7000000000001 151.6 200.0000000000001 161.7L200.3000000000001 166.3L252.6000000000002 177.8C265.6000000000002 180.4 264.9000000000002 200.5 249.7000000000002 200.5C246.0000000000002 200.5 206.6000000000001 191.3 200.3000000000001 189.9C198.3000000000001 195.1 192.8000000000001 204 186.5000000000001 204C183.3000000000001 204 180.2000000000001 200.8 177.0000000000001 200C167.8000000000001 197.4 146.0000000000001 197.1 155.5000000000001 179.9L15.9 149.5C10.4 148.4 7 143.2 7 137.7C7 131.7 12.5 126.8 18.5 126.8C26.5 126.8 149.8 155.2 165.9 159C168.5 155.8 170.5 152.7 173.7 150.4C193.8 136 233.5 64.5 250.1 64.5C274.2000000000001 64.5 308.1 86.9 321.4000000000001 106.4C324.6 110.7 328.3 113.9 333.8 113.3C334.4000000000001 99.4999999999999 302.2 79.1 300.8 69.6C299.4000000000001 59.4 299.8 34.4 300.5 28.4999999999999C327.2 20.3999999999999 352.5 32.1 378.4 31.3999999999999C382.7 52.3999999999999 389 73.2999999999999 388.2 94.8999999999999L387.9 104.3999999999999C386.5 138.5999999999999 377 142.8999999999999 353.1 163C352 164.1 350.5 165.6 349.4 167C351.6 168.3999999999999 350.5 168 354 168.6999999999999C442.5 168.6999999999999 410.3 -14.9000000000001 465.5 -61.2C498.6 -46.2 538 -33.3000000000001 569 -14.0000000000001C540 11.6 516.4 31.6999999999999 496.3 65.9zM300.1 19.9V-7.4L311.9000000000001 -4.0000000000001L309.0000000000001 19.8H300.1000000000001zM376.2000000000001 17C376.2000000000001 18.4 375.6 20.2 375.3000000000001 21.6C348.5000000000001 21.6 338.4000000000001 17.8 315.8000000000001 15.3L317.8000000000001 2.9C326.8000000000001 4.4 376.2000000000001 9.5000000000001 376.2000000000001 17.0000000000001z" />
+    <glyph glyph-name="pied-piper-hat"
+      unicode="&#xF4E5;"
+      horiz-adv-x="640" d=" M640 423.1C559.2 369.5 550.6 330.6 543.6 318.7C536.9 306.5 531.9 258.4 520.3000000000001 235.1C508.6000000000001 211.5 466.1000000000001 192.9 454.2 185.1C442.5000000000001 177.3 425.9000000000001 147 412.3000000000001 120.9C304.2000000000001 125.3 244.9000000000001 82.1 153.1000000000001 27.3000000000001C182.5000000000001 37.0000000000001 196.4000000000001 44.0000000000001 196.4000000000001 44.0000000000001C290.6000000000001 80.0000000000001 335.7000000000001 112.3000000000001 477.5000000000001 93.2000000000001C478.6000000000001 93.2000000000001 479.4000000000001 92.6 480.3000000000001 92.4C484.2000000000001 90.2000000000001 485.6000000000001 85.5000000000001 483.4000000000001 81.6L429.5000000000002 -14.2C427.0000000000002 -18.9 421.7000000000002 -21.4 416.4000000000002 -20.3C289.6000000000002 3.5 189.5000000000002 -37.6 97.5000000000002 -38.9C24.1 -40 0 -5.4 0 -3.8C0 -2.7 0.6 -2.1 1.7 -2.1C1.7 -2.1 40 -2.1 104.8 13.2C178.4 153.5 244 202.6 315.4 202.6C315.4 202.6 387.1 202.6 406 140.7C428.8 180.4 434.3 189.9 434.3 189.9C439.6 199.3 469.3 267.1 520.7 331.3C572.2 395.3 611.1 411.2 640 423.1z" />
+    <glyph glyph-name="pied-piper-pp"
+      unicode="&#xF1A7;"
+      horiz-adv-x="448" d=" M205.3 273.4C205.3 252.3 191.1 235.3 173.6 235.3C166.5 235.3 160.8 236.5 156.4 239V307C160.8000000000001 309.7 166.5 311.2 173.6 311.2C191.1 311.2 205.3 294.3 205.3 273.4zM257.9000000000001 206.4C250.8000000000001 206.4 245.1 204.9 240.7000000000001 202.2V134.2000000000001C245.1000000000001 131.7000000000001 250.8000000000001 130.5000000000001 257.9000000000001 130.5000000000001C275.3 130.5000000000001 289.6 147.4 289.6 168.3000000000001C289.6 189.4000000000001 275.3 206.4000000000001 257.9000000000001 206.4000000000001zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM185 192.9C226 192.9 259.2 228.5 259.2 272.5C259.2 316.5 226 352.1 185 352.1C173 352.1 160.9 348.9 150.4 343.3H104.7V137L156.5 147.1V197.7C165.1 194.6 174.6 192.9 185 192.9zM343.4 167.6C343.4 211.6 310.2 247.2 269.5 247.2C266.3 247.2 263.1 247.0000000000001 259.9 246.5000000000001C256.2 234.0000000000001 249.8 222.7 240.7 213.1C226.9 198.1 208.5 189.3 188.9 188.3V32L240.7 42.1V92.7000000000001C249.3 89.5000000000001 258.9 88.0000000000001 269.4 88.0000000000001C310.2 88.0000000000001 343.4 123.6000000000001 343.4 167.6z" />
+    <glyph glyph-name="pied-piper"
+      unicode="&#xF2AE;"
+      horiz-adv-x="448" d=" M32 29L0 -31.2L0.8 296.8C0.8 362.7 54 416 120 416H447.2C354.2 387.1 257.3 321.8 193.3 247.4C122.7 166 82.6 110 32 29M448 416S305.2 349.2 261.6 248.9C238.4000000000001 195.3 232.7 130.8 190.6 90.3C161.7 62.5 120.8 52.1 85.3 34C62.1 22 18.9 -6.5 0.4 -32H328.8C394.8 -32 448.1 21.3 448.1 87.2C448 87.2 448 416 448 416z" />
+    <glyph glyph-name="pinterest-p"
+      unicode="&#xF231;"
+      horiz-adv-x="384" d=" M204 441.5C101.4 441.5 0 373.1 0 262.4C0 192 39.6 152 63.6 152C73.5 152 79.2 179.6 79.2 187.4C79.2 196.7 55.5 216.5 55.5 255.2C55.5 335.6 116.7 392.6 195.9 392.6C264 392.6 314.4 353.9 314.4 282.8C314.4 229.7 293.1 130.1 224.1 130.1C199.2 130.1 177.9 148.1 177.9 173.9C177.9 211.7000000000001 204.3 248.3000000000001 204.3 287.3000000000001C204.3 353.5000000000001 110.4 341.5000000000001 110.4 261.5C110.4 244.7 112.5 226.1 120 210.8C106.2 151.4 78 62.9 78 1.7C78 -17.1999999999999 80.7 -35.8 82.5 -54.6999999999999C85.9 -58.4999999999999 84.2 -58.0999999999999 89.4 -56.1999999999999C139.8 12.8000000000001 138 26.3000000000001 160.8 116.6000000000001C173.1 93.2000000000001 204.9 80.6000000000001 230.1 80.6000000000001C336.3 80.6000000000001 384 184.1000000000001 384 277.4000000000001C384 376.7 298.2 441.5 204 441.5z" />
+    <glyph glyph-name="pinterest-square"
+      unicode="&#xF0D3;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.5 426.5 -32 400 -32H154.4C164.2 -15.6 176.8 8 181.8 27.3C184.8 38.8 197.1 85.7 197.1 85.7C205.1 70.4 228.5000000000001 57.5 253.4000000000001 57.5C327.5 57.5 380.8000000000001 125.6 380.8000000000001 210.2C380.8000000000001 291.3 314.6000000000001 352 229.4000000000001 352C123.4000000000001 352 67.2000000000001 280.9 67.2000000000001 203.4C67.2000000000001 167.4 86.4000000000001 122.6 117.0000000000001 108.3C121.7000000000001 106.1 124.1000000000001 107.1 125.2000000000001 111.6C126.0000000000001 115 130.2000000000001 131.7000000000001 132.0000000000001 139.4C132.6000000000001 141.9 132.3000000000001 144.0000000000001 130.3000000000001 146.4C120.2000000000001 158.7000000000001 112.0000000000001 181.3 112.0000000000001 202.4C112.0000000000001 256.6 153.0000000000001 309 222.9000000000001 309C283.2000000000001 309 325.5000000000001 267.9000000000001 325.5000000000001 209.1C325.5000000000001 142.7000000000001 292.0000000000001 96.7000000000001 248.3000000000002 96.7000000000001C224.2000000000001 96.7000000000001 206.2000000000001 116.6 211.9000000000001 141.1C218.8000000000001 170.3 232.2000000000002 201.8 232.2000000000002 222.9C232.2000000000002 275.9000000000001 156.7000000000001 268.6 156.7000000000001 197.9C156.7000000000001 176.2000000000001 164.0000000000002 161.4 164.0000000000002 161.4C132.6000000000001 28.6 127.9000000000002 26.9 134.4000000000002 -31.1999999999999L136.6000000000001 -31.9999999999999H48C21.5 -31.9999999999999 0 -10.4999999999999 0 16.0000000000001V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368z" />
+    <glyph glyph-name="pinterest"
+      unicode="&#xF0D2;"
+      horiz-adv-x="496" d=" M496 192C496 55 385 -56 248 -56C222.4 -56 197.8 -52.1 174.6 -44.9C184.7 -28.4 199.8 -1.4 205.4 20.1C208.4 31.7 220.8 79.1 220.8 79.1C228.9 63.7000000000001 252.5 50.6 277.6 50.6C352.4000000000001 50.6 406.3 119.4 406.3 204.9C406.3 286.8000000000001 339.4 348.1 253.4 348.1C146.4 348.1 89.5 276.3 89.5 198C89.5 161.6 108.9 116.3 139.8 101.9C144.5 99.7000000000001 147 100.7000000000001 148.1 105.2000000000001C148.9 108.6 153.1 125.5000000000001 155 133.3000000000001C155.6 135.8000000000001 155.3000000000001 138.0000000000001 153.3000000000001 140.4000000000001C143.2000000000001 152.9000000000001 135 175.7000000000001 135 197.0000000000001C135 251.7000000000001 176.4 304.6000000000001 247.0000000000001 304.6000000000001C307.9000000000001 304.6000000000001 350.6 263.1000000000001 350.6 203.7000000000001C350.6 136.6000000000001 316.7000000000001 90.1000000000001 272.6 90.1000000000001C248.3 90.1000000000001 230.0000000000001 110.2000000000001 235.9000000000001 134.9000000000001C242.9000000000001 164.4000000000001 256.4000000000001 196.2000000000001 256.4000000000001 217.5000000000001C256.4000000000001 236.5000000000001 246.2000000000001 252.4000000000001 225 252.4000000000001C200.1 252.4000000000001 180.1 226.7000000000001 180.1 192.2000000000001C180.1 170.2000000000001 187.5 155.4000000000001 187.5 155.4000000000001S163 51.6000000000001 158.5 32.2000000000001C153.5 10.8000000000001 155.5 -19.3999999999999 157.6 -38.9999999999999C65.4 -2.9 0 86.9 0 192C0 329 111 440 248 440S496 329 496 192z" />
+    <glyph glyph-name="playstation"
+      unicode="&#xF3DF;"
+      horiz-adv-x="576" d=" M570.9 75.7C559.6 61.5 532.1 51.4 532.1 51.4L327 -22.2V32.1L477.9 85.9C495 92.0000000000001 497.7 100.7000000000001 483.7 105.3C469.8 109.9 444.6 108.6 427.5 102.4L327 66.9V123.3C350.2 131.1 374.1 136.9 402.7 140.1C443.6 144.6 493.6 139.5 532.9 124.6C577.1 110.6 582.1 89.9 570.9 75.7zM346.5 168.2V307.2C346.5 323.5 343.5 338.5 328.2 342.8C316.5 346.6 309.2 335.7 309.2 319.4V-28.5L215.4 1.3V416C255.3 408.6 313.4 391.1 344.6 380.6C424.1 353.3 451 319.3 451 242.8C451 168.3 405 140 346.5 168.2000000000001zM43.2 37.8C-2.2 50.6 -9.8 77.3 10.9 92.6C30 106.8 62.6 117.5 62.6 117.5L197.1 165.3V110.8L100.3 76.2C83.2 70.1 80.6 61.4 94.5 56.8C108.4 52.2 133.6 53.5 150.7000000000001 59.7L197.1000000000001 76.6V27.8C145.5000000000001 18.4999999999999 95.7000000000001 20.4999999999999 43.2 37.8z" />
+    <glyph glyph-name="product-hunt"
+      unicode="&#xF288;"
+      horiz-adv-x="512" d=" M326.3 229.2C326.3 208.7 309.6 192 289.1 192H218.8V266.4H289.1C309.6 266.4 326.3 249.7 326.3 229.2zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM375.9 229.2C375.9 277.1 337 316 289.1 316H169.2V68H218.8V142.4H289.1C337 142.4 375.9 181.3 375.9 229.2z" />
+    <glyph glyph-name="pushed"
+      unicode="&#xF3E1;"
+      horiz-adv-x="432" d=" M407 336.1L308.5 345.1L322.5 378.5C332.9 402 311.7 418.9 293.8 415.5L22.5 371.1C7.4 368.4 -3.5 352.8 1.1 334.5L106.2 -13.8C112.7 -35.1 142.9 -38 153.9 -20.8L189.2 60L424.4 291.3C440.8 308.1 428.7 334.2000000000001 407 336.1zM297.6 394.4C302.7000000000001 395.1 305.1 391.9 302.8 387L286 347.1L108.6 363.4L297.6 394.4zM22.7 340.1C19.6 345.2 23.7 350.1 28.8 349.2L277.5 326.5L180.6 95.8L22.7 340.1zM136 -8.4C133.4 -12.4 128.1 -11.5 126.6 -7.2L43.5 268.3L171.2 70.7000000000001C164.2 55.7 136 -8.4 136 -8.4zM408.8 306.1L210.1 110.7L299.8 324.4L406.2000000000001 314.7C410.2000000000001 313.6 411.9000000000001 309.4 408.8000000000001 306.1z" />
+    <glyph glyph-name="python"
+      unicode="&#xF3E2;"
+      horiz-adv-x="448" d=" M167.8 411.6C122.6 403.6 114.4 386.9 114.4 356V315.3H221.3V301.7000000000001H74.3C43.2 301.7000000000001 16 283 7.5 247.5C-2.3 206.8 -2.7 181.4 7.5 138.9C15.1 107.3 33.2 84.7 64.3 84.7H101V133.5C101 168.8 131.5 199.9 167.8 199.9H274.6C304.3 199.9 328 224.4 328 254.2V356.1C328 385.1 303.6 406.8 274.6 411.7C238.8 417.6 199.9 417.3 167.8 411.6zM161.1 383.2C172.1 383.2 181.2 374 181.2 362.8S172.2 342.5 161.1 342.5C150 342.5 141 351.6 141 362.8C141.1 374.1 150 383.2000000000001 161.1 383.2000000000001zM346.3 301.8V254.3C346.3 217.5 315.1 186.5 279.5 186.5H172.7C143.5 186.5 119.3 161.5 119.3 132.2V30.4C119.3 1.4 144.5 -15.6 172.7 -23.9C206.5 -33.8 239 -35.6 279.5 -23.9C306.4 -16.1 332.9 -0.4 332.9 30.4V71.1H226.2V84.7H386.4C417.5 84.7 429 106.4 439.8 138.9C450.9999999999999 172.4 450.4999999999999 204.6 439.8 247.5C432.1 278.4 417.5 301.7 386.4 301.7H346.3zM286.2 44C297.3 44 306.3 34.9 306.3 23.7C306.3 12.4 297.3 3.3 286.2 3.3C275.2 3.3 266.1 12.5 266.1 23.7C266.2 35 275.2 44 286.2 44z" />
+    <glyph glyph-name="qq"
+      unicode="&#xF1D6;"
+      horiz-adv-x="448" d=" M433.754 27.555C422.228 26.162 388.894 80.296 388.894 80.296C388.894 48.951 372.758 8.049 337.843 -21.49C354.685 -26.682 392.6860000000001 -40.657 383.646 -55.911C376.3300000000001 -68.254 258.136 -63.792 224.014 -59.948C189.892 -63.792 71.698 -68.254 64.382 -55.911C55.337 -40.661 93.3 -26.697 110.165 -21.496C75.245 8.043 59.106 48.949 59.106 80.2960000000001C59.106 80.2960000000001 25.772 26.162 14.247 27.5550000000001C8.877 28.205 1.823 57.1990000000001 23.594 127.2590000000001C33.855 160.2830000000001 45.589 187.7370000000001 63.738 233.0380000000001C60.683 349.937 108.982 447.9940000000001 224 448C337.737 447.9940000000001 387.156 351.867 384.264 233.037C402.382 187.814 414.176 160.187 424.408 127.259C446.1760000000001 57.199 439.124 28.206 433.754 27.555z" />
+    <glyph glyph-name="quinscape"
+      unicode="&#xF459;"
+      horiz-adv-x="489.1" d=" M301.9 -26.6H300.6C213.3 -26.6 142.5 44.2 142.5 131.5S213.3 289.6 300.6 289.6C395.5 289.6 468.8 206.5 457.6 113C461.6 107.9 465.8 103.4 468.8 97.7C482.1999999999999 128 489.1 160.1 489.1 195.4C489.1 330.5 379.6 440 244.5 440C109.5 440 0 330.5 0 195.4S109.5 -49.2 244.5 -49.2C269.3 -49.2 292.3 -46 314.9 -39.1C309.7 -35.6 305.9 -30.9 301.5 -26.4999999999999L301.9 -26.6zM280.7 43.2C280.7 98 325.1 142.4 379.9 142.4C434.7 142.4 479.1 98 479.1 43.2C479.1 -11.6 434.7 -56 379.9 -56C325.1 -56 280.7 -11.6 280.7 43.2" />
+    <glyph glyph-name="quora"
+      unicode="&#xF2C4;"
+      horiz-adv-x="448" d=" M440.5 61.3H411.2C409.7 47.8 400.7 30.5 378.2 30.5C357.7 30.5 342.9 44.7 328.7 66.3C372.9 100.5 403.4 153.8 403.4 219.3C403.5 336.8 306.8 416 205 416C105.3 416 7.3 336.3 7.3 219.3C7.3 85.2000000000001 138.6 -2.3 256.3 30.3C276 -3.3 302 -32 351.5 -32C433.3 -32 442.3 43.3 440.5 61.3zM297 118.8C277.5 148 253.3 171 205.5 171C175 171 151.2 161 136.5 148.2L148.7 123.9C154.9 126.9 161.7 127.9 168.5 127.9C204 127.9 222.2 97.1 237.7 66.6C227.7 63.6 217 62.4 205 62.4C130 62.4 97.5 115.4 97.5 219.1C97.5 323.5 130 377 205 377C281.2 377 313.7 323.5 313.7 219.3C313.8 177.5 308.3 143.7000000000001 297 118.8z" />
+    <glyph glyph-name="r-project"
+      unicode="&#xF4F7;"
+      horiz-adv-x="581" d=" M581 221.4C581 328.9 450.9 416 290.5 416S0 328.9 0 221.4C0 125.6 103.3 46 239.4 29.9V-32H338.5V29.5C362.8 32.2 386.1 36.9 407.9 43.4L448 -32H560L492.6 81.7C547.1 117.1 581 166.6 581 221.4zM114.2 206.9C114.2 280.4 213.1 339.9 335 339.9S546.9 299.2 546.9 206.9C546.9 156.8 520.4 121.9 476.6 100.5C474.2 102.1 471.9 103.4 470.2 104.2C460 109.4 442.4 114.7 442.4 114.7S529 121.1 529 207.4S438.4 295.3 438.4 295.3H239.4V87C165.3 108.5 114.2 154.1 114.2 206.9zM339.3 168.6V224.2C397.1 224.2 427.1 231.0000000000001 427.1 196.9C427.1 160.4 388.9 168.6 339.3 168.6zM338.4 96.1H365C375.8 96.1 383.9 84.4 389 76.9C372.9 75.0000000000001 356 74.1 338.4 74.0000000000001V96.1000000000001z" />
+    <glyph glyph-name="raspberry-pi"
+      unicode="&#xF7BB;"
+      horiz-adv-x="407" d=" M372 215.5L368.3 222C368.4000000000001 268.4 346.9000000000001 287.3 321.8 301.7C329.4000000000001 303.7 337.2 305.3 339.4000000000001 314.9C352.5000000000001 318.2 355.2000000000001 324.3 356.5000000000001 330.7C359.9000000000001 333 371.3000000000001 339.4 370.1000000000001 350.4C376.5000000000001 354.8 380.1000000000001 360.5 378.2000000000001 368.5C385.1000000000001 376 386.9000000000001 382.2 384.0000000000001 387.9C392.3000000000002 398.2 388.6000000000002 403.5 385.1000000000002 408.8C391.3000000000002 420 385.8000000000002 432 368.5000000000001 430C361.6000000000002 440.1 346.6000000000002 437.8 344.3000000000002 437.8C341.7000000000001 441 338.3000000000002 443.8 327.8000000000002 442.5C321.0000000000001 448.6 313.4000000000002 447.5 305.5000000000001 444.6C296.2000000000001 451.9 290.0000000000001 446 282.9000000000001 443.8C271.6 447.4 269 442.5 263.5 440.4C251.2 443 247.4 437.4 241.5 431.5L234.6 431.6C216 420.8 206.8 398.8 203.5 387.5C200.2 398.8 191 420.8 172.4 431.6L165.5 431.5C159.6 437.4 155.8 443 143.5 440.4C137.9 442.4 135.4 447.4 124.1 443.8C119.5 445.2 115.2 448.2 110.2 448.1C107.6 448 104.7 447.1 101.5 444.6C93.6 447.6 86 448.6 79.2 442.5C68.7 443.8 65.2 441.1 62.7 437.8C60.4 437.8 45.4 440.1 38.5 430C21.2 432 15.8 420 22 408.8C18.5 403.4 14.8 398.1 23.1 387.9C20.2 382.2 22 376 28.9 368.5C27.1 360.5 30.7 354.8 37 350.4C35.8 339.4 47.2 333 50.6 330.7C51.9 324.3 54.6 318.3 67.7 314.9C69.9 305.4 77.7 303.7000000000001 85.3 301.7000000000001C60.2 287.3 38.7 268.4000000000001 38.8 222L35.1 215.5C6.3 198.3 -19.6 142.8 20.9 97.8C23.5 83.7 28 73.6 31.9 62.4C37.8 17.2 76.4 -3.9 86.5 -6.4C101.4 -17.6 117.3 -28.2 138.7 -35.6C159 -56.2 181 -64 203 -64H204C226.1 -64 248 -56.2 268.2 -35.6C289.7 -28.2 305.5 -17.6 320.4 -6.4C330.6 -3.9 369.1 17.2 375 62.4C378.9 73.6 383.4 83.7 386 97.8C426.6 142.9 400.7 198.3 372 215.5zM349.8 223.5C348.3 204.8 250.9 288.6 267.7000000000001 291.4C313.4000000000001 298.9 351.3000000000001 272.2000000000001 349.8000000000001 223.5zM306.8 130.4C282.3 114.6 247 124.8 228 153.2S213.4 217.4 237.9 233.2C262.4 249 297.7 238.8 316.7 210.4S331.3 146.2 306.8 130.4zM238.9 418.7C239.7 414.5 240.7 411.9 241.8 411.1C247.2 416.9 251.6 422.8 258.6 428.4C258.6 425.1 256.9000000000001 421.6 261.1 419C264.8 424 269.9000000000001 428.5 276.6 432.3C273.4000000000001 426.7 276 425 277.8 422.7C282.9000000000001 427.1 287.8 431.5 297.2 435C294.6 431.9 291 428.8 294.8 425.2C300.1 428.5 305.4000000000001 431.8 317.9000000000001 434.1C315.1 431 309.2000000000001 427.8 312.8 424.7C319.4000000000001 427.2 326.8 429.1 334.9000000000001 430.1C331.0000000000001 426.9 327.8 423.8 331.0000000000001 421.3C338.1000000000001 423.5 347.9000000000001 426.4 357.4000000000001 423.9L351.4000000000001 417.8C350.7000000000001 417 365.5000000000001 417.2 375.3 417C371.7 412 368.1 407.3 366 398.8C367 397.8 371.8 398.4 376.4 398.8C371.7 388.9 363.6 386.5 361.7 382.2C364.6 380 368.5 380.6 372.9 382.1C369.5 375.2 362.5 370.4 356.9 364.8C358.3 363.8 360.8 363.2000000000001 366.6 363.9C361.4 358.4 355.2 353.4 347.8 348.9C349.1 347.4 353.6 347.4 357.8 347.3C351.1 340.8 342.5 337.4 334.4 333.1C338.4 330.4 341.3 331 344.4 331C338.7 326.3 329 323.9000000000001 320 321C321.7 318.3 323.4 317.6 327.1 316.9C317.6 311.6 303.9000000000001 314 300.1 311.3C301 308.6 303.7000000000001 306.9 306.8 305.5C291.4000000000001 304.6 249.5 306.1 241.4 337.8C257.1 355.1 285.8 375.3 335.1 400.4C296.7000000000001 387.6 262.1 370.4 233.1 346.9C198.8 362.8 222.3 402.8 238.9000000000001 418.7zM204.5 304.1C228.7 304.4 258.6 286.3 258.5 269.4C258.4 254.4 237.5 242.3 204.7 242.5C172.6 242.9 151 257.7 151.1 272.3C151.1 284.2 177.3 304.8 204.5 304.1zM81.5 316.9C85.2 317.6 86.9 318.4 88.6 321C79.6 323.8 69.9 326.3 64.2 331C67.3 331 70.2 330.3 74.2 333.1C66.1 337.4 57.5 340.8 50.8 347.3C55 347.4 59.5 347.3 60.8 348.9C53.4 353.4 47.2 358.4 42 363.9C47.8 363.2 50.3 363.8 51.7 364.8C46.1 370.4 39 375.2 35.7 382.1C40 380.6 44 380.1 46.9 382.2C45 386.4 36.9 388.9 32.2 398.8C36.8 398.4 41.6 397.8 42.6 398.8C40.5 407.3 36.8 412.1 33.3 417C43.1 417.1 57.9 417 57.2 417.8L51.2 423.9C60.7 426.4 70.5 423.5 77.6 421.3C80.8 423.8 77.5 426.9 73.7 430.1C81.8 429 89.1 427.2 95.8 424.7C99.3 427.8 93.5 431 90.7 434.1C103.2 431.8 108.5 428.5 113.8 425.2C117.6 428.8 114 431.9 111.4 435C120.8 431.6 125.7 427.1 130.8 422.7C132.5 425 135.2 426.7 132 432.3C138.7 428.5 143.8 424 147.5 419C151.6 421.6 150 425.2 150 428.4C157 422.8 161.4 416.9 166.8 411.1C167.9 411.9 168.8 414.5 169.7 418.7C186.3 402.8 209.8 362.8 175.7 346.9C146.7 370.4 112.1 387.6 73.7 400.4C123 375.4 151.7 355.1 167.4 337.8C159.4 306 117.4 304.6 102 305.5C105.1 306.9 107.8 308.7 108.7 311.3C104.7 314.1 91.1 311.7000000000001 81.5 316.9zM141.6 292.8C158.4 290 61 206.3 59.5 224.9C58 273.6 96 300.4 141.6 292.8zM38.2 106C14.5 124.8 6.9 179.7 50.8 204.3C77.3 211.3 59.8 96.5 38.2 106zM129.2 7.8C115.9 -0.1 83.4 3.1 60.4 35.7C44.9 63.1 46.9 90.9 57.8 99.1C74.1 108.9 99.3 95.7 118.7 73.4999999999999C135.6 53.4999999999999 143.3 18.1999999999999 129.2 7.8zM102.8 127.5C78.3 143.3 73.9 179.1 92.9 207.5S147.2 246.1 171.7 230.3S200.6 178.7 181.6 150.3C162.5 121.9 127.2 111.7 102.8 127.5zM205 -48C175.6 -49.2 146.8 -24.3 147.2 -15.7C146.8 -3 183 6.9 206.5 6.3C230.2 7.3 262.1 -1.2 262.2 -12.6C262.7 -23.6 233.4 -48.4999999999999 205 -47.9999999999999zM263.9 76.9C264.1 47.2 237.7 23.1 205.1 22.9C172.5 22.7 145.9 46.7 145.7 76.3V76.9C145.5 106.6 171.9 130.7 204.5 130.9C237.1 131.1 263.7 107.1 263.8999999999999 77.5V76.9zM346.1 34.2C320.8 -0.4 286.5 -1.7 273.8 7.9C260.5 20.3 270.6 58.8 288.9 79.9C309.8 103.2 332.2 118.4 347.8 106.5C358.3 96.2 364.5 57.4 346.1 34.2zM369 107.4C347.5 98 330 212.7 356.3999999999999 205.7C400.2999999999999 181 392.7 126.1 369 107.4z" />
+    <glyph glyph-name="ravelry"
+      unicode="&#xF2D9;"
+      horiz-adv-x="512" d=" M407.4 386.5C331.6 425.9 257.8 417 182.9 382C171.6 376.8 167.4 371.4 163 363C152.7 343.8 146.8 325.6 143.1 310.3C121.9 284.7000000000001 106.7 254.2 99.8 220.4C89.2 202.4 78.9 179 76.7 149C76.7 149 76 141.4 76.2 141.1C40.9 145.7000000000001 0 168.1 0 168.1C9.1 153.6 61.3 135.8 76.3 130.2000000000001C76.3 130.2000000000001 78 32.2 140.8 -0.9999999999999C129.5 16.2 127.5 19.2 127.5 19.2S94.8 79 100.4 123.3C101.1 123.3 101.9 123.1 102.6 123.1C126.5 35.7 205.8 -28.3 299.5 -28.3C305.7 -28.3 311.6 -28.1 317.5 -27.6C331.5 -29.1 345.1 -28.1 357.6 -23.7C364.5 -21.5 371.4000000000001 -17.3 377.8 -12.9C448 26.2 478.7 69.1 500.9 134.8C506.3 150.8 509 170.3 510.7 187C519.4 269.3 480.1 348.6 407.4 386.5zM138.8 284.8S137.6 272.5 138.1 265.1C134.7 262.6 128 257 119.9 248.4000000000001C125.1 261.2000000000001 131.2 273.5 138.8 284.8000000000001zM107.6 162.9C112 180.1 120.9 202 137.4 218C137.4 218 139.1 170 153.2 127.9L111.8 134.8C109.6 144 108.3 153.3 107.6 162.9zM115.5 120.1C130.3 116.9 149.5 112.4999999999999 158.6 110.9999999999999C185.9 34.1999999999999 266.9000000000001 -13.3000000000001 266.9000000000001 -13.3000000000001C267.9000000000001 -13.8000000000001 268.6 -14.0000000000001 269.6 -14.3000000000001C196.5 -2.7 136.9 50.3999999999999 115.5 120.0999999999999zM386 3.9C371.5 -0.8 349.8 -4.5 321.3 0.2C321.3 0.2 230.2 23.3 193.8 108C232 107.3 246.2 108.2 271.8 111.9C311.2 117.6 350.8 128.1 386.8 144.9C398.6 150.3 397.9000000000001 164.3 396.4000000000001 174.7C394.4000000000001 187.5 385.3 186.8 375.0000000000001 179.4C375.0000000000001 179.4 293.0000000000001 120.8 185.2000000000001 125.7C166.5000000000001 157.7 158.4 236.5 158.4 236.5C199.8000000000001 271.7 241.6 296.1 326.8000000000001 288.9C327.0000000000001 295.3 329.8000000000001 316 306.4000000000001 317C306.4000000000001 317 212.9000000000001 328.1 160.4000000000001 283.5C162.9000000000001 300 166.3000000000001 312.8 171.5000000000001 322.9C205.7000000000001 353.7 250.5000000000001 372.4 299.8000000000001 372.4C406.2000000000001 372.4 492.8000000000001 285.3 492.8000000000001 177.9C492.6000000000001 101.9 449.0000000000001 35.9 386.0000000000001 3.9z" />
+    <glyph glyph-name="react"
+      unicode="&#xF41B;"
+      horiz-adv-x="512" d=" M418.2 270.8C412.8 272.6 407.4 274.3 402 275.9C402.9 279.6 403.7 283.3 404.5 287C416.8 346.6 408.7 394.5 381.4 410.3C355.1 425.4 312.2 409.7 268.8 371.9C264.5 368.2 260.3 364.3 256.3 360.4C253.6 363 250.8 365.6 248 368.1C202.5 408.5 156.9 425.5 129.5999999999999 409.6C103.3999999999999 394.4 95.5999999999999 349.3 106.5999999999999 292.9C107.6999999999999 287.3 108.8999999999999 281.8 110.2999999999999 276.2000000000001C103.8999999999999 274.4 97.5999999999999 272.4 91.6999999999999 270.3C38.3 251.8 0 222.6 0 192.4C0 161.2 40.8 129.9 96.3 110.9C100.8 109.4 105.3 107.9 109.9 106.6C108.4 100.6 107.1 94.7 105.9 88.6C95.4 33.1 103.6 -10.9 129.8 -26C156.8 -41.6 202.2 -25.6 246.4 13.1C249.9 16.2 253.4 19.4 256.9 22.8C261.3 18.5 265.9 14.4 270.5 10.4C313.3 -26.4 355.6 -41.3 381.7 -26.2C408.7 -10.6 417.5 36.7 406.1 94.3C405.2 98.7 404.2 103.2 403.1 107.8C406.3 108.7 409.4 109.7 412.5 110.7C470.1999999999999 129.8 511.9999999999999 160.7 511.9999999999999 192.4C511.9999999999999 222.7 472.6 252.1 418.2 270.8zM282.9 355.7C320.1 388.1 354.8 400.8 370.6 391.7C387.5 382 394 342.8 383.4 291.3C382.7 287.9 382 284.6 381.1 281.3C358.9 286.3 336.4 289.9 313.8 291.9C300.8 310.5 286.6 328.3 271.2 345C275.0999999999999 348.7 278.8999999999999 352.2 282.8999999999999 355.7zM152.9 166.6C157.5 157.8 162.2 149.1 167.2 140.5C172.3 131.8 177.5 123.1 183 114.6C167.4 116.3 151.9 118.8 136.6 122.1C141 136.5 146.5 151.4 152.9 166.6zM152.9 217.2C146.6 232.1 141.3 246.7 136.9 260.8C151.3 264 166.6 266.6 182.5 268.6C177.2 260.3 172 251.8 167.1 243.2C162.2 234.7 157.4 226.0000000000001 152.9 217.2zM164.3 191.9C170.9 205.7000000000001 178.1 219.2000000000001 185.7 232.5000000000001C193.3 245.8000000000001 201.5 258.7000000000001 210.1 271.4000000000001C225.1 272.5 240.4 273.1 256 273.1C271.6 273.1 287 272.5 301.9 271.4000000000001C310.4 258.8000000000001 318.5 245.9000000000001 326.2 232.7000000000001C333.9 219.5000000000001 341.1 206.0000000000001 347.9 192.3000000000001C341.2 178.5000000000001 334 164.9 326.3 151.5000000000001C318.7 138.2000000000001 310.6 125.3000000000001 302.1 112.5000000000001C287.2 111.4 271.7 110.9 256 110.9C240.3 110.9 225.1 111.4 210.4 112.3C201.7 125 193.5 138 185.8 151.3C178.1 164.6 171 178.1 164.3 191.9zM344.9 140.7000000000001C350 149.5000000000001 354.8 158.4 359.5 167.4C365.9 152.9 371.5 138.2000000000001 376.4 123.1C360.9 119.6 345.2 116.9 329.4 115.1C334.8 123.5 339.9 132.1 344.9 140.7000000000001zM359.3 217.2000000000001C354.6 226.0000000000001 349.8 234.8000000000001 344.8 243.4000000000001C339.9 251.9000000000001 334.8 260.3000000000001 329.5 268.6C345.6 266.6 361 263.9000000000001 375.3999999999999 260.6C370.7999999999999 245.8 365.3999999999999 231.4000000000001 359.2999999999999 217.2zM256.2 329.7C266.7 318.3 276.6 306.3 285.8 293.9C266 294.8 246.1 294.8 226.3 293.9C236.1 306.8 246.2 318.8 256.2 329.7zM140.2 391C157 400.8 194.3 386.8 233.6 352C236.1 349.8 238.6 347.4 241.2 345C225.7 328.3 211.4 310.5 198.3 291.9C175.7 289.9 153.3 286.4 131.1 281.5C129.8 286.6 128.7 291.8 127.6 297C118.2 345.4 124.4 381.9 140.2 391zM115.7 127.4C111.5 128.6 107.4 129.9 103.3 131.3C82 138 57.8 148.6 40.3 162.5C30.2 169.5 23.4 180.3 21.5 192.4C21.5 210.7 53.1 234.1 98.7 250C104.4 252 110.2 253.8 116 255.5C122.8 233.8 131 212.5 140.5 191.8999999999999C130.9 171 122.6 149.3999999999999 115.7 127.3999999999999zM232.3 29.4C215.8 14.3 196.7 2.3 175.9 -5.9C164.8 -11.2 152 -11.7 140.6 -7.2C124.7 1.9999999999999 118.1 37.3 127.1 84.8C128.2 90.4 129.4 95.9999999999999 130.8 101.4999999999999C153.2 96.6999999999999 175.8 93.3999999999999 198.7 91.6999999999999C211.9 72.9999999999999 226.4 55.0999999999999 241.9 38.3C238.7 35.1999999999999 235.5 32.1999999999999 232.3 29.4zM256.8 53.7C246.6 64.7 236.4 76.9 226.5 90C236.1 89.6 246 89.4 256 89.4C266.3 89.4 276.3999999999999 89.6 286.3999999999999 90.1C277.2 77.4 267.2999999999999 65.3 256.7999999999999 53.7zM387.5 23.7C386.6 11.5 380.6 0.1 371 -7.6C355.1 -16.8 321.2 -4.8 284.5999999999999 26.6C280.3999999999999 30.2 276.2 34.1 271.8999999999999 38.1C287.2 54.9999999999999 301.2999999999999 72.9 314.0999999999999 91.7C336.9999999999999 93.6 359.7999999999999 97.1 382.2999999999999 102.2C383.2999999999999 98.1 384.1999999999999 94 384.9999999999999 90C389.8999999999999 68.4 390.6999999999999 45.9 387.4999999999999 23.7zM405.7 131.2C402.8999999999999 130.3 400.0999999999999 129.4 397.2 128.6C390.2 150.4 381.5999999999999 171.7 371.7 192.4C381.3 212.8 389.3999999999999 233.8 396.2 255.3C401.3999999999999 253.8 406.3999999999999 252.2 411.2 250.6C457.8 234.6 490.4999999999999 210.8 490.4999999999999 192.6C490.4999999999999 173 455.6 147.7 405.7 131.2zM256 237.8C281.3 237.8 301.8 217.3 301.8 192C301.8 166.7 281.3 146.2 256 146.2C230.7 146.2 210.2 166.7 210.2 192C210.2 217.3 230.7 237.8 256 237.8" />
+    <glyph glyph-name="reacteurope"
+      unicode="&#xF75D;"
+      horiz-adv-x="570.6" d=" M552.5 173.9C532.7 138.8 472.4 118.7 446.8 111.4C443.2 123.3 439.1 135.5 434.4000000000001 147.8C429.5000000000001 147.8 425.7000000000001 150.4 423.7000000000001 153.5L423.6 153.3999999999999C422 151.8999999999999 420.2000000000001 150.6999999999999 418.2000000000001 149.7999999999999C423.9000000000001 135.4999999999999 428.8000000000001 121.3999999999999 432.9000000000001 107.5999999999999C432.2000000000001 107.3999999999999 401.1 99.0999999999999 360.9000000000001 94.5999999999999C364.4000000000001 99.8999999999999 378.1 120.7999999999999 393.1 148.7999999999999C390.9000000000001 149.5999999999999 388.9000000000001 150.6999999999999 387.1 151.9999999999999C386 150.7999999999999 383.5 147.7999999999999 376.2000000000001 147.7999999999999C370.0000000000001 136.5999999999999 358.8000000000001 116.8999999999999 342.3000000000001 92.5999999999999C297.2000000000001 88.6999999999999 258.0000000000001 89.4999999999999 229.9000000000001 91.5999999999999C222.0000000000001 102.7999999999999 208.4000000000001 122.6999999999999 193.1000000000001 149.3999999999999C192.1000000000001 149.7999999999999 191.1000000000001 150.2999999999999 190.1000000000001 150.8999999999999C188.2000000000001 149.2999999999999 186.2000000000001 147.6999999999999 177.5000000000001 147.6999999999999C183.8000000000001 136.5 195.0000000000001 117 211.3000000000001 93.0999999999999C171.1000000000001 96.9999999999999 142.7000000000001 103.9999999999999 139.1000000000001 104.7999999999999C143.0000000000001 118.7999999999999 147.7000000000001 133.0999999999999 153.2000000000001 147.6999999999999C150.0000000000001 147.6999999999999 147.8000000000001 147.4999999999999 144.8000000000001 148.6999999999999C141.6000000000001 147.4999999999999 138.9000000000001 147.6999999999999 137.9000000000001 147.6999999999999C133.0000000000001 134.2999999999999 128.8000000000001 121.1999999999999 125.2000000000001 108.2999999999999C-34.6999999999999 150.8999999999999 -15.1 231.8999999999999 123.7000000000001 272.2999999999999C127.3000000000001 260.3999999999999 131.4000000000001 248.1999999999999 136.1000000000001 235.8999999999999C146.5000000000001 235.8999999999999 149.0000000000001 232.4999999999999 150.5000000000001 230.5999999999999C151.2000000000001 231.3999999999999 151.9000000000001 232.1999999999999 152.8000000000001 232.7999999999999C147.0000000000001 247.4999999999999 141.9000000000001 261.9999999999999 137.6000000000001 276.0999999999999C144.6000000000001 277.8999999999999 170.0000000000001 284.4999999999999 209.6000000000001 289.0999999999999C193.7000000000001 264.7999999999999 182.9000000000001 245.1999999999999 176.8000000000001 233.7999999999999C179.8000000000001 231.9999999999999 182.1000000000001 229.2999999999999 183.2000000000001 225.7999999999999C186.9000000000001 231.3999999999999 192.1000000000001 233.5999999999999 193.4000000000001 234.1999999999999C199.9000000000001 245.8999999999999 211.3000000000001 266.0999999999999 228.2000000000001 291.0999999999999C256.1 293.6999999999998 295.7000000000001 295.1999999999998 340.6 292.0999999999999C372.1 247.4999999999999 369.5 243.9999999999999 383.1 227.5999999999999C384.3 229.1999999999999 387.4000000000001 232.8999999999999 393.5 234.9999999999999C387.1 246.3999999999999 375.9 265.9999999999999 359.2 290.4999999999999C399.6 286.3999999999999 424.2 280.4999999999999 431.4 278.7999999999999C427.4 264.3999999999999 422.5 249.5999999999999 416.8 234.5999999999999C419.4 233.5999999999999 421.7 232.0999999999999 423.6 230.2999999999999L423.7 230.1999999999999C426.4 234.3999999999999 430.6 235.4999999999999 432.6 235.7999999999999C437.5 249.1999999999999 441.8 262.3999999999999 445.4 275.2999999999999C450.7 273.8999999999999 464.6 270.0999999999999 479.9 264.2999999999999C586 224.3999999999998 553.9 176.3999999999999 552.5 173.8999999999999M437.7 -27.2C434.8 -32.3 425.9 -47.5 402.8 -47.5C366.1 -47.5 304.1 -8.1 239.5 78.7C286.6 76 323.6 78.8 333.4 79.6C319.8 60.4999999999999 305.6 42.9 291.2 27.2C294.6 23.7 298 20.3 301.4 17C318.8 36 335.9 57.6 352.1 81.2C399.4 85.9 432.4 94.7 436.5 95.8C459.2 11.4 441 -21.2 437.7 -27.2M132.9 411.1C135.8 416.2 144.8 431.4 167.8 431.4C204.6 431.4 266.6 391.8 331.1 305.2C312.3 306.2 279.9000000000001 307.5 237.2 304.3C250.8 323.4 265 341 279.4000000000001 356.7C276.0000000000001 360.2 272.6 363.6 269.2000000000001 366.9C251.8000000000001 347.9 234.7000000000001 326.2 218.5000000000001 302.7C175.7000000000001 298.4 146.5000000000001 291.2 134.1000000000001 288.1C133.9000000000001 289.5 109.8000000000001 370.3 132.9000000000001 411.1M484.1 276C466.4 282.7 450.4 286.8 448.5 287.3C468.1 365.3 460.1 422 426.2 441.2000000000001C391.7 460.6 340.3 436.9 288 386C291.4 382.7 294.8 379.3 298.2 375.8C380.7 455.8 417.8 429.3 419.1 428.6C441.5 415.9 455.1 372.8 434.6 290.8C401.3 298.6 371.3 302 350 303.8C278.1 404.3 209.4 445.9 167.8 445.9C137 445.9 124 424.9 120.2 418.2C102.1 386.2 106.9 334 120.3 284.4C49.8 264.1 -0.4 230.3 0 189.4C0.5 129.8 103.2 101.6 122.1 96.6C101.6 14.6999999999999 112 -39 144.4 -57.3000000000001C172.4 -73.1 219.5 -63.3000000000001 282.6 -2.1000000000001C279.2000000000001 1.1999999999999 275.8 4.5999999999999 272.4000000000001 8.0999999999999C189.9 -71.9000000000001 152.7000000000001 -45.4000000000001 151.5 -44.7000000000001C129.2 -32.1000000000001 115.5 10.8999999999999 136 93.1999999999999C148.4 90.3 177.8 83.6999999999999 220.6 80.1999999999999C292.5 -20.2 361.2000000000001 -61.8000000000001 402.7000000000001 -61.8000000000001C433.5000000000001 -61.8000000000001 446.5000000000001 -40.8000000000001 450.3000000000001 -34.1000000000001L449.4000000000001 -33.6000000000001L450.3000000000001 -34.1000000000001C468.3000000000001 -2.2000000000001 463.6000000000001 49.9999999999999 450.2000000000001 99.6999999999999C602.5 143.5 606.4000000000001 229.8999999999999 484.1 276M93.5 200.8C93.5 196 91 194.7 87.4 194.7H81.6V215.6H87.4C91 215.6 93.5 214.3 93.5 209.5V200.8000000000001zM81.6 185.2H87.2L94.6 161.7C95.3 159.5 96.7 158.5 98.9 158.5H102.2C105 158.5 106.2 160.3 105.4 162.9L97.3 186.8C101.9 188.8 104.6 192.8 104.6 199.2V211.1C104.6 221.2 97.9 225.2 87.8 225.2H74.4C71.9 225.2 70.6 223.9 70.6 221.4V162.3C70.6 159.8 71.9 158.5 74.4 158.5H77.8C80.3 158.5 81.6 159.8 81.6 162.3V185.1999999999999zM113.6 221.5V162.4C113.6 159.9 114.9 158.6 117.4 158.6H139.3C141.8 158.6 143.1 159.9 143.1 162.4V164.5C143.1 167 141.8 168.3 139.3 168.3H124.6V187.6H136C138.5 187.6 139.8 188.9 139.8 191.4V193.5C139.8 196 138.5 197.3000000000001 136 197.3000000000001H124.6V215.6000000000001H139C141.5 215.6000000000001 142.8 216.9000000000001 142.8 219.4000000000001V221.5000000000001C142.8 224.0000000000001 141.5 225.3000000000001 139 225.3000000000001H117.3C114.9 225.4000000000001 113.6 224.0000000000001 113.6 221.5000000000001M160.7 182.6000000000001L165.4 212.3000000000001L170.1 182.6000000000001H160.7zM157.9 221.9000000000001L146.9 162.7000000000001C146.4 160.0000000000001 147.8 158.6000000000001 150.3 158.6000000000001H153.3C155.6 158.6000000000001 157 159.7000000000001 157.4 162.1000000000001L159.2 173.4000000000001H171.4L173.2 162.1000000000001C173.6 159.7000000000001 175 158.6000000000001 177.3 158.6000000000001H180.8C183.4 158.6000000000001 184.7 160.0000000000001 184.2 162.7000000000001L173 221.9C172.6 224.2 171.1 225.3 168.8 225.3H161.9C159.8 225.4 158.3 224.2 157.9 221.9M223.8 212C223.8 221.9 217.1 226.1 207 226.1H206.8C196.7 226.1 190 221.9 190 212V171.9C190 161.5 196.7 157.8 206.8 157.8H207C217.1 157.8 223.8 161.6 223.8 171.9C223.8 181.8 224.9 185.7 220 185.7H216.6C211.8 185.7 212.8 181.7 212.8 173.6C212.8 168.9 210.5 167.5 207 167.5S201.2 168.8999999999999 201.2 173.6V210.2C201.2 214.9 203.5 216.3 207 216.3S212.8 214.9 212.8 210.2C212.8 203 212.1 199.7 216.6 199.7H220C224.7 199.8 223.8 203.6 223.8 212zM250.2 215.6H257.5C260 215.6 261.3 216.9 261.3 219.4V221.5C261.3 224 260 225.3 257.5 225.3H231.7C229.2 225.3 227.9 224 227.9 221.5V219.4C227.9 216.9 229.2 215.6 231.7 215.6H239V162.4C239 159.9 240.3 158.6 242.8 158.6H246.2C248.7 158.6 250.0000000000001 159.9 250.0000000000001 162.4V215.6zM292.7000000000001 163.3H273.3000000000001V190H289.4000000000001C290.6000000000001 190 291.4000000000001 190.8 291.4000000000001 192V192.8C291.4000000000001 194 290.6000000000001 194.8 289.4000000000001 194.8H273.3000000000001V220.6H292.4000000000001C293.6000000000001 220.6 294.4000000000001 221.4 294.4000000000001 222.6V223.4C294.4000000000001 224.7000000000001 293.6000000000001 225.3000000000001 292.4000000000001 225.3000000000001H270.2000000000001C269.0000000000001 225.3000000000001 268.2000000000001 224.6000000000001 268.2000000000001 223.4V160.4C268.2000000000001 159.2000000000001 269.0000000000001 158.5000000000001 270.2000000000001 158.5000000000001H292.7000000000001C294.0000000000001 158.5000000000001 294.7000000000001 159.2000000000001 294.7000000000001 160.4V161.2000000000001C294.7000000000001 162.6 294.0000000000001 163.3000000000001 292.7000000000001 163.3000000000001M332.4000000000001 225.4000000000001H331.2000000000001C330.0000000000001 225.4000000000001 329.3000000000002 224.7000000000001 329.3000000000002 223.5000000000001V173.7000000000001C329.3000000000002 165.8000000000001 326.7000000000001 162.6 319.2000000000001 162.6S309.1000000000001 165.7000000000001 309.1000000000001 173.7000000000001V223.5000000000001C309.1000000000001 224.8000000000001 308.4000000000001 225.4000000000001 307.2000000000001 225.4000000000001H306C304.8 225.4000000000001 304 224.7000000000001 304 223.5000000000001V172C304 162.4 309 157.9 319.1 157.9H319.5C329.6 157.9 334.6 162.5 334.6 172V223.5C334.4000000000001 224.7 333.7000000000001 225.4 332.4000000000001 225.4M362.2000000000001 192.1H352V220.6H362.2C369.7 220.6 372.7 217.5 372.7 209.5V203.1C372.7 195.3 369.7 192.1 362.2 192.1M376.2 158.6H377.7C379.1 158.6 379.7 159.6 379.2 160.9L368.6 188.2000000000001C374.7 189.8000000000001 377.8 194.3000000000001 377.8 201.5000000000001V211.2000000000001C377.8 220.6000000000001 372.6 225.3000000000001 362.5 225.3000000000001H348.8C347.6 225.3000000000001 346.8 224.6000000000001 346.8 223.4V160.4C346.8 159.2000000000001 347.6 158.5000000000001 348.8 158.5000000000001H350C351.2 158.5000000000001 351.8999999999999 159.2000000000001 351.8999999999999 160.4V187.3H363.5L373.8999999999999 160.1C374.3999999999999 159 375.2 158.6 376.2 158.6M404.5999999999999 162.6C397.0999999999999 162.6 394.0999999999999 165.7000000000001 394.0999999999999 173.7000000000001V210.3000000000001C394.0999999999999 218.2000000000001 397.0999999999999 221.4 404.5999999999999 221.4S415.0999999999999 218.2000000000001 415.0999999999999 210.3000000000001V173.7000000000001C414.9999999999999 165.7000000000001 412.0999999999999 162.6 404.5999999999999 162.6M420.2 212C420.2 221.4 415 226.1 404.8999999999999 226.1H404.0999999999999C393.9999999999999 226.1 388.7999999999999 221.4 388.7999999999999 212V171.9C388.7999999999999 162.6 393.9999999999999 157.8 404.0999999999999 157.8H404.8999999999999C415 157.8 420.2 162.6 420.2 171.9V212zM458.3 209.5V202.4C458.3 194.5 455.3 191.3 447.8 191.3H437.6V220.5H447.8C455.3 220.6 458.3 217.4 458.3 209.5M432.4 223.4V160.4C432.4 159.2 433.2 158.5 434.4 158.5H435.6C436.8 158.5 437.5 159.2 437.5 160.4V186.5H448.1C458.2 186.5 463.4 191.3 463.4 200.6V211.1C463.4 220.5 458.2 225.2 448.1 225.2H434.4C433.2 225.4 432.4 224.7 432.4 223.4M473.5 223.4V160.4C473.5 159.2 474.3 158.5 475.5 158.5H498C499.2 158.5 500 159.2 500 160.4V161.2C500 162.5 499.2 163.2 498 163.2H478.6V189.9H494.7C495.9 189.9 496.7 190.7 496.7 191.9V192.7C496.7 193.9 495.9 194.7 494.7 194.7H478.6V220.5H497.7C498.9 220.5 499.7 221.3 499.7 222.5V223.3C499.7 224.6 498.9 225.2 497.7 225.2H475.5000000000001C474.3000000000001 225.4 473.5000000000001 224.7 473.5000000000001 223.4M279.5000000000001 244.7L285.3000000000001 248.8L291.1000000000001 244.7L289.0000000000001 251.5000000000001L294.7000000000001 255.8000000000001L287.6 255.9000000000001L285.3 262.7000000000001L283 255.9000000000001L275.9 255.8000000000001L281.6 251.5000000000001L279.5 244.7zM287.6000000000001 132.5L285.3000000000001 139.3L283.0000000000001 132.5L275.9000000000001 132.4L281.6 128.1L279.5 121.3L285.3 125.4L291.1 121.3L289 128.1L294.7 132.4L287.6 132.5zM247.6000000000001 236.2L253.4000000000001 240.3L259.2000000000001 236.2L257.1000000000001 243L262.8000000000001 247.3L255.7000000000001 247.4L253.4000000000001 254.2L251.1000000000001 247.4L243.9000000000001 247.3L249.6000000000001 243L247.6000000000001 236.2zM311.3000000000001 236.2L317.1000000000001 240.3L322.9000000000001 236.2L320.8000000000001 243L326.5000000000001 247.3L319.3000000000001 247.4L317.0000000000001 254.2L314.7000000000001 247.4L307.5000000000001 247.3L313.2000000000001 243L311.3000000000001 236.2zM318.7000000000001 139.9L316.4000000000001 146.7L314.1 139.9L307 139.8L312.7 135.5L310.6 128.6999999999999L316.4 132.8L322.2 128.6999999999999L320.1 135.5L325.8 139.8L318.7 139.9zM256.5000000000001 139.9L254.2000000000001 146.7L251.9000000000001 139.9L244.8000000000001 139.8L250.5000000000001 135.5L248.4000000000001 128.6999999999999L254.2000000000001 132.8L260.0000000000001 128.6999999999999L257.9000000000001 135.5L263.6 139.8L256.5 139.9z" />
+    <glyph glyph-name="readme"
+      unicode="&#xF4D5;"
+      horiz-adv-x="576" d=" M528.3 401.5H388.5C340.4 401.5 298.6 368.2 288.1 321.2C277.5 368.2 235.8 401.5 187.7 401.5H48C21.5 401.5 0 380 0 353.5V107.7C0 81.2 21.5 59.7 48 59.7H137.7C239.9 59.7 270.4 35.3 285 -15.3C285.7 -18.1 290.2 -18.1 291 -15.3C305.7 35.3 336.2 59.7 438.3 59.7H528C554.5 59.7 576 81.2 576 107.7V353.4C576 379.8 554.7 401.3 528.3 401.5zM242 136.1C242 134.2000000000001 240.5 132.6 238.5 132.6H78.2C76.3 132.6 74.7 134.1 74.7 136.1V159C74.7 160.9 76.2 162.5 78.2 162.5H238.6C240.5000000000001 162.5 242.1 161 242.1 159V136.1zM242 197C242 195.1 240.5 193.5 238.5 193.5H78.2C76.3 193.5 74.7 195 74.7 197V219.9C74.7 221.8000000000001 76.2 223.4 78.2 223.4H238.6C240.5000000000001 223.4 242.1 221.9 242.1 219.9V197zM242 257.9000000000001C242 256 240.5 254.4000000000001 238.5 254.4000000000001H78.2C76.3 254.4000000000001 74.7 255.9000000000001 74.7 257.9000000000001V280.8000000000001C74.7 282.7000000000001 76.2 284.3000000000001 78.2 284.3000000000001H238.6C240.5000000000001 284.3000000000001 242.1 282.8000000000001 242.1 280.8000000000001V257.9000000000001zM501.3 136.2000000000001C501.3 134.3000000000001 499.8 132.7000000000001 497.8 132.7000000000001H337.5C335.6 132.7000000000001 334 134.2000000000001 334 136.2000000000001V159.1C334 161 335.5 162.6 337.5 162.6H497.9C499.8 162.6 501.4 161.1 501.4 159.1V136.2000000000001zM501.3 197.1000000000001C501.3 195.2000000000001 499.8 193.6000000000001 497.8 193.6000000000001H337.5C335.6 193.6000000000001 334 195.1000000000001 334 197.1000000000001V220C334 221.9 335.5 223.5 337.5 223.5H497.9C499.8 223.5 501.4 222 501.4 220V197.1zM501.3 258.0000000000001C501.3 256.1 499.8 254.5000000000001 497.8 254.5000000000001H337.5C335.6 254.5000000000001 334 256.0000000000001 334 258.0000000000001V280.8000000000001C334 282.7000000000001 335.5 284.3000000000001 337.5 284.3000000000001H497.9C499.8 284.3000000000001 501.4 282.8000000000001 501.4 280.8000000000001V258z" />
+    <glyph glyph-name="rebel"
+      unicode="&#xF1D0;"
+      horiz-adv-x="512" d=" M256.5 -56C117.2 -56 9 60.2 13.2 198.1C16 277.3 56.4 350.3 129.7 398.5C130 398.5 131.6 399.1 130.8 397.7C125 392.2 19.5 267.9 116.7 171.3C166.5 121.8 206.7 168.8 206.7 168.8C245.2 218.9 206.1 294.7000000000001 206.1 294.7000000000001C196.1 319.6 160.4 334.8 160.4 334.8L189.2 366.6C213.6 356.1 232.4 327.9 232.4 327.9C233.2 357.5 210.5 389.3 210.5 389.3L255.1 440L299.4 389.9C278.9 361.1 277.5 327.3 277.5 327.3C291.3 350.3 321 366.6 321 366.6L349.5 334.8C322.1 325.9 304.1 294.9 304.1 294.9C288.3 266.4 277 205.5 304.7000000000001 167.6C337.1 123 392.4000000000001 170.4 392.4000000000001 170.4C495.1 262.3000000000001 381.9000000000001 395.4000000000001 381.9000000000001 395.4000000000001C375.8 400.9000000000001 382.7000000000001 398.2000000000001 382.7000000000001 398.2000000000001C432.8000000000001 361.7000000000001 497.3000000000001 313.8 498.9 193.4C500.9 47.8 399 -56 256.5 -56z" />
+    <glyph glyph-name="red-river"
+      unicode="&#xF3E3;"
+      horiz-adv-x="448" d=" M353.2 416H94.8C42.4 416 0 373.6 0 321.2V62.8C0 10.4 42.4 -32 94.8 -32H353.2C405.6 -32 448 10.4 448 62.8V321.2C448 373.6 405.6 416 353.2 416zM144.9 247.1V190.8C144.9 163.8 123 141.9 96 141.9V296.1C96 309.3 106.7 320 119.9 320H274.1C274.1 293 252.2 271.1 225.2 271.1H168.9C156.6 271.7 144.3000000000001 259.5 144.9 247.1zM321.2000000000001 175.1H264.9000000000001C252.6 175.7000000000001 240.3000000000001 163.5 240.9000000000001 151.1V94.8C240.9000000000001 67.8 219 45.9 192 45.9V200.1C192 213.3 202.7 224 215.9 224H370.1C370.1 197 348.2000000000001 175.1 321.2000000000001 175.1z" />
+    <glyph glyph-name="reddit-alien"
+      unicode="&#xF281;"
+      horiz-adv-x="512" d=" M440.3 244.5C425.3 244.5 412.1 238.3 402.4000000000001 228.6C366.7000000000001 253.3 318.6 269.2 265.3000000000001 270.9L293 395.7L381.2 375.9C381.2 354.3 398.8 336.7 420.4 336.7C442.4 336.7 460.1 354.8 460.1 376.4S442.5 416.1 420.4 416.1C405 416.1 391.7 406.8 385.1 394.1L287.7 415.7C282.8 417 278 413.5 276.7 408.6L246.3 271C193.4 268.8 145.8 252.9 110 228.2C100.3 238.3 86.6 244.5 71.6 244.5C16 244.5 -2.2 169.9 48.7 144.4C46.9 136.5 46.1 128.1 46.1 119.7C46.1 35.9 140.5 -32 256.4 -32C372.8 -32 467.2 35.9 467.2 119.7C467.2 128.1 466.3 136.9 464.1 144.8C514 170.4 495.6 244.5 440.3 244.5zM129.4 139.1C129.4 161.1 147 178.8 169.1 178.8C190.7 178.8 208.3 161.2 208.3 139.1C208.3 117.5 190.7 99.9 169.1 99.9C147.1 99.8 129.4 117.5000000000001 129.4 139.1zM343.7000000000001 45.6C307.3000000000001 9.2 204.6000000000001 9.2 168.2000000000001 45.6C164.2000000000001 49.1 164.2000000000001 55.3 168.2000000000001 59.3C171.7000000000001 62.8 177.9 62.8 181.4 59.3C209.2000000000001 30.8 301.4000000000001 30.3 330.4000000000001 59.3C333.9000000000001 62.8 340.1 62.8 343.6 59.3C347.7000000000001 55.3 347.7000000000001 49.1 343.7000000000001 45.6zM342.9000000000001 99.8C321.3 99.8 303.7000000000001 117.4 303.7000000000001 139C303.7000000000001 161 321.3000000000001 178.7 342.9000000000001 178.7C364.9000000000001 178.7 382.6 161.1 382.6 139C382.5 117.5 364.9000000000001 99.8 342.9000000000001 99.8z" />
+    <glyph glyph-name="reddit-square"
+      unicode="&#xF1A2;"
+      horiz-adv-x="448" d=" M283.2 102.5C285.9 99.8 285.9 95.7 283.2 93.3C258.7 68.8 189.4 68.7 164.8 93.3C162.1 95.7 162.1 99.8 164.8 102.5C167.2 104.9 171.3 104.9 173.7 102.5C192.4 83.3 254.7 82.9 274.2 102.5C276.6 104.8 280.8 104.8 283.2 102.5zM191.9 156.3C191.9 171.2 180 183.1 165.4 183.1C150.5 183.1 138.6 171.2000000000001 138.6 156.3C138.6 141.7 150.5 129.8 165.4 129.8C180 129.8 191.9 141.7 191.9 156.3zM282.6 183.1C268 183.1 256.1 171.2000000000001 256.1 156.3C256.1 141.7 268 129.8 282.6 129.8C297.5 129.8 309.4 141.7 309.4 156.3C309.4 171.2 297.5 183.1 282.6 183.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM348.3 227.4C338.2 227.4 329.3 223.2 322.7 216.7C298.6 233.4 266.2 244.1 230.2 245.3L248.9 329.5L308.4 316.1C308.4 301.5 320.3 289.6 334.9 289.6C349.8 289.6 361.7 301.8 361.7 316.4000000000001C361.7 331 349.8 343.2000000000001 334.9 343.2000000000001C324.5 343.2000000000001 315.6 337 311.1 328.3L245.4 342.9000000000001C242.1 343.8 238.9 341.4000000000001 238 338.1L217.5 245.3C181.8 243.8 149.7 233.1 125.6 216.4C119.1 223.2 109.8 227.4 99.7 227.4C62.2 227.4 49.9 177 84.2 159.9C83 154.5 82.4 148.9 82.4 143.2C82.4 86.7 146.1 40.9 224.3 40.9C302.8 40.9 366.5 86.7 366.5 143.2C366.5 148.9 365.8999999999999 154.8 364.3999999999999 160.2C398 177.4 385.5999999999999 227.4 348.2999999999999 227.4z" />
+    <glyph glyph-name="reddit"
+      unicode="&#xF1A1;"
+      horiz-adv-x="512" d=" M201.5 142.5C187.7 142.5 176.6 153.6 176.6 167.1C176.6 180.9 187.7 192 201.5 192C215.1 192 226.1 180.9 226.1 167.1C226.1 153.5 215 142.5 201.5 142.5zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM371.7 233.2C362.3 233.2 354 229.3 347.9 223.2C325.5 238.7 295.3 248.7 261.8 249.8L279.2 328.1L334.5999999999999 315.6C334.5999999999999 302 345.7 291 359.2 291C373 291 384.0999999999999 302.3 384.0999999999999 315.9S372.9999999999999 340.8 359.2 340.8C349.5 340.8 341.2 335 337.0999999999999 327L275.8999999999999 340.6C272.8999999999999 341.4 269.7999999999999 339.2 269 336.2L249.9 249.8C216.6999999999999 248.4 186.8 238.5 164.4 223C158.3 229.4 149.7 233.2 140.3 233.2C105.4 233.2 94 186.3 125.9 170.3999999999999C124.8 165.3999999999999 124.2 160.1999999999999 124.2 154.8999999999999C124.2 102.2999999999999 183.4 59.6999999999999 256.2 59.6999999999999C329.3 59.6999999999999 388.5 102.3 388.5 154.8999999999999C388.5 160.1999999999999 387.8999999999999 165.6999999999999 386.6 170.6999999999999C417.9 186.6999999999999 406.4 233.2 371.7 233.2zM302.8 117C284.6 98.8 226.7 99.1 209.2 117C207 119.2 203.1 119.2 200.9 117C198.4 114.5 198.4 110.6 200.9 108.4C223.7 85.6 288.2 85.6 311.1 108.4C313.6 110.6 313.6 114.5 311.1 117C308.9000000000001 119.2 305 119.2 302.8 117zM310.5 192C296.9 192 285.9 180.9 285.9 167.1C285.9 153.5 297 142.5 310.5 142.5C324.3 142.5 335.4 153.6 335.4 167.1C335.4 180.9 324.4 192 310.5 192z" />
+    <glyph glyph-name="redhat"
+      unicode="&#xF7BC;"
+      horiz-adv-x="512" d=" M312.4 46.8C313.7 45.5 316 41.2 313.2 35.7C311.6 32.8 310 30.8 307 28.4C303.4 25.5 296.4 22.2 286.7 28.3C281.5 31.6 281.2 32.6999999999999 274 31.6999999999999C268.9 30.9999999999999 266.9 36.1999999999999 268.7 40.4999999999999C270.6 44.8 278.1 48.1999999999999 287.5 42.6999999999999C291.7 40.1999999999999 298.3 34.9999999999999 304.1 39.5999999999999C306.5 41.4999999999999 307.9000000000001 42.7999999999999 311.3 46.5999999999999C311.6 47.0999999999999 312.1 47.0999999999999 312.4000000000001 46.7999999999999M256 418.3C114.6 418.3 0 303.7 0 162.4C0 133.8 4.7 106.3 13.3 80.6H31.1C46.9 80.6 61.5 84.4 73.9 90.8C77 92.4 80.5 93.4 84.3 93.4C103.4 93.4 102.6 78.1 114.6 70.5C115.3 70.1 122.1 66.2 130.4 66.6C133.8 66.8 138.9 67.6 140.2 71.1C141.6 75.1 139.9 78.1 134.9 80.2000000000001C125.2 84.3000000000001 125.4 91.2000000000001 119.1 98.4C115.2 102.7000000000001 110.5 106.9 109.6 116.2000000000001C108.7 125.3000000000001 113.8 136.1 124.3 138.9C128.3 140.0000000000001 137.1 140.7000000000001 145.8 133.9C154.1 127.5000000000001 159.7 117.0000000000001 162.1 112.7000000000001C163.8 109.7000000000001 169.9 106.2000000000001 174.8 110.6C179.7 115.1 184.2 115.1 187.9 109.4C191 104.5000000000001 214.1 73.8 239 73.0000000000001C264.3 72.2000000000001 277.8 78.7000000000001 288.9 78.3000000000001C296.6 78.0000000000001 300.4 74.1000000000001 304.8 73.4000000000001C312.6 72.2000000000001 318.1 79.2000000000001 326.7 78.8000000000001C333.5999999999999 78.5000000000001 341.2 73.8000000000001 349 73.8000000000001C356.8 73.8000000000001 373.1 83.2000000000001 372.8999999999999 79.3000000000001C372.5 72.5000000000001 367.2 60.4000000000001 366 54.8000000000001C365.1 50.9000000000001 365.8999999999999 41.6000000000001 363.6 34.0000000000001C361.5 26.4 354.4 16.6000000000001 352.5 13.9C346.2 4.5000000000001 341.7 1.7 336.5 -8.2C330.8 -19.2 321.3999999999999 -29.4 318.8999999999999 -32.7C318.5 -33.2 318.5 -33.6 318.7999999999999 -33.9C320.7999999999999 -35.8 337.5999999999999 -31.7 344.0999999999999 -25.6C350.3999999999999 -19.7 361.3999999999999 -1.6 378.7999999999999 2.2C387.5999999999999 4.2 391.0999999999999 7.2 391.7999999999999 10.3000000000001C392.2999999999999 13.0000000000001 391.1999999999999 13.2 391.1999999999999 15.1000000000001C391.1999999999999 16.7000000000001 392.0999999999999 18.1000000000001 393.4999999999999 18.8000000000001C407.8999999999999 24.8000000000001 436.7999999999999 31.2 471.1999999999999 23.3000000000001C497.1999999999999 63.4000000000001 512.2999999999998 111.1000000000001 512.2999999999998 162.4000000000001C512 303.7 397.4 418.3 256 418.3zM464.2 167.5C451.9 100.1 341.7 77.5 234.5 109.9C132.3 140.8 42.6 202.4 52.9 238.5C58.9 259.5 92.3 268.5 136.7 263.7C130 250 130.5 233.8 159.9 215.9C195.9 195.5 256.6 178.1 273 179.8C279.1 180.4 284.6 183.5 279.1 187.1C254.3 203.7 286.1 223.5 223.4 235.5C140.5 251.3 143.8000000000001 274.7 146.2000000000001 288.2C146.2000000000001 288.2 153.6000000000001 321.3 156.6000000000001 332.9C159.7000000000001 344.5 167.6000000000001 371.2 220.9 359.2C251.7000000000001 352.3 268.4000000000001 360.9 276.8 363.1C299.9000000000001 369 325.4000000000001 364.9 339.5 350.4C354.1 335.4 374.2 289.1 383.8 254.5C388.7 236.9 387.4000000000001 228.5 384.9000000000001 222.5C383.1 218.5 382.1 215.9 376.0000000000001 205.6C374.9000000000001 203.8 375.8000000000001 201.8 378.2000000000001 203C394.2000000000001 211.2 397.8000000000001 222.1 400.3000000000001 230.6C444.0000000000001 220.7 469.7 198.1 464.2 167.5zM229.6 313C203.3 313 195.2 306 183.8 320.1C181.5 323 174.2 325.7 170.2 316.5C166.2 307.2 173.6 297.3 179.8 296C179.8 296 190.1 276.9 197.9 285.2C203.4 291.1 206.5 294.3 236.1 296.4C264 298.5 249.5000000000001 313 229.6 313zM290.7 353.2C280.9 352.2 272.4 349.8 266.6 346.8C265.9 346.5 265.9 345.3 267.1 345.3C301.3 350.7 316 337.2 285.4 330.2C284.2 329.9 284.2 328.3 285.4 328C289.7 326.8 294.7 326 300 325.9C316.4 325.6 329.9 331.5 330.1 339.1C330.3 345.5 317.7000000000001 356 290.7000000000001 353.2z" />
+    <glyph glyph-name="renren"
+      unicode="&#xF18B;"
+      horiz-adv-x="512" d=" M214 278.9C214 168.5 153 73.5 66.4 31.5C30 74.8 8 130.3 8 191.4C8 314.1 97.1 415.8 214 435.5V278.9zM255 -56C212.1 -56 171.7 -45 136.5 -25.6C193.7 10.5 239.9 65.1 255 129C270.5 65.1 316.7 10.5 373.8 -25.7C338.7 -45 298.3 -56 255 -56zM445.6 31.5C359 73.5 298 168.4 298 278.9V435.5C414.9 415.8 504 314.1 504 191.4C504 130.3 482 74.8 445.6 31.5z" />
+    <glyph glyph-name="replyd"
+      unicode="&#xF3E6;"
+      horiz-adv-x="448" d=" M320 -32H128C57.6 -32 0 25.6 0 96V288C0 358.4 57.6 416 128 416H320C390.4 416 448 358.4 448 288V96C448 25.6 390.4 -32 320 -32zM193.4 174.8C187.3 176.8 181.8 177.9 177 177.9C169.8 177.9 163.5 176.0000000000001 158.1 172.3C152.7 168.6 148.5 163.3 145.3 156.5H144.2L140 174.8H112V35.9H148.1V125.6C149.6 131 152.5 135.4 156.8 138.8C161.1 142.1999999999999 166.6 143.9 173 143.9C177.6 143.9 182.8 142.9 188.6 140.8L193.4 174.8zM308.6 71.4C305.4000000000001 69 300.9000000000001 66.6 294.9000000000001 64.3C288.9000000000001 61.9999999999999 282.1 60.8 274.5000000000001 60.8C262.3000000000001 60.8 253.4000000000001 63.8 248.0000000000001 69.6999999999999C242.5000000000001 75.5999999999999 239.5000000000001 84.3999999999999 239.0000000000001 96.0999999999999H322.3000000000001C323.2000000000001 100.8999999999999 323.9000000000001 105.4999999999999 324.4000000000001 109.9999999999999C324.9000000000001 114.3999999999999 325.1000000000001 118.5999999999999 325.1000000000001 122.4999999999999C325.1000000000001 133.1999999999999 323.5000000000001 142.1999999999999 320.4000000000001 149.3999999999999C317.2000000000001 156.5999999999999 313.1000000000001 162.3999999999999 307.9000000000001 166.5999999999999C302.7000000000001 170.8999999999999 296.8000000000001 173.8999999999999 290.1000000000001 175.7999999999999C283.4000000000001 177.5999999999999 276.6000000000001 178.5999999999999 269.5000000000001 178.5999999999999C248.4000000000001 178.5999999999999 232.0000000000001 172.4999999999998 220.3000000000001 160.2999999999999S202.8000000000001 129.7999999999999 202.8000000000001 105.2999999999998C202.8000000000001 82.4999999999998 208.0000000000001 64.5999999999999 218.4000000000001 51.5999999999999C228.8000000000001 38.4999999999998 245.2000000000001 31.9999999999998 267.6000000000001 31.9999999999998C278.3000000000001 31.9999999999998 288.5000000000001 33.4999999999998 298.0000000000001 36.5999999999999C307.5000000000001 39.6999999999999 315.1000000000001 43.3999999999999 320.6000000000001 47.7999999999998L308.6000000000001 71.3999999999999zM286.8 141.7C290.6 136.3 292.1 128.6 291.4000000000001 118.6H239.7000000000001C240.6000000000001 128 243.4000000000001 135.6 247.9000000000001 141.2C252.4000000000001 146.8 259.4000000000001 149.7 268.9000000000001 149.7C277.1 149.8 283.0000000000001 147.1 286.8 141.7zM366.7000000000001 139.2C370.8000000000001 135.3 376.1 133.4 382.8000000000001 133.4C389.8000000000001 133.4 395.4000000000001 135.3 399.5000000000001 139.2S405.6000000000001 148.3 405.6000000000001 154.8S403.6000000000001 166.4 399.5000000000001 170.2C395.4000000000001 174 389.9000000000001 175.9 382.8000000000001 175.9C376.1000000000001 175.9 370.8000000000001 174 366.7000000000001 170.2C362.6 166.4 360.6 161.3 360.6 154.8S362.6 143.1 366.7000000000001 139.2zM366.7000000000001 38.7C370.8000000000001 34.8 376.1 32.9 382.8000000000001 32.9C389.8000000000001 32.9 395.4000000000001 34.8 399.5000000000001 38.7S405.6000000000001 47.8 405.6000000000001 54.3S403.6000000000001 65.9 399.5000000000001 69.7C395.4000000000001 73.5 389.9000000000001 75.4 382.8000000000001 75.4C376.1000000000001 75.4 370.8000000000001 73.5 366.7000000000001 69.7C362.6 65.9 360.6 60.8 360.6 54.3C360.6 47.7 362.6 42.6 366.7000000000001 38.7z" />
+    <glyph glyph-name="researchgate"
+      unicode="&#xF4F8;"
+      horiz-adv-x="448" d=" M0 416V-32H448V416H0zM262.2 81.6C255.6 78.6 229 75.6 212.2 95.8C203 106.4 186.9 129.1 170 159.4C161.1 159.4 155.3 159.4 148.6 160.0000000000001V113.6000000000001C148.6 90.1000000000001 154.6 92.4000000000001 174.4 89.7000000000001V81.6000000000001C167.5 81.9000000000001 151.3 82.4000000000001 138.8 82.4000000000001C125.7 82.4000000000001 112.7 81.8000000000001 105.2 81.6000000000001V89.7000000000001C120.7 92.6000000000001 127.2 91.0000000000001 127.2 113.6000000000001V223C127.2 245.6 120.8 244 105.2 246.9V255C131 254 158.3 255.6 176.1 255.6C207.8 255.6 232.0000000000001 241.2 232.0000000000001 210C232.0000000000001 188.9 215.3000000000001 167.8 192.8 162.5C206.4 138.3 222.8 116.9 235 103.6C242.2 95.8 252.2 88.9 262.2 88.9V81.6zM285.1 216.6C261.8 216.6 252.9 232.3 252.9 248.8V281C252.9 293.2 261.7 311.4 286.9 311.4S317.3 293.5 317.3 293.5L306.6 286.3S301.1 298.8 286.9 298.8C279 298.8 267.2 291.5 267.2 279.1V252.3C267.2 238.9 273.8 229 285.1 229C299.2 229 306.6 239.9 306.6 255.8H288.7V266.5H319.1C319.1 246 323.8 216.6 285.1 216.6zM168.6 171.9C159.2 171.9 155 172.2000000000001 148.6 172.7000000000001V242.4000000000001C155 243.0000000000001 163.6 243.0000000000001 171.1 243.0000000000001C194.4 243.0000000000001 208.3 230.8000000000001 208.3 208.5C208.3 186.6 193.3 171.9 168.6 171.9z" />
+    <glyph glyph-name="resolving"
+      unicode="&#xF3E7;"
+      horiz-adv-x="496" d=" M281.2 169.8C327.2 183.1 330.8 193.3 325.2 213.2L314 252.5C307.9 273.4 295.6 280.6 242.9 265.3L54.7 211.2L83.3 112.6L281.2000000000001 169.8zM248.5 440C131.4 440 33.2 359.3 7.2 250.5L229.1 314.4C263.9 324.6 283.3 326.1 308.4 322.6C344.7 316.5 361.1 297.6 369.8 267.4L380.5 229.6C388.7 201.5 381.5 179 357 156C337.6 138.6 325.8 131.5 295.6 122.8L203 96.2L423.4 69.1L433.1 34.9L385 21.6L98.1999999999999 58.9L121.1999999999999 -21.3C158 -43.3 201.5 -56 247.5 -56C384.5 -56 495.9999999999999 55.4 495.9999999999999 192.3C497 328.6 385.5 440 248.5 440zM38.3 59.4L0 191.2C0 142.7 14.3 97.8 38.3 59.4z" />
+    <glyph glyph-name="rev"
+      unicode="&#xF5B2;"
+      horiz-adv-x="410.22" d=" M270.67 173.11C270.67 136.9500000000001 241.26 107.54 205.11 107.54S139.54 136.9500000000001 139.54 173.11S168.95 238.67 205.11 238.67S270.67 209.27 270.67 173.11zM410.2200000000001 178.16H410.0900000000001C408.6 239.7100000000001 379.99 294.51 335.7700000000001 331.14L290.3900000000001 304.9400000000001C333.5600000000001 276.9100000000001 362.2000000000001 228.3100000000001 362.2000000000001 173.12C362.2000000000001 86.5 291.73 16.03 205.1100000000001 16.03S48.02 86.5 48.02 173.12C48.02 254.98 110.98 322.39 191.01 329.55V290.43L299.7700000000001 353.2200000000001L191.01 416V377.68C84.31 370.43 0 281.64 0 173.11C0 61.52 89.12 -29.1799999999999 200.06 -31.87V-32H410.2200000000001V178.16z" />
+    <glyph glyph-name="rocketchat"
+      unicode="&#xF3E8;"
+      horiz-adv-x="582.5" d=" M491.9 342.1C414.1 393.5 310.7 405.2 224.8 389.7C128.7 482.4 21 439.8 0 427.5C0 427.5 73.9 364.7 61.9 309.7C-25.6 220.5 16 121.2 61.9 74.3C73.9 19.3 0 -43.5 0 -43.5C20.8 -55.8 128.2 -98.2999999999999 224.8 -6.1C310.5 -21.5 413.9 -9.9 491.9 41.6C612.5 118.6 612.9000000000001 264.7 491.9 342.1zM297.5 42.1C267.4 42 237.5 45.9 208.4 53.6L188.4 34.3C177.3 23.5 164.8 14.2 151.4 6.6C135.1 -1.6 117.3 -6.7 99.1 -8.3C100.1 -6.4999999999999 101 -4.6999999999999 101.9 -2.9999999999999C121.9 34.1000000000001 127.3 67.3000000000001 118.1 96.8000000000001C85.2 122.7000000000001 65.5 155.8000000000001 65.5 192.0000000000001C65.5 274.9000000000001 169.4 342.1 297.5 342.1S529.5 274.9000000000001 529.5 192.0000000000001C529.5 109.1 425.6 42.1 297.5 42.1zM186.2 156.3C167.1 156 151.3 171.3 151 190.4C150.3 236.3000000000001 219.6 237.3000000000001 220.3 191.5000000000001V191.0000000000001C220.5 171.7000000000001 204.8 156.3000000000001 186.2 156.3000000000001zM260.8 190.4C260 236.3000000000001 329.3 237.4000000000001 330.1 191.6V191C330.5 145.4 261.6 144.9 260.8 190.4zM405.8 156.3C386.7 156 370.9 171.3 370.6 190.4C369.9 236.3000000000001 439.2 237.3000000000001 439.9 191.5000000000001V191.0000000000001C440.1 172.0000000000001 424.9 156.4 405.8 156.3000000000001z" />
+    <glyph glyph-name="rockrms"
+      unicode="&#xF3E9;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM405.4 20.5H315.4L203.4 151.8C185.5 172.2 199.5 207.9 230 207.9H305.3L220.7 307.2L136.4 208.3H46.4L193.5 380.8C207.9 399.2 234.8 398.1 248 380.8L405.7 195.7C424.7 172.9 407.7 138.5 378.1 139.6C377.5 139.6 303.9 139.4 303.9 139.4L405.4 20.5z" />
+    <glyph glyph-name="safari"
+      unicode="&#xF267;"
+      horiz-adv-x="512" d=" M236.9 191.2C236.9 200.3 243.5 208.9 253.2 208.9C262.1 208.9 270.6 202.5 270.6 192.8C270.6 183.7 264.2000000000001 175.1 254.5000000000001 175.1C245.5000000000001 175.1 236.9000000000001 181.8 236.9000000000001 191.2zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM477.4 192C477.4 314.3 378.3 413.4 256 413.4S34.6 314.3 34.6 192S133.7 -29.4 256 -29.4S477.4 69.7 477.4 192zM404.9 95.4C404.9 91.8 417.9 85.2 421.2 83.2C393.8 41.7 351.4 11.8 303.3 -0.1L298.9 18.4C298.6 20.9 297 21.2 294.7 21.2C292.8 21.2 291.7 18.4 291.9 17L296.3 -1.8C283 -4.6 269.5 -6 255.9 -6C219.6 -6 183.9 4.2 152.9 23.1C154.5999999999999 25.9 165.0999999999999 41.1 165.0999999999999 43.3C165.0999999999999 45.2 163.4 46.9 161.5 46.9C157.5999999999999 46.9 149.3 30.3 146.8 27.0000000000001C105 54.7 74.8 97.6 63.2 146.6L82.3 150.8C84.5 151.4 85.1 153 85.1 155C85.1 156.9 82.3 158 80.7 157.8L62 153.5C59.5 166.2 58.1 179 58.1 192C58.1 229.1 68.6 265.6 88.3 296.9C91.1 295.2000000000001 104.4 286.1 106.6 286.1C108.5 286.1 110.2 287.5 110.2 289.4C110.2 293.3 95.5 300.7000000000001 92.2 303C120.4 344.2 163.3 373.9 212 384.9L216.2 366.4C216.8 364.2 218.4 363.6 220.4 363.6S223.4 366.4 223.2 368L219 386.3C231.2 388.5 243.6 389.9 256.1 389.9C293.2000000000001 389.9 329.4000000000001 379.4 361 359.7C359.1 356.9 350.2 343.9 350.2 341.7C350.2 339.8 351.6 338.1 353.5 338.1C357.4 338.1 364.8 352.5 366.8 355.8C407.8 328.1 437.1 285.8 448.5 237.6L433 234.3C430.5 233.7 430.2 232.1 430.2 229.9C430.2 228 433 226.9 434.4 227.1L450.2 230.7C452.7 218 454.1 205 454.1 192C454.1 155.7 444.1 120 425.3 89.3C422.5 90.7 410.9 99 408.7 99C406.5999999999999 99 404.8999999999999 97.3 404.8999999999999 95.4zM371.7 337.6C358.7 325.4 237.5 213.9 234.1 208.1L137.5 47.6C150.2 59.4999999999999 271.7 171.6 274.8 176.9L371.7000000000001 337.6z" />
+    <glyph glyph-name="sass"
+      unicode="&#xF41E;"
+      horiz-adv-x="640.4" d=" M551.1 156.1C528.7 156 509.3 150.6 493.1 142.6C487.2 154.5 481.1 164.9 480.1 172.7000000000001C478.9 181.8000000000001 477.6 187.2000000000001 479 198.0000000000001S486.7 224.1000000000001 486.6 225.2000000000001C486.5 226.3000000000001 485.2 231.8000000000001 472.3 231.9000000000001C459.4 232.0000000000001 448.3 229.4000000000001 447 226.0000000000001C445.7 222.6 443.2 214.9 441.7 206.9C439.4 195.2000000000001 415.9 153.4 402.6 131.6C398.2 140.1 394.5 147.6 393.7 153.6C392.5 162.7000000000001 391.2 168.1 392.6 178.9S400.3 205 400.2 206.1C400.1 207.2 398.8 212.7 385.9 212.8C373 212.9 361.9 210.3 360.6 206.9C359.3 203.5 357.9 195.5 355.3 187.8C352.7 180.1 321.4 110.5 313.2 92.4C309 83.2 305.3999999999999 75.8 302.8 70.8S302.6 70.4999999999999 302.4 69.9C300.2 65.6 298.9 63.2 298.9 63.2V63.1C297.2 59.9 295.3 56.9999999999999 294.4 56.9999999999999C293.8 56.9999999999999 292.5 65.3999999999999 294.7 76.8999999999999C299.4 101.0999999999999 310.5 138.6999999999999 310.4 140C310.3 140.6999999999999 312.5 147.1999999999999 303.1 150.6999999999999C294 154 290.7 148.5 289.9 148.5C289.1 148.5 288.5 146.5 288.5 146.5S298.6 188.8999999999999 269.1 188.8999999999999C250.7 188.8999999999999 225.1 168.6999999999999 212.5 150.3999999999999C204.6 146.0999999999999 187.5 136.7999999999999 169.5 126.8999999999999C162.6 123.0999999999999 155.5 119.1999999999999 148.8000000000001 115.5C148.3000000000001 116 147.9 116.5 147.4 117C111.6 155.1999999999999 45.5 182.1999999999999 48.3 233.5C49.3 252.2 55.8 301.3 175.4 360.9C273.4000000000001 409.7 351.8000000000001 396.3 365.3000000000001 366.5C384.7000000000001 324 323.4000000000001 244.9 221.6000000000001 233.5C182.8000000000001 229.2 162.4000000000001 244.2 157.3000000000001 249.8C152.0000000000001 255.7 151.2000000000001 256 149.2000000000001 254.9C145.9000000000001 253.1 148.0000000000001 247.9 149.2000000000001 244.8C152.2000000000001 236.9 164.7000000000001 222.9 186.0000000000001 215.9C204.7000000000001 209.8 250.2000000000001 206.4 305.2000000000001 227.7C367 251.5 415.1 317.8 401 373.3C386.6 429.7 293.1 448.2 204.6 416.8C151.9 398.1 94.9 368.7 53.9 330.4C5.2 284.8 -2.6 245.1 0.6 228.5C12 169.6 93.2 131.2 125.7 102.8C124.1 101.9 122.6 101.1 121.2 100.3C104.9 92.2 43 59.8 27.5 25.6C10 -13.2 30.4 -41 43.8 -44.8C85.6 -56.4 128.4 -35.4999999999999 151.4 -1.1999999999999S171.6 77.9000000000001 161 98.3000000000001C160.9 98.6000000000001 160.7 98.8000000000001 160.6 99.1000000000001C164.8 101.6000000000001 169.1 104.1000000000001 173.4 106.6000000000001C181.7 111.5000000000001 189.8 116.0000000000001 196.9 119.9000000000001C192.9 109.1000000000001 190 96.1000000000001 188.5 77.3000000000001C186.7 55.3000000000001 195.8 26.8000000000001 207.6 15.6000000000001C212.8 10.7000000000001 219.1 10.6000000000001 223 10.6000000000001C236.8 10.6000000000001 243 22.0000000000001 249.9 35.6000000000001C258.4 52.2000000000001 265.9 71.5000000000001 265.9 71.5000000000001S256.5 19.3000000000001 282.2 19.3000000000001C291.6 19.3000000000001 301 31.4000000000001 305.2 37.6000000000001V37.5000000000001S305.4 37.9 305.9 38.7C306.9 40.2 307.4 41.1 307.4 41.1V41.4C311.2 47.9 319.5 62.8 332 87.4C348.2 119.2000000000001 363.7 158.9 363.7 158.9S365.1 149.2000000000001 369.9 133.1C372.7 123.6 378.6 113.2000000000001 383.3 103.1C379.5 97.9 377.2 94.9 377.2 94.9S377.2 94.8 377.3 94.7000000000001C374.3 90.7000000000001 370.9 86.4 367.4 82.2000000000001C354.6 67.0000000000001 339.4 49.6 337.4 44.6C335 38.7 335.6 34.3 340.2 30.9C343.6 28.3 349.6 27.9 355.9 28.4C367.4 29.2 375.5 32.0000000000001 379.4 33.8C385.6 36 392.8 39.5 399.6 44.4C412.1 53.6 419.7 66.8 419 84.2000000000001C418.6 93.8000000000001 415.5 103.4 411.7 112.4C412.8 114.0000000000001 414 115.7000000000001 415.0999999999999 117.4C434.8999999999999 146.3 450.2 178.0000000000001 450.2 178.0000000000001S451.5999999999999 168.3000000000001 456.3999999999999 152.2000000000001C458.7999999999999 144.1 463.4999999999999 135.2000000000001 467.7999999999999 126.5000000000001C449.1999999999999 111.4 437.6999999999999 93.9 433.6999999999999 82.4C426.2999999999999 61.1 432.0999999999999 51.5000000000001 442.9999999999999 49.3C447.8999999999999 48.3 454.8999999999999 50.6 460.0999999999999 52.8C466.5999999999999 55 474.3999999999999 58.5 481.6999999999999 63.9C494.1999999999999 73.1 506.3 86.0000000000001 505.4999999999999 103.5000000000001C505.1999999999999 111.4 502.9999999999999 119.3000000000001 500.1 126.9C515.8 133.5000000000001 536.1999999999999 137.1 562.1999999999999 134.1C617.9 127.6 628.8 92.8 626.6999999999999 78.3C624.5999999999999 63.7 612.9 55.7 608.9999999999999 53.3C605.0999999999999 50.9 603.8999999999999 50 604.1999999999999 48.2C604.6999999999999 45.6 606.4999999999999 45.7 609.8 46.3C614.4 47.1 639 58.1 640.0999999999999 85C641.6999999999999 119 608.9999999999999 156.4 551.0999999999999 156.1zM121.8 11.4C103.4 -8.7 77.6 -16.3 66.5 -9.9C54.6 -3 59.3 26.6 82 48C95.8 61 113.6 73 125.4 80.4C128.1 82 132 84.4 136.8 87.3C137.6 87.8 138 87.9999999999999 138 87.9999999999999C138.9 88.6 139.9 89.1 140.9 89.6999999999999C149.2 59.3 141.2 32.4999999999999 121.8 11.3999999999999zM256.2 102.8C249.8 87.1 236.3 47.1 228.1 49.1999999999999C221.1 50.9999999999999 216.8 81.4999999999999 226.7 111.4999999999999C231.7 126.6 242.3 144.6 248.6 151.6C258.7 162.9 269.8 166.5 272.4 162C275.9 156.1 260.2 112.6 256.2 102.8zM367.2 49.8C364.5 48.4 362 47.4999999999999 360.8 48.1999999999999C359.9000000000001 48.6999999999999 361.9000000000001 50.5999999999999 361.9000000000001 50.5999999999999S375.8 65.4999999999999 381.3 72.2999999999999C384.5 76.2999999999999 388.2 80.9999999999999 392.2 86.1999999999999C392.2 85.6999999999999 392.3 85.1999999999999 392.3 84.5999999999999C392.2 66.6999999999999 375 54.5999999999999 367.2 49.7999999999998zM452.8 69.3C450.8 70.6999999999999 451.1 75.4 457.8 89.9999999999999C460.4 95.6999999999999 466.4 105.3 476.8 114.5C477.9999999999999 110.6999999999999 478.6999999999999 107.1 478.6999999999999 103.6999999999999C478.5999999999999 81.1999999999999 462.4999999999999 72.8 452.8 69.3z" />
+    <glyph glyph-name="schlix"
+      unicode="&#xF3EA;"
+      horiz-adv-x="448" d=" M350.5 290.3L296.3 336.4L369.7000000000001 375.4L448.0000000000001 331.2L350.5000000000001 290.3zM192 325.9L237.7 354.1L272.4 319.5L217 290.5L192 325.9zM126.9 319.3L158.8 341.4L176 313L139.3 290.5L126.9 319.3zM103.6 231.1L94.8 265.9000000000001L124.4 284.2000000000001L137.5 248.9000000000001L103.6 231.1zM82.4 314.8L106.3 332.9L115.2 308.9L88.5 290.6L82.4 314.8zM59 241.5L55.4 269.9L77.7 285.4L83.8 256.7000000000001L59 241.5zM28.4 224.9L49.2 237.7L52.5 204.3L29.6 192.3L28.4 224.9zM1.4 180L20.6 190.2L21 152L0 143.2L1.4 180zM60.5 120.7L32.2 112.4L30.6 159.2L55.7 169.9L60.5 120.7zM99 184.8L67.9 171.8L62.7 212.6L90.1 227L99 184.8zM123.2 71L81.6 65.1L73.5 128.6L108.7 139.4L123.2 71zM151.7 210.9L172.9 153.8L126.7 140.2L113 194.3L151.7 210.9zM237.4 -19.6L166.5 -16.3L142.2 79.5L197.4 88.1L237.4 -19.6zM152.5 260.1L194.7 282.5L222.7 236.6L171.9 215.3L152.5 260.1zM193.5 165.1999999999999L254.8 183.8999999999999L307.6 97.3L227.8 85.9999999999999L193.5 165.1999999999999zM244.9 250.8L312.2 279.5999999999999L377.7 214.1999999999999L289.1 188L244.9000000000001 250.8z" />
+    <glyph glyph-name="scribd"
+      unicode="&#xF28A;"
+      horiz-adv-x="384" d=" M42.3 195.3C26.2 214.3 17.6 241.2 17.5 275.2000000000001C17.5 375.6 92.7 428.3 184.7 428.3C283.3 429.9000000000001 341.5 379.3 369 357.7000000000001L318.5 285.6L281.2 310.2000000000001L308.1 348.8C271.6 372.8 228.7 385.3 185.1 384.6C134.4 385.4 73.4 357.4 73.4 308.4C73.4 289.7000000000001 84.6 287.7000000000001 102 292.8C125.3 298.1 143.9 292.2000000000001 157.8 278.8C184.2 254.5 181 211.2 157.1 186.9C127.9 157.4 71.9 159.6 42.3 195.3zM360 189.4C344.5 208.2000000000001 321.1 218.8000000000001 296.8 218C258.7 220 225.7 190 226.3 150.8C225.6 134 232.3 117.8 244.7 106.5C258.8 92.6 277.7000000000001 86.8 301 92.1C318.4 97.2000000000001 329.6 95.2000000000001 329.6 76.5C329.6 72.2 329.1 68 328.2000000000001 63.8C311.5000000000001 22.9 268.7000000000001 -0.6 206.8000000000001 -0.6C154.9 -0.8 104.4 15.8 62.7000000000001 46.7L96.4000000000001 86.1L60.8000000000001 113.5L0 41.7L15.4 27.9C67.9 -18.9 135.8 -44.6 206.1 -44.3C257.5 -44.3 300.5 -33.8 339.7 -0.2C396.8 51.2 393.9 149 360 189.4z" />
+    <glyph glyph-name="searchengin"
+      unicode="&#xF3EB;"
+      horiz-adv-x="460" d=" M220.6 317.7L153.4 289.5V404.8L98.7 214.5L153.4 238.7V108.4L220.6 317.7zM137.4 414.4L136.1 409.7L120.9 356.8C80.6 341.3 52 302.2 52 256.5C52 204.2 86.3 160.6 135.4 151V97.4C57.5 107.9 0 175.6 0 256.4C0 336.9 59.8 403.6 137.4 414.4zM448.8 -32.8C437.6 -44 425.7 -45.1 420.2 -43.3C414.8 -41.5 393.0999999999999 -23.4 359.8 1.1C326.5 25.7 326.2 36.8 316.8 57.8C307.4 78.6999999999999 286.4 100.4 259.3 110.1999999999999L249.6 124.8999999999999C224.9 107.9999999999999 196.6 97.9999999999999 168.3 96.1999999999999L170.4 102.8L186.3 152.3C232.8 164.1999999999999 267.2 206.3 267.2 256.5C267.2 311 228.8 358.5999999999999 171.1999999999999 363.5999999999999V415.7C254.4 410.6 320 341.2 320 256.4C320 222.8 308.8 191.7 291 166L305.6 156.4C315.4000000000001 129.3 337.1 108.4 358 99S390.2 89.3 414.8 56C439.4000000000001 22.8 457.5 1.1 459.3 -4.3S460 -21.6 448.8 -32.8zM438.9 -14.9C438.9 -10.5000000000001 435.3 -6.9 430.9 -6.9S422.9 -10.5000000000001 422.9 -14.9S426.5 -22.9 430.9 -22.9S438.9 -19.3 438.9 -14.9z" />
+    <glyph glyph-name="sellcast"
+      unicode="&#xF2DA;"
+      horiz-adv-x="448" d=" M353.4 416H94.7C42.6 416 0 373.4 0 321.4V62.7000000000001C0 10.6 42.6 -32 94.7 -32H353.4C405.5 -32 448.1 10.6 448.1 62.6V321.4C448.1 373.4 405.5 416 353.4 416zM303.4 99.6C275.5 51.4 213.5 34.7 165.2 62.4C142.3 22.6 110.3 53.8 122.9 75.6L138.6 102.8C144.5 113.1 157.8 116.7 168.1 110.7C186.7 99.9 168 110.8 186.6 100C214.2 84.1 250 93.7 266 121.3C281.9 148.9 272.3 184.7 244.7 200.7C226.9 210.9 244.1 201.1 226.1 211.3C201.5 225.5 222.7 263.2000000000001 247.7 248.8C266.3 238 247.6 248.9 266.2 238.1C314.6 210.1 331.3 147.8 303.4 99.6zM325.2 308.4000000000001C308.2 278.9000000000001 308.9 279.6 306.2 276.9000000000001C299.7 270.4000000000001 289.9 268.2000000000001 279.7 273.3000000000001C261.1 284.1 279.8 273.2000000000001 261.2 284C233.6 299.9000000000001 197.8 290.3000000000001 181.8 262.7000000000001S175.5 199.3 203.1 183.3C203.1 183.3 221.6 172.7 221.7 172.7C246.3 158.5 225.1 120.8 200.1 135.2C181.5 146 200.2 135.1 181.6 145.9C133.4 173.7 116.7 236 144.5 284.3C172.4 332.5 234.4 349.2 282.7 321.5L287.5 329.9C301.8 354.8 339.5 333.2 325.2 308.4z" />
+    <glyph glyph-name="sellsy"
+      unicode="&#xF213;"
+      horiz-adv-x="640" d=" M539.71 210.692C542.774 222.949 544 235.513 544 248.076C544 340.618 468.618 416 376.076 416C298.856 416 231.4420000000001 362.988 213.056 288.219C197.734 301.395 178.122 308.749 157.899 308.749C111.628 308.749 73.937 271.059 73.937 224.788C73.937 217.434 74.857 209.773 77.002 202.419C34.102 182.194 6.217 138.6810000000001 6.217 91.185C6.216 23.157 61.68 -32 129.401 -32H510.599C578.319 -32 633.783 23.157 633.783 91.184C633.784 147.568 594.867 197.209 539.71 210.692zM199.88 46.446C199.88 38.172 192.832 31.125 184.559 31.125H153.61C145.336 31.125 138.289 38.173 138.289 46.446V157.374C138.289 165.6470000000001 145.337 172.6950000000001 153.61 172.6950000000001H184.559C192.833 172.6950000000001 199.88 165.6470000000001 199.88 157.374V46.446zM289.357 46.446C289.357 38.172 282.309 31.125 274.035 31.125H243.086C234.812 31.125 227.765 38.173 227.765 46.446V177.904C227.765 186.178 234.813 193.225 243.086 193.225H274.035C282.309 193.225 289.357 186.177 289.357 177.904V46.446zM378.834 46.446C378.834 38.172 371.7869999999999 31.125 363.5129999999999 31.125H332.5639999999999C324.2899999999999 31.125 317.2419999999999 38.173 317.2419999999999 46.446V209.16C317.2419999999999 217.434 324.2899999999999 224.481 332.5639999999999 224.481H363.5129999999999C371.7869999999999 224.481 378.834 217.433 378.834 209.16V46.446zM465.8609999999999 46.446C465.8609999999999 38.172 458.8129999999999 31.125 450.5389999999999 31.125H422.0419999999999C413.7679999999999 31.125 406.7209999999999 38.173 406.7209999999999 46.446V271.059C406.7209999999999 279.6380000000001 413.7679999999999 286.687 422.0419999999999 286.687H450.5389999999999C458.8129999999999 286.687 465.8609999999999 279.639 465.8609999999999 271.0590000000001V46.446z" />
+    <glyph glyph-name="servicestack"
+      unicode="&#xF3EC;"
+      horiz-adv-x="496" d=" M88 232C169.7 221.8 361.7 129.7 392 0H0C99.5 8.1 184.5 137 88 232zM120 384C152.3 348.4 167.7 300.1 166.4 250.4C249.3 216.7 373.7 126.7 400 0H496C455.3 216.1 222.8 368.5 120 384z" />
+    <glyph glyph-name="shirtsinbulk"
+      unicode="&#xF214;"
+      horiz-adv-x="448" d=" M395.2080000000001 226.417H406V192.875H395.2080000000001V226.417zM395.2080000000001 236.042H406V269.584H395.2080000000001V236.042zM395.2080000000001 149.709H406V183.25H395.2080000000001V149.709zM358.75 312.75H325.208V302.25H358.75V312.75zM395.208 106.542H406V140.0840000000001H395.2080000000001V106.542zM311.5 312.75H277.958V302.25H311.5V312.75zM264.25 312.75H231V302.25H264.25V312.75zM217 312.75H183.75V302.25H217V312.75zM395.208 279.208H406V312.75H372.458V302.25H395.208V279.208zM139.416 20.208L170.041 6.791L174.416 16.708L143.791 30.1249999999999L139.416 20.208zM179.083 3L209.417 -10.708L213.791 -0.792L183.458 12.6249999999999L179.083 2.9999999999999zM395.208 63.375H406V96.917H395.2080000000001V63.375zM60.3749999999999 55.208L91 41.792L95.375 51.416L64.75 65.125L60.375 55.208zM100.0409999999999 37.709L130.666 24.292L135.041 34.209L104.4159999999999 47.625L100.0409999999999 37.709zM232.458 -0.792L236.833 -10.708L267.459 3L263.084 12.625L232.458 -0.792zM350.875 51.4160000000001L355.25 41.792L385.874 55.208L381.5 65.125L350.875 51.416zM311.5 34.209L315.875 24.292L346.5 37.709L342.126 47.625L311.5 34.209zM271.833 16.708L276.208 6.7910000000001L306.833 20.208L302.458 30.125L271.833 16.708zM311.5 401.4170000000001H277.958V390.9170000000001H311.5V401.4170000000001zM405.709 401.4170000000001H372.4580000000001V390.9170000000001H405.709V401.4170000000001zM217 401.4170000000001H183.75V390.9170000000001H217V401.4170000000001zM358.75 401.4170000000001H325.208V390.9170000000001H358.75V401.4170000000001zM264.25 401.4170000000001H231V390.9170000000001H264.25V401.4170000000001zM448 444.292V38.292L221.666 -60.292L0 38.292V444.292H448zM418.834 327.334H29.166V57.25L221.958 -28.5L418.833 57.25V327.334zM418.834 415.125H29.166V356.5H418.833V415.125zM75.542 401.4170000000001H42.291V390.9170000000001H75.542V401.4170000000001zM170.042 401.4170000000001H136.5V390.9170000000001H170.042V401.4170000000001zM122.791 401.4170000000001H89.25V390.9170000000001H122.792V401.4170000000001zM130.375 164.875C130.375 215.042 171.5 256.1670000000001 221.667 256.1670000000001C272.125 256.1670000000001 312.959 215.042 312.959 164.875C312.959 114.417 272.126 73.583 221.667 73.583C171.5 73.584 130.375 114.417 130.375 164.875zM251.125 146.791C251.125 133.666 227.208 132.5 218.459 132.5C206.209 132.5 188.709 135.125 182.584 147.375H181.709L172.666 129C187.542 119.667 201.833 116.75 219.916 116.75C239.458 116.75 270.958 122.583 270.958 147.959C270.958 196.084 192.5 164.292 192.5 185.875C192.5 199 213.208 200.75 222.25 200.75C233.041 200.75 251.416 197.542 257.833 187.626H258.708L267.459 204.542C252.292 210.667 240.042 216.501 223.125 216.501C203 216.501 173.542 210.084 173.542 184.709C173.542 140.375 251.125 172.75 251.125 146.791zM122.791 312.75H89.25V302.25H122.792V312.75zM52.792 302.25H75.542V312.75H42V279.208H52.792V302.25zM52.792 269.584H42V236.042H52.792V269.584zM170.042 312.75H136.5V302.25H170.042V312.75zM52.792 226.417H42V192.875H52.792V226.417zM52.792 140.083H42V106.5409999999999H52.792V140.083zM52.792 183.25H42V149.708H52.792V183.25zM52.792 96.917H42V63.375H52.792V96.917z" />
+    <glyph glyph-name="shopware"
+      unicode="&#xF5B5;"
+      horiz-adv-x="495.99" d=" M395.5 -7.27C352.55 -39.06 301.55 -55.86 248.02 -55.86C110.81 -55.86 0 55.14 0 192.14C0 329.33 111.04 440.14 248.02 440.14C309.32 440.14 368.1600000000001 417.59 413.7000000000001 376.64C416.3200000000001 374.28 414.2800000000001 370 410.8400000000001 370.46C393.17 372.89 374.0900000000001 374.12 354.1300000000001 374.12C224.7700000000001 374.12 131.7300000000001 320.65 131.7300000000001 218.77C131.7300000000001 109.73 223.8600000000001 72.89 308.5600000000001 40.04C342.2000000000001 26.9999999999999 373.9600000000001 14.68 395.5200000000001 -1.5500000000001C397.42 -2.9900000000001 397.4100000000001 -5.8600000000001 395.5000000000001 -7.2700000000001zM494.96 215.05C494.88 215.99 494.41 216.88 493.69 217.49C441.93 260.4500000000001 400.07 277.9700000000001 349.2100000000001 277.9700000000001C265.0800000000001 277.9700000000001 268.9600000000001 225.8 268.9600000000001 224.34C268.9600000000001 181.74 321.0200000000001 162.33 381.3000000000001 139.85C412.3700000000001 128.2600000000001 444.4900000000001 116.28 473.9800000000001 99.92C475.8600000000001 98.87 478.2400000000001 99.73 479.0300000000001 101.74C497.9200000000001 150.13 496.9700000000001 191.97 494.9600000000001 215.05z" />
+    <glyph glyph-name="simplybuilt"
+      unicode="&#xF215;"
+      horiz-adv-x="512" d=" M481.2 384H375.2C360.7 384 348.6 372.2 348.6 357.7V318.1H163.3V357.7C163.3 372.2 151.3 384 136.7 384H30.7C16.1 384 4.3 372.2 4.3 357.7V26.3C4.3 11.8 16.1 0 30.9 0H481.3C496.1 0 507.9 11.8 507.9 26.3V357.7C507.7 372.2 495.9 384 481.2 384zM149.8 92.2C113.2 92.2 83.4 121.9 83.4 158.6C83.4 195.5 113.1 225.2 149.8 225.2C186.7 225.2 216.4 195.5 216.4 158.6C216.4 121.9 186.7 92.2000000000001 149.8 92.2000000000001zM362.2000000000001 92.2C325.3000000000001 92.2 295.6 121.9 295.6 158.8C295.6 195.4 325.3 225.2 362.2000000000001 225.2C398.8000000000001 225.2 428.6 195.5 428.6 158.8C428.6 121.9 398.8 92.1999999999999 362.2000000000001 92.1999999999999z" />
+    <glyph glyph-name="sistrix"
+      unicode="&#xF3EE;"
+      horiz-adv-x="448" d=" M448 -1L301.2 147.8C321.2 175.7 333.1 210 333.1 247C333.1 340.1 258.4 415.9 166.6 415.9C74.7 416 0 340.2 0 247.1S74.7 78.2 166.5 78.2C206.3 78.2 242.8 92.4 271.5 116.1L417.5 -32L448 -1zM166.5 117.2C95.9 117.2 38.4 175.5 38.4 247.1S95.9 377 166.5 377S294.6 318.7 294.6 247.1S237.2 117.2 166.5 117.2z" />
+    <glyph glyph-name="sith"
+      unicode="&#xF512;"
+      horiz-adv-x="448" d=" M0 416L69.71 297.25L10.85 308.77L80.69 217.74A146.741 146.741 0 0 1 80.69 166.29L10.85 75.26L69.71 86.78L0 -32L118.75 37.71L107.23 -21.15L198.26 48.6899999999999C215.28 45.6499999999999 232.73 45.6499999999999 249.74 48.6899999999999L340.77 -21.1500000000001L329.25 37.7099999999999L448 -32L378.29 86.78L437.1500000000001 75.26L367.3100000000001 166.29C370.3400000000001 183.3 370.3500000000001 200.73 367.3100000000001 217.74L437.1500000000001 308.77L378.2900000000001 297.25L448 416L329.25 346.29L340.77 405.19L249.71 335.32C241.21 336.84 232.61 337.61 224 337.61S206.79 336.83 198.29 335.32L107.23 405.19L118.75 346.29L0 416zM224 316.2200000000001C255.8 316.2200000000001 287.6 304.1 311.85 279.85C360.35 231.35 360.3400000000001 152.64 311.85 104.15S184.65 55.69 136.15 104.18C87.65 152.68 87.66 231.39 136.15 279.88C160.3900000000001 304.13 192.2000000000001 316.2199999999999 224 316.2199999999999zM224 279.56C201.58 279.56 179.17 271.04 162.08 253.95C127.9 219.77 127.89 164.27 162.08 130.08S251.73 95.9 285.92 130.08C320.1 164.26 320.11 219.76 285.92 253.95C268.83 271.04 246.42 279.56 224 279.56z" />
+    <glyph glyph-name="sketch"
+      unicode="&#xF7C6;"
+      horiz-adv-x="494.4" d=" M18.5 285.8L0 260.9H90.5L97.4 391.6L18.5 285.8zM387.3 402.3L258.7 416L394.4 268.8L387.3 402.3zM103.2 229.7L92 251.7H0.9L225.8 -10L103.2 229.7zM105.2 260.9H389.2L307.7 349.4L247.3 415L105.2 260.9zM402.5 251.8L268.6 -10L493.4 251.7H402.5zM406.4 379L397 391.6L397.9 374.3L404 260.9H494.3L406.4 379zM104.5 354.5L99.9 268.9L235.7 416L107.1 402.3L104.5 354.5zM392.2 251.8H102.2L144.6 168.9L247.3 -32L392.2000000000001 251.8z" />
+    <glyph glyph-name="skyatlas"
+      unicode="&#xF216;"
+      horiz-adv-x="640" d=" M640 118.7C640 52.8 587.5 4.3 522.5 4.3C356.6 4.3 325.9 254 162.8 254C15.9 254 15.7 41.8 168.4 41.8C210.9 41.8 259.3 59.6 293.7 84.3C299.3 88.4 310.6 100.6 316.5 100.6S327.4 95.6 327.4 89.7C327.4 81.9 314.3 70.6 308.7 65.6C267.8 29.9999999999999 208.4 4.4 154 4.4C70.6 4.3 0 63.4 0 149.3S67.5 298.4 152.8 298.4C338.1 298.4 375.3 52.4999999999999 514.7 52.4999999999999C614.6 52.4999999999999 609.5 192.1999999999999 518.1 192.1999999999999C500.6 192.1999999999999 483.1 180.5999999999999 471.2 180.5999999999999C462.8000000000001 180.5999999999999 455.3000000000001 187.7999999999999 455.3000000000001 196.1999999999999C455.3000000000001 207.7999999999999 460.6000000000001 219.8999999999999 460.6000000000001 232.4999999999999C460.6000000000001 299.0999999999999 409.7000000000001 347.1999999999999 343.7000000000001 347.1999999999999C290.6 347.1999999999999 263.7000000000001 310.2999999999999 254.9000000000001 310.2999999999999C248.7000000000001 310.2999999999999 243.7000000000001 315.2999999999999 243.7000000000001 321.4999999999999C243.7000000000001 327.0999999999999 247.8000000000001 331.7999999999999 251.5000000000001 335.8999999999999C276.8000000000001 364.7 316.2000000000001 379.5999999999999 354.3000000000001 379.5999999999999C433.7000000000001 379.5999999999999 493.4000000000001 321.2 493.4000000000001 241.7999999999999C493.4000000000001 234.8999999999999 493.1000000000001 228.0999999999999 492.2000000000001 221.1999999999999C504.1000000000001 224.2999999999999 516.3000000000001 225.8999999999999 528.1000000000001 225.8999999999999C588.8000000000002 225.8999999999999 640.0000000000001 180.5999999999999 640.0000000000001 118.6999999999999z" />
+    <glyph glyph-name="skype"
+      unicode="&#xF17E;"
+      horiz-adv-x="448" d=" M424.7 148.2C427.6 162.2 429.4 177.1 429.4 192C429.4 305.5 337.5 397.3 224.1 397.3C209.2 397.3 194.4 395.6 180.3 392.6C161.3 407.3 137.7 416 112 416C50.2 416 0 365.8 0 304C0 278.3 8.7 254.7 23.3 235.8C20.4 221.8 18.6 206.9 18.6 192C18.6 78.5 110.5 -13.3 223.9 -13.3C238.8 -13.3 253.6 -11.6 267.7 -8.6C286.7 -23.2 310.3 -31.9 335.9 -31.9C397.7 -31.9 447.9 18.3 447.9 80.1C448 105.7 439.3 129.3 424.7 148.1999999999999zM230.1 56.7C164.5 56.7 109.6 85.9 109.6 121.7C109.6 137.7 118.6 152.3 139.1 152.3C170.3 152.3 173.2 107.4 227.2 107.4C252.9 107.4 269.5 118.8 269.5 133.7000000000001C269.5 152.4 253.5 155.3000000000001 227.5 161.7000000000001C165 177.1 109.7 183.7000000000001 109.7 248.9000000000001C109.7 308.1 168.3 330 218.8 330C273.9000000000001 330 329.6 308.1 329.6 274.6C329.6 257.7000000000001 318.2000000000001 242.8 299.3 242.8C271 242.8 270.1 276.3 224.3 276.3C198.6 276.3 182.3 269.3 182.3 253.8C182.3 234 203.1 232 251.4 220.8C292.8 211.5 342.1 194 342.1 143.2000000000001C342.1 84.1 285 56.7000000000001 230.1 56.7000000000001z" />
+    <glyph glyph-name="slack-hash"
+      unicode="&#xF3EF;"
+      horiz-adv-x="448" d=" M446.2 177.6C440 196.6 419.3 206.7 400.2 200.5L354.8 185.4L324.5 275.4000000000001L369.9 290.5C389 296.7000000000001 399 317.3000000000001 392.9 336.4000000000001C386.7 355.4000000000001 366 365.5 346.9 359.3000000000001L301.5 344.2000000000001L285.8 391.2000000000001C279.6 410.2000000000001 258.9000000000001 420.3000000000001 239.8 414.1C220.7 407.9000000000001 210.7 387.3000000000001 216.8 368.2000000000001L232.5 321.2000000000001L139.1 290.0000000000001L123.4 337.0000000000001C117.2 356.0000000000001 96.5 366.1 77.4 359.9000000000001C58.3 353.7000000000001 48.3 333.1000000000001 54.4 314.0000000000001L70.1 267.0000000000001L24.8 252.0000000000001C5.7 245.8000000000001 -4.3 225.2000000000001 1.8 206.1000000000001C6.8 191.6 20.9 182.1 35.4 181.5000000000001C42.2 180.5000000000001 47.4 183.1000000000001 93.1 198.3000000000001L123.4 108.3000000000001L78 93.2C59 87 48.9 66.3 55 47.3C60 32.8 74.1 23.3 88.6 22.7C95.4 21.7 100.6 24.3 146.3 39.5L162 -7.5C167.9 -24.4 186.7 -36.5 208 -30.4C227.1 -24.2 237.1 -3.6 231 15.5L215.3 62.5L308.9 93.8L324.6 46.8C330.5 29.9 349.3 17.8 370.6 23.9C389.7 30.1 399.7 50.7 393.6 69.8L377.9 116.8L423.3 131.9C442.3 137.9 452.4 158.6 446.2 177.6zM192.1 130.4L161.8 220.6L255.3 251.9000000000001L285.6 161.7000000000001L192.1 130.4z" />
+    <glyph glyph-name="slack"
+      unicode="&#xF198;"
+      horiz-adv-x="448" d=" M244.2 230.5L263.5 172.8L203.7 152.8L184.4 210.5L244.2 230.5zM285.6 -13.2C131.6 -59.4 65 -23.6 18.8 130.4S8.4 351 162.4 397.2C316.4 443.4 383 407.6 429.2 253.6C475.4 99.6 439.6 33 285.6 -13.2zM366.2 183C362.3 195.2 349 201.6 336.8 197.7L307.8 188L288.5 245.7L317.5 255.4C329.7 259.3 336.1 272.6 332.2 284.8C328.3 297 315 303.4 302.8 299.5L273.8 289.8L263.8 319.9C259.9000000000001 332.1 246.6 338.5 234.4 334.6C222.2 330.7 215.8 317.4 219.7 305.2L229.7 275.1L169.9 255L159.9 285.1C156 297.3 142.7000000000001 303.7 130.5 299.8C118.3 295.9 111.9 282.6 115.8 270.4L125.8 240.3L96.8 230.6C84.6 226.7 78.2 213.4 82.1 201.2C85.3 191.9 94.3 185.8 103.6 185.4C107.9 184.8 111.3 186.4 140.5 196.1L159.8000000000001 138.4L130.8000000000001 128.7C118.6 124.8 112.2000000000001 111.5 116.1 99.3C119.3000000000001 90 128.3000000000001 83.9 137.6 83.5C141.9 82.9 145.3 84.5 174.5 94.2L184.5 64.1C188.2 53.3 200.3000000000001 45.4999999999999 213.9 49.4C226.1 53.3 232.5000000000001 66.6 228.6 78.8L218.6 108.9L278.4000000000001 129L288.4000000000001 98.9C292.1 88.1 304.2000000000001 80.3 317.8 84.2C330 88.1 336.4000000000001 101.4 332.5 113.6L322.5 143.7L351.5 153.4C363.7 157.6 370.1 170.9 366.2 183z" />
+    <glyph glyph-name="slideshare"
+      unicode="&#xF1E7;"
+      horiz-adv-x="512" d=" M249.429 236.564C249.429 204.848 221.714 178.847 187.712 178.847C153.711 178.847 125.996 204.848 125.996 236.564C125.996 268.565 153.711 294.28 187.712 294.28C221.713 294.28 249.429 268.565 249.429 236.564zM503.723 186.562C485.437 163.989 450.579 136.274 397.4340000000001 114.559C453.722 -77.163 260 -107.735 263.143 -9.446C263.143 -11.16 262.857 43.413 262.857 83.986C258.572 84.844 254.286 85.986 249.143 87.129C249.143 46.271 248.857 -11.16 248.857 -9.446C252 -107.735 58.278 -77.163 114.566 114.559C61.421 136.274 26.563 163.989 8.276 186.562C-0.867 200.276 9.134 214.849 24.277 204.277C26.277 202.849 28.562 201.42 30.562 199.992V398.284C30.563 425.713 51.135 448 76.565 448H435.722C461.151 448 481.724 425.713 481.724 398.284V199.991L487.724 204.276C502.867 214.849 512.867 200.276 503.723 186.562zM457.151 375.712C457.151 408.57 446.579 421.428 416.2920000000001 421.428H98.566C66.85 421.428 57.993 410.5700000000001 57.993 375.712V183.419C125.71 147.989 183.713 154.275 215.428 155.418C228.857 155.704 237.429 153.132 242.572 147.703C244.261 146.016 252.595 138.257 262.859 130.5600000000001C264.002 146.275 272.86 156.275 296.575 155.4180000000001C328.862 153.9900000000001 388.293 147.7030000000001 457.152 185.1340000000001V375.712zM331.146 294.28C297.144 294.28 269.43 268.565 269.43 236.564C269.43 204.848 297.145 178.847 331.146 178.847C365.433 178.847 392.862 204.848 392.862 236.564C392.862 268.565 365.4330000000001 294.28 331.146 294.28z" />
+    <glyph glyph-name="snapchat-ghost"
+      unicode="&#xF2AC;"
+      horiz-adv-x="512" d=" M510.846 55.327C505.635 43.17 483.607 34.238 443.486 28.009C441.422 25.223 439.711 13.323 436.979 4.053C435.354 -1.513 431.356 -4.816 424.851 -4.816L424.554 -4.811C415.159 -4.811 405.351 -0.4880000000001 385.702 -0.4880000000001C359.181 -0.4880000000001 350.04 -6.5310000000001 329.448 -21.0760000000001C307.616 -36.5140000000001 286.677 -49.8400000000001 255.421 -48.4750000000001C223.775 -50.8090000000001 197.396 -31.5670000000001 182.55 -21.0710000000001C161.836 -6.4280000000001 152.722 -0.4890000000001 126.309 -0.4890000000001C107.445 -0.4890000000001 95.573 -5.2090000000001 87.457 -5.2090000000001C79.384 -5.2090000000001 76.244 -0.2870000000001 75.035 3.8309999999999C72.332 13.0199999999999 70.631 25.0939999999999 68.512 27.9609999999999C47.833 31.1699999999999 1.202 39.3049999999999 0.014 60.1109999999999A10.627 10.627 0 0 0 8.891 71.1799999999999C78.474 82.6349999999999 109.815 154.0809999999999 111.118 157.1139999999999C111.192 157.2899999999999 111.273 157.4579999999999 111.355 157.6289999999999C115.068 165.1659999999999 115.899 171.4779999999999 113.818 176.3819999999999C108.768 188.2779999999999 86.946 192.5459999999999 77.765 196.1779999999999C54.05 205.5439999999999 50.75 216.3059999999999 52.153 223.6819999999999C54.59 236.5179999999999 73.878 244.4169999999999 85.155 239.1349999999999C94.074 234.9539999999999 101.998 232.8379999999999 108.702 232.8379999999999C113.724 232.8379999999999 116.914 234.0419999999999 118.662 235.0089999999999C116.619 270.9449999999999 111.561 322.2989999999999 124.349 350.9779999999999C158.122 426.6960000000001 229.705 432.58 250.826 432.58C251.77 432.58 259.967 432.669 260.936 432.669C313.084 432.669 363.19 405.889 387.659 351.026C400.436 322.376 395.408 271.234 393.354 235.017C394.936 234.145 397.711 233.075 401.953 232.878C408.35 233.164 415.768 235.267 424.022 239.135C430.107 241.981 438.428 241.596 444.502 239.077L444.531 239.067C454.007 235.682 459.97 228.852 460.12 221.197C460.304 211.45 451.598 203.032 434.242 196.179C432.124 195.344 429.548 194.524 426.808 193.654C417.011 190.548 402.208 185.849 398.192 176.383C396.113 171.479 396.9360000000001 165.172 400.652 157.635C400.739 157.467 400.818 157.293 400.891 157.12C402.192 154.09 433.506 82.66 503.121 71.186C509.548 70.128 514.284 63.309 510.846 55.3270000000001z" />
+    <glyph glyph-name="snapchat-square"
+      unicode="&#xF2AD;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM393.5 101.1C390 93 375.4 87.1 348.7 82.9C347.3 81.0000000000001 346.2 73.1 344.4 67.0000000000001C343.3 63.3000000000001 340.7 61.1000000000001 336.3 61.1000000000001H336.1C329.9 61.1000000000001 323.3 64.0000000000001 310.3 64.0000000000001C292.7 64.0000000000001 286.6 60.0000000000001 272.9 50.3000000000001C258.4 40.0000000000001 244.5 31.2 223.7 32.1000000000001C202.7 30.5000000000001 185.1 43.3000000000001 175.2 50.3000000000001C161.4 60.0000000000001 155.4 64.0000000000001 137.8 64.0000000000001C125.3 64.0000000000001 117.4 60.9 112 60.9C106.6 60.9 104.5 64.2000000000001 103.7 66.9C101.9 73.0000000000001 100.8 81.0000000000001 99.4 82.9C85.6 85.0000000000001 54.6 90.4 53.9 104.3C53.7 107.9 56.2 111.1 59.8 111.7C106.1 119.3 126.9 166.8 127.8 168.8C127.8 168.9 127.9 169 128 169.1C130.5 174.1 131 178.3 129.6 181.6C126.2 189.5 111.7 192.3 105.6 194.8C89.8 201 87.6 208.2 88.6 213.1C90.2 221.6 103 226.9000000000001 110.5 223.4C116.4 220.6 121.7 219.2000000000001 126.2 219.2000000000001C129.5 219.2000000000001 131.7 220.0000000000001 132.8 220.6000000000001C131.4 244.5000000000001 128.1 278.6 136.6 297.7000000000001C159.1 348 206.7 352 220.7 352C221.3 352 226.8 352.1 227.4 352.1C262.1 352.1 295.4 334.3 311.7 297.8C320.2 278.7000000000001 316.9 244.7 315.5 220.7C316.6 220.1 318.4 219.4 321.2 219.3C325.5 219.5 330.4 220.9 335.9 223.5C339.9 225.4 345.5 225.1 349.5 223.5C355.8 221.2 359.8 216.7 359.9 211.6C360 205.1 354.2 199.5 342.7 195C341.3 194.4 339.6 193.9 337.8 193.3C331.3 191.2 321.4000000000001 188.1 318.8 181.8C317.4000000000001 178.5 318 174.3 320.4000000000001 169.3C320.5000000000001 169.2 320.5000000000001 169.1 320.6 169C321.5 167 342.3 119.5 388.6 111.9C392.6 110.9 395.7000000000001 106.4 393.5 101.1z" />
+    <glyph glyph-name="snapchat"
+      unicode="&#xF2AB;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM417.5 101.1C414 93 399.4 87.1 372.7 82.9C371.3 81.0000000000001 370.2 73.1 368.4 67.0000000000001C367.3 63.3000000000001 364.7 61.1000000000001 360.3 61.1000000000001H360.1C353.9 61.1000000000001 347.3 64.0000000000001 334.3 64.0000000000001C316.7 64.0000000000001 310.6 60.0000000000001 296.9 50.3000000000001C282.4 40.0000000000001 268.5 31.2 247.7 32.1000000000001C226.7 30.5000000000001 209.1 43.3000000000001 199.2 50.3000000000001C185.4 60.0000000000001 179.4 64.0000000000001 161.8 64.0000000000001C149.3 64.0000000000001 141.4 60.9 136 60.9C130.6 60.9 128.5 64.2000000000001 127.7 66.9C125.9 73.0000000000001 124.8 81.0000000000001 123.4 82.9C109.6 85.0000000000001 78.6 90.4 77.9 104.3C77.7 107.9 80.2 111.1 83.8 111.7C130.1 119.3 150.9 166.8 151.8 168.8C151.8 168.9 151.9 169 152 169.1C154.5 174.1 155 178.3 153.6 181.6C150.2 189.5 135.7 192.3 129.6 194.8C113.8 201 111.6 208.2 112.6 213.1C114.2 221.6 127 226.9000000000001 134.5 223.4C140.4 220.6 145.7 219.2000000000001 150.2 219.2000000000001C153.5 219.2000000000001 155.7 220.0000000000001 156.8 220.6000000000001C155.4 244.5000000000001 152.1 278.6 160.6 297.7000000000001C183.1 348 230.7 352 244.7 352C245.3 352 250.8 352.1 251.4 352.1C286.1 352.1 319.4 334.3 335.7 297.8C344.2 278.7000000000001 340.9 244.7 339.5 220.7C340.6 220.1 342.4 219.4 345.2 219.3C349.5 219.5 354.4 220.9 359.9 223.5C363.9 225.4 369.5 225.1 373.5 223.5C379.8 221.2 383.8 216.7 383.9 211.6C384 205.1 378.2 199.5 366.7 195C365.3 194.4 363.6 193.9 361.8 193.3C355.3 191.2 345.4000000000001 188.1 342.8 181.8C341.4000000000001 178.5 342 174.3 344.4000000000001 169.3C344.5000000000001 169.2 344.5000000000001 169.1 344.6 169C345.5 167 366.3 119.5 412.6 111.9C416.6 110.9 419.7000000000001 106.4 417.5 101.1z" />
+    <glyph glyph-name="soundcloud"
+      unicode="&#xF1BE;"
+      horiz-adv-x="640" d=" M111.4 191.7L117.2 126.7L111.4 58.4C111.1 55.9 109.2 54 107 54S102.8 55.9 102.8 58.4L97.2 126.7L102.8 191.7C102.8 193.9 104.7 195.9 107 195.9C109.2 195.9 111.1 193.9 111.4 191.7zM132.8 237.3C130 237.3 128.1 235.1 127.8 232.3L122.8 126.7L127.8 58.4C128.1 55.6 130 53.4 132.8 53.4C135.3 53.4 137.5 55.6 137.5 58.4L143.3 126.7L137.5 232.3C137.5 235.1 135.3 237.3 132.8 237.3zM158.3 261.4C155.2 261.4 153 259.2 152.7 256.1L148.3 126.1L152.7 58.3C153 55.1999999999999 155.2 52.9999999999999 158.3 52.9999999999999C161.1 52.9999999999999 163.6 55.1999999999999 163.6 58.3L168.9 126.1L163.6 256.1C163.6 259.2 161.1 261.4 158.3 261.4zM7.2 164.8C5.8 164.8 5 163.7 4.7 162.3L0 126.7L4.7 91.7C5 90.3 5.8 89.2 7.2 89.2S9.4 90.3 9.7 91.7L15.3 126.7L9.7 162.3C9.4 163.7 8.6 164.8 7.2 164.8zM30.8 186.7C29.4 186.7 28.3 185.6 28.3 184.2L21.9 126.7L28.3 70.6C28.3 68.9 29.4 67.8 30.8 67.8S33.3 68.9 33.6 70.3L40.8 126.6999999999999L33.6 184.1999999999999C33.3 185.5999999999999 32.2 186.6999999999999 30.8 186.6999999999999zM56.1 198.1C54.4 198.1 53 196.7 52.8 194.8L47 126.7L52.8 60.9C53.1 59.2 54.5 57.8 56.1 57.8C57.8 57.8 59.2 59.1999999999999 59.2 60.9L66.1 126.7L59.2 194.8C59.2 196.7 57.8 198.1 56.1 198.1zM81.4 200.3C79.5 200.3 77.8 198.9 77.8 196.7L72 126.7L77.8 58.9C77.8 56.7 79.5 55.3 81.4 55.3S85 56.6999999999999 85.3 58.9L91.7 126.7L85.3 196.7C85 198.9 83.3 200.3 81.4 200.3zM322.8 311.2C321.7 312 320 312.6 318.6 312.6C316.4000000000001 312.6 314.4000000000001 311.8 313 310.7C311.1 309 309.9 306.5 309.7 304V303.2L306.4 126.5L308.1 94L309.8 62.3C310.1 57.6 314 53.7 318.7 53.7S327.3 57.6 327.3 62.3L331.2 126.5L327.3 304C326.9 307 325.3 309.8 322.8 311.2zM296.1 295.9C294.7000000000001 296.7 293.3 297.3 291.7000000000001 297.3S288.6 296.7 287.3000000000001 295.9C285.1000000000001 294.5 283.7000000000001 292 283.7000000000001 289.2L283.4000000000001 287.5L280.6 126.7S280.6 126.4 283.7000000000001 61.1V60.8C283.7000000000001 59.1 284.3000000000001 57.5 285.4000000000001 56.1C287.1 54.2 289.3 53 291.8 53C294 53 296 54.1 297.4000000000001 55.5C299.1 56.9 299.9000000000001 58.8 299.9000000000001 61.1L300.2000000000001 67.8L303.3000000000001 126.4L300.0000000000001 289.2000000000001C299.7000000000001 292.0000000000001 298.3000000000001 294.5000000000001 296.1000000000001 295.9000000000001zM184.7 273.4C181.6 273.4 178.9 270.6 178.9 267.3L174.5 126.7L178.9 59.5C179.2 56.2 181.7 53.7 184.7 53.7C188 53.7 190.5 56.2 190.8 59.5L195.8 126.7L190.8 267.3C190.6 270.6 188.1 273.4 184.7 273.4zM561.4 210.6C550.6 210.6 540.3 208.4 530.8 204.5C524.4 275.3 464.9999999999999 330.9 392.5 330.9C374.7 330.9 357.5 327.6 342.2 321.5C336.0999999999999 319.3 334.3999999999999 317.1 334.3999999999999 312.3V62.6C334.3999999999999 57.6 338.2999999999999 54 343 53.4H561.3C604.5999999999999 53.4 639.9 88.4 639.9 131.7000000000001C640 175.3000000000001 604.6999999999999 210.6000000000001 561.4 210.6000000000001zM264.7 270.9C260.5 270.9 257.2 267.6 256.9 263.1L253.6 126.4L256.9 60.8C257.2 56.6 260.5 53.3 264.7 53.3C268.9 53.3 272.2 56.6 272.2 60.8L276.1 126.4L272.2 263.1C271.9 267.6 268.9 270.9 264.7 270.9zM211.1 278.7C207.8 278.7 204.7 275.6 204.7 272L200.8 126.7L204.7 59.8C205 56.1999999999999 207.8 53.4 211.1 53.4C214.7 53.4 217.5 56.2 217.8 59.8L222.2 126.6999999999999L217.8 272C217.5 275.5999999999999 214.7 278.7 211.1 278.7zM237.8 275.3C233.9 275.3 230.9 272.2 230.9 268.4L227 126.7L230.9 60.3C231.2 56.4 234 53.4 237.8 53.4S244.7 56.5 244.7 60.3L248.9 126.6999999999999L244.7 268.3999999999999C244.7 272.3 241.7 275.3 237.8 275.3z" />
+    <glyph glyph-name="sourcetree"
+      unicode="&#xF7D3;"
+      horiz-adv-x="406.2" d=" M406.2 245C406.2 357.1 315.3 448 203.2 448C91.1 448.2 0.2 357.4 0 245.4C-0.1 157.2 56.6 79.1 140.5 52V-49.7C140.5 -57.6 146.9 -64 154.8 -64H251.2C259.1 -64 265.5 -57.6 265.5 -49.7V51.9C349.2 78.9 406.1 156.9 406.2 245zM134.6 245C134.6 335.8 271.9 335.8 271.9 245C271.8 155.1 134.6 154 134.6 245z" />
+    <glyph glyph-name="speakap"
+      unicode="&#xF3F3;"
+      horiz-adv-x="430.87" d=" M55.01 56.22C-24.4 144.41 -16.95 280.5800000000001 71.65 360.36S296.4500000000001 433.32 375.86 345.12S447.82 120.76 359.2200000000001 40.98C340.48 24.11 423.25 -2.11 401.24 -11.28C319.18 -45.4899999999999 147.33 -46.32 55.01 56.22zM268.32 267.8200000000001L306.82 308.68C297.21 317.57 274.8 335.51 230.65 336.28C178.32 337.19 134.79 307.98 133.88 256.32C133.68 244.99 134.17 219.6 163.3 201.49C197.76 180.07 249.82 179.98 249.2800000000001 149.23C248.9100000000001 127.9500000000001 222.86 123.42 210.69 123.63C207.71 123.68 180.46 124.09 163.0800000000001 148.25L123.1300000000001 105.64C151.2900000000001 78.63 182.12 73.02 206.62 72.59C216.85 72.41 303.04 72.26 304.4600000000001 153.59C304.74 169.4 302.3900000000001 193.31 275.6 210.18C241.24 231.82 190.6400000000001 229.63 191.17 259.93C191.58 283.18 222.13 285.3 228.7 285.19C229.13 285.19 255.32 284.93 268.32 267.82z" />
+    <glyph glyph-name="spotify"
+      unicode="&#xF1BC;"
+      horiz-adv-x="496" d=" M248 440C111.1 440 0 328.9 0 192S111.1 -56 248 -56S496 55.1 496 192S384.9 440 248 440zM348.7 75.1C344.5 75.1 341.9 76.4 338 78.7000000000001C275.6 116.3000000000001 203 117.9 131.3 103.2000000000001C127.4 102.2000000000001 122.3 100.6 119.4 100.6C109.7 100.6 103.6 108.3 103.6 116.4C103.6 126.7000000000001 109.7 131.6 117.2 133.2000000000001C199.1 151.3000000000001 282.8 149.7000000000001 354.2 107.0000000000001C360.3 103.1000000000001 363.9 99.6000000000001 363.9 90.5000000000001S356.8 75.1000000000001 348.7 75.1000000000001zM375.6 140.7000000000001C370.4 140.7000000000001 366.9 143.0000000000001 363.3 144.9C300.8 181.9 207.6 196.8000000000001 124.7 174.3C119.9 173 117.3 171.7 112.8 171.7C102.1 171.7 93.4 180.4 93.4 191.1S98.6 208.9 108.9 211.8C136.7 219.6 165.1 225.4 206.6999999999999 225.4C271.5999999999999 225.4 334.3 209.3 383.7 179.9C391.8 175.1 395 168.9 395 160.2C394.8999999999999 149.4 386.5 140.7 375.6 140.7zM406.6 216.9C401.4 216.9 398.2 218.2000000000001 393.7 220.8000000000001C322.5 263.3000000000001 195.2 273.5000000000001 112.8 250.5000000000001C109.2 249.5000000000001 104.7 247.9000000000001 99.9 247.9000000000001C86.7 247.9000000000001 76.6 258.2000000000001 76.6 271.5C76.6 285.1 85 292.8000000000001 94 295.4000000000001C129.2 305.7000000000001 168.6 310.6 211.5 310.6C284.5 310.6 361 295.4000000000001 416.9 262.8C424.7 258.3 429.8 252.1 429.8 240.2C429.8 226.6 418.8 216.9 406.6 216.9z" />
+    <glyph glyph-name="squarespace"
+      unicode="&#xF5BE;"
+      horiz-adv-x="512" d=" M186.12 104.66C176.47 95.0100000000001 176.47 79.37 186.12 69.72C195.77 60.0700000000001 211.41 60.0700000000001 221.06 69.72L378.24 226.9C397.5300000000001 246.19 428.81 246.19 448.1 226.9S467.39 176.33 448.1 157.04L293.95 2.9C313.22 -16.39 344.48 -16.41 363.77 2.86L363.81 2.9L483.06 122.14C521.65 160.73 521.65 223.28 483.06 261.86C444.4700000000001 300.45 381.91 300.45 343.3400000000001 261.86L186.12 104.66zM430.65 209.46C421 219.1100000000001 405.36 219.1100000000001 395.72 209.46L238.52 52.28C219.25 32.99 187.99 32.97 168.7 52.23L168.65 52.28C159.01 61.92 143.38 61.93 133.73 52.29L133.72 52.28C124.07 42.64 124.06 27 133.7 17.35L133.72 17.33C172.3 -21.24 234.86 -21.24 273.44 17.33L430.64 174.53C440.2899999999999 184.18 440.2899999999999 199.82 430.6499999999999 209.46zM168.66 122.1300000000001L325.84 279.3100000000001C335.48 288.9600000000001 335.48 304.6 325.84 314.2500000000001C316.2 323.8900000000001 300.57 323.8900000000001 290.93 314.2500000000001L133.72 157.07C114.44 137.78 83.16 137.77 63.87 157.06L63.86 157.07C44.57 176.35 44.55 207.61 63.83 226.91L63.86 226.94L218.03 381.11C198.75 400.4 167.48 400.41 148.18 381.13L148.16 381.11L28.93 261.86C-9.65 223.27 -9.65 160.72 28.93 122.14C67.53 83.55 130.06 83.55 168.66 122.13zM81.33 174.53C90.97 164.8900000000001 106.6 164.8900000000001 116.24 174.53L273.45 331.7200000000001C292.73 351.01 324 351.0200000000001 343.29 331.74L343.31 331.7200000000001C352.9599999999999 322.0700000000001 368.6 322.0700000000001 378.24 331.7200000000001C387.89 341.37 387.89 357.01 378.24 366.6500000000001C339.65 405.24 277.11 405.24 238.52 366.6500000000001L81.33 209.46C71.68 199.82 71.68 184.18 81.32 174.53H81.33z" />
+    <glyph glyph-name="stack-exchange"
+      unicode="&#xF18D;"
+      horiz-adv-x="448" d=" M17.7 115.7H430.4V93.7C430.4 56 401.1 25.7 365.1 25.7H346.1L259.3 -64V25.7H83C47 25.7 17.7 56 17.7 93.7V115.7zM17.7 139.3H430.4V224.3H17.7V139.3zM17.7 248.7H430.4V333.7000000000001H17.7V248.7zM365 448H83C47 448 17.7 417.7 17.7 380.3V358H430.4V380.3C430.3 417.7 401 448 365 448z" />
+    <glyph glyph-name="stack-overflow"
+      unicode="&#xF16C;"
+      horiz-adv-x="384" d=" M293.7 148L112.5 232.5L129.2 269L310.5 184.3L293.7 148zM341.7 224L188.2 352.3L162.7 321.5L316.2 193.2L341.7 224zM381.3 255.7L262 416L230 392L349.3 231.7L381.3 255.7zM290.7 137L95 178.3L86.8 139L282.5 98L290.7 137zM322.3 8H42.7V128H2.7V-32H362.2V128H322.2V8zM282.5 88H82.5V48.3H282.5V88z" />
+    <glyph glyph-name="staylinked"
+      unicode="&#xF3F5;"
+      horiz-adv-x="440" d=" M201.6 320.6C205.7 323.8 211.9 323.6 215.4 320.1L385.4 152.8L382.7 155.5L427 114.1999999999999C430.7 110.6999999999999 430.3 105.1999999999999 426.3 101.9999999999999L228.3 -61.9000000000001C218.4 -69.5000000000001 211 -62.7000000000001 211 -62.7000000000001L2.3 133.4C-1.2 136.9 -0.7 142.4 3.5 145.6L49.3 180.5C53.5 183.6999999999999 59.7 183.5 63.2 180L215.1 32.4999999999999C218.8 28.9999999999999 225.1 28.8 229.3 32.1L322.5 106.1C326.6 109.3 327 114.8 323.4 118.3L239.4 199.6C235.8 203.1 229.5 203.3 225.4 200.1L225.3 200C221.2 196.8 214.9 197 211.3 200.5L143.2 264.8C139.7 268.3 140.1 273.8 144.3 277L201.6 320.5999999999999M216.4 63.3C220.1 59.8 226.5 59.6 230.7 62.9L280.9 101.7L280.6 102L288.3 108C292.5 111.2 292.9 116.7 289.2 120.2L232.1 174.6C228.5 178.1 222.0999999999999 178.3 217.9 175.1L217.8 175C213.6 171.8 207.3 171.8999999999999 203.6 175.3999999999999L109 267.2C105.4 270.7 105.9 276.1 110.1 279.4L202.3 350.9C206.4 354.1 212.6 353.9 216.2 350.4L376.6 191.4C380.3 187.9 386.6 187.7 390.7000000000001 190.9L436.5000000000001 226.7C440.6000000000001 229.9 440.9000000000001 235.4 437.2000000000001 238.9L226.7 445.5C225.2 446.7 218.7 451 210.4 444.4L3.6 282.3C-0.6 279.1 -1.2 273.6 2.4 270.1L44.7 228.4000000000001" />
+    <glyph glyph-name="steam-square"
+      unicode="&#xF1B7;"
+      horiz-adv-x="448" d=" M185.2 91.5C192.9 110 184.2 131.2 165.6 138.9L136.1 151.1C147.5 155.4 160.4 155.6 172.5 150.6C184.7 145.5 194.1 136 199.2 123.9C204.2 111.7 204.2 98.3 199.1 86.2C188.6 61.1 159.7 49.2 134.5 59.7C122.9 64.5 114.1 73.3 109.1 83.9L137.6 72.1C156.2 64.3 177.5 72.9999999999999 185.2 91.4999999999999zM400 416H48C21.5 416 0 394.5 0 368V207.3L116.6 159.2C128.6 167.4 142.8 171.3 157.3 170.5L212.7 250.7V251.8C212.7 300 252 339.3 300.3 339.3S387.9 300 387.9 251.8C387.9 202.6 347 163.1 298.3 164.3L219.3 107.9999999999999C220.9 69.4999999999999 190.2 39.1999999999999 153.6 39.1999999999999C121.8 39.1999999999999 95.1 61.8999999999999 89.1 91.8999999999999L0 128.8V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM300.3 193.5C268.1 193.5 241.9 219.6 241.9 251.8S268.1 310.1 300.3 310.1S358.7 283.9000000000001 358.7 251.8S332.5 193.5 300.3 193.5zM300.4000000000001 208.1C324.6 208.1 344.3 227.7 344.3 251.9C344.3 276.1 324.7 295.7 300.4000000000001 295.7C276.2000000000001 295.7 256.5000000000001 276.1 256.5000000000001 251.9C256.5000000000001 227.7 276.2000000000001 208.1 300.4000000000001 208.1z" />
+    <glyph glyph-name="steam-symbol"
+      unicode="&#xF3F6;"
+      horiz-adv-x="448" d=" M395.5 270.5C395.5 236.7 368 209.5 334.5 209.5C300.7 209.5 273.5 236.8 273.5 270.5S300.8 331.5 334.5 331.5C368 331.5 395.5 304.3 395.5 270.5zM448 270.3C448 207.3 397 156.5 334.3 156.5L225 76.7C221 33.7 184.5 -0.1 140.5 -0.1C100 -0.1 65.8 28.7 57.5 66.9L0 90V197.3L97.2 158C112.3 167.2 129.4 171.3 149.2 169.5L220.2 271.2C220.7 333.5 271.7 384 334.2 384C397 384 448 333 448 270.3zM203 85C203 119.7 175.2 147.5 140.5 147.5C136 147.5 131.5 147 127 146L153 135.5C178.5 125.3 191 96.5 180.7 71C170.5 45.5 141.5 33 116 43.5C105.8 47.5 95.5 51.8 85.3 55.7C95.8 36 116.5 22.5 140.5 22.5C175.2 22.5 203 50.3 203 85zM410.5 270.3C410.5 312.3 376.2 346.5 334.3 346.5C292 346.5 257.8 312.3 257.8 270.3C257.8 228.1 292.1 194.1 334.3 194.1C376.2 194 410.5 228.0000000000001 410.5 270.3z" />
+    <glyph glyph-name="steam"
+      unicode="&#xF1B6;"
+      horiz-adv-x="496" d=" M496 192C496 55 384.8 -56 247.6 -56C133.8 -56 38 20.3 8.6 124.4L103.8 85.1C110.2 52.9999999999999 138.7 28.7 172.7 28.7C211.9 28.7 244.6 61.1 242.9 102.2L327.4 162.4C379.5 161.1 423.2 203.3 423.2 255.9C423.2 307.5 381.2 349.4 329.5 349.4S235.8 307.4 235.8 255.9V254.7L176.6 169C161.1 169.9 145.9 165.6 133.1 156.9L0 211.9C10.2 339.6 117.1 440 247.6 440C384.8 440 496 329 496 192zM155.7 63.7L125.2 76.3A52.79 52.79 0 0 1 152.4 50.5C179.3 39.3 210.2 52.1 221.4 78.9C226.8 91.9 226.9 106.2 221.5 119.2C216.1 132.2 206 142.4 193 147.8C180.1 153.2 166.3 153 154.1 148.4L185.6 135.4C205.4 127.2000000000001 214.8 104.5000000000001 206.5 84.7000000000001C198.2 64.8000000000001 175.5 55.5000000000001 155.7 63.7000000000001zM329.5 193.6C295.1 193.6 267.1 221.6 267.1 255.9S295.1 318.2 329.5 318.2S391.9 290.2 391.9 255.9S364 193.6 329.5 193.6zM329.6 209.2C355.5 209.2 376.5 230.2 376.5 256C376.5 281.9 355.5 302.8 329.6 302.8S282.7000000000001 281.8 282.7000000000001 256C282.8000000000001 230.2 303.8000000000001 209.2 329.6 209.2z" />
+    <glyph glyph-name="sticker-mule"
+      unicode="&#xF3F7;"
+      horiz-adv-x="576" d=" M353.1 -61.8C347.2000000000001 -64.7 321 -65 316.6 -61.3C312.5 -58.3 314.4000000000001 -49.4 315.1 -46.3C317.3 -31.3 312.6 -38.4 305.3 -34.8C302.2 -33.3 301.2 -29.3 300.7 -24.8C300.2 -23.3 299.7 -22.3 299.2 -21.3C297.5 -10.6 306 12.3 307.4 22.1C312.3 45.8 306.7 59.3 308.9 68.9999999999999C312.6 85.1999999999999 313 72.4999999999999 313 98.8999999999999C311.6 124.7999999999999 316.3 135.7999999999999 313.5 137.7999999999999C298.7 137.7999999999999 249.2 127.0999999999999 201.3 135.7999999999999C155.2 144.6999999999999 141.9 164.7999999999999 135.9 166.6999999999999C125.6 171.1999999999999 112.7 166.1999999999999 108.6 159.6999999999999C108.5 159.5999999999999 73.6 89.0999999999999 69 71.8999999999999C62.8 51.3999999999999 68.5 24.4999999999999 73.1 5.0999999999999C73.1 4.9999999999998 77.6 -9.5000000000002 83.4 -14.4000000000001C85.5 -15.9000000000001 88.5 -16.9000000000001 90.6 -18.9000000000001C93.4 -21.6000000000001 100 -34.1000000000001 100.4 -34.9000000000001C103 -39.4000000000001 104 -42.9000000000001 98.9 -45.4000000000001C95.3 -47.4000000000001 89.6 -47.9000000000001 84.5 -47.9000000000001C81.9 -48.4000000000001 83 -51.4000000000001 81.4 -52.9000000000001C78.5 -55.7000000000002 60.7 -59.0000000000002 51.5 -55.4000000000001C48.9 -54.4000000000001 45.8 -52.4000000000001 45.3 -50.4000000000001C43.8 -46.4000000000001 47.4 -41.4000000000001 44.3 -37.9000000000001C39.8 -35.0000000000002 31.2 -35.9000000000001 27.3 -25.9000000000001C25.1 -20.5000000000002 24.7 -18.3000000000001 24.7 23.4999999999998C24.7 33.1999999999998 18.8 62.1999999999998 16.5 70.3999999999998C15 75.8999999999998 15 81.8999999999998 16.5 86.3999999999998C16.8 87.2999999999998 20.6 90.9999999999998 20.6 99.3999999999998C19.6 100.8999999999998 16 99.8999999999998 15.5 100.8999999999998C5.1 181.4999999999998 9.6 179.8999999999998 7.8 199.1999999999998C6.3 215.1999999999998 -3.1 243.0999999999998 1.1 263.4999999999999C1.6 265.8999999999999 4.5 284.4999999999999 25.3 302.3999999999999C56.3 329.0999999999999 73.7 340.6999999999998 184.3 313.8999999999999C185.4 313.4999999999999 250.6 292.7999999999999 295 322.8999999999999C310.5 334.1999999999998 323.8 334.1999999999998 330.5 338.8999999999999C330.6 338.9999999999999 392.2 390.9999999999999 417.5 404.1999999999998C464.7 433.5999999999999 487.4 420.8999999999998 492.6 422.1999999999998C497.3 423.1999999999998 506 447.9999999999999 509.6 447.9999999999999C515.1 447.9999999999999 511.2 427.7999999999999 513.2 422.0999999999999C513.7 420.0999999999999 516.8000000000001 417.0999999999999 519.4000000000001 417.0999999999999C521.7 417.0999999999999 521.1000000000001 417.8999999999999 529.7 422.0999999999999C538.1 427.4999999999999 544.6 439.6999999999998 550.3000000000001 439.0999999999999C562.0000000000001 437.4999999999999 531.3000000000001 397.4999999999999 531.3000000000001 392.1999999999998C531.3000000000001 390.1999999999998 531.5000000000001 391.3999999999999 535.9000000000001 382.6999999999998C538.5000000000001 377.1999999999998 540.5000000000001 369.1999999999998 542.1000000000001 362.6999999999998C550.4000000000001 332.9999999999999 547.8000000000002 348.0999999999999 555.5000000000001 325.7999999999999C575.7000000000002 275.6999999999998 576.1000000000001 280.5999999999999 576.1000000000001 272.8999999999999C576.1000000000001 265.3999999999999 572.0000000000001 261.8999999999999 568.9000000000001 256.3999999999999C567.4000000000001 253.3999999999999 564.3000000000001 248.8999999999999 561.7 248.3999999999999C559 247.6999999999999 568.7 249.8999999999999 548.3000000000001 245.8999999999999C541.1 244.8999999999999 534.9000000000001 250.3999999999999 533.4000000000001 255.3999999999999C531.8000000000001 260.0999999999998 536.2 265.4999999999999 521.6000000000001 278.2999999999999C511.3000000000001 288.2999999999999 500.5000000000001 289.5999999999999 489.7000000000002 295.2999999999999C479.9000000000001 300.9999999999999 477.8000000000002 294.2999999999999 471.7000000000002 287.2999999999999C453.7000000000002 264.3999999999999 437.7000000000002 240.3999999999999 419.7000000000002 217.4999999999998C407.9000000000002 202.4999999999998 395.5000000000002 187.0999999999999 386.2000000000002 170.0999999999999C382.3000000000002 163.2999999999999 376.7000000000002 141.9999999999998 375.9000000000002 140.1999999999999C369.7000000000002 122.4999999999999 370.4000000000002 114.3999999999999 359.4000000000002 71.8999999999999C356.3000000000002 61.8999999999999 353.7000000000002 50.4999999999999 350.7000000000002 39.4999999999999C348.5000000000002 32.6999999999999 343.3000000000002 -9.8000000000001 350.2000000000002 -19.9000000000001C352.3000000000002 -23.4000000000001 358.9000000000002 -24.4000000000001 361.5000000000002 -27.9000000000001C361.6000000000002 -28.0000000000001 371.1000000000002 -46.1000000000001 370.8000000000002 -47.9000000000001C370.8000000000002 -54.0000000000001 361.4000000000002 -53.5000000000001 359.5000000000002 -54.4000000000001C354.7000000000002 -57.3000000000001 355.7000000000002 -60.3000000000001 353.1000000000002 -61.8000000000001" />
+    <glyph glyph-name="strava"
+      unicode="&#xF428;"
+      horiz-adv-x="369.2" d=" M301.6 156L257.7000000000001 67.8L213.1000000000001 156H145.5000000000001L257.7000000000001 -64L369.2000000000001 156H301.6zM151.4 448L0 156H89.2L151.4 272.1L213.1 156H301.6L151.4 448z" />
+    <glyph glyph-name="stripe-s"
+      unicode="&#xF42A;"
+      horiz-adv-x="362.3" d=" M144.3 293.4C144.3 315.7000000000001 162.9 324.3 192.7 324.3C236.1 324.3 291.2000000000001 311 334.6 287.6V421.9C287.3 440.8 240.1 448 192.8 448C77.1 448 0 387.6 0 286.6C0 128.7 216.8 154.3 216.8 86.2C216.8 59.8 193.9 51.3 162.1 51.3C114.9 51.3 53.9 70.8 6 96.8V-31.7C59 -54.5 112.8 -64.1 162 -64.1C280.6 -64.1 362.3000000000001 -13.1 362.3000000000001 89.5C362.3000000000001 259.7 144.3000000000001 229.2 144.3000000000001 293.4" />
+    <glyph glyph-name="stripe"
+      unicode="&#xF429;"
+      horiz-adv-x="640" d=" M640 186.4C640 231.9 618 267.8 575.8 267.8S507.9 231.9 507.9 186.7C507.9 133.2 538.1999999999999 108.5 581.4 108.5C602.6 108.5 618.5 113.3 630.6 120V153.4C618.5 147.3 604.6 143.6 587 143.6C569.7 143.6 554.5 149.7 552.5 170.5H639.4C639.6 172.8 640 182.1 640 186.3999999999999M552.1 203.1999999999999C552.1 223.1999999999999 564.4 231.6 575.5 231.6C586.4 231.6 598 223.1999999999999 598 203.1999999999999H552.1zM439.2000000000001 267.8C421.8000000000001 267.8 410.6 259.5999999999999 404.4000000000001 253.8999999999999L402.1 264.8999999999999H363V60.0999999999999L407.4 69.4999999999999L407.5 119.6999999999999C413.9 114.9999999999999 423.4 108.4999999999999 438.9 108.4999999999999C470.7 108.4999999999999 499.7 131.6999999999999 499.7 188.0999999999999C499.8 239.6999999999999 470.4 267.7999999999999 439.2 267.7999999999999M428.6 145.2999999999999C418.2 145.2999999999999 412 149.0999999999999 407.7 153.6999999999999L407.4 219.6999999999999C412 224.7999999999999 418.4 228.4999999999999 428.6 228.4999999999999C444.8 228.4999999999999 455.9999999999999 210.2999999999999 455.9999999999999 187.0999999999999C456.1 163.1999999999999 445.1 145.2999999999999 428.6 145.2999999999999M346.4 324V287.8L301.8 278.3V314.5L346.4 324M301.9 264.8H346.5V111.6H301.9V264.8zM254.1 251.7C264.5 270.8 285.2 266.9 291.2 264.8V224C285.5 225.8 267.8 228.5 257.3 214.7V111.6H213V264.8H251.4L254.1 251.7M165.1 264.8H198.8V227H165.1V163.8C165.1 137.6 193.1 145.8 198.8 148.1V114.3C192.9 111.1 182.2 108.4 167.6 108.4C141.3 108.4 121.5 125.4 121.5 151.7000000000001L121.7 294.1L165 303.3000000000001L165.1 264.8000000000001zM44.9 219.7C44.9 199.7 112.8 209.2 112.8 156.3C112.8 124.3 87.4 108.5 50.5 108.5C35.2 108.5 18.5 111.5 2 118.6V158.6C16.9 150.5 35.9 144.4 50.6 144.4C60.5 144.4 67.6 147.1 67.6 155.3C67.6 176.5 0.1 168.5 0.1 217.7C0.1 249.1 24.1 267.9000000000001 60.1 267.9000000000001C74.8 267.9000000000001 89.5 265.6 104.2 259.8000000000001V218C90.7 225.3 73.5 229.4 60 229.4C50.7 229.3 44.9 226.6 44.9 219.7" />
+    <glyph glyph-name="studiovinari"
+      unicode="&#xF3F8;"
+      horiz-adv-x="512" d=" M480.3 260.3L484.5 232.3V204.3L459.4 160.2L419.6 81.8L363.5 14.3L284.4 -23.5000000000001L266.7 -48.0000000000001L259 -60.0000000000001L249.4 -64S266.7 -0.4 268.8 -0.4C270.9000000000001 -0.4 289.1 -1.1 289.1 -1.1L355.8 37.5000000000001L263.3 11.4L207.4 -25.4L184.6 -53.4L178 -54.8L198.8 18.8000000000001L205.7 24.3000000000001L226.4 11.4000000000001L314.7 56.6000000000001L371.5 108.1000000000001L386.3 176.5000000000001L260.9 153.2000000000001L276.1 171.4000000000001L102.7 224.7000000000001L184.6 235.2000000000001L18.6 358.1000000000002L133.5 340L32.2 448L285.1 321.4L253.6 359.4L378 285L234.7 384L253.4 345.6L203.8 363.7L158.3 448L352.9 326L310 381.8L418 285.4L430 294.3L409 310.7L413.2 348.5L451 358.9L480.2 334.2L491.7 330L484.7 323.8L493.2 311.8L480.1 304.4L469.8 284.2000000000001L480.3 260.3z" />
+    <glyph glyph-name="stumbleupon-circle"
+      unicode="&#xF1A3;"
+      horiz-adv-x="496" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 262.5C246.2 262.5 238.2 254.5 238.2 244.7V137.8C238.2 96.9 204.3 63.9 163.3 63.9C121.9 63.9 88.4 97.4 88.4 138.8V185.3H145.7V139.5C145.7 129.5 153.7 121.6999999999999 163.5 121.6999999999999S181.3 129.5999999999999 181.3 139.5V247.9C181.3 287.9 215.5 320 256 320C296.7 320 330.7 287.7 330.7 247.4V223.7L296.6 213.6L273.7 224.3V244.9C273.8 254.5 265.8 262.5 256 262.5zM423.6 138.9C423.6 97.5 390.1 64 348.7000000000001 64C307.5000000000001 64 273.8000000000001 97.2 273.8000000000001 138.2V185L296.7000000000001 174.3L330.8000000000001 184.4V137.3C330.8000000000001 127.5 338.8000000000001 119.7 348.6000000000001 119.7S366.4000000000001 127.6 366.4000000000001 137.3V185.3H423.7000000000001C423.6000000000001 139.4 423.6000000000001 138.9 423.6000000000001 138.9z" />
+    <glyph glyph-name="stumbleupon"
+      unicode="&#xF1A4;"
+      horiz-adv-x="512" d=" M502.9 182V112.3C502.9 50.2 452.6 -0.1 390.5 -0.1C328.7 -0.1 278.1 49.7 278.1 111.2V181.4L312.4000000000001 165.4L363.5000000000001 180.6V110C363.5000000000001 95.3 375.5000000000001 83.5 390.2000000000001 83.5S417 95.3 417 110V182H502.9zM278.2 240.2L312.5 224.2L363.6 239.4V275C363.6 335.5 312.5 384 251.5000000000001 384C190.7000000000001 384 139.4 335.8 139.4 275.8V113.4C139.4 98.5 127.4 86.7 112.7 86.7S86 98.5 86 113.4V182H0V112.3C0 50.3 50.3 0 112.4 0C174 0 224.8 49.5 224.8 110.8V271.1C224.8 285.8 236.8 297.8 251.5 297.8S278.2 285.8 278.2 271.1V240.2z" />
+    <glyph glyph-name="superpowers"
+      unicode="&#xF2DD;"
+      horiz-adv-x="448" d=" M448 416C364.7 405 281.2 394 198 383C106 370.5 34.7 296.3 29 203C25.7 147.5 47 93.5 86.8 54.8L0 -32C83.3 -21 166.5 -10 249.8 1C341.6 13.5 413.1 87.8 418.5 180.8C422 236.3 400.5 290.3 360.8 329L448 416zM368.3 183.7C364.1 104.2 294.3 44.5 215.5 49.2C136 53.9 74.8 120.2 79.2 200.2C83.7 279.4 153.5 339.5 232.2 334.7C311.5 330 372.7 263.7 368.3 183.7z" />
+    <glyph glyph-name="supple"
+      unicode="&#xF3F9;"
+      horiz-adv-x="640" d=" M640 185.5C640 121.4 531 69.4 396.5 69.4C371.7 69.4 347.9 71.2 325.4 74.4C333.1 74 340.9 73.8 348.8 73.8C483.3 73.8 592.3 130.6999999999999 592.3 200.9C592.3 230.3 573.1999999999999 257.3 541.0999999999999 278.9C601.0999999999999 257.8 639.9999999999999 223.8 639.9999999999999 185.5zM47.7 220.1C47.6 290.3 156.5 347.4 291 347.7C298.9 347.7 306.6 347.5 314.3 347.2C291.8 350.4 268 352.1 243.3 352.1C108.8 351.7 -0.1 299.5 0 235.4C0.1 197.1 39.1 163.1 99.3 142.1C67 163.6 47.8 190.7000000000001 47.7 220.1zM107.9 180.2S118.4 167 137.2 167C155.1 167 165.6 178.5 165.6 192.1C165.6 220.1 125.4 217.2 125.4 231.8C125.4 237.2 130.7 240.9 137.9 240.9C143.6 240.9 149.2000000000001 238.3 149.2000000000001 234.3V230.4H163.4V238.3C163.4 250.4 148 255.1 138 255.1C121.5 255.1 109.5 244.9000000000001 109.5 231.0000000000001C109.5 204.4 149.7000000000001 205.6 149.7000000000001 191.1C149.7000000000001 184.5 143.9 181 137.4 181C125.5 181 116.7 191.1 116.7 191.1L107.9 180.2000000000001zM228.7 253.8V199.4C228.7 188.1 221.6 181.6 210.9 181.6C200.2 181.6 193.1 188.1 193.1 199.3V253.8H177.3V198.8C177.3 179.9 190.7 166.9 211 166.9C231.1 166.9 244.4 179.9 244.4 198.8V253.8H228.7zM263.1 168.4H278.9V197.9H294.4C310.4 197.9 321.6 209.4 321.6 226S310.4 253.8 294.4 253.8H255.3V240.4H263.1V168.4zM278.9 211.4V240.5H291.8C300.5 240.5 305.5 234.8 305.5 226.1C305.5 217.2 300.3999999999999 211.4 291.5 211.4H278.8999999999999zM335.9 168.4H351.7V197.9H367.2C383.2 197.9 394.4 209.4 394.4 226S383.2 253.8 367.2 253.8H328.1V240.4H335.9V168.4zM351.6 211.4V240.5H364.5C373.2 240.5 378.2 234.8 378.2 226.1C378.2 217.2 373.2 211.4 364.2 211.4H351.5999999999999zM408.7 176.6C408.7 170.8 411.1 168.4 416.9 168.4H454.5C460.3 168.4 462.7 170.8 462.7 176.6V189.6H448.4V184.4C448.4 182.7 447.4 181.8 445.8 181.8H427.2C425.5 181.8 424.5999999999999 182.8 424.5999999999999 184.4V245.6C424.5999999999999 251.3 422.2 253.8 416.3999999999999 253.8H401V240.4H406.2C407.9 240.4 408.8 239.4 408.8 237.8V176.6zM472.1 176.6C472.1 170.8 474.4999999999999 168.4 480.3 168.4H519C524.7 168.4 527.2 170.8 527.2 176.6V189.6H512.9000000000001V184.4C512.9000000000001 182.7 511.9000000000001 181.8 510.3000000000001 181.8H490.6000000000001C488.9000000000001 181.8 488.0000000000001 182.8 488.0000000000001 184.4V204.7H515.7V218.1H488V240.5H507.2C508.9 240.5 509.8 239.5 509.8 237.9V232.7H524V245.7C524 251.4 521.5 253.9 515.8 253.9H464.1999999999999V240.5H471.9999999999999V176.6zM531 252.6V246.7H532.6V252.6H535.3000000000001V253.8H528.3000000000001V252.6H531.0000000000001zM536.7 253.8V246.7H538.2V252.4L540.5 246.7H541.8L544.0999999999999 252.4V246.7H545.5999999999999V253.8H543.3L541.1999999999999 248.7L539.0999999999999 253.8H536.6999999999999z" />
+    <glyph glyph-name="suse"
+      unicode="&#xF7D6;"
+      horiz-adv-x="631.8" d=" M467.1 345.2S466.8 326.9 466.8 324.9C457.7 327.9 392.4 349 331.1 351.2C279.2000000000001 353 208.3 355.5 108.1 293.9C88.7 281.5 34.2 247.8 8.5 184.2C3 170.9 -4.1 140.9 3 112.8C6.1 100.5 11.8 88.2 19.5 77.1C36.9 52.1 66.1 35.5 97.6 32.7C142 28.8000000000001 175.7 48.7 187.6 86.0000000000001C195.8 111.8000000000001 187.6 149.6000000000001 156.1 168.9000000000001C130.5 184.6000000000001 102.8 181.0000000000001 86.9 170.5000000000001C73 161.3000000000001 65.1 147.0000000000001 65.3 131.3000000000001C65.6 103.5000000000001 89.6 88.7000000000001 106.8 88.7000000000001C111.8 88.7000000000001 116.9 89.5000000000001 122.6 91.4000000000001C129.1 93.2000000000001 135.9 97.9000000000001 135.9 106.3000000000001C135.9 118.4000000000001 124.3 121.1000000000001 119.1 120.2000000000001C116.2 119.7000000000001 114.6 118.2000000000001 107.3 117.8000000000001C105.3 118.0000000000001 95.3 120.9000000000001 95.3 131.8000000000001V131.9000000000001C95.5 144.2000000000001 108.5 149.9000000000001 120.8 148.8000000000001C153.1 146.0000000000001 168.5 108.1000000000001 149.3 83.1000000000001C131 59.4000000000001 72.7 59.9000000000001 49.6 103.5000000000001C23.6 152.7000000000001 62.3 214.7000000000001 136.6 201.9000000000001C169.8 196.2000000000001 220.2 166.4000000000001 239 97.6000000000001H284.9C279.2 115.2000000000001 276 165.9000000000001 327.6 165.9000000000001C384.3 165.9000000000001 391.5 126.0000000000001 407.4 97.6000000000001H456C443.2 115.9000000000001 434.3 136.3000000000001 437.1 153.4000000000001C442.7000000000001 187.2000000000001 476.8 171.8000000000001 519.5 170.8000000000001C586 170.4000000000001 621.6 197.8000000000001 622.6 198.8000000000001C626.3000000000001 201.9000000000001 629.1 214.6000000000001 629.6 216.5000000000001C630.9 221.6000000000001 626.4 218.9000000000001 626.4 218.9000000000001C617.6999999999999 213.7000000000001 595.9 203.7000000000001 575.5 203.3000000000001C550.2 202.8000000000001 499.3 228.7000000000001 493.9 231.5000000000001C493.6 231.9000000000001 494 230.3000000000001 482.9 257.0000000000001C571.3 198.7000000000001 601.1999999999999 216.5000000000001 628.0999999999999 235.3000000000001C628.8999999999999 235.9000000000001 632.3999999999999 238.2000000000001 631.6999999999999 241.0000000000001C617.9 289.1 609.3 303.7000000000001 597.1999999999999 310.6C560.1999999999999 332.2000000000001 472.1999999999999 345.3000000000001 467.9999999999999 345.9000000000001C468.1 346.0000000000001 467.1 346.2000000000001 467.1 345.2000000000001zM527.5 272.4C528.1 292.6 545 309.4 566.4 308.7C599.8 307.5 615.1999999999999 266.4 590.8 243.5C566.5999999999999 220.8 526.4 238.9 527.5 272.4zM566.1 297.7000000000001C551.3000000000001 298.2000000000001 539.4 286.5 539 272.4C538.5 257.9 549.8 245.7 564.3 245.2C579.0999999999999 244.7 591 256.3 591.5 270.5C592 285 580.6 297.1 566.1 297.7000000000001zM570.4 268.9C555 268.9 555 284.5 570.4 284.5S585.8 268.9 570.4 268.9z" />
+    <glyph glyph-name="teamspeak"
+      unicode="&#xF4F9;"
+      horiz-adv-x="511.8" d=" M0.82 210.18C3.18 225.7 11.51 237.22 25.7 244.21C29.2 246.06 31.35 247.71 32.07 252.02C38.24 285.43 51.6 315.9600000000001 71.44 343.61C73.8 346.8 75.45 348.9600000000001 72.47 352.9600000000001C68.77 358.31 71.44 363.14 75.45 367.45C103.51 399.32 137.33 422.55 177.43 434.89C273.24 464.29 357.53 444.24 429.8 374.44C436.48 368.07 445.32 361.5900000000001 436.79 350.08C435.4500000000001 348.23 437.82 346.58 438.9500000000001 345.04C459.6100000000001 316.98 473.1800000000001 285.62 479.35 251.39C480.17 247.69 482.33 246.35 485.21 245.02C502.58 236.18 510.91 221.68 511.22 202.77C511.22 185.6 513.07 168.23 510.1900000000001 151.06C506.1800000000001 126.39 481.0000000000001 109.32 456.9400000000001 114.36C449.7400000000001 116 447.5900000000001 121.56 447.5900000000001 128.55C447.5900000000001 156.61 448.4100000000001 184.99 447.5900000000001 213.15C445.74 288.9100000000001 411.4100000000001 345.9600000000001 345.3100000000001 382.56C234.28 443.02 92.11 375.58 67.54 251.09C61.48 220.67 65.8 202.82 63.84 125.27C63.53 118.07 59.52 114.07 51.81 113.76C20.97 112.42 0 131.95 0 162.79V183.66M221.74 76.85C233.56 81.17 241.79 88.67 244.25 101.21C246.61 113.55 232.22 131.23 211.87 149.9400000000001C191 169.1600000000001 163.65 189.0000000000001 148.44 196.5100000000001C126.75 208.5400000000001 106.7 198.3600000000001 102.18 173.7900000000001C97.14 147.5800000000001 102.18 122.3900000000001 116.67 99.8800000000001C126.85 84.3600000000001 142.06 77.1600000000001 160.05 75.8300000000001C171.67 75.2100000000001 212.59 73.6700000000001 221.74 76.8500000000001M351.5700000000001 71.3000000000001C388.0700000000001 68.4900000000001 410.9000000000001 99.8500000000001 409.9600000000001 131.7500000000001C407.8200000000001 176.9200000000001 343.79 148.2300000000001 322.17 139.7700000000001C249.01 111.6300000000001 277.12 84.85 299.9700000000001 79.02M449.23 80.35C446.25 82.71 442.0300000000001 81.38 440.9000000000001 77.99C432.8800000000001 52.6 396.1800000000001 -34.47 268.8200000000001 -43.52C119.1500000000001 -54.01 349.1100000000001 -87.11 414.1800000000001 -37.15C436.9000000000001 -19.78 461.7800000000001 -2.1 460.7500000000001 48.28C460.4300000000001 58.35 455.9100000000001 75 449.2300000000001 80.35" />
+    <glyph glyph-name="telegram-plane"
+      unicode="&#xF3FE;"
+      horiz-adv-x="448" d=" M446.7 349.4L379.1 30.6C374 8.1 360.7000000000001 2.5 341.8 13.1L238.8 89L189.1 41.2C183.6 35.7 179 31.1 168.4 31.1L175.8000000000001 136L366.7000000000001 308.5C375.0000000000001 315.9 364.9000000000001 320 353.8000000000001 312.6L117.8 164L16.2 195.8C-5.9 202.7 -6.3 217.9 20.8 228.5L418.2 381.6C436.6 388.5 452.7 377.5 446.7 349.4z" />
+    <glyph glyph-name="telegram"
+      unicode="&#xF2C6;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM369.8 270.1L329.1 78.3C326.1 64.6999999999999 318 61.4 306.7000000000001 67.8L244.7000000000001 113.5L214.8000000000001 84.6999999999999C211.5 81.3999999999999 208.7000000000001 78.5999999999999 202.3000000000001 78.5999999999999L206.7000000000001 141.6999999999999L321.6 245.5C326.6 249.9 320.5 252.4 313.9000000000001 248L171.9 158.5999999999999L110.7 177.6999999999999C97.4 181.8999999999999 97.1 191 113.5 197.3999999999999L352.6 289.5999999999999C363.7000000000001 293.5999999999999 373.4000000000001 286.8999999999999 369.8 270.0999999999999z" />
+    <glyph glyph-name="tencent-weibo"
+      unicode="&#xF1D5;"
+      horiz-adv-x="384" d=" M72.3 -47.8C73.7 -67.7 44.7 -70 42.6 -50.7C31 79.2 73.7 188.8 144 262.5C128.4 296.5 153.2 339.6 194.6 339.6C224.9 339.6 249.7 315 249.7 284.5C249.7 240.5 200.2 213.7 162.8 239.4C97.1 168.1 61.4 69.6 72.3 -47.8zM192 447.9C66.1 447.9 -12.3 313.7 43.7 205.6C52.4 188.2 79 201.1 70 219C23.7 311.6 91 418.2 192 418.2C267.4 418.2 328.9 356.8 328.9 281.3C328.9 190.5 242 127.4 161.2 148.2C142.1 152.3 135.6 123.8 154.6 119.1C265.3 95.9 358.6 179.1 358.6 281.4C358.6 373.3 284 447.9 192 447.9z" />
+    <glyph glyph-name="the-red-yeti"
+      unicode="&#xF69D;"
+      horiz-adv-x="505.07" d=" M484.41 206.26L505.0700000000001 199.13C495.51 223.04 481.14 236.09 473.35 243.89L480.48 262.09C480.73 262.09 492.76 289.88 478.02 292.83C477.39 304.18 471.4300000000001 319.88 459.58 319.88C451.96 330.45 441.8700000000001 332.18 428.8400000000001 325.78C419.99 321.6 411.1300000000001 315.7 403.5100000000001 309.3C398.2100000000001 315.74 400.5600000000001 308.92 400.5600000000001 339.06C363.4800000000001 363.3400000000001 355.1600000000001 350.79 325.8000000000001 336.11L326.2900000000001 335.62C305.1400000000001 343.24 282.2700000000001 347.67 257.9300000000001 348.9000000000001C252.3800000000001 357.61 239.3300000000001 368 232.8500000000001 373.98L257.6900000000001 366.85C252.2000000000001 372.3400000000001 230.9100000000001 379.76 223.5100000000001 382.1C241.7100000000001 386.2100000000001 253.2900000000001 402.87 266.0500000000001 415.05C231.1300000000001 425.13 198.1800000000001 420.9500000000001 168.1700000000001 403.25L179.97 447.52L178.24 448C146.64 423.84 145.25 406.1 144.55 402.51C143.64 404.9 138.23 422.12 129.3 429.56C125.86 420.71 125.86 412.35 128.81 404.23C131.76 395.87 134.71 389.4700000000001 137.17 385.29C121.13 388.5900000000001 108.82 390.19 87.99 385.29H84.3L117.25 371.03C96.59 351.6 81.35 329.2200000000001 70.53 303.65L68.81 295.29L70.53 293.5700000000001L78.15 298.24C74.82 286.6 72.88 278.85 71.51 272.42C60.2 259.63 51.1 246.35 43.72 232.0900000000001C28.75 231.0900000000001 11.9 221.31 3.39 217.8300000000001L6.34 214.3900000000001L35.11 213.4100000000001C34.62 212.4300000000001 34.37 211.2000000000001 33.88 210.2100000000001C26.59 203.8300000000001 -5.9 172.5600000000001 0.93 129.5500000000001L21.1 151.9300000000001C21.59 150.21 21.84 148.4900000000001 22.33 146.7700000000001C22.33 121.24 22.7 57.1300000000001 87.25 -3.73C131.03 -43.83 183.41 -63.9999999999999 244.89 -63.9999999999999C366.62 -63.9999999999999 467.94 23.2900000000001 467.94 147.4900000000001C474.74 157.2100000000001 466.7 144.4600000000001 484.66 172.5700000000001L497.6899999999999 158.3100000000001L500.1499999999999 158.8000000000001C498.4299999999999 170.1100000000001 495.4799999999999 181.1800000000001 491.2999999999999 192.9800000000001C489.0799999999999 199.3800000000001 486.6199999999999 203.3100000000001 484.4099999999999 206.2600000000001zM468.92 247.58L454.66 259.38L472.86 260.61L468.92 247.58zM394.1600000000001 336.85L393.67 314.96C399.19 296.83 410.55 297.75 416.05 297.75L412.61 302.42L434.99 307.83C424.9100000000001 307.3399999999999 416.05 307.3399999999999 407.94 307.83C420.75 309.9599999999999 441.26 336.86 450.98 319.14C454.42 311.52 457.37 301.93 460.32 291.35L462.04 297.25C460.81 301.43 460.32 306.59 460.32 312.5C465.73 312.01 469.17 309.06 469.66 302.42C470.15 296.03 471.38 287.66 473.1 277.09L477.77 288.4C482.36 288.4 482.24 292.01 475.31 267.74C454.42 276.44 440.2200000000001 276.1 428.83 276.1L447.03 292.08C421.75 283.93 414 281.28 392.19 271.18C391.11 276.5899999999999 387.2099999999999 284.68 376.2099999999999 291.1C373.0299999999999 287.28 373.45 290.2 375.4699999999999 276.34H373.01C371.7799999999999 284.7 368.83 292.32 364.6499999999999 299.46L368.83 302.9C377.19 310.03 380.63 317.16 379.3999999999999 324.79C378.9099999999999 331.18 373.9899999999999 338.32 365.87 345.45C371.53 348.65 381.12 345.7 394.16 336.85zM354.5700000000001 346.93C357.2600000000001 345.01 365.9700000000001 341.55 373.5100000000001 329.72C377.7100000000001 321.32 377.4900000000001 319.91 376.9500000000001 318.65C376.4700000000001 316.24 376.4900000000001 314.32 374.0000000000001 311.52C372.2800000000001 309.06 368.5900000000001 306.85 362.2000000000001 303.9C354.5800000000001 316.93 345.7200000000001 327.51 334.4100000000001 335.13L354.5700000000001 346.93zM87.25 304.88L88.48 306.6C89.71 309.55 92.66 314.2200000000001 97.82 321.85L100.28 325.29L87.25 312.99L92.66 317.66L82.58 308.32L78.4 307.09C90.7 331.19 101.52 348.4 110.86 357.26C120.2 366.6 126.84 373.24 131.03 376.69L124.64 375.46C113.33 379.64 105.21 382.59 99.8 383.82C102.26 384.31 103.49 384.31 103 384.31C113.33 384.31 120.46 383.82 123.9 383.08C129.31 381.36 134.47 380.62 139.88 380.62L140.37 382.34L132.0100000000001 418.24L145.5400000000001 389.22C147.2600000000001 391.68 149.7200000000001 396.35 151.4400000000001 403.48C153.1600000000001 409.87 156.8500000000001 416.51 161.5200000000001 422.91C166.1900000000001 429.3 169.1400000000001 433.48 170.8600000000001 434.22C167.9100000000001 425.37 166.1900000000001 417.01 164.4700000000001 408.89L162.7500000000001 401.76L162.2600000000001 397.09L164.7200000000001 394.63C186.6100000000001 408.16 210.2100000000001 414.06 236.0400000000001 413.57L257.1900000000001 413.08C245.3900000000001 399.55 229.4000000000001 391.19 208.7400000000001 388.24C200.1300000000001 386.76 192.5100000000001 385.78 185.3800000000001 385.29L185.1300000000001 385.78L182.6700000000001 387.01C177.5100000000001 387.99 172.8300000000001 387.26 168.65 385.04C166.19 385.29 163.7300000000001 385.53 161.5200000000001 385.78L159.06 384.06L159.5500000000001 382.83C161.5200000000001 382.58 163.4800000000001 382.34 165.7000000000001 382.09L163.7300000000001 378.65L167.1700000000001 379.14L156.6000000000001 367.83C152.4200000000001 364.88 151.1900000000001 361.44 152.4200000000001 358.49L157.8300000000001 361.93H159.06C165.45 370.29 174.31 375.46 184.3900000000001 377.18V380.13C190.78 379.64 197.4200000000001 379.15 203.8200000000001 378.9C210.21 378.9 212.1800000000001 378.41 209.2300000000001 377.67C216.8500000000001 373.49 223.4900000000001 368.82 229.8900000000001 364.14C243.4200000000001 354.06 253.5000000000001 342.25 259.8900000000001 328.73C268.7400000000001 310.53 273.42 291.6 273.42 272.17C273.42 262.0899999999999 272.19 252.74 270.4700000000001 243.89C268.12 233.1 262.67 214.27 254.4900000000001 197.9L256.9500000000001 197.41C275.1800000000001 217.0799999999999 298.85 213.3899999999999 306.1300000000001 213.3899999999999L299.7400000000001 207.4899999999999L322.1200000000001 189.7799999999999L320.4000000000001 159.0399999999999C314.99 171.3399999999999 303.92 180.1899999999999 287.4500000000001 186.8299999999999C303.9300000000001 172.0699999999999 311.0600000000001 165.68 309.3400000000001 166.6599999999999C304.5300000000001 169.4699999999999 305.8100000000001 168.5299999999999 298.5200000000001 170.3499999999999C302.6400000000001 166.2299999999999 315.9700000000001 151.5599999999999 316.7200000000001 149.6899999999999L316.9700000000001 149.4399999999999L316.7200000000001 149.1899999999999C316.7200000000001 147.4299999999999 318.2800000000001 150.3699999999999 302.7000000000001 126.3199999999999C227.5500000000001 141.6299999999999 196.4400000000001 169.0599999999999 161.5400000000001 189.5199999999999L173.3400000000001 188.2899999999999C161.5900000000001 206.8199999999999 157.7100000000001 206.0099999999999 134.9800000000001 214.3599999999999L145.5500000000001 222.7199999999999C136.7000000000001 225.6699999999999 127.3500000000001 225.6699999999999 117.2700000000001 222.2299999999999L124.8900000000001 232.7999999999999L123.6600000000001 234.5199999999999C108.7700000000001 230.1799999999999 103.8100000000001 225.3499999999999 101.0400000000001 223.2099999999998C99.9000000000001 228.6699999999999 98.2700000000001 235.6499999999999 88.7400000000001 251.9799999999999L87.5100000000001 224.9299999999998L73.9800000000001 230.3399999999999C75.4500000000001 255.4499999999998 79.3800000000001 280.7799999999999 87.2500000000001 304.8799999999998zM363.6600000000001 -25.15C313.74 -50.11 307.5300000000001 -47.56 304.6400000000001 -49C274.8800000000001 -37.2 253.7400000000001 -17.28 241.1900000000001 9.77L271.1900000000001 -6.71C261.4200000000001 2.6 252.8500000000001 9.83 232.8300000000001 37.5599999999999L244.6300000000001 14.4399999999999L226.9200000000001 22.0599999999999C241.1200000000001 0.98 250.3900000000001 -29.6800000000001 293.5600000000001 -51.47C172.7900000000001 -75.62 94.5300000000001 20.64 92.6500000000001 22.8C103.9600000000001 13.46 115.7700000000001 5.09 128.0600000000001 -2.04C131.5000000000001 -3.76 135.1900000000001 -4.5 138.1400000000001 -3.27L122.1600000000001 17.39C131.3900000000001 13.2 131.6500000000001 12.89 191.2600000000001 -11.63C148.7200000000001 9.03 117.4800000000001 29.19 98.0600000000001 48.62C97.5700000000001 42.23 96.83 38.54 96.83 38.54C105.68 30.92 112.8100000000001 22.06 117.4900000000001 11.98C78.44 30.83 59.9 59.59 46.17 94.61C96.0600000000001 39.51 165.0200000000001 57.12 166.6700000000001 57.48C201.46 41.05 236.5400000000001 33.87 280.5300000000001 46.91C283.85 46.91 300.8300000000001 29.93 305.86 7.81L310.04 10.76L307.5800000000001 34.37C316.5300000000001 25.42 332.48 11.81 342.0100000000001 21.34C326.4300000000001 26.66 318.4900000000001 30.83 312.5000000000001 53.0600000000001C317.0800000000001 48.8600000000001 320.0700000000001 44.0100000000001 340.2900000000001 38.0600000000001L341.5200000000001 39.2900000000001L330.9500000000001 53.5500000000001C342.6000000000001 58.4000000000001 327.4100000000001 52.5400000000001 362.9200000000001 64.3700000000001C367.2600000000001 30.14 371.9700000000001 15.2200000000001 363.6600000000001 -25.1499999999999zM479 189.29L476.54 188.8L479.49 179.46C475.94 173.59 455.76 135.2000000000001 407.93 99.78C368.39 70.02 331.35 60.65 327.02 59.4500000000001L319.4 66.58L318.17 63.6300000000001L332.43 47.65L325.3 52.3200000000001L328.74 48.14H327.51L305.62 61.67L314.9599999999999 35.11L296.0199999999999 62.9L294.7899999999999 60.4400000000001L302.4099999999999 31.4200000000001C296.2999999999999 39.6600000000001 281.3799999999999 64.0300000000001 245.5999999999999 71.0100000000001L278.0599999999999 49.8600000000001C246.0899999999999 45.1900000000001 214.8599999999999 47.4000000000002 184.8599999999999 56.2500000000001C180.6799999999999 57.4800000000001 176.0099999999999 58.7100000000001 171.3299999999999 60.4300000000001L172.5599999999999 63.3800000000001L127.7999999999999 85.7600000000001L153.8699999999999 63.3800000000001C96.2099999999999 54.3000000000001 40.9099999999999 88.7900000000001 27.4699999999999 146.7500000000001L25.0099999999999 163.2300000000001L2.6599999999999 140.8500000000001C22.1299999999999 198.3600000000001 28.2699999999999 198.7400000000001 54.0599999999999 210.9400000000002C44.9699999999999 216.2700000000002 52.5099999999999 214.2000000000001 15.6999999999999 220.2800000000002C31.4799999999999 226.0700000000002 48.7499999999999 235.7200000000002 88.7399999999999 215.1200000000002C91.6899999999999 216.6000000000001 90.8799999999999 216.2200000000002 92.4299999999999 216.8400000000002C93.0699999999999 220.0200000000002 92.8399999999999 217.6600000000002 93.4099999999999 228.6400000000002C97.2999999999999 218.6300000000002 97.0399999999999 219.9700000000002 96.3599999999999 219.3000000000002L98.0799999999999 218.8100000000002C110.7699999999999 225.3000000000002 106.9999999999999 223.3300000000002 115.0499999999999 227.6600000000002L109.6399999999999 214.1300000000002L132.0199999999999 220.0300000000002L123.6599999999999 211.6700000000001L126.1199999999999 209.2100000000001C130.6199999999999 211.0100000000001 156.4699999999999 205.7900000000001 166.9399999999999 193.2300000000001L143.3299999999999 195.6900000000002C182.7199999999999 172.7100000000002 194.7899999999999 141.7200000000002 199.1499999999999 126.1000000000001L200.8699999999999 127.3300000000002C198.0299999999999 149.6100000000001 188.4999999999999 161.2100000000002 184.8899999999999 167.4100000000002C189.1099999999999 162.4200000000001 224.0899999999999 132.8500000000001 295.3099999999999 121.4200000000001C283.9999999999999 121.9100000000002 272.1899999999999 116.0100000000001 260.3899999999999 102.4800000000001L307.1099999999999 122.6500000000002L297.7699999999999 100.7600000000002C305.39 110.8400000000002 312.5299999999999 124.3700000000002 318.9199999999999 140.3500000000001V140.8400000000002L320.1499999999999 143.7900000000001L318.9199999999999 127.8100000000001C332.4499999999999 169.6200000000001 344.2499999999999 206.2600000000001 354.33 237.4900000000001L367.8599999999999 265.2800000000001V267.2500000000001L362.4499999999999 271.4300000000001H372.5299999999999L378.4299999999999 267.2500000000001L380.8899999999998 268.4800000000002L377.4499999999998 284.4600000000001L389.7499999999999 265.5200000000001L431.5599999999999 285.6900000000001L416.7999999999999 272.6600000000001L417.2899999999999 269.7100000000002L434.9999999999999 270.2000000000002C446.3099999999999 269.7100000000002 456.8899999999998 268.4800000000002 467.9499999999998 266.0200000000001L444.3399999999998 263.5600000000001L443.1099999999998 260.6100000000002L469.6699999999998 237.4900000000001C479.7499999999998 227.4100000000001 488.6099999999998 216.8300000000001 496.7199999999998 205.5200000000001C485.4799999999998 208.8100000000001 486.4399999999998 208.9600000000001 475.5699999999998 208.9600000000001L487.8699999999998 176.5000000000001L478.9999999999998 189.2900000000001zM201.11 278.3200000000001C166.26 263.9000000000001 166.38 264.3400000000001 164.96 264.0600000000001C144.13 259.3300000000001 145.99 288.5 146.02 288.9000000000001L151.92 290.13L151.43 292.5900000000001C131.26 295.24 120.4 288.4200000000001 118.97 287.6700000000001C119.46 287.1800000000001 121.92 284.23 124.87 278.3300000000001C129.05 284.7200000000001 133.72 288.4100000000001 140.12 288.9000000000001C138.4 277.5900000000001 138.89 266.5200000000001 141.84 255.2100000000001C141.91 254.7000000000001 144.41 237.7700000000001 169.38 231.1100000000001C180.69 228.1600000000001 196.43 229.8800000000001 218.32 236.5200000000001L208.98 236.0300000000001C204.8 250.79 202.59 260.87 203.08 265.54C214.39 274.39 224.97 276.85 233.82 273.1600000000001H236.28L224.48 280.7800000000001L217.35 280.29C211.45 279.0600000000001 205.05 276.11 197.92 271.93L201.11 278.32zM212.18 365.13L209.72 364.6400000000001L210.21 361.6900000000001C218.57 362.18 227.42 360.4600000000001 236.28 355.79C233.78 361.3300000000001 226.31 370.05 208 370.05L208.49 367.5900000000001L212.18 365.1300000000001zM145.04 309.0600000000001C141 315.4100000000001 141.95 314.11 140.37 315.7000000000001C162.06 298.9400000000001 156.85 294.29 186.85 292.0900000000001L183.9 296.76C192.75 304.38 197.43 313.9700000000001 198.66 325.04C200.38 341.0200000000001 197.43 354.55 189.81 366.35L202.84 373.9700000000001C202.84 374.4600000000001 202.84 375.2000000000001 202.35 375.6900000000001C197.68 377.4100000000001 193.01 376.92 188.82 373.9700000000001C176.14 367.3 160.83 353.0300000000001 159.8 351.5900000000001C158.08 349.87 156.36 345.6900000000001 154.39 338.0600000000001C152.67 330.9300000000001 151.44 323.3 151.44 314.4500000000001C146.76 322.4100000000001 140.92 320.85 131.5200000000001 320.35L138.65 312.73C122.18 312.73 115.3300000000001 297.3000000000001 115.04 296.7500000000001C121.85 296.7600000000001 119.64 304.35 145.04 309.0600000000001zM159.06 334.3900000000001C160.29 342.0100000000001 162.5 347.42 165.45 351.6C170.86 357.99 176.02 361.68 181.43 363.4000000000001C185.61 365.12 188.56 362.17 191.51 354.06C193.97 346.44 194.95 337.5800000000001 194.46 328.73C193.97 319.39 191.02 311.52 186.1 305.61C183.15 302.17 180.69 299.7100000000001 179.71 297.99C175.0400000000001 297.5 171.35 297.99 168.4 298.48L161.2700000000001 301.92L155.8600000000001 308.31C156.8500000000001 318.4 157.34 327.25 159.06 334.39zM221.7700000000001 355.7800000000001C215.3800000000001 359.2200000000001 211.2000000000001 352.8300000000001 209.47 336.8400000000001S211.93 307.3300000000001 221.2700000000001 297.25C230.6100000000001 287.17 239.4700000000001 286.6800000000001 247.3400000000001 294.3000000000001C255.2100000000001 301.9200000000001 250.7800000000001 317.9100000000001 236.0300000000001 342.0100000000001C232.8400000000001 347.4200000000001 228.1600000000001 352.0900000000001 221.7700000000001 355.7800000000001zM217.1000000000001 309.5500000000001C222.4600000000001 307.3200000000001 227.6100000000001 307.6400000000001 229.4000000000001 320.12V324.79L228.1700000000001 324.3000000000001C223.8900000000001 327.35 225.6200000000001 328.79 226.4500000000001 330.4500000000001L226.9400000000001 330.9400000000001C226.0600000000001 332.1700000000001 221.9200000000001 339.0500000000001 214.4000000000001 326.2700000000001C213.9100000000001 339.8000000000001 214.8900000000001 348.1600000000001 217.3500000000001 351.11C218.5800000000001 353.5700000000001 222.0200000000001 352.3400000000001 228.6600000000001 346.9300000000001C235.0500000000001 341.5200000000001 239.9700000000001 330.9500000000001 243.9100000000001 314.4700000000001C250.5000000000001 286.4100000000001 224.2100000000001 288.2100000000001 217.1000000000001 309.5500000000001zM172.0900000000001 314.9600000000001C173.6600000000001 314.6500000000001 181.4300000000001 316.0500000000001 181.4300000000001 329.7200000000001H180.9400000000001C175.5000000000001 330.8100000000001 178.7000000000001 335.1900000000001 180.2000000000001 335.6200000000001C178.4800000000001 338.5700000000001 176.7600000000001 339.8000000000001 174.7900000000001 340.2900000000001C166.6400000000001 340.2900000000001 163.1400000000001 327.6300000000001 166.6700000000001 319.1400000000001C167.9100000000001 316.6800000000001 169.8800000000001 315.4500000000001 172.09 314.9600000000001zM218.0800000000001 253.4800000000001C219.8000000000001 242.9100000000001 222.7500000000001 235.7700000000001 226.9300000000001 231.5900000000001C217.6700000000001 224.98 199.3900000000001 217.7400000000001 180.4500000000001 215.6100000000001L180.9400000000001 214.3800000000001C189.3000000000001 213.1500000000001 197.4200000000001 213.8900000000001 205.7800000000001 216.8400000000001L198.6500000000001 203.8100000000001C202.8300000000001 205.5300000000001 208.7300000000001 210.9400000000001 216.3600000000001 218.5700000000001C228.2900000000001 224.0800000000001 229.0800000000001 223.6400000000001 236.5300000000001 234.5500000000001C223.8000000000001 241.1300000000001 220.7700000000001 248.3800000000001 218.0800000000001 253.4800000000001z" />
+    <glyph glyph-name="themeco"
+      unicode="&#xF5C6;"
+      horiz-adv-x="441.03" d=" M199.74 435.71C209.48 441.35 225.33 441.44 235.13 435.92L423.26 329.9700000000001C433.07 324.45 441.02 310.83 441.02 299.5900000000001V85.72C441.02 74.46 433.09 60.83 423.31 55.2600000000001L235.09 -51.88C225.31 -57.45 209.51 -57.36 199.8 -51.67L17.58 55.05C7.87 60.74 0 74.48 0 85.73V299.5900000000001C0 310.85 7.9 324.55 17.63 330.18L199.74 435.71zM123.54 239C107.85 239 92.15 238.86 76.46 238.86V138.99H95.29V168.38H123.54C172.48 168.38 172.33 239 123.54 239zM261.5 140.27L231.25 174.37C267.65 181.76 265.51 238.58 220.55 238.86C204.71 238.86 188.88 239 173.04 239V138.99H191.87V172.37H210L239.1 138.99H261.5V140.27zM220.56 221.31C243.54 221.31 243.46 189.35 220.56 189.35H191.88V221.31H220.56zM126.49 222.88C147.34 222.88 147.27 184.64 126.49 184.64H94.68V222.87L126.49 222.88zM316.14 240.85C248.74 240.85 246.28 136.7 316.14 136.7C384.53 136.71 384.47 240.85 316.14 240.85zM316.14 223.73C359.57 223.73 360.24 153.97 316.14 153.97C272.02 153.97 272.4 223.73 316.14 223.73z" />
+    <glyph glyph-name="themeisle"
+      unicode="&#xF2B2;"
+      horiz-adv-x="512" d=" M208 359.714C208 369.714 214.286 381.428 225.715 381.428C236.857 381.428 243.429 369.714 243.429 359.714C243.429 349.429 236.857 338 225.715 338C214.286 338 208 349.429 208 359.714zM512 199.714C512 163.713 500.571 97.428 475.714 70C452.856 45.142 388.286 8.857 354.857 -0.572L353.714 -0.858V-33.429C353.714 -49.715 341.142 -64 324.5710000000001 -64C314.5710000000001 -64 305.1420000000001 -58.286 299.999 -49.714C294.572 -58.286 285.1430000000001 -64 275.1430000000001 -64C265.1430000000001 -64 255.7140000000001 -58.286 250.2850000000001 -49.714C245.1430000000001 -58.286 235.7140000000001 -64 225.7150000000001 -64C215.429 -64 206.286 -58.286 200.857 -49.714C195.714 -58.286 186.286 -64 176.286 -64C157.429 -64 146.857 -48.286 146.857 -31.143C130.571 -43.4280000000001 111.142 -50.571 90.286 -50.571C68.286 -50.571 46.857 -42.286 30 -27.7140000000001C40.285 -27.4280000000001 50.571 -25.4280000000001 60.285 -22.0000000000001C39.428 -16.2860000000001 20.857 -3.143 8.285 14.2859999999999C29.655 9.641 54.494 12.6129999999999 75.428 25.429C53.428 47.429 18.857 84.286 6.856 112.857C1.143 126.286 0 144.286 0 158.571C0 208.285 20.286 318.5710000000001 86.286 318.5710000000001C96.857 318.5710000000001 105.143 313.713 109.429 303.7140000000001A158.792 158.792 0 0 0 121.429 319.1420000000001C123.429 321.7140000000001 127.143 324.5710000000001 128.572 327.428C136.571 339.999 140.286 348.5700000000001 150.286 361.428C182.571 402.572 232 430.857 285.143 430.857C291.143 430.857 297.143 430.572 302.857 429.714C313.714 441.429 328.8570000000001 448 344.572 448C359.1430000000001 448 374.286 442 384.572 431.714C385.4290000000001 430.856 386 429.428 386 428.286C386 424.572 375.715 414.857 373.1430000000001 412C377.4290000000001 410.5710000000001 388.8570000000001 405.142 388.8570000000001 400C388.8570000000001 397.1430000000001 386 394.857 384.286 392.857C415.715 365.1430000000001 433.7150000000001 325.714 440.572 284.857C444.858 290 450.857 293.429 457.715 293.429C468.2860000000001 293.429 478.572 286.285 486.2860000000001 279.428C507.143 260.857 512 226.286 512 199.714zM188 358.572C188 340.286 200.571 321.429 220.286 321.429C240 321.429 252.571 340.286 252.571 358.572C252.571 376.572 240 395.429 220.286 395.429C200.571 395.429 188 376.5710000000001 188 358.572zM237.714 254C237.714 273.714 241.428 293.1430000000001 246.285 312.286C194.246 232.752 232.754 127.715 315.1430000000001 127.715C336.5710000000001 127.715 357.7140000000001 135.429 375.1430000000001 147.715C377.1430000000001 155.144 378.8570000000001 162.572 378.8570000000001 170.287C378.8570000000001 184.573 372.5710000000001 191.715 358.2850000000001 191.715C353.714 191.715 349.1420000000001 190.858 344.8560000000001 190.001C281.5130000000001 177.333 237.7140000000001 186.3320000000001 237.7140000000001 254.0000000000001zM196.572 -0.858C196.572 10.285 187.714 19.999 176.286 19.999C164.857 19.999 156.286 10.284 156.286 -0.8579999999999V-33.429C156.286 -44.572 164.857 -54.571 176.286 -54.571C187.714 -54.571 196.572 -44.856 196.572 -33.429V-0.8579999999999zM245.715 -0.858C245.715 10.285 237.143 19.999 225.715 19.999C214.286 19.999 205.429 10.284 205.429 -0.8579999999999V-33.429C205.429 -44.572 214.286 -54.571 225.715 -54.571C237.143 -54.571 245.715 -44.571 245.715 -33.429V-0.8579999999999zM295.428 -0.858C295.428 10.285 286.5710000000001 19.999 275.143 19.999C263.714 19.999 254.857 10.284 254.857 -0.8579999999999V-33.429C254.857 -44.572 263.714 -54.571 275.143 -54.571C286.571 -54.571 295.428 -44.856 295.428 -33.429V-0.8579999999999zM345.1430000000001 -0.858C345.1430000000001 10.285 336.2860000000001 19.999 324.8570000000001 19.999C313.4290000000001 19.999 304.5710000000001 10.284 304.5710000000001 -0.8579999999999V-33.429C304.5710000000001 -44.572 313.4290000000001 -54.571 324.8570000000001 -54.571C336.286 -54.571 345.1430000000001 -44.571 345.1430000000001 -33.429V-0.8579999999999zM421.714 162C390.857 102.858 331.429 59.428 263.1430000000001 59.428C166.572 59.428 102.572 144 102.572 236C102.572 252.857 104.572 269.429 108.572 285.714C88.572 251.999 78.858 213.142 78.858 174.285C78.858 113.999 103.715 52.5699999999999 150.287 13.428C155.43 23.142 165.144 29.714 176.287 29.714C186.287 29.714 195.715 24 200.858 15.428C206.287 23.999 215.429 29.714 225.7160000000001 29.714C235.7160000000001 29.714 245.1440000000001 24 250.2870000000001 15.428C255.7160000000001 23.999 265.144 29.714 275.1450000000001 29.714C285.1450000000001 29.714 294.5730000000001 24 300.0020000000001 15.428C305.1450000000001 23.999 314.5730000000001 29.714 324.5740000000001 29.714C335.4310000000001 29.714 345.4310000000001 23.142 350.2880000000001 13.714C393.7150000000001 50 418.8570000000001 105.714 421.7140000000001 162zM432.286 261.714C432.286 315.428 397.7150000000001 367.428 339.714 367.428C309.429 367.428 281.1430000000001 352.285 260.857 330.5710000000001C240.862 264.188 233.41 194 302.286 194C331.091 194 399.6430000000001 222.538 386.572 157.143C415.429 183.143 432.286 222.857 432.286 261.7140000000001z" />
+    <glyph glyph-name="think-peaks"
+      unicode="&#xF731;"
+      horiz-adv-x="529.6" d=" M236.2 448L442.4 94.1L497.5 189.1L529.5 188.8L442.4 38.6L236.2 392.4L32 40.3L0 40.6L236.2 448zM472.5 -64L236.7 340.6L87.1 82.7H119.2L236.6 285.2L440 -63.9" />
+    <glyph glyph-name="trade-federation"
+      unicode="&#xF513;"
+      horiz-adv-x="496" d=" M202.45 339.58V257.9700000000001H38.94L87.16 196.06H201.89V-0.69H266.5V195.04H349.77V257.73H266.59V276.9H412.21V339.5800000000001H202.45zM207.31 333.58H405.0800000000001V282.9H259.44V251.97H342.62V201.04H259.36V5.31H206.63V202.06H89.86L49.91 251.97H207.31V333.58zM247.99 439.2C111.03 439.2 0 328.17 0 191.2S111.03 -56.8 247.99 -56.8S496 54.24 496 191.2S384.96 439.2 247.99 439.2zM248.01 425.96C377.67 425.96 482.77 320.8400000000001 482.77 191.18S377.67 -43.58 248.01 -43.58S13.23 61.53 13.23 191.19S118.35 425.96 248.01 425.96zM248.01 418.07C122.71 418.07 21.12 316.5 21.12 191.2S122.71 -35.69 248.01 -35.69S474.88 65.9 474.88 191.2S373.31 418.07 248.01 418.07zM247.99 404.77C365.94 404.77 461.55 309.15 461.55 191.21S365.93 -22.35 247.99 -22.35S34.43 73.25 34.43 191.2S130.04 404.77 247.99 404.77zM174.67 299.9700000000001L190.33 281.92L168.17 291.37L155.84 270.9L157.99 294.89L134.71 300.29L158.19 305.66L156.13 329.4700000000001L168.5 308.8L190.51 318.12L174.67 299.9700000000001zM127.53 346.51L135.54 334.11L148.23 339.97L138.91 328.52L148.41 318.27L134.64 323.59L127.82 311.39L128.63 326.13L114.92 328.84L129.19 332.62L127.53 346.51zM378.3 270.92L390.29 251.36L411.17 260.47L396.2700000000001 243.02L411.3800000000001 225.98L390.1800000000001 234.76L378.6400000000001 215.12L380.4400000000001 237.99L358.2000000000001 242.89L380.5100000000001 248.2500000000001L378.3000000000001 270.92zM271.25 172.47L285.11 175.69L283.8300000000001 189.86L291.1800000000001 177.68L304.2600000000001 183.27L294.9500000000001 172.52L304.3100000000001 161.81L291.2100000000001 167.35L283.92 155.1400000000001L285.1400000000001 169.3100000000001L271.2500000000001 172.4700000000001zM145.82 165.97L169.55 169.84L167.82 194.37L178.83 172.99L201.62 182.21L184.69 165.13L200.5 146.3L179.03 157.12L166.01 136.26L169.67 160.03L145.82 165.97zM209.26 331.63V250.02H54.16L90.88 204.01H208.58V7.26H257.4V202.99H340.67V250.02H257.4V284.85H403.13V331.63H209.26zM220.12 320.43H391.92V296.07H246.88V239.84H329.81V215.9H246.88V18.48H220.12V215.9H96.31L76.22 239.84H220.12V320.43z" />
+    <glyph glyph-name="trello"
+      unicode="&#xF181;"
+      horiz-adv-x="448" d=" M392.3 416H56.1C25.1 416 0 390.9 0 360C-0.1 360 0 364 0 24C0 -6.9 25.1 -32 56 -32H392.2C423 -31.8 447.9 -6.8 447.9 24V360C448 390.8 423.1 415.8 392.3 416zM197 76.7C196.8 62 184.9 50.1 170.1 50.1H87.4C72.6 49.9999999999999 60.5 61.9 60.4 76.7V330.9C60.4 345.7 72.4 357.8 87.3 357.8H170.2C185 357.8 197.1 345.8 197.1 330.9V76.7000000000001zM390.1 188.7C390.1 173.9 378.1 161.8 363.2000000000001 161.8H282.2000000000001C267.4000000000001 161.8 255.3000000000001 173.8 255.3000000000001 188.7V330.8C255.3000000000001 345.6 267.3000000000001 357.7 282.1 357.7H363.2000000000001C378.0000000000001 357.7 390.1 345.7 390.1 330.8V188.7z" />
+    <glyph glyph-name="tripadvisor"
+      unicode="&#xF262;"
+      horiz-adv-x="576" d=" M166.4 167.479C166.4 154.243 155.67 143.513 142.434 143.513S118.468 154.243 118.468 167.479S129.198 191.445 142.434 191.445S166.4 180.716 166.4 167.479zM431.362 191.435C418.132 191.435 407.406 180.71 407.406 167.479C407.406 154.249 418.131 143.523 431.362 143.523C444.592 143.523 455.318 154.248 455.318 167.479C455.317 180.71 444.592 191.435 431.362 191.435zM520.75 51.945C458.083 2.841 367.474 13.836 318.371 76.504L287.392 30.179L256.709 76.1180000000001C208.432 15.7280000000001 121.087 4.227 58.824 50.063C-5.234 97.2210000000001 -18.935 187.379 28.223 251.4370000000001A186.76199999999997 186.76199999999997 0 0 1 0 308.584L90.286 308.634A358.48 358.48 0 0 0 287.351 362.664A350.382 350.382 0 0 0 479.532 309.3150000000001L575.75 309.241A185.71300000000002 185.71300000000002 0 0 1 547.398 251.592C594.191 188.845 582.3620000000001 100.222 520.75 51.9450000000001zM259.366 166.239C259.359 229.796 207.831 281.314 144.274 281.307C80.717 281.3 29.2 229.772 29.206 166.215C29.213 102.658 80.741 51.14 144.298 51.147C207.811 51.222 259.282 102.686 259.366 166.199V166.239zM287.957 176.694C293.39 250.134 353.467 307.578 427.077 309.716A339.146 339.146 0 0 1 287.35 337.528A356.31 356.31 0 0 1 147.186 310.275C221.53 308.693 282.485 250.851 287.957 176.694zM539.663 205.461C517.671 265.095 451.501 295.6089999999999 391.8680000000001 273.618C332.2340000000001 251.626 301.7200000000001 185.4559999999999 323.7110000000001 125.823V125.791C345.7490000000001 66.184 411.9090000000001 35.7 471.5380000000001 57.678C531.153 79.682 561.6510000000001 145.84 539.663 205.461zM213.624 167.4859999999999V167.3709999999999C213.567 128.0429999999999 181.638 96.2079999999999 142.31 96.2649999999999C102.982 96.322 71.147 128.2509999999999 71.204 167.579C71.261 206.907 103.19 238.742 142.518 238.685C181.7770000000001 238.569 213.56 206.745 213.624 167.4859999999999zM189.112 167.4859999999999V167.5699999999999C189.061 193.3539999999999 168.118 214.215 142.334 214.1639999999999C116.5500000000001 214.113 95.689 193.1699999999999 95.74 167.387C95.791 141.603 116.734 120.742 142.5170000000001 120.793C168.2430000000001 120.906 189.0540000000001 141.761 189.1120000000001 167.4859999999999zM502.535 167.4859999999999V167.4379999999999C502.515 128.1099999999999 470.617 96.2439999999999 431.288 96.2649999999999S360.094 128.1829999999999 360.115 167.512C360.135 206.84 392.033 238.706 431.362 238.685C470.652 238.619 502.483 206.776 502.535 167.4859999999999zM478.031 167.4939999999999C478.022 193.2779999999999 457.113 214.1729999999999 431.329 214.1639999999999C405.545 214.155 384.65 193.2459999999999 384.659 167.4619999999999C384.668 141.678 405.577 120.7839999999999 431.361 120.7919999999999C457.126 120.8379999999999 477.997 141.7199999999999 478.031 167.4849999999999V167.4939999999999z" />
+    <glyph glyph-name="tumblr-square"
+      unicode="&#xF174;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM317.7 51.8C309.2 42.7 286.5 32 256.8 32C181.3 32 164.9 87.5 164.9 119.9V209.9H135.2C131.8 209.9 129 212.7 129 216.1V258.6C129 263.1 131.8000000000001 267.1 136.1 268.6C174.9 282.3 187 316.1 188.8 341.8C189.3 348.7 192.9 352 198.8 352H243.1C246.5000000000001 352 249.3 349.2 249.3 345.8V273.8H301.2C304.6 273.8 307.4 271 307.4 267.6V216.5C307.4 213.1 304.6 210.3 301.2 210.3H249.1V127C249.1 105.6 263.9 93.5 291.6 104.6C294.6 105.8 297.2000000000001 106.6 299.6 106C301.8 105.5 303.2000000000001 103.9 304.2000000000001 101.1L318.0000000000001 60.9C319.0000000000001 57.7000000000001 320.0000000000001 54.2 317.7000000000001 51.8z" />
+    <glyph glyph-name="tumblr"
+      unicode="&#xF173;"
+      horiz-adv-x="320" d=" M309.8 -32.3C296.2 -46.8 259.8 -64 212.4 -64C91.6 -64 65.4 24.8 65.4 76.6V220.6H17.9C12.4 220.6 7.9 225.1 7.9 230.6V298.6C7.9 305.8 12.4 312.2000000000001 19.2 314.6C81.2 336.4000000000001 100.7 390.6 103.5 431.7000000000001C104.3 442.7000000000001 110 448 119.6 448H190.5C196 448 200.5 443.5 200.5 438V322.8H283.5C289 322.8 293.5 318.4 293.5 312.9V231.2C293.5 225.7 289 221.2 283.5 221.2H200.1V88C200.1 53.8 223.8 34.4 268.1 52.2C272.9000000000001 54.1 277.1 55.4 280.8 54.4C284.3 53.5 286.6 51 288.2 46.5L310.2 -17.8C312 -22.8 313.5 -28.4 309.8 -32.3z" />
+    <glyph glyph-name="twitch"
+      unicode="&#xF1E8;"
+      horiz-adv-x="448" d=" M40.1 416L10 339.1V24.8H117V-32H177.2L234 24.8H321L438 141.8V416H40.1zM397.9000000000001 161.9L331 95H224L167.2 38.2V95H76.9V375.9H397.9V161.9zM331 299V182.1H290.9V299H331zM224 299V182.1H183.9V299H224z" />
+    <glyph glyph-name="twitter-square"
+      unicode="&#xF081;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM351.1 257.2C351.3 254.4 351.3 251.5 351.3 248.7C351.3 162 285.3 62.1 164.7 62.1C127.5 62.1 93 72.9 64 91.5C69.3 90.9 74.4 90.7 79.8 90.7C110.5 90.7 138.7 101.1 161.2 118.7C132.4 119.3 108.2 138.2 99.9 164.2C110 162.7 119.1 162.7 129.5 165.4C99.5 171.5 77 197.9 77 229.8V230.6C85.7 225.7 95.9 222.7 106.6 222.3A65.447 65.447 0 0 0 77.4 276.9C77.4 289.1 80.6 300.3 86.3 310C118.6 270.2 167.1 244.2 221.5 241.4C212.2 285.9 245.5 322 285.5 322C304.4 322 321.4 314.1 333.4 301.3C348.2 304.1 362.4 309.6 375 317.1C370.1 301.9 359.8 289.1 346.2 281C359.4 282.4 372.2 286.1 384 291.2C375.1 278.1 363.9 266.5 351.1 257.2z" />
+    <glyph glyph-name="twitter"
+      unicode="&#xF099;"
+      horiz-adv-x="512" d=" M459.37 296.284C459.695 291.736 459.695 287.187 459.695 282.639C459.695 143.919 354.112 -15.919 161.137 -15.919C101.685 -15.919 46.457 1.3 0 31.187C8.447 30.213 16.568 29.888 25.34 29.888C74.395 29.888 119.553 46.456 155.614 74.72C109.482 75.6950000000001 70.822 105.908 57.502 147.492C64 146.518 70.497 145.868 77.32 145.868C86.741 145.868 96.163 147.168 104.934 149.441C56.853 159.188 20.791 201.421 20.791 252.426V253.725C34.76 245.928 51.005 241.055 68.222 240.406C39.958 259.249 21.441 291.411 21.441 327.7970000000001C21.441 347.289 26.638 365.1570000000001 35.735 380.751C87.39 317.076 165.035 275.493 252.1 270.944C250.4760000000001 278.741 249.5010000000001 286.862 249.5010000000001 294.9840000000001C249.5010000000001 352.812 296.283 399.918 354.4350000000001 399.918C384.6480000000001 399.918 411.9370000000001 387.248 431.1050000000001 366.781C454.8200000000001 371.329 477.5610000000001 380.101 497.7040000000001 392.121C489.9060000000001 367.755 473.3380000000001 347.288 451.5720000000001 334.294C472.6890000000001 336.567 493.1560000000001 342.416 511.998 350.5370000000001C497.7060000000001 329.746 479.837 311.2290000000001 459.3700000000001 296.284z" />
+    <glyph glyph-name="typo3"
+      unicode="&#xF42B;"
+      horiz-adv-x="433.3" d=" M330.8 107C323.8 104.7 319.2 104.7 312.3 104.7C255.1 104.7 171.7 303.2 171.7 369.6C171.7 394.3 177.1 402 185.6 409C116.1 400.5 36.3 375 9.3 342.6C3.9 334.9 0 321.8 0 305.5C0 202 106.8 -32 184.1 -32C220.4 -32 281.4 27.5 330.8 107M294.5 416C366.3 416 433.3 404.4 433.3 363.5C433.3 280.9 380.8 181.2 354.5 181.2C306.6 181.2 252.8 313.3 252.8 379.7C252.8 410.6 264.4000000000001 416 294.5 416" />
+    <glyph glyph-name="uber"
+      unicode="&#xF402;"
+      horiz-adv-x="448" d=" M414.1 416H33.9C15.2 416 0 400.8 0 382.1V2C0 -16.8 15.2 -32 33.9 -32H414C432.7 -32 447.9 -16.8 447.9 1.9V382.1C448 400.8 432.8 416 414.1 416zM237.6 56.9C163 49.4 96.4 103.8 88.9 178.4H183.3V158C183.3 154.3 186.3 151.2 190.1 151.2H258C261.7 151.2 264.8 154.2 264.8 158V225.9C264.8 229.6 261.8 232.7 258 232.7H190.1C186.4 232.7 183.3 229.7 183.3 225.9V205.5H88.9C95.9 274.9 154.3 327.7 224 327.7C293.7 327.7 352.1 274.9 359.1 205.5C366.6 131 312.2000000000001 64.4 237.6 56.9z" />
+    <glyph glyph-name="ubuntu"
+      unicode="&#xF7DF;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM300.7 347C309.5 362.2 329 367.5 344.2 358.7C359.5 349.9 364.7 330.4 355.9 315.1C347.1 299.9 327.6 294.6 312.4 303.4C297.1 312.3 291.9 331.8 300.7 347zM87.4 160.1C69.8 160.1 55.5 174.4 55.5 192C55.5 209.6 69.8 223.9 87.4 223.9C105 223.9 119.3 209.6 119.3 192C119.3 174.4 105 160.1 87.4 160.1zM115.5 157C137.8 174.9 137.9 208.9 115.5 226.9C124.1 259.7 144.6 287.6 172 306L195.7 266.4C144.2 230.1 144.2 153.9 195.7 117.6L172 78C144.6 96.3 124.2 124.3 115.5 157zM344.2 25.3C328.9 16.5 309.5 21.7 300.7 37C291.9 52.3 297.1 71.8 312.4 80.6C327.6 89.4 347.1 84.2000000000001 355.9 68.9C364.7 53.6 359.5 34.1 344.2 25.3zM344.5 94.8C317.8 105.1 288.4 88.2 284 59.8C278.8 58.4 235.1 45.5 187.3 69.2L209.8 109.5C266.8 83 333.2000000000001 121.2 338.7000000000001 183.9L384.8000000000001 183.2C382.5000000000001 148.7 367.5000000000001 117.7 344.5000000000001 94.8zM338.6 200.1C333.2000000000001 262.1 267.3 301.3 209.7 274.5L187.2 314.8C235.1 338.5 278.7000000000001 325.6 283.9000000000001 324.2000000000001C288.3 295.9 317.7000000000001 278.9000000000001 344.4000000000001 289.2000000000001C367.5000000000001 266.3 382.4000000000001 235.3 384.6 200.7L338.6 200.1z" />
+    <glyph glyph-name="uikit"
+      unicode="&#xF403;"
+      horiz-adv-x="448" d=" M443.9 320V64L218 -64L0 64V278.3L87.6 233.2V116.2000000000001L221.1 40.7L356.9 116.2000000000001V267.2000000000001L255.8 324.8000000000001L343.4 377.9000000000001L443.9 320zM308.6 398.9L223.8 448L135.2 393.2L221.2 345.9L308.6 398.9z" />
+    <glyph glyph-name="uniregistry"
+      unicode="&#xF404;"
+      horiz-adv-x="384" d=" M281.1 227.9H384V242.7H281.1V227.9zM281.1 265H384V277.4H281.1V265zM281.1 190.8H384V208.1H281.1V190.8zM123.4 104.1H8.5C11.1 95.6 14.3 87.3 18.1 79.3H156.4C143.5 85 132.3 93.5 123.4 104.1M269.1 116.5H378.8C380.6 123.8 381.9000000000001 131.2 382.7 138.8H278.3C276.2 130.9 273.1 123.4 269.1 116.5M227.6 79.4H367C370.7 87.4 372.8 95.6 375.5 104.2H260.5C251.7 93.5 240.4 85 227.6 79.4M384 416H281.1V413.5H384V416zM192 -32C231.5 -32 268.2 -20.2 298.8 0.2H85.3C115.8 -20.2 152.5 -32 192 -32M281.1 302.2H384V312H281.1V302.2zM281.1 339.3H384V346.7H281.1V339.3zM281.1 376.4H384V381.3H281.1V376.4zM102.9 277.4H0V265H102.9V277.4zM38.8 42.3H344.1C350.8 50.8 356.7000000000001 59.9 361.9000000000001 69.5H23C28.2 59.9 32.2 50.8 38.8 42.3M102.9 161.1V173.5H0V161.1C0 158.6 0 156.1 0.1 153.7000000000001H103.2C103 156.1 102.9 158.6 102.9 161.1M281.1 161.1C281.1 158.6 281 156.1 280.7 153.7000000000001H383.8C383.9 156.2000000000001 384 158.6 384 161.1V173.5H281.1V161.1zM78.1 5.1H305.8C317.6 13.8 328.5 23.7 338 34.8H44.9C54.5 23.8 66.3 13.8 78.1 5.1M102.9 381.3H0V376.4H102.9V381.3zM102.9 416H0V413.5H102.9V416zM102.9 242.7H0V227.9H102.9V242.7zM102.9 208.1H0V190.8H102.9V208.1zM102.9 312H0V302.1H102.9V312zM102.9 346.7H0V339.3H102.9V346.7zM105.7 138.8H1.3C2.2 131.2 3.5 123.8 5.2 116.5H114.9C110.9 123.4 107.7 130.9 105.7 138.8" />
+    <glyph glyph-name="untappd"
+      unicode="&#xF405;"
+      horiz-adv-x="640" d=" M401.3 398.1C321.5 238 316.7000000000001 245.6 313.4 224.9L308.2 192.1C306.3 180.1 301.6 168.6 294.5 158.7000000000001L145.6 -49.1C138 -59.7 125.2 -65.3000000000001 112.2 -63.7C71.9 -58.7 34.4 -31.5000000000001 16.9 4.8C11.2 16.6 12.4 30.6 20 41.1999999999999L168.9 249.1C176 259 185.3 267.0999999999999 196.1 272.8L225.4 288.3C243.9 298.0999999999999 235.1 300.2 361 427.2C362 432 362 434.5 364.6 435.2C367.6 435.8999999999999 371.2000000000001 436.2 370.9000000000001 439.8L370.5000000000001 444.3999999999999C370.3000000000001 446.3 371.8000000000001 448 373.7000000000001 448C378.2000000000001 448.0999999999999 386.9000000000001 446.8 399.3000000000001 438C411.6000000000001 429.0999999999999 415.7000000000001 421.2 417.0000000000001 416.8999999999999C417.6000000000001 415.0999999999999 416.4000000000001 413.2 414.6000000000001 412.7L410.1000000000001 411.5999999999999C406.7000000000001 410.7 407.6000000000001 407.2 407.8000000000001 404.2C407.9000000000001 401.3999999999999 405.5000000000001 400.5999999999999 401.3000000000001 398.0999999999999zM230.1 411.6C233.5 410.7 232.6 407.2 232.4 404.2C232.2 401.5 234.5 400.7 238.8 398.2C246.7 382.3 254.1 367.7 261 354.2C261.7 352.9 263.3 352.7 264.3 353.7C275.5 365.7 288.9000000000001 379.9 304.8 396.3C306.1 397.7 306.2 399.8 304.9000000000001 401.2C296.9000000000001 409.4 288.4000000000001 418.1 279.3 427.3C278.3 432 278.3 434.6 275.7 435.3C272.7 436.1 269.1 436.3 269.4 439.9C269.7 443.2 270.8 448 266.6 448.1C262.1 448.2 253.4 447 241 438.1C228.7 429.2 224.6 421.3 223.3 417C221.9 412.8 226.9 412.4 230.1 411.6zM620 41.3L471.2 249.2C458 267.7 444.6 272.6 414.8 288.3C403.6 294.2 400.6 299.2 384.3 317.2C383.3 318.3 381.4000000000001 318.1 380.7 316.7C334.4 227.9 333.6 233.9 331.7 221.9C330 211.2 330.4 201.9 332 192.1C333.9 180.1 338.6 168.6 345.7 158.7L494.6 -49.2C502.2 -59.8000000000001 514.8000000000001 -65.4000000000001 527.7 -63.9C568 -59.0000000000001 605.7 -31.9 623.4000000000001 4.6999999999999C628.8000000000001 16.5999999999999 627.7 30.5999999999999 620.0000000000001 41.3z" />
+    <glyph glyph-name="ups"
+      unicode="&#xF7E0;"
+      horiz-adv-x="375.3" d=" M99.2 145.4C94 141.8 66.6 132.3 66.6 164.4V268.4H33.9V165.8C33.9 90.9 114.1 114.6999999999999 131.8 126.8V268.4H99.2V145.4zM0 373.6V152.7C0 49 74.9 17.5 187.7 -31.4C300.1 17.5 375.4 48.8 375.4 152.7000000000001V373.6C259.1 435.2 93.6 423.2 0 373.6zM358.1 152.7C358.1 66.1 304.9000000000001 39.1 187.7 -12.6C70.2 39.2 17.2 66.1 17.2 152.7V279.1C119.5 372.9 248.8 379.1 358.1 368.9V152.7zM148.5 260.1V47.3H181.2V116C205.6 108.7 252.9 118.6 252.9 194.5C252.9 291.9 172.2 275.4 148.5 260.1zM181.2 142.8V243.1C189.6 247.3 219.6 255.8 219.6 193.8C219.6 125.9 183.2 142 181.2 142.8zM260.3 229.2C260.4 181.9 311.9 186.7000000000001 312.5 158.8C313.1 135.3 282.1 135.8 261.7 153.9V123.8C297.8999999999999 102.3 343.5999999999999 115.7 344.8999999999999 157.3C346.5999999999999 208.8 290.7999999999999 203.9 291.5 230.5C292.1 250.8 322.1 251 340 232.7V261.1C311.5 283.1 260.0999999999999 270.3 260.3 229.2z" />
+    <glyph glyph-name="usb"
+      unicode="&#xF287;"
+      horiz-adv-x="640" d=" M641.5 192C641.5 188.9 639.8 185.9 637 184.5L547.9 131C546.5 130.2 545.1 129.6 543.4 129.6C542 129.6 540.3 129.9 538.9 130.7000000000001C536.1 132.4 534.4 135.2000000000001 534.4 138.5000000000001V174.1000000000001H295.7C321 134.5000000000001 336.2 67.2000000000001 365.3 67.2000000000001H392V94C392 99 395.9 102.9 400.9 102.9H490C495 102.9 498.9 99 498.9 94V4.9C498.9 -0.1 495 -4 490 -4H400.9C395.9 -4 392 -0.1 392 4.9V31.6H365.3C289.9 31.6 284.2000000000001 174.1 240.6 174.1H140.3C132.2 143.5 104.4 120.6 71.3 120.6C32 120.7 0 152.7 0 192S32 263.3 71.3 263.3C104.4 263.3 132.3 240.5 140.3 209.8C179.4 209.8 184.2 200.3 214.9 270.2000000000001C255 359.3 273 352.3 323.8 352.3C331.3 373.2 350.8 387.9 374.2 387.9C403.7 387.9 427.7 364 427.7 334.4S403.8 280.9 374.2 280.9C350.8 280.9 331.3 295.7000000000001 323.8 316.5H294C264.9 316.5 249.7 249.1 224.4 209.6H534.5V245.2C534.5 248.5 536.2 251.3 539 253C541.8 254.7 545.4 254.4 547.9 252.7L637 199.2C639.8 198.1 641.5 195.1 641.5 192z" />
+    <glyph glyph-name="usps"
+      unicode="&#xF7E1;"
+      horiz-adv-x="522.2" d=" M433.3 206.2C459.1 247.5 448.5 255 421.6 255H394.6C394.5 255 393.1 256.4 383.7000000000001 247C372.5000000000001 241.4 345.8000000000001 240.7 345.8000000000001 238.3C345.8000000000001 233.8 416.1000000000001 241.4 433.9000000000001 238.3C443.4000000000001 236.8 432.4000000000001 217.9 429.5000000000001 206.3C429.0000000000001 201.8 431.9000000000001 204 433.3000000000002 206.2zM321.2000000000001 183.6C385.2000000000001 204.9 418.5000000000001 207.5 423.2000000000001 209.8C427.6 212.7 418.8000000000001 216.4 397.0000000000001 215.6C345.3000000000001 213.4 259.4000000000001 178.5 224.4000000000001 161.7L193.7 255H390.3C387.6 283.2 237.4 277.6 52.4 277.6L0 32.1C196.4 129.4 258.9 162.4 321.2 183.6zM67.7 351.9C321 298.2 397.7 286.2 399.8 266.7C436.2 266.7 445.7 266.7 452.2 260.1C473.3 240.4 437.6 192.4 437.6 192.4C433.2 189.5 31.2 32.2 31.2 32.2H454.3L522 351.9H67.7z" />
+    <glyph glyph-name="ussunnah"
+      unicode="&#xF407;"
+      horiz-adv-x="512" d=" M156.8 162.9L162.5 148.5H154.3C153 151.7 151.2 156.2 150.5 158C148 164.3 149.4 166.4 150.5 168C152.4 170.7 153.7 172.4 154.1 173.2C154.1 171 154.9 167.5 156.8 162.9zM454.1 144.1C452 130.3 448.4000000000001 117 443.6 104.4L486.6 81L441.8 99.8C436.5 86.6 429.8 74.2 421.9000000000001 62.6L456.1 32.4L419.3 58.8C410.9000000000001 47 401.3 36.2 390.6 26.5L415.5 -8.2L387.4 23.6C376.4 14 364.3 5.6 351.3 -1.5L367 -38.7L347.7 -3.4C334.5999999999999 -10.2 320.7 -15.5 306.0999999999999 -19.3L312.7999999999999 -57.6999999999999L302.2999999999999 -20.3C287.9999999999999 -23.6999999999999 273.0999999999999 -25.6 257.7999999999999 -25.6999999999999L256 -64L254.1 -25.6C238.8 -25.5 223.9 -23.6 209.6 -20.3L199 -57.6L205.7 -19.4C191.1 -15.7 177.1 -10.3 164 -3.6L144.8 -38.7L160.4 -1.7C147.4 5.3 135.2 13.6999999999999 124.2 23.4L96.3 -8.2L121 26.1999999999999C110.3 35.8999999999999 100.6 46.6999999999999 92.2 58.4999999999999L55.7 32.3L89.6 62.1999999999999C81.7 73.8 75 86.3 69.6 99.4999999999999L25.2 80.8L67.8 104C63 116.7 59.4 130.1 57.3 143.9L6.3 134.9L56.6 149.1C55.5 157.6 54.9 166.2 54.9 175C54.9 179.6999999999999 55.1 184.3999999999999 55.4 189.1L0 192L56 194.8C57.3 207.9 59.8 220.6 63.5 232.9L6.4 249L65.3 238.6C69.3 250.6 74.4 262.1 80.5 273L25.4 303L83.7 278.4C90 289 97.2 298.8 105.3 308L55.8 351.6L109.7 312.9C117.8 321.5 126.7 329.4 136.3 336.5L96.3 392.1L141.9 340.5C151.4 347.1 161.6 352.8 172.2 357.7L144.9 422.6L178.7 360.5C189.2 364.9 200.1 368.4 211.4 370.9L199 441.6L218.5 372.4C229.5 374.5 240.8 375.6 252.3 375.8L256 448L259.6 375.8C271.1 375.6 282.4000000000001 374.4 293.4000000000001 372.3L313 441.6L300.6 370.9C311.9000000000001 368.3 322.8 364.8 333.2000000000001 360.4L367.1 422.6L339.7000000000001 357.5C350.3000000000001 352.6 360.4000000000001 346.8 369.9000000000001 340.3L415.7000000000001 392.1L375.6 336.2C385.1 329.1 394 321.2 402.1 312.6L456.3 351.5L406.6 307.6C414.6 298.5 421.8 288.7 428.1 278.2L486.8 302.9L431.3 272.7C437.4000000000001 261.8 442.4000000000001 250.4 446.4000000000001 238.4L505.7 248.8L448.2000000000001 232.6C451.9 220.4 454.4 207.7 455.7 194.7L512 192L456 189.2C456.3 184.6 456.5 179.9 456.5 175.1C456.5 166.4 455.9 157.8 454.9 149.3L505.6 135L454.1 144.1zM432.3 175.1C432.3 272.6 353.3 351.6 255.8 351.6S79.3 272.6 79.3 175.1S158.3 -1.4 255.8 -1.4S432.3 77.6 432.3 175.1zM408.3 175.1C408.3 90.8 340 22.5 255.7 22.5S103.1 90.8 103.1 175.1S171.4 327.7000000000001 255.7 327.7000000000001S408.3 259.4000000000001 408.3 175.1zM195 207C195 204.9 196.3 203.2 198.6 201.9C201.9 200 204.8 197.3 206.8 193.7C209.6 199.4 211.1 203.2 211.1 204.9C211.1 207.1 210 209.3 207.9 211.9C205.8 214.4 204.7 217.1 204.6 219.6C198.1 212.8 195 208.7 195 207zM154.3 226C154.3 223.9 155.6 222.2 157.9 220.9C161.4 219 164.1 216.3 166.1 212.7C168.9 218.4 170.4 222.2 170.4 223.9C170.4 226.1 169.3 228.3 167.2 230.9C165.1 233.4 164 236.1 163.9 238.6C157.4 231.8 154.3 227.7 154.3 226zM135.3 226C135.3 223.9 136.6 222.2 138.9 220.9C142.2 219 145.1 216.3 147.1 212.7C149.9 218.4 151.4 222.2 151.4 223.9C151.4 226.1 150.3 228.3 148.2 230.9C146.1 233.4 145 236.1 144.9 238.6C138.5 231.8 135.3 227.7 135.3 226zM340.2000000000001 138.1C331.8000000000001 141.1 331.5000000000001 144.9 331.5000000000001 153.7000000000001V266C323.3000000000001 253.5 317.3000000000001 247.4 313.5000000000001 247.4C319.8000000000001 233 323.0000000000001 223.5 323.0000000000001 219.1V154.8C323.0000000000001 152.6 320.8000000000001 148.3 318.3000000000001 148.3H300.3000000000001C297.5000000000001 155.8 290.1000000000001 175.2 285.0000000000001 188.6C283.0000000000001 186.1 277.8000000000001 179.4 274.3000000000001 174.9C276.7000000000001 173.3 278.4000000000001 171.3 279.5000000000001 168.6C282.1000000000001 161.9 285.9000000000001 152.1 287.4000000000001 148.4H278.2000000000001C274.3000000000001 158.8 268.6 173.8 266.4000000000001 179.5000000000001C264.4000000000001 177.0000000000001 259.2000000000001 170.3000000000001 255.7000000000001 165.8000000000001C258.1 164.2000000000001 259.8000000000001 162.2000000000001 260.9000000000001 159.5000000000001C261.7000000000001 157.5000000000001 263.7000000000001 152.2000000000001 265.2000000000001 148.6000000000001H256C254.5 152.7000000000001 250.4 163.2000000000001 247.6 170.6000000000001C245.6 168.1000000000001 240.4 161.4000000000001 236.9 156.9000000000001C239.4 155.3000000000001 241.2 153.3000000000001 242.1 150.6000000000001C242.3 150.0000000000001 242.6 149.2000000000001 242.7 148.9000000000001H225C220.4 162.8000000000001 213.6 176.6000000000001 213.6 183.0000000000001C213.6 185.2000000000001 213.9 188.1000000000001 214.7 191.2000000000001C205.9 180.4000000000001 200.7 175.3000000000001 200.7 166.2000000000001C200.7 158.7000000000001 211.1 137.9000000000001 211.1 132.9000000000001C211.1 131.2000000000001 210.6 129.6000000000001 209.7 128.0000000000001C200.1 140.7000000000001 194.2 148.7000000000001 190.9 148.7000000000001H178.9L167.7 176.7000000000001C163.9 186.3000000000001 162 192.7000000000001 162 195.5000000000001C162 199.3000000000001 162.5 203.2000000000001 163.7 207.7000000000001C162.7 206.4000000000001 160 203.0000000000001 158.2 200.6000000000001C157.4 202.7000000000001 155.1 208.3000000000001 153.6 212.1000000000001C151.5 209.6000000000001 146.1 203.0000000000001 142.4 198.5000000000001C143.3 196.2000000000001 145.7 190.4000000000001 147.3 186.3000000000001C144.8 183.0000000000001 138.2 174.5000000000001 133.7 168.6000000000001C129.7 163.3000000000001 127.9 155.3000000000001 131 146.8000000000001C133.5 140.1000000000001 133 138.9000000000002 129.3000000000001 132.7000000000001H191C196.5 132.7000000000001 205.3 118.7000000000001 206.5 110.7000000000001C219.7 126.7000000000001 221.9 130.3000000000001 223.3 132.3000000000001H330.3C334.2 132.3000000000001 337.5 134.2000000000001 340.2 138.1000000000001zM360.3000000000001 164.7000000000001V266.3C351.3000000000001 253.8 344.4000000000001 247.7 339.6000000000001 247.7C346.7000000000001 233.3 350.3000000000001 223.8 350.3000000000001 219.4V153.1C350.3000000000001 135.6 358.9000000000001 132.7000000000001 374.3000000000001 132.7000000000001C382.4000000000001 132.7000000000001 386.8000000000001 133.5000000000001 388.0000000000001 135.4C383.7000000000001 137.0000000000001 380.4000000000001 137.9 378.1000000000001 138.7000000000001C370.0000000000001 141.9 360.3000000000001 146.1 360.3000000000001 164.7000000000001z" />
+    <glyph glyph-name="vaadin"
+      unicode="&#xF408;"
+      horiz-adv-x="448" d=" M224.5 307.3C226 324.9 229.4 360 274.3 360H372.9C393.6 360 405 367.8 405 381.6V393.9C405 406.1 414.3 416 426.5 416S448 406.1 448 393.9V357.4C448 314.5 426.5 295.4 381.2 295.4H280.7C250.6 295.4 247.7 280.7000000000001 247.7 268.3C247.7 267 247.6 265.8 247.5 264.6C246.8 252.3 236.6 242.4000000000001 224.1 242.4000000000001S201.4 252.2000000000001 200.7 264.6C200.6 265.8 200.5 267 200.5 268.3C200.5 280.6 197.5 295.4 167.5 295.4H66.8C21.5 295.4 0 314.5 0 357.4V393.9C0 406.1 9.4 416 21.6 416S43.1 406.1 43.1 393.9V381.6C43.1 367.8 54.5 360 75.2 360H173.8C218.6 360 222.1 324.9 223.6 307.3H224.5zM224 -8C235.5 -8 245.4 -1 249.7 8.3C250.8 10.1 346.8 177.9 347.9 179.7000000000001C359.8 199.3000000000001 344.7 224.0000000000001 320.7 224.0000000000001C306.8 224.0000000000001 297.4 217.6000000000001 290.9 203.7000000000001L224 86L157.1 203.7C150.7 217.6 141.2 224 127.3 224C103.3 224 88.2 199.4 100.1 179.7C101.2 177.8 197.2 10.1 198.3 8.3C202.6 -1.0000000000001 212.5 -8.0000000000001 224 -8.0000000000001z" />
+    <glyph glyph-name="viacoin"
+      unicode="&#xF237;"
+      horiz-adv-x="384" d=" M384 416H320L239.3 224H144.8L64 416H0L48 304H0V256H68.5L82.3 224H0V176H102.8L192 -32L281.2 176H384V224H301.7L315.5 256H384V304H336L384 416zM192 112L165 176H219L192 112z" />
+    <glyph glyph-name="viadeo-square"
+      unicode="&#xF2AA;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM280.7 66.8C238.3 20.6 160.7 20.2 118.3 66.8C50.3 140.4 98.5 262.9 199.5 262.9C212.8 262.9 226.1 260.8 238.6 256.2000000000001C234.3 247.8 231.3 238.6 230.2 229.1C220.5 233.2 210 235.1 199.5 235.1C150.7 235.1 114.9 193.4 114.9 146.2000000000001C114.9 103.2000000000001 143.4 67.5000000000001 184.4 60.3000000000001C245.9 84.3000000000001 257.3 177.9000000000001 257.3 235.3000000000001C257.3 242.6000000000001 257.3 250.1000000000001 256.7 257.4000000000001C245.5 290.3000000000001 230.1 322.0000000000001 212.5 351.9000000000001C239.6 333.6000000000001 254.4 289.4000000000001 256.7 257.8000000000001V257.4000000000001C264.4 234.9000000000001 268.5 211.2000000000001 268.5 187.4000000000001C268.5 133.3000000000001 246.6 88.4000000000001 200.2 59.2000000000001L197.8 59.0000000000001C247.8 58.0000000000001 284 97.6000000000001 284 146.2000000000001C284 158.4000000000001 281.9 170.5000000000001 277.1 181.9000000000001C286.6 183.8000000000001 295.6 187.5000000000001 303.5 192.4000000000001C318.8 155.8000000000001 316.1 105.1000000000001 280.7 66.8000000000001zM309 214.3C295.7 214.3 283.9 221.4 274.6 230.4C296.5 242.4 324.2000000000001 261.1 336.9000000000001 283.4C338.4000000000001 286.4 341.0000000000001 292 341.4000000000001 295.4C328.9000000000001 267.5 297.2000000000001 245.6 267.5 238.7C262.8 246 260 254.2 260 263C260 273.3 265.2 287.1 272.9 294.6C294.5 315.1 325.9 303.1 345.3 344.6C377.8 298.4 358.4 214.3 309 214.3z" />
+    <glyph glyph-name="viadeo"
+      unicode="&#xF2A9;"
+      horiz-adv-x="448" d=" M276.2 297.5V296.8C258.3 349.4 233.6 400.2 205.4 448C248.7 418.8 272.4 348 276.2 297.5zM308.9 175.8C316.5 157.6 319.9 138.3 319.9 118.8C319.9 41.1 262.1 -22.2 182.1 -20.6L185.9 -20.3C260.1 26.4 295.2 98.3 295.2 184.8C295.2 222.9 288.7 260.7 276.3 296.8C277.3 285.1 277.3 273.1 277.3 261.4C277.3 169.6 259.2 19.8 160.7 -18.6C95 -7.2 49.4 50 49.4 118.8C49.4 194.4 106.8 261.1 184.8 261.1C201.6 261.1 218.5 258 233.9 251.5000000000001C235.6 266.6 240.4 281.4000000000001 247.3 294.8C227.4 302 206.1 305.5 184.8 305.5C23.3 305.5 -53.9 109.6 54.9 -8.2C122.8 -82.7999999999999 246.9 -82.1 314.7000000000001 -8.2C371.3000000000001 53.1 375.6 134.2000000000001 351.1 192.8C338.4000000000001 184.8 324 178.9 308.9000000000001 175.8zM418.1 436.3C387.1 369.8 336.8 389.1 302.3 356.2C289.9000000000001 344.2 281.7 322.2 281.7 305.7C281.7 291.6 286.2 278.6 293.7 266.9C341.1 277.9 392 312.9 411.9 357.6C411.2 352.1 407.1 343.2 404.7 338.4C384.4 302.7 340.1 272.8 305 253.5C319.8 239.1 338.7 227.7 360 227.7C439 227.7 470.1 362.3 418.1 436.3z" />
+    <glyph glyph-name="viber"
+      unicode="&#xF409;"
+      horiz-adv-x="512" d=" M444 398.1C431.3 409.8 379.9 447.1 265.3 447.6C265.3 447.6 130.2 455.7 64.4 395.3C27.8 358.7 14.9 305 13.5 238.5C12.1 172 10.4 47.4 130.5 13.6H130.6L130.5 -38S129.7 -58.9 143.5 -63.1C160.1 -68.3000000000001 169.9 -52.4 185.8 -35.3C194.5 -25.9 206.5 -12.1 215.6 -1.6C297.8 -8.5 360.9000000000001 7.3 368.1 9.6C384.7000000000001 14.9999999999999 478.6 26.9999999999999 493.8 151.6C509.6 280.2 486.2 361.4 444 398.1zM457.9 161C445 57 368.9 50.4 354.9 45.9C348.9 44 293.4 30.2 223.7 34.7C223.7 34.7 171.7 -28 155.5 -44.3C150.2 -49.6 144.4 -49.1 144.5 -38.6C144.5 -31.7 144.9 47.1 144.9 47.1C144.8 47.1 144.8 47.1 144.9 47.1C43.1 75.3 49.1 181.4 50.2 236.9C51.3 292.4 61.8 337.9 92.8 368.5C148.5 419 263.2000000000001 411.5 263.2000000000001 411.5C360.1 411.1 406.5000000000001 381.9 417.3000000000001 372.1C453.0000000000001 341.5 471.2 268.3 457.9000000000001 161zM318.9 241.8C319.3 233.2 306.4 232.6 306 241.2C304.9 263.2000000000001 294.6 273.9000000000001 273.4 275.1C264.8 275.6 265.6 288.5 274.1 288C302 286.5 317.5 270.5 318.9 241.8zM339.2 230.5C340.2 272.9 313.7 306.1 263.4 309.8C254.9 310.4 255.8 323.3 264.3 322.7000000000001C322.3 318.5 353.2 278.6 352.1 230.2C352 221.6 339 222 339.2 230.5000000000001zM386.2 217.1C386.3 208.5 373.3 208.4 373.3 217C372.7 298.5 318.4000000000001 342.9 252.5 343.4C244 343.5 244 356.3 252.5 356.3C326.2 355.8 385.5 304.9 386.2 217.1zM374.9 119V118.8C364.1 99.8 343.9 78.8 323.1 85.5L322.9 85.8C301.8 91.7 252.1 117.3 220.7 142.3C204.5 155.1 189.7 170.2 178.3 184.7C168 197.6 157.6 212.9 147.5 231.3C126.2 269.8 121.5 287 121.5 287C114.8 307.8 135.7 328 154.8 338.8H155C164.1999999999999 343.6 173 342 178.9 334.9C178.9 334.9 191.3 320.1 196.5999999999999 312.8C201.5999999999999 306 208.2999999999999 295.1 211.7999999999999 289C217.8999999999999 278.1 214.0999999999999 267 208.0999999999999 262.4L196.0999999999999 252.8C190 247.9 190.7999999999999 238.8 190.7999999999999 238.8S208.5999999999999 171.5 275.0999999999999 154.5C275.0999999999999 154.5 284.2 153.7 289.0999999999999 159.8L298.7 171.8C303.3 177.8 314.3999999999999 181.6 325.3 175.5C340 167.2 358.7 154.3 371.1 142.6C378.1 136.9 379.7 128.2000000000001 374.9 119z" />
+    <glyph glyph-name="vimeo-square"
+      unicode="&#xF194;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM383.8 266.4C382.4000000000001 235.3 360.6 192.6 318.5 138.5C275 82 238.2 53.7 208.1 53.7C189.4 53.7 173.7 70.9 160.8 105.3C135.6 197.6 124.9 251.7 104.1 251.7C101.7 251.7 93.3 246.7 79 236.6L64 256C100.9 288.4 136.1 324.4 158.1 326.4C183 328.8 198.3 311.8 204.1 275.3C224.6 145.7000000000001 233.7 126.1 270.9 184.8C284.3 206 291.5 222 292.4 233.1C295.8 265.9000000000001 266.8 263.7000000000001 247.2 255.3C262.9 306.8 293 331.8 337.3 330.4C370.2 329.4 385.7 308 383.8 266.4z" />
+    <glyph glyph-name="vimeo-v"
+      unicode="&#xF27D;"
+      horiz-adv-x="448" d=" M447.8 294.4C445.8 250.8 415.4000000000001 191.1 356.4 115.3C295.5 36.1 244 -3.5 201.8 -3.5C175.7 -3.5 153.6 20.6 135.5 68.8C100.3 198 85.3 273.7 56.2 273.7C52.8 273.7 41.1 266.6 21 252.6L0 279.8C51.6 325.1 100.9 375.5 131.8 378.3C166.7 381.7000000000001 188.1 357.8 196.2 306.8C224.9 125.3 237.6 97.9 289.8 180.1C308.5 209.7 318.6 232.2 320 247.7C324.8 293.6 284.2 290.5 256.7 278.7000000000001C278.7 350.8 320.8 385.8 382.9 383.8C428.7 382.6 450.4 352.7000000000001 447.8 294.4z" />
+    <glyph glyph-name="vimeo"
+      unicode="&#xF40A;"
+      horiz-adv-x="448" d=" M403.2 416H44.8C20.1 416 0 395.9 0 371.2V12.8C0 -11.9 20.1 -32 44.8 -32H403.2C427.9 -32 448 -11.9 448 12.8V371.2C448 395.9 427.9 416 403.2 416zM377 267.2C375.6 235.7 353.6 192.5 311 137.8C267 80.6 229.7 51.9999999999999 199.3 51.9999999999999C180.4 51.9999999999999 164.5 69.3999999999999 151.4 104.3C125.9 197.6 115 252.3 94 252.3C91.6 252.3 83.1 247.2 68.6 237.1L53.4 256.7C90.7 289.5 126.3 325.9 148.6 327.9C173.8 330.3 189.3 313.1 195.1 276.2C215.8 145 225 125.1999999999999 262.7 184.6C276.2 206 283.5 222.3 284.5 233.5C288 266.7 258.6 264.4 238.7 255.9C254.6 308 285 333.3 329.9 331.9C363.2 331 378.9 309.4 377 267.2z" />
+    <glyph glyph-name="vine"
+      unicode="&#xF1CA;"
+      horiz-adv-x="384" d=" M384 193.3V141.2C365.6 137 347.1 135.1 331.9 135.1C295 57.6999999999999 228.9 -8.7 206.8 -21.1C192.8 -29 179.7 -29.5 164.1 -20.3C137 -4 34.2 80.3 0 345.3H74.5C93.2 186.2 139 104.6 189.3 43.5C217.2 71.4 244.1 108.6 264.9 150.4C215.1 175.7 184.8 231.3 184.8 296C184.8 361.6 222.5 411.1 287 411.1C401.9 411.1 393.2 283.2 368.6 229.6C368.6 229.6 322.2000000000001 220.4 305.1 250.1C308.5 261.4 313.3 280.9 313.3 298.6C313.3 329.9 302 345.2 284.9000000000001 345.2C266.7000000000001 345.2 254.1 328.1 254.1 295.2C254.2 216 313.5 176.5 384 193.3z" />
+    <glyph glyph-name="vk"
+      unicode="&#xF189;"
+      horiz-adv-x="576" d=" M545 330.3C548.7 342.8 545 352 527.2 352H468.3000000000001C453.3000000000001 352 446.4000000000001 344.1 442.7000000000001 335.3C442.7000000000001 335.3 412.7000000000001 262.2 370.3000000000001 214.8C356.6000000000001 201.1 350.3000000000001 196.7 342.8000000000001 196.7C339.1000000000001 196.7 333.4000000000001 201.1 333.4000000000001 213.6V330.3C333.4000000000001 345.3 329.2000000000001 352 316.8000000000001 352H224.2000000000001C214.8000000000001 352 209.2000000000001 345 209.2000000000001 338.5C209.2000000000001 324.3 230.4000000000001 321 232.6000000000001 281V194.2C232.6000000000001 175.2 229.2000000000001 171.7 221.7000000000001 171.7C201.7000000000001 171.7 153.1000000000001 245.1 124.3000000000001 329.1C118.5000000000001 345.4 112.8000000000001 352 97.7000000000001 352H38.8C22 352 18.6 344.1 18.6 335.3C18.6 319.7 38.6 242.2 111.7 139.8C160.4 69.9 229 32 291.4 32C328.9 32 333.5 40.4 333.5 54.9C333.5 121.7 330.1 128 348.9 128C357.6 128 372.6 123.6 407.6 89.9C447.6 49.9 454.2 32 476.6 32H535.5C552.3 32 560.8 40.4 555.9 57C544.6999999999999 91.9 469 163.7 465.6 168.5C456.9 179.7 459.4 184.7 465.6 194.7C465.7 194.8 537.5999999999999 296 545 330.3z" />
+    <glyph glyph-name="vnv"
+      unicode="&#xF40B;"
+      horiz-adv-x="640" d=" M104.9 96C70.8 96 58.5 126.4 58.5 126.4L2.6 237.9S-7.8 256 13 256H45.8C56.2 256 59 247.3 64.6 237.9L101.3 163.4S106.5 150.3 122.4 150.3S143.5 163.4 143.5 163.4L180.2 237.9C185.8 247.4 188.6 256 199 256H231.8C252.6 256 242.2 237.9 242.2 237.9L186.4 126.4S174.2 96 140 96H104.9zM499.9 96C465.8 96 453.5 126.4 453.5 126.4L397.6 237.9S387.2 256 408 256H440.8C451.2 256 454 247.3 459.6 237.9L496.3 163.4S501.5 150.3 517.4 150.3S538.5 163.4 538.5 163.4L575.3 237.9C580.9 247.4 583.6999999999999 256 594.0999999999999 256H627C647.8 256 637.4 237.9 637.4 237.9L581.5 126.4S569.3 96 535.1 96H499.9zM337.6 256C371.7000000000001 256 384 225.6 384 225.6L439.9 114.1S450.3 96 429.5 96H396.7C386.3 96 383.5 104.7 377.9 114.1L341.2 188.6S336 201.7 320.1 201.7C304.2 201.7 299 188.6 299 188.6L262.3 114.1C256.7 104.7000000000001 253.9 96 243.5 96H210.5999999999999C189.7999999999999 96 200.1999999999999 114.1 200.1999999999999 114.1L256.0999999999999 225.6S268.2999999999999 256 302.4999999999999 256H337.5999999999999z" />
+    <glyph glyph-name="vuejs"
+      unicode="&#xF41F;"
+      horiz-adv-x="448" d=" M356.9 383.7H280L224 295.1L176 383.7000000000001H0L224 0L448 383.7H356.9zM55.7 351.7H109.5L224 153.5L338.4 351.7H392.2L224 63.5L55.7 351.7z" />
+    <glyph glyph-name="weebly"
+      unicode="&#xF5CC;"
+      horiz-adv-x="512" d=" M425.09 382.17C385.21 382.17 351.81 356.44 341.43 317.8400000000001C323.2699999999999 375.9 275.93 382.17 256.48 382.17C236.7 382.17 189.68 375.89 171.2 317.8400000000001C160.82 356.44 127.75 382.17 87.54 382.17C38.59 382.17 0 348.28 0 304.9700000000001C0 276.01 4.18 271.7 77.17 71.49C99.54 10.92 144.94 2.14 169.91 2.14C209.14 2.14 239.95 21.6 255.84 56.12C271.73 21.29 302.53 1.83 341.77 1.83C366.74 1.83 412.13 10.93 434.51 71.5C511.06 280.15 512.01 277.0800000000001 512.01 298.7C512.64 347.02 476 382.17 425.09 382.17zM451.4299999999999 267.36L385.86 90.92C377.94 69.43 364.64 53.7 339.62 53.7C316.18 53.7 302.24 66.1100000000001 295.5899999999999 87.6L256.31 205.0200000000001H255.36L216.08 87.6C209.12 66.1 195.18 54 172.06 54C147.04 54 133.73 69.74 125.82 91.22L60.88 266.45C55.5 281.28 52.96 290.36 52.96 300.95C52.96 317.29 68.8 330.31 91.29 330.31C109.98 330.31 123.28 318.51 127.4 301.26L171.43 161.44H172.38L217.04 298.23C223.06 317.9 233.51 330.31 256 330.31S288.94 318.2 294.96 298.23L339.62 161.44H340.57L384.6 301.26C388.7200000000001 318.51 402.0200000000001 330.31 420.7100000000001 330.31C442.8800000000001 330.31 459.04 316.99 459.04 294.6C458.72 286.73 454.92 278.56 451.43 267.36z" />
+    <glyph glyph-name="weibo"
+      unicode="&#xF18A;"
+      horiz-adv-x="512" d=" M407 270.4C414.6 294.4 393.6 317.2 369.6 312.1C347.6 307.3 340.8 340.2000000000001 362.5 344.9000000000001C412.6 355.8 454.8 307.8 439 260.1C432.2 238.9000000000001 400.2 249.3 407 270.4000000000001zM214.8 1.3C108.5 1.3 0 52.7 0 137.6C0 181.9 28 233.0000000000001 76.3 281.3C176 381 279.5 382.2 249.9 287C245.9 273.9 262.2 281.3 262.2 281C341.7 314.6 402.7 297.8 376.2 229.6C372.5 220.2 377.3 218.7 384.5 216.5C520.2 174.2 419.3 1.3 214.8 1.3zM358.5 147.6C353.1 203.3 280 241.6 195.1 233.3C110.3 224.7 46.3 173 51.7 117.3S130.2 23.3 215.1 31.6C299.9 40.2 363.9 91.9 358.5 147.6zM347.9 412.9C322 407.3 331.1 369.2 356.2 374.6C428.5 389.8 491 321.8 467.9 250.6C460.5 226.4 497 213.6 505.3 238.6C537.1999999999999 338.4 450.2 434.5 347.9 412.9zM269.4 101.9C252.3 63.1 202.6 41.9 160.3 55.6C119.5 68.7 102.3 108.9999999999999 120 145.3C137.7 180.6999999999999 183.1 200.7 223.4 190.4C265.4 179.6 286.5 140.2 269.4 101.9zM183.1 131.9C170.2 137.3 153.1 131.6 145.1 119C136.8 106.1 140.8 91 153.7 85C166.8 79 184.5 84.7 192.8 97.9C200.8 111 196.5 126.2 183.1 131.9zM215.7 145.3C210.6 147 204.3 144.6999999999999 201.4 139.9C198.5 134.8 200 129.3 205.0999999999999 127C210.1999999999999 125 216.7999999999999 127.3 219.6999999999999 132.4C222.5 137.6 220.7999999999999 143.3 215.6999999999999 145.3z" />
+    <glyph glyph-name="weixin"
+      unicode="&#xF1D7;"
+      horiz-adv-x="576" d=" M385.2 280.4C391.6 280.4 397.8 280.1 404 279.3C387.4 357.7 303.3 416 207.7 416C100.5 416 13 343.2 13 250.6C13 197.2 42.3 153.1 90.9 119L71.6 60.4L139.6 94.5C164 89.7 183.4 84.8 207.8 84.8C214 84.8 219.9 85.1 226.1 85.6C222.1 98.5 219.9 112.2000000000001 219.9 126.4C219.8000000000001 211.3000000000001 292.8000000000001 280.4000000000001 385.2000000000001 280.4000000000001zM280.7 333.3C295.2 333.3 304.9 323.6 304.9 308.9C304.9 294.4 295.2 284.7000000000001 280.7 284.7000000000001C265.9 284.7000000000001 251.4 294.4 251.4 308.9C251.5 323.6 266 333.3 280.7 333.3zM144.3 284.7000000000001C129.8 284.7000000000001 115 294.4 115 308.9C115 323.7 129.8 333.3 144.3 333.3C159.1 333.3 168.7 323.6 168.7 308.9C168.7 294.3 159.1 284.7000000000001 144.3 284.7000000000001zM563 128.6C563 206.5 485.1 269.9000000000001 397.6 269.9000000000001C304.9000000000001 269.9000000000001 232.2 206.5 232.2 128.6S305 -12.7 397.6 -12.7C416.9000000000001 -12.7 436.5 -7.6 456.2 -2.8L509.6 -32.1L494.8 16.5C534 45.9 563 84.8 563 128.6zM343.9 153.1C334.2 153.1 324.6 162.8 324.6 172.7000000000001C324.6 182.4 334.3 192.0000000000001 343.9 192.0000000000001C358.7 192.0000000000001 368.3 182.3000000000001 368.3 172.7000000000001C368.3 162.7000000000001 358.6 153.1 343.9 153.1zM451 153.1C441.3 153.1 431.7 162.8 431.7 172.7000000000001C431.7 182.4 441.4 192.0000000000001 451 192.0000000000001C465.5 192.0000000000001 475.4 182.3000000000001 475.4 172.7000000000001C475.5 162.7000000000001 465.5 153.1 451 153.1z" />
+    <glyph glyph-name="whatsapp-square"
+      unicode="&#xF40C;"
+      horiz-adv-x="448" d=" M224 325.2C151.3 325.2 92.2 266.1 92.1 193.4C92.1 168.5 99.1 144.2 112.3 123.3L115.4 118.3L102.1 69.6999999999999L152 82.8L156.8 79.9C177 67.9 200.2 61.5 223.9 61.5H224C296.6 61.5 357.3 120.6 357.3 193.3C357.3 228.5 342.1 261.6 317.2 286.5C292.2 311.5 259.2 325.2 224 325.2zM301.5 136.8C298.2 127.5 282.4 119.1 274.8 118C262.2 116.1 252.4 117.1 227.3 127.9C187.6 145.1 161.6 185.1 159.6 187.7C157.6 190.3 143.4 209.2 143.4 228.7S153.6 257.8 157.3000000000001 261.8C160.9 265.8 165.2000000000001 266.8 167.9 266.8C170.5 266.8 173.2000000000001 266.8 175.5 266.7C177.9 266.6 181.2 267.6 184.4 259.9C187.7000000000001 252 195.6 232.5 196.6 230.5S198.3 226.2 196.9 223.6C189.3000000000001 208.4 181.2000000000001 209 185.3000000000001 202C200.6000000000001 175.7 215.9 166.6 239.2000000000001 154.9C243.2000000000001 152.9 245.5000000000001 153.2 247.8000000000001 155.9C250.1000000000001 158.5 257.7000000000001 167.5 260.3000000000001 171.4C262.9000000000001 175.4 265.6000000000001 174.7 269.2000000000001 173.4C272.8000000000001 172.1 292.3000000000001 162.5 296.3000000000001 160.5S302.9000000000001 157.5 303.9000000000001 155.9C304.8000000000001 154 304.8000000000001 146 301.5000000000001 136.8zM400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM223.9 34.8C197.3 34.8 171.2 41.5 148.1 54.1L64 32L86.5 114.2C72.6 138.2 65.3 165.5 65.3 193.5C65.4 280.9 136.5 352 223.9 352C266.3 352 306.1 335.5 336.1 305.5C366 275.5 384 235.7 384 193.3C384 105.9 311.3 34.8 223.9 34.8z" />
+    <glyph glyph-name="whatsapp"
+      unicode="&#xF232;"
+      horiz-adv-x="448" d=" M380.9 350.9C339 392.9 283.2 416 223.9 416C101.5 416 1.9 316.4 1.9 194C1.9 154.9 12.1 116.7 31.5 83L0 -32L117.7 -1.1C150.1 -18.8 186.6 -28.1 223.8 -28.1H223.9C346.2 -28.1 448 71.5 448 193.9C448 253.2 422.8 308.9 380.9 350.9zM223.9 9.3C190.7 9.3 158.2 18.1999999999999 129.9 34.9999999999999L123.2 38.9999999999999L53.4 20.6999999999999L72 88.8L67.6 95.8C49.1 125.2 39.4 159.1 39.4 194C39.4 295.7 122.2 378.5 224 378.5C273.3 378.5 319.6 359.3 354.4 324.4C389.2 289.5 410.6 243.2 410.5 193.9C410.5 92.1 325.6 9.3 223.9 9.3zM325.1 147.5C319.6 150.3 292.3 163.6999999999999 287.2 165.5C282.1 167.3999999999999 278.4 168.3 274.7 162.6999999999999C271 157.0999999999999 260.4 144.6999999999999 257.1 140.8999999999999C253.9 137.1999999999999 250.6 136.6999999999999 245.1 139.5C212.5 155.8 191.1 168.6 169.6 205.5C163.9 215.3 175.3 214.5999999999999 185.9 235.8C187.7 239.5 186.8 242.7 185.4 245.5C184 248.3 172.9 275.5999999999999 168.3 286.7C163.8 297.5 159.2 296 155.8 296.2C152.6 296.3999999999999 148.9 296.3999999999999 145.2 296.3999999999999C141.5 296.3999999999999 135.5 294.9999999999999 130.4 289.4999999999999C125.3 283.8999999999999 111 270.4999999999999 111 243.2C111 215.8999999999999 130.9 189.5 133.6 185.8C136.4 182.1 172.7 126.1 228.4 101.9999999999999C263.6 86.8 277.4 85.4999999999999 295 88.1C305.7 89.7 327.8 101.4999999999999 332.4 114.5C337 127.5 337 138.6 335.6 140.8999999999999C334.3 143.3999999999999 330.6 144.7999999999999 325.1 147.5z" />
+    <glyph glyph-name="whmcs"
+      unicode="&#xF40D;"
+      horiz-adv-x="448" d=" M448 287V308.3L419.5 317.1L417.3 327.5L437.4000000000001 348.2000000000001L427 367.6L398 360.1L390.8 367.6L398.3 395.8L379.2 407.4L357.9 386.4L347.2 389.6L340.2 416H317.6L311.4 389.6L299.3 386.4L279.6 407.4L260.2 396.4L268.3 368.7L260.2 360.3L231.7 367.8L220.7 348.7L241.4 327.7L238.5 317.3L210 309.5L209.7 287.8L238.5 280.3L240.9 268.2L220.8 248.3L231.2 229.8L260.8 237.3L268 228.7L259.9 201.8L279.8 190.2L299.2 210.6L310.8 207.7L317.5 179.2L340.1 178.9L346.8 207.7L358.4 211.2L379.1 189.6L399.5 201.7L390.7 229.7L398.5 237.8L427.3 229L437.6 249.1L416.7 267.9L418.9 280L448 287zM328.8 241.8C297.5 241.8 272 267.2000000000001 272 298.6S297.4 355.4000000000001 328.8 355.4000000000001S385.6 330 385.6 298.6C385.6 267.1 360.2000000000001 241.8 328.8 241.8zM401.1 225.4L448 210.9V171L392.9 157.6L388.8 134.9L427.7 99.6L408.5 61.7000000000001L354.5 78.4L339.8999999999999 63.2000000000001L356.5999999999999 10.7L318.2999999999999 -11.9999999999999L279.3999999999999 28.5000000000001L257.7 21.9L245.1 -32.1L202.6999999999999 -31.6L190.0999999999999 22.0000000000001L168.4 27.6000000000001L132 -10.7999999999999L94.5999999999999 10.9000000000001L109.7999999999999 61.4000000000001L96.0999999999999 77.5000000000001L40.5999999999999 63.4000000000001L20.8999999999999 98.2000000000001L58.7999999999999 135.6000000000001L53.9999999999999 158.4000000000001L-1e-13 172.5000000000001L0.4999999999999 213.4000000000001L54 228.1L59.7 247.8L20.8 287.2L41.5 323L95.1 308.9L110.3 324.6L95.1 376.6L131.5 397.3L168.3 357.9L191 364L202.6 416H245L256.6 370.1L234 376L227.7 377.7L224.4 372L213.4 352.9L210.1 347.3L214.7 342.7000000000001L231.9 325.3L231.6 324.3L207.7999999999999 317.8L201.5999999999999 316.1L201.5 309.7000000000001L201.3 296.8C153.8 286.4 118 244 118 193.3C118 135 165.3 87.6 223.7 87.6C274.2 87.6 316.4 123 326.9 170.4L340.1 170.2000000000001L347 170.1L348.6 176.8L354.2 200.8L356.1 201.4L373.2 183.6L377.9 178.7000000000001L383.7 182.1L404.1 194.2L409.9 197.7L407.9 204.2L401.1 225.4z" />
+    <glyph glyph-name="wikipedia-w"
+      unicode="&#xF266;"
+      horiz-adv-x="640" d=" M640 396.8L639.7 384.6C611.6 383.8 594.7 368.8 583.9000000000001 344.3C558.9000000000001 286.5 480.6000000000001 104.3 428.6000000000001 -14.3H415L333.1 178.8C300.6 115.1999999999999 264.8 48.8 233.9000000000001 -14.3000000000001C233.6 -14.6000000000001 218.9 -14.3000000000001 218.9 -14.0000000000001C172 95.7 122.8 204.6 75.8 314.6C64.4 341.3 26.4 384.6 0.2 384.3C0.2 387.4 -0.1 394.3 -0.1 398.5H161.8V384.6C142.6 383.5 109 371.3 118.5 350.4C140.4 300.7 222.1 110.1 244.1 61.8C259.1 91.4999999999999 301.9000000000001 171 319.4000000000001 204.6C305.5000000000001 232.9 260.8 338.5 246.6 364.6C236.9000000000001 382.4 210.5 384 190.8 384.3V398.2L333.3 397.9V384.8C313.9000000000001 384.2 295.2 377 303.9000000000001 358.7C322.8 318.7 334.5000000000001 290.6 352.0000000000001 254C357.6000000000001 264.8 386.7000000000001 323.4 400.1000000000001 354.8C409.0000000000001 375.4 396.2000000000001 383.4 361.5000000000001 384.2C361.8000000000001 387.8 361.5000000000001 394.5 361.8000000000001 397.8C406.2000000000001 398.1 472.9000000000001 398.1 484.9000000000001 398.4V384.8C462.4000000000001 384 439.1000000000001 372 426.8000000000001 353.1L367.6000000000001 230.3C374.0000000000001 214.2 430.9000000000001 87.5 436.8000000000001 73.6L559.2 356.2C550.6 379.3 522.8000000000001 384.3 512 384.5V398.4L639.8 397.3L640 396.8z" />
+    <glyph glyph-name="windows"
+      unicode="&#xF17A;"
+      horiz-adv-x="448" d=" M0 354.3L183.6 379.6V202.2H0V354.3zM0 29.7L183.6 4.4V179.6H0V29.7zM203.8 1.7L448 -32V179.6H203.8V1.7zM203.8 382.3V202.2H448V416L203.8 382.3z" />
+    <glyph glyph-name="wix"
+      unicode="&#xF5CF;"
+      horiz-adv-x="640" d=" M393.38 316.31C393.38 303.28 395.46 283.62 364.7 272.48C355.18 269.0300000000001 348.75 262.8200000000001 348.75 262.8200000000001C348.75 293.8200000000001 353.4700000000001 305.04 366.15 311.68C375.9 316.79 393.38 316.31 393.38 316.31zM277.58 280.77L243.34 148.11L214.86 256.68C207.17 288.67 194.05 305.2100000000001 166.43 305.2100000000001C139.06 305.2100000000001 125.77 289.03 118 256.68L89.52 148.11L55.28 280.77C49.73 307.49 23.86 319.04 0 316.04L65.57 68.11S87.2 66.55 98.03 72.07C112.25 79.32 119.01 84.91 127.62 118.64C135.29 148.71 156.73 237.05 158.74 243.34C163.5 258.28 169.83 257.15 174.14 243.34C176.11 237.04 197.59 148.71 205.26 118.64C213.86 84.91 220.63 79.32 234.85 72.07C245.67 66.55 267.31 68.11 267.31 68.11L332.88 316.04C308.46 319.11 283.06 307.11 277.58 280.77zM393.36 275.56S389.26 269.2200000000001 379.9000000000001 263.99C373.8900000000001 260.63 368.1200000000001 258.35 361.9300000000001 255.38C346.7900000000001 248.12 348.7500000000001 241.43 348.7500000000001 220.18V68.11S365.3000000000001 66.02 376.1200000000001 71.54C390.0500000000001 78.64 393.2500000000001 85.49 393.3800000000001 116.3200000000001V266.5900000000001L393.3600000000001 266.5800000000001V275.56zM556.8 191.48L640 315.2200000000001S604.89 321.2 587.5 305.37C574.2 293.27 563.09 275.82 533.32 232.9C532.85 232.17 527.07 222.36 520.25 232.9C490.96 275.13 479.45 293.19 466.07 305.37C448.68 321.2 413.57 315.2200000000001 413.57 315.2200000000001L496.77 191.48L413.8 68.12S450.3699999999999 63.5 467.7499999999999 79.33C479.24 89.79 485.3299999999999 99.7 520.26 150.05C527.0699999999999 160.5699999999999 532.83 150.8199999999999 533.33 150.05C562.73 107.67 572.5600000000001 91.99 586.47 79.3299999999999C603.86 63.4999999999999 639.7900000000001 68.12 639.7900000000001 68.12L556.8 191.48z" />
+    <glyph glyph-name="wizards-of-the-coast"
+      unicode="&#xF730;"
+      horiz-adv-x="640" d=" M219.19 102.31C217.29 100.93 208.12 93.87 218.93 78.74C223.57 72.32 233.04 65.95 240.66 72.19C247.16 77.07 248.01 85.11 240.92 95.23C235.45 102.99 226.64 108.11 219.19 102.31zM555.94 26.37C555.6 24.67 555.3900000000001 24.7 556.73 26.37C558.82 30.56 560.9200000000001 36.58 561.71 46.27C564.85 84.76 521.38 117.76 460.37 124.3C405.64 130.3199999999999 335.99 115.13 271.57 63.81L271.31 62.24C273.93 57.2599999999999 276.29 51.4999999999999 274.71 41.03L275.5 40.77C339.39 99.17 406.69 118.02 459.85 114.62C518.25 110.95 559.88 80.58 559.88 46.54C559.87 36.58 557.25 30.82 555.9399999999999 26.37zM392.28 207.58C393.07 200.51 396.47 197.37 401.45 197.11C406.95 196.85 410.88 199.73 411.92 203.66C412.7100000000001 207.06 414.01 233.51 414.01 233.51S402.75 226.96 399.08 223.04C395.42 219.36 391.75 214.65 392.28 207.58zM342.26 358.68C137.75 358.68 13.1 221.2 0.79 206.8C-0.26 206.28 -0.52 206.01 1.58 205.49C62.07 188.99 157.39 124.31 197.71 3.33L198.76 3.0700000000001C254.01 72.9900000000001 339.64 131.1200000000001 435.75 131.1200000000001C516.67 131.1200000000001 565.9 88.96 565.9 50.7300000000001C565.9 32.4000000000001 559.35 17.2100000000001 543.64 4.3800000000001C543.64 3.4200000000001 543.4399999999999 3.59 544.43 3.59C559.0899999999999 14.33 571.93 32.39 571.93 51.77C571.93 74.5500000000001 559.88 90.0000000000001 559.88 90.0000000000001C566.95 82.9300000000001 570.62 73.7600000000001 570.62 73.7600000000001C576.38 114.6100000000001 597.59 136.0800000000001 597.59 136.0800000000001C595.23 145.7700000000001 590.7800000000001 153.8900000000001 590.7800000000001 153.8900000000001C598.3700000000001 145.7700000000001 605.1800000000001 126.3900000000001 605.1800000000001 112.52C605.1800000000001 102.05 601.7800000000001 89.74 592.61 80.5700000000001L592.87 80.0500000000001C600.99 85.0300000000001 609.37 96.8100000000001 609.37 118.0200000000001C609.37 133.7300000000001 604.66 143.9400000000001 604.66 143.9400000000001C610.42 149.1800000000001 615.92 153.1100000000001 620.63 155.7200000000001C621.42 152.3200000000001 622.72 146.0300000000001 622.99 140.7900000000001C622.99 139.7400000000001 623.78 138.9600000000001 624.04 140.7900000000001C624.8299999999999 146.5500000000001 623.78 157.0300000000001 623.78 157.2900000000001C629.8 160.4300000000001 633.47 161.7400000000001 633.47 161.7400000000001C617.74 272 489.43 358.68 342.26 358.68zM243.02 69.06C231.96 60.07 218.82 64.98 212.38 73.25C204.93 82.83 205.62 97.34 216.57 105.72C231.42 117.0700000000001 243.65 106.21 247.73 100.22C248.01 99.83 259.86 83.65 243.02 69.06zM245.11 205.49L254.54 223.3L266.32 152.34L253.75 146.3200000000001L229.13 175.1200000000001L243.27 201.8300000000001L246.94 197.3800000000001L245.11 205.4900000000001zM263.7 87.91L263.44 88.17C265.49 92.27 260.94 94.78 245.9 119.86C244.59 122.22 242.76 122.74 241.45 122.48L241.1900000000001 123C249.0500000000001 128.76 256.6400000000001 133.21 266.5900000000001 138.71L267.11 138.45C268.42 136.62 269.2 135.57 270.51 133.74L270.25 133.22C269.2 133.48 267.89 134.0100000000001 265.01 132.96C262.92 132.17 257.15 129.29 252.7 125.3700000000001V124.0600000000001C254.27 121.7000000000001 256.63 117.5100000000001 258.46 114.3700000000001H258.72C268.77 120.65 266.28 118.9200000000001 270.24 122.2300000000001H270.5C271.0199999999999 120.4000000000001 271.0199999999999 120.4000000000001 272.33 116.7300000000001L272.07 116.4700000000001C269.01 115.8600000000001 267.42 116.1300000000001 260.55 110.9700000000001V110.7100000000001C270.01 93.6900000000001 271.56 93.9600000000001 273.12 94.7400000000001L273.38 94.4800000000001C271.04 92.8900000000001 267.11 90.2700000000001 263.7 87.9100000000001zM318.96 120.38C315.82 118.81 312.94 117.5 309.01 115.4L308.75 115.66C310.04 118.25 309.9100000000001 118.37 296.9700000000001 148.13L296.7100000000001 148.39C296.5600000000001 148.39 287.8100000000001 144.74 286.7600000000001 141.06H286.2400000000001L285.1900000000001 146.82L285.4500000000001 147.34C292.7400000000001 151.9 310.98 158.98 313.2100000000001 159.91L313.73 159.65L316.87 154.67L316.61 154.15C313.0800000000001 155.91 309.26 153.39 304.3 151.53V151.27C316.61 119.26 316.9700000000001 120.63 318.9600000000001 120.63V120.38zM363.73 136.88C359.54 135.83 358.49 135.57 354.04 134L353.78 134.26L354.3 138.71C353.25 142.11 351.16 150.23 350.63 152.33L350.37 152.59C346.97 151.8 341.47 149.97 337.54 148.66L337.28 148.4C338.07 145.78 340.42 138.45 341.47 134.52C342.26 132.16 343.3 131.64 344.35 131.38V130.86C340.68 129.81 337.28 128.24 334.14 126.93L333.88 127.19C334.93 128.5 334.93 130.07 334.14 132.17C333.09 135.31 326.02 156 324.97 159.4C324.45 161.23 323.4 162.54 322.35 162.54V163.06C325.49 164.11 328.37 165.15 333.09 166.46L333.35 166.2L333.09 161.49C334.4 157.56 335.45 153.9 336.23 151.8H336.49C340.42 153.11 345.92 154.68 349.32 155.73L349.58 155.99L346.9599999999999 165.42C346.44 167.25 345.9099999999999 168.82 344.3399999999999 169.35V169.61C348.7899999999999 170.66 351.6699999999999 171.44 355.08 171.97L355.3399999999999 171.71C354.2899999999999 170.4 354.2899999999999 168.8300000000001 354.82 167.2600000000001C356.39 160.9800000000001 359.5299999999999 146.8300000000001 361.0999999999999 140.8100000000001C361.64 138.1900000000001 362.95 137.4 363.7299999999999 136.8800000000001zM395.94 143.69L395.68 143.43C390.97 142.91 381.54 141.07 373.16 139.24L372.9 139.5L373.69 143.69C372.12 151.55 370.29 162.28 368.71 169.88C368.45 171.71 367.92 172.76 366.09 173.55L366.88 174.07C376.05 175.64 387.04 176.43 391.76 176.69L392.02 176.43C392.54 174.07 392.81 173.29 393.59 170.93L393.33 170.67C392.19 171.81 389.99 173.87 377.09 171.46L376.83 171.2000000000001C377.09 169.6300000000001 377.88 164.65 378.4 161.2500000000001L378.66 160.9900000000001C388.18 162.6700000000001 383.42 161.0500000000001 389.4 163.3500000000001H389.66C389.66 161.7800000000001 389.4 161.5200000000001 389.4 158.1100000000001H389.14C384.33 159.1400000000001 386.99 159.0100000000001 378.93 158.1100000000001L378.67 157.8500000000001C378.93 155.7600000000001 380.24 148.4200000000001 380.76 145.2800000000001L381.02 145.0200000000001C382.17 144.6400000000001 395.23 145.6700000000001 397.26 149.7300000000001H397.52C396.99 147.3500000000001 396.47 145.5200000000001 395.94 143.6900000000001zM406.68 188.2C402.23 185.84 398.56 185.32 395.68 185.32C395.43 185.3 384.2699999999999 184.23 378.14 195.27C371.3999999999999 206.06 377.1599999999999 220.47 383.64 226.96C392.44 235.08 406.99 237.06 412.18 243.98C420.2099999999999 254.31 399.14 266.29 382.59 249.74L379.97 252.62L385.21 268.86C410.8 270.43 430.41 271.9 435.23 252.62C436.02 249.48 435.23 243.19 434.97 240.57C434.97 237.95 433.14 221.72 432.88 217.53C432.36 213.34 432.09 199.2 432.09 196.84C432.35 194.48 432.61 192.65 433.66 191.34C435.23 189.51 439.42 189.51 439.42 189.51L438.63 184.8C426.81 185.87 428.35 185.39 418.2 185.85C414.9799999999999 191 415.9699999999999 189.13 414.01 193.71C414.01 193.7000000000001 409.82 189.7700000000001 406.68 188.2000000000001zM443.86 166.99C437.51 177.57 424.04 174.15 422.13 161.49C419.5 144.41 436.43 141.7 442.82 151.28L443.08 151.0200000000001C442.56 149.1900000000001 441.25 145.0000000000001 441.25 144.7400000000001L440.73 144.2200000000001C430.43 137.3500000000001 412.23 146.7200000000001 415.07 162.8100000000001C417.01 173.6800000000001 429.51 181.7400000000001 443.87 172.7600000000001L444.13 172.2400000000001C444.13 171.1800000000001 443.86 168.8300000000001 443.86 166.9900000000001zM449.63 254.7200000000001V261.2700000000001C450.32 261.2700000000001 469.2799999999999 257.99 477.3899999999999 253.9400000000001L475.8199999999999 236.4000000000001S486.0299999999999 245.8300000000001 491.2699999999999 247.1400000000001C496.5099999999999 248.7100000000001 506.1999999999999 239.8100000000001 506.1999999999999 239.8100000000001L494.9399999999999 228.5500000000001C482.8699999999999 234.9000000000001 475.35 228.6300000000001 474.2499999999999 227.7600000000001C468.9599999999999 189.0400000000001 465.6499999999999 185.59 478.6999999999999 181.6700000000001L478.1799999999999 176.9600000000001C460.6299999999999 181.2500000000001 459.65 181.4600000000001 441.26 184.2900000000001L442.05 189.0000000000001C449.3 189.0000000000001 449.53 194.3200000000001 449.64 195.8100000000001C449.64 195.8100000000001 454.6199999999999 248.9700000000001 454.6199999999999 251.0600000000001C454.6 253.9300000000001 449.63 254.7200000000001 449.63 254.7200000000001zM460.6199999999999 140.28C452.4999999999999 142.37 446.48 151.28 449.88 160.97C453.0199999999999 170.4 462.1899999999999 173.28 468.73 171.18C477.9 168.56 481.5599999999999 159.4 479.47 151.8C476.86 142.9 470.05 137.93 460.6199999999999 140.28zM502.78 130.59C500.42 131.11 495.71 132.9500000000001 494.14 133.47V133.73L495.71 135.56C496.3 143.8 496.3 142.83 495.97 143.15C491.15 144.96 489.3099999999999 145.51 488.9 145.51C487.59 143.68 486.02 141.06 485.23 140.01L484.4399999999999 136.61V136.35C483.1299999999999 136.61 480.5099999999999 137.66 478.42 137.92V138.18L481.04 140.01C484.4399999999999 144.72 490.99 154.15 494.92 160.17V162.26L495.4399999999999 162.52C497.5299999999999 161.73 500.9399999999999 160.43 503.0299999999999 159.64C503.5099999999999 159.16 503.2099999999999 161.51 501.9799999999999 134.5C501.7399999999999 132.69 501.9999999999999 131.9 502.7799999999999 130.59zM498.07 220.41C509.32 238.6800000000001 528.83 236.6 532.11 223.81L539.7 250C542.0400000000001 256.25 536.88 259.9 535.25 261.26L537.08 264.93C549.3000000000001 254.56 553.46 250.96 559.6 244.5C533.69 171.43 528.84 163.69 534.98 160.18L533.15 155.73C526.78 159.08 524.25 160.15 515.34 164.37L517.4300000000001 171.18C517.1700000000001 171.44 513.5000000000001 167.25 507.7400000000001 167.5099999999999C488.6800000000001 168.81 484.8500000000001 199.2599999999999 498.0700000000001 220.41zM527.4 141.0700000000001C527.4 146.78 521.06 148.96 519.54 146.3100000000001C518.23 144.2200000000001 520.5899999999999 141.3300000000001 522.42 137.9300000000001C523.99 135.3100000000001 525.04 131.6500000000001 523.4699999999999 128.5000000000001C520.8299999999999 122.1600000000001 511.0699999999999 123.1900000000001 508.0199999999999 129.2900000000001C508.0199999999999 129.9900000000001 507.7499999999999 129.2000000000001 509.8499999999999 134.0000000000001L510.6399999999999 134.2600000000001C510.0699999999999 128.6 516.6999999999999 124.65 519.02 129.28C520.0699999999999 131.37 518.5 134.78 516.93 137.66C515.3599999999999 140.28 513.26 143.94 515.0999999999999 147.35C517.8199999999999 152.41 526.3499999999999 151.8200000000001 529.7599999999999 144.99V144.47L527.3999999999999 141.0700000000001zM548.61 127.71C546.65 130.98 547.7 129.85 544.16 132.42H543.9C541.54 128.23 538.14 121.95 535.26 116.18C533.95 113.82 534.21 112.78 534.47 112.25L534.21 111.99L528.45 116.44L528.71 116.7L530.8000000000001 118.01C533.94 123.77 537.35 130.06 539.97 135.03V135.29C537.33 137.27 538.75 136.8 533.95 137.12V137.38L537.09 140.7799999999999H537.35C541.02 138.4199999999999 547.3000000000001 133.9699999999999 549.66 131.88L549.92 131.62L548.61 127.7099999999999zM575.84 171.97L572.96 174.85C573.75 177.21 574.7900000000001 179.8300000000001 575.0500000000001 182.44C575.8000000000001 192.18 563.5300000000001 194.28 563.5300000000001 187.42C563.5300000000001 182.44 571.3900000000001 168.04 571.3900000000001 159.66C571.3900000000001 149.4500000000001 565.6300000000001 143.9500000000001 557.5100000000001 143.16C549.1300000000001 142.37 537.3500000000001 153.6300000000001 537.3500000000001 153.6300000000001L542.3300000000002 168.03L545.2100000000002 165.9400000000001C542.2400000000001 148.1400000000001 562.8900000000001 145.5700000000001 558.5600000000002 160.7000000000001C557.5000000000002 164.72 539.8100000000002 194.9 560.6500000000002 198.93C574.2700000000002 201.2900000000001 583.6900000000002 182.4300000000001 583.6900000000002 182.4300000000001L575.8400000000001 171.9700000000001zM611.46 182.18C600.46 212.56 550.97 309.7100000000001 419.5100000000001 311.8C366.0900000000001 312.85 325.2400000000001 296.35 286.7500000000001 273.8300000000001L372.3800000000001 283L280.9900000000001 262.31L306.1300000000001 242.67L302.2000000000001 259.17C309.7000000000001 260.88 341.35 267.62 368.9700000000001 268.0700000000001L346.7100000000001 187.68C360.3200000000001 188.38 365.6800000000001 196.66 366.35 210.46L371.3300000000001 211.51L371.5900000000001 184.8C349.1300000000001 181.59 334.29 178.11 322.1 174.85L335.19 218.06L273.65 254.7200000000001L276.01 246.6L286.22 241.6200000000001C292.5 223.03 305.6 185.0600000000001 306.65 182.96C308.6 178.6800000000001 309.81 177.1800000000001 318.7 178.5100000000001L319.75 173.53C303.67 168.67 296.09 165.92 280.73 159.1300000000001L278.37 163.84C282.77 166.78 287.1 167.78 283.87 176.67C260.17 239.17 262.39 234.81 261.0900000000001 236.11L263.4500000000001 240.56L296.9700000000001 173.26C293.1300000000001 185.13 298.6500000000001 171.57 263.98 252.08L222.08 163.57L226.79 177.45L190.91 219.61L218.67 126.13L206.89 117.75C95 219.42 101.05 216.13 93.23 216.48C87.73 216.74 79.61 210.98 79.61 210.98L74.63 217C105.19 240.53 106.25 241.33 133.03 259.68L137.22 252.61S131.46 248.42 129.36 245.54C123.46 236.26 131.03 232.26 191.16 169.86L172.31 228.7800000000001L212.11 238.9900000000001L237.77 208.35L242.22 220.66L237.24 245.2800000000001L250.33 248.6800000000001L250.85 245.5400000000001L254.52 256.0100000000001L160.25 226.6800000000001L171.5099999999999 231.6600000000001L157.8899999999999 274.0800000000001L175.1699999999999 283.25L205.2799999999999 247.11L233.8199999999999 260.2000000000001C232.4099999999999 267.67 231.3499999999999 274.7000000000001 229.1099999999999 279.8400000000001L246.3899999999999 265.9600000000001L251.0999999999999 268.0500000000001L191.9199999999999 310.73L214.9999999999999 299.23C233.9799999999999 305.3000000000001 240.2299999999999 306.7000000000001 247.2099999999999 308.9200000000001L249.8299999999999 297.9200000000001C237.2799999999999 285.37 251.2599999999999 281.1 256.3799999999999 278.5400000000001L242.7599999999999 339.5500000000001L254.8099999999999 311.2700000000001C258.9999999999999 312.5800000000001 262.1399999999999 313.36 262.1399999999999 313.36L264.7599999999999 304.7200000000001S261.6199999999999 303.67 258.4799999999999 302.63L267.3799999999999 281.6800000000001L301.1599999999999 347.4100000000001L280.4699999999999 286.4000000000001C322.8899999999999 310.49 361.9099999999999 323.0600000000001 412.4499999999998 322.2800000000001C479.4899999999998 321.23 579.7799999999999 281.4300000000001 612.2499999999998 182.4500000000001C613.0299999999997 180.35 612.2399999999998 179.8200000000001 611.4599999999998 182.1800000000001zM203.48 295.57S205.31 296.0900000000001 207.67 296.88L217.1 289.29C216.7 289.29 213.66 289.54 205.84 286.93L203.48 295.57zM347.24 257.07C345.67 257.67 320.7800000000001 261.88 313.98 236.38L335.7100000000001 219.36L347.24 257.07zM318.43 380.93C260.0300000000001 380.93 212.38 368.88 203.47 366.53V365.74C211.85 363.65 217.87 361.55 224.68 353.96L226.2500000000001 353.7C232.8000000000001 355.53 275.2200000000001 367.58 336.49 367.58C516.65 367.58 638.1600000000001 250.79 638.1600000000001 144.21V134.26C638.1600000000001 132.95 638.95 131.64 639.21 133.74C639.73 135.83 640 142.38 640 153.38C640.26 237.17 543.37 380.93 318.43 380.93zM529.49 211.25C530.8 217.01 529.49 223.56 522.16 224.34C512.54 225.47 506.02 200.55 505.14 190.82C504.35 185.32 503.83 175.89 511.16 175.89C515.8399999999999 175.9 520.88 176.8 529.49 211.25zM467.96 168.3C465.34 169.09 458.53 169.09 455.39 157.83C453.5600000000001 151.02 455.91 144.48 461.41 143.17C465.08 142.12 470.31 142.65 473.19 153.91C475.81 163.85 471.36 167.52 467.96 168.3zM491 147.35C492.83 146.8300000000001 494.14 146.3 496.76 145.5200000000001C496.76 147.35 497.28 153.9 497.55 157.5700000000001C496.5 156.2600000000001 492.05 149.4500000000001 491 147.6200000000001V147.3500000000001z" />
+    <glyph glyph-name="wolf-pack-battalion"
+      unicode="&#xF514;"
+      horiz-adv-x="456.58" d=" M239.73 -23.53L250.29 -39.3699999999999L255.57 -27.05L260.85 -34.09V-64C281.91 -56.08 281.96 2.86 286.36 33.21C290.98 65.1 285.48 126.02 367.73 182.32C358.85 205.93 355.73 231.75 365.09 262.37C392.96 259.03 419.03 251.79 428.43 208.27L398.08 199.91C409.2299999999999 176.87 415.0899999999999 153.15 411.2799999999999 127.7700000000001L384 134.82L377.84 101.39L359.37 108.43L350.57 75L331.22 82.04L357.61 60.93L366.41 89.08L391.04 83.8L398.08 119.43L424.47 104.91C424.72 124.93 431.44 162.97 415.67 189.36L442.06 184.0800000000001C446.05 206.15 439.68 223.2900000000001 434.14 240.8200000000001L456.5699999999999 231.1400000000001C456.1299999999999 256.2100000000001 426.63 287.9300000000001 394.99 289.6400000000001C374.77 290.73 338.25 314.8100000000001 340.89 341.5400000000001C342.8499999999999 361.4100000000001 358.3399999999999 384.1600000000001 384 391.2400000000001C340.01 354.73 374.32 323.9400000000001 389.2799999999999 317.7800000000001C393.6799999999999 329.2200000000001 406.82 386.8600000000001 389.2799999999999 447.98C348.81 425.1100000000001 299.5499999999999 382.8800000000001 296.0299999999999 300.1900000000001L237.9699999999999 261.48L234.4499999999999 168.23L341.7799999999999 228.05L348.82 221.01L331.23 217.49L287.24 178.78L271.4 184.06L243.25 134.8L239.73 15.16L260.84 -0.6799999999999L228.29 -16.5199999999999L195.74 -0.6799999999999L216.85 15.16L213.33 134.8L185.18 184.06L169.34 178.78L125.3499999999999 217.4900000000001L107.7599999999999 221.0100000000001L114.8 228.0500000000001L222.13 168.23L218.6099999999999 261.48L160.5499999999999 300.1900000000001C157.03 382.9 107.77 425.13 67.3 448C49.76 386.88 62.9 329.24 67.3 317.8C82.26 323.9600000000001 116.56 354.75 72.58 391.26C98.24 384.18 113.73 361.43 115.69 341.56C118.32 314.82 81.81 290.75 61.59 289.66C29.94 287.94 0.44 256.2200000000001 0 231.15L22.43 240.83C16.89 223.3 10.52 206.16 14.51 184.09L40.9 189.37C25.14 162.98 31.85 124.94 32.1 104.92L58.49 119.44L65.53 83.81L90.16 89.09L98.96 60.94L125.35 82.05L106.01 75L97.21 108.43L78.74 101.39L72.58 134.82L45.31 127.78C41.49 153.16 47.36 176.88 58.51 199.92L28.16 208.28C37.56 251.8 63.63 259.05 91.5 262.38C100.86 231.76 97.74 205.93 88.86 182.33C171.11 126.03 165.61 65.1 170.23 33.22C174.63 2.8699999999999 174.68 -56.07 195.74 -63.99V-34.08L201.02 -27.04L206.3 -39.36L216.86 -23.52L228.3 -44.63L239.73 -23.53zM318.9 71.48L303.06 82.04C310.5300000000001 86.4 316.82 90.46 322.4100000000001 94.36C321.81 87.1 322.1400000000001 80.48 318.9000000000001 71.48zM347.05 120.74C346.65 109.8 346.15 99.08 345.29 89.07C337.44 90.93 329.72 92.87 324.18 96.11C332.42 104.01 339.73 112.38 347.05 120.74zM371.68 115.46C371.66 128.8900000000001 369.63 139.67 366.4 148.8900000000001C361.02 139.8000000000001 355.17 130.71 347.93 121.6200000000001L371.68 115.46zM375.2 196.4C394.64 183.59 403 162.74 405.11 140.1C392.79 144.63 380.48 149.41 368.16 150.66C373.22 162.65 374.81 178.8 375.2 196.4zM373.44 242.1400000000001C374.25 227.8400000000001 375.2799999999999 213.3200000000001 375.2 199.9100000000001C394.42 208.0200000000001 404.9799999999999 209.6300000000001 419.19 213.9900000000001C408.5899999999999 232.9400000000001 391.9699999999999 239.5100000000001 373.44 242.1400000000001zM137.68 71.48L153.52 82.04C146.05 86.4 139.76 90.46 134.17 94.36C134.77 87.1 134.44 80.48 137.68 71.48zM109.53 120.74C109.93 109.8 110.43 99.08 111.29 89.07C119.14 90.93 126.86 92.87 132.4 96.11C124.16 104.01 116.85 112.38 109.53 120.74zM84.89 115.46C84.91 128.8900000000001 86.94 139.67 90.17 148.8900000000001C95.55 139.8000000000001 101.4 130.71 108.64 121.6200000000001L84.89 115.46zM81.37 196.4C61.93 183.59 53.57 162.74 51.46 140.1C63.78 144.63 76.09 149.41 88.41 150.66C83.36 162.65 81.76 178.8 81.37 196.4zM83.13 242.1400000000001C82.32 227.8400000000001 81.29 213.3200000000001 81.37 199.9100000000001C62.15 208.0200000000001 51.59 209.6300000000001 37.38 213.9900000000001C47.99 232.9400000000001 64.6 239.5100000000001 83.13 242.1400000000001z" />
+    <glyph glyph-name="wordpress-simple"
+      unicode="&#xF411;"
+      horiz-adv-x="512" d=" M256 440C119.3 440 8 328.8 8 192C8 55.3 119.3 -56 256 -56S504 55.3 504 192C504 328.8 392.7 440 256 440zM33 192C33 224.3 39.9 255 52.3 282.7L158.7 -8.7C84.3 27.5 33 103.8 33 192zM256 -31C234.1 -31 213 -27.8 193 -21.9L259.9 172.5L328.4 -15.3C328.9 -16.4 329.4 -17.4 330 -18.4C306.9 -26.5000000000001 282 -31.0000000000001 256 -31.0000000000001zM286.7 296.5C300.1 297.2 312.2 298.6 312.2 298.6C324.2 300 322.8 317.7 310.8 317C310.8 317 274.7 314.2 251.4 314.2C229.5 314.2 192.7 317 192.7 317C180.7 317.7 179.3 299.3 191.3 298.6C191.3 298.6 202.7 297.2 214.7 296.5L249.4 201.3L200.6 55L119.4 296.5C132.8 297.2 144.9 298.6 144.9 298.6C156.9 300 155.5 317.7 143.5 317C143.5 317 107.4 314.2 84.1 314.2C79.9 314.2 75 314.3 69.7 314.5C109.6 375 178.1 415 256 415C314 415 366.9 392.8 406.6 356.5C405.6 356.6 404.7000000000001 356.7 403.7000000000001 356.7C381.8000000000001 356.7 366.3000000000001 337.6 366.3000000000001 317.1C366.3000000000001 298.7 376.9000000000001 283.2 388.2000000000001 264.8C396.7000000000001 250 406.6 230.9 406.6 203.3C406.6 184.2 399.3 162.1 389.6 131.2000000000001L367.4000000000001 56.9L286.7000000000001 296.5zM368.1 -0.7L436.2000000000001 196.2C448.9000000000001 228.0000000000001 453.2 253.4000000000001 453.2 276.1C453.2 284.3 452.7 291.9000000000001 451.7 299C469.1 267.2000000000001 479.0000000000001 230.8 479.0000000000001 192C479.0000000000001 109.7000000000001 434.4000000000001 37.9 368.1 -0.6999999999999z" />
+    <glyph glyph-name="wordpress"
+      unicode="&#xF19A;"
+      horiz-adv-x="512" d=" M61.7 278.6L163.2 0.6C92.2 35 43.3 107.8 43.3 192C43.3 222.9 49.9 252.1 61.7 278.6zM399.6 202.7C399.6 229 390.2 247.2 382.1 261.4C371.3 278.9 361.2 293.8 361.2 311.3C361.2 330.9 376 349.1 396.9 349.1C397.8 349.1 398.7 349 399.7 348.9C361.8 383.6 311.4 404.8 256 404.8C181.7 404.8 116.3 366.7 78.2 308.9C83.2 308.7 87.9 308.6 91.9 308.6C114.1 308.6 148.6 311.3 148.6 311.3C160.1 312 161.4 295.1 150 293.8C150 293.8 138.5 292.5 125.7 291.8L203.2 61.4L249.8 201L216.7 291.8C205.2 292.5 194.4 293.8 194.4 293.8C182.9 294.5 184.3 312 195.7 311.3C195.7 311.3 230.8 308.6 251.7 308.6C273.9000000000001 308.6 308.4000000000001 311.3 308.4000000000001 311.3C319.9000000000001 312 321.2000000000001 295.1 309.8 293.8C309.8 293.8 298.3 292.5 285.5 291.8L362.4 63.1L383.6 134C392.6 163.4 399.6 184.5 399.6 202.7zM259.7 173.4L195.8999999999999 -12.1C214.9999999999999 -17.7 235.0999999999999 -20.8 255.9999999999999 -20.8C280.7999999999999 -20.8 304.4999999999999 -16.5 326.5999999999999 -8.7C325.9999999999999 -7.8 325.4999999999999 -6.8 325.0999999999999 -5.8L259.7 173.4zM442.7 294.1C443.5999999999999 287.3 444.0999999999999 280.1 444.0999999999999 272.2C444.0999999999999 250.6 440.0999999999999 226.4 427.8999999999999 196L362.8999999999999 8.0999999999999C426.2 45 468.7 113.5 468.7 192C468.7 229 459.3 263.8 442.7 294.1zM504 192C504 55.2 392.7 -56 256 -56C119.2 -56 8 55.3 8 192C8 328.8 119.2 440 256 440C392.7 440 504 328.8 504 192zM492.6 192C492.6 322.5 386.4000000000001 428.6 256 428.6C125.5 428.6 19.4 322.5 19.4 192S125.6 -44.6 256 -44.6C386.5 -44.6 492.6 61.5 492.6 192z" />
+    <glyph glyph-name="wpbeginner"
+      unicode="&#xF297;"
+      horiz-adv-x="512" d=" M462.799 125.626C519.01 61.318 466.961 -32 370.944 -32C331.3420000000001 -32 292.12 -14.313 270.802 18.04C263.915 17.684 248.1 17.684 241.212 18.04C219.848 -14.381 180.588 -32 141.069 -32C45.579 -32 -7.279 60.996 49.214 125.626C-29.925 257.477 80.479 416 256.006 416C431.638 416 541.876 257.374 462.799 125.626zM123.152 208.598H164.681V266.673H123.152V208.598zM340.332 122.526V146.365C279.826 125.4499999999999 207.977 137.167 152.743 180.336L152.989 155.439C204.09 109.072 284.735 97.564 340.332 122.526zM189.579 208.598H355.637V266.673H189.579V208.598z" />
+    <glyph glyph-name="wpexplorer"
+      unicode="&#xF2DE;"
+      horiz-adv-x="512" d=" M512 192C512 50.8 397.3 -64 256 -64C114.8 -64 0 50.7 0 192S114.7 448 256 448S512 333.3 512 192zM480 192C480 315.2 379.7 416 256 416C132.5 416 32 315.5 32 192S132.5 -32 256 -32S480 68.5 480 192zM160.9 323.4L247.8 286.3L210.7 199.4L123.8 236.5L160.9 323.4zM270.9 154.3L317.5 60.3H302.9L252.9 160.3L204 60.3H190L241.1 167.2000000000001L218.8 176.6L224.8 190.6L293.4 161.5L287.4 147.2L270.9 154.3zM259.1 270.6L327.7 241.2L298.3 172.9L230 202L259.1 270.6zM339.4 227.7L394 204.6L370.6 150.3L316.3 173.4L339.4000000000001 227.7000000000001z" />
+    <glyph glyph-name="wpforms"
+      unicode="&#xF298;"
+      horiz-adv-x="448" d=" M448 372.8V11.1C448 -13.2 429 -32.1 404.8 -32.1H43.2C19.3 -32 0 -13.4 0 11.2V372.8C0 396.9 18.8 416 43.2 416H404.9C428.9 416 448 397.2 448 372.8zM410.7 11.2V372.8C410.7 375.8 408.1 378.6 404.9 378.6H395.6L285.3 304L224 353.9L162.8 304L52.5 378.7H43.2C40 378.7 37.4 375.9 37.4 372.9V11.2C37.4 8.2 40 5.4 43.2 5.4H404.9C408.1 5.3 410.7 8.1 410.7 11.2zM150.2 262V225H76.7V262H150.2zM150.2 187.6V150.3H76.7V187.6H150.2zM161.3 334.9000000000001L215.3 378.6H96.8L161.3 334.9000000000001zM371.3 262V225H175.3V262H371.3zM371.3 187.6V150.3H175.3V187.6H371.3zM286.7 334.9000000000001L351.2 378.6H232.8L286.7 334.9000000000001zM371.3 113V75.7H271.9V113H371.3z" />
+    <glyph glyph-name="wpressr"
+      unicode="&#xF3E4;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM419.3300000000001 281.4C404.1500000000001 246.89 388.9600000000001 212.38 373.7000000000001 177.9C371.2600000000001 172.39 366.8100000000001 169.66 360.73 169.66C337.7100000000001 169.67 314.7000000000001 169.6 291.68 169.71C286.56 169.74 283.43 167.82 281.3400000000001 162.99C271.1500000000001 139.43 260.7100000000001 115.99 250.3900000000001 92.49C248.8500000000001 88.98 246.3300000000001 87.1999999999999 242.4700000000001 87.1999999999999C196.5300000000001 87.2099999999999 150.6000000000001 87.2199999999999 104.6600000000001 87.1999999999999C101.5300000000001 87.1999999999999 99.0300000000001 88.3499999999999 96.9400000000001 90.6499999999999C85.7300000000001 102.9799999999999 74.4800000000001 115.2799999999999 63.2600000000001 127.5899999999999C60.5700000000001 130.5399999999999 60.4700000000001 133.7699999999999 62.0500000000001 137.3199999999999C70.7100000000001 156.86 79.3200000000001 176.42 87.9400000000001 195.9799999999999C100.8700000000001 225.33 113.8300000000001 254.67 126.6900000000001 284.06C128.3900000000001 287.94 130.9700000000001 289.74 135.2300000000001 289.7099999999999C149.4700000000001 289.61 163.71 289.69 177.9500000000001 289.66C184.1900000000001 289.65 187.15 284.82 184.6100000000001 279.07C171.0100000000001 248.3 157.4400000000001 217.5199999999999 143.87 186.74C138.15 173.75 132.4500000000001 160.75 126.78 147.74C122.87 138.79 133.8600000000001 135.7699999999999 137.73 142.1399999999999C137.96 142.5099999999999 136.31 137.9599999999999 167.74 209.8299999999999C169.1 212.9299999999999 171.15 214.2299999999999 174.51 214.2199999999999C189.72 214.1399999999999 204.94 214.1999999999999 220.15 214.1799999999999C225.7100000000001 214.1699999999999 228.0600000000001 210.5399999999999 225.8100000000001 205.4299999999999C217.48 186.4699999999999 209.1 167.5299999999999 200.8300000000001 148.5399999999999C195.8500000000001 137.1099999999999 208.9100000000001 136.0499999999999 212.1100000000001 143.2099999999999C212.15 143.2899999999999 240.0000000000001 206.5399999999999 244.3000000000001 216.3699999999999C246.3200000000001 220.9799999999999 249.7400000000001 222.8799999999999 254.6500000000001 222.8699999999999C281.0800000000001 222.8199999999999 307.5100000000001 222.8699999999999 333.9400000000001 222.8199999999999C346.3800000000001 222.7999999999999 347.8700000000001 236.4699999999999 337.8400000000001 236.4599999999999C312.5800000000001 236.4299999999999 287.3200000000001 236.4399999999999 262.0600000000001 236.4399999999999C255.7900000000001 236.4399999999999 254.2200000000001 238.9099999999999 256.7900000000001 244.7099999999999C262.5700000000001 257.7699999999999 268.3800000000001 270.82 274.0900000000001 283.92C275.8200000000001 287.88 278.6100000000001 289.7099999999999 282.9300000000001 289.7C306.0200000000001 289.64 308.9100000000001 289.68 413.7100000000001 289.67C419.79 289.68 421.74 286.88 419.3300000000001 281.3999999999999z" />
+    <glyph glyph-name="xbox"
+      unicode="&#xF412;"
+      horiz-adv-x="512" d=" M369.9 129.8C414.2 75.5 434.6 31 424.3 11.1C416.4 -4 367.6 -33.5 331.7 -44.8C302.0999999999999 -54.1 263.3 -58.1 231.3 -54.9999999999999C193.0999999999999 -51.3 154.3999999999999 -37.6 121.1999999999999 -15.9999999999999C93.3 2.2 87 9.7 87 24.6C87 54.5 119.9 106.9 176.2 166.7000000000001C208.2 200.6000000000001 252.7 240.4000000000001 257.6 239.3000000000001C267 237.2000000000001 341.9000000000001 164.2000000000001 369.9000000000001 129.8000000000001zM188.6 304.2C158.9 331.1 130.5 358.1 102.2 367.6C87 372.7 85.9 372.4 73.5 359.5C44.3 329.1 20 279.8 13.2 237.1C7.8 202.9 7.1 193.3 9 176.6C14.6 126.1 26.3 91.2000000000001 49.5 55.7C59 41.1 61.6 38.4 58.8 45.8000000000001C54.6 56.8000000000001 58.5 83.3000000000001 68.3 109.8000000000001C82.6 148.8000000000001 122.2 222.7000000000001 188.6 304.2000000000001zM500.2 240.7C483.3 320.7 432.7 371 425.6 371C418.3 371 401.4000000000001 364.5 389.6 357.1C366.3 342.6 348.6 325.7 325.3 304.3C367.7 251 427.5 164.9 448.2 102C455 81.3 457.9 60.9 455.6 49.7C453.9 41.2 453.9 41.2 456.9999999999999 45.1C463.1 52.8 476.8999999999999 76.4 482.3999999999999 88.6C489.7999999999999 104.8 497.3999999999999 128.8 500.9999999999999 147.3C505.3 169.8 504.8999999999999 218.1 500.1999999999999 240.7zM141.3 405C189 407.5 251 370.5 255.6 369.6C256.3 369.5 266 373.8 277.2 379.3C341.1 410.4 371.2 405.1 384.6 404.5C320.7000000000001 443.8 231.9000000000001 454.5 150.7 416.2C127.3 405.1 126.7 404.3 141.3 405z" />
+    <glyph glyph-name="xing-square"
+      unicode="&#xF169;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM140.4 127.8H93.8C88.3 127.8 85.1 133.1 87.8 138.1L137.1 224.8C137.2 224.8 137.2 224.9 137.1 225L105.7 279C102.7 284.6 105.9 289.1 111.7 289.1H158.3C163.5 289.1 167.8 286.2 171.2 280.4L203.1 225.1C201.8 222.8 185.1 193.4 153 136.9C149.5 130.7000000000001 145.3 127.8 140.4 127.8zM360.1 341.9L257.3 161.2V161L322.8 42C325.6 36.9 322.9000000000001 31.9 316.8 31.9H270.2C264.7 31.9 260.5 34.8 257.3 40.6L191.3 160.9C193.6 165 228.1 225.8 294.7000000000001 343.2C298.0000000000001 349 302.1 351.9 307.2000000000001 351.9H354.1C359.8 352 362.9000000000001 347.2 360.1 341.9z" />
+    <glyph glyph-name="xing"
+      unicode="&#xF168;"
+      horiz-adv-x="384" d=" M162.7 238C160.9 234.7 137.5 193.6 92.6 114.5C87.7 106.2 81.8 102 74.9 102H9.8C2.1 102 -2.3 109.5 1.3 116.4L70.3 237.7C70.5 237.7 70.5 237.8 70.3 238L26.4 313.6C22.1 321.4 26.7 327.7 34.9 327.7H100C107.3 327.7 113.3 323.6 118 315.5L162.7 238zM382.6 401.9L238.6 148.9V148.6L330.2 -18C334.1 -25.1 330.4 -32.1 321.7 -32.1H256.5C248.9 -32.1 242.9 -28.1 238.5 -19.9L146.1 148.6C149.4 154.4 197.6 239.4 290.9 403.8C295.5 411.9 301.3 416 308.4 416H374.1C382.1 416 386.4 409.3 382.6 401.9z" />
+    <glyph glyph-name="y-combinator"
+      unicode="&#xF23B;"
+      horiz-adv-x="448" d=" M448 416V-32H0V416H448zM236 160.5L313.5 306H280.8L235 215C230.3 205.7 226 196.7 222.2 188.2L210 215L164.8 306H129.8L206.5 162.2V67.7H236V160.5z" />
+    <glyph glyph-name="yahoo"
+      unicode="&#xF19E;"
+      horiz-adv-x="448" d=" M252 156L256 -64C243.3 -61.8 232.5 -60.1 223.7 -60.1C215.3 -60.1 204.5 -61.8 191.4 -64L195.4 156C140.4 250.8 85 352.8 21.4 448C33.3 444.9 44.4 444.1 54.6 444.1C63.6 444.1 75 444.9 88.7 448C129.6 375.8 170.8 309.3 223.7 222.5C261 284.1 314.8 366.6 358.6 448C369.7000000000001 445.1 380.6 444.1 391.5 444.1C403 444.1 414.7 445.1 426.5 448C392.1 400.1 294.9 231.1 252 156z" />
+    <glyph glyph-name="yandex-international"
+      unicode="&#xF414;"
+      horiz-adv-x="320" d=" M129.5 -64V102.1L18.5 400H74.3L156.1 170.3L250.2 448H301.5L180.8 100.2V-64H129.5z" />
+    <glyph glyph-name="yandex"
+      unicode="&#xF413;"
+      horiz-adv-x="256" d=" M153.1 132.2L65.7 -64H2L98 145.8C52.9 168.7 22.8 210.2 22.8 286.9C22.7 394.3 90.8 448 171.7 448H254V-64H198.9V132.2H153.1zM198.9 401.5H169.5C125.1 401.5 82.1 372.1 82.1 286.9C82.1 204.6 121.5 178.1 169.5 178.1H198.9V401.5z" />
+    <glyph glyph-name="yarn"
+      unicode="&#xF7E3;"
+      horiz-adv-x="496" d=" M393.9 102.8C354.9 93.5 345.5 70.7 289.9 55.4C289.9 55.4 287.2 51.4 279.5 49.6C266.1 46.3 215.6 43.6 211 43.5C198.6 43.4 191.1 46.7 189 51.7C182.6 67 198.2 73.7 198.2 73.7C190.1 78.7 189.2 83.6 188.4 81.8C186 76 184.8 61.7 178.3 55.3C169.5 46.4 152.8 49.4 143 54.5C132.2 60.2 143.8 73.7 143.8 73.7S138 70.3 133.3 77.3C127.3 86.6 116.2 114.6 144.8 139.3C143.5 149.4 140.2 193 185.4 224.9C185.4 224.9 164.8 247.7 172.5 268.2C177.5 281.6 179.5 281.5 181.1 282.1C186.8 284.3 192.4 286.7 196.5 291.2C217.1 313.4 243.3 309.2 243.3 309.2S255.7 347 267.2 339.6C270.7 337.3 283.5 309 283.5 309S297.1 316.9 298.6 314C306.8 298 307.8 267.5 304.2000000000001 248.9C298.1 218.3 282.8000000000001 201.8 276.6 191.4C275.2000000000001 189 293.1 181.4 304.4000000000001 150.1C314.8 121.5 305.5000000000001 97.4 307.2000000000001 94.8C308.0000000000001 93.4 320.9000000000001 93.9999999999999 343.6 107.9999999999999C356.4000000000001 115.8999999999999 371.7000000000001 124.8999999999999 389 125C405.7 125.5 406.6 105.8 393.9 102.8zM496 192C496 55.1 384.9 -56 248 -56S0 55.1 0 192S111.1 440 248 440S496 328.9 496 192zM416.7 116.8C415 130.4 403.5 139.8 388.7 139.6C366.7 139.3 348.2 127.9 335.9 120.4C331.1 117.4 327 115.2000000000001 323.5 113.6C326.6 158.1 301 186.7000000000001 294.8 193C302.6 204.3000000000001 313.2 220.8000000000001 318.2 246.2000000000001C322.5 267.9000000000001 321.2 301.7000000000001 311.3 320.7000000000001C309.7 323.8000000000001 303.9000000000001 331.9000000000001 290.3 328.1C280.6 348.1 277.3 350.2000000000001 274.7 351.9000000000001C273.6 352.6 251.1 368.3000000000001 233.3 323.9000000000001C221.1 323.0000000000001 202 318.6 185.8 301.1C183.8 298.9000000000001 179.9 297.3000000000001 175.7 295.7000000000001H175.8C167.4 292.7000000000001 163.5 285.8000000000001 158.9 273.4000000000001C152.4 256 159.1 238.8000000000001 165.7 227.7000000000001C147.9 211.8000000000001 128.7 187.9 130 145.2000000000001C96 109.2000000000001 118.2 72.2000000000001 124.4 65.6C122.8 54.5 128.1 46.2 136.4 41.8C149 35.1 166.7 32.2 180.3 39C185.2 33.8 194.1 28.9 210.3 28.9C217.1 28.9 268.3 31.8 282.9 35.4C289.7 37 294.4 39.9 297.5 42.5C307.3 45.6 334.3 54.8 359.7 71.2C377.7 82.9 383.9 85.4 397.3 88.6C410.2 91.8 418.3 103.7 416.7 116.8z" />
+    <glyph glyph-name="yelp"
+      unicode="&#xF1E9;"
+      horiz-adv-x="384" d=" M136.9 120C135.9 119.7 27.7 84.3 21.1 84.3C5.9 85.2 2.6 100.5 1.2 115.5C-0.3 129.7 -0.2 145.3 1.5 162.3C3.4 181.1 7 207.4 25.7 206.3C30.5 206.3 92.8 180.4 138.4 161.9C155.5 155.1 157 126.1 136.9 120.0000000000001zM194.8 233.9C196.6 195.7 169.3 185.4 147.6 219.6L41.3 387.6C39.8 394.2 41.6 400 46.6 405C62.2 421.5 146 444.8 168.1 439.1C175.6 437.2 180.2 433 181.9 426.5C183.2 418.2 193.4 259.1 194.8 233.9zM193.4 69.1C193.4 64.5 193.6 -47.3 191.7 -52.4C189.4 -58.4 184.7 -62.1 177.4 -63.6C167.3 -65.2999999999999 150.3 -61.7 126.4 -52.9C104.4 -44.8 69.7 -31.4 77.1 -10.4C79.9 -3.5 128.5 52.4 154.4 83.2000000000001C166.4 98.4 194.2 88.7000000000001 193.4 69.1zM373.6 186.9C368 183.2000000000001 262.8 158.7000000000001 255.5000000000001 156.3L255.8000000000001 156.9C237.7000000000001 152.2000000000001 220.4 175.4 232.5000000000001 191.5000000000001C236.2 195.2000000000001 298.4000000000001 283.9000000000001 305.3 288.5000000000001C310.5 292.1 316.6 292.3000000000001 323.6 289.1C342 280.3000000000001 378.7000000000001 226.0000000000001 381 204.5000000000001C380.9 201.6000000000001 382.2 192.8000000000001 373.6 186.9zM383.7000000000001 56.2C381.0000000000001 35.6 339.2000000000001 -17.1999999999999 319.9000000000001 -24.8C313.0000000000001 -27.4 307.0000000000001 -26.8 302.2000000000001 -22.8C297.2000000000001 -19.3 240.4000000000001 74.3000000000001 237.3000000000001 79.5000000000001C226.4000000000001 95.7000000000001 244.1000000000001 119.3000000000001 262.9000000000001 112.7000000000001C262.9000000000001 112.7000000000001 373.4000000000001 77.0000000000001 377.6 73.3000000000001C382.8 69.2000000000001 384.8 63.5000000000001 383.7000000000001 56.2z" />
+    <glyph glyph-name="yoast"
+      unicode="&#xF2B1;"
+      horiz-adv-x="448" d=" M91.3 372H277.3L270.3 353.1H91.3C51.6 353.1 19.4 321.5 19.4 282.8V77.4C19.4 42 44.3 7.1 103.4 7.1V-12H91.3C41.2 -12 0 28.2 0 77.5V282.8C0 332.1 40.7 372 91.3 372zM320.4 428H386.9C243.1 49.9 241.2 29.1 202.2 -11.3C181.4 -32.9 152.9 -43 123.9 -44V7.1C173.1 14.8 188.5 57 188.5 82.4C188.5 102.5000000000001 189.1 95.0000000000001 106.4 305.6H167.8L218.2 149L320.4 428zM448 286.5V-12H234C240.6 -2.4 244.7 4.3 246.1 7.4H428.6V286.5C428.6 319 411.5 338.4 380.4000000000001 349.4L387.1 367C428.8 353.4 448 323.9 448 286.5z" />
+    <glyph glyph-name="youtube-square"
+      unicode="&#xF431;"
+      horiz-adv-x="448" d=" M186.8 245.9L282 191.8L186.8 137.7V245.9zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM406 191.7S406 251.3 398.4 279.9C394.2 295.7 381.9 308.1 366.2 312.3C337.9 320 224 320 224 320S110.1 320 81.8 312.3C66.1 308.1 53.8 295.7000000000001 49.6 279.9C42 251.4 42 191.7 42 191.7S42 132.1 49.6 103.5C53.8 87.7 66.1 75.8 81.8 71.6C110.1 64 224 64 224 64S337.9 64 366.2 71.7C381.9 75.9 394.2 87.8 398.4 103.6C406 132.1 406 191.6999999999999 406 191.6999999999999z" />
+    <glyph glyph-name="youtube"
+      unicode="&#xF167;"
+      horiz-adv-x="576" d=" M549.655 323.9170000000001C543.374 347.567 524.8679999999999 366.193 501.371 372.514C458.781 384 288 384 288 384S117.22 384 74.629 372.514C51.132 366.192 32.626 347.567 26.345 323.9170000000001C14.933 281.05 14.933 191.612 14.933 191.612S14.933 102.174 26.345 59.307C32.626 35.657 51.132 17.807 74.629 11.486C117.22 0 288 0 288 0S458.78 0 501.371 11.486C524.8679999999999 17.807 543.374 35.657 549.655 59.307C561.067 102.174 561.067 191.612 561.067 191.612S561.067 281.05 549.655 323.9170000000001zM232.145 110.409V272.815L374.884 191.61L232.145 110.409z" />
+    <glyph glyph-name="zhihu"
+      unicode="&#xF63F;"
+      horiz-adv-x="640" d=" M170.54 299.87V82.33L193.97 82.3200000000001L201.68 55.95L243.69 82.3200000000001H293.2200000000001V299.87H170.54zM268.29 105.94H240.35L212.45 88.43L207.37 105.9L195.47 105.94V276.25H268.29V105.94zM149.83 200.33H97.5C99.24 227.43 99.7 251.92 99.7 273.79H150.86S152.83 296.35 142.28 296.1H53.78C57.27 309.22 61.65 322.76 66.9 336.77C66.9 336.77 42.83 336.77 34.63 315.2C31.24 306.3 21.42 272.06 3.93 237.08C9.82 237.72 29.3 238.26 40.77 259.29C42.88 265.18 43.28 265.95 45.91 273.82H74.78C74.78 263.32 73.58 206.94 73.1 200.38H20.83C9.09 200.38 5.27 176.76 5.27 176.76H70.85C66.45 126.9 42.83 84.88 0 51.66C20.49 45.81 40.91 52.59 51 61.56C51 61.56 73.98 82.46 86.59 130.81L140.55 65.87S148.46 92.76 139.31 105.86C131.73 114.78 111.25 138.92 102.52 147.67L87.9 136.05C92.26 150.03 94.89 163.6 95.77 176.72H157.42S157.33 200.34 149.83 200.34V200.3300000000001zM561.8499999999999 201.93C582.68 227.57 606.8299999999999 260.5 606.8299999999999 260.5S588.18 275.3 579.4499999999999 264.56C573.4499999999999 256.41 542.6199999999999 216.36 542.6199999999999 216.36L561.8499999999999 201.93zM411.7599999999999 261.02C402.7499999999999 269.27 385.8499999999999 258.89 385.8499999999999 258.89S425.3699999999999 203.85 426.9699999999999 201.44L446.4299999999999 215.17S420.7599999999998 252.78 411.7699999999999 261.03H411.7599999999999zM640 189.65C620.22 189.65 509.09 188.72 508.94 188.72V289.72C513.75 289.72 521.36 290.12 531.79 290.92C572.67 293.33 601.92 294.92 619.56 295.73C619.56 295.73 631.78 322.92 618.9699999999999 329.17C615.8999999999999 330.35 595.8 324.59 595.8 324.59S430.58 308.1 363.44 306.54C365.04 297.72 371.06 289.46 379.2199999999999 286.99C392.5299999999999 283.51 401.9099999999999 285.29 428.3699999999999 286.1C453.1999999999999 287.7 472.0499999999999 288.53 484.8799999999999 288.53V188.72H351.4100000000001S354.23 166.41 376.92 165.87H484.86V94.9499999999999C484.86 80.9799999999999 473.67 72.9599999999999 460.38 73.8299999999999C446.3 73.7199999999999 434.3 74.9799999999999 418.69 75.6399999999999C420.68 71.6699999999999 425.02 61.2499999999999 438 53.8C447.88 48.99 454.17 47.23 464.02 47.23C493.58 47.23 509.69 64.51 508.91 92.54V165.86H631.27C640.9499999999999 165.86 639.97 189.64 639.97 189.64L640 189.65z" />
+  </font>
+</defs>
+</svg>
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.ttf b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..598d1b13a9798488fade93a6c5f1c2a863f2b4b2
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.ttf differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff
new file mode 100644
index 0000000000000000000000000000000000000000..e9aec7d6a1f00aadfb5420685bced8b19273c18a
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff2 b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..086b85059495aec6ae8d1c46b4df4d904aa9eb8c
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-brands-400.woff2 differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.eot b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.eot
new file mode 100644
index 0000000000000000000000000000000000000000..7cf339cd3abdd251411294edfbf1b2e5c4d6f995
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.eot differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.svg b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.svg
new file mode 100644
index 0000000000000000000000000000000000000000..eeba522b4eea0da885689fe3c84bbe9b388d40e3
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.svg
@@ -0,0 +1,4445 @@
+<?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">
+<defs>
+  <font id="fontawesome-pro" horiz-adv-x="641.13">
+    <font-face font-family="Font Awesome 5 Pro"
+      units-per-em="512" ascent="448"
+      descent="64"
+      font-weight="300"
+      font-style="Light" />
+    <missing-glyph horiz-adv-x="0" />
+    <glyph glyph-name="abacus"
+      unicode="&#xF640;"
+      horiz-adv-x="576" d=" M560 448C551.16 448 544 440.84 544 432V368H480V384C480 401.67 465.67 416 448 416H416C398.33 416 384 401.67 384 384V368H288V384C288 401.67 273.67 416 256 416H224C206.33 416 192 401.67 192 384V368H160V384C160 401.67 145.67 416 128 416H96C78.33 416 64 401.67 64 384V368H32V432C32 440.84 24.84 448 16 448S0 440.84 0 432V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V16H64V0C64 -17.67 78.33 -32 96 -32H128C145.67 -32 160 -17.67 160 0V16H192V0C192 -17.67 206.33 -32 224 -32H256C273.67 -32 288 -17.67 288 0V16H384V0C384 -17.67 398.33 -32 416 -32H448C465.67 -32 480 -17.67 480 0V16H544V-56C544 -60.42 547.58 -64 552 -64H568C572.42 -64 576 -60.42 576 -56V432C576 440.84 568.84 448 560 448zM416 384H448V320H416V384zM224 384H256V320H224V384zM96 384H128V320H96V384zM128 0H96V64H128V0zM256 0H224V64H256V0zM448 0H416V64H448V0zM544 48H480V64C480 81.67 465.67 96 448 96H416C398.33 96 384 81.67 384 64V48H288V64C288 81.67 273.67 96 256 96H224C206.33 96 192 81.67 192 64V48H160V64C160 81.67 145.67 96 128 96H96C78.33 96 64 81.67 64 64V48H32V176H64V160C64 142.33 78.33 128 96 128H128C145.67 128 160 142.33 160 160V176H192V160C192 142.33 206.33 128 224 128H256C273.67 128 288 142.33 288 160V176H320V160C320 142.33 334.33 128 352 128H384C401.67 128 416 142.33 416 160V176H544V48zM96 160V224H128V160H96zM224 160V224H256V160H224zM352 160V224H384V160H352zM544 208H416V224C416 241.67 401.67 256 384 256H352C334.33 256 320 241.67 320 224V208H288V224C288 241.67 273.67 256 256 256H224C206.33 256 192 241.67 192 224V208H160V224C160 241.67 145.67 256 128 256H96C78.33 256 64 241.67 64 224V208H32V336H64V320C64 302.33 78.33 288 96 288H128C145.67 288 160 302.3300000000001 160 320V336H192V320C192 302.33 206.33 288 224 288H256C273.67 288 288 302.3300000000001 288 320V336H384V320C384 302.33 398.33 288 416 288H448C465.67 288 480 302.3300000000001 480 320V336H544V208z" />
+    <glyph glyph-name="acorn"
+      unicode="&#xF6AE;"
+      horiz-adv-x="448" d=" M352 384H241.12C244.44 398.4 250.87 411.88 260.58 423.28C263.35 426.53 263.39 431.26 260.37 434.28L249.04 445.61C245.82 448.83 240.42 448.84 237.42 445.4100000000001C222.04 427.9 212.15 406.74 208.32 384H96C42.98 384 0 341.02 0 288V256C0 238.33 14.33 224 32 224V192C32 93.94 87.4 4.3 175.11 -39.55L224 -64L272.89 -39.55C360.6 4.3 416 93.94 416 192V224C433.67 224 448 238.33 448 256V288C448 341.02 405.02 384 352 384zM384 192C384 105.51 335.94 27.75 258.58 -10.93L224 -28.22L189.42 -10.93C112.06 27.75 64 105.51 64 192V224H384V192zM416 256H32V288C32 323.29 60.71 352 96 352H352C387.29 352 416 323.29 416 288V256z" />
+    <glyph glyph-name="ad"
+      unicode="&#xF641;"
+      horiz-adv-x="512" d=" M464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM480 48C480 39.18 472.82 32 464 32H48C39.18 32 32 39.18 32 48V336C32 344.82 39.18 352 48 352H464C472.82 352 480 344.82 480 336V48zM408 288H392C387.58 288 384 284.42 384 280V215.12C374.55 220.62 363.7200000000001 224 352 224C316.65 224 288 195.35 288 160S316.65 96 352 96C363.7200000000001 96 374.55 99.38 384 104.88V104C384 99.58 387.58 96 392 96H408C412.42 96 416 99.58 416 104V280C416 284.42 412.42 288 408 288zM352 128C334.36 128 320 142.36 320 160S334.36 192 352 192S384 177.64 384 160S369.64 128 352 128zM196.97 282.87A8.007 8.007 0 0 1 189.5 288H162.49C159.18 288 156.21 285.9600000000001 155.02 282.87L87.33 106.87C85.31 101.63 89.18 96 94.8 96H111.95C115.26 96 118.23 98.04 119.42 101.13L142.07 160H209.93L232.57 101.13A8.007 8.007 0 0 1 240.04 96H257.19C262.81 96 266.67 101.63 264.6600000000001 106.87L196.97 282.87zM154.37 192L176 248.23L197.63 192H154.37z" />
+    <glyph glyph-name="address-book"
+      unicode="&#xF2B9;"
+      horiz-adv-x="448" d=" M436 288C442.6 288 448 293.4 448 300V340C448 346.6 442.6 352 436 352H416V384C416 419.3 387.3 448 352 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H352C387.3 -64 416 -35.3 416 0V32H436C442.6 32 448 37.4 448 44V84C448 90.6 442.6 96 436 96H416V160H436C442.6 160 448 165.4 448 172V212C448 218.6 442.6 224 436 224H416V288H436zM384 0C384 -17.6 369.6 -32 352 -32H64C46.4 -32 32 -17.6 32 0V384C32 401.6 46.4 416 64 416H352C369.6 416 384 401.6 384 384V0zM208 176C252.2 176 288 211.8 288 256S252.2 336 208 336S128 300.2 128 256S163.8 176 208 176zM208 304C234.5 304 256 282.5 256 256S234.5 208 208 208S160 229.5 160 256S181.5 304 208 304zM254.8 160C235.3 160 230.4 153 208 153S180.7 160 161.2 160C140 160 119.4 150.6 107.4 132.6C100.2 121.9 96 109 96 95.1V56C96 51.6 99.6 48 104 48H120C124.4 48 128 51.6 128 56V95.1C128 102.1 130.1 108.9 134 114.7000000000001C139.6 123.0000000000001 149.8 127.9 161.3 127.9C173.7 127.9 182.1 120.9 208.1 120.9C234.0000000000001 120.9 242.4000000000001 127.9 254.9000000000001 127.9C266.4000000000001 127.9 276.6 122.9 282.2000000000001 114.7000000000001C286.1 108.9 288.2000000000001 102.1 288.2000000000001 95.1V56C288.2000000000001 51.6 291.8000000000001 48 296.2000000000001 48H312.2000000000001C316.6 48 320.2000000000001 51.6 320.2000000000001 56V95.1C320.2000000000001 109 316.0000000000001 121.9 308.8000000000001 132.6C296.5000000000001 150.6 275.9000000000001 160 254.8000000000001 160z" />
+    <glyph glyph-name="address-card"
+      unicode="&#xF2BB;"
+      horiz-adv-x="576" d=" M512 416H64C28.7 416 0 387.3 0 352V32C0 -3.3 28.7 -32 64 -32H512C547.3 -32 576 -3.3 576 32V352C576 387.3 547.3 416 512 416zM544 32C544 14.4 529.6 0 512 0H64C46.4 0 32 14.4 32 32V352C32 369.6 46.4 384 64 384H512C529.6 384 544 369.6 544 352V32zM472 160H360C355.6 160 352 156.4 352 152V136C352 131.6 355.6 128 360 128H472C476.4 128 480 131.6 480 136V152C480 156.4 476.4 160 472 160zM472 224H360C355.6 224 352 220.4 352 216V200C352 195.6 355.6 192 360 192H472C476.4 192 480 195.6 480 200V216C480 220.4 476.4 224 472 224zM472 288H360C355.6 288 352 284.4 352 280V264C352 259.6 355.6 256 360 256H472C476.4 256 480 259.6 480 264V280C480 284.4 476.4 288 472 288zM208 160C252.2 160 288 195.8 288 240S252.2 320 208 320S128 284.2 128 240S163.8 160 208 160zM208 288C234.5 288 256 266.5 256 240S234.5 192 208 192S160 213.5 160 240S181.5 288 208 288zM254.8 144C235.3 144 230.4 137 208 137S180.7 144 161.2 144C140 144 119.4 134.6 107.4 116.6C100.2 105.9 96 93 96 79.1V56C96 51.6 99.6 48 104 48H120C124.4 48 128 51.6 128 56V79.1C128 86.1 130.1 92.9 134 98.7000000000001C139.6 107.0000000000001 149.8 111.9 161.3 111.9C173.7 111.9 182.1 104.9 208.1 104.9C234.0000000000001 104.9 242.4000000000001 111.9 254.9000000000001 111.9C266.4000000000001 111.9 276.6 106.9 282.2000000000001 98.7000000000001C286.1 92.9 288.2000000000001 86.1 288.2000000000001 79.1V56C288.2000000000001 51.6 291.8000000000001 48 296.2000000000001 48H312.2000000000001C316.6 48 320.2000000000001 51.6 320.2000000000001 56V79.1C320.2000000000001 93 316.0000000000001 105.9 308.8000000000001 116.6C296.5000000000001 134.6 275.9000000000001 144 254.8000000000001 144z" />
+    <glyph glyph-name="adjust"
+      unicode="&#xF042;"
+      horiz-adv-x="512" d=" M256 408C375.945 408 472 310.663 472 192C472 72.055 374.663 -24 256 -24C136.055 -24 40 73.337 40 192C40 311.945 137.337 408 256 408M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM224 315.99V68.01C170.145 81.81 128 131.011 128 192C128 252.99 170.145 302.19 224 315.99M256 352C167.634 352 96 280.366 96 192S167.634 32 256 32V352z" />
+    <glyph glyph-name="air-freshener"
+      unicode="&#xF5D0;"
+      horiz-adv-x="416" d=" M406.45 121.73L338.45 192.01H349.92C363.55 192.01 375.86 199.81 381.23 211.87C386.42 223.48 384.29 236.65 375.7000000000001 246.21L252.87 383.36C254.8 388.56 256 394.12 256 400C256 426.51 234.51 448 208 448S160 426.51 160 400C160 394.12 161.21 388.56 163.14 383.36L40.3 246.23C31.71 236.65 29.58 223.48 34.77 211.87C40.15 199.81 52.46 192.01 66.08 192.01H77.55L9.55 121.73C0.08 111.93 -2.58 98.26 2.61 86.06C8.27 72.67 22.05 64.01 37.67 64.01H184V32.01H63.99C55.15 32.01 47.99 24.85 47.99 16.01V-48C47.99 -56.84 55.15 -64 63.99 -64H352.01C360.85 -64 368.01 -56.84 368.01 -48V16.02C368.01 24.86 360.85 32.02 352.01 32.02H232V64.02H378.32C393.95 64.02 407.73 72.68 413.38 86.07C418.58 98.27 415.92 111.94 406.45 121.73zM208 416C216.82 416 224 408.82 224 400S216.82 384 208 384S192 391.18 192 400S199.18 416 208 416zM336.01 0.02V-32H79.99V0.02H336.01zM378.32 96.02H37.68C33.55 96.02 32.02 98.19 32.55 99.49L140.11 210.64C145 215.69 141.46 224.14 134.44 224.2L64.12 224.88L183.97 358.6800000000001C191.06 354.54 199.2 352 208 352C216.37 352 224.13 354.33 230.98 358.1L349.91 224.01H281.8C274.74 224.01 271.14 215.53 276.05 210.45L384.01 98.76C383.98 98.19 382.45 96.02 378.32 96.02z" />
+    <glyph glyph-name="alarm-clock"
+      unicode="&#xF34E;"
+      horiz-adv-x="448" d=" M298.3 99.3L293.8 92.7C290 87.2 282.6 85.9 277.1 89.6L213.3 133.5C210 135.6999999999999 208.1 139.3999999999999 208.1 143.3999999999999V276C208.1 282.6 213.5 288 220.1 288H228.1C234.7 288 240.1 282.6 240.1 276V154L295.3 116C300.6 112.2 302 104.8 298.3 99.3zM377.6 -3L411.3 -36.7C417.5 -42.9 417.5 -53.1 411.3 -59.3C405.1 -65.6 394.9000000000001 -65.5 388.7 -59.3L352.7 -23.3C316.3 -49 271.9 -64 224 -64S131.7 -49 95.3 -23.3L59.3 -59.3C53.1 -65.6 42.9 -65.5 36.7 -59.3C30.5 -53.1 30.5 -42.9 36.7 -36.7L70.4 -3C27 37.8 0 95.8 0 160C0 197.7 9.3 233.3 25.8 264.5C9.7 283.9 0 308.8 0 336C0 397.9 50.1 448 112 448C156.8 448 195.4 421.7 213.3 383.8C220.4 384.1 227.8 384.1 234.6 383.8C252.4 421.4 290.9 448 336 448C397.9 448 448 397.9 448 336C448 308.8 438.3 283.9 422.2 264.5C438.7 233.3 448 197.7 448 160C448 95.8 421 37.8 377.6 -3zM268.9 379.5C323.9 368.3 371.5 337 403.8 293.6C411.5 305.9 416 320.4 416 336C416 380.1 380.1 416 336 416C307.8999999999999 416 283.2 401.4 268.9 379.5zM32 336C32 320.4 36.5 305.9 44.2 293.6C76.5 337 124.2 368.3 179.1 379.5C164.8 401.4 140.1 416 112 416C67.9 416 32 380.1 32 336zM224 352C118 352 32 266 32 160S118 -32 224 -32S416 54 416 160S330 352 224 352z" />
+    <glyph glyph-name="alicorn"
+      unicode="&#xF6B0;"
+      horiz-adv-x="640" d=" M631.98 384H535.0600000000001L534.82 384.3C540.21 393.75 543.2 404.62 543.2 416C543.2 433.67 528.87 448 511.2 448H400C330.82 448 274.62 392.74 272.41 324.08C236.72 333.29 209.3 358.79 190.9 400.69C186.9 409.85 177.84 415.85 167.87 416C157.34 415.8 149.03 410.64 144.74 401.61C133.63 378.06 128 352.92 128 326.91C128 251.53 184.56 183.31 260.87 165.01C265.29 163.95 269.73 166.97 270.57 171.44L273.54 187.14C274.3400000000001 191.36 271.61 195.31 267.44 196.34C205.69 211.53 160 266.4 160 326.91C160 343.2200000000001 162.72 359.1 168.06 374.29C197.38 317.77 244.1 288 303.94 288L304 320C304 373.02 346.98 416 400 416H511.2C511.2 402.71 503.1 391.3400000000001 491.57 386.5L511.96 361.7200000000001L512.01 267.8400000000001A16 16 0 0 0 501.18 252.69L475.66 243.98C466.33 240.79 459.52 246.74 457.18 250.25L432 288L384 304V203.79C384 177.12 371.35 153.62 352 138.1900000000001V-32H288V129.31L183.57 152.52L151.45 63.05L175.53 -32H118L96.87 55.86A31.697999999999997 31.697999999999997 0 0 0 97.24 72.04L124.87 165.4500000000001C107.46 177.63 96 197.76 96 220.63C96 236.45 101.68 250.81 110.82 262.31C105.88 273.15 101.84 284.35 99.42 296.04C91.33 289.1 84.23 281.02 78.66 271.86C35.11 271.13 0 235.73 0 192V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V192C32 213.5 46.23 231.48 65.72 237.59C64.76 232.05 64.01 226.44 64.01 220.63C64.01 196.43 72.91 173.3 88.54 155.39L66.57 81.12C63.45 70.35 63.19 59.09 65.77 48.38L86.9 -39.48C90.34 -53.86 103.21 -64 118 -64H175.53C196.48 -64 211.65 -44.25 206.55 -24.14L184.87 61.43L204.16 115.16L256 103.64V-32C256 -49.67 270.33 -64 288 -64H352C369.67 -64 384 -49.67 384 -32V124.2C404.5 145.7 416 173.95 416 203.79V254.31L430.55 232.49C449.6600000000001 203.82 480.53 211.82 486 213.69L511.52 222.4C530.96 229.03 544.02 247.29 544.01 267.8400000000001L543.98 332.67L636.4300000000001 369.33C643.0100000000001 373.73 639.9000000000001 384 631.98 384zM464.01 352C464.01 360.8400000000001 456.85 368 448.01 368S432.01 360.8400000000001 432.01 352S439.17 336 448.01 336C456.84 336 464.01 343.16 464.01 352z" />
+    <glyph glyph-name="align-center"
+      unicode="&#xF037;"
+      horiz-adv-x="448" d=" M352 396V372A6 6 0 0 0 346 366H102A6 6 0 0 0 96 372V396A6 6 0 0 0 102 402H346A6 6 0 0 0 352 396zM6 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H6A6 6 0 0 1 0 268V244A6 6 0 0 1 6 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM346 146H102A6 6 0 0 1 96 140V116A6 6 0 0 1 102 110H346A6 6 0 0 1 352 116V140A6 6 0 0 1 346 146z" />
+    <glyph glyph-name="align-justify"
+      unicode="&#xF039;"
+      horiz-adv-x="448" d=" M0 372V396A6 6 0 0 0 6 402H442A6 6 0 0 0 448 396V372A6 6 0 0 0 442 366H6A6 6 0 0 0 0 372zM6 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H6A6 6 0 0 1 0 268V244A6 6 0 0 1 6 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM6 110H442A6 6 0 0 1 448 116V140A6 6 0 0 1 442 146H6A6 6 0 0 1 0 140V116A6 6 0 0 1 6 110z" />
+    <glyph glyph-name="align-left"
+      unicode="&#xF036;"
+      horiz-adv-x="448" d=" M288 396V372A6 6 0 0 0 282 366H6A6 6 0 0 0 0 372V396A6 6 0 0 0 6 402H282A6 6 0 0 0 288 396zM6 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H6A6 6 0 0 1 0 268V244A6 6 0 0 1 6 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM282 146H6A6 6 0 0 1 0 140V116A6 6 0 0 1 6 110H282A6 6 0 0 1 288 116V140A6 6 0 0 1 282 146z" />
+    <glyph glyph-name="align-right"
+      unicode="&#xF038;"
+      horiz-adv-x="448" d=" M160 372V396A6 6 0 0 0 166 402H442A6 6 0 0 0 448 396V372A6 6 0 0 0 442 366H166A6 6 0 0 0 160 372zM6 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H6A6 6 0 0 1 0 268V244A6 6 0 0 1 6 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM166 110H442A6 6 0 0 1 448 116V140A6 6 0 0 1 442 146H166A6 6 0 0 1 160 140V116A6 6 0 0 1 166 110z" />
+    <glyph glyph-name="allergies"
+      unicode="&#xF461;"
+      horiz-adv-x="448" d=" M240 32C231.2 32 224 24.8 224 16S231.2 0 240 0S256 7.2 256 16S248.8 32 240 32zM336 32C327.2 32 320 24.8 320 16S327.2 0 336 0S352 7.2 352 16S344.8 32 336 32zM176 64C167.2 64 160 56.8 160 48S167.2 32 176 32S192 39.2 192 48S184.8 64 176 64zM368 160C359.2 160 352 152.8 352 144S359.2 128 368 128S384 135.2 384 144S376.8 160 368 160zM304 96C295.2 96 288 88.8 288 80S295.2 64 304 64S320 71.2 320 80S312.8 96 304 96zM240 128C231.2 128 224 120.8 224 112S231.2 96 240 96S256 103.2 256 112S248.8 128 240 128zM176 160C167.2 160 160 152.8 160 144S167.2 128 176 128S192 135.2 192 144S184.8 160 176 160zM392 336C383.4 336 375.3 334.1 368 330.6V360C368 390.9 342.9 416 312 416C302.3 416 293.2 413.5 285.3 409.2C278 431.7 256.9 448 232 448S186 431.7 178.7 409.2C170.8 413.5 161.7 416 152 416C121.1 416 96 390.9 96 360V207.2C84.5 219 53.9 234.9 23.9 213.9C-1.4 196.2 -7.6 161.2 10.1 135.9L123.8 -35.4C135.7 -53.3 155.6 -64 177.1 -64H357.7000000000001C388.1 -64 414.5000000000001 -42.4 420.5000000000001 -12.6L441.1000000000001 90.6C445.6000000000001 113.3 447.9000000000001 136.5 447.9000000000001 159.6V280C448.0000000000001 310.9 422.9000000000001 336 392.0000000000001 336zM416 159.7C416 138.6 413.9 117.6 409.8 96.9L389.2 -6.3C386.2 -21.3 373.1 -32 357.8 -32H177.2C166.5 -32 156.5 -26.6 150.5 -17.7L36.3 154.2C28.7 165.1 31.3 180 42.2 187.6C58 198.7 72.2 186.6 75.6 181.7L113.4 127.3C117.9 120.9 128 124 128 131.9V360C128 373.3 138.7 384 152 384S176 373.3 176 360V200C176 195.6 179.6 192 184 192H200C204.4 192 208 195.6 208 200V392C208 405.3 218.7 416 232 416S256 405.3 256 392V200C256 195.6 259.6 192 264 192H280C284.4 192 288 195.6 288 200V360C288 373.3 298.7 384 312 384S336 373.3 336 360V200C336 195.6 339.6 192 344 192H360C364.4 192 368 195.6 368 200V280C368 293.3 378.7 304 392 304S416 293.3 416 280V159.7z" />
+    <glyph glyph-name="ambulance"
+      unicode="&#xF0F9;"
+      horiz-adv-x="640" d=" M296 256H240V312C240 316.4 236.4 320 232 320H184C179.6 320 176 316.4 176 312V256H120C115.6 256 112 252.4 112 248V200C112 195.6 115.6 192 120 192H176V136C176 131.6 179.6 128 184 128H232C236.4 128 240 131.6 240 136V192H296C300.4 192 304 195.6 304 200V248C304 252.4 300.4 256 296 256zM632 64H608V172.1C608 188.9 601.2 205.4 589.2 217.3L505.3000000000001 301.2000000000001C493.5000000000001 313.2000000000001 477.0000000000001 320 460.1000000000001 320H416V369.4C416 395.1 393.8 416 366.6 416H49.4C22.2 416 0 395.1 0 369.4V78.6C0 52.9 22.2 32 49.4 32H65.6C64.5 26.8 64 21.5 64 16C64 -28.2 99.8 -64 144 -64S224 -28.2 224 16C224 21.5 223.4 26.8 222.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H632C636.4 32 640 35.6 640 40V56C640 60.4 636.4 64 632 64zM144 -32C117.5 -32 96 -10.5 96 16S117.5 64 144 64S192 42.5 192 16S170.5 -32 144 -32zM384 64H207.6C193 83.3 170 96 144 96S95 83.3 80.4 64H49.4C39.8 64 32 70.5 32 78.6V369.4C32 377.5 39.8 384 49.4 384H366.6C376.2 384 384 377.5 384 369.4V64zM416 288H460.1C468.5 288 476.8 284.6 482.7 278.6L566.6 194.7C567.4 193.9 567.7 192.8 568.4 191.9H416V288zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32zM576 64H559.6C545 83.3 522 96 496 96S447 83.3 432.4 64H416V160H576V64z" />
+    <glyph glyph-name="american-sign-language-interpreting"
+      unicode="&#xF2A3;"
+      horiz-adv-x="640" d=" M635.911 234.747C635.866 234.84 594.654 317.879 594.654 317.879C585.094 337.1430000000001 561.016 346.35 540.258 335.894L484.972 307.9290000000001L406.0200000000001 315.3110000000001C400.9650000000001 315.7840000000001 373.5060000000001 315.9940000000001 346.6750000000001 299.5060000000001C339.1410000000001 313.904 328.1360000000001 319.9980000000001 313.8020000000001 325.6140000000001C330.7980000000001 358.125 306.9480000000001 402.636 261.9580000000001 396.4460000000001C263.498 423.781 241.849 448 213.389 448A48.61699999999999 48.61699999999999 0 0 1 182.337 436.754C137.321 399.511 108.261 346.904 100.635 289.079L68.081 229.913S20.03 202.35 19.942 202.298C1.691 191.519 -5.125 168.419 4.088 149.236C4.133 149.142 45.345 66.102 45.345 66.102C54.913 46.83 78.994 37.636 99.743 48.088L155.041 76.059C236.134 68.567 236.239 68.566 237.757 68.566C257.664 68.566 276.846 74.304 293.308 84.509C298.043 75.442 305.504 68.076 314.857 63.364C317.496 62.037 321.895 60.053 326.199 58.367C309.312 26.064 333.079 -18.647 378.043 -12.465C376.474 -40.3100000000001 398.724 -64 426.643 -64C437.992 -64 449.015 -60.005 457.695 -52.748C502.706 -15.496 531.744 37.107 539.365 94.901L571.92 154.067S619.9699999999999 181.63 620.058 181.682C638.31 192.462 645.126 215.563 635.911 234.747zM416.166 -2.077C428.693 8.579 439.2970000000001 20.273 447.681 32.678C452.695 40.096 443.676 48.647 436.535 43.759C416.639 30.139 394.744 21.791 371.462 18.948C349.817 16.266 345.232 49.7500000000001 367.229 52.2600000000001C382.611 54.1300000000001 397.419 59.285 411.245 67.5820000000001C418.988 72.2280000000001 414.2150000000001 84.2000000000001 405.407 82.2540000000001C381.093 76.8960000000001 352.595 80.5340000000001 329.255 91.9420000000001C308.5 102.3990000000001 324.737 131.7660000000001 343.648 122.4460000000001C364.0650000000001 112.1610000000001 388.185 110.6990000000001 409.822 118.4320000000001C418.231 121.4370000000001 416.078 133.9650000000001 407.13 133.9650000000001C373.749 133.9650000000001 348.204 149.0760000000001 335.194 176.5260000000001C325.759 196.3570000000001 355.74 211.1510000000001 365.185 190.9330000000001L365.236 190.828C372.242 176.3900000000001 386.4239999999999 167.42 402.247 167.42C424.798 167.42 443.144 185.876 443.144 208.561C443.144 233.973 421.915 249.703 402.247 249.703C386.424 249.703 372.242 240.733 365.236 226.295L365.185 226.1900000000001C355.752 205.998 325.7459999999999 220.738 335.199 240.6080000000001C347.677 266.9340000000001 373.79 283.312 403.42 283.4160000000001L488.886 275.425A7.967 7.967 0 0 1 493.242 276.251L554.656 307.315A8.382 8.382 0 0 0 565.9929999999999 303.653L607.0899999999999 220.854C609.0949999999999 216.631 607.665 211.554 603.8249999999999 209.258L550.161 178.477A7.993999999999999 7.993999999999999 0 0 1 547.1329999999999 175.394L509.0939999999999 106.2619999999999A7.977000000000001 7.977000000000001 0 0 1 508.1519999999999 103.286C502.4259999999999 51.62 477.2439999999999 4.9449999999999 437.197 -28.176C420.737 -41.993 398.514 -16.825 416.166 -2.0770000000001zM238.061 100.566C233.378 100.963 174.091 106.435 151.108 108.558A7.986999999999999 7.986999999999999 0 0 1 146.76 107.731L85.347 76.667A8.383 8.383 0 0 0 74.009 80.328L32.913 163.128C30.908 167.353 32.339 172.431 36.18 174.726L89.843 205.505A7.993999999999999 7.993999999999999 0 0 1 92.871 208.588L130.908 277.7200000000001C131.415 278.64 131.735 279.652 131.85 280.6960000000001C137.577 332.363 162.759 379.038 202.79 412.145C219.401 426.019 241.5180000000001 400.8330000000001 223.833 386.058C211.303 375.4 200.7 363.706 192.3180000000001 351.303C187.4 344.027 196.2000000000001 335.251 203.4640000000001 340.222C223.3610000000001 353.842 245.2550000000001 362.19 268.6230000000001 365.044C277.2220000000001 366.18 285.6970000000001 360.719 287.136 350.443C288.351 341.1720000000001 282.0590000000001 332.78 272.7700000000001 331.7200000000001C257.389 329.85 242.5810000000001 324.695 228.7550000000001 316.398C221.0420000000001 311.77 225.7330000000001 299.786 234.5930000000001 301.726C258.9060000000001 307.084 287.4070000000001 303.447 310.7440000000001 292.038C331.355 281.655 315.411 252.183 296.3180000000001 261.552C275.9060000000001 271.8230000000001 251.8030000000001 273.278 230.1780000000001 265.548C221.7690000000001 262.5420000000001 223.9220000000001 250.0150000000001 232.8700000000001 250.0150000000001C266.2510000000001 250.0150000000001 291.7960000000001 234.9040000000001 304.8050000000001 207.454C314.0470000000001 188.03 285.0450000000001 172.59 274.7640000000001 193.1520000000001C267.7580000000001 207.59 253.5760000000001 216.5600000000001 237.7530000000001 216.5600000000001C215.2020000000001 216.5600000000001 196.8560000000001 198.1040000000001 196.8560000000001 175.4190000000001C196.8560000000001 150.0070000000001 218.0850000000001 134.2770000000001 237.7530000000001 134.2770000000001C253.5760000000001 134.2770000000001 267.7580000000001 143.2470000000001 274.7640000000001 157.6850000000001C274.7820000000001 157.7200000000001 274.7980000000001 157.7560000000001 274.8150000000001 157.7910000000001C284.2630000000001 178.0150000000001 314.2320000000001 163.2010000000001 304.8000000000001 143.3720000000001C292.5210000000001 117.4610000000001 266.3500000000001 100.6850000000001 238.0610000000001 100.5660000000001zM247.967 175.419C246.013 172.081 244.417 166.278 237.756 166.278C234.969 166.278 228.859 168.58 228.859 175.419C228.859 180.545 232.767 184.56 237.756 184.56C244.354 184.561 245.914 178.926 247.967 175.419zM392.0320000000001 208.561C393.9790000000001 211.887 395.576 217.702 402.2430000000001 217.702C405.0300000000001 217.702 411.1410000000001 215.4 411.1410000000001 208.561C411.1410000000001 203.435 407.2330000000001 199.42 402.2430000000001 199.42C395.6450000000001 199.42 394.0860000000001 205.054 392.0320000000001 208.561z" />
+    <glyph glyph-name="analytics"
+      unicode="&#xF643;"
+      horiz-adv-x="576" d=" M80 96H16C7.16 96 0 88.84 0 80V-48C0 -56.84 7.16 -64 16 -64H80C88.84 -64 96 -56.84 96 -48V80C96 88.84 88.84 96 80 96zM64 -32H32V64H64V-32zM560 256H496C487.16 256 480 248.84 480 240V-48C480 -56.84 487.16 -64 496 -64H560C568.84 -64 576 -56.84 576 -48V240C576 248.84 568.84 256 560 256zM544 -32H512V224H544V-32zM502.77 359.32C510.12 354.76 518.71 352 528 352C554.51 352 576 373.49 576 400S554.51 448 528 448S480 426.51 480 400C480 394.49 481.12 389.29 482.83 384.36L393.23 312.68C385.88 317.25 377.29 320.01 368 320.01S350.12 317.25 342.77 312.68L253.17 384.36C254.88 389.28 256 394.49 256 400C256 426.51 234.51 448 208 448S160 426.51 160 400C160 392.6 161.81 385.68 164.8 379.42L68.58 283.2C62.32 286.19 55.4 288 48 288C21.49 288 0 266.51 0 240S21.49 192 48 192S96 213.49 96 240C96 247.4 94.19 254.32 91.2 260.58L187.42 356.8C193.68 353.81 200.6 352 208 352C217.29 352 225.88 354.76 233.23 359.33L322.83 287.65C321.12 282.72 320 277.51 320 272C320 245.49 341.49 224 368 224S416 245.49 416 272C416 277.51 414.88 282.72 413.17 287.65L502.77 359.32zM528 416C536.82 416 544 408.82 544 400S536.82 384 528 384S512 391.18 512 400S519.18 416 528 416zM48 224C39.18 224 32 231.18 32 240S39.18 256 48 256S64 248.82 64 240S56.82 224 48 224zM208 384C199.18 384 192 391.18 192 400S199.18 416 208 416S224 408.82 224 400S216.82 384 208 384zM368 256C359.18 256 352 263.18 352 272S359.18 288 368 288S384 280.82 384 272S376.82 256 368 256zM240 256H176C167.16 256 160 248.84 160 240V-48C160 -56.84 167.16 -64 176 -64H240C248.84 -64 256 -56.84 256 -48V240C256 248.84 248.84 256 240 256zM224 -32H192V224H224V-32zM400 128H336C327.1600000000001 128 320 120.84 320 112V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V112C416 120.84 408.84 128 400 128zM384 -32H352V96H384V-32z" />
+    <glyph glyph-name="anchor"
+      unicode="&#xF13D;"
+      horiz-adv-x="576" d=" M504.485 183.515C499.799 188.201 492.201 188.201 487.514 183.515L420.485 116.486C412.925 108.926 418.279 96.001 428.9700000000001 96.001H478.099C461.111 27.251 390.501 -25.6 304 -31.452V256H356C362.627 256 368 261.373 368 268V276C368 282.627 362.627 288 356 288H304V322.016C332.513 329.355 353.336 355.849 351.933 386.963C350.453 419.774 323.832 446.421 291.022 447.93C254.302 449.6190000000001 224 420.348 224 384C224 354.179 244.396 329.121 272 322.016V288H220C213.373 288 208 282.627 208 276V268C208 261.373 213.373 256 220 256H272V-31.452C185.498 -25.6 114.888 27.251 97.901 96H147.03C157.721 96 163.075 108.926 155.515 116.485L88.486 183.515C83.8 188.201 76.202 188.201 71.515 183.515L4.486 116.485C-3.074 108.926 2.28 96 12.971 96H65.107C83.963 -0.392 182.863 -64 288 -64C398.901 -64 492.938 4.213 510.893 96H563.029C573.72 96 579.074 108.926 571.514 116.485L504.485 183.515zM256 384C256 401.645 270.355 416 288 416S320 401.645 320 384S305.645 352 288 352S256 366.355 256 384zM61.255 128L80 146.745L98.745 128H61.255zM477.255 128L496 146.745L514.745 128H477.255z" />
+    <glyph glyph-name="angel"
+      unicode="&#xF779;"
+      horiz-adv-x="576" d=" M176.7 310.7C177.4 322.1 179.6 333.1 183.5 343.3C168.5 351.9 160 361.1 160 368C160 384.9 208.6 416 288 416S416 384.9 416 368C416 361.1 407.5 351.9 392.5 343.3C396.4 333 398.6 322.1 399.3 310.7C429.3 325.2 448 345.5 448 368C448 412.2 376.4 448 288 448S128 412.2 128 368C128 345.5 146.7 325.2 176.7 310.7zM572.5 -16.6L534.3 62C526.6999999999999 77.7 526.6999999999999 96.4 534.3 112.1C551 146.3 559.9 148.6 559.9 183.9C559.9 230.8000000000001 516.6999999999999 271.9000000000001 467.5 271.9000000000001C444.5 271.9000000000001 423 262.7000000000001 406.8 246.2000000000001L339.3 178.1C324 187 306.4 192 288 192S252.1 187 236.7 178.2L169.2 246.3C153.1 262.8 131.5 272 108.5 272C59.3 272 16.1 230.9 16.1 184C16.1 148.6 25.1 146.1 41.7 112.2C49.3 96.5 49.3 77.8 41.7 62.1L3.6 -16.6C-8.1 -40.5 11 -64 32.6 -64H543.4C565.6 -64 583.9 -39.9 572.5 -16.6zM32.6 -32L70.5 48.1C82.4 72.6 82.4 101.7000000000001 70.5 126.2000000000001C52.6 163 48.2 158.1 48.2 184C48.2 213.3 77 240 108.6 240C122.8 240 136.3 234.3 146.4 223.8L211.5 158.1C205.2 151.2000000000001 199.8 143.3 195.4 134.7000000000001L112.1 -32H32.6zM147.9 -32L224 120.4C236.2 144.8 260.7 160 288 160C315.3 160 339.8 144.8 352 120.4L428.2 -32H147.9zM463.9 -32L380.6 134.8C376.3 143.4 370.8 151.2 364.5 158.2L429.5999999999999 223.9C439.7 234.3 453.1999999999999 240.1 467.3999999999999 240.1C498.9999999999999 240.1 527.8 213.4 527.8 184.1C527.8 158.1 523.3 163.1 505.4 126.3C493.5 101.8 493.5 72.6999999999999 505.4 48.1999999999999L543.3 -31.9000000000001H463.9zM208 304C208 259.8 243.8 224 288 224S368 259.8 368 304S332.2 384 288 384S208 348.2 208 304zM336 304C336 277.5 314.5 256 288 256S240 277.5 240 304S261.5 352 288 352S336 330.5 336 304z" />
+    <glyph glyph-name="angle-double-down"
+      unicode="&#xF103;"
+      horiz-adv-x="256" d=" M119.5 185.1L3.5 302.9C-1.2 307.6 -1.2 315.2000000000001 3.5 319.9L10.6 327C15.3 331.7 22.9 331.7 27.6 327L128 224.7L228.4 326.9C233.1 331.6 240.7 331.6 245.4 326.9L252.5 319.8C257.2 315.1 257.2 307.5 252.5 302.8L136.5 185C131.8 180.4 124.2 180.4 119.5 185.1zM136.5 57.1L252.5 174.9C257.2 179.6 257.2 187.2000000000001 252.5 191.9L245.4 199C240.7 203.7 233.1 203.7 228.4 199L128 96.7L27.6 198.9C22.9 203.6 15.3 203.6 10.6 198.9L3.5 191.8C-1.2 187.1 -1.2 179.5 3.5 174.8L119.5 57C124.2 52.4 131.8 52.4 136.5 57.1z" />
+    <glyph glyph-name="angle-double-left"
+      unicode="&#xF100;"
+      horiz-adv-x="320" d=" M153.1 200.5L270.9 316.5C275.6 321.2 283.2 321.2 287.9 316.5L295 309.4C299.7 304.7000000000001 299.7 297.1 295 292.4L192.7 192L294.9 91.6C299.6 86.9 299.6 79.3 294.9 74.6L287.8 67.5C283.1 62.8 275.5 62.8 270.8 67.5L153 183.5C148.4 188.2 148.4 195.8 153.1 200.5zM25.1 183.5L142.9 67.5C147.6 62.8 155.2 62.8 159.9 67.5L167 74.6C171.7 79.3 171.7 86.9 167 91.6L64.7 192L166.9 292.4C171.6 297.1 171.6 304.7000000000001 166.9 309.4L159.8 316.5C155.1 321.2 147.5 321.2 142.8 316.5L25 200.5C20.4 195.8 20.4 188.2 25.1 183.5z" />
+    <glyph glyph-name="angle-double-right"
+      unicode="&#xF101;"
+      horiz-adv-x="320" d=" M166.9 183.5L49.1 67.5C44.4 62.8 36.8 62.8 32.1 67.5L25 74.6C20.3 79.3 20.3 86.9 25 91.6L127.3 192L25.1 292.4C20.4 297.1 20.4 304.7000000000001 25.1 309.4L32.2 316.5C36.9 321.2 44.5 321.2 49.2 316.5L167 200.5C171.6 195.8 171.6 188.2 166.9 183.5zM294.9 200.5L177.1 316.5C172.4 321.2 164.8 321.2 160.1 316.5L153 309.4C148.3 304.7000000000001 148.3 297.1 153 292.4L255.3 192L153.1 91.6C148.4 86.9 148.4 79.3 153.1 74.6L160.2 67.5C164.9 62.8 172.5 62.8 177.2 67.5L295 183.5C299.6 188.2 299.6 195.8 294.9 200.5z" />
+    <glyph glyph-name="angle-double-up"
+      unicode="&#xF102;"
+      horiz-adv-x="256" d=" M136.5 198.9L252.5 81.1C257.2 76.4 257.2 68.8 252.5 64.1L245.4 57C240.7 52.3 233.1 52.3 228.4 57L128 159.3L27.6 57.1C22.9 52.4 15.3 52.4 10.6 57.1L3.5 64.2000000000001C-1.2 68.9 -1.2 76.5000000000001 3.5 81.2000000000001L119.5 199.0000000000001C124.2 203.6000000000001 131.8 203.6000000000001 136.5 198.9000000000001zM119.5 326.9L3.5 209.1C-1.2 204.4 -1.2 196.8 3.5 192.1L10.6 185C15.3 180.3 22.9 180.3 27.6 185L128 287.3L228.4 185.1C233.1 180.4 240.7 180.4 245.4 185.1L252.5 192.2C257.2 196.9 257.2 204.5 252.5 209.2L136.5 327C131.8 331.6 124.2 331.6 119.5 326.9z" />
+    <glyph glyph-name="angle-down"
+      unicode="&#xF107;"
+      horiz-adv-x="256" d=" M119.5 121.1L3.5 238.9C-1.2 243.6 -1.2 251.2 3.5 255.9L10.6 263C15.3 267.7 22.9 267.7 27.6 263L128 160.7L228.4 262.9C233.1 267.6 240.7 267.6 245.4 262.9L252.5 255.8C257.2 251.1 257.2 243.5 252.5 238.8L136.5 121C131.8 116.4 124.2 116.4 119.5 121.1z" />
+    <glyph glyph-name="angle-left"
+      unicode="&#xF104;"
+      horiz-adv-x="192" d=" M25.1 200.5L142.9 316.5C147.6 321.2 155.2 321.2 159.9 316.5L167 309.4C171.7 304.7000000000001 171.7 297.1 167 292.4L64.7 192L166.9 91.6C171.6 86.9 171.6 79.3 166.9 74.6L159.8 67.5C155.1 62.8 147.5 62.8 142.8 67.5L25 183.5C20.4 188.2 20.4 195.8 25.1 200.5z" />
+    <glyph glyph-name="angle-right"
+      unicode="&#xF105;"
+      horiz-adv-x="192" d=" M166.9 183.5L49.1 67.5C44.4 62.8 36.8 62.8 32.1 67.5L25 74.6C20.3 79.3 20.3 86.9 25 91.6L127.3 192L25.1 292.4C20.4 297.1 20.4 304.7000000000001 25.1 309.4L32.2 316.5C36.9 321.2 44.5 321.2 49.2 316.5L167 200.5C171.6 195.8 171.6 188.2 166.9 183.5z" />
+    <glyph glyph-name="angle-up"
+      unicode="&#xF106;"
+      horiz-adv-x="256" d=" M136.5 262.9L252.5 145.1C257.2 140.4 257.2 132.8 252.5 128.1L245.4 121C240.7 116.3 233.1 116.3 228.4 121L128 223.3L27.6 121.1C22.9 116.4 15.3 116.4 10.6 121.1L3.5 128.2000000000001C-1.2 132.9 -1.2 140.5000000000001 3.5 145.2000000000001L119.5 263.0000000000001C124.2 267.6 131.8 267.6 136.5 262.9000000000001z" />
+    <glyph glyph-name="angry"
+      unicode="&#xF556;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 112C216.8 112 187.4 98.2 167.4 74.2C161.7 67.4 162.6 57.3 169.4 51.7S186.3 46.9 191.9 53.7C219.8 87.1 276.1 87.1 304 53.7C309.3 47.3 319.4 45.7 326.5 51.7C333.3 57.4 334.2 67.5 328.5 74.2C308.6 98.2 279.2 112 248 112zM200 208C200 210.9 199.1 213.6 198.3 216.2C198.9 216.1 199.4 216 200 216C206.9 216 213.2 220.5 215.3 227.4C217.9 235.9 213.1 244.8 204.6 247.3L124.6 271.3C116.2 273.8 107.2 269 104.7 260.6C102.1 252.1 106.9 243.2 115.4 240.7L146.4 231.4C140.1 225.6 135.9 217.3 135.9 208C135.9 190.3 150.2000000000001 176 167.9 176S200 190.3 200 208zM371.4 271.3L291.4 247.3C282.9 244.8 278.1 235.8 280.7 227.4C282.8 220.5 289.1 216 296 216C296.6 216 297.1 216.2 297.7 216.2C297 213.5 296 210.9 296 208C296 190.3 310.3 176 328 176S360 190.3 360 208C360 217.3 355.9 225.5 349.5 231.4L380.5 240.7C389 243.2 393.8 252.2 391.2 260.6C388.8 269.1 379.8 273.8 371.4 271.3z" />
+    <glyph glyph-name="ankh"
+      unicode="&#xF644;"
+      horiz-adv-x="320" d=" M312 160H215.42C252.2200000000001 195.94 288 256.37 288 310.86C288 395.02 230.69 448 160 448S32 395.02 32 310.86C32 256.37 67.78 195.95 104.58 160H8C3.58 160 0 156.42 0 152V136C0 131.58 3.58 128 8 128H144V-56C144 -60.42 147.58 -64 152 -64H168C172.42 -64 176 -60.42 176 -56V128H312C316.42 128 320 131.58 320 136V152C320 156.42 316.42 160 312 160zM64 310.86C64 372.76 103.48 416 160 416S256 372.76 256 310.86C256 239.08 180.75 161.84 160.21 160H160.18C139.25 161.84 64 239.07 64 310.86z" />
+    <glyph glyph-name="apple-alt"
+      unicode="&#xF5D1;"
+      horiz-adv-x="448" d=" M224.48 320C245.81 320 284.02 323.73 308.15 347.86C343.08 382.79 335.26 447.25 335.26 447.25S329.08 448 319.52 448C298.19 448 259.98 444.27 235.86 420.14C200.93 385.21 208.75 320.75 208.75 320.75S214.92 320 224.48 320zM258.49 397.52C269.98 409.02 288.54 413.44 303.1600000000001 415.09C301.37 399.39 296.5700000000001 381.55 285.5200000000001 370.49C274.0200000000001 359 255.4700000000001 354.57 240.8600000000001 352.92C242.6500000000001 368.7 247.4400000000001 386.47 258.4900000000001 397.52zM351.18 318.85C346.7200000000001 319.64 341.8400000000001 320 336.6500000000001 320C300.49 320 249.4600000000001 302.43 224 288.04C198.54 302.43 147.51 320 111.34 320C106.15 320 101.27 319.64 96.81 318.85C15.57 304.55 -10.6 194.36 3.72 113.25S65.02 -64 160.41 -64C172.47 -64 184.53 -59.39 194.85 -53.66C203.89 -48.64 213.95 -46.14 224.01 -46.14C234.07 -46.14 244.13 -48.65 253.17 -53.66C263.49 -59.39 275.55 -64 287.6 -64C382.99 -64 429.96 32.14 444.28 113.25C458.6 194.36 432.44 304.55 351.18 318.85zM412.76 118.81C408.32 93.63 381.38 -32 287.59 -32C282.74 -32 276.03 -29.76 268.68 -25.67C255.07 -18.12 239.62 -14.13 224 -14.13S192.93 -18.12 179.31 -25.67C171.97 -29.75 165.2599999999999 -31.99 160.41 -31.99C66.62 -32 39.69 93.63 35.24 118.82C28.7 155.85 32.11 197.34 44.37 229.8C53.1 252.93 70.26 281.69 102.36 287.3400000000001C116.77 289.88 160.66 287.0800000000001 224 251.29C286.92 286.85 331.19 289.89 345.63 287.3400000000001C377.75 281.6900000000001 394.9 252.9300000000001 403.63 229.8000000000001C415.89 197.34 419.3 155.85 412.76 118.8100000000001z" />
+    <glyph glyph-name="apple-crate"
+      unicode="&#xF6B1;"
+      horiz-adv-x="512" d=" M402.2200000000001 397.53C413.5100000000001 409.7200000000001 416.6500000000001 429.56 415.4400000000001 447.75C402.5600000000001 448.61 379.7700000000001 447.87 365.4200000000001 434.4700000000001C348.8900000000001 417.87 351.6500000000001 388.11 352.2000000000001 384.25C370.6700000000001 383.02 389.9700000000001 386.1 402.2200000000001 397.53zM496 224H470.51C473.27 232.11 475.68 240.56 477.25 249.82C490.88 323.16 452.05 405.85 351.69 349.7C286.01 386.45 257.14 357.34 255.95 356.42C254.76 357.34 225.67 386.44 160.01 349.7C59.44 405.96 20.98 322.2200000000001 34.44 249.82C36 240.56 38.42 232.11 41.18 224H16C7.16 224 0 216.84 0 208V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V208C512 216.84 504.84 224 496 224zM336.06 321.77L351.68 313.03L367.3 321.77C422.04 352.4 434.4100000000001 325.46 435.06 324.52C447.1 307.1 449.57 276.04 445.69 255.15C443.71 243.44 440.18 233.39 436.02 224H278.82C281.58 232.11 284 240.56 285.56 249.82C289.82 272.72 288.08 306.29 275.58 331.94C290.39 342.55 326.4 327.18 336.06 321.77zM76.75 324.57C77.4 325.51 89.62 352.41 144.38 321.77L160 313.03L175.62 321.77C230.36 352.4 242.73 325.46 243.38 324.52C255.42 307.1 257.89 276.04 254.01 255.15C252.03 243.44 248.5 233.38 244.34 224H75.66C71.49 233.45 67.93 243.63 65.89 255.66C62.07 276.27 65.08 307.68 76.75 324.57zM480 -32H32V64H480V-32zM480 96H32V192H480V96zM80 128C88.84 128 96 135.16 96 144S88.84 160 80 160S64 152.84 64 144S71.16 128 80 128zM80 0C88.84 0 96 7.16 96 16S88.84 32 80 32S64 24.84 64 16S71.16 0 80 0zM432 128C440.84 128 448 135.16 448 144S440.84 160 432 160S416 152.84 416 144S423.1600000000001 128 432 128zM432 0C440.84 0 448 7.16 448 16S440.84 32 432 32S416 24.84 416 16S423.1600000000001 0 432 0zM210.53 397.53C221.82 409.7200000000001 224.96 429.56 223.75 447.75C210.87 448.61 188.08 447.87 173.73 434.4700000000001C157.2 417.87 159.96 388.11 160.51 384.25C178.98 383.02 198.28 386.1 210.53 397.53z" />
+    <glyph glyph-name="archive"
+      unicode="&#xF187;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V304C0 295.2 7.2 288 16 288H32V16C32 -10.5 53.5 -32 80 -32H432C458.5 -32 480 -10.5 480 16V288H496C504.8 288 512 295.2 512 304V368C512 394.5 490.5 416 464 416zM448 16C448 7.2 440.8 0 432 0H80C71.2 0 64 7.2 64 16V288H448V16zM480 320H32V368C32 376.8 39.2 384 48 384H464C472.8 384 480 376.8 480 368V320zM204 192H308C314.6 192 320 197.4 320 204V212C320 218.6 314.6 224 308 224H204C197.4 224 192 218.6 192 212V204C192 197.4 197.4 192 204 192z" />
+    <glyph glyph-name="archway"
+      unicode="&#xF557;"
+      horiz-adv-x="576" d=" M568 416C572.4 416 576 419.6 576 424V440C576 444.4 572.4 448 568 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H32V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H176C184.84 -64 192 -56.84 192 -48V128C192 180.94 235.06 224 288 224S384 180.94 384 128V-32L384.02 -48C384.02 -56.84 391.18 -64 400.02 -64H568C572.4 -64 576 -60.4 576 -56V-40C576 -35.6 572.4 -32 568 -32H544V416H568zM512 -32H416V128C416 198.58 358.5900000000001 256 288 256S160 198.58 160 128V-32H64V320H512V-32zM512 352H64V416H512V352z" />
+    <glyph glyph-name="arrow-alt-circle-down"
+      unicode="&#xF358;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192zM384 224H320V328C320 341.2 309.2 352 296 352H216C202.8 352 192 341.2 192 328V224H128C99.6 224 85.2 189.5 105.4 169.4L233.4 41.4C245.9 28.9 266.2 28.9 278.7 41.4L406.7 169.4C426.7 189.5 412.5 224 384 224zM256 64L128 192H224V320H288V192H384L256 64z" />
+    <glyph glyph-name="arrow-alt-circle-left"
+      unicode="&#xF359;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24zM288 64V128H392C405.2 128 416 138.8 416 152V232C416 245.2 405.2 256 392 256H288V320C288 348.4 253.5 362.8 233.4 342.6L105.4 214.6C92.9 202.1 92.9 181.8 105.4 169.3L233.4 41.3C253.5 21.3 288 35.5 288 64zM128 192L256 320V224H384V160H256V64L128 192z" />
+    <glyph glyph-name="arrow-alt-circle-right"
+      unicode="&#xF35A;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408zM224 320V256H120C106.8 256 96 245.2 96 232V152C96 138.8 106.8 128 120 128H224V64C224 35.6 258.5 21.2 278.6 41.4L406.6 169.4C419.1 181.9 419.1 202.2 406.6 214.7L278.6 342.7C258.5 362.7 224 348.5 224 320zM384 192L256 64V160H128V224H256V320L384 192z" />
+    <glyph glyph-name="arrow-alt-circle-up"
+      unicode="&#xF35B;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM128 160H192V56C192 42.8 202.8 32 216 32H296C309.2 32 320 42.8 320 56V160H384C412.4 160 426.8 194.5 406.6 214.6L278.6 342.6C266.1 355.1 245.8 355.1 233.3 342.6L105.3 214.6C85.3 194.5 99.5 160 128 160zM256 320L384 192H288V64H224V192H128L256 320z" />
+    <glyph glyph-name="arrow-alt-down"
+      unicode="&#xF354;"
+      horiz-adv-x="448" d=" M267.427 384C278.789 384 288 374.789 288 363.428V191.991H404.979C412.104 191.991 415.674 183.379 410.639 178.338L238.556 6.035C230.52 -2.011 217.48 -2.012 209.444 6.035L37.36 178.338C32.325 183.379 35.896 191.9910000000001 43.02 191.9910000000001H160V363.428C160 374.789 169.211 384 180.573 384H267.427M267.427 416H180.572C151.584 416 128 392.416 128 363.428V223.991H43.021C7.514 223.991 -10.476 180.951 14.719 155.725L186.802 -16.578C207.352 -37.1540000000001 240.644 -37.158 261.198 -16.578L433.281 155.725C458.372 180.847 440.632 223.991 404.979 223.991H320V363.428C320 392.416 296.416 416 267.427 416z" />
+    <glyph glyph-name="arrow-alt-from-bottom"
+      unicode="&#xF346;"
+      horiz-adv-x="384" d=" M372 -32H12C5.4 -32 0 -26.6 0 -20V-12C0 -5.4 5.4 0 12 0H372C378.6 0 384 -5.4 384 -12V-20C384 -26.6 378.6 -32 372 -32zM153.1 64H230.8C239.6 64 246.8 71.2 246.8 80V224H340.7000000000001C347.8000000000001 224 351.4000000000001 232.6 346.4000000000001 237.6L203.3 381.2C197 387.5 186.9 387.5 180.6 381.2L37.6 237.6C32.6 232.6 36.1 224 43.3 224H137.2000000000001V80C137.1000000000001 71.2 144.3000000000001 64 153.1000000000001 64M153.1000000000001 32C126.6000000000001 32 105.1000000000001 53.5 105.1000000000001 80V192H43.3C7.7 192 -10.1 235.1 15 260.2L158 403.8C176.8 422.6 207.2 422.6 226 403.8L369.1 260.3C394.3 235.1 376.3 192.1 340.8 192.1H278.9000000000001V80.1C278.9000000000001 53.6 257.4000000000001 32.1 230.9000000000001 32.1H153.1V32z" />
+    <glyph glyph-name="arrow-alt-from-left"
+      unicode="&#xF347;"
+      horiz-adv-x="448" d=" M0 12V372C0 378.6 5.4 384 12 384H20C26.6 384 32 378.6 32 372V12C32 5.4 26.6 0 20 0H12C5.4 0 0 5.4 0 12zM96 230.9V153.2C96 144.4 103.2 137.2 112 137.2H256V43.3C256 36.1999999999999 264.6 32.6 269.6 37.6L411.2000000000001 180.6999999999999C417.5000000000001 187 417.5000000000001 197.0999999999999 411.2000000000001 203.3999999999999L269.6 346.3999999999999C264.6 351.3999999999999 256 347.8999999999999 256 340.7V246.7999999999999H112C103.2 246.8999999999999 96 239.6999999999999 96 230.8999999999999M64 230.8999999999999C64 257.3999999999999 85.5 278.8999999999999 112 278.8999999999999H224V340.7999999999999C224 376.3999999999999 267.1 394.1999999999999 292.2 369.0999999999999L433.9 226C452.7 207.2 452.7 176.8 433.9 158L292.2 14.9C267 -10.3 224 7.7 224 43.2V105.1H112C85.5 105.1 64 126.6 64 153.1V230.9z" />
+    <glyph glyph-name="arrow-alt-from-right"
+      unicode="&#xF348;"
+      horiz-adv-x="448" d=" M448 372V12C448 5.4 442.6 0 436 0H428C421.4 0 416 5.4 416 12V372C416 378.6 421.4 384 428 384H436C442.6 384 448 378.6 448 372zM352 153.1V230.8C352 239.6 344.8 246.8 336 246.8H192V340.7000000000001C192 347.8 183.4 351.4000000000001 178.4 346.4000000000001L36.7 203.3C30.4 197 30.4 186.9 36.7 180.6L178.3 37.5C183.3 32.5 191.9 36 191.9 43.2V137.1H335.9C344.8 137.1 352 144.3 352 153.1M384 153.1C384 126.6 362.5 105.1 336 105.1H224V43.2C224 7.6 180.9 -10.1999999999999 155.8 14.9L14.1 158C-4.7 176.8 -4.7 207.2 14.1 226L155.8 369.1C181 394.2 224 376.2 224 340.7V278.8H336C362.5 278.8 384 257.3 384 230.8V153.1z" />
+    <glyph glyph-name="arrow-alt-from-top"
+      unicode="&#xF349;"
+      horiz-adv-x="384" d=" M12 416H372C378.6 416 384 410.6 384 404V396C384 389.4 378.6 384 372 384H12C5.4 384 0 389.4 0 396V404C0 410.6 5.4 416 12 416zM230.9 320H153.2C144.4 320 137.2 312.8 137.2 304V160H43.3C36.2 160 32.6 151.4 37.6 146.4L180.7 2.9C187 -3.4 197.1 -3.4 203.4 2.9L346.5 146.4C351.5 151.4 348 160 340.8 160H246.9V304C246.9 312.8 239.7 320 230.9 320M230.9 352C257.4 352 278.9 330.5 278.9 304V192H340.8C376.4 192 394.2 148.9 369.1 123.8L226 -19.8C207.2 -38.6 176.8 -38.6 158 -19.8L14.9 123.8C-10.2 149 7.8 192 43.3 192H105.2V304C105.2 330.5 126.7 352 153.2 352H230.9z" />
+    <glyph glyph-name="arrow-alt-left"
+      unicode="&#xF355;"
+      horiz-adv-x="448.012" d=" M416.012 148.573C416.012 137.211 406.801 128 395.44 128H224.002V11.021C224.002 3.896 215.39 0.326 210.349 5.361L38.047 177.444C30.001 185.48 30 198.52 38.047 206.556L210.349 378.64C215.39 383.675 224.002 380.104 224.002 372.98V256H395.439C406.801 256 416.011 246.789 416.011 235.427V148.573M448.012 148.573V235.428C448.012 264.4170000000001 424.428 288.001 395.44 288.001H256.002V372.979C256.002 408.486 212.962 426.476 187.736 401.281L15.433 229.198C-5.143 208.648 -5.147 175.356 15.433 154.802L187.736 -17.2809999999999C212.858 -42.372 256.002 -24.6319999999999 256.002 11.0210000000001V96H395.439C424.428 96 448.012 119.584 448.012 148.573z" />
+    <glyph glyph-name="arrow-alt-right"
+      unicode="&#xF356;"
+      horiz-adv-x="448.012" d=" M32 235.427C32 246.789 41.211 256 52.572 256H224.009V372.979C224.009 380.104 232.621 383.674 237.662 378.639L409.9650000000001 206.556C418.011 198.52 418.0120000000001 185.48 409.9650000000001 177.444L237.662 5.36C232.621 0.325 224.009 3.896 224.009 11.02V128H52.572C41.211 128 32 137.211 32 148.573V235.427M0 235.427V148.572C0 119.584 23.584 96 52.572 96H192.009V11.021C192.009 -24.486 235.049 -42.476 260.2750000000001 -17.281L432.5780000000001 154.802C453.1540000000001 175.352 453.158 208.644 432.5780000000001 229.1980000000001L260.276 401.281C235.154 426.372 192.01 408.632 192.01 372.979V288H52.572C23.584 288 0 264.416 0 235.427z" />
+    <glyph glyph-name="arrow-alt-square-down"
+      unicode="&#xF350;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM352 224H288V328C288 341.2 277.2 352 264 352H184C170.8 352 160 341.2 160 328V224H96C67.6 224 53.2 189.5 73.4 169.4L201.4 41.4C213.9 28.9 234.2 28.9 246.7 41.4L374.7 169.4C394.7 189.5 380.5 224 352 224zM224 64L96 192H192V320H256V192H352L224 64z" />
+    <glyph glyph-name="arrow-alt-square-left"
+      unicode="&#xF351;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM48 0C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48zM256 64V128H360C373.2 128 384 138.8 384 152V232C384 245.2 373.2 256 360 256H256V320C256 348.4 221.5 362.8 201.4 342.6L73.4 214.6C60.9 202.1 60.9 181.8 73.4 169.3L201.4 41.3C221.5 21.3 256 35.5 256 64zM96 192L224 320V224H352V160H224V64L96 192z" />
+    <glyph glyph-name="arrow-alt-square-right"
+      unicode="&#xF352;"
+      horiz-adv-x="448" d=" M0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368zM400 384C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400zM192 320V256H88C74.8 256 64 245.2 64 232V152C64 138.8 74.8 128 88 128H192V64C192 35.6 226.5 21.2 246.6 41.4L374.6 169.4C387.1 181.9 387.1 202.2 374.6 214.7L246.6 342.7C226.5000000000001 362.7 192 348.5 192 320zM352 192L224 64V160H96V224H224V320L352 192z" />
+    <glyph glyph-name="arrow-alt-square-up"
+      unicode="&#xF353;"
+      horiz-adv-x="448" d=" M48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32zM32 368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368zM96 160H160V56C160 42.8 170.8 32 184 32H264C277.2 32 288 42.8 288 56V160H352C380.4 160 394.8 194.5 374.6 214.6L246.6 342.6C234.1 355.1 213.8 355.1 201.3 342.6L73.3 214.6C53.3 194.5 67.5 160 96 160zM224 320L352 192H256V64H192V192H96L224 320z" />
+    <glyph glyph-name="arrow-alt-to-bottom"
+      unicode="&#xF34A;"
+      horiz-adv-x="384" d=" M230.9 384C239.7 384 246.9 376.8 246.9 368V224H340.8C347.9000000000001 224 351.5 215.4 346.5 210.4L203.3 66.8C197 60.5 186.9 60.5 180.6 66.8L37.6 210.4C32.6 215.4 36.1 224 43.3 224H137.2000000000001V368C137.2000000000001 376.8 144.4 384 153.2000000000001 384H230.9000000000001M230.9000000000001 416H153.2000000000001C126.7000000000001 416 105.2000000000001 394.5 105.2000000000001 368V256H43.3C7.8 256 -10.2 213 15 187.8L158 44.2C176.8 25.4 207.2 25.4 226 44.2L369.1 187.7000000000001C394.2000000000001 212.8000000000001 376.4000000000001 255.9000000000001 340.8 255.9000000000001H278.9000000000001V368C278.9000000000001 394.5 257.3 416 230.9000000000001 416zM384 -20V-12C384 -5.4 378.6 0 372 0H12C5.4 0 0 -5.4 0 -12V-20C0 -26.6 5.4 -32 12 -32H372C378.6 -32 384 -26.6 384 -20z" />
+    <glyph glyph-name="arrow-alt-to-left"
+      unicode="&#xF34B;"
+      horiz-adv-x="448" d=" M416 153.1C416 144.3 408.8 137.1 400 137.1H256V43.2C256 36.1 247.4 32.5000000000001 242.4 37.5000000000001L98.8 180.7C92.5 187 92.5 197.1 98.8 203.4L242.3 346.5C247.3 351.5 255.9 348 255.9 340.8V246.9H399.9C408.7 246.9 415.9 239.7 415.9 230.9V153.1M448 153.1V230.8C448 257.3 426.5 278.8 400 278.8H288V340.7C288 376.2 245 394.2 219.8 369L76.2 226C57.4 207.2 57.4 176.8 76.2 158L219.7 14.9C244.8 -10.2 287.9 7.6 287.9 43.2V105.1H399.9C426.5 105.1 448 126.7 448 153.1zM12 0H20C26.6 0 32 5.4 32 12V372C32 378.6 26.6 384 20 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0z" />
+    <glyph glyph-name="arrow-alt-to-right"
+      unicode="&#xF34C;"
+      horiz-adv-x="448" d=" M32 230.9C32 239.7 39.2 246.9 48 246.9H192V340.8C192 347.9 200.6 351.5 205.6 346.5L349.1 203.4C355.4000000000001 197.1 355.4000000000001 187.0000000000001 349.1 180.7000000000001L205.6 37.6C200.6 32.6 192 36.1 192 43.3V137.2000000000001H48C39.2 137.2000000000001 32 144.4 32 153.2000000000001V230.9000000000001M0 230.9000000000001V153.2000000000001C0 126.7000000000001 21.5 105.2000000000001 48 105.2000000000001H160V43.3000000000001C160 7.8000000000001 203 -10.1999999999999 228.2 15.0000000000001L371.8 158.0000000000001C390.6 176.8000000000001 390.6 207.2000000000001 371.8 226.0000000000001L228.2 369.1C203.1 394.2 160 376.4 160 340.8V278.9H48C21.5 278.9 0 257.3 0 230.9zM436 384H428C421.4 384 416 378.6 416 372V12C416 5.4 421.4 0 428 0H436C442.6 0 448 5.4 448 12V372C448 378.6 442.6 384 436 384z" />
+    <glyph glyph-name="arrow-alt-to-top"
+      unicode="&#xF34D;"
+      horiz-adv-x="384" d=" M153.1 0C144.3 0 137.1 7.2 137.1 16V160H43.3C36.2 160 32.6 168.6 37.6 173.6L180.7 317.1C187 323.4000000000001 197.1 323.4000000000001 203.4 317.1L346.5 173.6C351.5 168.6 348 160 340.8 160H246.9V16C246.9 7.2 239.7 0 230.9 0H153.1M153.1 -32H230.8C257.3 -32 278.8 -10.5 278.8 16V128H340.7C376.2 128 394.2 171 369 196.2L226 339.8C207.2 358.6 176.8 358.6 158 339.8L14.9 196.2C-10.1 171.1 7.6 128 43.3 128H105.2V16C105.1 -10.5 126.7 -32 153.1 -32zM0 404V396C0 389.4 5.4 384 12 384H372C378.6 384 384 389.4 384 396V404C384 410.6 378.6 416 372 416H12C5.4 416 0 410.6 0 404z" />
+    <glyph glyph-name="arrow-alt-up"
+      unicode="&#xF357;"
+      horiz-adv-x="448" d=" M180.573 0C169.211 0 160 9.211 160 20.572V192.009H43.021C35.896 192.009 32.326 200.621 37.361 205.662L209.444 377.9650000000001C217.48 386.011 230.52 386.012 238.556 377.9650000000001L410.64 205.662C415.675 200.621 412.104 192.009 404.98 192.009H288V20.572C288 9.21 278.789 0 267.427 0H180.573M180.573 -32H267.4280000000001C296.416 -32 320 -8.416 320 20.572V160.009H404.979C440.486 160.009 458.476 203.049 433.281 228.2750000000001L261.198 400.578C240.648 421.154 207.356 421.158 186.802 400.578L14.719 228.276C-10.372 203.154 7.368 160.01 43.021 160.01H128V20.573C128 -8.416 151.584 -32 180.573 -32z" />
+    <glyph glyph-name="arrow-circle-down"
+      unicode="&#xF0AB;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192zM379.5 196.5L372.6 203.4C367.9000000000001 208.1 360.1 208.1 355.5 203.2L273 117.7V308C273 314.6 267.6 320 261 320H251C244.4 320 239 314.6 239 308V117.7L156.5 203.3C151.8 208.1 144.1 208.2 139.4 203.5L132.5 196.6C127.8 191.9 127.8 184.3 132.5 179.6L247.5 64.5C252.2 59.8 259.8 59.8 264.5 64.5L379.5 179.6C384.2 184.2000000000001 384.2 191.8 379.5 196.5z" />
+    <glyph glyph-name="arrow-circle-left"
+      unicode="&#xF0A8;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24zM243.5 68.5L128.4 183.5C123.7 188.2 123.7 195.8 128.4 200.5L243.5 315.5C248.2 320.2 255.8 320.2 260.5 315.5L267.4 308.6C272.1 303.9 272.1 296.1 267.2 291.5L181.7 209H372C378.6 209 384 203.6 384 197V187C384 180.4 378.6 175 372 175H181.7L267.3 92.5C272.1 87.8 272.2 80.1 267.5 75.4L260.6 68.5C255.8 63.8 248.2 63.8 243.5 68.5z" />
+    <glyph glyph-name="arrow-circle-right"
+      unicode="&#xF0A9;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408zM268.5 315.5L383.6 200.5C388.3 195.8 388.3 188.2 383.6 183.5L268.5 68.5C263.8 63.8 256.2 63.8 251.5 68.5L244.6 75.4C239.9 80.1 239.9 87.9 244.8 92.5L330.4 175H140C133.4 175 128 180.4 128 187V197C128 203.6 133.4 209 140 209H330.3L244.7 291.5C239.9 296.2 239.8 303.9 244.5000000000001 308.6L251.4000000000001 315.5C256.2000000000001 320.2 263.8 320.2 268.5000000000001 315.5z" />
+    <glyph glyph-name="arrow-circle-up"
+      unicode="&#xF0AA;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM132.5 204.5L247.5 319.6C252.2 324.3 259.8 324.3 264.5 319.6L379.5 204.5C384.2 199.8 384.2 192.2 379.5 187.5L372.6 180.6C367.9000000000001 175.9 360.1 175.9 355.5 180.8L273 266.3V76C273 69.4 267.6 64 261 64H251C244.4 64 239 69.4 239 76V266.3L156.5 180.7000000000001C151.8 175.9 144.1 175.8000000000001 139.4 180.5000000000001L132.5 187.4C127.8 192.2000000000001 127.8 199.8000000000001 132.5 204.5z" />
+    <glyph glyph-name="arrow-down"
+      unicode="&#xF063;"
+      horiz-adv-x="448" d=" M443.5 199.5L436.4 206.6C431.7 211.3 424.1 211.3 419.4 206.6L241 28.1V404C241 410.6 235.6 416 229 416H219C212.4 416 207 410.6 207 404V28.1L28.5 206.6C23.8 211.3 16.2 211.3 11.5 206.6L4.4 199.5C-0.3 194.8 -0.3 187.2 4.4 182.5L215.4 -28.6C220.1 -33.3 227.7 -33.3 232.4 -28.6L443.4 182.5C448.2 187.3 448.2 194.8 443.5 199.5z" />
+    <glyph glyph-name="arrow-from-bottom"
+      unicode="&#xF342;"
+      horiz-adv-x="384" d=" M35.5 264L183.5 412.5C188.2 417.2 195.8 417.2 200.5 412.5L348.5 264C353.2 259.3 353.2 251.7 348.5 247L341.4 239.9C336.7 235.2 329.1 235.2 324.4 239.9L209 355.9V44C209 37.4 203.6 32 197 32H187C180.4 32 175 37.4 175 44V355.9L59.6 240C54.9 235.3 47.3 235.3 42.6 240L35.5 247.1C30.8 251.7 30.8 259.3 35.5 264zM384 -20V-12C384 -5.4 378.6 0 372 0H12C5.4 0 0 -5.4 0 -12V-20C0 -26.6 5.4 -32 12 -32H372C378.6 -32 384 -26.6 384 -20z" />
+    <glyph glyph-name="arrow-from-left"
+      unicode="&#xF343;"
+      horiz-adv-x="448" d=" M296 348.5L444.5 200.5C449.2 195.8 449.2 188.2 444.5 183.5L296 35.5C291.3 30.8 283.7 30.8 279 35.5L271.9 42.6C267.2 47.3 267.2 54.9 271.9 59.6L387.9 175H76C69.4 175 64 180.4 64 187V197C64 203.6 69.4 209 76 209H387.9L272 324.4C267.3 329.1 267.3 336.7 272 341.4L279.1 348.5C283.7000000000001 353.2 291.3 353.2 296 348.5zM12 0H20C26.6 0 32 5.4 32 12V372C32 378.6 26.6 384 20 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0z" />
+    <glyph glyph-name="arrow-from-right"
+      unicode="&#xF344;"
+      horiz-adv-x="448" d=" M152 35.5L3.5 183.5C-1.2 188.2 -1.2 195.8 3.5 200.5L152 348.5C156.7 353.2 164.3 353.2 169 348.5L176.1 341.4C180.8 336.7 180.8 329.1 176.1 324.4L60.1 209H372C378.6 209 384 203.6 384 197V187C384 180.4 378.6 175 372 175H60.1L176 59.6C180.7 54.9 180.7 47.3 176 42.6L168.9 35.5C164.3 30.8 156.7 30.8 152 35.5zM436 384H428C421.4 384 416 378.6 416 372V12C416 5.4 421.4 0 428 0H436C442.6 0 448 5.4 448 12V372C448 378.6 442.6 384 436 384z" />
+    <glyph glyph-name="arrow-from-top"
+      unicode="&#xF345;"
+      horiz-adv-x="384" d=" M348.5 120L200.5 -28.5C195.8 -33.2 188.2 -33.2 183.5 -28.5L35.5 120C30.8 124.7 30.8 132.3 35.5 137L42.6 144.1C47.3 148.8 54.9 148.8 59.6 144.1L175 28.1V340C175 346.6 180.4 352 187 352H197C203.6 352 209 346.6 209 340V28.1L324.4 144C329.1 148.7 336.7 148.7 341.4 144L348.5 136.9C353.2 132.3 353.2 124.7 348.5 120zM0 404V396C0 389.4 5.4 384 12 384H372C378.6 384 384 389.4 384 396V404C384 410.6 378.6 416 372 416H12C5.4 416 0 410.6 0 404z" />
+    <glyph glyph-name="arrow-left"
+      unicode="&#xF060;"
+      horiz-adv-x="448" d=" M231.536 -27.535L238.607 -20.465C243.293 -15.7790000000001 243.293 -8.181 238.607 -3.494L60.113 175H436C442.627 175 448 180.373 448 187V197C448 203.627 442.627 209 436 209H60.113L238.607 387.4940000000001C243.293 392.18 243.293 399.778 238.607 404.4650000000001L231.536 411.5350000000001C226.85 416.221 219.252 416.221 214.566 411.5350000000001L3.515 200.485C-1.171 195.799 -1.171 188.201 3.515 183.514L214.566 -27.536C219.252 -32.222 226.85 -32.222 231.536 -27.535z" />
+    <glyph glyph-name="arrow-right"
+      unicode="&#xF061;"
+      horiz-adv-x="448" d=" M216.464 411.535L209.393 404.465C204.707 399.779 204.707 392.181 209.393 387.4940000000001L387.887 209H12C5.373 209 0 203.627 0 197V187C0 180.373 5.373 175 12 175H387.887L209.393 -3.494C204.707 -8.18 204.707 -15.778 209.393 -20.465L216.464 -27.535C221.15 -32.221 228.748 -32.221 233.434 -27.535L444.485 183.515C449.171 188.201 449.171 195.799 444.485 200.486L233.434 411.535C228.748 416.222 221.15 416.222 216.464 411.535z" />
+    <glyph glyph-name="arrow-square-down"
+      unicode="&#xF339;"
+      horiz-adv-x="448" d=" M347.5 179.5L232.5 64.4C227.8 59.7 220.2 59.7 215.5 64.4L100.5 179.5C95.8 184.2 95.8 191.8 100.5 196.5L107.4 203.4C112.1 208.1 119.9 208.1 124.5 203.2L207 117.6V308C207 314.6 212.4 320 219 320H229C235.6 320 241 314.6 241 308V117.7L323.5 203.3C328.2 208.1 335.9 208.2 340.6 203.5L347.5 196.6C352.2 191.8 352.2 184.2 347.5 179.5zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM416 368C416 376.8 408.8 384 400 384H48C39.2 384 32 376.8 32 368V16C32 7.2 39.2 0 48 0H400C408.8 0 416 7.2 416 16V368z" />
+    <glyph glyph-name="arrow-square-left"
+      unicode="&#xF33A;"
+      horiz-adv-x="448" d=" M211.5 68.5L96.4 183.5C91.7 188.2 91.7 195.8 96.4 200.5L211.5 315.5C216.2 320.2 223.8 320.2 228.5 315.5L235.4 308.6C240.1 303.9 240.1 296.1 235.2 291.5L149.7 209H340C346.6 209 352 203.6 352 197V187C352 180.4 346.6 175 340 175H149.7L235.3 92.5C240.1 87.8 240.2 80.1 235.5 75.4L228.6 68.5C223.8 63.8 216.2 63.8 211.5 68.5zM400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32zM400 0C408.8 0 416 7.2 416 16V368C416 376.8 408.8 384 400 384H48C39.2 384 32 376.8 32 368V16C32 7.2 39.2 0 48 0H400z" />
+    <glyph glyph-name="arrow-square-right"
+      unicode="&#xF33B;"
+      horiz-adv-x="448" d=" M236.5 315.5L351.6 200.5C356.3 195.8 356.3 188.2 351.6 183.5L236.5000000000001 68.5C231.8000000000001 63.8 224.2 63.8 219.5 68.5L212.6 75.4C207.9 80.1 207.9 87.9 212.8 92.5L298.4 175H108C101.4 175 96 180.4 96 187V197C96 203.6 101.4 209 108 209H298.3L212.7 291.5C207.9 296.2 207.8 303.9 212.5 308.6L219.4 315.5C224.2000000000001 320.2 231.8000000000001 320.2 236.5000000000001 315.5zM48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416zM48 384C39.2 384 32 376.8 32 368V16C32 7.2 39.2 0 48 0H400C408.8 0 416 7.2 416 16V368C416 376.8 408.8 384 400 384H48z" />
+    <glyph glyph-name="arrow-square-up"
+      unicode="&#xF33C;"
+      horiz-adv-x="448" d=" M100.5 204.5L215.5 319.6C220.2 324.3 227.8 324.3 232.5 319.6L347.5 204.5C352.2 199.8 352.2 192.2 347.5 187.5L340.6 180.6C335.9000000000001 175.9 328.1 175.9 323.5 180.8L241 266.3V76C241 69.4 235.6 64 229 64H219C212.4 64 207 69.4 207 76V266.3L124.5 180.7000000000001C119.8 175.9 112.1 175.8000000000001 107.4 180.5000000000001L100.5 187.4C95.8 192.2000000000001 95.8 199.8000000000001 100.5 204.5zM0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16zM32 16C32 7.2 39.2 0 48 0H400C408.8 0 416 7.2 416 16V368C416 376.8 408.8 384 400 384H48C39.2 384 32 376.8 32 368V16z" />
+    <glyph glyph-name="arrow-to-bottom"
+      unicode="&#xF33D;"
+      horiz-adv-x="384" d=" M348.5 184L200.5 35.5C195.8 30.8 188.2 30.8 183.5 35.5L35.5 184C30.8 188.7 30.8 196.3 35.5 201L42.6 208.1C47.3 212.8 54.9 212.8 59.6 208.1L175 92.1V404C175 410.6 180.4 416 187 416H197C203.6 416 209 410.6 209 404V92.1L324.4 208C329.1 212.7 336.7 212.7 341.4 208L348.5 200.9C353.2 196.3 353.2 188.7 348.5 184zM384 -20V-12C384 -5.4 378.6 0 372 0H12C5.4 0 0 -5.4 0 -12V-20C0 -26.6 5.4 -32 12 -32H372C378.6 -32 384 -26.6 384 -20z" />
+    <glyph glyph-name="arrow-to-left"
+      unicode="&#xF33E;"
+      horiz-adv-x="448" d=" M216 35.5L67.5 183.5C62.8 188.2 62.8 195.8 67.5 200.5L216 348.5C220.7 353.2 228.3 353.2 233 348.5L240.1 341.4C244.8 336.7 244.8 329.1 240.1 324.4L124.1 209H436C442.6 209 448 203.6 448 197V187C448 180.4 442.6 175 436 175H124.1L240 59.6C244.7 54.9 244.7 47.3 240 42.6L232.9 35.5C228.3 30.8 220.7 30.8 216 35.5zM12 0H20C26.6 0 32 5.4 32 12V372C32 378.6 26.6 384 20 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0z" />
+    <glyph glyph-name="arrow-to-right"
+      unicode="&#xF340;"
+      horiz-adv-x="448" d=" M215 348.5L207.9 341.4C203.2 336.7 203.2 329.1 207.9 324.4L323.9 209H12C5.4 209 0 203.6 0 197V187C0 180.4 5.4 175 12 175H323.9L208 59.6C203.3 54.9 203.3 47.3 208 42.6L215.1 35.5C219.8 30.8 227.4 30.8 232.1 35.5L380.6 183.5C385.3 188.2 385.3 195.8 380.6 200.5L232 348.5C227.3 353.2 219.7 353.2 215 348.5zM448 372V12C448 5.4 442.6 0 436 0H428C421.4 0 416 5.4 416 12V372C416 378.6 421.4 384 428 384H436C442.6 384 448 378.6 448 372z" />
+    <glyph glyph-name="arrow-to-top"
+      unicode="&#xF341;"
+      horiz-adv-x="384" d=" M35.5 200L183.5 348.5C188.2 353.2 195.8 353.2 200.5 348.5L348.5 200C353.2 195.3 353.2 187.7 348.5 183L341.4 175.9C336.7 171.2 329.1 171.2 324.4 175.9L209 291.9V-20C209 -26.6 203.6 -32 197 -32H187C180.4 -32 175 -26.6 175 -20V291.9L59.6 176C54.9 171.3 47.3 171.3 42.6 176L35.5 183.1C30.8 187.7000000000001 30.8 195.3 35.5 200zM0 404V396C0 389.4 5.4 384 12 384H372C378.6 384 384 389.4 384 396V404C384 410.6 378.6 416 372 416H12C5.4 416 0 410.6 0 404z" />
+    <glyph glyph-name="arrow-up"
+      unicode="&#xF062;"
+      horiz-adv-x="448" d=" M4.465 184.464L11.535 177.393C16.221 172.707 23.819 172.707 28.506 177.393L207 355.887V-20C207 -26.627 212.373 -32 219 -32H229C235.627 -32 241 -26.627 241 -20V355.887L419.4940000000001 177.394C424.18 172.708 431.778 172.708 436.4650000000001 177.394L443.5350000000001 184.465C448.221 189.151 448.221 196.749 443.5350000000001 201.435L232.485 412.485C227.799 417.1710000000001 220.201 417.1710000000001 215.514 412.485L4.465 201.434C-0.222 196.748 -0.222 189.15 4.465 184.464z" />
+    <glyph glyph-name="arrows-alt-h"
+      unicode="&#xF337;"
+      horiz-adv-x="512" d=" M384 255.968V209H128V255.962C128 284.387 93.512 298.729 73.373 278.589L9.373 214.627C-3.123 202.131 -3.125 181.87 9.373 169.372L73.373 105.404C93.472 85.305 128 99.55 128 128.032V175H384V128.038C384 99.613 418.487 85.271 438.627 105.411L502.627 169.373C515.123 181.869 515.125 202.13 502.627 214.628L438.627 278.596C418.528 298.695 384 284.45 384 255.968zM100 128.032C100 124.484 95.704 122.671 93.167 125.209L29.172 189.172A3.9950000000000006 3.9950000000000006 0 0 0 29.166 194.823L93.172 258.7910000000001C95.705 261.3230000000001 100.001 259.5150000000001 100.001 255.9630000000001V128.0320000000001zM418.8330000000001 258.792L482.828 194.829A3.9950000000000006 3.9950000000000006 0 0 0 482.834 189.178L418.828 125.21C416.296 122.678 411.999 124.485 411.999 128.038V255.968C412 259.516 416.296 261.329 418.833 258.792z" />
+    <glyph glyph-name="arrows-alt-v"
+      unicode="&#xF338;"
+      horiz-adv-x="192" d=" M159.968 64H113V320H159.962C188.387 320 202.729 354.488 182.589 374.627L118.627 438.627C106.131 451.123 85.87 451.125 73.372 438.627L9.404 374.627C-10.695 354.528 3.55 320 32.032 320H79V64H32.038C3.613 64 -10.729 29.513 9.411 9.373L73.373 -54.627C85.869 -67.123 106.13 -67.125 118.628 -54.627L182.596 9.373C202.695 29.472 188.45 64 159.968 64zM32.032 348C28.484 348 26.671 352.296 29.209 354.833L93.172 418.828A3.9950000000000006 3.9950000000000006 0 0 0 98.823 418.834L162.791 354.828C165.323 352.295 163.515 347.999 159.963 347.999H32.032zM162.792 29.167L98.829 -34.828A3.9950000000000006 3.9950000000000006 0 0 0 93.178 -34.834L29.21 29.171C26.678 31.703 28.485 36 32.038 36H159.968C163.516 36 165.329 31.704 162.792 29.167z" />
+    <glyph glyph-name="arrows-alt"
+      unicode="&#xF0B2;"
+      horiz-adv-x="512" d=" M322.469 68.44L272 68.442V176H379.556L379.553 125.533C379.553 96.246 415.087 81.469 435.837 102.219L502.343 168.686C515.218 181.561 515.2199999999999 202.437 502.343 215.313L435.844 281.779C415.135 302.488 379.56 287.8110000000001 379.56 258.4650000000001L379.558 208H272V315.5560000000001L322.463 315.553C351.75 315.553 366.5270000000001 351.087 345.7770000000001 371.837L279.31 438.343C266.435 451.218 245.559 451.22 232.683 438.343L166.217 371.844C145.508 351.135 160.185 315.56 189.531 315.56L240 315.558V208H132.444L132.447 258.467C132.447 287.754 96.914 302.531 76.163 281.781L9.657 215.314C-3.218 202.439 -3.22 181.563 9.657 168.686L76.156 102.22C96.865 81.511 132.44 96.188 132.44 125.534L132.442 176H240V68.444L189.537 68.447C160.25 68.447 145.473 32.913 166.223 12.163L232.69 -54.343C245.565 -67.218 266.441 -67.2199999999999 279.317 -54.343L345.783 12.1560000000001C366.492 32.8650000000001 351.815 68.4400000000001 322.469 68.4400000000001zM415.45 261.375L481.943 194.915A4.117 4.117 0 0 0 481.949 189.0920000000001L415.437 122.619C412.827 120.0100000000001 408.401 121.8730000000001 408.401 125.533L408.408 258.4650000000001C408.41 262.121 412.836 263.9890000000001 415.45 261.375zM189.531 344.41C185.876 344.41 184.008 348.836 186.622 351.451L253.082 417.944A4.117 4.117 0 0 0 258.905 417.95L325.378 351.438C327.987 348.828 326.124 344.402 322.464 344.402L189.531 344.41zM96.55 122.625L30.057 189.085A4.117 4.117 0 0 0 30.051 194.908L96.563 261.381C99.173 263.99 103.599 262.127 103.599 258.467L103.592 125.535C103.59 121.879 99.164 120.011 96.55 122.625zM253.095 -33.95L186.622 32.562C184.013 35.172 185.876 39.598 189.536 39.598L322.468 39.591C326.123 39.591 327.991 35.165 325.377 32.55L258.917 -33.943A4.115 4.115 0 0 0 253.095 -33.95z" />
+    <glyph glyph-name="arrows-h"
+      unicode="&#xF07E;"
+      horiz-adv-x="512" d=" M399.959 277.415C395.273 272.729 395.273 265.131 399.959 260.444L451.887 209H60.113L112.041 260.444C116.727 265.13 116.727 272.728 112.041 277.415L104.97 284.485C100.284 289.1710000000001 92.686 289.1710000000001 88 284.485L3.515 200.485C-1.171 195.799 -1.171 188.201 3.515 183.514L88 99.514C92.686 94.828 100.284 94.828 104.97 99.514L112.041 106.584C116.727 111.27 116.727 118.868 112.041 123.555L60.113 175H451.886L399.9580000000001 123.556C395.2720000000001 118.87 395.2720000000001 111.272 399.9580000000001 106.585L407.0290000000001 99.515C411.7150000000001 94.829 419.3130000000001 94.829 423.999 99.515L508.484 183.515C513.171 188.201 513.171 195.799 508.484 200.486L423.999 284.486C419.3130000000001 289.1720000000001 411.7150000000001 289.1720000000001 407.029 284.486L399.959 277.415z" />
+    <glyph glyph-name="arrows-v"
+      unicode="&#xF07D;"
+      horiz-adv-x="192" d=" M181.415 48.041C176.729 52.727 169.131 52.727 164.444 48.041L113 -3.887V387.887L164.444 335.959C169.13 331.273 176.728 331.273 181.415 335.959L188.485 343.03C193.171 347.716 193.171 355.314 188.485 360L104.485 444.485C99.799 449.171 92.201 449.171 87.514 444.485L3.515 360C-1.171 355.314 -1.171 347.716 3.515 343.03L10.585 335.959C15.271 331.273 22.869 331.273 27.556 335.959L79 387.887V-3.886L27.556 48.042C22.87 52.728 15.272 52.728 10.585 48.042L3.515 40.9709999999999C-1.171 36.285 -1.171 28.687 3.515 24.001L87.515 -60.484C92.201 -65.171 99.799 -65.171 104.486 -60.484L188.486 24.001C193.172 28.687 193.172 36.285 188.486 40.971L181.415 48.041z" />
+    <glyph glyph-name="arrows"
+      unicode="&#xF047;"
+      horiz-adv-x="512" d=" M337.782 13.296L264.485 -60.486C259.7990000000001 -65.172 252.201 -65.172 247.514 -60.486L174.218 13.296C169.532 17.982 169.532 25.58 174.218 30.266L181.288 37.336C185.974 42.0219999999999 193.572 42.0219999999999 198.259 37.336L239 -3.887H240V176H60.113V175L101.337 134.259C106.023 129.573 106.023 121.975 101.337 117.288L94.266 110.218C89.58 105.532 81.982 105.532 77.296 110.218L3.515 183.515C-1.171 188.201 -1.171 195.799 3.515 200.486L77.297 273.783C81.983 278.469 89.581 278.469 94.268 273.783L101.339 266.712C106.025 262.026 106.025 254.428 101.339 249.741L60.113 209V208H240V387.887H239L198.259 346.663C193.573 341.977 185.975 341.977 181.288 346.663L174.218 353.7340000000001C169.532 358.42 169.531 366.0180000000001 174.218 370.704L247.515 444.486C252.201 449.1720000000001 259.7990000000001 449.1720000000001 264.486 444.486L337.783 370.704C342.469 366.0180000000001 342.469 358.42 337.783 353.733L330.712 346.6620000000001C326.026 341.976 318.428 341.976 313.741 346.6620000000001L273 387.887H272V208H451.887V209L410.663 249.741C405.9770000000001 254.427 405.9770000000001 262.025 410.663 266.712L417.7340000000001 273.782C422.42 278.468 430.0180000000001 278.468 434.7040000000001 273.782L508.486 200.485C513.173 195.799 513.172 188.201 508.486 183.514L434.7040000000001 110.217C430.0180000000001 105.531 422.4200000000001 105.531 417.7340000000001 110.217L410.663 117.287C405.9770000000001 121.973 405.9770000000001 129.571 410.663 134.258L451.887 175V176H272V-3.887H273L313.741 37.337C318.427 42.023 326.025 42.023 330.712 37.337L337.782 30.266C342.468 25.581 342.468 17.9829999999999 337.782 13.2959999999999z" />
+    <glyph glyph-name="assistive-listening-systems"
+      unicode="&#xF2A2;"
+      horiz-adv-x="512" d=" M217.6 -64C208.763 -64 201.6 -56.837 201.6 -48S208.763 -32 217.6 -32C258.772 -32 292.267 1.495 292.267 42.666C292.267 127.84 365.658 136.566 365.658 208C365.658 279.1670000000001 307.759 337.0660000000001 236.591 337.0660000000001C165.424 337.0660000000001 107.525 279.1670000000001 107.525 208C107.525 199.163 100.362 192 91.525 192S75.525 199.163 75.525 208C75.525 296.812 147.779 369.0660000000001 236.591 369.0660000000001S397.657 296.812 397.657 208C397.657 121.143 324.266 111.959 324.266 42.666C324.267 -16.149 276.416 -64 217.6 -64zM333.333 208C333.333 261.8160000000001 289.55 305.6 235.733 305.6S138.133 261.817 138.133 208C138.133 199.163 145.296 192 154.133 192S170.133 199.163 170.133 208C170.133 244.172 199.561 273.6 235.733 273.6S301.333 244.172 301.333 208C301.333 199.163 308.496 192 317.333 192S333.333 199.163 333.333 208zM439.803 253.984C448.251 256.5750000000001 452.998 265.525 450.407 273.972C435.763 321.704 405.023 363.7680000000001 363.848 392.413C356.594 397.459 346.622 395.6720000000001 341.577 388.4170000000001C336.5299999999999 381.163 338.319 371.1910000000001 345.5729999999999 366.146C380.8949999999999 341.572 407.2609999999999 305.5030000000001 419.815 264.587C422.408 256.134 431.36 251.394 439.803 253.984zM500.691 272.634C509.138 275.228 513.884 284.178 511.292 292.625C492.386 354.213 452.886 408.373 400.0590000000001 445.132C392.8060000000001 450.178 382.834 448.391 377.7870000000001 441.137C372.74 433.884 374.5290000000001 423.912 381.7820000000001 418.865C428.7600000000001 386.177 463.8870000000001 338.01 480.7 283.2340000000001C483.2930000000001 274.7870000000001 492.241 270.0420000000001 500.691 272.634zM240 192C231.163 192 224 184.837 224 176S231.163 160 240 160S256 167.163 256 176S248.837 192 240 192zM176 128C167.163 128 160 120.837 160 112S167.163 96 176 96S192 103.163 192 112S184.837 128 176 128zM80 32C71.163 32 64 24.837 64 16S71.163 0 80 0S96 7.163 96 16S88.837 32 80 32zM16 -32C7.163 -32 0 -39.163 0 -48S7.163 -64 16 -64S32 -56.837 32 -48S24.837 -32 16 -32zM171.313 43.313L107.313 107.313L84.686 84.686L148.686 20.686L171.313 43.313z" />
+    <glyph glyph-name="asterisk"
+      unicode="&#xF069;"
+      horiz-adv-x="512" d=" M475.31 83.856L288 192L475.31 300.144C481.05 303.458 483.016 310.7970000000001 479.702 316.536L475.702 323.464C472.388 329.204 465.049 331.17 459.31 327.856L272 219.713V436C272 442.627 266.627 448 260 448H252C245.373 448 240 442.627 240 436V219.713L52.69 327.856C46.95 331.17 39.611 329.203 36.298 323.464L32.298 316.536C28.984 310.796 30.951 303.457 36.69 300.144L224 192L36.69 83.856C30.95 80.542 28.984 73.203 32.298 67.464L36.298 60.536C39.612 54.796 46.951 52.83 52.69 56.144L240 164.287V-52C240 -58.627 245.373 -64 252 -64H260C266.627 -64 272 -58.627 272 -52V164.287L459.31 56.144C465.05 52.83 472.389 54.797 475.702 60.536L479.702 67.464C483.016 73.204 481.049 80.543 475.31 83.856z" />
+    <glyph glyph-name="at"
+      unicode="&#xF1FA;"
+      horiz-adv-x="512" d=" M256 440C118.941 440 8 329.081 8 192C8 54.942 118.919 -56 256 -56C308.925 -56 360.68 -38.922 403.092 -7.681C408.593 -3.629 409.515 4.243 405.187 9.53L400.113 15.728C396.0950000000001 20.637 388.92 21.611 383.806 17.857C346.93 -9.208 301.974 -24 256 -24C136.627 -24 40 72.607 40 192C40 311.375 136.607 408 256 408C374.445 408 472 327.976 472 208C472 135.127 419.181 99.759 355.935 99.759C336.201 99.759 332.24 110.575 336.432 133.627L368.502 297.698C369.951 305.1090000000001 364.276 312 356.725 312H344.3040000000001A12 12 0 0 1 332.523 302.2820000000001C330.2290000000001 290.4360000000001 329.663 288.818 328.6620000000001 276.635C316.9330000000001 303.713 290.023 319.658 255.2870000000001 319.658C187.2430000000001 319.658 122.1110000000001 256.7080000000001 122.1110000000001 162.631C122.1110000000001 101.044 156.0260000000001 64.277 212.8340000000001 64.277C252.5630000000001 64.277 283.4350000000001 88.5550000000001 299.4670000000001 111.259C298.2560000000001 83.473 316.9220000000001 69.046 345.4420000000001 69.046C453.089 69.046 504 126.271 504 208C504 344.1860000000001 393.863 440 256 440zM218.08 97.373C181.399 97.373 159.5 122.481 159.5 164.539C159.5 239.229 210.265 286.084 256.717 286.084C295.574 286.084 314.819 258.294 314.819 220.349C314.819 162.216 276.45 97.373 218.08 97.373z" />
+    <glyph glyph-name="atlas"
+      unicode="&#xF558;"
+      horiz-adv-x="448" d=" M448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64zM224 112C294.69 112 352 169.31 352 240S294.69 368 224 368S96 310.69 96 240S153.31 112 224 112zM318.38 256H279.29C277.8 283.03 272.75 307.35 265.08 326.41C292.79 313.17 313.1 287.2200000000001 318.38 256zM279.29 224H318.38C313.09 192.78 292.79 166.83 265.08 153.59C272.76 172.65 277.8 196.97 279.29 224zM224 334.69C231.69 327.24 244.77 300.27 247.43 256H200.56C203.23 300.26 216.31 327.24 224 334.69zM247.43 224C244.77 179.74 231.69 152.76 224 145.31C216.31 152.76 203.23 179.73 200.57 224H247.43zM182.92 326.41C175.24 307.35 170.2 283.03 168.71 256H129.62C134.9 287.2200000000001 155.21 313.17 182.92 326.41zM168.71 224C170.2 196.97 175.25 172.65 182.92 153.59C155.21 166.8300000000001 134.9 192.78 129.62 224H168.71z" />
+    <glyph glyph-name="atom-alt"
+      unicode="&#xF5D3;"
+      horiz-adv-x="448" d=" M426.9 394.4700000000001C400.18 421.14 353.58 423.11 295.44 399.94C272.26 390.69 248.14 377.23 224 361.36C199.86 377.2200000000001 175.74 390.69 152.56 399.94C94.55 423.08 47.91 421.19 21.1 394.4700000000001C-17.22 356.23 -1.62 276.48 53.92 192C-1.62 107.51 -17.22 27.77 21.1 -10.47C35.48 -24.81 55.58 -32 80.14 -32C101.25 -32 125.68 -26.66 152.56 -15.94C175.74 -6.69 199.86 6.77 224 22.64C248.14 6.78 272.26 -6.69 295.44 -15.94C322.31 -26.66 346.71 -32 367.89 -32C392.41 -32 412.52 -24.81 426.9 -10.47C465.22 27.76 449.62 107.51 394.08 192C449.62 276.48 465.22 356.23 426.9 394.4700000000001zM307.38 370.23C352.11 388.07 387.37 388.64 404.23 371.8400000000001C427.19 348.95 417.11 289.52 374.29 220.27C357.8 242.09 338.7800000000001 263.9500000000001 317.44 285.24C296.44 306.19 274.43 324.6 252.24 341.32C270.93 352.86 289.5 363.1 307.38 370.23zM43.78 371.8400000000001C51.95 379.98 64.42 384.04 80.21 384.04C97.03 384.04 117.58 379.43 140.63 370.23C158.5 363.1 177.08 352.87 195.77 341.32C173.59 324.6 151.58 306.19 130.57 285.24C109.23 263.9500000000001 90.21 242.09 73.72 220.27C30.9 289.52 20.82 348.94 43.78 371.8400000000001zM140.62 13.77C95.96 -4.09 60.69 -4.67 43.77 12.16C20.81 35.05 30.89 94.48 73.71 163.73C90.2 141.91 109.22 120.05 130.56 98.76C151.56 77.81 173.57 59.4 195.76 42.68C177.07 31.13 158.49 20.9 140.62 13.77zM153.24 121.38C129.58 144.98 109.58 168.8 92.82 191.99C109.57 215.18 129.58 239 153.24 262.6C176.08 285.38 200 305.4000000000001 224 322.7100000000001C247.99 305.4000000000001 271.92 285.38 294.76 262.6C318.42 239.0000000000001 338.42 215.18 355.18 191.99C338.42 168.8 318.42 144.98 294.76 121.38C271.92 98.6 248 78.58 224 61.27C200.01 78.58 176.08 98.61 153.24 121.38zM404.22 12.16C387.34 -4.65 352.07 -4.09 307.37 13.77C289.5 20.9 270.92 31.13 252.23 42.68C274.4100000000001 59.4 296.42 77.81 317.43 98.76C338.77 120.05 357.79 141.91 374.2800000000001 163.73C417.1 94.48 427.18 35.05 404.2200000000001 12.16zM224 248C193.05 248 167.87 222.88 167.87 192S193.05 136 224 136S280.13 161.12 280.13 192S254.95 248 224 248zM224 168C210.71 168 199.95 178.75 199.95 192C199.95 205.26 210.72 216 224 216C237.29 216 248.05 205.26 248.05 192S237.29 168 224 168z" />
+    <glyph glyph-name="atom"
+      unicode="&#xF5D2;"
+      horiz-adv-x="448" d=" M224 248C193.12 248 167.99 222.88 167.99 192S193.12 136 224 136S280.01 161.12 280.01 192S254.88 248 224 248zM224 168C210.74 168 200 178.75 200 192C200 205.26 210.75 216 224 216S248 205.26 248 192C248 178.75 237.26 168 224 168zM412.7200000000001 192C428.2700000000001 212.27 439.43 232.62 444.6300000000001 252C450.66 274.61 448.5700000000001 295.42 438.5700000000001 312.19C420.3400000000001 342.69 378.2100000000001 355.15 325.0500000000001 350.62C301.8 410.18 265.55 448 224 448S146.2 410.19 122.96 350.63C69.79 355.16 27.67 342.7 9.46 312.18C-0.57 295.42 -2.66 274.61 3.37 252C8.57 232.62 19.73 212.27 35.28 192C19.73 171.73 8.57 151.38 3.37 132C-2.66 109.39 -0.57 88.58 9.43 71.81C25.28 45.31 59.03 32.29 102.48 32.29C108.84 32.29 115.98 33.44 122.73 34C145.96 -25.92 182.31 -64 224 -64S302.04 -25.92 325.27 34C332.02 33.44 339.16 32.29 345.52 32.29C388.93 32.29 422.72 45.31 438.54 71.81C448.57 88.58 450.67 109.39 444.63 132C439.43 151.38 428.2699999999999 171.73 412.7199999999999 192zM34.31 260.28C30.47 274.53 31.37 286.48 36.94 295.78C46.16 311.25 69.66 319.76 102.08 319.76C105.41 319.76 109.01 319.49 112.52 319.31C106.97 299.5900000000001 102.75 278.14 99.95 255.43C83.92 243.03 69.28 230.15 56.63 216.98C45.91 231.88 37.99 246.56 34.31 260.2800000000001zM96.44 173.27C89.59 179.47 83.22 185.71 77.31 192C83.21 198.29 89.59 204.53 96.44 210.73C96.23 204.52 95.98 198.34 95.98 192S96.22 179.48 96.44 173.27zM36.91 88.22C31.38 97.52 30.47 109.47 34.32 123.72C38 137.44 45.92 152.12 56.63 167.02C69.28 153.85 83.93 140.97 99.95 128.57C102.75 105.83 106.98 84.37 112.53 64.63C74.81 62.68 47.12 71.15 36.91 88.22zM311.7 280.94C303.32 286.26 294.8 291.51 285.88 296.48C279.45 300.07 273.02 303.39 266.6 306.63C279.3400000000001 310.45 291.5200000000001 313.31 303.17 315.43A363.1 363.1 0 0 0 311.7 280.94zM224 416C248.07 416 273.52 389.9700000000001 292.2 346.03C270.49 341.7200000000001 247.52 334.87 224.01 325.68C200.49 334.87 177.52 341.74 155.8 346.05C174.48 389.98 199.93 416 224 416zM144.83 315.43C156.48 313.31 168.66 310.4600000000001 181.39 306.63C174.97 303.39 168.54 300.07 162.12 296.48C153.2 291.51 144.68 286.26 136.3 280.94A363.1 363.1 0 0 0 144.83 315.43zM136.3 103.06C144.68 97.74 153.2 92.49 162.12 87.52C168.84 83.77 175.5 81.03 182.21 77.66C169.21 73.73 156.72 70.7 144.84 68.53C141.6 79.36 138.69 90.83 136.3 103.06zM224 -32C199.84 -32 174.28 -5.77 155.58 38.48C177.4 42.77 200.35 49.57 224 58.8C247.65 49.56 270.6 42.77 292.42 38.48C273.7200000000001 -5.77 248.16 -32 224 -32zM303.17 68.54C291.3 70.7000000000001 278.82 73.73 265.82 77.66C272.52 81.03 279.18 83.77 285.89 87.5100000000001C294.81 92.4800000000001 303.33 97.7300000000001 311.71 103.0500000000001C309.31 90.8400000000001 306.41 79.3800000000001 303.17 68.5400000000001zM317.86 145.93C303.1 135.21 287.2700000000001 124.9 270.32 115.45C254.62 106.69 239.15 99.26 224.02 92.85C208.88 99.26 193.4 106.6899999999999 177.68 115.45C160.73 124.91 144.9 135.21 130.14 145.93C128.75 160.65 127.98 176.01 127.98 192S128.75 223.35 130.14 238.07C144.9 248.79 160.73 259.1 177.68 268.55C193.37 277.3 208.87 284.83 223.99 291.24C239.12 284.83 254.62 277.3 270.32 268.55C287.27 259.09 303.1 248.79 317.86 238.07C319.24 223.35 320.0200000000001 207.99 320.0200000000001 192S319.2400000000001 160.65 317.86 145.93zM345.93 319.77C378.3400000000001 319.77 401.85 311.25 411.1 295.79C416.63 286.49 417.54 274.54 413.69 260.29C410.01 246.57 402.09 231.89 391.38 216.99C378.73 230.16 364.08 243.04 348.06 255.44C345.26 278.16 341.04 299.6 335.49 319.32C339 319.5 342.6 319.77 345.93 319.77zM351.56 210.73C358.4100000000001 204.53 364.7800000000001 198.29 370.69 192C364.78 185.71 358.4100000000001 179.47 351.56 173.2700000000001C351.77 179.48 352.02 185.66 352.02 192S351.78 204.5200000000001 351.56 210.73zM411.06 88.22C400.9 71.15 373.21 62.68 335.4700000000001 64.65C341.0300000000001 84.39 345.25 105.84 348.05 128.5700000000001C364.0800000000001 140.97 378.7200000000001 153.85 391.37 167.0200000000001C402.08 152.1200000000001 410.01 137.4400000000001 413.68 123.72C417.5300000000001 109.47 416.63 97.52 411.06 88.22z" />
+    <glyph glyph-name="audio-description"
+      unicode="&#xF29E;"
+      horiz-adv-x="512" d=" M464 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V336C512 362.51 490.51 384 464 384zM480 48C480 39.178 472.822 32 464 32H48C39.178 32 32 39.178 32 48V336C32 344.822 39.178 352 48 352H464C472.822 352 480 344.822 480 336V48zM186.589 145.217H119.254L105.746 104.243A11.999000000000002 11.999000000000002 0 0 0 94.35 96H84.01C75.734 96 69.943 104.18 72.691 111.986L131.846 279.986A12 12 0 0 0 143.165 288.001H162.679A12 12 0 0 0 173.998 279.986L233.153 111.986C235.902 104.18 230.11 96 221.834 96H211.494C206.314 96 201.719 99.324 200.097 104.243L186.589 145.217zM152.787 254.738S148.46 235.808 144.674 224.992L127.638 173.612H177.936L160.899 224.992C157.384 235.809 153.328 254.738 153.328 254.738H152.787zM263.385 276C263.385 282.627 268.758 288 275.385 288H328.828C388.05 288 426.721 252.845 426.721 192.27C426.721 131.696 388.051 96 328.828 96H275.385C268.758 96 263.385 101.373 263.385 108V276zM326.934 126.017C365.875 126.017 390.753 149.003 390.753 192.27C390.753 234.997 365.334 257.983 326.934 257.983H298.27V126.017H326.934z" />
+    <glyph glyph-name="award"
+      unicode="&#xF559;"
+      horiz-adv-x="384" d=" M192 352.05C139.07 352.05 96 308.98 96 256.05S139.07 160.05 192 160.05S288 203.12 288 256.05S244.94 352.05 192 352.05zM192 192.05C156.71 192.05 128 220.76 128 256.05S156.71 320.05 192 320.05S256 291.3400000000001 256 256.05S227.29 192.05 192 192.05zM367.63 175.67C381.69 189.98 387.22 211 382.1 230.5300000000001C375.7100000000001 254.73 375.7100000000001 250.98 382.1 275.2200000000001C387.23 294.74 381.69 315.75 367.63 330.0800000000001C350.05 347.8 352.06 344.7700000000001 345.72 368.67C340.57 388.3 325.35 403.75 306 409.0100000000001C282.7 415.3300000000001 285.38 413.5900000000001 268.25 431.23C254.03 445.6500000000001 233.13 451.3100000000001 213.72 446.05C190.22 439.54 193.62 439.6400000000001 170.25 446.05C151 451.36 129.97 445.6500000000001 115.75 431.2000000000001C98.45 413.5300000000001 101.54 415.4300000000001 78.03 409.0100000000001C58.66 403.7500000000001 43.44 388.3 38.28 368.6900000000001C31.92 344.6500000000001 33.9 347.8200000000001 16.37 330.0700000000001C2.31 315.75 -3.22 294.73 1.91 275.2C8.3 251.03 8.3 254.78 1.91 230.51C-3.22 210.99 2.32 189.98 16.38 175.65C33.96 157.93 31.95 160.96 38.29 137.06C40.3 129.42 44.2 122.6999999999999 48.91 116.68L1.2 -0.7C-3.11 -11.27 4.71 -22.74 15.99 -22.74C16.54 -22.74 13.08 -22.86 69.31 -20.71L105.56 -59C108.78 -62.4 112.98 -64 117.14 -64C123.31 -64 129.37 -60.47 132 -54.04L184.45 74.99A23.345999999999997 23.345999999999997 0 0 0 199.56 75L252 -54.04C254.62 -60.47 260.69 -64 266.86 -64C271.0200000000001 -64 275.2200000000001 -62.4 278.44 -59L314.69 -20.72C370.92 -22.87 367.46 -22.75 368.01 -22.75C379.29 -22.75 387.11 -11.28 382.8 -0.71L335.1 116.66C339.81 122.68 343.7100000000001 129.4 345.7200000000001 137.03C352.0800000000001 161.09 350.1 157.92 367.6300000000001 175.67zM111.72 -18.95C89.13 4.91 95.16 -1.46 82.59 11.82C64.29 11.12 73.14 11.46 40.18 10.19L75.73 97.67C76.52 97.41 77.2 96.92 78.01 96.7C99.88 90.84 98.47 92.1 109.6 80.79C119.54 70.65 132.39 65.22 145.56 64.29L111.72 -18.95zM343.8300000000001 10.2C310.9200000000001 11.46 319.7000000000001 11.12 301.4200000000001 11.82C288.8600000000001 -1.45 294.8800000000001 4.91 272.2900000000001 -18.95L238.3900000000001 64.4500000000001C251.6000000000001 65.3600000000001 264.4500000000001 70.66 274.4100000000001 80.8000000000001C285.8200000000001 92.4100000000001 284.2400000000001 90.9900000000001 306.0000000000001 96.7100000000001C306.8100000000001 96.9300000000001 307.4900000000001 97.4200000000001 308.2800000000001 97.6700000000001L343.8300000000001 10.2zM314.7800000000001 145.19C312.5300000000001 136.61 305.9400000000001 129.86 297.5600000000001 127.58C273.9400000000001 121.33 269.1700000000001 121.13 251.5900000000001 103.21C243.5900000000001 95.1 231.4000000000001 93.6 221.8400000000001 99.73C203.7100000000001 111.17 180.2800000000001 111.18 162.1500000000001 99.71C152.6500000000001 93.68 140.4000000000001 95.09 132.4000000000001 103.23C115.0200000000001 120.91 110.2800000000001 121.18 86.4300000000001 127.59C78.0500000000001 129.87 71.4600000000001 136.62 69.2100000000001 145.21C61.1500000000001 175.84 61.6800000000001 175.4 39.1800000000001 198.08C32.9900000000001 204.39 30.5500000000001 213.7 32.8400000000001 222.39C40.9900000000001 252.86 41.0400000000001 252.87 32.8400000000001 283.34C30.5600000000001 292.03 33.0000000000001 301.34 39.1800000000001 307.64C61.6000000000001 330.34 61.1200000000001 329.7 69.2100000000001 360.55C71.4600000000001 369.13 78.0500000000001 375.88 86.4300000000001 378.14C117.2200000000001 386.55 116.1100000000001 385.94 138.5600000000001 408.76C143.7600000000001 414.07 152.3800000000001 417.72 161.8400000000001 415.17C192.3000000000001 406.79 191.6900000000001 406.77 222.1200000000001 415.17C230.3100000000001 417.44 239.3100000000001 414.98 245.4300000000001 408.8C267.7200000000001 385.93 267.3000000000001 386.36 297.5900000000001 378.14C305.93 375.87 312.5300000000001 369.12 314.7800000000001 360.53C322.8400000000001 329.9 322.31 330.34 344.8100000000001 307.66C351.0000000000001 301.35 353.4400000000001 292.04 351.1500000000001 283.35C342.9600000000001 252.83 342.99 252.81 351.1500000000001 222.4C353.43 213.71 350.99 204.4 344.8100000000001 198.1C322.4000000000001 175.39 322.8700000000001 176.04 314.7800000000001 145.19z" />
+    <glyph glyph-name="axe-battle"
+      unicode="&#xF6B3;"
+      horiz-adv-x="512" d=" M512 287.0800000000001C505.23 348.85 476.88 403.71 437.8 443.3C434.62 446.52 430.7700000000001 448 426.99 448C419.92 448 413.04 442.86 411 434.34C397.67 378.8 355.74 336.9 304 329.56V368C304 376.8400000000001 296.84 384 288 384H224C215.16 384 208 376.8400000000001 208 368V329.56C156.26 336.91 114.33 378.8 101 434.3400000000001C98.96 442.86 92.08 448 85.01 448C81.22 448 77.38 446.52 74.2 443.3C28.67 397.17 0 330.38 0 256C0 181.62 28.67 114.8300000000001 74.2 68.7C77.38 65.47 81.23 64 85.01 64C92.08 64 98.96 69.14 101 77.66C114.33 133.2000000000001 156.26 175.1 208 182.4400000000001V-48C208 -56.84 215.16 -64 224 -64H288C296.84 -64 304 -56.84 304 -48V182.44C355.74 175.09 397.67 133.2 411 77.66C413.04 69.14 419.92 63.9999999999999 426.99 63.9999999999999C430.7800000000001 63.9999999999999 434.62 65.48 437.8 68.6999999999999C476.88 108.29 505.23 163.1499999999999 512 224.9199999999999L480 256L512 287.08zM78.65 112.44C48.76 152.17 32 203.08 32 256S48.76 359.83 78.65 399.56C85.58 382.55 117.18 310.13 208 297.23V214.76C117.18 201.87 85.59 129.4500000000001 78.65 112.4400000000001zM272 -32H240V352H272V-32zM457.04 233.71L476.33 213.84C469.95 176.27 455.11 141.35 433.36 112.43C426.42 129.44 394.8300000000001 201.86 304.01 214.7599999999999V297.2299999999999C394.83 310.13 426.42 382.55 433.36 399.56C455.11 370.64 469.95 335.7299999999999 476.33 298.1499999999999L457.04 278.2799999999999L435.4100000000001 256L457.04 233.71z" />
+    <glyph glyph-name="axe"
+      unicode="&#xF6B2;"
+      horiz-adv-x="640" d=" M525.74 288L478.47 335.27L502.6300000000001 359.43C515.1300000000001 371.93 515.1300000000001 392.19 502.6300000000001 404.69L468.69 438.63C462.44 444.88 454.25 448 446.06 448S429.68 444.88 423.43 438.63L399.27 414.4700000000001L375.12 438.63C368.87 444.88 360.68 448 352.49 448S336.11 444.88 329.86 438.63L233.37 342.14C220.87 329.64 220.87 309.38 233.37 296.89L257.5300000000001 272.73L9.37 24.57C-3.13 12.07 -3.13 -8.19 9.37 -20.69L43.31 -54.63C49.56 -60.88 57.75 -64 65.94 -64S82.32 -60.88 88.57 -54.63L336.73 193.53L384 146.26V32H416C539.71 32 640 132.29 640 256V288H525.74zM446.03 416H446.06L480 382.06L455.84 357.9L421.89 391.86L446.03 416zM65.94 -32L32 1.94L280.1600000000001 250.1L314.1 216.16L65.94 -32zM416 64V159.51L256 319.51L352.46 416H352.49L512.49 256H608C608 150.13 521.87 64 416 64z" />
+    <glyph glyph-name="baby-carriage"
+      unicode="&#xF77D;"
+      horiz-adv-x="512" d=" M504 352H464C437.5 352 416 330.5 416 304V256H280.8L174.3 423.5C166.3 436.1 153.1 444.7 138 447.2C123.2 449.7 108.2 446 96.8 436.9C35.3 387.7 0 316 0 240V224C0 156.8 40.3 97.8 101.3 63.5C99.5 63.6 97.8 64 96 64C60.7 64 32 35.3 32 0S60.7 -64 96 -64S160 -35.3 160 0C160 18.1 152.4 34.3 140.4 46C166.3 37.1 194.4 32 224 32S281.8 37 307.6 46C295.6 34.4 288 18.1 288 0C288 -35.3 316.7 -64 352 -64S416 -35.3 416 0S387.3 64 352 64C350.2 64 348.5 63.6 346.7 63.5C407.7 97.8 448 156.8 448 224V304C448 312.8 455.2 320 464 320H504C508.4 320 512 323.6 512 328V344C512 348.4 508.4 352 504 352zM116.8 411.9C122.7 416.6 129.4 416.3 132.7 415.7C138.9 414.7 144.2 411.3 147.3 406.4L242.9 256H32.6C37.2 316.2 67.3 372.3 116.8 411.9zM96 -32C78.4 -32 64 -17.6 64 0S78.4 32 96 32S128 17.6 128 0S113.6 -32 96 -32zM352 32C369.6 32 384 17.6 384 0S369.6 -32 352 -32S320 -17.6 320 0S334.4 32 352 32zM224 64C118.1 64 32 135.8 32 224H416C416 135.8 329.9 64 224 64z" />
+    <glyph glyph-name="baby"
+      unicode="&#xF77C;"
+      horiz-adv-x="384" d=" M374.2 287.7C356.8 312.9 322.2 319.8 296.3 302.2L259.9 277.2C230.5 257 173.9 242.9 124 277.2L87.6 302.2C61.9 319.8 27.2 313 9.8 287.7C-7.7 262.2 -1.2 227.3 24.2 209.8L60.6 184.9C71.5 177.4 83.4 170.8 96 165.1V142.5L41.7 86.3C22.5 68.4999999999999 18.2 39.9 31.7 16.9999999999999L70 -39.1C80.3 -54.5 97.9 -64 116.6 -64C126.6 -64 136.4 -61.3 145 -56.2C158 -48.5 197.3 -15.7 147 40.3L165.4 51.9C180.5 46.6 203.3 46.6 218.5 51.9L236.9 40.3C186.6 -15.7 225.9 -48.5 238.9 -56.2C247.5 -61.3 257.3 -64 267.3 -64C286 -64 303.5 -54.5 313.9000000000001 -39.1L352.2000000000001 17C365.7000000000001 39.9 361.3000000000001 68.5 342.2000000000001 86.3L288 142.5V165.1C300.6 170.7000000000001 312.4 177.4 323.4 184.9L359.8 209.8000000000001C385.2 227.3000000000001 391.7 262.3000000000001 374.2 287.7000000000001zM137.2 4.2C143.9 -7.2 140.1 -21.9 128.7 -28.7C124.9 -31 120.7 -32 116.5 -32C108.3 -32 100.3 -27.8 95.8 -20.2L59.2 33.2C53.2 43.4 55.5 56.5 64.7 64L103.5 105.2C104.2 104.4 104.5 103.4 105.2 102.6L140.4 67.4L111 39.7L137.2 4.2zM220.1 89.4C206.9 76.2 176.6 76.6 163.9 89.4L128 125.3V136H256V125.3L220.1 89.4zM319.2 64C328.4 56.5 330.7 43.4 324.7 33.2L288.1 -20.2C283.6 -27.8 275.6 -32 267.4 -32C263.3 -32 259.1 -30.9 255.2 -28.7C243.8 -22 240 -7.2 246.7 4.2L272.8 39.8L243.4 67.5L278.6 102.7C279.3 103.4 279.7000000000001 104.5 280.3 105.3L319.2 64zM341.6 236.2L305.3 211.3C289.9 200.8 273.3 192.8 256 186.9V168H128V186.9C110.7 192.8 94.1 200.7 78.7 211.3L42.4 236.2C16 254.4 43.6 293.5 69.6 275.8L105.9 250.9C153.1 218.5 223.2 213.2 278 250.9L314.3 275.8C340.4000000000001 293.5 368 254.4 341.6 236.2zM192 288C236.2 288 272 323.8 272 368S236.2 448 192 448S112 412.2 112 368S147.8 288 192 288zM192 416C218.5 416 240 394.5 240 368S218.5 320 192 320S144 341.5 144 368S165.5 416 192 416z" />
+    <glyph glyph-name="backpack"
+      unicode="&#xF5D4;"
+      horiz-adv-x="448" d=" M320 384H304V400C304 426.4700000000001 282.4700000000001 448 256 448H192C165.53 448 144 426.4700000000001 144 400V384H128C57.31 384 0 326.69 0 256V0C0 -35.35 28.65 -64 64 -64H384C419.35 -64 448 -35.35 448 0V256C448 326.69 390.69 384 320 384zM176 400C176 408.83 183.19 416 192 416H256C264.81 416 272 408.83 272 400V384H176V400zM336 -32H112V64H336V-32zM336 96H112V128C112 145.67 126.33 160 144 160H304C321.67 160 336 145.67 336 128V96zM416 0C416 -17.64 401.64 -32 384 -32H368V128C368 163.29 339.29 192 304 192H144C108.71 192 80 163.29 80 128V-32H64C46.36 -32 32 -17.64 32 0V256C32 308.94 75.06 352 128 352H320C372.94 352 416 308.94 416 256V0zM312 288H136C131.58 288 128 284.42 128 280V264C128 259.5800000000001 131.58 256 136 256H312C316.42 256 320 259.5800000000001 320 264V280C320 284.42 316.42 288 312 288z" />
+    <glyph glyph-name="backspace"
+      unicode="&#xF55A;"
+      horiz-adv-x="640" d=" M469.66 266.35L458.35 277.66C455.23 280.78 450.1600000000001 280.78 447.04 277.66L384 214.63L320.9700000000001 277.66C317.85 280.78 312.7800000000001 280.78 309.6600000000001 277.66L298.35 266.35C295.23 263.23 295.23 258.16 298.35 255.04L361.38 192L298.35 128.97C295.23 125.85 295.23 120.78 298.35 117.66L309.6600000000001 106.35C312.7800000000001 103.23 317.85 103.23 320.9700000000001 106.35L384 169.37L447.03 106.34C450.15 103.22 455.22 103.22 458.34 106.34L469.65 117.65C472.77 120.7700000000001 472.77 125.84 469.65 128.96L406.63 192L469.66 255.03A8.015 8.015 0 0 1 469.66 266.35zM576 384H205.26C188.28 384 172 377.26 160 365.26L9.37 214.63C-3.13 202.13 -3.13 181.87 9.37 169.38L160 18.75C172 6.75 188.28 0 205.25 0H576C611.35 0 640 28.65 640 64V320C640 355.35 611.35 384 576 384zM608 64C608 46.36 593.64 32 576 32H205.26C196.71 32 188.68 35.33 182.63 41.37L32 192L182.63 342.63C188.67 348.67 196.71 352 205.26 352H576C593.64 352 608 337.64 608 320V64z" />
+    <glyph glyph-name="backward"
+      unicode="&#xF04A;"
+      horiz-adv-x="512" d=" M267.5 166.9L459.5 7.5C480.1 -9.7 512 4.7 512 32.1V352C512 379.4 480.1 393.8 459.5 376.6L267.5 216C252.2 203.2 252.2 179.6 267.5 166.9zM288 191.4L480 352V32L288 191.4zM11.5 166.9L203.5 7.5C224.1 -9.7 256 4.7 256 32.1V352C256 379.4 224.1 393.8 203.5 376.6L11.5 216C-3.8 203.2 -3.8 179.6 11.5 166.9zM32 191.4L224 352V32L32 191.4z" />
+    <glyph glyph-name="badge-check"
+      unicode="&#xF336;"
+      horiz-adv-x="512" d=" M345.34 265.54A7.98 7.98 0 0 1 339.68 267.88C337.63 267.88 335.58 267.1 334.0199999999999 265.54L226.54 158.06L177.97 206.63A7.98 7.98 0 0 1 172.31 208.97C170.26 208.97 168.21 208.19 166.65 206.63L155.34 195.32C152.22 192.2 152.22 187.13 155.34 184.01L220.88 118.47C222.44 116.91 224.49 116.13 226.54 116.13S230.63 116.91 232.19 118.47L356.64 242.92C359.76 246.04 359.76 251.11 356.64 254.23L345.34 265.54zM512 192C512 227.5 492.6 260.2 462.4 277.5C471.5 311.1 462.1 347.9 437 373S375.1 407.5 341.5 398.4C324.2 428.6 291.5 448 256 448S187.8 428.6 170.5 398.4C136.9 407.5 100.1 398.1 75 373S40.5 311.1 49.6 277.5C19.4 260.2 0 227.5 0 192S19.4 123.8 49.6 106.5C40.5 72.9 49.9 36.1 75 11C101.5 -15.5 138.4 -23.1 170.5 -14.4C187.9 -44.6 220.5 -64 256 -64S324.1 -44.6 341.5 -14.4C374.2 -23.3 410.9 -15.1 437 11C462.1 36.1 471.5 72.9 462.4 106.5C492.6 123.8 512 156.5 512 192zM420.9 123.7C426.2 111.9 450.4 69.6 414.4 33.6C385.5 4.7 356.9 12.3 324.3 27.1C319.7 15 307 -32 256 -32C203.9 -32 191.3 17.5 187.7 27.1C155.1 12.3 126.4 4.9 97.6 33.6C60.8 70.3 86.7 114.1 91.1 123.7000000000001C79 128.3 32 141 32 192C32 244.1 81.5 256.7 91.1 260.3C85.8 272.1 61.6 314.4 97.6 350.4C134.4 387.3 178.4 361.1 187.7 356.9C192.3 369 205 416 256 416C308.1 416 320.7 366.5 324.3 356.9C336.1 362.2 378.4000000000001 386.4 414.4 350.4C451.2 313.7 425.3 269.9 420.9 260.3C433 255.7 480 243 480 192C480 139.9 430.5 127.3 420.9 123.7z" />
+    <glyph glyph-name="badge-dollar"
+      unicode="&#xF645;"
+      horiz-adv-x="512" d=" M289.94 198.95L230.88 215.81C222.13 218.33 216 226.42 216 235.51C216 246.81 225.19 255.99 236.47 255.99H273.38C281.62 255.99 289.46 253.43 296.01 248.67C299 246.5 303.23 247.21 305.85 249.83L317.27 261.25C320.77 264.75 320.21 270.47 316.28 273.48C304.02 282.89 289.1 287.99 273.38 287.99H272V311.99C272 316.41 268.42 319.99 264 319.99H248C243.58 319.99 240 316.41 240 311.99V287.99H236.47C205.88 287.99 181.34 261.69 184.23 230.51C186.29 208.35 203.29 190.39 224.68 184.29L281.12 168.18C289.87 165.66 296 157.5699999999999 296 148.48C296 137.18 286.81 128 275.53 128H238.62C230.38 128 222.54 130.56 215.99 135.3199999999999C213 137.49 208.77 136.7799999999999 206.15 134.1599999999999L194.73 122.7399999999999C191.23 119.2399999999999 191.79 113.5299999999999 195.72 110.5099999999999C207.98 101.0999999999999 222.9 95.9999999999999 238.62 95.9999999999999H240V71.9999999999999C240 67.5799999999999 243.58 63.9999999999999 248 63.9999999999999H264C268.42 63.9999999999999 272 67.5799999999999 272 71.9999999999999V95.9999999999999H273.36C296.17 95.9999999999999 317.69 109.5899999999999 325.0800000000001 131.1699999999999C335.23 160.8199999999999 317.8000000000001 190.9699999999999 289.9400000000001 198.9499999999999zM512 192C512 227.5 492.6 260.2 462.4 277.5C471.5 311.1 462.1 347.9 437 373S375.1 407.5 341.5 398.4C324.2 428.6 291.5 448 256 448S187.8 428.6 170.5 398.4C136.9 407.5 100.1 398.1 75 373S40.5 311.1 49.6 277.5C19.4 260.2 0 227.5 0 192S19.4 123.8 49.6 106.5C40.5 72.9 49.9 36.1 75 11C101.5 -15.5 138.4 -23.1 170.5 -14.4C187.9 -44.6 220.5 -64 256 -64S324.1 -44.6 341.5 -14.4C374.2 -23.3 410.9 -15.1 437 11C462.1 36.1 471.5 72.9 462.4 106.5C492.6 123.8 512 156.5 512 192zM420.9 123.7C426.2 111.9 450.4 69.6 414.4 33.6C385.5 4.7 356.9 12.3 324.3 27.1C319.7 15 307 -32 256 -32C203.9 -32 191.3 17.5 187.7 27.1C155.1 12.3 126.4 4.9 97.6 33.6C60.8 70.3 86.7 114.1 91.1 123.7000000000001C79 128.3 32 141 32 192C32 244.1 81.5 256.7 91.1 260.3C85.8 272.1 61.6 314.4 97.6 350.4C134.4 387.3 178.4 361.1 187.7 356.9C192.3 369 205 416 256 416C308.1 416 320.7 366.5 324.3 356.9C336.1 362.2 378.4000000000001 386.4 414.4 350.4C451.2 313.7 425.3 269.9 420.9 260.3C433 255.7 480 243 480 192C480 139.9 430.5 127.3 420.9 123.7z" />
+    <glyph glyph-name="badge-percent"
+      unicode="&#xF646;"
+      horiz-adv-x="512" d=" M349.6600000000001 274.35L338.35 285.66C335.23 288.78 330.1600000000001 288.78 327.04 285.66L162.34 120.97C159.22 117.85 159.22 112.78 162.34 109.66L173.65 98.35C176.7700000000001 95.23 181.84 95.23 184.96 98.35L349.6500000000001 263.04C352.7800000000001 266.1600000000001 352.7800000000001 271.2200000000001 349.6600000000001 274.35zM240 256C240 282.4700000000001 218.47 304 192 304S144 282.4700000000001 144 256S165.53 208 192 208S240 229.53 240 256zM176 256C176 264.8300000000001 183.19 272 192 272S208 264.8300000000001 208 256S200.81 240 192 240S176 247.17 176 256zM320 176C293.53 176 272 154.47 272 128S293.53 80 320 80S368 101.53 368 128S346.4700000000001 176 320 176zM320 112C311.19 112 304 119.17 304 128S311.19 144 320 144S336 136.83 336 128S328.81 112 320 112zM512 192C512 227.5 492.6 260.2 462.4 277.5C471.5 311.1 462.1 347.9 437 373S375.1 407.5 341.5 398.4C324.2 428.6 291.5 448 256 448S187.8 428.6 170.5 398.4C136.9 407.5 100.1 398.1 75 373S40.5 311.1 49.6 277.5C19.4 260.2 0 227.5 0 192S19.4 123.8 49.6 106.5C40.5 72.9 49.9 36.1 75 11C101.5 -15.5 138.4 -23.1 170.5 -14.4C187.9 -44.6 220.5 -64 256 -64S324.1 -44.6 341.5 -14.4C374.2 -23.3 410.9 -15.1 437 11C462.1 36.1 471.5 72.9 462.4 106.5C492.6 123.8 512 156.5 512 192zM420.9 123.7C426.2 111.9 450.4 69.6 414.4 33.6C385.5 4.7 356.9 12.3 324.3 27.1C319.7 15 307 -32 256 -32C203.9 -32 191.3 17.5 187.7 27.1C155.1 12.3 126.4 4.9 97.6 33.6C60.8 70.3 86.7 114.1 91.1 123.7000000000001C79 128.3 32 141 32 192C32 244.1 81.5 256.7 91.1 260.3C85.8 272.1 61.6 314.4 97.6 350.4C134.4 387.3 178.4 361.1 187.7 356.9C192.3 369 205 416 256 416C308.1 416 320.7 366.5 324.3 356.9C336.1 362.2 378.4000000000001 386.4 414.4 350.4C451.2 313.7 425.3 269.9 420.9 260.3C433 255.7 480 243 480 192C480 139.9 430.5 127.3 420.9 123.7z" />
+    <glyph glyph-name="badge"
+      unicode="&#xF335;"
+      horiz-adv-x="512" d=" M256 -64C220.5 -64 187.9 -44.6 170.5 -14.4C138.4 -23.1 101.5 -15.5 75 11C49.9 36.1 40.5 72.9 49.6 106.5C19.4 123.8 0 156.5 0 192S19.4 260.2 49.6 277.5C40.5 311.1 49.9 347.9 75 373C100.1 398.1 136.9 407.5 170.5 398.4C187.8 428.6 220.5 448 256 448S324.2 428.6 341.5 398.4C375.1 407.5 411.9 398.1 437 373C462.1 347.9 471.5 311.1 462.4 277.5C492.6 260.2 512 227.5 512 192S492.6 123.8 462.4 106.5C471.5 72.9 462.1 36.1 437 11C410.9 -15.1 374.2 -23.3 341.5 -14.4C324.1 -44.6 291.5 -64 256 -64zM187.7 27.1C191.3 17.5 203.9 -32 256 -32C307 -32 319.7 15 324.3 27.1C356.9000000000001 12.3 385.5 4.7 414.4 33.6C450.4 69.6 426.2 111.9 420.9 123.7000000000001C430.5 127.3000000000001 480 139.9 480 192.0000000000001C480 243.0000000000001 433 255.7000000000001 420.9 260.3000000000001C425.3 269.9000000000001 451.2 313.7000000000001 414.4 350.4000000000001C378.4 386.4000000000001 336.1 362.2000000000001 324.3 356.9000000000001C320.7 366.5 308.1 416 256 416C205 416 192.3 369 187.7 356.9C178.4 361.1 134.4 387.3 97.6 350.4C61.6 314.4 85.8 272.1 91.1 260.3C81.5 256.7 32 244.1 32 192C32 141 79 128.3 91.1 123.7C86.7 114.1 60.8 70.3 97.6 33.6C126.4 4.9 155.1 12.3 187.7 27.1z" />
+    <glyph glyph-name="badger-honey"
+      unicode="&#xF6B4;"
+      horiz-adv-x="640" d=" M622.25 305.45L619.52 307C597.03 319.74 575.56 334.08 554.37 348.88C498.76 387.75 466.42 383.89 465.45 383.89C446.4 383.89 427.36 378.68 409.98 368.68C392.8900000000001 358.85 374.06 351.9 354.9500000000001 351.9H128C57.31 351.9 0 294.61 0 223.94V207.95C0 199.11 7.16 191.95 16 191.95H36.03C38.65 180.71 45.85 145.37 90.12 112.3L66.34 59.84A31.97 31.97 0 0 1 66.22 36.07L91.52 -21.87A16.002 16.002 0 0 1 106.41 -32H183.15C194.78 -32 202.53 -19.97 197.71 -9.38L175.26 39.98L208.22 95.97H281.91L304.94 -19.14C306.44 -26.62 313 -32 320.63 -32H399.99C410.09 -32 417.66 -22.76 415.68 -12.87L388.69 122.05C434.01 152.55 490.0099999999999 183.2099999999999 541.1099999999999 197.71L560 159.95L582.75 205.44C636.14 209.89 640 269.37 640 272.64C640 286.58 633.12 299.3 622.25 305.45zM128 319.91H354.9600000000001C377.79 319.91 401.67 326.99 425.9500000000001 340.96C438.3900000000001 348.12 452.0600000000001 351.9 465.46 351.9C469.39 351.9 491.8700000000001 353.54 536.0500000000001 322.66C540.84 319.31 546.1 315.68 551.6400000000001 311.91H460C429.12 311.91 399.69 302.24 368.53 290.98L267.75 245.16C258.09 241.69 247.91 239.93 237.5 239.93H192C146.86 239.93 113.11 280.9700000000001 112.17 318.31C117.35 319.18 122.58 319.91 128 319.91zM353.13 136.69L380.48 -0.01H333.75L308.15 127.96H189.93L139.25 41.8800000000001L158.3 -0.0099999999999H117.31L96 47.8L129.07 123.15L109.27 137.93C89.1 153 74.36 168.49 67.2 199.21L61.43 223.93H32C32 259.8400000000001 52.07 290.8400000000001 81.36 307.29C88.13 253.13 136.63 207.93 192 207.93H237.5C251.62 207.93 265.44 210.32 279.78 215.54L380.56 261.36C407.75 271.14 434.28 279.92 459.9999999999999 279.92H480.41C477.8099999999999 276.54 475.9999999999999 272.51 475.9999999999999 267.92C475.9999999999999 256.88 484.9599999999999 247.93 495.9999999999999 247.93C507.05 247.93 516 256.88 516 267.92C516 272.51 514.19 276.54 511.59 279.92H602.47C606.0400000000001 277.89 608 277.37 608.01 272.9700000000001C602.74 199.19 586.59 293.7800000000001 353.13 136.6900000000001z" />
+    <glyph glyph-name="balance-scale-left"
+      unicode="&#xF515;"
+      horiz-adv-x="640" d=" M634.4 200.91L525.35 376.88C522.18 381.62 517.09 384 512 384S501.82 381.62 498.65 376.88L389.6 200.91C385.73 195.13 383.5100000000001 188.19 384.0900000000001 181.27C389.56 115.6 444.74 64 512 64S634.44 115.6 639.91 181.27C640.49 188.19 638.27 195.13 634.4 200.91zM512 96C470.42 96 434.45 123.13 421.2200000000001 160H602.4200000000001C589 122.77 553.28 96 512 96zM421.73 192L512.04 337.76L602.98 192H421.73zM536 -32H336V322.26C358.29 328.03 375.71 345.39 381.62 367.62L529.91 417.24C534.1 418.64 536.36 423.18 534.9599999999999 427.36L529.8799999999999 442.53C528.4799999999999 446.7200000000001 523.9399999999998 448.98 519.7599999999999 447.58L381.34 401.27C373.77 428.17 349.32 448 320 448C284.65 448 256 419.35 256 384C256 375.79 257.67 368.02 260.54 360.85L110.09 310.51C105.9 309.11 103.64 304.57 105.04 300.39L110.12 285.2200000000001C111.52 281.03 116.06 278.77 120.2400000000001 280.17L280.6900000000001 333.85C287.5100000000001 328.49 295.3600000000001 324.51 304.0100000000001 322.27V-56C304.0100000000001 -60.42 307.5900000000001 -64 312.0100000000001 -64H536.01C540.43 -64 544.01 -60.42 544.01 -56V-40C544 -35.58 540.42 -32 536 -32zM288 384C288 401.64 302.36 416 320 416S352 401.64 352 384S337.64 352 320 352S288 366.36 288 384zM141.35 248.88C138.18 253.63 133.09 256 128 256S117.82 253.62 114.65 248.88L5.6 72.91C1.73 67.1300000000001 -0.49 60.19 0.09 53.27C5.56 -12.4 60.74 -64 128 -64S250.44 -12.4 255.91 53.27C256.49 60.19 254.27 67.13 250.4 72.91L141.35 248.88zM128 -32C86.42 -32 50.45 -4.87 37.22 32H218.42C205 -5.23 169.28 -32 128 -32zM37.73 64L128.04 209.76L218.98 64H37.73z" />
+    <glyph glyph-name="balance-scale-right"
+      unicode="&#xF516;"
+      horiz-adv-x="640" d=" M634.4 72.91L525.35 248.88C522.1800000000001 253.63 517.09 256 512 256S501.82 253.62 498.65 248.88L389.6 72.91C385.73 67.1300000000001 383.5100000000001 60.19 384.0900000000001 53.27C389.56 -12.4 444.74 -64 512 -64C579.27 -64 634.45 -12.4 639.91 53.27C640.48 60.19 638.27 67.13 634.4 72.91zM511.96 209.76L602.27 64H421.02L511.96 209.76zM512 -32C470.72 -32 435 -5.23 421.58 32H602.78C589.55 -4.87 553.5799999999999 -32 512 -32zM529.89 285.21L534.97 300.38C536.37 304.57 534.11 309.1 529.9200000000001 310.5L379.46 360.85C382.33 368.02 384 375.79 384 384C384 419.35 355.35 448 320 448C290.68 448 266.23 428.17 258.66 401.27L120.24 447.58C116.05 448.98 111.52 446.7200000000001 110.12 442.53L105.04 427.36C103.64 423.17 105.9 418.64 110.09 417.24L258.38 367.62C264.29 345.39 281.71 328.04 304 322.26V-32H104C99.58 -32 96 -35.58 96 -40V-56C96 -60.42 99.58 -64 104 -64H328C332.42 -64 336 -60.42 336 -56V322.26C344.64 324.5 352.5 328.48 359.32 333.8400000000001L519.77 280.16C523.9499999999999 278.76 528.48 281.02 529.89 285.2100000000001zM320 352C302.36 352 288 366.36 288 384S302.36 416 320 416S352 401.64 352 384S337.64 352 320 352zM255.91 181.27C256.49 188.19 254.27 195.13 250.4 200.91L141.35 376.88C138.18 381.62 133.09 384 128 384S117.82 381.62 114.65 376.88L5.6 200.91C1.73 195.13 -0.49 188.19 0.09 181.27C5.56 115.6 60.74 64 128 64S250.44 115.6 255.91 181.27zM127.96 337.76L218.27 192H37.02L127.96 337.76zM37.58 160H218.78C205.55 123.13 169.58 96 128 96C86.72 96 51 122.77 37.58 160z" />
+    <glyph glyph-name="balance-scale"
+      unicode="&#xF24E;"
+      horiz-adv-x="640" d=" M634.4 168.91L525.35 344.88C522.18 349.62 517.09 352 512 352S501.82 349.62 498.65 344.88L389.6 168.91C385.73 163.1300000000001 383.5100000000001 156.19 384.0900000000001 149.2700000000001C389.56 83.6 444.74 32 512 32S634.44 83.6 639.91 149.27C640.49 156.19 638.27 163.13 634.4 168.91zM512 64C470.42 64 434.45 91.13 421.2200000000001 128H602.4200000000001C589 90.77 553.28 64 512 64zM421.73 160L512.04 305.76L602.98 160H421.73zM536 -32H336V322.26C363.56 329.4 384 354.2100000000001 384 384H536C540.42 384 544 387.58 544 392V408C544 412.42 540.42 416 536 416H374.89C374.74 416.26 370.52 427.11 355.78 437.07C345.57 443.9700000000001 333.25 448 320 448S294.43 443.9700000000001 284.2200000000001 437.07C269.48 427.11 265.2600000000001 416.26 265.11 416H104C99.58 416 96 412.42 96 408V392C96 387.58 99.58 384 104 384H256C256 354.2100000000001 276.44 329.4 304 322.26V-32H104C99.58 -32 96 -35.58 96 -40V-56C96 -60.42 99.58 -64 104 -64H536C540.42 -64 544 -60.42 544 -56V-40C544 -35.58 540.42 -32 536 -32zM288 384C288 401.67 302.33 416 320 416S352 401.67 352 384S337.67 352 320 352S288 366.33 288 384zM255.91 149.27C256.49 156.19 254.27 163.13 250.4 168.91L141.35 344.88C138.18 349.62 133.09 352 128 352S117.82 349.62 114.65 344.88L5.6 168.91C1.73 163.1300000000001 -0.49 156.19 0.09 149.2700000000001C5.56 83.6 60.74 32 128 32S250.44 83.6 255.91 149.27zM128.04 305.76L218.98 160H37.73L128.04 305.76zM37.22 128H218.42C205 90.77 169.28 64 128 64C86.42 64 50.45 91.13 37.22 128z" />
+    <glyph glyph-name="ball-pile"
+      unicode="&#xF77E;"
+      horiz-adv-x="576" d=" M480 128C469.6 128 459.7 125.9 450.3 122.8C468.5 140.3 480 164.7 480 192C480 245 437 288 384 288C373.6 288 363.7 285.9 354.3 282.8C372.6 300.3 384 324.8 384 352C384 405 341 448 288 448S192 405 192 352C192 324.8 203.4 300.3 221.7 282.8C212.3 285.9 202.5 288 192 288C139 288 96 245 96 192C96 164.8 107.4 140.3 125.7 122.8C116.3 125.9 106.5 128 96 128C43 128 0 85 0 32S43 -64 96 -64S192 -21 192 32C192 59.2 180.6 83.7 162.3 101.2C171.7 98.1 181.5 96 192 96S212.3 98.1 221.7 101.2C203.4 83.7 192 59.2 192 32C192 -21 235 -64 288 -64S384 -21 384 32C384 59.2 372.6 83.7 354.3 101.2C363.7 98.1 373.5 96 384 96S404.3 98.1 413.7 101.2C395.4 83.7 384 59.2 384 32C384 -21 427 -64 480 -64S576 -21 576 32S533 128 480 128zM96 -32C60.7 -32 32 -3.3 32 32S60.7 96 96 96S160 67.3 160 32S131.3 -32 96 -32zM288 416C323.3 416 352 387.3 352 352S323.3 288 288 288S224 316.7 224 352S252.7 416 288 416zM128 192C128 227.3 156.7 256 192 256S256 227.3 256 192S227.3 128 192 128S128 156.7 128 192zM288 -32C252.7 -32 224 -3.3 224 32S252.7 96 288 96S352 67.3 352 32S323.3 -32 288 -32zM288 128C277.6 128 267.7 125.9 258.3 122.8C276.5 140.3 288 164.7 288 192S276.6 243.7 258.3 261.2C267.7 258.1 277.5 256 288 256S308.3 258.1 317.7 261.2C299.4 243.7 288 219.2 288 192S299.4 140.3 317.7 122.8C308.3 125.9 298.4 128 288 128zM320 192C320 227.3 348.7 256 384 256S448 227.3 448 192S419.3 128 384 128S320 156.7 320 192zM480 -32C444.7 -32 416 -3.3 416 32S444.7 96 480 96S544 67.3 544 32S515.3 -32 480 -32z" />
+    <glyph glyph-name="ballot-check"
+      unicode="&#xF733;"
+      horiz-adv-x="448" d=" M112 16H144C161.7 16 176 30.4 176 48V80C176 97.6 161.7 112 144 112H112C94.3 112 80 97.6 80 80V48C80 30.4 94.3 16 112 16zM112 80H144V48H112V80zM112 272H144C161.7 272 176 286.4 176 304V336C176 353.6 161.7 368 144 368H112C94.3 368 80 353.6 80 336V304C80 286.4 94.3 272 112 272zM112 336H144V304H112V336zM416 448H32C14.3 448 0 433.6 0 416V-32C0 -49.6 14.3 -64 32 -64H416C433.7 -64 448 -49.6 448 -32V416C448 433.6 433.7 448 416 448zM416 -32H32V416H416V-32zM216 304H344C348.4 304 352 307.6 352 312V328C352 332.4 348.4 336 344 336H216C211.6 336 208 332.4 208 328V312C208 307.6 211.6 304 216 304zM216 176H344C348.4 176 352 179.6 352 184V200C352 204.4 348.4 208 344 208H216C211.6 208 208 204.4 208 200V184C208 179.6 211.6 176 216 176zM216 48H344C348.4 48 352 51.6 352 56V72C352 76.4 348.4 80 344 80H216C211.6 80 208 76.4 208 72V56C208 51.6 211.6 48 216 48zM118.6 161.6C120.7 159.5 124.1 159.5 126.2 161.6L190.4 225.2C192.5 227.3 192.5 230.7 190.4 232.8L177.8 245.5C175.7 247.6 172.3 247.6 170.2 245.5L122.6 198.3L102 219.2C99.9 221.3 96.5 221.3 94.4 219.2L81.7 206.6C79.6 204.5 79.6 201.1 81.7 199L118.6 161.6z" />
+    <glyph glyph-name="ballot"
+      unicode="&#xF732;"
+      horiz-adv-x="448" d=" M144 368H112C94.3 368 80 353.6 80 336V304C80 286.4 94.3 272 112 272H144C161.7 272 176 286.4 176 304V336C176 353.6 161.7 368 144 368zM144 304H112V336H144V304zM416 448H32C14.3 448 0 433.6 0 416V-32C0 -49.6 14.3 -64 32 -64H416C433.7 -64 448 -49.6 448 -32V416C448 433.6 433.7 448 416 448zM416 -32H32V416H416V-32zM344 208H216C211.6 208 208 204.4 208 200V184C208 179.6 211.6 176 216 176H344C348.4 176 352 179.6 352 184V200C352 204.4 348.4 208 344 208zM144 112H112C94.3 112 80 97.6 80 80V48C80 30.4 94.3 16 112 16H144C161.7 16 176 30.4 176 48V80C176 97.6 161.7 112 144 112zM144 48H112V80H144V48zM344 80H216C211.6 80 208 76.4 208 72V56C208 51.6 211.6 48 216 48H344C348.4 48 352 51.6 352 56V72C352 76.4 348.4 80 344 80zM344 336H216C211.6 336 208 332.4 208 328V312C208 307.6 211.6 304 216 304H344C348.4 304 352 307.6 352 312V328C352 332.4 348.4 336 344 336zM144 240H112C94.3 240 80 225.6 80 208V176C80 158.4 94.3 144 112 144H144C161.7 144 176 158.4 176 176V208C176 225.6 161.7 240 144 240zM144 176H112V208H144V176z" />
+    <glyph glyph-name="ban"
+      unicode="&#xF05E;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM103.265 39.265C22.643 119.887 19.116 248.222 92.365 333.008L397.009 28.365C312.2050000000001 -44.899 183.871 -41.341 103.265 39.265zM419.635 50.992L114.992 355.635C199.796 428.898 328.129 425.3400000000001 408.735 344.735C489.357 264.1140000000001 492.884 135.778 419.635 50.992z" />
+    <glyph glyph-name="band-aid"
+      unicode="&#xF462;"
+      horiz-adv-x="640" d=" M560 352H80C35.9 352 0 316.1 0 272V112C0 67.9 35.9 32 80 32H560C604.1 32 640 67.9 640 112V272C640 316.1 604.1 352 560 352zM160 64H80C53.5 64 32 85.5 32 112V272C32 298.5 53.5 320 80 320H160V64zM448 64H192V320H448V64zM608 112C608 85.5 586.5 64 560 64H480V320H560C586.5 320 608 298.5 608 272V112zM272 220C283 220 292 229 292 240S283 260 272 260S252 251 252 240S261 220 272 220zM368 220C379 220 388 229 388 240S379 260 368 260S348 251 348 240S357 220 368 220zM272 124C283 124 292 133 292 144S283 164 272 164S252 155 252 144S261 124 272 124zM368 124C379 124 388 133 388 144S379 164 368 164S348 155 348 144S357 124 368 124z" />
+    <glyph glyph-name="barcode-alt"
+      unicode="&#xF463;"
+      horiz-adv-x="640" d=" M280 352H264C259.6 352 256 348.4 256 344V40C256 35.6 259.6 32 264 32H280C284.4 32 288 35.6 288 40V344C288 348.4 284.4 352 280 352zM216 352H200C195.6 352 192 348.4 192 344V40C192 35.6 195.6 32 200 32H216C220.4 32 224 35.6 224 40V344C224 348.4 220.4 352 216 352zM592 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V400C640 426.5 618.5 448 592 448zM608 -16C608 -24.8 600.8 -32 592 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H592C600.8 416 608 408.8 608 400V-16zM152 352H104C99.6 352 96 348.4 96 344V40C96 35.6 99.6 32 104 32H152C156.4 32 160 35.6 160 40V344C160 348.4 156.4 352 152 352zM536 352H488C483.6 352 480 348.4 480 344V40C480 35.6 483.6 32 488 32H536C540.4 32 544 35.6 544 40V344C544 348.4 540.4 352 536 352zM408 352H360C355.6 352 352 348.4 352 344V40C352 35.6 355.6 32 360 32H408C412.4 32 416 35.6 416 40V344C416 348.4 412.4 352 408 352z" />
+    <glyph glyph-name="barcode-read"
+      unicode="&#xF464;"
+      horiz-adv-x="640" d=" M152 448H8C3.6 448 0 444.4 0 440V288C0 283.6 3.6 280 8 280H24C28.4 280 32 283.6 32 288V416H152C156.4 416 160 419.6 160 424V440C160 444.4 156.4 448 152 448zM152 -32H32V96C32 100.4 28.4 104 24 104H8C3.6 104 0 100.4 0 96V-56C0 -60.4 3.6 -64 8 -64H152C156.4 -64 160 -60.4 160 -56V-40C160 -35.6 156.4 -32 152 -32zM632 448H488C483.6 448 480 444.4 480 440V424C480 419.6 483.6 416 488 416H608V288C608 283.6 611.6 280 616 280H632C636.4 280 640 283.6 640 288V440C640 444.4 636.4 448 632 448zM632 104H616C611.6 104 608 100.4 608 96V-32H488C483.6 -32 480 -35.6 480 -40V-56C480 -60.4 483.6 -64 488 -64H632C636.4 -64 640 -60.4 640 -56V96C640 100.4 636.4 104 632 104zM152 352H104C99.6 352 96 348.4 96 344V40C96 35.6 99.6 32 104 32H152C156.4 32 160 35.6 160 40V344C160 348.4 156.4 352 152 352zM488 32H536C540.4 32 544 35.6 544 40V344C544 348.4 540.4 352 536 352H488C483.6 352 480 348.4 480 344V40C480 35.6 483.6 32 488 32zM408 352H360C355.6 352 352 348.4 352 344V40C352 35.6 355.6 32 360 32H408C412.4 32 416 35.6 416 40V344C416 348.4 412.4 352 408 352zM216 352H200C195.6 352 192 348.4 192 344V40C192 35.6 195.6 32 200 32H216C220.4 32 224 35.6 224 40V344C224 348.4 220.4 352 216 352zM280 352H264C259.6 352 256 348.4 256 344V40C256 35.6 259.6 32 264 32H280C284.4 32 288 35.6 288 40V344C288 348.4 284.4 352 280 352z" />
+    <glyph glyph-name="barcode-scan"
+      unicode="&#xF465;"
+      horiz-adv-x="640" d=" M160 440C160 444.4 156.4 448 152 448H72C67.6 448 64 444.4 64 440V288H160V440zM288 440C288 444.4 284.4 448 280 448H232C227.6 448 224 444.4 224 440V288H288V440zM384 440C384 444.4 380.4 448 376 448H360C355.6 448 352 444.4 352 440V288H384V440zM480 440C480 444.4 476.4 448 472 448H424C419.6 448 416 444.4 416 440V288H480V440zM576 440C576 444.4 572.4 448 568 448H520C515.6 448 512 444.4 512 440V288H576V440zM416 -56C416 -60.4 419.6 -64 424 -64H472C476.4 -64 480 -60.4 480 -56V96H416V-56zM352 -56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V96H352V-56zM64 -56C64 -60.4 67.6 -64 72 -64H152C156.4 -64 160 -60.4 160 -56V96H64V-56zM224 -56C224 -60.4 227.6 -64 232 -64H280C284.4 -64 288 -60.4 288 -56V96H224V-56zM512 -56C512 -60.4 515.6 -64 520 -64H568C572.4 -64 576 -60.4 576 -56V96H512V-56zM632 208H8C3.6 208 0 204.4 0 200V184C0 179.6 3.6 176 8 176H632C636.4 176 640 179.6 640 184V200C640 204.4 636.4 208 632 208z" />
+    <glyph glyph-name="barcode"
+      unicode="&#xF02A;"
+      horiz-adv-x="512" d=" M0 0V384H18V0H0zM26.857 0.273V384H36V0.273H26.857zM54 0.273V384H62.857V0.273H54zM98.857 0.273V384H107.714V0.273H98.857zM134.857 0.273V384H152.571V0.273H134.857zM179.714 0.273V384H188.571V0.273H179.714zM197.714 0.273V384H206.571V0.273H197.714zM215.714 0.273V384H224.571V0.273H215.714zM251.429 0.273V384H269.429V0.273H251.429zM296.286 0.273V384H314.286V0.273H296.286zM332.2850000000001 0.273V384H350.286V0.273H332.2850000000001zM368.286 0.273V384H386.287V0.273H368.286zM395.1430000000001 0.273V384H413.1430000000001V0.273H395.1430000000001zM440.2860000000001 0.273V384H467.143V0.273H440.2860000000001zM476.0000000000001 0.273V384H485.143V0.273H476zM494.0000000000001 0V384H512V0H494z" />
+    <glyph glyph-name="bars"
+      unicode="&#xF0C9;"
+      horiz-adv-x="448" d=" M442 334H6A6 6 0 0 0 0 340V364A6 6 0 0 0 6 370H442A6 6 0 0 0 448 364V340A6 6 0 0 0 442 334zM442 174H6A6 6 0 0 0 0 180V204A6 6 0 0 0 6 210H442A6 6 0 0 0 448 204V180A6 6 0 0 0 442 174zM442 14H6A6 6 0 0 0 0 20V44A6 6 0 0 0 6 50H442A6 6 0 0 0 448 44V20A6 6 0 0 0 442 14z" />
+    <glyph glyph-name="baseball-ball"
+      unicode="&#xF433;"
+      horiz-adv-x="496" d=" M248 440C111.2 440 0 328.8 0 192S111.2 -56 248 -56S496 55.2 496 192S384.8 440 248 440zM103.5 31.9C120.2 49.3 134.1 69.1 144.8 91L118 104C108.9 85.2 96.2 68.9 82 54C-3.6 156.8 36.7 275.5 82 330C96.2 315.1 108.8 298.8 118 280.2L144.8 293.3C134.2 315.1 120.3 334.8 103.6 352.2C182.7 423.6 306.7 429.8 392.6 352.3C375.9000000000001 334.9 362 315.2 351.4000000000001 293.3L378.2000000000001 280.3C387.3000000000001 299 399.9000000000001 315.3 414.2000000000001 330.3C492.3000000000001 236.6 468.8000000000001 119.9 414.3000000000001 54.4C400.0000000000001 69.3 387.4000000000001 85.6 378.3000000000001 104.3L351.5000000000001 91.1999999999999C362.2000000000001 69.3 376.0000000000001 49.5999999999999 392.8000000000001 32.3C302.8000000000001 -49.2 178.5000000000001 -35.9 103.5000000000001 31.9zM156.7 120.5L128.4 129.7C140.6 167.2 142.4 211.2 128.3 254.4L156.6 263.6C172.9 213.6 170.6 163.1999999999999 156.7 120.5zM367.7 129.7L339.4 120.5C323.1 170.5 325.4 221 339.3 263.6L367.6 254.4C355.4 216.8 353.7 172.8 367.7 129.7z" />
+    <glyph glyph-name="baseball"
+      unicode="&#xF432;"
+      horiz-adv-x="640" d=" M627.2 387.9L603.6 420.4C581 451.5 538.9 456.2 510 435.2L307.7 288.4C262.1 255.3 220.4 217.1 183.4 174.6C154.4 141.3 110.9 96 53.1 54L31.5 38.3C31.3 38.6 20.2 55.7 6 44.5C-0.9 39 -2 28.9 3.5 22L67.5 -58C72.7 -64.5 82.7 -66.2999999999999 90 -60.5C90.5 -60.1 102.9 -51 90.1 -35L108.3 -21.8C174.3 26.1 230.6 50.8 263.4 64.7C315.3 86.7 364.6 114.6 410.2 147.7L612.5 294.5C642.3 316.2 648.9 358 627.2 387.9zM70.1 -10L51.5 13.2C80.4 34.1 123.3 63.9 176.5 119.5L208.8 75.1C140.6 42.3 99.2 11.2 70.1 -10zM593.6 320.4C346.6 141.2 350.5 137.9 233.7000000000001 86.6L195 139.7C279.9 234.8 281.5 229.9 528.8 409.3C543.5999999999999 420 565.6999999999999 418 577.6999999999999 401.6L601.3 369.1C612.6999999999999 353.5 609.1999999999999 331.7000000000001 593.5999999999999 320.4zM496 96C451.9 96 416 60.1 416 16S451.9 -64 496 -64S576 -28.1 576 16S540.1 96 496 96zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32z" />
+    <glyph glyph-name="basketball-ball"
+      unicode="&#xF434;"
+      horiz-adv-x="496" d=" M423.4 367.4C326.7 464.1 169.2 464.1 72.5 367.4S-24.2 113.2000000000001 72.5 16.5C169.3 -80.2999999999999 326.7 -80.2 423.4 16.5C520.1999999999999 113.3 520.1999999999999 270.7 423.4 367.4zM241.2 -23.7C193.2 -22.2 145.6 -4.8 107.1 28.4L248 169.4L304.8 112.6C270.9000000000001 74.3 248.8 26.9 241.2 -23.7zM327.9 89.5L388.9 28.5C355.6 -0.2 315.7 -17.1 274.5 -22.1C281.9 19.2 300.3 57.7 327.9 89.5zM350.5 112.1C382.3 139.7000000000001 420.8 158.1 462.1 165.4C457 124.2000000000001 440.2000000000001 84.3000000000001 411.5 51L350.5 112.1zM463.7 198.8C413.1 191.2 365.7 169.1 327.4 135.3L270.6 192L411.5 332.9C444.8 294.4 462.2 246.8 463.7 198.8zM148.7 268.7000000000001C116.1 240.3 76.1 221.5 33.3 214.6C37.7 257.2000000000001 54.9 298.6 84.5 332.9000000000001L148.7 268.7000000000001zM107.1 355.6C141.4 385.2000000000001 182.8 402.3 225.4 406.8C218.5 364 199.7 324 171.3 291.4000000000001L107.1 355.6zM257.7 407.5C304.7 405.4000000000001 351.1 388.1 388.9 355.5L248 214.6L193.9 268.7C228.4 307.6 250.6 355.9 257.7 407.5zM32.5 182.3C84.1 189.5 132.4 211.7 171.3 246.1L225.4 192L84.4 51.1C51.9 88.9 34.6 135.2000000000001 32.5 182.3z" />
+    <glyph glyph-name="basketball-hoop"
+      unicode="&#xF435;"
+      horiz-adv-x="640" d=" M640 108.3C640 88.8 629.6 71.4 611.5 63.9L503.2 19.4L505.7 55.1L599.3 93.5C605.3 96 609.1999999999999 101.8 609.1999999999999 108.3V232C527.1 456 115.7 456.9 33.2 232V108.3C33.2 101.8 37.1 96 43.1 93.5L136.7 55.1L139.2 19.4L31 63.9C12.9 71.4 0 88.8 0 108.3L0.8 239.7C1.4 241.7 69.3 432 321.2 432S638.5 241.7 639.0999999999999 239.7C640.3 232.6 639.9999999999999 248.8 639.9999999999999 108.3zM462.4 -64L387 7.6L321.2 -64L255.4 7.6L180 -64L161.8 160H137.2C132.8 160 129.2 163.6 129.2 168V184C129.2 188.4 132.8 192 137.2 192H505.2C509.6 192 513.2 188.4 513.2 184V168C513.2 163.6 509.6 160 505.2 160H480.6L462.4 -64zM207.9 95.6L254.6 52L298.6 96L256.5 138.1L207.9 95.6zM321.2 118.6L362.6 160H279.8L321.2 118.6zM343.8 96L387.8 52L434.5 95.6L386 138.1L343.8 96zM448.5 160H409.5L446 128.1L448.5 160zM193.9 160L196.5 128.1L233 160H193.9zM232 29.4L202.1 57.3L206.4 3.8L232 29.4zM364.4 30.2L321.2 73.4L278 30.2L321.2 -10.1L364.4 30.2zM436 3.8L440.3 57.3L410.4000000000001 29.4L436.0000000000001 3.8zM465.2 224V313.9H177.2V224H209.2V281.9H433.2V224H465.2z" />
+    <glyph glyph-name="bat"
+      unicode="&#xF6B5;"
+      horiz-adv-x="640" d=" M638.61 160.75L568.3 318.3C562.8199999999999 330.57 550.4499999999999 337.7000000000001 537.63 337.7000000000001C531.82 337.7000000000001 525.93 336.24 520.53 333.13L415.63 272.6900000000001L384 384L333.89 336H306.12L256 384L224.38 272.7L119.48 333.14C114.08 336.25 108.18 337.71 102.38 337.71C89.55 337.71 77.18 330.58 71.71 318.31L1.39 160.75C-4.27 148.06 8.33 134.9 21.97 139.27L38.45 144.54A69.132 69.132 0 0 0 59.52 147.83C81.35 147.83 102.37 137.5 114.98 119.32L153.39 64L165.7 75.82C178.81 88.41 195.84 94.57 212.79 94.57C232.92 94.57 252.94 85.88 266.15 68.97L320 0L373.86 68.97C387.07 85.8800000000001 407.0900000000001 94.5700000000001 427.2200000000001 94.5700000000001C444.17 94.5700000000001 461.2 88.41 474.3100000000001 75.8200000000001L486.6100000000001 64.0000000000001L525.0200000000001 119.3300000000001C537.6300000000001 137.5000000000001 558.6500000000001 147.84 580.4800000000001 147.84C587.5000000000001 147.84 594.6100000000001 146.7700000000001 601.5500000000002 144.55L618.0300000000002 139.28C631.6700000000002 134.9 644.2700000000002 148.06 638.6100000000002 160.75zM580.48 179.83C546.98 179.83 515.88 163.85 497.29 137.07L479.97 112.12C464.28 121.53 446.1500000000001 126.56 427.2100000000001 126.56C395.42 126.56 366.2500000000001 112.56 347.2000000000001 88.16L320 53.33L292.8 88.16C273.74 112.56 244.58 126.56 212.78 126.56C193.84 126.56 175.71 121.53 160.0200000000001 112.12L142.7000000000001 137.0699999999999C124.1100000000001 163.8399999999999 93.02 179.8299999999999 59.5100000000001 179.8299999999999C54.8900000000001 179.8299999999999 50.3000000000001 179.5199999999999 45.7400000000001 178.9099999999999L102.3200000000001 305.69L245.7900000000001 223.0299999999999L271.8400000000001 323.0899999999999L292.8300000000001 303.9899999999999H347.1600000000001L368.1500000000001 323.0899999999999L394.2000000000001 223.0299999999999L537.6700000000001 305.69L594.2500000000001 178.9099999999999C589.7000000000002 179.5299999999999 585.1000000000001 179.8299999999999 580.4800000000001 179.8299999999999z" />
+    <glyph glyph-name="bath"
+      unicode="&#xF2CD;"
+      horiz-adv-x="512" d=" M500 192H64V344C64 366.056 81.944 384 104 384C120.819 384 135.237 373.56 141.14 358.825C122.899 334.973 123.699 301.141 143.56 278.18C139.766 274.386 139.766 268.2340000000001 143.56 264.44L152.44 255.56C156.234 251.766 162.386 251.766 166.18 255.56L256.44 345.82C260.234 349.6140000000001 260.234 355.766 256.44 359.56L247.56 368.44C243.766 372.234 237.614 372.234 233.82 368.44C215.002 384.717 188.878 388.2 166.933 378.885C154.635 400.997 131.047 416 104 416C64.299 416 32 383.701 32 344V192H12C5.373 192 0 186.627 0 180V172C0 165.373 5.373 160 12 160H32V96C32 67.57 44.362 42.031 64 24.453V-20C64 -26.627 69.373 -32 76 -32H84C90.627 -32 96 -26.627 96 -20V5.47A95.842 95.842 0 0 1 128 0H384A95.842 95.842 0 0 1 416 5.47V-20C416 -26.627 421.373 -32 428 -32H436C442.627 -32 448 -26.627 448 -20V24.453C467.638 42.031 480 67.57 480 96V160H500C506.627 160 512 165.373 512 172V180C512 186.627 506.627 192 500 192zM169.37 342.63C180.73 353.98 198.56 355 211.08 345.7L166.3 300.92C157 313.44 158.02 331.27 169.37 342.63zM448 96C448 60.71 419.29 32 384 32H128C92.71 32 64 60.71 64 96V160H448V96z" />
+    <glyph glyph-name="battery-bolt"
+      unicode="&#xF376;"
+      horiz-adv-x="640" d=" M640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H400.69L418.718 64H560C568.823 64 576 71.177 576 80V128H608V256H576V304C576 312.823 568.823 320 560 320H469.224C456.001 329.205 440.995 334.344 425.814 335.66L429.785 350.855C429.886 351.236 429.976 351.618 430.072 352H560C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264zM32 80V304C32 312.823 39.177 320 48 320H143.388L146.598 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H197.734C197.768 32.133 197.797 32.267 197.831 32.4L205.541 64H48C39.177 64 32 71.177 32 80zM454.616 225.511L321.664 -10.482C314.042 -24.12 299.81 -32 284.985 -32C257.69 -32 237.34 -6.099 244.38 20.684L278.374 160H222.004C197.264 160 177.854 181.313 180.192 205.964L197.444 377.964C199.487 399.528 217.595 416 239.255 416H342.812C370.468 416 390.523 389.728 383.375 363.108L363.745 288H417.953C449.985 288 470.241 253.472 454.616 225.511zM417.952 256H322.306L352.416 371.2L352.443 371.304L352.471 371.407C354.171 377.738 349.3930000000001 384 342.813 384H239.255A9.96 9.96 0 0 1 229.299 374.944L229.291 374.857L229.282 374.77L212.042 202.889C211.519 197.06 216.131 191.999 222.002 191.999H319.1190000000001L275.466 13.097L275.399 12.8220000000001L275.327 12.5480000000001C273.604 5.9930000000001 278.701 1e-13 284.983 1e-13C287.825 1e-13 291.615 1.347 293.727 5.128L293.754 5.176L293.781 5.224L426.69 241.14C430.383 247.774 425.57 256 417.952 256z" />
+    <glyph glyph-name="battery-empty"
+      unicode="&#xF244;"
+      horiz-adv-x="640" d=" M560 320C568.823 320 576 312.823 576 304V256H608V128H576V80C576 71.177 568.823 64 560 64H48C39.177 64 32 71.177 32 80V304C32 312.823 39.177 320 48 320H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352z" />
+    <glyph glyph-name="battery-full"
+      unicode="&#xF240;"
+      horiz-adv-x="640" d=" M560 320C568.823 320 576 312.823 576 304V256H608V128H576V80C576 71.177 568.823 64 560 64H48C39.177 64 32 71.177 32 80V304C32 312.823 39.177 320 48 320H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM128 134V250A6 6 0 0 1 122 256H102A6 6 0 0 1 96 250V134A6 6 0 0 1 102 128H122A6 6 0 0 1 128 134zM192 134V250A6 6 0 0 1 186 256H166A6 6 0 0 1 160 250V134A6 6 0 0 1 166 128H186A6 6 0 0 1 192 134zM256 134V250A6 6 0 0 1 250 256H230A6 6 0 0 1 224 250V134A6 6 0 0 1 230 128H250A6 6 0 0 1 256 134zM320 134V250A6 6 0 0 1 314 256H294A6 6 0 0 1 288 250V134A6 6 0 0 1 294 128H314A6 6 0 0 1 320 134zM384 134V250A6 6 0 0 1 378 256H358A6 6 0 0 1 352 250V134A6 6 0 0 1 358 128H378A6 6 0 0 1 384 134zM448 134V250A6 6 0 0 1 442 256H422A6 6 0 0 1 416 250V134A6 6 0 0 1 422 128H442A6 6 0 0 1 448 134zM512 134V250A6 6 0 0 1 506 256H486A6 6 0 0 1 480 250V134A6 6 0 0 1 486 128H506A6 6 0 0 1 512 134z" />
+    <glyph glyph-name="battery-half"
+      unicode="&#xF242;"
+      horiz-adv-x="640" d=" M560 320C568.823 320 576 312.823 576 304V256H608V128H576V80C576 71.177 568.823 64 560 64H48C39.177 64 32 71.177 32 80V304C32 312.823 39.177 320 48 320H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM128 134V250A6 6 0 0 1 122 256H102A6 6 0 0 1 96 250V134A6 6 0 0 1 102 128H122A6 6 0 0 1 128 134zM192 134V250A6 6 0 0 1 186 256H166A6 6 0 0 1 160 250V134A6 6 0 0 1 166 128H186A6 6 0 0 1 192 134zM256 134V250A6 6 0 0 1 250 256H230A6 6 0 0 1 224 250V134A6 6 0 0 1 230 128H250A6 6 0 0 1 256 134zM320 134V250A6 6 0 0 1 314 256H294A6 6 0 0 1 288 250V134A6 6 0 0 1 294 128H314A6 6 0 0 1 320 134z" />
+    <glyph glyph-name="battery-quarter"
+      unicode="&#xF243;"
+      horiz-adv-x="640" d=" M560 320C568.823 320 576 312.823 576 304V256H608V128H576V80C576 71.177 568.823 64 560 64H48C39.177 64 32 71.177 32 80V304C32 312.823 39.177 320 48 320H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM128 134V250A6 6 0 0 1 122 256H102A6 6 0 0 1 96 250V134A6 6 0 0 1 102 128H122A6 6 0 0 1 128 134zM192 134V250A6 6 0 0 1 186 256H166A6 6 0 0 1 160 250V134A6 6 0 0 1 166 128H186A6 6 0 0 1 192 134z" />
+    <glyph glyph-name="battery-slash"
+      unicode="&#xF377;"
+      horiz-adv-x="640" d=" M333.525 64L356.525 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H126.525L149.525 320H48C39.178 320 32 312.823 32 304V80C32 71.177 39.178 64 48 64H333.525zM640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H454.363L506.579 -40.648C510.449 -46.032 509.221 -53.532 503.838 -57.402L497.798 -61.743A11.95 11.95 0 0 0 490.802 -64A11.988 11.988 0 0 0 481.044 -59.001L133.421 424.648C129.551 430.032 130.779 437.532 136.162 441.402L142.202 445.743A11.95 11.95 0 0 0 149.198 448C152.932 448 156.611 446.264 158.956 443.001L224.363 352H560C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264zM608 256H576V304C576 312.823 568.822 320 560 320H247.363L431.363 64H560C568.822 64 576 71.177 576 80V128H608V256z" />
+    <glyph glyph-name="battery-three-quarters"
+      unicode="&#xF241;"
+      horiz-adv-x="640" d=" M560 320C568.823 320 576 312.823 576 304V256H608V128H576V80C576 71.177 568.823 64 560 64H48C39.177 64 32 71.177 32 80V304C32 312.823 39.177 320 48 320H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM128 134V250A6 6 0 0 1 122 256H102A6 6 0 0 1 96 250V134A6 6 0 0 1 102 128H122A6 6 0 0 1 128 134zM192 134V250A6 6 0 0 1 186 256H166A6 6 0 0 1 160 250V134A6 6 0 0 1 166 128H186A6 6 0 0 1 192 134zM256 134V250A6 6 0 0 1 250 256H230A6 6 0 0 1 224 250V134A6 6 0 0 1 230 128H250A6 6 0 0 1 256 134zM320 134V250A6 6 0 0 1 314 256H294A6 6 0 0 1 288 250V134A6 6 0 0 1 294 128H314A6 6 0 0 1 320 134zM384 134V250A6 6 0 0 1 378 256H358A6 6 0 0 1 352 250V134A6 6 0 0 1 358 128H378A6 6 0 0 1 384 134zM448 134V250A6 6 0 0 1 442 256H422A6 6 0 0 1 416 250V134A6 6 0 0 1 422 128H442A6 6 0 0 1 448 134z" />
+    <glyph glyph-name="bed"
+      unicode="&#xF236;"
+      horiz-adv-x="640" d=" M144 128C188.11 128 224 163.89 224 208S188.11 288 144 288S64 252.11 64 208S99.89 128 144 128zM144 256C170.47 256 192 234.47 192 208S170.47 160 144 160S96 181.53 96 208S117.53 256 144 256zM528 288H272C263.1600000000001 288 256 280.8400000000001 256 272V96H32V376C32 380.42 28.42 384 24 384H8C3.58 384 0 380.42 0 376V8C0 3.58 3.58 0 8 0H24C28.42 0 32 3.58 32 8V64H608V8C608 3.58 611.58 0 616 0H632C636.42 0 640 3.58 640 8V176C640 237.86 589.86 288 528 288zM608 96H288V256H528C572.11 256 608 220.11 608 176V96z" />
+    <glyph glyph-name="beer"
+      unicode="&#xF0FC;"
+      horiz-adv-x="448" d=" M384 352H352V368C352 394.51 330.51 416 304 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H304C330.51 -32 352 -10.51 352 16V38.112L412.621 68.423C434.443 79.334 448 101.269 448 125.666V288C448 323.29 419.29 352 384 352zM320 16C320 7.178 312.822 0 304 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H304C312.822 384 320 376.822 320 368V16zM416 125.666C416 113.467 409.222 102.5 398.311 97.044L352 73.888V320H384C401.645 320 416 305.645 416 288V125.666zM192 304V80C192 71.163 184.836 64 176 64S160 71.163 160 80V304C160 312.837 167.164 320 176 320S192 312.837 192 304zM128 304V80C128 71.163 120.836 64 112 64S96 71.163 96 80V304C96 312.837 103.164 320 112 320S128 312.837 128 304zM256 304V80C256 71.163 248.837 64 240 64S224 71.163 224 80V304C224 312.837 231.163 320 240 320S256 312.837 256 304z" />
+    <glyph glyph-name="bell-school-slash"
+      unicode="&#xF5D6;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM528 112C536.81 112 544 104.83 544 96C544 90.32 540.85 85.56 536.38 82.72L561.66 62.81C570.26 71.42 576 82.86 576 96C576 122.47 554.47 144 528 144C510.84 144 495.87 134.88 487.38 121.3L513.03 101.1C515.1899999999999 107.4 520.99 112 528 112zM272 416C369.05 416 448 337.05 448 240C448 213.36 441.88 188.17 431.23 165.52L456.88 145.32C471.52 173.73 480 205.82 480 240C480 354.87 386.87 448 272 448C220.19 448 172.92 428.94 136.5 397.6L162.23 377.3400000000001C192.36 401.4700000000001 230.49 416 272 416zM281.78 160.99L192.91 230.9700000000001C197.47 191.15 230.98 160 272 160C275.35 160 278.54 160.59 281.78 160.99zM242.44 314.18L276.23 287.57C295.49 285.86 311.34 272.92 317.3 255.23L350.87 228.8C351.3999999999999 232.49 352 236.17 352 240C352 284.11 316.11 320 272 320C261.54 320 251.6 317.85 242.44 314.18zM464 16H416V55.3L368.3 92.86C340.6 74.67 307.54 64 272 64C174.95 64 96 142.95 96 240C96 260.75 99.8 280.58 106.42 299.08L79.96 319.91C69.71 295.3 64 268.32 64 240C64 181.07 88.62 127.97 128 90.13V-32C128 -49.67 142.33 -64 160 -64H384C401.67 -64 416 -49.67 416 -32V-16H464C475.85 -16 486.94 -13.15 497.03 -8.51L465.57 16.26C465.02 16.25 464.55 16 464 16zM384 16V-32H160V64.91C192.35 44.18 230.72 32 272 32S351.65 44.18 384 64.91V16z" />
+    <glyph glyph-name="bell-school"
+      unicode="&#xF5D5;"
+      horiz-adv-x="512" d=" M208 320C163.89 320 128 284.11 128 240S163.89 160 208 160S288 195.89 288 240S252.11 320 208 320zM208 192C181.49 192 160 213.49 160 240S181.49 288 208 288S256 266.51 256 240S234.51 192 208 192zM464 144C437.53 144 416 122.47 416 96C416 75.85 428.51 58.63 446.15 51.52C440.62 31.12 422.13 16 400 16H352V90.12C391.38 127.97 416 181.06 416 240C416 354.88 322.88 448 208 448S0 354.88 0 240C0 181.07 24.62 127.97 64 90.12V-32C64 -49.67 78.33 -64 96 -64H320C337.67 -64 352 -49.67 352 -32V-16H400C439.51 -16 472.19 12.84 478.64 50.53C497.92 56.76 512 74.67 512 96C512 122.47 490.47 144 464 144zM320 -32H96V64.91C128.35 44.18 166.72 32 208 32S287.65 44.18 320 64.91V-32zM208 64C110.95 64 32 142.95 32 240S110.95 416 208 416S384 337.05 384 240S305.05 64 208 64zM464 80C455.19 80 448 87.17 448 96S455.19 112 464 112S480 104.83 480 96S472.81 80 464 80z" />
+    <glyph glyph-name="bell-slash"
+      unicode="&#xF1F6;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM320.01 384C390.77 384 448.04 329.48 448.04 262.1C448.04 198.86 457.47 160.55 473.08 132.57L543.76 76.91C544.46 90.27 539.52 103.53 529.38 113.2C501.42 139.82 480.04 167.68 480.04 262.11C480.04 341.7 416.65 406.61 336 414.46V432C336 440.84 328.84 448 320 448S304 440.84 304 432V414.44A161.711 161.711 0 0 1 192.47 353.52L217.13 334.1C240.44 364.23 277.6600000000001 384 320.01 384zM320.01 -32C302.35 -32 288.01 -17.62 288.01 0.03H256.01C256.01 -35.28 284.73 -64 320.01 -64S384.01 -35.28 384.01 0.03H352.01C352.01 -17.6300000000001 337.66 -32 320.01 -32zM144.01 64C129.78 64 122.67 80.47 132.69 90.01C163.88 119.71 186.57 152.96 191.03 232.45L159.82 257.03C159.01 166.98 138.04 139.29 110.62 113.19C96.66 99.8899999999999 92.24 79.78 99.37 61.9599999999999C106.65 43.7599999999999 124.17 31.9999999999999 144 31.9999999999999H445.58L404.94 63.9999999999999H144.01z" />
+    <glyph glyph-name="bell"
+      unicode="&#xF0F3;"
+      horiz-adv-x="448" d=" M224 -32C206.34 -32 192 -17.62 192 0.03H160C160 -35.28 188.72 -64 224 -64S288 -35.28 288 0.03H256C256 -17.62 241.66 -32 224 -32zM433.38 113.19C405.42 139.81 384.04 167.67 384.04 262.1C384.04 341.69 320.65 406.6 240 414.45V432C240 440.84 232.84 448 224 448S208 440.84 208 432V414.44C127.35 406.5900000000001 63.96 341.69 63.96 262.1C63.96 167.68 42.57 139.81 14.61 113.19C0.64 99.89 -3.77 79.78 3.36 61.96C10.64 43.76 28.16 32 48 32H400C419.84 32 437.36 43.77 444.64 61.97C451.77 79.79 447.35 99.89 433.38 113.1900000000001zM400 64H48C33.77 64 26.66 80.47 36.68 90.01C71.54 123.2 95.96 160.35 95.96 262.0900000000001C95.96 329.4700000000001 153.23 384 224 384C294.76 384 352.04 329.48 352.04 262.1C352.04 160.75 376.25 123.4 411.32 90.02C421.38 80.43 414.17 64 400 64z" />
+    <glyph glyph-name="bells"
+      unicode="&#xF77F;"
+      horiz-adv-x="640" d=" M638.4 134.1C636.3 140 632 145.3 625.5 148.6C604.5 159.4 567.2 173.5 538.1 253.6C537.3000000000001 255.8 523.4 294.1 522.7 296.2000000000001C503 350.4 451.8 384 397.4 384C382.3 384 366.9 381.4 351.8 375.9C348.2 374.6 345.2 372.6 341.8 371.1C327.6 387.1 309.7 400.1 288.3 407.9C273.3 413.4 257.8 416 242.7 416C188.2 416 137.1 382.4 117.4 328.2000000000001C116.6 326.1 102.8 287.8 102 285.6C72.8 205.5 35.6 191.3 14.6 180.6C8.1 177.3 3.8 172 1.7 166.1C-2.9 153.2000000000001 2.7 137.3 17.7 131.9L99.7 102.0000000000001C97.6 95.0000000000001 96.1 87.7000000000001 96.1 80.0000000000001C96.1 35.8000000000001 131.9 1e-13 176.1 1e-13C208.7 1e-13 236.6 19.6000000000001 249 47.7L291.1 32.4C288.3 25.9 283.6 17.6 287.7 6.4C292.6 -6.7 307.3 -14.9 322 -9.4999999999999L398 18.2C409.8 -11.1999999999999 438.5 -31.9 472.1 -31.9C516.3000000000001 -31.9 552.1 3.9 552.1 48.1C552.1 56.8 550.2 64.9 547.5 72.6L622.5 99.9C637.4 105.3 643 121.2000000000001 638.4 134.1zM176 32C149.5 32 128 53.5 128 80C128 83.9 128.6 87.5 129.5 91.1L218.4 58.7000000000001C210.6 43 194.7 32 176 32zM300.7 62.9L40.1 157.7C64.6 170.5 103.3 195.9 131.9 274.7C140.2 297.6 137 288.8 147.3 317.3C161.9 357.2 200.2 384 242.6 384C287.3 384 313.4 354.9 314.2 354.1C270.9 319.3 252 260.1 272 205C272.8 202.9 286.8 164.6 287.6 162.4C304.5 116 305 85.1 300.7000000000001 62.9zM472 0C452.3 0 435.9 12.2 428.6 29.3L517.9 61.8C519.1999999999999 57.4 520 52.8 520 48C520 21.5 498.5 0 472 0zM322.5 24.8C333.1 50.4 346.3 94.6 317.7 173.5C308.1 199.8 312.2 188.5 302.1 216.1C283 268.6 310.2 326.9 362.7 346C415.7 365.3 473.6 337.5 492.6 285.4C502.3 258.7000000000001 497.6 271.6 508 242.8C536.7 164 575.3 138.6 599.8 125.8L322.5 24.8z" />
+    <glyph glyph-name="bezier-curve"
+      unicode="&#xF55B;"
+      horiz-adv-x="640" d=" M576 272C611.35 272 640 300.65 640 336S611.35 400 576 400C546.21 400 521.4 379.56 514.26 352H400V384C400 401.67 385.67 416 368 416H272C254.33 416 240 401.67 240 384V352H125.74C118.6 379.56 93.79 400 64 400C28.65 400 0 371.35 0 336S28.65 272 64 272C93.79 272 118.6 292.44 125.74 320H238.55C157.94 288.49 103.42 214.21 97.28 128H64C46.33 128 32 113.67 32 96V0C32 -17.67 46.33 -32 64 -32H160C177.67 -32 192 -17.67 192 0V96C192 113.67 177.67 128 160 128H129.27C135.03 197.41 177.33 257.54 240.35 286.25C241.3100000000001 269.44 254.95 256 272 256H368C385.05 256 398.69 269.44 399.65 286.25C462.67 257.53 504.97 197.41 510.73 128H480C462.33 128 448 113.67 448 96V0C448 -17.67 462.33 -32 480 -32H576C593.67 -32 608 -17.67 608 0V96C608 113.67 593.67 128 576 128H542.73C536.6 214.21 482.0700000000001 288.49 401.4600000000001 320H514.27C521.4 292.44 546.21 272 576 272zM160 0H64V96H160V0zM64 304C46.36 304 32 318.36 32 336S46.36 368 64 368S96 353.64 96 336S81.64 304 64 304zM368 288H272V384H368V288zM576 0H480V96H576V0zM576 368C593.64 368 608 353.64 608 336S593.64 304 576 304S544 318.36 544 336S558.36 368 576 368z" />
+    <glyph glyph-name="bible"
+      unicode="&#xF647;"
+      horiz-adv-x="448" d=" M448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64zM152 224H192V120C192 106.77 202.78 96 216 96H264C277.2200000000001 96 288 106.77 288 120V224H328C341.2200000000001 224 352 234.77 352 248V296C352 309.23 341.2200000000001 320 328 320H288V360C288 373.23 277.2200000000001 384 264 384H216C202.78 384 192 373.23 192 360V320H152C138.78 320 128 309.23 128 296V248C128 234.77 138.78 224 152 224zM160 288H224V352H256V288H320V256H256V128H224V256H160V288z" />
+    <glyph glyph-name="bicycle"
+      unicode="&#xF206;"
+      horiz-adv-x="640" d=" M512.303 256C492.717 256.0470000000001 474.156 251.687 457.544 243.868L373.508 376.5610000000001A16 16 0 0 1 359.991 384H291.993C285.366 384 279.993 378.627 279.993 372V364C279.993 357.373 285.365 352 291.993 352H351.186L391.718 288H255.994V308C255.994 314.627 250.622 320 243.994 320H159.996C151.16 320 143.996 312.837 143.996 304S151.159 288 159.996 288H215.995L184.187 243.031C167.102 251.393 147.884 256.0660000000001 127.565 255.999C56.937 255.766 -0.001 198.63 0 128C0.001 57.308 57.307 0 127.997 0C187.638 0 237.752 40.793 251.961 96H303.992A16.001 16.001 0 0 1 317.0990000000001 102.824L417.8430000000001 246.748L430.5200000000001 226.73C402.1350000000001 203.281 384.0330000000001 167.827 383.9890000000001 128.143C383.9120000000001 58.1800000000001 440.8320000000001 0.644 510.7900000000001 0.005C581.349 -0.639 638.8910000000001 55.847 639.9830000000001 126C641.0820000000001 196.503 582.8130000000001 255.829 512.3030000000001 256zM127.997 32C75.064 32 31.999 75.065 31.999 128S75.063 224 127.997 224C141.304 224 153.986 221.276 165.518 216.361L98.89 121.176C91.47 110.577 99.083 96 111.997 96H218.503C205.296 58.752 169.715 32 127.997 32zM223.995 128H142.727L192.471 199.065C211.825 181.49 223.995 156.14 223.995 128zM295.663 128H255.9940000000001C255.9940000000001 167.04 238.511 201.992 210.954 225.47L232.325 256H385.26L295.663 128zM508.196 32.073C458.138 34.011 417.668 74.75 416.0420000000001 124.82C415.081 154.39 427.5750000000001 181.123 447.8520000000001 199.366L500.611 116.06C504.157 110.461 511.5700000000001 108.797 517.1690000000001 112.343L523.9270000000001 116.624C529.5260000000002 120.17 531.1900000000002 127.584 527.6440000000001 133.182L474.8590000000002 216.528C486.2860000000002 221.339 498.8310000000001 224.001 511.9870000000001 224.001C564.9200000000002 224.001 607.9850000000001 180.936 607.9850000000001 128.001C607.9860000000001 73.807 562.8490000000002 29.958 508.1960000000001 32.073z" />
+    <glyph glyph-name="binoculars"
+      unicode="&#xF1E5;"
+      horiz-adv-x="512" d=" M511.67 44C508.21 173.77 450.61 226.16 448.0800000000001 319.98C447.61 337.62 433.8100000000001 352 416.1600000000001 352H416V384C416 401.67 401.67 416 384 416H320C302.33 416 288 401.67 288 384V352H224V384C224 401.67 209.67 416 192 416H128C110.33 416 96 401.67 96 384V352H95.84C78.19 352 64.39 337.62 63.91 319.98C61.39 226.16 3.79 173.77 0.33 44L0 16C0 -10.51 21.49 -32 48 -32H176C202.51 -32 224 -10.51 224 16V160H288V16C288 -10.51 309.49 -32 336 -32H464C490.51 -32 512 -10.51 512 16L511.67 44zM320 384H384V352H320V384zM128 384H192V352H128V384zM192 16C192 7.18 184.82 0 176 0H48C39.18 0 32 7.18 32 16C32 16 32.94 57.26 33.48 64H192V16zM192 96H37.48C43.86 133.88 55.07 164.49 66.14 194.22C80.13 231.82 94.6 270.7 95.84 320H192V96zM224 192V320H288V192H224zM320 320H416.16L416.1 319.12C417.4 270.7 431.87 231.82 445.86 194.22C456.92 164.49 468.14 133.89 474.52 96H320V320zM480 16C480 7.18 472.82 0 464 0H336C327.18 0 320 7.18 320 16V64H478.52C479.06 57.26 480 16 480 16z" />
+    <glyph glyph-name="biohazard"
+      unicode="&#xF780;"
+      horiz-adv-x="576" d=" M288 207.9C270.3 207.9 256 193.6 256 175.9S270.3 143.9 288 143.9S320 158.2 320 175.9S305.7 207.9 288 207.9zM288.1 352C305.8 352 322.9000000000001 349.3 339 344.4C345.5 352.9 350.1 362.8 352.1 373.8C331.9000000000001 380.3 310.4000000000001 383.9 288.1 383.9C265.7000000000001 383.9 244.1 380.2 223.9 373.7C225.8000000000001 362.7 230.5000000000001 352.7 237.0000000000001 344.3C253.2 349.3 270.3 352 288.1 352zM168.7 47.1C140.2 73.5 120.5 109.3 114.3 149.5C113.9 149.5 113.5 149.7 113.1 149.7C102.7 149.7 92.4 146.8 83.1 141.8C90.8 95.8 113.5 54.9 146.1 24.4C155.8 30 163.3 38 168.7 47.1zM407.4 46.9C412.9 37.8 420.3 29.8 429.9 24.1C462.6 54.6 485.3 95.5 493 141.5C483.6 146.6 473.3 149.5 462.8 149.5C462.5 149.5 462.2 149.4 461.9 149.4C455.7 109.2 436.0000000000001 73.4 407.4000000000001 46.9zM574.7 171.4C560.9000000000001 211.7000000000001 533.5 245.5000000000001 497.5000000000001 266.7000000000001C485.3000000000001 273.9000000000001 471.9 279.5000000000001 457.4 283.4000000000001C460.9 297.3000000000001 462.6 310.8000000000001 462.6 324.2000000000001C462.6 366.4000000000001 447.5 407.4000000000001 420.2000000000001 439.7000000000001C412.9000000000001 448.3 400.5000000000001 450.6 390.5000000000001 444.9000000000001C380.8000000000001 439.3 376.4000000000001 427.5000000000001 379.9000000000001 417.0000000000001C383.6 405.7000000000001 385.4000000000001 395.5 385.4000000000001 385.9000000000001C385.4000000000001 331.2000000000001 341.8 286.6 288.1 286.6C234.4000000000001 286.6 190.8 331.1 190.8 385.9000000000001C190.8 395.5 192.6 405.7000000000001 196.2 416.9000000000001C199.7 427.6 195.3 439.4000000000001 185.5 444.9000000000001C175.7 450.5 163.3000000000001 448.4000000000001 155.9 439.7000000000001C128.5 407.4000000000001 113.4 366.4000000000001 113.4 324.2000000000001C113.4 310.8 115.1 297.3 118.6 283.4000000000001C104.1 279.4000000000001 90.7000000000001 273.8000000000001 78.5 266.7000000000001C42.5 245.6000000000001 15.1 211.7000000000001 1.3 171.4C-2.4 160.8 1.8 149.2000000000001 11.5 143.3C21.2 137.5 33.7 139.5 41.2 148.1C48.9 156.9 56.6 163.6 64.8 168.4C87.1 181.5000000000001 113.1 185.0000000000001 138 178.3C163.3000000000001 171.5 184.4 155.1 197.5 132.1C224.4 84.6 208.4 23.7 161.8 -3.7C153.6 -8.5 144.1 -12 132.8 -14.4C121.8 -16.7 114 -26.5 114.1 -37.8C114.2 -48.9999999999999 122.2 -58.6999999999999 133.2 -60.9C144.2 -63 155.3 -64.1 166.3 -64.1C196.7 -64.1 226.7 -56.1 253.2 -40.5C265.7000000000001 -33.2 277.3 -24 287.9000000000001 -13.2C298.6 -24.1 310.2000000000001 -33.2 322.6 -40.5C358.6 -61.7 401.2000000000001 -69 442.5 -60.9C453.6 -58.7999999999999 461.4 -49.3 461.6 -37.8C461.7 -26.4999999999999 453.8 -16.6999999999999 442.9000000000001 -14.4C431.5000000000001 -12 422.1 -8.5 413.9000000000001 -3.7C367.3 23.7 351.3 84.6 378.2000000000001 132.1C391.3000000000001 155.1 412.4000000000001 171.5 437.7000000000001 178.3C462.6 185 488.6 181.5 510.9 168.4C519.1 163.6 526.8000000000001 157.0000000000001 534.5 148.1C542 139.5 554.5 137.6 564.3 143.4C574.1999999999999 149.3 578.3 160.8 574.6999999999999 171.4zM429.6 209.2000000000001C395.9000000000001 200.2000000000001 367.9000000000001 178.4 350.6 147.9C315 85.3 336.3 4.9 397.8 -31.1999999999999C398 -31.3 398.1 -31.3999999999999 398.2 -31.3999999999999C377.4 -29.6999999999999 357.1 -23.3999999999999 338.9 -12.6999999999999C324.8 -4.3999999999999 311.9 7.0000000000001 300.5 21.1000000000001L288 36.5L275.5 21C264.1 6.9 251.2 -4.5 237.1 -12.8C218.9 -23.5 198.6 -29.8 177.8 -31.5C177.9 -31.4 178.1 -31.3 178.2 -31.3C239.8 4.9 261 85.2 225.5 147.8C208.2 178.3 180.1 200.1 146.4 209.1C135.4 212.1 124.2 213.5 113.2 213.5C90.9 213.5 68.9 207.6 49.1 196.1C61 213.6 76.5 228.3 94.7 239C108.6 247.1 123.9 252.6 141.6 255.7L160.1 258.9L154 276.7C148.3 293.4 145.4 308.9 145.4 324.2C145.4 345.3 150 366.1 158.7 385.1C159.1 313.1 216.9 254.6 288 254.6C359 254.6 416.9 313.1 417.3 385.1C426 366.1 430.6 345.3 430.6 324.2C430.6 309 427.8 293.5 422.1 276.7L416 259L434.5 255.8C452.2 252.7 467.5 247.3 481.4 239.1C499.6 228.4000000000001 515.1 213.7 527 196.2C497.3 213.4 462.7 218.1 429.6 209.2z" />
+    <glyph glyph-name="birthday-cake"
+      unicode="&#xF1FD;"
+      horiz-adv-x="448" d=" M96 352C78.25 352 64 366.25 64 384C64 415 96 407 96 448C108 448 128 418.5 128 392S113.75 352 96 352zM224 352C206.25 352 192 366.25 192 384C192 415 224 407 224 448C236 448 256 418.5 256 392S241.75 352 224 352zM352 352C334.25 352 320 366.25 320 384C320 415 352 407 352 448C364 448 384 418.5 384 392S369.75 352 352 352zM400 192H368V336H336V192H240V336H208V192H112V336H80V192H48C21.5 192 0 170.5 0 144V-64H448V144C448 170.5 426.5 192 400 192zM416 -32H32V40.043C48.222 49.522 55.928 64 74.75 64C102.701 64 106.003 32 149.5 32C192.343 32 196.717 64 224 64C252.148 64 255.201 32 298.75 32C342.107 32 345.517 64 373.5 64C391.988 64 399.745 49.525 416 40.045V-32zM416 80.374C406.374 88.248 394.783 96 373.5 96C330.07 96 326.675 64 298.75 64C271.055 64 267.296 96 224 96C181.158 96 176.782 64 149.5 64C121.352 64 118.298 96 74.75 96C53.287 96 41.649 88.226 32 80.342V144C32 152.822 39.178 160 48 160H400C408.822 160 416 152.822 416 144V80.374z" />
+    <glyph glyph-name="blanket"
+      unicode="&#xF498;"
+      horiz-adv-x="512" d=" M446.2 64H104C99.6 64 96 60.4 96 56V40C96 35.6 99.6 32 104 32H448C483.3 32 512 60.7 512 96V368C512 412.2 476.2 448 432 448H80C35.8 448 0 412.2 0 368V48C0 -13.9 50.1 -64 112 -64H504C508.4 -64 512 -60.4 512 -56V-40C512 -35.6 508.4 -32 504 -32H115.6C73.8 -32 36.5 -1.6 32.4 40C27.7 87.7 65.2 128 112 128H448C467.4 128 482.9 110.6 479.6 90.6C477 74.9 462.1 64 446.2000000000001 64zM448 160H112C80.6 160 52.4 147 32 126.1V368C32 394.5 53.5 416 80 416H432C458.5 416 480 394.5 480 368V151.1C470.5 156.6 459.7 160 448 160z" />
+    <glyph glyph-name="blender-phone"
+      unicode="&#xF6B6;"
+      horiz-adv-x="576" d=" M486.25 103.97L576 448H192L221.79 105.44C185.72 91.62 160 56.93 160 16V-32C160 -49.67 174.33 -64 192 -64H512C529.67 -64 544 -49.67 544 -32V16C544 55.4 520.21 89.18 486.25 103.97zM534.58 416L517.88 352H360C355.58 352 352 348.42 352 344V328C352 323.58 355.58 320 360 320H509.54L492.84 256H360C355.58 256 352 252.42 352 248V232C352 227.58 355.58 224 360 224H484.49L455.27 112H253.34L226.9 416H534.58zM512 -32H192V16C192 51.29 220.71 80 256 80H448C483.29 80 512 51.29 512 16V-32zM352 48C338.74 48 328 37.26 328 24C328 10.75 338.74 0 352 0S376 10.75 376 24C376 37.26 365.26 48 352 48zM176.43 130.92L152.81 188.89C147.65 201.61 134.75 209.7 120.62 208.22L92.09 205.42A180.1 180.1 0 0 0 92.06 306.48L120.62 303.68C134.34 302.2099999999999 147.62 310.24 152.78 322.9599999999999L176.44 380.98C182.16 395.07 176.88 411.07 163.88 419.03L127.84 441.12C108.43 453.01 82.93 449.14 67.31 431.68C-23.22 330.35 -22.31 178.27 69.37 77.96C77.68 68.85 90.37 64.02 103.18 64.02C111.77 64.02 120.4 66.19 127.74 70.69L163.83 92.85C176.87 100.83 182.15 116.8300000000001 176.43 130.92zM110.99 97.98C105.8 94.73 96.65 95.53 92.99 99.54C12.4 187.7 11.62 321.33 91.18 410.36C94.46 414.05 98.96 415.98 103.43 415.98C106.09 415.98 108.74 415.29 111.09 413.84L146.81 393.04L123.75 335.52L70.16 340.77L65.91 329.18C48.5 281.96 48.5 229.95 65.91 182.71L70.16 171.12L123.16 176.84L146.47 119.73L110.99 97.98z" />
+    <glyph glyph-name="blender"
+      unicode="&#xF517;"
+      horiz-adv-x="512" d=" M288 48C274.74 48 264 37.26 264 24C264 10.75 274.74 0 288 0S312 10.75 312 24C312 37.26 301.26 48 288 48zM422.25 103.97L512 448H48C21.53 448 0 426.4700000000001 0 400V240C0 213.53 21.53 192 48 192H150.26L157.79 105.44C121.72 91.62 96 56.93 96 16V-32C96 -49.67 110.33 -64 128 -64H448C465.67 -64 480 -49.67 480 -32V16C480 55.4 456.21 89.18 422.25 103.97zM48 224C39.19 224 32 231.17 32 240V400C32 408.83 39.19 416 48 416H130.78L147.48 224H48zM470.58 416L453.88 352H296C291.58 352 288 348.42 288 344V328C288 323.58 291.58 320 296 320H445.54L428.84 256H296C291.58 256 288 252.42 288 248V232C288 227.58 291.58 224 296 224H420.49L391.27 112H189.34L162.9 416H470.58zM448 -32H128V16C128 51.29 156.71 80 192 80H384C419.29 80 448 51.29 448 16V-32z" />
+    <glyph glyph-name="blind"
+      unicode="&#xF29D;"
+      horiz-adv-x="384" d=" M206.817 -41.959C210.151 -50.143 206.219 -59.48 198.037 -62.813C189.871 -66.1419999999999 180.522 -62.231 177.183 -54.033L110.14 110.524L125.689 157.172L206.817 -41.9589999999999zM102.663 326.469A4 4 0 0 0 109.225 331.046L222.158 169.134C225.973 163.666 233.465 162.392 238.866 166.158C244.222 169.8950000000001 245.662 177.39 241.842 182.866L121.842 354.866A11.978 11.978 0 0 1 112 359.996V360H80V359.987C76.706 359.986 73.426 358.65 71.057 356.002L0 276.5850000000001V176C0 169.373 5.373 164 12 164S24 169.373 24 176V267.415L72 321.0610000000001V122.596L16.821 -42.936C14.026 -51.319 18.557 -60.38 26.94 -63.174C35.321 -65.968 44.384 -61.439 47.178 -53.0549999999999L120 165.403V301.6130000000001L102.663 326.4690000000001zM383.3880000000001 -57.874L245.791 161.537A20.279 20.279 0 0 0 239.011 157.292L376.611 -62.124A4 4 0 1 1 383.388 -57.874zM96 448C73.909 448 56 430.091 56 408S73.909 368 96 368S136 385.909 136 408S118.091 448 96 448z" />
+    <glyph glyph-name="blog"
+      unicode="&#xF781;"
+      horiz-adv-x="512" d=" M200.3 448C195.8 448.1 192.1 444.4 192.1 439.9V424C192.1 419.6 195.6 416.2 200 416.1C352.8 412.3 476 288.8 480 136C480.1 131.6 483.6 128.1 487.9 128.1H503.9C508.4 128.1 512.1 131.8 512 136.3C507.7 306.2 370.2 443.7 200.3 448zM200.3 352C195.8 352.2 192.1 348.4 192.1 343.9V327.9C192.1 323.6 195.6 320.1 199.9 319.9C299.7000000000001 315.9 380.4000000000001 235.7 384.1 135.9C384.3 131.6 387.7000000000001 128.1 392.1 128.1H407.9000000000001C412.4000000000001 128.1 416.1 131.8 416.0000000000001 136.3C411.7000000000001 253.3 317.3000000000001 347.7 200.3000000000001 352zM121 192H112C103.2 192 96 184.8 96 176V160C96 151.2 103.2 144 112 144H122.9C169.9 144 210.9 105.6 207.8 58.7C205.2 18.8 173.2 -13.1 133.4 -15.8C86.4 -19 48 22 48 69.1V304C48 312.8 40.8 320 32 320H16C7.2 320 0 312.8 0 304V71C0 -3.2 60.1 -67.5 134.3 -63.9C199.9 -60.7 252.7 -7.9 255.9 57.7000000000001C259.4 131.9 195.2 192 121 192z" />
+    <glyph glyph-name="bold"
+      unicode="&#xF032;"
+      horiz-adv-x="320" d=" M249.139 205.872C283.0610000000001 224.86 302.3590000000001 259.375 302.3590000000001 301.62C302.3590000000001 344.041 282.86 382.333 252.6940000000001 399.17C232.561 410.495 207.478 416 176.01 416H12C5.373 416 0 410.627 0 404V396C0 389.373 5.373 384 12 384H31.95V0H12C5.373 0 0 -5.373 0 -12V-20C0 -26.627 5.373 -32 12 -32H181.68C201.614 -32 227.302 -30.823 249.173 -21.652C292.198 -3.781 320 41.753 320 94.35C320 146.846 291.804 190.722 249.139 205.872zM66.041 383.799H176.01C200.939 383.799 219.704 379.646 233.367 371.107C254.747 357.668 267.009 332.57 267.009 302.249C267.009 252.718 234.7440000000001 219.439 186.72 219.439H66.041V383.799zM233.235 8.114C220.65 2.789 203.786 0.2 181.68 0.2H66.041V187.24H190.499C246.813 187.24 284.65 149.403 284.65 93.089C284.65 52.881 265.45 21.123 233.235 8.114z" />
+    <glyph glyph-name="bolt"
+      unicode="&#xF0E7;"
+      horiz-adv-x="320" d=" M296 288H180.6L223.2 417.8C227.2 433 215.7 448 200 448H56C44 448 33.8 439.1 32.2 427.2L0.2 187.2C-1.7 172.8 9.5 160 24 160H142.7L96.6 -34.5C93 -49.7 104.6 -64 119.9 -64C128.2 -64 136.3 -59.6 140.7 -52L316.7 252C326 267.9 314.5 288 296 288zM140.3 11.1L173.8 152.7000000000001L183.1 192.1000000000001H33.1L63 416H188.9L150.2 298L136.4 256H282.1L140.3 11.1z" />
+    <glyph glyph-name="bomb"
+      unicode="&#xF1E2;"
+      horiz-adv-x="512" d=" M420.7 379.3L364.7 323.3L326.6 361.4C314.1 373.9 293.8 373.9 281.3 361.4L264.2 344.3C246.3 349.3 227.3999999999999 352 207.8999999999999 352C96 352 3.3 262.1 0.1 150.2C-3.3 32.5 91.1 -64 208 -64C323.1 -64 416 30.2 416 144C416 163.5 413.3 182.4 408.3 200.3L425.4000000000001 217.4C437.9000000000001 229.9 437.9000000000001 250.2 425.4000000000001 262.7L387.3 300.8L443.3 356.8L420.7 379.3zM372.4 209.7C378.2 189.2 384 171.9 384 144C384 47.8 305.5 -32 208 -32C183.8 -32 160.3 -27.2 138.3 -17.7C73.1 10.5 29.9 75.7000000000001 32.1 149.3C34.8 243.9 113.2 320 208 320C235.9 320 253.1 314.2 273.7 308.4L304 338.7L402.7 240S400.9 238.1 372.4 209.7zM512 376C512 369.4 506.6 364 500 364H476C469.4 364 464 369.4 464 376S469.4 388 476 388H500C506.6 388 512 382.6 512 376zM452 436V412C452 405.4 446.6 400 440 400S428 405.4 428 412V436C428 442.6 433.4 448 440 448S452 442.6 452 436zM457 393C452.3 397.7 452.3 405.3 457 410L474 427C478.7 431.7 486.3 431.7 491 427C495.7 422.3 495.7 414.7 491 410L474 393C469.3 388.3 461.7 388.3 457 393zM389.1 409.9C384.4000000000001 414.6 384.4000000000001 422.2 389.1 426.9C393.8 431.6 401.4000000000001 431.6 406.1 426.9L423.1 409.9C427.8 405.2 427.8 397.6 423.1 392.9C418.4000000000001 388.2 410.8 388.2 406.1 392.9L389.1 409.9zM490.9 342.1C495.6 337.4 495.6 329.8 490.9 325.1C486.2 320.4 478.6 320.4 473.9 325.1L456.9 342.1C452.2 346.8 452.2 354.4 456.9 359.1C461.6 363.8 469.2 363.8 473.9 359.1L490.9 342.1zM192 256C192 247.2 184.8 240 176 240C140.7 240 112 211.3 112 176C112 167.2 104.8 160 96 160S80 167.2 80 176C80 228.9 123.1 272 176 272C184.8 272 192 264.8 192 256z" />
+    <glyph glyph-name="bone-break"
+      unicode="&#xF5D8;"
+      horiz-adv-x="640" d=" M600.44 288C629.33 305.75 640 332.3400000000001 640 365.05C640 410.78 601.97 448 555.19 448C518.69 448 486.3800000000001 425.25 474.7800000000001 391.41C467.19 368.78 467.57 368 456 368H368C350.33 368 336 353.67 336 336H456C488.47 336 496.13 354.4 505.03 381.03C512.22 401.95 532.37 416 555.19 416C584.31 416 608 393.14 608 365.05C608 341.61 601.12 323.46 578.97 312.69V312.67C569.38 308.01 563.44 298.54 563.44 288C563.44 277.45 569.3800000000001 267.98 578.97 263.33V263.31C601.12 252.54 608 234.39 608 210.95C608 182.86 584.31 160 555.19 160C532.3800000000001 160 512.22 174.05 505.0300000000001 194.97C496.13 221.6 488.47 240 456 240H400C382.33 240 368 225.67 368 208H456C467.57 208 467.19 207.22 474.78 184.59C486.3699999999999 150.75 518.6899999999999 128 555.1899999999999 128C601.9699999999999 128 640 165.22 640 210.95C640 243.66 629.33 270.25 600.44 288zM327.26 150.12C314.76 162.62 294.5 162.62 282 150.12L242.4 110.52C219.44 87.56 227.04 69.13 239.57 44.01C249.28 24.13 244.96 -0.05 228.83 -16.18C208.23 -36.77 175.32 -37.36 155.46 -17.49C138.88 -0.91 130.91 16.78 138.96 40.06L138.95 40.07C142.44 50.15 139.94 61.04 132.49 68.5C125.03 75.96 114.14 78.46 104.06 74.96L104.05 74.97C80.77 66.92 63.07 74.89 46.5 91.47C26.63 111.34 27.22 144.25 47.81 164.84C63.94 180.97 88.13 185.29 108 175.58C133.13 163.05 151.55 155.45 174.51 178.41L259.36 263.26C246.86 275.76 226.6 275.76 214.11 263.26L151.88 201.04C143.7 192.86 143.41 193.68 122.05 204.31C89.94 220.04 51 213.28 25.2 187.47C-7.88 154.39 -8.45 101.18 23.88 68.84C47.01 45.71 73.36 34.46 106.34 42.33C98.46 9.35 109.72 -17 132.85 -40.13C165.19 -72.47 218.4 -71.9 251.48 -38.82C277.29 -13.01 284.05 25.92 268.32 58.05C257.69 79.41 256.87 79.7 265.05 87.88L327.26 150.12z" />
+    <glyph glyph-name="bone"
+      unicode="&#xF5D7;"
+      horiz-adv-x="640" d=" M600.44 192C629.33 209.75 640 236.34 640 269.05C640 314.78 601.97 352 555.19 352C518.69 352 486.3800000000001 329.25 474.7800000000001 295.41C467.19 272.78 467.57 272 456 272H184C172.43 272 172.81 272.78 165.22 295.41C153.62 329.25 121.31 352 84.81 352C38.03 352 0 314.78 0 269.05C0 236.34 10.67 209.75 39.56 192C10.67 174.25 0 147.66 0 114.95C0 69.22 38.03 32 84.81 32C121.31 32 153.62 54.75 165.22 88.59C172.81 111.22 172.43 112 184 112H456C467.57 112 467.19 111.22 474.78 88.59C486.3699999999999 54.75 518.6899999999999 32 555.1899999999999 32C601.9699999999999 32 640 69.22 640 114.95C640 147.66 629.33 174.25 600.44 192zM555.19 64C532.3800000000001 64 512.22 78.05 505.0300000000001 98.97C496.13 125.6 488.47 144 456 144H184C151.53 144 143.87 125.6 134.97 98.97C127.78 78.05 107.62 64 84.81 64C55.69 64 32 86.86 32 114.95C32 138.39 38.88 156.54 61.03 167.31V167.33C70.62 171.99 76.56 181.45 76.56 192S70.62 212.02 61.03 216.67V216.69C38.88 227.46 32 245.61 32 269.05C32 297.14 55.69 320 84.81 320C107.62 320 127.78 305.95 134.97 285.03C143.87 258.4 151.53 240 184 240H456C488.47 240 496.13 258.4 505.03 285.03C512.22 305.95 532.37 320 555.1899999999999 320C584.31 320 608 297.14 608 269.05C608 245.61 601.12 227.46 578.97 216.69V216.67C569.38 212.01 563.44 202.55 563.44 192S569.3800000000001 171.98 578.97 167.33V167.31C601.12 156.54 608 138.39 608 114.95C608 86.86 584.31 64 555.19 64z" />
+    <glyph glyph-name="bong"
+      unicode="&#xF55C;"
+      horiz-adv-x="448" d=" M445.6600000000001 223.43L383.4400000000001 285.66C380.3200000000001 288.78 375.2500000000001 288.78 372.1300000000001 285.66L360.8200000000001 274.35C357.7000000000001 271.23 357.7000000000001 266.16 360.8200000000001 263.04L380.6200000000001 243.24L332.0500000000001 194.67C319.1400000000001 208.46 304.4700000000001 220.58 288.0100000000001 230.11V416H312.0100000000001C316.4300000000001 416 320.0100000000001 419.58 320.0100000000001 424V440C320.0100000000001 444.42 316.4300000000001 448 312.0100000000001 448H72C67.58 448 64 444.42 64 440V424C64 419.58 67.58 416 72 416H96V230.1C38.67 196.89 0 135.03 0 64C0 20.19 14.8 -20.07 39.52 -52.35C45.34 -59.96 54.73 -64 64.31 -64H319.68C329.26 -64 338.65 -59.96 344.4700000000001 -52.35C369.21 -20.07 384 20.2 384 64C384 103.04 372.01 139.08 351.9700000000001 169.35L403.23 220.61L423.0300000000001 200.81C426.1500000000001 197.69 431.2200000000001 197.69 434.3400000000001 200.81L445.6500000000001 212.12A7.993999999999999 7.993999999999999 0 0 1 445.6600000000001 223.43zM112.04 202.41L128 211.65V416H256V211.66L271.96 202.42C301.89 185.08 324.79 158.69 338.31 128.01H45.69C59.21 158.69 82.11 185.08 112.04 202.41zM319.69 -32L64.93 -32.89C43.38 -4.77 32 28.74 32 64C32 74.88 33.46 85.54 35.63 96H348.38C350.55 85.54 352.01 74.88 352.01 64C352 28.73 340.62 -4.77 319.69 -32z" />
+    <glyph glyph-name="book-alt"
+      unicode="&#xF5D9;"
+      horiz-adv-x="448" d=" M448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64z" />
+    <glyph glyph-name="book-dead"
+      unicode="&#xF6B7;"
+      horiz-adv-x="448" d=" M176 244.58V232C176 218.77 186.78 208 200 208H280C293.2200000000001 208 304 218.77 304 232V244.58C324.44 259.7200000000001 336 280.9700000000001 336 304C336 348.11 292.94 384 240 384S144 348.11 144 304C144 280.9700000000001 155.56 259.7200000000001 176 244.58zM240 352C275.28 352 304 330.4700000000001 304 304C304 289.67 295.1600000000001 276.11 279.7200000000001 266.78L272 262.12V240H208V262.12L200.28 266.78C184.84 276.11 176 289.67 176 304C176 330.4700000000001 204.72 352 240 352zM264 288C272.84 288 280 295.16 280 304S272.84 320 264 320S248 312.8400000000001 248 304S255.16 288 264 288zM216 288C224.84 288 232 295.16 232 304S224.84 320 216 320S200 312.8400000000001 200 304S207.16 288 216 288zM124.85 115.55L131.14 100.85A8.008 8.008 0 0 1 141.65 96.64L240 138.8L338.35 96.65A8.003 8.003 0 0 1 348.86 100.86L355.1500000000001 115.56A7.996000000000001 7.996000000000001 0 0 1 350.9500000000001 126.06L280.6 156.2L350.9400000000001 186.35A7.996000000000001 7.996000000000001 0 0 1 355.1400000000001 196.85L348.85 211.55A7.995 7.995 0 0 1 338.3400000000001 215.75L240 173.6L141.65 215.75C137.59 217.4900000000001 132.88 215.6100000000001 131.14 211.5500000000001L124.85 196.8500000000001A7.996000000000001 7.996000000000001 0 0 1 129.05 186.35L199.39 156.2000000000001L129.05 126.0500000000001A7.996000000000001 7.996000000000001 0 0 1 124.85 115.5500000000001zM448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64z" />
+    <glyph glyph-name="book-heart"
+      unicode="&#xF499;"
+      horiz-adv-x="448" d=" M230.1 140.1C235.6 134.6 244.4 134.6 249.9 140.1L334.6 225.7C359.2000000000001 250.6 357.8 291.8 330.3 314.8C316.4000000000001 326.4 282.6 343.3 240.1 300.3C197.5 343.3 163.7 326.4 149.9 314.8C122.4 291.8 121 250.6 145.6 225.7L230.1 140.1zM170.3 290.2000000000001C184 301.7000000000001 201.5 293.6 208.7 286.5L240.1 254.8000000000001L271.5 286.5C278.6 293.7000000000001 296.1 301.7000000000001 309.9 290.2000000000001C324.3 278.2000000000001 322.2 258.6 312 248.2L240 175.6L168.2 248.2C157.9 258.6 155.9 278.2000000000001 170.3 290.2000000000001zM448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.3 28.7 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.3 -32 32 -17.7 32 0S46.3 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.3 64 41.5 60.6 32 55.1V368C32 394.5 53.5 416 80 416H416V64z" />
+    <glyph glyph-name="book-open"
+      unicode="&#xF518;"
+      horiz-adv-x="576" d=" M514.91 416H514.75C490.67 415.88 370 407.17 295.19 367.91C291.14 365.79 284.86 365.79 280.81 367.91C205.99 407.17 85.32 415.88 61.25 416H61.09C27.4 416 0 389.53 0 356.99V60.29C0 28.88 25.41 3.01 57.85 1.39C92.62 -0.3699999999999 179.88 -6.8699999999999 239.74 -28.98C245.01 -30.9299999999999 250.38 -31.9999999999999 255.99 -31.9999999999999H319.99C325.61 -31.9999999999999 330.98 -30.92 336.25 -28.98C396.12 -6.8699999999999 483.37 -0.3699999999999 518.17 1.39C550.5799999999999 3.01 575.99 28.8700000000001 575.99 60.28V356.99C576 389.53 548.6 416 514.91 416zM272 15C272 6.39 264.86 -0.13 256.74 -0.13C254.97 -0.13 253.15 0.18 251.35 0.85C188.9 24.06 102.36 31.18 59.44 33.36C44.05 34.13 32 45.96 32 60.29V356.99C32 371.88 45.06 383.99 61.09 383.99C80.37 383.89 183.55 376.61 253.2100000000001 345.7C264.4700000000001 340.7 271.85 329.95 271.8700000000001 317.86L272.0000000000001 217.54V15zM544 60.29C544 45.96 531.95 34.13 516.55 33.36C473.6299999999999 31.18 387.0899999999999 24.06 324.64 0.85C322.84 0.18 321.02 -0.13 319.25 -0.13C311.14 -0.13 303.99 6.39 303.99 15V217.54L304.12 317.86C304.13 329.95 311.52 340.7 322.7800000000001 345.7C392.4400000000001 376.61 495.62 383.89 514.9000000000001 383.99C530.9300000000001 383.99 543.9900000000001 371.88 543.9900000000001 356.99V60.29z" />
+    <glyph glyph-name="book-reader"
+      unicode="&#xF5DA;"
+      horiz-adv-x="512" d=" M459.91 255.98C459.21 255.98 458.52 255.96 457.85 255.93C408.05 253.09 317.3400000000001 242.93 256.01 208.36C194.68 242.93 103.96 253.09 54.17 255.93C53.5 255.97 52.81 255.98 52.11 255.98C31.71 255.99 0 241.64 0 205.78V27.73C0 1.04 21.25 -20.97 48.34 -22.39C82.75 -24.2 168.9 -31.47 225.34 -59.86C230.02 -62.23 235 -63.36 240 -63.7V-63.97H242.27C242.36 -63.97 242.45 -63.9999999999999 242.53 -63.9999999999999H269.4700000000001C269.56 -63.9999999999999 269.6500000000001 -63.97 269.73 -63.97H272V-63.7C277 -63.36 281.98 -62.22 286.6600000000001 -59.86C343.1 -31.47 429.25 -24.21 463.66 -22.39C490.75 -20.97 512 1.05 512 27.73V205.78C512 241.64 480.29 255.98 459.91 255.98zM240 -31.35C239.91 -31.31 239.82 -31.33 239.72 -31.28C180.13 -1.3100000000001 95.29 7.17 50.02 9.5599999999999C39.92 10.0899999999999 32 18.0699999999999 32 27.73V205.78C32 211.83 33.77 215.78 37.93 218.98C42.4 222.42 48.4 223.99 52.33 223.99C89.34 221.88 181.6 213.41 240 180.63V-31.35zM480 27.73C480 18.0699999999999 472.08 10.09 461.97 9.5599999999999C416.7000000000001 7.18 331.86 -1.3000000000001 272.2100000000001 -31.3100000000001C272.1400000000001 -31.3500000000001 272.0700000000001 -31.33 271.99 -31.3600000000001V180.63C330.38 213.42 422.65 221.88 459.5 223.98L459.89 223.99C460.09 223.99 479.98 223.5 479.98 205.78V27.73zM256 256.01C309.02 256.01 352 298.99 352 352S309.02 448 256 448S160 405.02 160 352.01S202.98 256.01 256 256.01zM256 416C291.29 416 320 387.29 320 352S291.29 288 256 288S192 316.7100000000001 192 352S220.71 416 256 416z" />
+    <glyph glyph-name="book-spells"
+      unicode="&#xF6B8;"
+      horiz-adv-x="448" d=" M64 304C64 297.94 67.44 292.41 72.84 289.69L110.72 270.75L129.69 232.84C132.41 227.42 137.94 224 144 224S155.59 227.42 158.31 232.84L177.25 270.75L215.16 289.69C220.57 292.39 224 297.94 224 304S220.56 315.61 215.16 318.31L177.25 337.25L158.31 375.16C155.59 380.58 150.06 384 144 384S132.41 380.58 129.69 375.16L110.72 337.25L72.84 318.31C67.44 315.5900000000001 64 310.06 64 304zM129.81 311.02A16.15 16.15 0 0 1 136.97 318.18L144 332.23L151 318.18C152.56 315.0900000000001 155.06 312.57 158.16 311.02L172.19 304L158.16 296.98A16.15 16.15 0 0 1 151 289.82L144 275.77L136.97 289.82A16.101 16.101 0 0 1 129.81 296.98L115.78 304L129.81 311.02zM192 192C192 185.94 195.44 180.41 200.84 177.69L249.4 153.41L273.68 104.85C276.4000000000001 99.43 281.93 96.01 287.99 96.01S299.58 99.43 302.3 104.85L326.5800000000001 153.41L375.1400000000001 177.69C380.5500000000001 180.41 383.98 185.94 383.98 192S380.54 203.59 375.1400000000001 206.31L326.5800000000001 230.59L302.3000000000001 279.15C296.8600000000001 289.99 279.1100000000001 289.99 273.6800000000001 279.15L249.4000000000001 230.59L200.8400000000001 206.31C195.4400000000001 203.59 192.0000000000001 198.06 192.0000000000001 192zM268.5 204.36A16.15 16.15 0 0 1 275.6600000000001 211.52L288 236.22L300.34 211.52C301.9 208.43 304.4 205.91 307.5 204.36L332.2200000000001 192L307.5 179.64A16.15 16.15 0 0 1 300.34 172.48L288 147.78L275.6600000000001 172.48A16.101 16.101 0 0 1 268.5 179.64L243.78 192L268.5 204.36zM448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64z" />
+    <glyph glyph-name="book"
+      unicode="&#xF02D;"
+      horiz-adv-x="448" d=" M356 288H188C181.4 288 176 293.4 176 300V308C176 314.6 181.4 320 188 320H356C362.6 320 368 314.6 368 308V300C368 293.4 362.6 288 356 288zM368 236V244C368 250.6 362.6 256 356 256H188C181.4 256 176 250.6 176 244V236C176 229.4 181.4 224 188 224H356C362.6 224 368 229.4 368 236zM432.7 -32H436C442.6 -32 448 -37.4 448 -44V-52C448 -58.6 442.6 -64 436 -64H80C35.8 -64 0 -28.2 0 16V368C0 412.2 35.8 448 80 448H424C437.3 448 448 437.3 448 424V56C448 46 441.8 37.4 433.1 33.8C429.5 17.7 428.7000000000001 -11.8 432.7000000000001 -32zM128 64H416V416H128V64zM32 48C45.4 58 62 64 80 64H96V416H80C53.5 416 32 394.5 32 368V48zM404.3 -32C401.2 -11.6 401.4000000000001 13.2 404.3 32H80C16 32 16 -32 80 -32H404.3z" />
+    <glyph glyph-name="bookmark"
+      unicode="&#xF02E;"
+      horiz-adv-x="384" d=" M336 448H48C21.49 448 0 426.51 0 400V-64L192 48L384 -64V400C384 426.51 362.51 448 336 448zM352 -8.287L192 85.0460000000001L32 -8.2869999999999V400C32 408.822 39.178 416 48 416H336C344.822 416 352 408.822 352 400V-8.287z" />
+    <glyph glyph-name="books"
+      unicode="&#xF5DB;"
+      horiz-adv-x="576" d=" M575.33 -8.43L399 439.98C397.28 444.9 392.61 448 387.65 448C384.64 448 382.68 446.9700000000001 376.16 444.69C369.7 442.43 366.34 436.45 369.89 426.31C353.43 416.62 310.74 402.2200000000001 294.39 399.89C293.06 403.67 292.42 406.51 287.99 409.12V416C287.99 433.67 273.6600000000001 448 255.99 448H159.99C154.03 448 148.77 445.93 143.99 443.1C139.22 445.93 133.96 448 128 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H128C133.96 -64 139.22 -61.93 144 -59.1C148.78 -61.94 154.04 -64 160 -64H256C273.67 -64 288 -49.67 288 -32V329.12L439.43 -55.98C441.1600000000001 -60.9 445.83 -64 450.78 -64C453.78 -64 455.74 -62.97 462.27 -60.69C468.71 -58.44 472.1 -52.46 468.54 -42.31C485 -32.62 527.69 -18.22 544.04 -15.89C547.6899999999999 -26.29 554.17 -28.54 560.42 -26.35L567.9699999999999 -23.71C574.1999999999999 -21.52 577.5099999999999 -14.64 575.3299999999999 -8.43zM128 -32H32V32H128V-32zM128 64H32V320H128V64zM128 352H32V416H128V352zM256 -32H160V32H256V-32zM256 64H160V320H256V64zM256 352H160V416H256V352zM459.15 -15.54L303.79 373.12C329.01 377.86 367.8 393.45 379.29 399.54L534.6500000000001 10.89C509.4200000000001 6.14 470.6400000000001 -9.4399999999999 459.1500000000001 -15.54z" />
+    <glyph glyph-name="boot"
+      unicode="&#xF782;"
+      horiz-adv-x="512" d=" M415 200.2L352 216V320C369.7 320 384 334.3 384 352V416C384 433.7 369.7 448 352 448H32C14.3 448 0 433.7 0 416V-18.7C0 -27.2 3.4 -35.3 9.4 -41.3L22.7 -54.6C28.7 -60.6 36.8 -64 45.3 -64H82.8C91.3 -64 99.4 -60.6 105.4 -54.6L128 -32L150.6 -54.6C156.6 -60.6 164.7 -64 173.2 -64H210.7C219.2 -64 227.3 -60.6 233.3 -54.6L256 -32L278.6 -54.6C284.6 -60.6 292.7000000000001 -64 301.2000000000001 -64H338.7000000000001C347.2000000000001 -64 355.3000000000001 -60.6 361.3000000000001 -54.6L384 -32L406.6 -54.6C412.6 -60.6 420.7000000000001 -64 429.2000000000001 -64H466.7C475.2 -64 483.3000000000001 -60.6 489.3000000000001 -54.6L502.6000000000001 -41.3C508.6000000000001 -35.3 512.0000000000001 -27.2 512.0000000000001 -18.7V76.1C512.0000000000001 134.8 472.0000000000001 186 415.0000000000001 200.2zM32 416H352V352H32V416zM480 -18.7L466.7 -32H429.2L406.6 -9.4C400.6 -3.4 392.5 0 384 0S367.3999999999999 -3.4 361.3999999999999 -9.4L338.7 -32H301.2L278.6 -9.4C272.6 -3.4 264.5 0 256 0S239.4 -3.4 233.4 -9.4L210.7 -32H173.2L150.6 -9.4C144.6 -3.4 136.5 0 128 0S111.4 -3.4 105.4 -9.4L82.7 -32H45.3L32 -18.7V32H480V-18.7zM480 64H32V320H320V288H232C227.6 288 224 284.4 224 280V264C224 259.6 227.6 256 232 256H320V224H232C227.6 224 224 220.4 224 216V200C224 195.6 227.6 192 232 192H320L407.3 169.2C450.1 158.5 480 120.2 480 76.1V64z" />
+    <glyph glyph-name="booth-curtain"
+      unicode="&#xF734;"
+      horiz-adv-x="512" d=" M0 416V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V416H96V64C96 28.7 124.7 0 160 0C179.2 0 196.3 8.7 208 22.1C219.7 8.7 236.8 0 256 0S292.3 8.7 304 22.1C315.7 8.7 332.8 0 352 0S388.3 8.7 400 22.1C411.7 8.7 428.8 0 448 0C459.7 0 470.5 3.4 480 8.9V-56C480 -60.4 483.6 -64 488 -64H504C508.4 -64 512 -60.4 512 -56V416C512 433.7 497.7 448 480 448H32C14.3 448 0 433.7 0 416zM416 416H480V64C480 46.3 465.7 32 448 32S416 46.3 416 64V416zM320 416H384V64C384 46.3 369.7 32 352 32S320 46.3 320 64V416zM224 416H288V64C288 46.3 273.7 32 256 32S224 46.3 224 64V416zM128 416H192V64C192 46.3 177.7 32 160 32S128 46.3 128 64V416z" />
+    <glyph glyph-name="bow-arrow"
+      unicode="&#xF6B9;"
+      horiz-adv-x="512" d=" M403.77 271.89L380.3 248.42C430.76 169.43 427.13 65.67 368.68 -9.4L245.58 113.7000000000001L222.95 91.0700000000001L375.7 -61.66C378.82 -64.78 383.89 -64.78 387.01 -61.66L398.32 -50.35A7.985 7.985 0 0 1 398.32 -39.04L391.56 -32.28C462.42 55.76 466.52 179.75 403.77 271.89zM155.08 158.96L177.71 181.59L54.61 304.69C129.68 363.13 233.4400000000001 366.77 312.43 316.31L335.9 339.78C243.76 402.53 119.77 398.43 31.74 327.57L24.97 334.34C21.84 337.46 16.78 337.46 13.66 334.34L2.34 323.01A7.985 7.985 0 0 1 2.34 311.7000000000001L155.08 158.96zM496.36 448C495.33 448 494.29 447.9 493.23 447.69L364.63 421.9700000000001C352.34 419.51 347.75 404.35 356.61 395.48L396.73 355.36L144.36 102.99L90.73 126.95A20.547 20.547 0 0 1 69.69 121.99L6.03 58.31C-4.77 47.51 -0.43 29.11 14.07 24.27L69.73 5.72L88.28 -49.93C91.27 -58.91 99.47 -63.99 107.85 -63.99C112.99 -63.99 118.21 -62.07 122.32 -57.96L185.99 5.71A20.56 20.56 0 0 1 190.96 26.75L167 80.37L419.37 332.74L459.5 292.62C462.66 289.4600000000001 466.62 288.01 470.52 288.01C477.56 288.01 484.4 292.73 485.98 300.64L511.6899999999999 429.23C513.67 439.14 505.96 448 496.36 448zM112.77 -22.25L100.07 15.84L95.01 31.02L79.83 36.08L41.74 48.78L86.67 93.71L135.76 71.78L157.69 22.6900000000001L112.77 -22.2499999999999zM460.57 336.78L400.78 396.56L475.51 411.51L460.57 336.78z" />
+    <glyph glyph-name="bowling-ball"
+      unicode="&#xF436;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM152 288C134.3 288 120 273.7 120 256S134.3 224 152 224S184 238.3 184 256S169.7 288 152 288zM264 320C264 337.7 249.7 352 232 352S200 337.7 200 320S214.3 288 232 288S264 302.3 264 320zM248 256C230.3 256 216 241.7 216 224S230.3 192 248 192S280 206.3 280 224S265.7 256 248 256z" />
+    <glyph glyph-name="bowling-pins"
+      unicode="&#xF437;"
+      horiz-adv-x="480" d=" M475.2 135.8C462.2 190.2 425.9 225 421.3 273.6C417.9000000000001 308.3 442.5 331 440 373C437.4 416.3 407.1 447.9000000000001 368 448C328.9 447.9000000000001 298.7 416.3 296.1 373C293.6 331 318.1 308.2000000000001 314.8 273.6C310.2 225 273.8 190.1 260.9000000000001 135.8C248.4000000000001 83.5 261.3 -4.1 289.1 -55.5L293.6 -63.9H442.6L447.1 -55.5C474.8 -4.1 487.7 83.5 475.2 135.8zM408 371.1C409.7 342.5 391.9 321.8 389.3 288H346.7C344.1 321.9 326.2 342.4 328 371.1C331.6 431.2 404.4 431.2 408 371.1zM423.1 -31.9H312.9C291.9 13.3 281.9 86.8 291.9 128.4C302.6 173.2000000000001 333.8 205.4 344 256.1H392C402.2 205.4 433.4 173.2000000000001 444.1 128.4C454 86.7000000000001 444 13.3000000000001 423.1 -31.9zM165.3 273.5C162 308.2 186.5 330.9 184 372.9C181.4 416.3 151.1 447.8 112 447.9C72.9 447.9 42.7 416.3 40 372.9C37.4 330.9 62 308.2 58.7 273.5C54.1 224.8 17.7 190 4.8 135.7C-7.7 83.4 5.2 -4.3 33 -55.7L37.5 -64.1H186.5L191 -55.7C218.8 -4.3000000000001 231.7 83.3 219.2 135.6999999999999C206.3 190 169.9 224.8999999999999 165.3 273.5zM152 371C153.7 342.3 135.9 321.9 133.3 288H90.7C88.1 321.9 70.2 342.3 72 371C75.6 431.1 148.4 431.1 152 371zM167.1 -32H56.9C35.9 13.2 25.9 86.7 35.9 128.3C46.6 173.1 77.9 205.3 88 256H136C146.2 205.3 177.4 173.1 188.1 128.3C198.1 86.7 188.1 13.2 167.1 -32z" />
+    <glyph glyph-name="box-alt"
+      unicode="&#xF49A;"
+      horiz-adv-x="448" d=" M447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM360.9 384L411.7 288H286.1L274.1 384H360.9000000000001zM192 256H256V192H192V256zM241.9 384L253.9 288H194.1L206.1 384H241.9000000000001zM87.1 384H173.9L161.9 288H36.3L87.1 384zM32 0S32.1 181.1 32.1 256H160V192C160 174.3 174.3 160 192 160H256C273.7 160 288 174.3 288 192V256H415.9C415.9 181.1 416 0 416 0H32z" />
+    <glyph glyph-name="box-ballot"
+      unicode="&#xF735;"
+      horiz-adv-x="576" d=" M571.4 171.4L520.1 299.6C515.3000000000001 311.9 503.5 319.9 490.3 319.9H448.1V416C448.1 433.7 433.8 448 416.1 448H160.1C142.4 448 128.1 433.7 128.1 416V320H86C72.8 320 61 311.9 56.2 299.7L4.6 171.6C1.5 164 0 155.8 0 147.6L0.3 -31.8C0.2 -49.4999999999999 14.6 -63.9999999999999 32.3 -63.9999999999999H544C561.7 -63.9999999999999 576.1 -49.6 576 -31.8V147.7C576 155.8 574.4 163.9 571.4 171.4zM160.2 416H416.2V224H160.2V416zM86 288H128.2V224H104C99.6 224 96 220.4 96 216V200C96 195.6 99.6 192 104 192H472C476.4 192 480 195.6 480 200V216C480 220.4 476.4 224 472 224H448.2V288H490.4L490.5 287.8L541.5 160H34.5L86 288zM544 -32L32.3 -31.8L32.2 128H544V-32z" />
+    <glyph glyph-name="box-check"
+      unicode="&#xF467;"
+      horiz-adv-x="640" d=" M492.5 314.6L458.9 415.2C452.4 434.8 434.1 448 413.4 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C0.9 258.5 0 253.4 0 248.2V-16C0 -42.5 21.5 -64 48 -64H448C554 -64 640 22 640 128C640 218.7 577 294.5 492.5 314.6zM272 416H413.4C420.3 416 426.4 411.6 428.6 405.1L457.1 319.6C454.1 319.7 451.1 320.1 448 320.1C391.2 320.1 340.3 295.3 305.2 256.1H272V416zM83.4 405.1C85.6 411.6 91.7 416 98.6 416H240V256H33.7L83.4 405.1zM48 -32C39.2 -32 32 -24.8 32 -16V224H281.9C265.5 195.7 256 163 256 128C256 61.2 290.2 2.4 342 -32H48zM448 -32C359.8 -32 288 39.8 288 128S359.8 288 448 288S608 216.2 608 128S536.2 -32 448 -32zM512.6 189.7C509.5 192.8 504.5 192.8 501.4 189.7L431.5 120.4L401.2 151C398.1 154.1 393.1 154.1 390 151L371.3 132.4C368.2 129.3 368.2 124.3 371.3 121.2L425.7 66.3C428.8 63.2 433.8 63.2 436.9 66.3L531.1 159.8C534.2 162.9 534.2 167.9 531.1 171L512.6 189.7z" />
+    <glyph glyph-name="box-fragile"
+      unicode="&#xF49B;"
+      horiz-adv-x="448" d=" M392 416H56C25.1 416 0 390.9 0 360V24C0 -6.9 25.1 -32 56 -32H392C422.9 -32 448 -6.9 448 24V360C448 390.9 422.9 416 392 416zM416 24C416 10.8 405.2 0 392 0H56C42.8 0 32 10.8 32 24V360C32 373.2 42.8 384 56 384H392C405.2 384 416 373.2 416 360V24zM304 352H144C126.3 352 112 337.7 112 320V240C112 183.6 153.8 137.4 208 129.6V64H168C163.6 64 160 60.4 160 56V40C160 35.6 163.6 32 168 32H280C284.4 32 288 35.6 288 40V56C288 60.4 284.4 64 280 64H240V129.6C294.2 137.4 336 183.6 336 240.0000000000001V320C336 337.7000000000001 321.7 352 304 352zM304 240C304 195.9 268.1 160 224 160S144 195.9 144 240V320H212.8C215.1 313.3 217.6 306.7 220.1 300.1C212.2 292 183.8 261.7 183.8 261.7S231.4 226.9 251 217.9C253.6 216.7 256.7 216.9 259.2 218.6C262.9 221.2 263.8 226.3 261.2 230C252.3 242.5 231.4 263.7 231.4 263.7L260 292S250.9 314.1 248.4 320H304V240z" />
+    <glyph glyph-name="box-full"
+      unicode="&#xF49C;"
+      horiz-adv-x="640" d=" M638.3 208.2L586.8 311C584 316.6 578.3 320 572.1999999999999 320C571.1999999999999 320 576.4999999999999 320.7 515.9 313L542.1 384.8C548.1 401.4 539.6 419.8 523 425.8L467.3 446.1C450.8 452.1 432.4000000000001 443.6 426.3 427L383.5 309.3C380.7 386.3 317.7 448 240 448C164.7 448 103.7 390 97.3 316.4C67.8 320.2 69 320 67.8 320C61.7 320 56 316.5 53.2 311L1.7 208.2C-2.9 199 2 188 11.8 185.2L64 170.3V23C64 8.3 74 -4.5 88.2 -8L304.4 -62.1C318 -65.5 329.4 -63.6 335.4 -62.1L551.8 -8C566 -4.4 576 8.4 576 23V170.3L628.1 185.2C638 188 642.8000000000001 199 638.3000000000001 208.2zM456.4 416L512 395.8L480.2 308.5L414.2 300.1L456.4 416zM38.8 210.7L76.8 286.7L267.2 262.4L207.1 162.6L38.8 210.7zM304 -29L96 23V161.1C219.3 125.9 211 128 214.3 128C219.9 128 225.3 130.9 228.3 135.9L304 261.5V-29zM320 288C224.3 300.2 165.4 307.7 128.9 312.4C133.2 370.2 181.1 416 240 416C301.8 416 352 365.8 352 304C352 299.9 351.4 295.9 350.9 291.9L320 288zM544 23L336 -29V261.5L411.7 136C414.7 131 420.1 128.1 425.7 128.1C429 128.1 420.5 126 544 161.2000000000001V23zM432.9 162.7L372.8 262.5L563.1999999999999 286.8L601.1999999999999 210.8L432.8999999999999 162.7z" />
+    <glyph glyph-name="box-heart"
+      unicode="&#xF49D;"
+      horiz-adv-x="448" d=" M447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM240 384H360.9L411.7 288H240V384zM87.1 384H208V288H36.3L87.1 384zM224 0H32S32.1 181.1 32.1 256H416C416 181.1 416.1 0 416.1 0H224zM314.2 210.8C300.3 222.4 266.5 239.3 224 196.3C181.4 239.3 147.6 222.4 133.8 210.8C106.3 187.8 104.9 146.6 129.5 121.7000000000001L214.2 36.1C219.7 30.6 228.5 30.6 234 36.1L318.7 121.7000000000001C343.2 146.6 341.7 187.8000000000001 314.2 210.8000000000001zM295.8 144.3L224 71.6L152.2 144.2000000000001C142 154.5000000000001 139.9 174.2000000000001 154.3 186.2000000000001C168 197.7000000000001 185.5 189.6 192.7 182.5000000000001L224.1 150.8000000000001L255.5 182.5000000000001C262.6 189.7000000000001 280.1 197.7000000000001 293.9 186.2000000000001C308.1 174.2000000000001 306.1 154.6 295.8 144.3000000000001z" />
+    <glyph glyph-name="box-open"
+      unicode="&#xF49E;"
+      horiz-adv-x="608" d=" M606.4 304.2L557.5 407C554.8 412.6 549.4 416 543.6 416C543 416 304 384 304 384S65 416 64.4 416C58.6 416 53.2 412.5 50.5 407L1.6 304.2C-2.8 295 1.9 284 11.2 281.2L60.7 266.3V55C60.7 40.3 70.2 27.5 83.7 24L289.1 -30.1C302.1 -33.5 312.8 -31.6 318.6 -30.1L524.2 24C537.7 27.6 547.2 40.4 547.2 55V266.3L596.7 281.2000000000001C606.1 284 610.7 295 606.4000000000001 304.2000000000001zM73 382.7L253.9 358.4L196.8 258.6L36.9 306.7000000000001L73 382.7000000000001zM91.2 257.1C208.3 221.9 200.5 224 203.6 224C209 224 214.1 226.9 216.9 231.9L288.8 357.4V3L91.2 55V257.1zM516.8 55L319.2 3V357.5L391.1 232C394 227 399.1 224.1 404.4000000000001 224.1C407.5000000000001 224.1 399.4000000000001 222 516.8000000000001 257.2V55zM411.3 258.7L354.2 358.5L535 382.7L571.1 306.7L411.3 258.7z" />
+    <glyph glyph-name="box-up"
+      unicode="&#xF49F;"
+      horiz-adv-x="512" d=" M408 64H104C99.6 64 96 60.4 96 56V40C96 35.6 99.6 32 104 32H408C412.4 32 416 35.6 416 40V56C416 60.4 412.4 64 408 64zM448 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H448C483.3 -64 512 -35.3 512 0V384C512 419.3 483.3 448 448 448zM480 0C480 -17.6 465.6 -32 448 -32H64C46.4 -32 32 -17.6 32 0V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V0zM108.5 246L144 290.4V136C144 131.6 147.6 128 152 128H168C172.4 128 176 131.6 176 136V290.4L211.5 246C216.1 240.2 226 237.2 234 243.5C240.9 249 242 259.1 236.5 266L172.5 346C166.4 353.6 153.6 353.6 147.5 346L83.5 266C78 259.1 79.1 249 86 243.5S103 239.1 108.5 246zM364.5 346C358.4 353.6 345.6 353.6 339.5 346L275.5 266C270 259.1 271.1 249 278 243.5S295 239.1 300.5 246L336 290.4V136C336 131.6 339.6 128 344 128H360C364.4 128 368 131.6 368 136V290.4L403.5 246C408.1 240.2 418 237.2 426 243.5C432.9 249 434 259.1 428.5 266L364.5 346z" />
+    <glyph glyph-name="box-usd"
+      unicode="&#xF4A0;"
+      horiz-adv-x="448" d=" M249.4 137.1L207.8 149.6C203.6 150.9 200.6 155.2000000000001 200.6 160.2000000000001C200.6 166.2000000000001 204.9 171.1 210.3 171.1H236.2C240.1 171.1 243.9 170 247.2 168C250.4 166.1 254.5000000000001 166.8 257.2000000000001 169.4L268.6 180.3C272.1 183.6999999999999 272 189.5 268.1 192.4C259.9000000000001 198.4 250.1 202 240.0000000000001 202.7V216C240.0000000000001 220.4 236.4000000000001 224 232.0000000000001 224H216C211.6 224 208 220.4 208 216V202.6C186.1 201.3 168.6 183 168.6 160.1C168.6 141.1 180.9 124.2000000000001 198.6 118.9L240.2 106.4C244.4 105.1 247.4 100.8 247.4 95.8C247.4 89.8 243.1 84.9 237.7 84.9H211.8C207.9 84.9 204.1 86.0000000000001 200.8 88.0000000000001C197.6 89.9 193.5 89.2000000000001 190.8 86.6000000000001L179.4 75.7000000000001C175.9 72.3000000000001 176 66.5000000000001 179.9 63.6000000000001C188.1 57.6000000000001 197.9 54.0000000000001 208 53.3000000000001V40C208 35.6 211.6 32 216 32H232C236.4 32 240 35.6 240 40V53.4C261.9 54.7 279.4 73 279.4 95.9C279.4 114.8 267 131.8 249.4 137.1zM447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM240 384H360.9L411.7 288H240V384zM87.1 384H208V288H36.3L87.1 384zM32 0S32.1 181.1 32.1 256H416C416 181.1 416.1 0 416.1 0H32z" />
+    <glyph glyph-name="box"
+      unicode="&#xF466;"
+      horiz-adv-x="512" d=" M509.5 263.4L458.9 415.2C452.4 434.8 434.1 448 413.4 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C0.9 258.5 0 253.4 0 248.2V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V248.2C512 253.4 511.2 258.5 509.5 263.4zM32 248.2C32 249.9 32.3 251.6 32.8 253.3L83.4 405.1C85.6 411.6 91.7 416 98.6 416H240V248H32V248.2zM480 -16C480 -24.8 472.8 -32 464 -32H48C39.2 -32 32 -24.8 32 -16V216H480V-16zM480 248H272V416H413.4C420.3 416 426.4 411.6 428.6 405.1L479.2 253.3C479.7 251.7 480 250 480 248.2V248z" />
+    <glyph glyph-name="boxes-alt"
+      unicode="&#xF4A1;"
+      horiz-adv-x="640" d=" M624 224H480V432C480 440.8 472.8 448 464 448H176C167.2 448 160 440.8 160 432V224H16C7.2 224 0 216.8 0 208V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V208C640 216.8 632.8 224 624 224zM512 192V128H448V192H512zM288 416H352V352H288V416zM192 416H256V352C256 334.3 270.3 320 288 320H352C369.7 320 384 334.3 384 352V416H448V224H192V416zM128 192H192V128H128V192zM304 -32H32V192H96V128C96 110.3 110.3 96 128 96H192C209.7 96 224 110.3 224 128V192H304V-32zM608 -32H336V192H416V128C416 110.3 430.3 96 448 96H512C529.7 96 544 110.3 544 128V192H608V-32z" />
+    <glyph glyph-name="boxes"
+      unicode="&#xF468;"
+      horiz-adv-x="640" d=" M624 224H480V432C480 440.8 472.8 448 464 448H176C167.2 448 160 440.8 160 432V224H16C7.2 224 0 216.8 0 208V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V208C640 216.8 632.8 224 624 224zM448 192H512V129.7L480 140.4L448 129.7V192zM352 416V353.7L320 364.4L288 353.7V416H352zM192 416H256V309.3L320 330.6L384 309.3V416H448V224H192V416zM192 192V129.7L160 140.4L128 129.7V192H192zM32 192H96V85.3L160 106.6L224 85.3V192H304V-32H32V192zM608 -32H336V192H416V85.3L480 106.6L544 85.3V192H608V-32z" />
+    <glyph glyph-name="boxing-glove"
+      unicode="&#xF438;"
+      horiz-adv-x="448" d=" M252.4 87.2L259.6 72.9C261.6 68.9 260 64.1 256 62.2L227.8 48L256 33.9C260 31.9 261.6 27.1 259.6 23.2L252.4000000000001 8.9C250.4000000000001 4.9 245.6 3.3 241.7000000000001 5.3L192 30.1L142.3 5.3C138.3 3.3 133.5 4.9 131.6 8.9L124.4 23.2C122.4 27.2 124 32.0000000000001 128 33.9L156.2 48.0000000000001L128 62.1000000000001C124 64.1000000000001 122.4 68.9000000000001 124.4 72.8000000000001L131.6 87.1000000000001C133.6 91.1000000000001 138.4 92.7000000000001 142.3 90.7000000000001L192 65.9000000000001L241.7 90.7000000000001C245.6 92.7000000000001 250.4 91.1000000000001 252.4 87.2000000000001zM386.4 73.3L352 41.1V-32C352 -49.7 337.7 -64 320 -64H64C46.3 -64 32 -49.7 32 -32V64L14.9 160.5C5 220.4 0 281.4 0 342C0 400.4 47.2 448 105.2 448H280C337.3 448 384 400.4 384 342V298.4C421.2 285.8 448 252.5 448 213C448 160.2 426.1 110.6 386.4 73.3zM364.5 96.7C397.7 127.8 416 169.1 416 213C416 245.5 387.3 272 352 272H320.8C294.5 272 272.5 251.2 272 224.9C271.5 200.3 289.6 179.8 313.1 176.5C317.1 175.9 320 172.4 320 168.4V152.4C320 147.7 315.9 143.9 311.2 144.4C271.2 148.8 240 182.8 240 223.9C240 235.3 242.5 246.1 246.8 255.9H157.3C126.7 255.9 97.8 266.8 75 286.7C71.5 289.8 71.3 295.1 74.6 298.4L85.9 309.7C88.9 312.7 93.6 312.8 96.8 310.1C113.7 295.7 134.9 287.8 157.3 287.8H272V287.4C285.4 297.5 301.9 303.8 320 303.8H352V341.8C352 383.3 320.4 415.8 280 415.8H105.2C64.8 416 32 382.8 32 342C32 192.4 63.7 89.5 63.8 64H88C92.4 64 96 60.4 96 56V40C96 35.6 92.4 32 88 32H63.8L64 -32H320V32H296C291.6 32 288 35.6 288 40V56C288 60.4 291.6 64 296 64H329.7L364.5 96.7z" />
+    <glyph glyph-name="braille"
+      unicode="&#xF2A1;"
+      horiz-adv-x="640" d=" M64 192C64 174.327 49.673 160 32 160S0 174.327 0 192S14.327 224 32 224S64 209.673 64 192zM32 48C23.163 48 16 40.837 16 32S23.163 16 32 16S48 23.163 48 32S40.837 48 32 48zM32 384C14.327 384 0 369.673 0 352S14.327 320 32 320S64 334.327 64 352S49.673 384 32 384zM192 208C183.163 208 176 200.837 176 192S183.163 176 192 176S208 183.163 208 192S200.837 208 192 208zM192 48C183.163 48 176 40.837 176 32S183.163 16 192 16S208 23.163 208 32S200.837 48 192 48zM192 384C174.327 384 160 369.673 160 352S174.327 320 192 320S224 334.327 224 352S209.673 384 192 384zM448 208C439.163 208 432 200.837 432 192S439.163 176 448 176S464 183.163 464 192S456.837 208 448 208zM448 48C439.163 48 432 40.837 432 32S439.163 16 448 16S464 23.163 464 32S456.837 48 448 48zM448 384C430.327 384 416 369.673 416 352S430.327 320 448 320S480 334.327 480 352S465.673 384 448 384zM608 208C599.163 208 592 200.837 592 192S599.163 176 608 176S624 183.163 624 192S616.837 208 608 208zM608 48C599.163 48 592 40.837 592 32S599.163 16 608 16S624 23.163 624 32S616.837 48 608 48zM608 368C599.163 368 592 360.837 592 352S599.163 336 608 336S624 343.163 624 352S616.837 368 608 368z" />
+    <glyph glyph-name="brain"
+      unicode="&#xF5DC;"
+      horiz-adv-x="544" d=" M509.65 217.72C527.16 272.18 489.57 310.88 468.59 323.03C471.26 360.69 442.73 397.35 401.91 402.42C389.96 429.77 362.8 448 332.2200000000001 448C307.63 448 285.96 436.15 272 418.1C258.04 436.15 236.37 448 211.78 448C181.2 448 154.04 429.77 142.08 402.42C101.26 397.35 72.73 360.69 75.4 323.03C54.42 310.87 16.84 272.18 34.34 217.72C12.89 200.58 0 174.56 0 147C0 114.27 17.41 84.62 45.26 68.47C42.98 20.29 81.95 -20.22 130.2 -18.98C144.44 -46.36 172.79 -63.9999999999999 204.25 -63.9999999999999C232.15 -63.9999999999999 256.76 -50.1999999999999 272 -29.2399999999999C287.24 -50.2 311.85 -64 339.75 -64C371.21 -64 399.56 -46.36 413.8 -18.98C462.05 -20.22 501.01 20.3 498.74 68.47C526.59 84.62 544 114.27 544 147C544 174.56 531.11 200.58 509.65 217.72zM255.94 309.93C255.94 283.8400000000001 237.88 262.05 213.59 255.89C210.12 255.01 207.76 251.8 207.76 248.23V232.05C207.76 226.98 212.45 223.14 217.44 224.16C231.87 227.1 244.98 233.57 255.94 242.55V19.5C255.94 -8.89 232.76 -32 204.25 -32C172.36 -32 160.02 -10.19 151.15 16.2C134.86 13.46 132.86 13 128.97 13C100.46 13 77.28 36.11 77.28 64.5C77.28 70.71 78.14 73.64 80.95 87.47C55.51 97.97 32.11 111.68 32.11 147C32.11 180.86 55.12 193.95 75.02 205.34C62.42 231.05 62.22 234.54 62.22 244.5C62.22 278.41 84.12 292.9600000000001 111.59 304.19C109.08 315.0900000000001 107.39 320.8 107.39 327C107.39 351.14 126.99 370.8 152.87 370.8H153.28L166.01 370.53C171.92 393.48 181.04 416 211.78 416C236.12 416 255.94 396.27 255.94 372V309.93zM463.05 87.47C465.86 73.64 466.72 70.71 466.72 64.5C466.72 36.11 443.54 13 415.03 13C411.15 13 409.15 13.46 392.85 16.2C383.98 -10.19 371.64 -32 339.75 -32C311.24 -32 288.06 -8.89 288.06 19.5V242.55C299.0199999999999 233.57 312.13 227.1 326.56 224.16C331.55 223.14 336.24 226.98 336.24 232.05V248.23C336.24 251.8 333.88 255.01 330.41 255.89C306.12 262.05 288.06 283.8400000000001 288.06 309.93V372C288.06 396.27 307.88 416 332.2199999999999 416C362.9599999999999 416 372.08 393.48 377.9799999999999 370.53L390.7099999999999 370.8H391.12C417 370.8 436.6 351.14 436.6 327C436.6 320.8 434.9 315.0800000000001 432.4 304.19C459.86 292.9700000000001 481.77 278.41 481.77 244.5C481.77 234.54 481.57 231.05 468.97 205.34C488.8699999999999 193.95 511.88 180.86 511.88 147C511.88 111.67 488.49 97.96 463.05 87.47z" />
+    <glyph glyph-name="briefcase-medical"
+      unicode="&#xF469;"
+      horiz-adv-x="512" d=" M344 160H288V216C288 220.4 284.4 224 280 224H232C227.6 224 224 220.4 224 216V160H168C163.6 160 160 156.4 160 152V104C160 99.6 163.6 96 168 96H224V40C224 35.6 227.6 32 232 32H280C284.4 32 288 35.6 288 40V96H344C348.4 96 352 99.6 352 104V152C352 156.4 348.4 160 344 160zM464 320H352V392C352 405.3 341.3 416 328 416H184C170.7 416 160 405.3 160 392V320H48C21.5 320 0 298.5 0 272V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V272C512 298.5 490.5 320 464 320zM192 384H320V320H192V384zM480 -16C480 -24.8 472.8 -32 464 -32H48C39.2 -32 32 -24.8 32 -16V272C32 280.8 39.2 288 48 288H464C472.8 288 480 280.8 480 272V-16z" />
+    <glyph glyph-name="briefcase"
+      unicode="&#xF0B1;"
+      horiz-adv-x="512" d=" M464 320H352V392C352 405.26 341.26 416 328 416H184C170.74 416 160 405.26 160 392V320H48C21.49 320 0 298.51 0 272V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V272C512 298.51 490.51 320 464 320zM192 384H320V320H192V384zM480 16C480 7.18 472.82 0 464 0H48C39.18 0 32 7.18 32 16V160H192V120C192 106.75 202.75 96 216 96H296C309.25 96 320 106.75 320 120V160H480V16zM224 128V160H288V128H224zM480 192H32V272C32 280.82 39.18 288 48 288H464C472.82 288 480 280.82 480 272V192z" />
+    <glyph glyph-name="broadcast-tower"
+      unicode="&#xF519;"
+      horiz-adv-x="576" d=" M40.55 448C34.35 448 28.58 444.4700000000001 26.01 438.83C9.45 402.57 0 362.41 0 320C0 277.6 9.45 237.43 26.01 201.17C28.59 195.53 34.36 192 40.55 192C52.25 192 59.75 204.0800000000001 54.89 214.72C40.26 246.85 32 282.45 32 320S40.26 393.15 54.9 425.28C59.75 435.92 52.26 448 40.55 448zM326.44 269.16C341.87 280.86 352 299.19 352 320C352 355.3 323.28 384 288 384S224 355.3 224 320C224 299.08 234.23 280.65 249.79 268.9700000000001L112.66 -46.4299999999999C110.9 -50.48 112.76 -55.1999999999999 116.81 -56.9599999999999L131.51 -63.3399999999999C135.56 -65.0999999999999 140.27 -63.2399999999999 142.03 -59.1899999999999L209.51 96H366.81L434.28 -59.19C436.04 -63.24 440.75 -65.1 444.8 -63.34L459.4999999999999 -56.96A8.005 8.005 0 0 1 463.6499999999999 -46.43L326.44 269.16zM288 352C305.67 352 320 337.67 320 320S305.67 288 288 288S256 302.3300000000001 256 320S270.33 352 288 352zM223.42 128L279.4500000000001 256.87C282.2700000000001 256.49 285.0700000000001 256 288.0000000000001 256C291.0300000000001 256 293.9400000000001 256.49 296.8600000000001 256.9L352.9 128H223.42zM118.99 256C129.69 256 137.09 266.24 134.14 276.53C130.17 290.35 128 304.91 128 320S130.17 349.65 134.14 363.4700000000001C137.09 373.76 129.69 384 118.99 384H118.84C111.91 384 105.56 379.58 103.63 372.93C98.73 356.11 96 338.38 96 320S98.73 283.89 103.63 267.07C105.57 260.41 111.91 256 118.84 256H118.99zM457.16 384H457.01C446.3100000000001 384 438.9100000000001 373.76 441.8600000000001 363.4700000000001C445.83 349.65 448 335.0900000000001 448 320S445.83 290.35 441.86 276.53C438.9100000000001 266.24 446.31 256 457.01 256H457.16C464.1 256 470.4399999999999 260.42 472.38 267.07C477.27 283.89 480 301.61 480 320S477.27 356.11 472.38 372.93C470.44 379.58 464.09 384 457.16 384zM549.99 438.83C547.41 444.4700000000001 541.65 448 535.45 448C523.75 448 516.26 435.92 521.11 425.28C535.74 393.15 544 357.55 544 320S535.74 246.85 521.1 214.72C516.25 204.07 523.74 192 535.44 192C541.6400000000001 192 547.4100000000001 195.53 549.98 201.17C566.56 237.43 576 277.6 576 320C576 362.41 566.56 402.57 549.99 438.83z" />
+    <glyph glyph-name="broom"
+      unicode="&#xF51A;"
+      horiz-adv-x="640" d=" M638.26 432.4700000000001L628.3 444.98C625.55 448.43 620.52 449.01 617.06 446.26L372.9100000000001 253.33L327.4700000000001 310.4100000000001C322.49 316.6600000000001 312.9100000000001 316.39 308.29 309.88L259.67 241.29C231.14 240.9700000000001 152.47 236.32 101.66 195.92C38.78 145.94 0 -63.39 0 -63.39C15.38 -64.0599999999999 215.11 -70.21 275.65 -22.09C326.58 18.39 348.97 94.13 355.64 121.6900000000001L433.11 152.96C440.55 155.96 443 165.28 438.01 171.5600000000001L392.84 228.3100000000001L636.98 421.24A7.985 7.985 0 0 1 638.26 432.4700000000001zM255.73 2.38C229.03 -18.84 146.29 -32.02 39.8 -32.02H39.2C43.26 -14.27 48.16 4.8 53.6 23.9L122.39 78.58C127.35 82.52 123.61 90.46 117.42 89.15L71.44 79.4400000000001C86.45 121.0800000000001 103.78 156.7500000000001 121.59 170.9C155.19 197.6100000000001 211.28 208.1400000000001 255.49 209.28L323.26 124.15C316.07 96.61 296.09 34.46 255.73 2.3800000000001zM342.83 151.25L285.89 222.78L314.29 263.25C316.59 266.53 321.4 266.68 323.9 263.54L391.51 178.61C394.03 175.45 392.76 170.76 389 169.28L342.83 151.25z" />
+    <glyph glyph-name="browser"
+      unicode="&#xF37E;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM32 368C32 376.8 39.2 384 48 384H96V320H32V368zM480 16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V288H480V16zM480 320H128V384H464C472.8 384 480 376.8 480 368V320z" />
+    <glyph glyph-name="brush"
+      unicode="&#xF55D;"
+      horiz-adv-x="384" d=" M352 448H32C14.33 448 0 433.67 0 416V128C0 92.65 28.66 64 64 64H128V0C128 -35.35 156.66 -64 192 -64S256 -35.35 256 0V64H320C355.3400000000001 64 384 92.65 384 128V416C384 433.67 369.67 448 352 448zM352 128C352 110.36 337.64 96 320 96H224V0C224 -17.64 209.64 -32 192 -32S160 -17.64 160 0V96H64C46.36 96 32 110.36 32 128V160H352V128zM352 192H32V416H352V192z" />
+    <glyph glyph-name="bug"
+      unicode="&#xF188;"
+      horiz-adv-x="576" d=" M544 176H480V297.373L515.313 332.686C521.562 338.934 521.562 349.065 515.313 355.313C509.065 361.561 498.934 361.561 492.686 355.313L457.373 320H417C417 390.74 359.751 448 289 448C218.26 448 161 390.751 161 320H118.627L75.314 363.313C69.065 369.5610000000001 58.935 369.5610000000001 52.686 363.313C46.438 357.065 46.438 346.934 52.686 340.6860000000001L96 297.373V176H32C23.164 176 16 168.837 16 160S23.164 144 32 144H96V120C96 83.366 107.256 49.314 126.484 21.111L68.687 -36.686C62.438 -42.934 62.438 -53.0650000000001 68.687 -59.313C74.936 -65.562 85.066 -65.561 91.314 -59.313L146.93 -3.6970000000001C178.851 -35.971 223.128 -56 272 -56H304C352.872 -56 397.149 -35.971 429.0710000000001 -3.698L484.687 -59.314C490.936 -65.563 501.066 -65.562 507.314 -59.314C513.563 -53.066 513.563 -42.9349999999999 507.314 -36.687L449.5170000000001 21.11C468.744 49.314 480 83.366 480 120V144H544C552.837 144 560 151.163 560 160S552.837 176 544 176zM289 416C342.019 416 385 373.019 385 320H193C193 373.019 235.981 416 289 416zM304 -24V212C304 218.627 298.627 224 292 224H284C277.373 224 272 218.627 272 212V-24C192.598 -24 128 40.599 128 120V288H448V120C448 40.599 383.401 -24 304 -24z" />
+    <glyph glyph-name="building"
+      unicode="&#xF1AD;"
+      horiz-adv-x="448" d=" M192 341V301C192 294.373 186.627 289 180 289H140C133.373 289 128 294.373 128 301V341C128 347.627 133.373 353 140 353H180C186.627 353 192 347.627 192 341zM308 353H268C261.373 353 256 347.627 256 341V301C256 294.373 261.373 289 268 289H308C314.627 289 320 294.373 320 301V341C320 347.627 314.627 353 308 353zM180 257H140C133.373 257 128 251.627 128 245V205C128 198.373 133.373 193 140 193H180C186.627 193 192 198.373 192 205V245C192 251.627 186.627 257 180 257zM308 257H268C261.373 257 256 251.627 256 245V205C256 198.373 261.373 193 268 193H308C314.627 193 320 198.373 320 205V245C320 251.627 314.627 257 308 257zM180 161H140C133.373 161 128 155.627 128 149V109C128 102.373 133.373 97 140 97H180C186.627 97 192 102.373 192 109V149C192 155.627 186.627 161 180 161zM308 161H268C261.373 161 256 155.627 256 149V109C256 102.373 261.373 97 268 97H308C314.627 97 320 102.373 320 109V149C320 155.627 314.627 161 308 161zM448 -44V-64H0V-44C0 -37.373 5.373 -32 12 -32H32V424C32 437.255 42.745 448 56 448H392C405.255 448 416 437.255 416 424V-32H436C442.627 -32 448 -37.373 448 -44zM384 -32V416H64V-32H192V53C192 59.627 197.373 65 204 65H244C250.627 65 256 59.627 256 53V-32H384z" />
+    <glyph glyph-name="bullhorn"
+      unicode="&#xF0A1;"
+      horiz-adv-x="576" d=" M544 263.12V416C544 424.74 537.02 448 512.01 448H512C504.88 448 497.81 445.62 492.02 440.98L406.99 372.95C364.28 338.81 310.6600000000001 320 256 320H64C28.65 320 0 291.35 0 256V160C0 124.65 28.65 96 64 96L63.52 64C63.52 24.23 72.78 -13.35 89.08 -46.94C94.27 -57.63 105.6 -64 117.48 -64H223.76C249.81 -64 265.45 -34.16 249.66 -13.44C233.26 8.08 223.51 34.92 223.51 64C223.51 75.11 225.13 85.79 227.92 96H256C310.66 96 364.28 77.19 406.98 43.05L492.01 -24.98A32.023 32.023 0 0 1 511.99 -32C536.91 -32 543.99 -9.22 543.99 0V152.88C563.04 163.97 575.99 184.37 575.99 208C576 231.63 563.05 252.03 544 263.12zM223.76 -32L117.87 -31.97C103.04 -1.41 95.52 30.22 95.51 63.52L95.99 95.52L96 96H195.33C193.02 85.3 191.52 74.57 191.52 64C191.52 28.71 202.82 -4.78 223.76 -32zM64 128C46.36 128 32 142.36 32 160V256C32 273.64 46.36 288 64 288H256V128H64zM512.05 1.07C512.01 0.82 511.92 0.49 511.8 0.17L426.97 68.04C386.99 100 338.54 119.86 288 125.87V290.13C338.54 296.14 386.99 316 426.98 347.9700000000001L511.85 415.87C511.88 415.8400000000001 511.91 415.82 511.93 415.82C511.97 415.82 511.99 415.87 512 415.99L512.05 1.07z" />
+    <glyph glyph-name="bullseye-arrow"
+      unicode="&#xF648;"
+      horiz-adv-x="496" d=" M305.05 349.26L329.01 295.64L236.68 203.31C230.43 197.06 230.43 186.93 236.68 180.69C239.8 177.57 243.9 176 247.99 176S256.18 177.56 259.3 180.69L351.63 273.02L405.25 249.06A20.547 20.547 0 0 1 426.29 254.02L489.96 317.69C500.76 328.49 496.42 346.89 481.92 351.73L426.26 370.28L407.71 425.93C404.73 434.92 396.54 440 388.1600000000001 440C383.0200000000001 440 377.8 438.08 373.69 433.9700000000001L310.02 370.3A20.582 20.582 0 0 1 305.05 349.26zM383.23 398.25L395.93 360.16L400.99 344.98L416.17 339.92L454.26 327.22L409.33 282.29L360.24 304.2200000000001L338.31 353.31L383.23 398.25zM484.43 266.9L458.25 240.72C461.88 225.03 464 208.77 464 192C464 72.9 367.1 -24 248 -24S32 72.9 32 192S128.9 408 248 408C264.78 408 281.04 405.89 296.7200000000001 402.25L322.9000000000001 428.43A247.848 247.848 0 0 1 248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192C496 218.11 491.91 243.26 484.43 266.9zM274.7 339.15A53.056 53.056 0 0 0 272.02 353.5900000000001C264.12 354.75 256.23 356 248 356C157.35 356 84 282.64 84 192C84 101.35 157.36 28 248 28C338.65 28 412 101.36 412 192C412 200.35 410.75 208.35 409.55 216.36C404.6600000000001 216.57 399.79 217.15 395.14 218.7C393.02 219.41 396.16 218.08 374.45 227.77C377.7 216.32 380 204.48 380 192C380 119.21 320.79 60 248 60S116 119.21 116 192S175.21 324 248 324C260.48 324 272.32 321.7 283.77 318.45C274.08 340.15 275.41 337.01 274.7 339.15zM248 272C203.89 272 168 236.11 168 192S203.89 112 248 112S328 147.89 328 192C328 195.77 327.39 199.38 326.89 203.01L281.94 158.06L281.93 158.07C273.23 149.38 261.23 144 248 144C221.53 144 200 165.53 200 192C200 205.23 205.38 217.23 214.07 225.93L214.06 225.94L259.01 270.89C255.38 271.39 251.77 272 248 272z" />
+    <glyph glyph-name="bullseye-pointer"
+      unicode="&#xF649;"
+      horiz-adv-x="496" d=" M241.5 207.3L20.83 144.59C5.2 140.15 3.37 118.73 18.01 111.7L73.28 85.16L12.69 24.5699999999999C0.19 12.0699999999999 0.19 -8.1900000000001 12.69 -20.6800000000001L35.31 -43.3000000000001C41.56 -49.5500000000001 49.75 -52.6700000000001 57.94 -52.6700000000001S74.32 -49.5500000000001 80.57 -43.3000000000001L141.16 17.29L167.7 -37.98C170.95 -44.74 177.26 -47.99 183.56 -47.99C190.9 -47.99 198.2 -43.58 200.6 -35.16L263.32 185.51C267.09 198.81 254.79 211.08 241.5 207.3zM180.15 9.98L150.45 71.83L57.94 -20.6799999999999L35.32 1.9400000000001L127.83 94.4500000000001L65.99 124.16L225.49 169.49L180.15 9.98zM328 192C328 236.11 292.11 272 248 272C214.26 272 185.47 250.93 173.74 221.31C228.07 236.76 236.67 240 248 240C274.4700000000001 240 296 218.47 296 192C296 180.74 292.9 172.56 277.31 117.74C306.93 129.47 328 158.26 328 192zM251.92 28.39C340.71 30.53 412 102.71 412 192C412 282.65 338.64 356 248 356C158.69 356 86.53 284.7 84.39 195.92L117.34 205.28C124.12 271.77 179.76 324 248 324C320.79 324 380 264.79 380 192C380 123.77 327.76 68.12 261.29 61.34L251.92 28.39zM248 440C111.03 440 0 328.9700000000001 0 192C0 184.7 0.47 177.51 1.09 170.37C4.55 172.34 8.09 174.24 12.08 175.37L32.55 181.19C32.37 184.79 32 188.35 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24C244.35 -24 240.79 -23.63 237.19 -23.45L231.37 -43.91C230.23 -47.9299999999999 228.22 -51.41 226.23 -54.89C233.42 -55.52 240.65 -55.99 248.0000000000001 -55.99C384.9700000000001 -55.99 496 55.04 496 192.01S384.9700000000001 440 248 440z" />
+    <glyph glyph-name="bullseye"
+      unicode="&#xF140;"
+      horiz-adv-x="496" d=" M248 356C157.35 356 84 282.64 84 192C84 101.35 157.36 28 248 28C338.65 28 412 101.36 412 192C412 282.65 338.64 356 248 356zM248 60C175.21 60 116 119.21 116 192S175.21 324 248 324S380 264.79 380 192S320.79 60 248 60zM248 272C203.89 272 168 236.11 168 192S203.89 112 248 112S328 147.89 328 192S292.11 272 248 272zM248 144C221.53 144 200 165.53 200 192S221.53 240 248 240S296 218.47 296 192S274.4700000000001 144 248 144zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="burn"
+      unicode="&#xF46A;"
+      horiz-adv-x="384" d=" M192 448C79.7 346.7 0 227.1 0 147.5C0 23 79 -64 192 -64S384 23 384 147.5C384 227.4 303.8 347.1 192 448zM98.9 62.8C98.9 76.1 103.1 124 192 224C280.9 124 285.1 76.1 285.1 62.8C285.1 14.3 256.2000000000001 -21.3 212.7 -29.9C205.9 -30.7 199.2 -32 192 -32S178.1 -30.8 171.3000000000001 -29.9C127.8000000000001 -21.4 98.9 14.3 98.9 62.8zM310.9 23.1C314.6 35.5 317.1 48.6 317.1 62.8C317.1 143.7000000000001 204.4 258.3 192 272.2000000000001C179.1 257.7000000000001 66.9 143.6 66.9 62.8C66.9 48.6 69.4 35.5 73.1 23.1C47.3 54.4 32 97.1 32 147.5C32 238.3 154.6 363.3 192 399.4C229.4 363.4 352 238.3 352 147.5C352 97.1 336.7 54.4 310.9 23.1z" />
+    <glyph glyph-name="bus-alt"
+      unicode="&#xF55E;"
+      horiz-adv-x="512" d=" M384 64C401.67 64 416 78.33 416 96S401.67 128 384 128S352 113.67 352 96S366.33 64 384 64zM128 64C145.67 64 160 78.33 160 96S145.67 128 128 128S96 113.67 96 96S110.33 64 128 64zM488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H144C161.67 -64 176 -49.67 176 -32V0H336V-32C336 -49.67 350.33 -64 368 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM63.97 320H240V192H63.99L63.97 320zM144 -32H96V0H144V-32zM416 -32H368V0H416V-32zM448 32H64L63.99 160H448.01L448 32zM448.01 192H272V320H448.03L448.01 192zM448.03 352H320V360C320 373.26 309.25 384 296 384H216C202.75 384 192 373.26 192 360V352H63.97V367.69C67.31 381 131.41 416 256 416S444.69 381 448.03 367.69V352z" />
+    <glyph glyph-name="bus-school"
+      unicode="&#xF5DD;"
+      horiz-adv-x="512" d=" M128 128C110.33 128 96 113.67 96 96S110.33 64 128 64S160 78.33 160 96S145.67 128 128 128zM384 128C366.33 128 352 113.67 352 96S366.33 64 384 64S416 78.33 416 96S401.67 128 384 128zM480 320H448V374.15C448 415.51 362.9700000000001 448 256 448S64 415.51 64 374.15V320H32C14.33 320 0 305.67 0 288V192C0 174.33 14.33 160 32 160H48.7C38.43 146.63 32 130.18 32 112V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H144C161.67 -64 176 -49.67 176 -32V0H336V-32C336 -49.67 350.33 -64 368 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V112C480 130.18 473.57 146.63 463.3 160H480C497.67 160 512 174.33 512 192V288C512 305.67 497.67 320 480 320zM256 416C358.96 416 412.91 385.41 416 374.15V352H320V360C320 373.26 309.25 384 296 384H216C202.75 384 192 373.26 192 360V352H95.96V373.79C99.09 385.41 153.04 416 256 416zM416 320V190.39A80.321 80.321 0 0 1 400 192H272V320H416zM240 320V192H112C106.52 192 101.17 191.43 96 190.39V320H240zM32 192V288H64V192H32zM144 -32H96V0H144V-32zM416 -32H368V0H416V-32zM448 32H64V112C64 138.47 85.53 160 112 160H400C426.4700000000001 160 448 138.47 448 112V32zM480 192H448V288H480V192z" />
+    <glyph glyph-name="bus"
+      unicode="&#xF207;"
+      horiz-adv-x="512" d=" M128 64C145.67 64 160 78.33 160 96S145.67 128 128 128S96 113.67 96 96S110.33 64 128 64zM384 64C401.67 64 416 78.33 416 96S401.67 128 384 128S352 113.67 352 96S366.33 64 384 64zM488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H144C161.67 -64 176 -49.67 176 -32V0H336V-32C336 -49.67 350.33 -64 368 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM144 -32H96V0H144V-32zM416 -32H368V0H416V-32zM448 32H64L63.99 160H448.01L448 32zM448.01 192H63.99L63.98 320H448.0300000000001L448.0100000000001 192zM448.03 352H63.97V367.69C67.31 381 131.41 416 256 416S444.69 381 448.03 367.69V352z" />
+    <glyph glyph-name="business-time"
+      unicode="&#xF64A;"
+      horiz-adv-x="640" d=" M48 32C39.18 32 32 39.18 32 48V192H192V152C192 138.75 202.75 128 216 128H296C309.25 128 320 138.75 320 152V192H360.23C370.29 204.19 382.04 214.9 395 224H32V304C32 312.82 39.18 320 48 320H464C472.82 320 480 312.82 480 304V255.19C485.28 255.67 490.6 256 496 256S506.72 255.67 512 255.19V304C512 330.51 490.51 352 464 352H352V424C352 437.26 341.26 448 328 448H184C170.74 448 160 437.26 160 424V352H48C21.49 352 0 330.51 0 304V48C0 21.49 21.49 0 48 0H339.37A174.574 174.574 0 0 0 326.8 32H48zM224 192H288V160H224V192zM192 416H320V352H192V416zM550.29 96H512V150.29C512 155.63 507.63 160 502.29 160H489.72C484.3800000000001 160 480.01 155.63 480.01 150.29V73.72C480.01 68.3800000000001 484.3800000000001 64.0100000000001 489.72 64.0100000000001H550.2900000000001C555.6300000000001 64.0100000000001 560.0000000000001 68.3800000000001 560.0000000000001 73.72V86.29C560.0000000000001 91.63 555.6300000000001 96 550.2900000000001 96zM496 224C416.41 224 352 159.59 352 80S416.41 -64 496 -64S640 0.41 640 80S575.59 224 496 224zM496 -32C434.24 -32 384 18.24 384 80S434.24 192 496 192S608 141.76 608 80S557.76 -32 496 -32z" />
+    <glyph glyph-name="cabinet-filing"
+      unicode="&#xF64B;"
+      horiz-adv-x="512" d=" M464 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V400C512 426.51 490.51 448 464 448zM480 -16C480 -24.82 472.82 -32 464 -32H48C39.18 -32 32 -24.82 32 -16V176H480V-16zM480 208H32V400C32 408.82 39.18 416 48 416H464C472.82 416 480 408.82 480 400V208zM336 352H176C167.16 352 160 344.8400000000001 160 336V296C160 291.5800000000001 163.58 288 168 288H184C188.42 288 192 291.5800000000001 192 296V320H320V296C320 291.5800000000001 323.58 288 328 288H344C348.42 288 352 291.5800000000001 352 296V336C352 344.8400000000001 344.84 352 336 352zM168 32H184C188.42 32 192 35.58 192 40V64H320V40C320 35.58 323.58 32 328 32H344C348.42 32 352 35.58 352 40V80C352 88.84 344.84 96 336 96H176C167.16 96 160 88.84 160 80V40C160 35.58 163.58 32 168 32z" />
+    <glyph glyph-name="calculator-alt"
+      unicode="&#xF64C;"
+      horiz-adv-x="480" d=" M72 288H184C188.42 288 192 291.5800000000001 192 296V312C192 316.42 188.42 320 184 320H72C67.58 320 64 316.42 64 312V296C64 291.5800000000001 67.58 288 72 288zM77.09 40.4L88.4 29.09C91.52 25.97 96.59 25.97 99.71 29.09L128 57.37L156.29 29.08C159.41 25.96 164.48 25.96 167.6 29.08L178.91 40.39C182.03 43.51 182.03 48.58 178.91 51.7L150.63 80L178.92 108.29C182.04 111.41 182.04 116.48 178.92 119.6L167.61 130.91C164.49 134.03 159.42 134.03 156.3 130.91L128 102.63L99.71 130.92C96.59 134.04 91.52 134.04 88.4 130.92L77.09 119.6C73.97 116.48 73.97 111.41 77.09 108.29L105.37 80L77.08 51.72A8.006 8.006 0 0 1 77.09 40.4zM448 432H32C14.33 432 0 417.67 0 400V-16C0 -33.67 14.33 -48 32 -48H448C465.67 -48 480 -33.67 480 -16V400C480 417.67 465.67 432 448 432zM224 -16H32V176H224V-16zM224 208H32V400H224V208zM448 -16H256V176H448V-16zM448 208H256V400H448V208zM296 288H336V248C336 243.58 339.58 240 344 240H360C364.42 240 368 243.58 368 248V288H408C412.42 288 416 291.5800000000001 416 296V312C416 316.42 412.42 320 408 320H368V360C368 364.42 364.42 368 360 368H344C339.58 368 336 364.42 336 360V320H296C291.58 320 288 316.42 288 312V296C288 291.5800000000001 291.58 288 296 288zM296 32H408C412.42 32 416 35.58 416 40V56C416 60.42 412.42 64 408 64H296C291.58 64 288 60.42 288 56V40C288 35.58 291.58 32 296 32zM296 96H408C412.42 96 416 99.58 416 104V120C416 124.42 412.42 128 408 128H296C291.58 128 288 124.42 288 120V104C288 99.58 291.58 96 296 96z" />
+    <glyph glyph-name="calculator"
+      unicode="&#xF1EC;"
+      horiz-adv-x="448" d=" M80 0H368C376.84 0 384 7.16 384 16V208C384 216.84 376.84 224 368 224H80C71.16 224 64 216.84 64 208V16C64 7.16 71.16 0 80 0zM288 96V192H352V32H288V96zM192 192H256V128H192V192zM192 96H256V32H192V96zM96 192H160V128H96V192zM96 96H160V32H96V96zM400 448H48C22.4 448 0 425.6 0 400V-16C0 -41.6 22.4 -64 48 -64H400C425.6 -64 448 -41.6 448 -16V400C448 425.6 425.6 448 400 448zM416 -16C416 -23.93 407.93 -32 400 -32H48C40.07 -32 32 -23.93 32 -16V256H416V-16zM416 288H32V400C32 407.93 40.07 416 48 416H400C407.93 416 416 407.93 416 400V288z" />
+    <glyph glyph-name="calendar-alt"
+      unicode="&#xF073;"
+      horiz-adv-x="448" d=" M400 384H352V440C352 444.4 348.4 448 344 448H328C323.6 448 320 444.4 320 440V384H128V440C128 444.4 124.4 448 120 448H104C99.6 448 96 444.4 96 440V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM138.7 -32H48C39.2 -32 32 -24.8 32 -16V42.7H138.7V-32zM138.7 74.7H32V149.4H138.7V74.7zM32 181.3V256H138.7V181.3H32zM277.3 -32H170.7V42.7H277.4V-32zM277.3 74.7H170.7V149.4H277.4V74.7zM170.7 181.3V256H277.4V181.3H170.7zM416 -16C416 -24.8 408.8 -32 400 -32H309.3V42.7H416V-16zM416 74.7H309.3V149.4H416V74.7zM416 181.3H309.3V256H416V181.3zM416 288H32V336C32 344.8 39.2 352 48 352H400C408.8 352 416 344.8 416 336V288z" />
+    <glyph glyph-name="calendar-check"
+      unicode="&#xF274;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.627 346.627 448 340 448H332C325.373 448 320 442.627 320 436V384H128V436C128 442.627 122.627 448 116 448H108C101.373 448 96 442.627 96 436V384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V336C448 362.51 426.51 384 400 384zM48 352H400C408.822 352 416 344.822 416 336V288H32V336C32 344.822 39.178 352 48 352zM400 -32H48C39.178 -32 32 -24.822 32 -16V256H416V-16C416 -24.822 408.822 -32 400 -32zM333.533 162.937L198.742 29.227C194.042 24.564 186.454 24.585 181.779 29.273L114.421 96.825C109.738 101.522 109.749 109.126 114.445 113.81L122.95 122.29C127.647 126.973 135.251 126.9620000000001 139.934 122.266L190.376 71.679L308.158 188.516C312.867 193.187 320.471 193.157 325.1430000000001 188.448L333.6010000000001 179.9210000000001C338.2730000000001 175.2120000000001 338.2420000000001 167.6080000000001 333.5330000000001 162.9370000000001z" />
+    <glyph glyph-name="calendar-day"
+      unicode="&#xF783;"
+      horiz-adv-x="448" d=" M400 384H352V440C352 444.4 348.4 448 344 448H328C323.6 448 320 444.4 320 440V384H128V440C128 444.4 124.4 448 120 448H104C99.6 448 96 444.4 96 440V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16zM416 288H32V336C32 344.8 39.2 352 48 352H400C408.8 352 416 344.8 416 336V288zM112 64H208C216.8 64 224 71.2 224 80V176C224 184.8 216.8 192 208 192H112C103.2 192 96 184.8 96 176V80C96 71.2 103.2 64 112 64zM128 160H192V96H128V160z" />
+    <glyph glyph-name="calendar-edit"
+      unicode="&#xF333;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.6 346.6 448 340 448H332C325.4 448 320 442.6 320 436V384H128V436C128 442.6 122.6 448 116 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM48 352H400C408.8 352 416 344.8 416 336V288H32V336C32 344.8 39.2 352 48 352zM400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16C416 -24.8 408.8 -32 400 -32zM255.7 178.3L290.3 143.7C292.4000000000001 141.6 292.4000000000001 138.3 290.3 136.3L159.1 5.1L124 0.1C117.1 -0.9 111.1 5 112.1 12L117.1 47.1L248.3 178.3C250.3 180.3 253.7 180.3 255.7 178.3zM330.9 176.9L311.7 157.7000000000001C309.6 155.6 306.3 155.6 304.3 157.7000000000001L269.7 192.3000000000001C267.6 194.4 267.6 197.7000000000001 269.7 199.7000000000001L288.9 218.9C295.7 225.7000000000001 306.8 225.7000000000001 313.6 218.9L330.9 201.6C337.7 194.8 337.7 183.7000000000001 330.9 176.9z" />
+    <glyph glyph-name="calendar-exclamation"
+      unicode="&#xF334;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.6 346.6 448 340 448H332C325.4 448 320 442.6 320 436V384H128V436C128 442.6 122.6 448 116 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM48 352H400C408.8 352 416 344.8 416 336V288H32V336C32 344.8 39.2 352 48 352zM400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16C416 -24.8 408.8 -32 400 -32zM212.7 224H235.3C242.2 224 247.7 218.2 247.3 211.3L240.6 91.3C240.2 84.9 235 80 228.6 80H219.3C212.9 80 207.7 85 207.3 91.3L200.6 211.3C200.3 218.2 205.8 224 212.7 224zM252 32C252 16.5 239.5 4 224 4S196 16.5 196 32S208.5 60 224 60S252 47.5 252 32z" />
+    <glyph glyph-name="calendar-minus"
+      unicode="&#xF272;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.6 346.6 448 340 448H332C325.4 448 320 442.6 320 436V384H128V436C128 442.6 122.6 448 116 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM48 352H400C408.8 352 416 344.8 416 336V288H32V336C32 344.8 39.2 352 48 352zM400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16C416 -24.8 408.8 -32 400 -32zM308 96H140C133.4 96 128 101.4 128 108V116C128 122.6 133.4 128 140 128H308C314.6 128 320 122.6 320 116V108C320 101.4 314.6 96 308 96z" />
+    <glyph glyph-name="calendar-plus"
+      unicode="&#xF271;"
+      horiz-adv-x="448" d=" M320 116V108C320 101.4 314.6 96 308 96H240V28C240 21.4 234.6 16 228 16H220C213.4 16 208 21.4 208 28V96H140C133.4 96 128 101.4 128 108V116C128 122.6 133.4 128 140 128H208V196C208 202.6 213.4 208 220 208H228C234.6 208 240 202.6 240 196V128H308C314.6 128 320 122.6 320 116zM448 336V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H116C122.6 448 128 442.6 128 436V384H320V436C320 442.6 325.4 448 332 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336zM32 336V288H416V336C416 344.8 408.8 352 400 352H48C39.2 352 32 344.8 32 336zM416 -16V256H32V-16C32 -24.8 39.2 -32 48 -32H400C408.8 -32 416 -24.8 416 -16z" />
+    <glyph glyph-name="calendar-star"
+      unicode="&#xF736;"
+      horiz-adv-x="448" d=" M149.8 79L141.9 32.7C140.1 22.1 144.4 11.6 153.1 5.3C158 1.8 163.8 -0.1 169.5 -0.1C173.9 -0.1 178.4 1.0000000000001 182.5 3.2L224 25L265.5 3.2C275 -1.8 286.3 -1 295 5.3C303.7 11.6 308 22.1 306.2 32.7L298.3 79L331.8 111.7C339.5 119.2 342.2 130.2 338.9000000000001 140.4S326.9000000000001 157.9 316.3 159.4L269.9000000000001 166.2L249.2000000000001 208.3C244.3 218 234.7 224 224 224S203.7 218 199 208.4L178.3 166.3L131.9 159.5C121.3 158 112.6 150.7 109.3 140.5S108.7 119.3 116.4 111.8L149.8 79zM199.4 137.1L224 187L248.6 137.1L303.6 129.1L263.8 90.2000000000001L273.2 35.4L224 61.2000000000001L174.8 35.3000000000001L184.2 90.1000000000001L144.4 129.0000000000001L199.4 137.1000000000001zM400 384H352V440C352 444.4 348.4 448 344 448H328C323.6 448 320 444.4 320 440V384H128V440C128 444.4 124.4 448 120 448H104C99.6 448 96 444.4 96 440V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16zM416 288H32V336C32 344.8 39.2 352 48 352H400C408.8 352 416 344.8 416 336V288z" />
+    <glyph glyph-name="calendar-times"
+      unicode="&#xF273;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.6 346.6 448 340 448H332C325.4 448 320 442.6 320 436V384H128V436C128 442.6 122.6 448 116 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM48 352H400C408.8 352 416 344.8 416 336V288H32V336C32 344.8 39.2 352 48 352zM400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16C416 -24.8 408.8 -32 400 -32zM294.7 63.9C299.4 59.2 299.4 51.6 294.7 46.9L289 41.2C284.3 36.5 276.7 36.5 272 41.2L224 89.4L175.9 41.3C171.2 36.6 163.6 36.6 158.9 41.3L153.2 46.9999999999999C148.5 51.6999999999999 148.5 59.3 153.2 63.9999999999999L201.3 112.1L153.2 160.2C148.5 164.9 148.5 172.5 153.2 177.2L158.9 182.9C163.6 187.6 171.2 187.6 175.9 182.9L224 134.8L272.1 182.9C276.8 187.6 284.4000000000001 187.6 289.1 182.9L294.8 177.2C299.5 172.5 299.5 164.9 294.8 160.2L246.6 112L294.7 63.9z" />
+    <glyph glyph-name="calendar-week"
+      unicode="&#xF784;"
+      horiz-adv-x="448" d=" M400 384H352V440C352 444.4 348.4 448 344 448H328C323.6 448 320 444.4 320 440V384H128V440C128 444.4 124.4 448 120 448H104C99.6 448 96 444.4 96 440V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V256H416V-16zM416 288H32V336C32 344.8 39.2 352 48 352H400C408.8 352 416 344.8 416 336V288zM80 96H368C376.8 96 384 103.2 384 112V208C384 216.8 376.8 224 368 224H80C71.2 224 64 216.8 64 208V112C64 103.2 71.2 96 80 96zM96 192H352V128H96V192z" />
+    <glyph glyph-name="calendar"
+      unicode="&#xF133;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.627 346.627 448 340 448H332C325.373 448 320 442.627 320 436V384H128V436C128 442.627 122.627 448 116 448H108C101.373 448 96 442.627 96 436V384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V336C448 362.51 426.51 384 400 384zM48 352H400C408.822 352 416 344.822 416 336V288H32V336C32 344.822 39.178 352 48 352zM400 -32H48C39.178 -32 32 -24.822 32 -16V256H416V-16C416 -24.822 408.822 -32 400 -32z" />
+    <glyph glyph-name="camera-alt"
+      unicode="&#xF332;"
+      horiz-adv-x="512" d=" M256 40C189.8 40 136 93.8 136 160S189.8 280 256 280S376 226.2 376 160S322.2 40 256 40zM256 248C207.5 248 168 208.5 168 160S207.5 72 256 72S344 111.5 344 160S304.5 248 256 248zM224 160C224 177.6 238.4 192 256 192C264.8 192 272 199.2 272 208S264.8 224 256 224C220.7 224 192 195.3 192 160C192 151.2 199.2 144 208 144S224 151.2 224 160zM324.3 384C327.6 384 330.6 381.9 331.8 378.8L353.9000000000001 320H464C472.8 320 480 312.8 480 304V16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V304C32 312.8 39.2 320 48 320H158.2L178.3 373.6C180.6 379.8 186.6 384 193.3 384H324.3M324.3 416H193.3C173.3 416 155.4 403.6 148.4 384.9L136 352H48C21.5 352 0 330.5 0 304V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V304C512 330.5 490.5 352 464 352H376L361.7 390C355.9 405.7 341 416 324.3 416z" />
+    <glyph glyph-name="camera-retro"
+      unicode="&#xF083;"
+      horiz-adv-x="512" d=" M32 390V410C32 413.3 34.7 416 38 416H154C157.3 416 160 413.3 160 410V390C160 386.7 157.3 384 154 384H38C34.7 384 32 386.7 32 390zM376 160C376 226.2 322.2 280 256 280S136 226.2 136 160S189.8 40 256 40S376 93.8 376 160zM344 160C344 111.5 304.5 72 256 72S168 111.5 168 160S207.5 248 256 248S344 208.5 344 160zM224 160C224 177.6 238.4 192 256 192C264.8 192 272 199.2 272 208S264.8 224 256 224C220.7 224 192 195.3 192 160C192 151.2 199.2 144 208 144S224 151.2 224 160zM512 368V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V304C0 330.5 21.5 352 48 352H184L217.6 396.8C226.7 408.9 240.9 416 256 416H464C490.5 416 512 394.5 512 368zM224 352H464C469.6 352 475 351 480 349.3V368C480 376.8 472.8 384 464 384H256C251 384 246.2 381.6 243.2 377.6L224 352zM480 304C480 312.8 472.8 320 464 320H48C39.2 320 32 312.8 32 304V16C32 7.2 39.2 0 48 0H464C472.8 0 480 7.2 480 16V304z" />
+    <glyph glyph-name="camera"
+      unicode="&#xF030;"
+      horiz-adv-x="512" d=" M324.3 384C327.6 384 330.6 381.9 331.8 378.8L353.9000000000001 320H464C472.8 320 480 312.8 480 304V16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V304C32 312.8 39.2 320 48 320H158.2L178.3 373.6C180.6 379.8 186.6 384 193.3 384H324.3M324.3 416H193.3C173.3 416 155.4 403.6 148.4 384.9L136 352H48C21.5 352 0 330.5 0 304V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V304C512 330.5 490.5 352 464 352H376L361.7 390C355.9 405.7 341 416 324.3 416zM256 40C189.8 40 136 93.8 136 160S189.8 280 256 280S376 226.2 376 160S322.2 40 256 40zM256 248C207.5 248 168 208.5 168 160S207.5 72 256 72S344 111.5 344 160S304.5 248 256 248z" />
+    <glyph glyph-name="campfire"
+      unicode="&#xF6BA;"
+      horiz-adv-x="512" d=" M256 128C335.53 128 400 192.47 400 272C400 305.29 366.58 373.96 320 416C306.63 403.94 294.55 391.25 283.86 378.52C266.34 401.99 244.61 425.79 220 448C156.83 391.02 112 316.78 112 272C112 192.47 176.47 128 256 128zM220.1 403.58C234.21 389.2 247.14 374.21 258.22 359.37L282.39 327L308.37 357.95C311.93 362.19 315.6 366.36 319.36 370.42C349.96 333.4700000000001 368 288.79 368 272C368 210.24 317.76 160 256 160S144 210.24 144 272C144 299.75 172.05 353.63 220.1 403.5800000000001zM295.9100000000001 48L507.21 130.02A7.990000000000001 7.990000000000001 0 0 1 511.33 140.55L504.9300000000001 155.1999999999999A8.006 8.006 0 0 1 494.39 159.3299999999999L256 65.46L17.61 159.33A8.006 8.006 0 0 1 7.07 155.2L0.67 140.55A7.999 7.999 0 0 1 4.79 130.0200000000001L216.09 48L4.8 -34.02A7.993999999999999 7.993999999999999 0 0 1 0.68 -44.55L7.08 -59.1999999999999C8.85 -63.2499999999999 13.57 -65.0999999999999 17.62 -63.3199999999999L256 30.54L494.39 -63.33C498.44 -65.1 503.16 -63.26 504.93 -59.21L511.33 -44.56A7.999 7.999 0 0 1 507.21 -34.03L295.9100000000001 48z" />
+    <glyph glyph-name="campground"
+      unicode="&#xF6BB;"
+      horiz-adv-x="640" d=" M632 -32H608L339.74 338.81L402.74 425.9C405.3400000000001 429.4700000000001 404.54 434.4700000000001 400.9700000000001 437.07L388.04 446.4700000000001C384.4700000000001 449.07 379.4600000000001 448.2800000000001 376.86 444.7L320 366.1L263.14 444.7A7.999 7.999 0 0 1 251.96 446.4700000000001L239.03 437.07C235.46 434.4700000000001 234.66 429.4700000000001 237.26 425.9L300.26 338.81L32 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM222.19 -32L320 104.94L417.81 -32H222.19zM457.15 -32L333.02 141.77C326.64 150.7 313.36 150.7 306.98 141.77L182.85 -32H71.49L320 311.52L568.51 -32H457.15z" />
+    <glyph glyph-name="candle-holder"
+      unicode="&#xF6BC;"
+      horiz-adv-x="448" d=" M160 256C205.93 256 238 288.61 238 335.29C238 365.28 205.41 410.18 160 448C114.38 410 82 365.16 82 335.29C82 288.61 114.07 256 160 256zM160 404.93C191.56 373.9600000000001 206 346.67 206 335.3C206 306.13 188.37 288.01 160 288.01S114 306.13 114 335.3C114 346.67 128.44 373.9600000000001 160 404.93zM384 64C348.65 64 320 35.35 320 0C320 -11.72 323.38 -22.55 328.88 -32H256V192C256 209.67 241.67 224 224 224H96C78.33 224 64 209.67 64 192V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H384C419.35 -64 448 -35.35 448 0S419.35 64 384 64zM224 -32H96V192H128V144C128 135.16 135.16 128 144 128S160 135.16 160 144V192H224V-32zM384 -32C366.36 -32 352 -17.64 352 0S366.36 32 384 32S416 17.64 416 0S401.64 -32 384 -32z" />
+    <glyph glyph-name="candy-cane"
+      unicode="&#xF786;"
+      horiz-adv-x="512" d=" M497.5 356C469.6 414.9 411.8 448 352.4 448C324.5 448 296.2 440.7 270.6 425.4L243.1 409C227.9 399.9 223 380.3 232.1 365.1L264.9 310.2C274.3 294.5 294.2 290.4 308.8 299.2L336.3 315.6C372.2 337.1 405.9 282.6 369.1 260.7L15.6 50.4C0.4 41.3 -4.5 21.7 4.6 6.5L37.4 -48.4C43.4 -58.4 54 -64 64.9 -64C70.5 -64 76.1 -62.5 81.3 -59.5L428.6 147C500.3 189.9 533.2 280.5 497.5 356zM292.3 326.6L259.5 381.5C291.8 400.8 312.6 415.9 352 416V352C328.4 351.7 314.7 339.9 292.3 326.6zM383.3 344H384V411.9C420.7 402.7 451.8 377.9 468.6 342.4C472 335.2 474.6 327.7 476.5 320.1H408V320C407.8 320.3 407.7 320.6 407.6 320.9000000000001C401.7000000000001 330.8 393.2000000000001 338.6 383.3 344zM256.8 156.6L339.1 205.6L403.4000000000001 169.4L321.1 120.4L256.8 156.6zM289.4000000000001 101.5L201.9 49.5L137.6 85.7L225.1 137.7L289.4000000000001 101.5zM64.8 -32L31.9 22.9L105.8 66.8L170.1 30.6L64.8 -32zM432.8 189.5L370.8 224.4L385.4000000000001 233.1C405.4000000000001 245 416.3 266.3 416.3 288H479.3C478.4 251.5 462.1 215.2 432.8 189.5z" />
+    <glyph glyph-name="candy-corn"
+      unicode="&#xF6BD;"
+      horiz-adv-x="640" d=" M480 448C314.19 446.38 315.52 408.46 322.11 375.53C352.45 223.98 416.18 32 479.91 32H480C543.77 32.18 607.53 223.9 637.89 375.53C644.48 408.46 645.81 446.38 480 448zM479.91 64.01C467.16 64.04 440.6500000000001 101.07 412.48 172.72C456.26 176.45 503.68 176.45 547.46 172.73C519.26 101.09 492.6900000000001 64.05 479.91 64.01zM558.98 203.81C508.15 208.77 451.81 208.77 400.98 203.81C391.51 230.86 382.06 261.73 373.0300000000001 296.42C439.63 306.18 520.36 306.1900000000001 586.96 296.42C577.9200000000001 261.74 568.47 230.86 558.98 203.81zM606.63 381.8400000000001C602.83 362.8400000000001 598.8 344.9600000000001 594.6899999999999 327.62C523.3799999999999 338.44 436.6099999999999 338.44 365.3 327.62C361.19 344.9600000000001 357.17 362.85 353.37 381.85C351.39 391.74 351.82 394.29 352.1 394.93C352.2 395.13 364.95 414.83 480 415.99C595.06 414.83 607.81 395.12 607.9 394.93C608.18 394.28 608.61 391.73 606.63 381.84zM84.94 242.19C-31.16 123.79 -3.41 97.93 24.54 79.3C153.16 -6.41 333.9700000000001 -97.1 379.0300000000001 -52.04L379.0900000000001 -51.98C424.05 -6.76 333.5700000000001 173.8900000000001 247.82 302.5800000000001C229.2 330.5400000000001 203.34 358.2900000000001 84.94 242.1900000000001zM356.4 -29.4C347.37 -38.4 302.43 -30.96 231.86 -0.21C260.18 33.39 293.71 66.91 327.3 95.24C358.01 24.65 365.41 -20.33 356.4 -29.4zM313.46 125.37C274.01 92.93 234.17 53.09 201.74 13.64C175.91 26.07 147.4 41.22 116.49 59.36C156.68 113.35 213.76 170.44 267.76 210.63C285.89 179.72 301.04 151.21 313.46 125.37zM88.96 75.96C73.79 85.3200000000001 58.3 95.1200000000001 42.18 105.8700000000001C33.79 111.46 32.29 113.5700000000001 32.03 114.2200000000001C31.96 114.4300000000001 27.04 137.3800000000001 107.58 219.5600000000001C189.76 300.1000000000001 212.71 295.1800000000001 212.92 295.1100000000001C213.56 294.8600000000001 215.67 293.3500000000001 221.27 284.9600000000001C232.01 268.8400000000001 241.81 253.3400000000001 251.17 238.1800000000001C193.09 195.3900000000001 131.74 134.0300000000001 88.96 75.96z" />
+    <glyph glyph-name="cannabis"
+      unicode="&#xF55F;"
+      horiz-adv-x="512" d=" M494.42 124.57C493.22 125.17 474.82 134.35 446.4600000000001 142.4C494.76 206.64 510.4 272.1 511.1800000000001 275.44A31.977000000000004 31.977000000000004 0 0 1 502.8700000000001 305.06A31.997 31.997 0 0 1 480.01 314.67C477.8200000000001 314.67 475.6100000000001 314.44 473.4200000000001 313.98C470.0800000000001 313.28 407.1100000000001 299.63 342.7400000000001 258.01C334.1500000000001 355.81 284.8800000000001 430.4 282.6000000000001 433.81C276.64 442.68 266.67 448 256 448S235.36 442.68 229.42 433.81C227.13 430.4 177.86 355.8 169.28 258.01C104.91 299.63 41.94 313.28 38.6 313.98C36.41 314.44 34.2 314.67 32.01 314.67C23.5 314.67 15.23 311.27 9.15 305.06A31.990999999999996 31.990999999999996 0 0 1 0.84 275.44C1.61 272.1 17.26 206.65 65.56 142.4C37.19 134.35 18.79 125.17 17.6 124.57A32 32 0 0 1 0 96.02A32.005 32.005 0 0 1 17.54 67.45C19.84 66.28 71.96 40.26 138.51 37.56C135.67 30.72 134.25 26.5 134.1 26.05A31.999000000000002 31.999000000000002 0 0 1 164.48 -16C167.52 -16 170.59 -15.57 173.6 -14.67C175.26 -14.18 205.06 -5.12 239.99 16.04V-56C239.99 -60.42 243.57 -64 247.99 -64H263.99C268.4100000000001 -64 271.99 -60.42 271.99 -56V16.03C306.93 -5.1300000000001 336.73 -14.18 338.38 -14.68C341.39 -15.57 344.46 -16.01 347.5 -16.01C356.03 -16.01 364.36 -12.6 370.4700000000001 -6.29A31.981999999999996 31.981999999999996 0 0 1 377.8800000000001 26.04C377.7300000000001 26.49 376.3200000000001 30.71 373.4700000000001 37.55C440.0200000000001 40.26 492.13 66.28 494.4400000000001 67.44C505.21 72.89 511.9900000000001 83.94 511.9800000000001 96.01S505.1900000000001 119.13 494.4200000000001 124.57zM362.4 69.34C345.07 69.34 331.21 70.24 319.91 71.76C319.69 71.64 319.51 71.6 319.29 71.48C339.09 41.47 347.52 16 347.52 16S299.44 30.3 256 66.5C212.56 30.3 164.48 16 164.48 16S172.91 41.47 192.71 71.48C192.49 71.6 192.31 71.64 192.09 71.76C180.79 70.23 166.93 69.34 149.6 69.34C84.65 69.34 32 96 32 96S72.95 116.67 127.13 121.58C126.28 122.38 125.56 122.94 124.7 123.76C53.02 192.02 32 282.67 32 282.67S127.18 262.65 198.85 194.39C199.78 193.5 200.42 192.76 201.33 191.88C200.48 203.16 200 215.55 200 229.34C200 332.43 256 416 256 416S312 332.43 312 229.33C312 215.54 311.52 203.15 310.67 191.87C311.5800000000001 192.75 312.2200000000001 193.49 313.1500000000001 194.38C384.82 262.65 480 282.67 480 282.67S458.98 192.03 387.3 123.77C386.44 122.95 385.7200000000001 122.39 384.87 121.59C439.05 116.67 480 96 480 96S427.35 69.34 362.4 69.34z" />
+    <glyph glyph-name="capsules"
+      unicode="&#xF46B;"
+      horiz-adv-x="544" d=" M529 151.2L417.5 344.3C386.7 397.5 318.5 415.8 265.2 385.1C244 372.9 228.7 354.6 219.4 333.8C206.3 381 163.4 416 112 416C50.2 416 0 365.8 0 304V80C0 18.2 50.2 -32 112 -32S224 18.2 224 80V233.8C224.2 233.5 224.2 233.2 224.4 232.9L335.9 39.8C356.5 4.1 394.1 -15.9 432.7 -15.9C451.6 -15.9 470.7 -11.1 488.2 -1C514 13.9 532.4 37.9 540.1 66.7C547.9 95.4 543.9 125.4 529 151.2zM112 384C156.1 384 192 348.1 192 304V192H32V304C32 348.1 67.9 384 112 384zM112 0C67.9 0 32 35.9 32 80V160H192V80C192 35.9 156.1 0 112 0zM281.2 357.5C321.6 380.8 369.4 364 390 328.4L437.6 246L299.7000000000001 166.4L252.0000000000001 248.7C230.1000000000001 286.8 243.1000000000001 335.6 281.2000000000001 357.5zM509.4 74.8C503.9 54.3 490.7 37.1 472.3 26.4C434.3 4.5000000000001 385.5 17.6 363.5 55.5000000000001L315.6 138.5000000000001L453.5 218.1000000000001L501.4 135.1C512.1 116.9 514.9 95.4 509.4 74.8z" />
+    <glyph glyph-name="car-alt"
+      unicode="&#xF5DE;"
+      horiz-adv-x="480" d=" M423.18 252.19L398.24 328.77C387.51 361.71 356.81 384 322.17 384H157.83C123.19 384 92.49 361.7100000000001 81.76 328.78L56.82 252.2C24.02 242.21 0 212.08 0 176.01V48C0 21.53 21.53 0 48 0H64C90.47 0 112 21.53 112 48V64H368V48C368 21.53 389.53 0 416 0H432C458.47 0 480 21.53 480 48V176.01C480 212.08 455.98 242.21 423.18 252.19zM112.19 318.86C118.65 338.68 136.99 352 157.83 352H322.17C343.01 352 361.35 338.68 367.81 318.87L388.28 256.02H91.72L112.19 318.86zM80 48C80 39.17 72.81 32 64 32H48C39.19 32 32 39.17 32 48V64H80V48zM448 48C448 39.17 440.81 32 432 32H416C407.19 32 400 39.17 400 48V64H448V48zM448 128.01V96.01H32V176.01C32 202.48 53.53 224.01 80 224.01H400C426.4700000000001 224.01 448 202.48 448 176.01V128.01zM104.8 200C78.84 200 60 183.2 60 160.05C60 136.9 78.84 120.1 104.8 120.1L114.94 120C154.15 120 160 140.1 160 152.08C160 176.76 128.9 200 104.8 200zM114.94 144C111.43 144 107.92 144.1 104.8 144.1C92.32 144.1 84 150.48 84 160.05S92.32 176 104.8 176S136 161.64 136 152.07C136 144.9 125.47 144 114.94 144zM375.2 200C351.1 200 320 176.76 320 152.07C320 140.09 325.85 119.99 365.06 119.99L375.2 120.09C401.16 120.09 420 136.8900000000001 420 160.04C420 183.2000000000001 401.1600000000001 200 375.2 200zM375.2 144.1C372.08 144.1 368.57 144 365.06 144C354.5300000000001 144 344 144.9 344 152.07C344 161.64 362.7200000000001 176 375.2 176S396 169.62 396 160.05S387.68 144.1 375.2 144.1z" />
+    <glyph glyph-name="car-battery"
+      unicode="&#xF5DF;"
+      horiz-adv-x="512" d=" M480 320H448V368C448 376.8400000000001 440.84 384 432 384H304C295.1600000000001 384 288 376.8400000000001 288 368V320H224V368C224 376.8400000000001 216.84 384 208 384H80C71.16 384 64 376.8400000000001 64 368V320H32C14.33 320 0 305.67 0 288V32C0 14.33 14.33 0 32 0H480C497.67 0 512 14.33 512 32V288C512 305.67 497.67 320 480 320zM320 352H416V320H320V352zM96 352H192V320H96V352zM480 32H32V288H480V32zM424 192H384V232C384 236.42 380.42 240 376 240H360C355.58 240 352 236.42 352 232V192H312C307.58 192 304 188.42 304 184V168C304 163.58 307.58 160 312 160H352V120C352 115.58 355.58 112 360 112H376C380.42 112 384 115.58 384 120V160H424C428.42 160 432 163.58 432 168V184C432 188.42 428.42 192 424 192zM200 192H88C83.58 192 80 188.42 80 184V168C80 163.58 83.58 160 88 160H200C204.42 160 208 163.58 208 168V184C208 188.42 204.42 192 200 192z" />
+    <glyph glyph-name="car-bump"
+      unicode="&#xF5E0;"
+      horiz-adv-x="576" d=" M157.56 37.85L391.49 143.75L405.12 115.36C416.4 91.88 445.25 81.68 469.43 92.63L484.05 99.25C508.24 110.2 518.74 138.21 507.46 161.69L446.1 289.44C430.73 321.44 395.9400000000001 338.23 361.7200000000001 333.52L306.3 391.14C282.4600000000001 415.92 244.9100000000001 422.99 213.26 408.66L63.1 340.68C31.45 326.35 12.89 293.88 17.12 260.2200000000001L26.96 181.97C1.24 159.54 -7.87 122.87 7.5 90.88L68.86 -36.87C80.14 -60.35 108.99 -70.5499999999999 133.17 -59.6L147.79 -52.98C171.98 -42.03 182.48 -14.02 171.2 9.46L157.56 37.85zM478.23 148.46C481.99 140.6300000000001 478.48 131.29 470.43 127.65L455.81 121.03C447.76 117.3800000000001 438.13 120.7700000000001 434.37 128.6L420.74 156.99L464.6 176.85L478.23 148.46zM76.73 312.29L226.9 380.27C245.94 388.89 268.38 384.67 282.7200000000001 369.76L328.2100000000001 322.4700000000001L57.22 199.79L49.14 264.01C46.6 284.27 57.69 303.67 76.73 312.29zM134.16 -24.59L119.54 -31.21C111.49 -34.86 101.86 -31.47 98.1 -23.6300000000001L84.46 4.7599999999999L128.32 24.6199999999999L141.95 -3.77C145.72 -11.61 142.21 -20.95 134.16 -24.59zM70.83 33.14L36.74 104.11C25.46 127.59 35.96 155.6 60.15 166.55L352.56 298.93C376.75 309.88 405.6 299.68 416.87 276.2000000000001L437.32 233.62L450.95 205.23L407.09 185.37L377.85 172.13L70.83 33.14zM398.08 250.46C388.21 271 363.84 278.11 340.12 267.37C318.1 257.4 299.58 223.92 310.1 202.02C315.2000000000001 191.39 329.11 175.99 364.9400000000001 192.21L374.1600000000001 196.49C397.8900000000001 207.23 407.9400000000001 229.92 398.0800000000001 250.46zM363.94 217.78C361.09 216.49 357.93 214.95 354.72 213.5C345.1 209.14 335.09 205.58 332.03 211.95C327.95 220.44 338.94 240.92 350.34 246.08C361.74 251.24 372.06 249.03 376.14 240.54S375.34 222.94 363.94 217.78zM93.04 155.51C69.32 144.77 59.26 122.07 69.13 101.54C79 80.9999999999999 103.37 73.89 127.09 84.6299999999999L136.3900000000001 88.74C172.22 104.9599999999999 169.0000000000001 125.2099999999999 163.9 135.8299999999999C153.38 157.7299999999999 115.07 165.4799999999999 93.04 155.5099999999999zM126.17 110.03C122.96 108.58 119.71 107.22 116.87 105.92C105.47 100.7599999999999 95.15 102.98 91.07 111.47C86.99 119.96 91.88 129.06 103.28 134.22S137.9 134.39 141.98 125.9C145.03 119.54 135.79 114.38 126.17 110.03zM575.6600000000001 -44.75C564.94 7.09 518.1000000000001 44.72 464.3200000000001 44.72S363.7200000000001 7.09 353 -44.75C351.19 -53.41 356.75 -61.87 365.4100000000001 -63.67C373.9100000000001 -65.4 382.5 -59.9 384.3200000000001 -51.25C392.0100000000001 -14.19 425.6300000000001 12.72 464.3200000000001 12.72S536.6600000000001 -14.19 544.35 -51.25C545.91 -58.8 552.57 -64 559.98 -64C561.07 -64 562.1700000000001 -63.89 563.26 -63.67C571.91 -61.88 577.47 -53.41 575.66 -44.75z" />
+    <glyph glyph-name="car-crash"
+      unicode="&#xF5E1;"
+      horiz-adv-x="640" d=" M162.55 363.38C166.27 357.79 172.21 353.99 178.86 352.99C185.3 352.02 192.27 353.85 197.52 358.15L249.68 401.09C256.52 406.72 257.49 416.79 251.87 423.62C246.24 430.48 236.12 431.43 229.37 425.81L184.2 388.63L151.82 437.32C146.16 445.84 136.19 449.77 126.16 447.24C116.25 444.76 109.22 436.58 108.25 426.46L102.59 368.24L45.27 379.79C35.18 381.9 25.39 377.45 20.14 368.68S15.7 349.16 22.2 341.3L59.36 296.14L10.64 263.75C2.14 258.0900000000001 -1.74 248.05 0.73 238.16C3.2 228.25 11.36 221.22 21.54 220.22L79.76 214.58L68.2 157.24C66.45 148.58 72.08 140.15 80.73 138.4C81.79 138.18 82.86 138.09 83.92 138.09C91.36 138.09 98.05 143.34 99.58 150.93L112.92 217.18C114.23 223.76 112.7 230.63 108.7 236.02C104.7 241.43 98.57 244.9 91.86 245.55L47.52 249.85L84.58 274.49C90.21 278.19 93.99 284.15 94.99 290.79A23.68 23.68 0 0 1 89.83 309.49L61.55 343.87L105.24 335.07C111.68 333.8 118.71 335.3 124.12 339.32C129.53 343.32 132.96 349.4600000000001 133.62 356.12L137.9 400.4600000000001L162.55 363.38zM281.0800000000001 230.96C256.0100000000001 237.68 233.4600000000001 226.33 227.4700000000001 203.97C221.48 181.61 235.3300000000001 160.5 260.4000000000001 153.78L270.17 151.06C308.04 140.91 318.9000000000001 158.81 322 170.38C328.38 194.22 304.36 224.72 281.08 230.9599999999999zM276.3700000000001 174.24C272.9800000000001 175.15 269.6200000000001 176.15 266.6000000000001 176.96C254.5500000000001 180.1900000000001 248.1600000000001 188.5100000000001 250.6400000000001 197.75C253.1200000000001 206.9900000000001 262.8000000000001 211 274.8600000000001 207.7700000000001C286.9100000000001 204.5400000000001 301.2800000000001 185.8300000000001 298.8000000000001 176.5800000000001C296.9500000000001 169.66 286.5400000000001 171.5200000000001 276.3700000000001 174.2400000000001zM602.1100000000001 198.97L597.8400000000001 279.39C596.0000000000001 313.98 572.1100000000001 343.45 538.6600000000002 352.42L379.92 394.96C346.4600000000001 403.92 311.04 390.3400000000001 292.1500000000001 361.31L248.2400000000001 293.8C213.97 292.64 182.97 269.76 173.6400000000001 234.92L136.37 95.83C129.5200000000001 70.2600000000001 144.7400000000001 43.89 170.31 37.04L185.76 32.9C211.33 26.05 237.7 41.28 244.55 66.84L252.83 97.7500000000001L500.11 31.4900000000001L491.83 0.58C484.98 -24.99 500.2 -51.36 525.77 -58.21L541.23 -62.35C566.8000000000001 -69.1999999999999 593.1700000000001 -53.98 600.02 -28.41L637.29 110.6800000000001C646.61 145.5100000000001 631.2099999999999 180.84 602.11 198.9700000000001zM318.9700000000001 343.86C330.3400000000001 361.33 351.5 369.45 371.63 364.05L530.37 321.52C550.5 316.13 564.77 298.52 565.88 277.7L569.39 211.69L282.93 288.45L318.9700000000001 343.86zM213.64 75.11C211.35 66.58 202.56 61.51 194.04 63.8L178.58 67.94C170.07 70.22 164.98 79.01 167.27 87.54L175.55 118.4500000000001L221.92 106.03L213.64 75.11zM569.0999999999999 -20.14C566.81 -28.67 558.0199999999999 -33.73 549.4999999999999 -31.45L534.0399999999998 -27.31C525.5299999999999 -25.03 520.4399999999998 -16.24 522.7299999999999 -7.71L531.0099999999999 23.2L577.3699999999999 10.78L569.0999999999999 -20.14zM606.3699999999999 118.96L593.9499999999999 72.59L585.67 41.68L539.3 54.1L508.3899999999999 62.38L183.8399999999999 149.34L204.5499999999999 226.61C211.3999999999999 252.17 237.7699999999999 267.4 263.3399999999999 260.55L572.4399999999999 177.73C597.9899999999999 170.9 613.2199999999999 144.52 606.3699999999999 118.96zM542.2599999999999 160.98C518.9799999999999 167.22 482.9299999999999 152.82 476.5399999999998 128.97C473.4399999999998 117.4 473.8899999999999 96.47 511.7599999999999 86.33L521.5799999999999 83.8000000000001C546.65 77.08 569.1999999999999 88.4300000000001 575.1899999999999 110.7900000000001C581.18 133.1500000000001 567.3299999999999 154.2600000000001 542.26 160.9800000000001zM552.0099999999999 117C549.5299999999999 107.76 539.8399999999999 103.75 527.7899999999998 106.98C524.7799999999999 107.79 521.3599999999999 108.6 517.9699999999998 109.51C507.7999999999998 112.23 497.8599999999998 115.83 499.7199999999998 122.76C502.1999999999998 132 523.9899999999998 141.03 536.0499999999998 137.8C548.0999999999998 134.56 554.4799999999998 126.25 552.0099999999999 117z" />
+    <glyph glyph-name="car-garage"
+      unicode="&#xF5E2;"
+      horiz-adv-x="640" d=" M635.88 288L327.78 445.98C322.9 448.67 317.09 448.67 312.22 445.98L4.1199999999999 284.98C0.2499999999999 282.83 -1.1400000000001 277.96 1.0099999999999 274.1L8.7899999999999 260.11C10.9399999999999 256.25 15.8099999999999 254.86 19.6699999999999 257.01L320 413.7L620.3299999999999 260.02C624.1899999999999 257.88 629.06 259.26 631.1999999999999 263.12L638.9899999999999 277.11C641.1399999999999 280.98 639.7499999999999 285.85 635.8799999999999 288zM493.38 186.26L478.23 232.76C467.5 265.69 436.8 287.98 402.1600000000001 287.98H237.83C203.19 287.98 172.49 265.69 161.76 232.76L146.61 186.26C117.01 174.53 96 145.78 96 112V-16C96 -42.47 117.53 -64 144 -64H160C186.47 -64 208 -42.47 208 -16V0H432V-16C432 -42.47 453.53 -64 480 -64H496C522.47 -64 544 -42.47 544 -16V112C544 145.78 522.99 174.53 493.38 186.26zM192.19 222.85A47.888 47.888 0 0 0 237.83 255.98H402.17C423.01 255.98 441.35 242.66 447.81 222.85L457.86 192H182.14L192.19 222.85zM176 -16C176 -24.83 168.81 -32 160 -32H144C135.19 -32 128 -24.83 128 -16V0H176V-16zM512 -16C512 -24.83 504.81 -32 496 -32H480C471.19 -32 464 -24.83 464 -16V0H512V-16zM512 64V32H128V112C128 138.47 149.53 160 176 160H464C490.47 160 512 138.47 512 112V64zM439.2 135.99C415.1 135.99 384 112.75 384 88.06C384 76.08 389.85 55.99 429.06 55.99L439.2 56.09C465.16 56.09 484 72.89 484 96.04C484 119.19 465.16 135.99 439.2 135.99zM439.2 80.09C436.08 80.09 432.57 79.99 429.06 79.99C418.5300000000001 79.99 408 80.89 408 88.06C408 97.63 426.7200000000001 111.99 439.2 111.99S460 105.61 460 96.04S451.67 80.09 439.2 80.09zM200.8 135.99C174.84 135.99 156 119.19 156 96.04C156 72.89 174.84 56.09 200.8 56.09L210.94 55.99C250.15 55.99 256 76.09 256 88.06C256 112.75 224.9 135.99 200.8 135.99zM210.94 79.99C207.43 79.99 203.92 80.09 200.8 80.09C188.32 80.09 180 86.47 180 96.04S188.32 111.99 200.8 111.99S232 97.63 232 88.06C232 80.89 221.47 79.99 210.94 79.99z" />
+    <glyph glyph-name="car-mechanic"
+      unicode="&#xF5E3;"
+      horiz-adv-x="512" d=" M510.15 394.7200000000001C498.82 426.59 468.6 448 434.94 448C408.91 448 385.9700000000001 435.31 371.35 416H140.65C126.04 435.31 103.09 448 77.06 448C43.4 448 13.18 426.59 1.85 394.7200000000001A31.966 31.966 0 0 1 4.29 368A32.036 32.036 0 0 1 1.85 341.28C13.18 309.41 43.4 288 77.06 288C103.08 288 126.01 300.68 140.63 319.9700000000001H371.37C385.99 300.68 408.92 288 434.94 288C468.6 288 498.83 309.41 510.15 341.28A32.04 32.04 0 0 1 507.71 368C512.38 376.08 513.31 385.8400000000001 510.15 394.7200000000001zM434.94 352H480C473.39 333.4 455.81 320 434.94 320S396.49 333.4 389.88 352H122.13C115.52 333.4 97.94 320 77.07 320S38.61 333.4 32 352H77.06L93.06 368L77.06 384H32C38.61 402.6 56.19 416 77.06 416C97.94 416 115.53 402.5900000000001 122.13 383.9700000000001H389.86C396.4700000000001 402.5900000000001 414.06 416 434.94 416C455.81 416 473.39 402.6 480 384H434.94L418.94 368L434.94 352zM429.38 186.26L414.23 232.76C403.5 265.69 372.8 287.98 338.1600000000001 287.98H173.83C139.19 287.98 108.49 265.69 97.76 232.76L82.61 186.26C53.01 174.53 32 145.78 32 112V-16C32 -42.47 53.53 -64 80 -64H96C122.47 -64 144 -42.47 144 -16V0H368V-16C368 -42.47 389.53 -64 416 -64H432C458.47 -64 480 -42.47 480 -16V112C480 145.78 458.99 174.53 429.38 186.26zM128.19 222.85A47.888 47.888 0 0 0 173.83 255.98H338.17C359.01 255.98 377.35 242.66 383.81 222.85L393.86 192H118.14L128.19 222.85zM112 -16C112 -24.83 104.81 -32 96 -32H80C71.19 -32 64 -24.83 64 -16V0H112V-16zM448 -16C448 -24.83 440.81 -32 432 -32H416C407.19 -32 400 -24.83 400 -16V0H448V-16zM448 64V32H64V112C64 138.47 85.53 160 112 160H400C426.4700000000001 160 448 138.47 448 112V64zM375.2 135.99C351.1 135.99 320 112.75 320 88.06C320 76.08 325.85 55.99 365.06 55.99L375.2 56.09C401.16 56.09 420 72.89 420 96.04C420 119.19 401.1600000000001 135.99 375.2 135.99zM375.2 80.09C372.08 80.09 368.57 79.99 365.06 79.99C354.5300000000001 79.99 344 80.89 344 88.06C344 97.63 362.7200000000001 111.99 375.2 111.99S396 105.61 396 96.04S387.68 80.09 375.2 80.09zM136.8 135.99C110.84 135.99 92 119.19 92 96.04C92 72.89 110.84 56.09 136.8 56.09L146.94 55.99C186.15 55.99 192 76.09 192 88.06C192 112.75 160.9 135.99 136.8 135.99zM146.94 79.99C143.43 79.99 139.92 80.09 136.8 80.09C124.32 80.09 116 86.47 116 96.04S124.32 111.99 136.8 111.99S168 97.63 168 88.06C168 80.89 157.47 79.99 146.94 79.99z" />
+    <glyph glyph-name="car-side"
+      unicode="&#xF5E4;"
+      horiz-adv-x="640" d=" M544 256H528L419.21 391.98A63.99 63.99 0 0 1 369.24 416H171.33C145.16 416 121.63 400.07 111.91 375.77L64 256C28.65 256 0 227.35 0 192V80C0 71.16 7.16 64 16 64H64C64 10.98 106.98 -32 160 -32S256 10.98 256 64H384C384 10.98 426.98 -32 480 -32S576 10.98 576 64H624C632.84 64 640 71.16 640 80V160C640 213.02 597.02 256 544 256zM288 384H369.24C379.01 384 388.12 379.62 394.23 371.99L487.02 256H288V384zM141.62 363.88C146.51 376.11 158.17 384 171.33 384H256V256H98.46L141.62 363.88zM160 0C124.65 0 96 28.65 96 64S124.65 128 160 128S224 99.35 224 64S195.35 0 160 0zM480 0C444.65 0 416 28.65 416 64S444.65 128 480 128S544 99.35 544 64S515.35 0 480 0zM608 96H570.12C556.9 133.2 521.74 160 480 160S403.1 133.2 389.88 96H250.12C236.9 133.2 201.74 160 160 160S83.1 133.2 69.88 96H32V192C32 209.64 46.36 224 64 224H544C579.29 224 608 195.29 608 160V96z" />
+    <glyph glyph-name="car-tilt"
+      unicode="&#xF5E5;"
+      horiz-adv-x="640" d=" M179.55 142.06C161.27 123.78 159.84 98.69 176.13 82.39C192.43 66.09 217.53 67.52 235.8100000000001 85.8L243.0200000000001 92.87C270.6300000000001 120.48 260.6 138.75 252.1600000000001 147.18C234.7800000000001 164.56 196.5200000000001 159.03 179.55 142.06zM226.12 109.77C223.65 107.3 221.11 104.9 218.91 102.7C210.12 93.91 199.77 92.55 193.03 99.29C186.29 106.03 187.66 116.38 196.44 125.17C205.23 133.96 228.51 137.03 235.25 130.29C240.31 125.23 233.53 117.18 226.12 109.77zM632 -32H307.39C320.48 -13.36 319.55 12.2 302.91 28.84L280.38 51.37L460.64 231.62L483.17 209.09C501.8099999999999 190.45 532.13 190.45 550.77 209.09L562.04 220.36C580.68 239 580.68 269.3200000000001 562.04 287.9600000000001L460.63 389.35C435.23 414.74 397.1 419.05 366.98 402.98L295.49 439.34C264.75 454.97 227.44 449.05 203.05 424.6600000000001L87.33 308.95C62.94 284.56 57.02 247.25 72.65 216.5L109.01 145.02C92.95 114.89 97.25 76.76 122.64 51.37L206.02 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM539.49 265.43C545.71 259.2100000000001 545.7 249.1 539.49 242.9L528.22 231.63C522.01 225.42 511.9 225.42 505.6900000000001 231.63L483.1600000000001 254.16L516.96 287.96L539.49 265.43zM101.06 230.95C91.65 249.45 95.19 271.74 109.87 286.42L225.58 402.13A47.715 47.715 0 0 0 281.05 410.94L339.7200000000001 381.1L130.9 172.28L101.06 230.95zM201.51 17.5700000000001L145.18 73.9C126.54 92.53 126.54 122.86 145.18 141.5L370.5 366.82C389.14 385.46 419.46 385.46 438.1 366.82L471.9 333.02L494.4300000000001 310.49L460.6300000000001 276.69L438.1 254.16L201.51 17.57zM280.37 -16.22L269.1 -27.49C266.2000000000001 -30.3899999999999 262.42 -31.8099999999999 258.6 -31.9999999999999H257.0700000000001C253.2500000000001 -31.8199999999999 249.4700000000001 -30.3999999999999 246.5600000000001 -27.49L224.0300000000001 -4.9599999999999L257.8300000000001 28.8400000000001L280.36 6.3100000000001C286.5900000000001 0.09 286.5800000000001 -10.0199999999999 280.37 -16.2199999999999zM429.61 335.87C413.31 352.17 388.2200000000001 350.73 369.94 332.4600000000001C352.9700000000001 315.49 347.44 277.23 364.82 259.85C373.26 251.4100000000001 391.53 241.39 419.13 268.99L426.2 276.2000000000001C444.48 294.4700000000001 445.91 319.56 429.61 335.87zM409.3 293.0900000000001C407.1 290.89 404.7 288.35 402.23 285.88C394.82 278.4700000000001 386.7700000000001 271.68 381.7200000000001 276.74C374.98 283.48 378.05 306.77 386.8400000000001 315.55C395.6300000000001 324.3400000000001 405.98 325.7000000000001 412.7200000000001 318.9700000000001S418.0900000000001 301.88 409.3 293.0900000000001z" />
+    <glyph glyph-name="car-wash"
+      unicode="&#xF5E6;"
+      horiz-adv-x="448" d=" M80 320C106.47 320 128 341.6 128 368.16C128 388.68 103.62 426.28 93.16 441.48C87.22 450.17 72.78 450.17 66.85 441.48C56.38 426.28 32 388.68 32 368.16C32 341.6 53.53 320 80 320zM80 402.61C89.22 387.04 95.88 373.06 96 368.17C96 359.31 88.81 352.12 80 352.12S64 359.32 64 368.16C64.12 373.05 70.78 387.04 80 402.61zM224 320C250.47 320 272 341.6 272 368.16C272 388.68 247.62 426.28 237.16 441.48C231.22 450.17 216.78 450.17 210.85 441.48C200.38 426.28 176 388.68 176 368.16C176 341.6 197.53 320 224 320zM224 402.61C233.22 387.04 239.88 373.06 240 368.17C240 359.31 232.81 352.12 224 352.12S208 359.32 208 368.16C208.12 373.05 214.78 387.04 224 402.61zM368 320C394.4700000000001 320 416 341.6 416 368.16C416 388.68 391.62 426.28 381.16 441.48C375.22 450.17 360.78 450.17 354.85 441.48C344.38 426.28 320 388.68 320 368.16C320 341.6 341.53 320 368 320zM368 402.61C377.2200000000001 387.04 383.88 373.06 384 368.17C384 359.31 376.81 352.12 368 352.12S352 359.32 352 368.16C352.12 373.05 358.78 387.04 368 402.61zM397.38 186.26L382.23 232.76C371.5 265.69 340.8 287.98 306.1600000000001 287.98H141.83C107.19 287.98 76.49 265.69 65.76 232.76L50.61 186.26C21.01 174.53 0 145.78 0 112V-16C0 -42.47 21.53 -64 48 -64H64C90.47 -64 112 -42.47 112 -16V0H336V-16C336 -42.47 357.53 -64 384 -64H400C426.4700000000001 -64 448 -42.47 448 -16V112C448 145.78 426.99 174.53 397.38 186.26zM96.19 222.85A47.888 47.888 0 0 0 141.83 255.98H306.17C327.01 255.98 345.35 242.66 351.81 222.85L361.86 192H86.14L96.19 222.85zM80 -16C80 -24.83 72.81 -32 64 -32H48C39.19 -32 32 -24.83 32 -16V0H80V-16zM416 -16C416 -24.83 408.81 -32 400 -32H384C375.19 -32 368 -24.83 368 -16V0H416V-16zM416 64V32H32V112C32 138.47 53.53 160 80 160H368C394.4700000000001 160 416 138.47 416 112V64zM343.2 135.99C319.1 135.99 288 112.75 288 88.06C288 76.08 293.85 55.99 333.06 55.99L343.2 56.09C369.16 56.09 388 72.89 388 96.04C388 119.19 369.1600000000001 135.99 343.2 135.99zM343.2 80.09C340.08 80.09 336.57 79.99 333.06 79.99C322.5300000000001 79.99 312 80.89 312 88.06C312 97.63 330.7200000000001 111.99 343.2 111.99S364 105.61 364 96.04S355.68 80.09 343.2 80.09zM104.8 135.99C78.84 135.99 60 119.19 60 96.04C60 72.89 78.84 56.09 104.8 56.09L114.94 55.99C154.15 55.99 160 76.09 160 88.06C160 112.75 128.9 135.99 104.8 135.99zM114.94 79.99C111.43 79.99 107.92 80.09 104.8 80.09C92.32 80.09 84 86.47 84 96.04S92.32 111.99 104.8 111.99S136 97.63 136 88.06C136 80.89 125.47 79.99 114.94 79.99z" />
+    <glyph glyph-name="car"
+      unicode="&#xF1B9;"
+      horiz-adv-x="512" d=" M120.81 200C94.85 200 76.01 183.2 76.01 160.05C76.01 136.9 94.85 120.1 120.81 120.1L130.95 120C170.16 120 176.01 140.1 176.01 152.08C176 176.76 144.91 200 120.81 200zM130.95 144C127.44 144 123.93 144.1 120.81 144.1C108.33 144.1 100.01 150.48 100.01 160.05S108.33 176 120.81 176S152.01 161.64 152.01 152.07C152.01 144.9 141.47 144 130.95 144zM391.19 200C367.09 200 336 176.76 336 152.07C336 140.09 341.85 119.99 381.06 119.99L391.2 120.09C417.16 120.09 436 136.8900000000001 436 160.04C435.99 183.2000000000001 417.15 200 391.19 200zM391.19 144.1C388.07 144.1 384.56 144 381.05 144C370.5200000000001 144 359.99 144.9 359.99 152.07C359.99 161.64 378.7100000000001 176 391.19 176S411.99 169.62 411.99 160.05S403.67 144.1 391.19 144.1zM505.99 285.04C498.65 296.92 485.93 304.01 471.96 304.01H422.3L414.23 328.7700000000001C403.5 361.71 372.8 384 338.17 384H173.83C139.19 384 108.5 361.7100000000001 97.77 328.78L89.7 304.02H40.04C26.07 304.02 13.35 296.93 6.01 285.05S-1.99 258.63 4.26 246.14L10.04 234.5300000000001C14 226.6500000000001 19.96 220.44 27.04 215.98C20.13 204.24 16.01 190.66 16.01 176.01V48C16.01 21.53 37.54 0 64.01 0H80.01C106.48 0 128.01 21.53 128.01 48V64H384V48C384 21.53 405.53 0 432 0H448C474.47 0 496 21.53 496 48V176.01C496 190.67 491.88 204.24 484.97 215.99C492.06 220.45 498.01 226.67 501.97 234.56L507.75 246.12C513.99 258.62 513.33 273.17 505.99 285.04zM128.2 318.86C134.66 338.68 153 352 173.84 352H338.17C359.01 352 377.35 338.68 383.81 318.87L404.28 256.02H107.73L128.2 318.86zM38.67 248.8400000000001L32.89 260.4300000000001C31.08 264.0200000000001 32.55 267.0700000000001 33.23 268.2100000000001C34.1 269.63 36.17 272.0100000000001 40.04 272.0100000000001H79.28L72.83 252.1900000000001A80.69 80.69 0 0 1 49.82 240.9000000000001C45.11 241.9000000000001 40.88 244.4200000000001 38.67 248.8400000000001zM96.01 48C96.01 39.17 88.82 32 80.01 32H64.01C55.2 32 48.01 39.17 48.01 48V64H96.01V48zM463.99 48C463.99 39.17 456.8 32 447.99 32H431.99C423.18 32 415.99 39.17 415.99 48V64H463.99V48zM463.99 128.01V96.01H48.01V176.01C48.01 202.48 69.54 224.01 96.01 224.01H415.99C442.4600000000001 224.01 463.99 202.48 463.99 176.01V128.01zM479.11 260.42L473.33 248.87C471.1200000000001 244.43 466.89 241.9 462.1800000000001 240.9C455.2400000000001 245.8 447.4900000000001 249.66 439.1700000000001 252.19L432.7200000000001 272.01H471.9600000000001C475.8300000000001 272.01 477.9000000000001 269.63 478.7700000000001 268.2099999999999C479.4600000000001 267.07 480.9300000000001 264.03 479.1100000000001 260.42z" />
+    <glyph glyph-name="caret-circle-down"
+      unicode="&#xF32D;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192zM352 224L256 128L160 224H352M160 256C131.6 256 117.2 221.5 137.4 201.4L233.4 105.4C245.9 92.9 266.2 92.9 278.7 105.4L374.7 201.4C394.8 221.5 380.6 256 352.1 256H160z" />
+    <glyph glyph-name="caret-circle-left"
+      unicode="&#xF32E;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24zM288 96L192 192L288 288V96M320 288C320 316.4 285.5 330.8 265.4 310.6L169.4 214.6C156.9 202.1 156.9 181.8 169.4 169.3L265.4 73.3C285.5 53.2 320 67.4 320 95.9V288z" />
+    <glyph glyph-name="caret-circle-right"
+      unicode="&#xF330;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408zM224 288L320 192L224 96V288M192 96C192 67.6 226.5 53.2 246.6 73.4L342.6 169.4C355.1 181.9 355.1 202.2 342.6 214.7L246.6 310.7C226.5000000000001 330.8 192 316.6 192 288.1V96z" />
+    <glyph glyph-name="caret-circle-up"
+      unicode="&#xF331;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM160 160L256 256L352 160H160M352 128C380.4 128 394.8 162.5 374.6 182.6L278.6 278.6C266.1 291.1 245.8 291.1 233.3 278.6L137.3 182.6C117.2 162.5 131.4 128 159.9 128H352z" />
+    <glyph glyph-name="caret-down"
+      unicode="&#xF0D7;"
+      horiz-adv-x="320" d=" M287.968 288H32.038C3.613 288 -10.729 253.512 9.411 233.373L137.373 105.373C149.869 92.877 170.131 92.876 182.628 105.373L310.596 233.373C330.695 253.472 316.45 288 287.968 288zM160 128L32 256H288L160 128z" />
+    <glyph glyph-name="caret-left"
+      unicode="&#xF0D9;"
+      horiz-adv-x="192" d=" M192 64.032V319.962C192 348.387 157.512 362.729 137.373 342.589L9.373 214.627C-3.123 202.131 -3.124 181.869 9.373 169.372L137.373 41.4039999999999C157.472 21.305 192 35.55 192 64.032zM32 192L160 320V64L32 192z" />
+    <glyph glyph-name="caret-right"
+      unicode="&#xF0DA;"
+      horiz-adv-x="192" d=" M0 319.968V64.038C0 35.613 34.488 21.271 54.627 41.411L182.627 169.373C195.123 181.869 195.124 202.131 182.627 214.628L54.627 342.596C34.528 362.695 0 348.45 0 319.968zM160 192L32 64V320L160 192z" />
+    <glyph glyph-name="caret-square-down"
+      unicode="&#xF150;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM320 224L224 128L128 224H320M128 256C99.6 256 85.2 221.5 105.4 201.4L201.4 105.4C213.9 92.9 234.2 92.9 246.7 105.4L342.7 201.4C362.8 221.5 348.6 256 320.1 256H128z" />
+    <glyph glyph-name="caret-square-left"
+      unicode="&#xF191;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM48 0C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48zM256 96L160 192L256 288V96M288 288C288 316.4 253.5 330.8 233.4 310.6L137.4 214.6C124.9 202.1 124.9 181.8 137.4 169.3L233.4 73.3C253.5 53.2 288 67.4 288 95.9V288z" />
+    <glyph glyph-name="caret-square-right"
+      unicode="&#xF152;"
+      horiz-adv-x="448" d=" M0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368zM400 384C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400zM192 288L288 192L192 96V288M160 96C160 67.6 194.5 53.2 214.6 73.4L310.6 169.4C323.1 181.9 323.1 202.2 310.6 214.7L214.6 310.7C194.5 330.8 160 316.6 160 288.1V96z" />
+    <glyph glyph-name="caret-square-up"
+      unicode="&#xF151;"
+      horiz-adv-x="448" d=" M48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32zM32 368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368zM128 160L224 256L320 160H128M320 128C348.4 128 362.8 162.5 342.6 182.6L246.6 278.6C234.1 291.1 213.8 291.1 201.3 278.6L105.3 182.6C85.3 162.5 99.5 128 128 128H320z" />
+    <glyph glyph-name="caret-up"
+      unicode="&#xF0D8;"
+      horiz-adv-x="320" d=" M32.032 96H287.962C316.387 96 330.729 130.488 310.589 150.627L182.627 278.627C170.131 291.1230000000001 149.869 291.124 137.372 278.627L9.404 150.627C-10.695 130.528 3.55 96 32.032 96zM160 256L288 128H32L160 256z" />
+    <glyph glyph-name="carrot"
+      unicode="&#xF787;"
+      horiz-adv-x="512" d=" M504.6 309.5C481.7 337.1 451.2 352.9 418.2000000000001 354.3C416.6 386.4 401.1 417.7 373.5000000000001 440.6C367.6000000000001 445.5 360.4000000000001 448 353.1000000000001 448C345.9000000000001 448 338.6000000000001 445.5 332.7000000000001 440.6C305.5000000000001 418 289.6000000000001 387.6 288.1000000000001 354.8C287.4000000000001 340.3 289.9000000000001 326.1 294.7000000000001 312.6C281.4000000000001 317 267.9000000000001 319.9 254.4000000000001 319.9C206.4000000000001 319.9 160.3000000000001 293.1 137.8000000000001 247.1L2.4 -30.3C-0.6 -36.5 -0.9 -44.1 2.4 -50.8C6.5 -59.1 14.8 -63.9 23.4 -63.9C26.8 -63.9 30.3 -63.1 33.6 -61.5000000000001L311.2 74C336.2 86.2 357.6 106.6 370.8 133.6C386.2 165.1 387.5 199.8 377.3 230.7C389.1 226.6 401.2 224.1 413.7 224.1C448.4 224.1 480.7 240.0000000000001 504.6 268.8C514.5 280.5 514.5 297.7000000000001 504.6 309.5zM342.1 147.5C332.5 127.8 316.9000000000001 112.2 297.2000000000001 102.6L172.4 41.7C172 42.2 171.8000000000001 42.8000000000001 171.3000000000001 43.3000000000001L139.3000000000001 75.3000000000001C133.1000000000001 81.5000000000001 122.9 81.5000000000001 116.7000000000001 75.3000000000001C110.5 69.1000000000001 110.5 58.9000000000001 116.7000000000001 52.7L142.3000000000001 27.1L42.1 -21.9L154 207.4L180.7 180.7C183.8 177.6 187.9 176 192 176S200.2 177.6 203.3 180.7C209.5 186.9 209.5 197.1 203.3 203.3L171.3 235.3C170.6 236 169.6 236.4 168.8 237C185.9 268.5 218.2 288 254.4 288C269.3 288 283.6 284.7 297.1 278.1C320.5 266.7 338.1 246.8 346.6 222.1S353.5 171 342.1 147.5zM413.8 256C392.3 256 370.7 264.9 353.2 282.5L346.5 289.2C309.3 326.3 311.1 381.2 353.1 416C386.3 388.5 394.6 348.4 378.4000000000001 314.4C389.6 319.7 401.4000000000001 322.4 413.3 322.4C437.4000000000001 322.4 461.6 311.3 480 289.1C461.7 267 437.7 256 413.8 256z" />
+    <glyph glyph-name="cart-arrow-down"
+      unicode="&#xF218;"
+      horiz-adv-x="576" d=" M551.991 384H129.28L120.951 428.423C118.822 439.774 108.911 448 97.362 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H90.72L160.647 43.054C150.305 31.686 144 16.58 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64C499.3469999999999 -64 528.001 -35.346 528.001 0C528.001 17.993 520.566 34.24 508.613 45.868C506.022 56.109 496.76 64 485.328 64H189.28L177.28 128H508.6609999999999C520.029 128 529.838 135.976 532.1569999999999 147.105L575.4879999999999 355.105C578.592 370.009 567.215 384 551.991 384zM240 0C240 -17.645 225.645 -32 208 -32S176 -17.645 176 0S190.355 32 208 32S240 17.645 240 0zM464 -32C446.355 -32 432 -17.645 432 0S446.355 32 464 32S496 17.645 496 0S481.645 -32 464 -32zM502.156 160H171.28L135.28 352H542.156L502.1559999999999 160zM395.515 235.515L344.486 184.486C339.8 179.8 332.202 179.8 327.515 184.486L276.486 235.515C268.926 243.075 274.28 256 284.971 256H320V308C320 314.627 325.373 320 332 320H340C346.627 320 352 314.627 352 308V256H387.029C397.72 256 403.074 243.074 395.515 235.515z" />
+    <glyph glyph-name="cart-plus"
+      unicode="&#xF217;"
+      horiz-adv-x="576" d=" M551.991 384H129.28L120.951 428.423C118.822 439.774 108.911 448 97.362 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H90.72L160.647 43.054C150.305 31.686 144 16.58 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64C499.3469999999999 -64 528.001 -35.346 528.001 0C528.001 17.993 520.566 34.24 508.613 45.868C506.022 56.109 496.76 64 485.328 64H189.28L177.28 128H508.6609999999999C520.029 128 529.838 135.976 532.1569999999999 147.105L575.4879999999999 355.105C578.592 370.009 567.215 384 551.991 384zM464 32C481.645 32 496 17.645 496 0S481.645 -32 464 -32S432 -17.645 432 0S446.355 32 464 32zM208 32C225.645 32 240 17.645 240 0S225.645 -32 208 -32S176 -17.645 176 0S190.355 32 208 32zM502.156 160H171.28L135.28 352H542.156L502.1559999999999 160zM272 252V260C272 266.627 277.373 272 284 272H320V308C320 314.627 325.373 320 332 320H340C346.627 320 352 314.627 352 308V272H388C394.627 272 400 266.627 400 260V252C400 245.373 394.627 240 388 240H352V204C352 197.373 346.627 192 340 192H332C325.373 192 320 197.373 320 204V240H284C277.373 240 272 245.373 272 252z" />
+    <glyph glyph-name="cash-register"
+      unicode="&#xF788;"
+      horiz-adv-x="512" d=" M232 200C232 208.8 224.8 216 216 216H200C191.2 216 184 208.8 184 200V184C184 175.2 191.2 168 200 168H216C224.8 168 232 175.2 232 184V200zM136 200C136 208.8 128.8 216 120 216H104C95.2 216 88 208.8 88 200V184C88 175.2 95.2 168 104 168H120C128.8 168 136 175.2 136 184V200zM168 152H152C143.2 152 136 144.8 136 136V120C136 111.2 143.2 104 152 104H168C176.8 104 184 111.2 184 120V136C184 144.8 176.8 152 168 152zM264 152H248C239.2 152 232 144.8 232 136V120C232 111.2 239.2 104 248 104H264C272.8 104 280 111.2 280 120V136C280 144.8 272.8 152 264 152zM328 200C328 208.8 320.8 216 312 216H296C287.2 216 280 208.8 280 200V184C280 175.2 287.2 168 296 168H312C320.8 168 328 175.2 328 184V200zM511.4 68.5L485.9 246.8C482.5 270.4 462.3 288 438.4 288H192V352H272C280.8 352 288 359.2 288 368V432C288 440.8 280.8 448 272 448H80C71.2 448 64 440.8 64 432V368C64 359.2 71.2 352 80 352H160V288H73.6C49.7 288 29.5 270.4 26.1 246.8L0.6 68.5C0.2 65.5 0 62.5 0 59.4V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V59.5C512 62.5 511.8 65.5 511.4 68.5zM96 384V416H256V384H96zM57.8 242.3C58.9 250.1 65.7 256 73.6 256H438.3C446.2 256 452.9999999999999 250.1 454.1 242.3L479.7 64H32.3L57.8 242.3zM480 -16C480 -24.8 472.8 -32 464 -32H48C39.2 -32 32 -24.8 32 -16V32H480V-16zM408 216H392C383.2 216 376 208.8 376 200V184C376 175.2 383.2 168 392 168H408C416.8 168 424 175.2 424 184V200C424 208.8 416.8 216 408 216zM360 152H344C335.2 152 328 144.8 328 136V120C328 111.2 335.2 104 344 104H360C368.8 104 376 111.2 376 120V136C376 144.8 368.8 152 360 152z" />
+    <glyph glyph-name="cat"
+      unicode="&#xF6BE;"
+      horiz-adv-x="576" d=" M432 320C423.1600000000001 320 416 312.8400000000001 416 304S423.1600000000001 288 432 288S448 295.16 448 304S440.84 320 432 320zM480 304C480 295.16 487.16 288 496 288S512 295.16 512 304S504.84 320 496 320S480 312.8400000000001 480 304zM544.01 448C534.6899999999999 448 525.62 443.92 519.42 436.48L475.68 384H452.32L408.58 436.49A32.024 32.024 0 0 1 383.99 448C366.37 448 352 433.7 352 416V288H336C232.18 288 141.82 229.47 96 143.73V272C96 316.11 60.12 352 16 352C7.16 352 0 344.8400000000001 0 336S7.16 320 16 320C42.47 320 64 298.4700000000001 64 272V16C64 -28.11 99.88 -64 144 -64H352C369.6600000000001 -64 384 -49.64 384 -32C384 1.05 358.81 28.33 326.62 31.66L416 71.37V-32C416 -49.64 430.34 -64 448 -64H480C497.66 -64 512 -49.64 512 -32V187.23C549.7 205.28 576 243.48 576 288V416C576 433.7 561.63 448 544.01 448zM480 -32H448V120.62L303.19 56.25C299.21 95.25 273.16 128.48 235.94 141.14C231.61 142.61 226.95 139.8 225.84 135.37L221.96 119.82C220.93 115.7 223.37 111.73 227.35 110.25A68.41 68.41 0 0 0 272 46.03V0H320C337.6600000000001 0 352 -14.36 352 -32H144C117.53 -32 96 -10.47 96 16C96 148.34 203.66 256 336 256H357.2200000000001C371.0900000000001 209.9 413.4400000000001 176 464 176C469.48 176 474.73 176.85 480 177.62V-32zM544 288C544 243.82 508.18 208 464 208S384 243.82 384 288V416L437.33 352H490.66L544 416V288z" />
+    <glyph glyph-name="cauldron"
+      unicode="&#xF6BF;"
+      horiz-adv-x="448" d=" M272 320C298.51 320 320 341.49 320 368S298.51 416 272 416S224 394.51 224 368S245.49 320 272 320zM272 384C280.82 384 288 376.82 288 368S280.82 352 272 352S256 359.18 256 368S263.18 384 272 384zM448 264V280C448 284.42 444.42 288 440 288H8C3.58 288 0 284.42 0 280V264C0 259.5800000000001 3.58 256 8 256H54.73C20.78 210.22 0 154.38 0 102.4C0 63.32 11.82 31.75 32 6.87V-48C32 -56.84 39.16 -64 48 -64S64 -56.84 64 -48V-22.66C104.66 -50.69 161.28 -64 224 -64C286.71 -64 343.3400000000001 -50.69 384 -22.67V-48C384 -56.84 391.1600000000001 -64 400 -64S416 -56.84 416 -48V6.87C436.18 31.75 448 63.32 448 102.4C448 154.38 427.2200000000001 210.22 393.27 256H440C444.42 256 448 259.58 448 264zM416 102.4C416 -18.9 281.73 -32 224 -32S32 -18.9 32 102.4C32 154.65 56.14 212.42 95.64 256H352.35C391.86 212.42 416 154.65 416 102.4zM160 384C177.67 384 192 398.33 192 416S177.67 448 160 448S128 433.67 128 416S142.33 384 160 384z" />
+    <glyph glyph-name="certificate"
+      unicode="&#xF0A3;"
+      horiz-adv-x="512" d=" M495.768 175.708L479.048 192.071L495.767 208.433C525.807 237.219 512.018 287.9700000000001 471.937 297.798L449.169 303.6090000000001L455.633 326.307C466.865 366.3040000000001 429.518 402.7750000000001 390.184 391.7580000000001L367.512 385.2970000000001L361.7029999999999 408.075C351.926 447.948 300.89 461.786 272.299 431.858L256 415.0660000000001L239.699 431.8570000000001C211.376 461.504 160.164 448.371 150.294 408.064L144.487 385.296L121.815 391.757C82.675 402.749 45.138 366.533 56.366 326.307L62.83 303.6090000000001L40.063 297.798C-0.018 287.971 -13.807 237.219 16.232 208.433L32.952 192.07L16.233 175.708C-13.807 146.922 -0.018 96.1709999999999 40.063 86.343L62.831 80.532L56.367 57.834C45.146 17.631 82.622 -18.595 121.816 -7.616L144.488 -1.155L150.295 -23.922C160.225 -64.5 211.16 -77.5309999999999 239.661 -47.758L256 -31.05L272.254 -47.67C300.511 -77.57 351.808 -64.35 361.706 -23.924L367.5130000000001 -1.157L390.1850000000001 -7.6180000000001C429.6570000000001 -18.7040000000001 466.7830000000001 17.891 455.6340000000001 57.8319999999999L449.1700000000001 80.5299999999999L471.9370000000001 86.3409999999999C512.0190000000001 96.1699999999999 525.807 146.9219999999999 495.7680000000001 175.7079999999999zM464.201 117.3950000000001L409.382 103.4040000000001L424.8349999999999 49.1410000000001C429.2009999999999 33.5360000000001 414.4889999999999 18.8090000000001 398.882 23.1790000000001L344.637 38.6370000000001L330.65 -16.2C326.854 -32.084 306.303 -37.336 295.365 -25.534L256 14.716L216.634 -25.535C205.583 -37.2159999999999 185.234 -32.4539999999999 181.349 -16.201L167.363 38.636L113.118 23.178C97.515 18.81 82.798 33.532 87.165 49.14L102.618 103.403L47.799 117.394C32.066 121.156 26.473 141.336 38.468 152.6909999999999L78.705 192.0699999999999L38.468 231.4489999999999C26.479 242.7989999999999 32.061 262.9809999999999 47.799 266.7449999999999L102.618 280.7359999999999L87.165 335C82.799 350.605 97.511 365.332 113.118 360.962L167.363 345.504L181.349 400.341C185.092 416.005 205.582 421.3570000000001 216.634 409.675L256 369.127L295.366 409.675C306.545 421.491 326.949 415.827 330.651 400.341L344.637 345.504L398.882 360.962C414.485 365.33 429.202 350.608 424.8349999999999 335L409.382 280.737L464.201 266.746C479.934 262.984 485.527 242.804 473.532 231.45L433.295 192.071L473.532 152.692C485.521 141.341 479.939 121.159 464.201 117.395z" />
+    <glyph glyph-name="chair-office"
+      unicode="&#xF6C1;"
+      horiz-adv-x="384" d=" M32 208V304C32 312.8400000000001 24.84 320 16 320S0 312.8400000000001 0 304V208C0 199.16 7.16 192 16 192S32 199.16 32 208zM346.49 160.97C340.1 171.6 330.75 179.6400000000001 320 184.99V384C320 419.35 291.35 448 256 448H128C92.65 448 64 419.35 64 384V184.99C53.25 179.64 43.9 171.6 37.51 160.97L22.94 136.73C3.71 104.74 26.75 64 64.07 64H176V30.78C140.39 25.3699999999999 111 2.24 98.15 -28.85C91.74 -44.36 100.56 -63.99 113.17 -63.99H270.83C283.44 -63.99 292.27 -44.36 285.85 -28.85C273 2.23 243.61 25.37 208 30.78V64H319.93C357.26 64 380.3 104.74 361.07 136.73L346.49 160.97zM96 384C96 401.64 110.36 416 128 416H256C273.64 416 288 401.64 288 384V192H96V384zM251.6 -32H132.4C144.58 -12.53 167.36 0 192 0S239.42 -12.53 251.6 -32zM333.85 104.12C332.4700000000001 101.68 328.35 96 319.92 96H64.07C55.65 96 51.53 101.68 50.14 104.12C48.76 106.56 46.01 113.02 50.35 120.24L64.92 144.48C70.69 154.05 81.19 160 92.36 160H291.64C302.81 160 313.31 154.05 319.07 144.48L333.64 120.24C337.98 113.03 335.23 106.56 333.85 104.12zM368 320C359.1600000000001 320 352 312.8400000000001 352 304V208C352 199.16 359.1600000000001 192 368 192S384 199.16 384 208V304C384 312.8400000000001 376.84 320 368 320z" />
+    <glyph glyph-name="chair"
+      unicode="&#xF6C0;"
+      horiz-adv-x="448" d=" M446.21 106.48L424.02 170.48C419.56 183.36 407.42 192 393.79 192H384V320C384 390.69 326.69 448 256 448H192C121.31 448 64 390.69 64 320V192H54.21C40.58 192 28.44 183.36 23.98 170.48L1.79 106.48C-5.42 85.69 10.02 64 32.03 64H32V-56C32 -60.42 35.58 -64 40 -64H56C60.42 -64 64 -60.42 64 -56V64H384V-56C384 -60.42 387.58 -64 392 -64H408C412.42 -64 416 -60.42 416 -56L415.9700000000001 64C437.98 64 453.42 85.69 446.2100000000001 106.48zM288 410.1C325.17 396.85 352 361.66 352 320V192H288V410.1zM192 416H256V192H192V416zM96 320C96 361.66 122.83 396.85 160 410.1V192H96V320zM32.03 96L54.22 160H393.79L415.98 96H32.03z" />
+    <glyph glyph-name="chalkboard-teacher"
+      unicode="&#xF51C;"
+      horiz-adv-x="640" d=" M608 448H192C174.33 448 160 433.67 160 416V320C106.98 320 64 277.02 64 224S106.98 128 160 128S256 170.98 256 224C256 265.74 229.2 300.9 192 314.12V416H608V64H544V128C544 145.67 529.67 160 512 160H384C366.33 160 352 145.67 352 128V64H305.3400000000001C304.7500000000001 64.94 304.3100000000001 65.96 303.6900000000001 66.88C286.4400000000001 92.5 257.0200000000001 105.99 226.7900000000001 105.99C199 105.98 192.02 96 160 96C128.03 96 121.05 105.98 93.21 105.98C62.98 105.98 33.56 92.5 16.31 66.87C6.01 51.58 0 33.16 0 13.33V-24C0 -46.09 17.91 -64 40 -64H280C302.09 -64 320 -46.09 320 -24V13.33C320 19.74 319.1600000000001 25.93 317.96 32H608C625.67 32 640 46.33 640 64V416C640 433.67 625.67 448 608 448zM224 224C224 188.71 195.29 160 160 160S96 188.71 96 224S124.71 288 160 288S224 259.29 224 224zM288 -24C288 -28.41 284.4100000000001 -32 280 -32H40C35.59 -32 32 -28.41 32 -24V13.33C32 26.12 35.75 38.46 42.85 49C53.38 64.64 72.2 73.98 93.21 73.98C115.01 73.98 123.2 64 160 64C196.79 64 205.01 73.98 226.79 73.98C247.79 73.98 266.62 64.64 277.1500000000001 49C284.2500000000001 38.46 288.0000000000001 26.12 288.0000000000001 13.33V-24zM512 64H384V128H512V64z" />
+    <glyph glyph-name="chalkboard"
+      unicode="&#xF51B;"
+      horiz-adv-x="640" d=" M632 0H608V384C608 401.67 593.67 416 576 416H64C46.33 416 32 401.67 32 384V0H8C3.58 0 0 -3.58 0 -8V-24C0 -28.42 3.58 -32 8 -32H632C636.42 -32 640 -28.42 640 -24V-8C640 -3.58 636.42 0 632 0zM288 0V64H480V0H288zM512 0V64C512 81.67 497.67 96 480 96H288C270.33 96 256 81.67 256 64V0H64V384H576V0H512z" />
+    <glyph glyph-name="charging-station"
+      unicode="&#xF5E7;"
+      horiz-adv-x="576" d=" M560 320H544V368C544 376.8400000000001 536.84 384 528 384S512 376.8400000000001 512 368V320H480V368C480 376.8400000000001 472.84 384 464 384S448 376.8400000000001 448 368V320H432C423.1600000000001 320 416 312.8400000000001 416 304V256C416 217.3 443.48 185.03 480 177.61V64C480 46.36 465.66 32 448 32S416 46.36 416 64V112C416 156.11 380.12 192 336 192H320V384C320 419.35 291.35 448 256 448H96C60.65 448 32 419.35 32 384V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H344C348.42 -64 352 -60.42 352 -56V-40C352 -35.58 348.42 -32 344 -32H320V160H336C362.4700000000001 160 384 138.47 384 112V64C384 28.7 412.7200000000001 0 448 0S512 28.7 512 64V177.61C548.52 185.0200000000001 576 217.3 576 256V304C576 312.8400000000001 568.84 320 560 320zM288 -32H64V384C64 401.64 78.36 416 96 416H256C273.64 416 288 401.64 288 384V-32zM544 256C544 229.53 522.47 208 496 208S448 229.53 448 256V288H544V256zM240 272H223.09L238.97 314.38C242.9 324.87 235.13 336 224 336H144C137.47 336 131.56 332.02 129.16 325.94L97.16 245.94C92.94 235.41 100.72 224 112 224H131.5L112.47 147.88C108.58 132.38 127.69 121.12 139.31 132.69L251.31 244.69C261.35 254.76 254.24 272 240 272zM157.53 196.16L167.53 236.13C170.06 246.3 162.35 256 152 256H135.62L154.84 304H200.9L185.02 261.62C181.74 252.87 186.48 240 201.36 240L157.53 196.16z" />
+    <glyph glyph-name="chart-area"
+      unicode="&#xF1FE;"
+      horiz-adv-x="512" d=" M500 32C506.6 32 512 26.6 512 20V12C512 5.4 506.6 0 500 0H12C5.4 0 0 5.4 0 12V372C0 378.6 5.4 384 12 384H20C26.6 384 32 378.6 32 372V32H500zM372 286L288 232L201.5 316.5C196.4 321.6 188.1 321.1 183.6 315.5L64 160V64H480L389.7 280.7C386.7 287.6 378.2 290.1 372 286zM96 148.8L194.7 280.1L284 190.8L369.8 248L431.5 96H96V148.8z" />
+    <glyph glyph-name="chart-bar"
+      unicode="&#xF080;"
+      horiz-adv-x="512" d=" M424 96H440C444.4 96 448 99.6 448 104V344C448 348.4 444.4 352 440 352H424C419.6 352 416 348.4 416 344V104C416 99.6 419.6 96 424 96zM328 96H344C348.4 96 352 99.6 352 104V248C352 252.4 348.4 256 344 256H328C323.6 256 320 252.4 320 248V104C320 99.6 323.6 96 328 96zM136 96H152C156.4 96 160 99.6 160 104V184C160 188.4 156.4 192 152 192H136C131.6 192 128 188.4 128 184V104C128 99.6 131.6 96 136 96zM232 96H248C252.4 96 256 99.6 256 104V312C256 316.4 252.4 320 248 320H232C227.6 320 224 316.4 224 312V104C224 99.6 227.6 96 232 96zM504 32H32V376C32 380.42 28.42 384 24 384H8C3.58 384 0 380.42 0 376V16C0 7.16 7.16 0 16 0H504C508.42 0 512 3.58 512 8V24C512 28.42 508.42 32 504 32z" />
+    <glyph glyph-name="chart-line-down"
+      unicode="&#xF64D;"
+      horiz-adv-x="512" d=" M504 32H32V376C32 380.42 28.42 384 24 384H8C3.58 384 0 380.42 0 376V16C0 7.16 7.16 0 16 0H504C508.42 0 512 3.58 512 8V24C512 28.42 508.42 32 504 32zM182.45 211.71C188.71 205.51 198.8 205.53 205.02 211.76L289.65 296.39L371.87 214.17L327.1600000000001 169.46C311.86 154.16 322.7000000000001 128.0000000000001 344.3300000000001 128.0000000000001H463.8C472.74 128.0000000000001 479.99 135.2500000000001 479.99 144.1900000000001V263.66C479.99 278.3 468.01 288 455.53 288C449.56 288 443.48 285.79 438.5300000000001 280.8400000000001L394.5 236.8L300.9700000000001 330.3300000000001C294.7200000000001 336.5800000000001 284.5900000000001 336.5800000000001 278.3400000000001 330.3300000000001L193.65 245.64L120.96 317.6500000000001C117.84 320.7700000000001 112.7700000000001 320.7700000000001 109.65 317.6500000000001L98.34 306.3400000000001C95.22 303.2200000000001 95.22 298.1500000000001 98.34 295.0300000000001L182.4500000000001 211.71zM448 245.04V160H362.96L448 245.04z" />
+    <glyph glyph-name="chart-line"
+      unicode="&#xF201;"
+      horiz-adv-x="512" d=" M504 32H32V376C32 380.42 28.42 384 24 384H8C3.58 384 0 380.42 0 376V16C0 7.16 7.16 0 16 0H504C508.42 0 512 3.58 512 8V24C512 28.42 508.42 32 504 32zM98.34 184.97C95.22 181.85 95.22 176.78 98.34 173.66L109.65 162.35C112.77 159.23 117.84 159.23 120.96 162.35L193.65 234.36L278.3400000000001 149.67C284.5900000000001 143.42 294.7200000000001 143.42 300.9700000000001 149.67L394.5 243.2L438.54 199.16C443.49 194.21 449.57 192 455.54 192C468.02 192 480 201.7 480 216.34V335.81C480 344.75 472.75 352 463.81 352H344.34C322.7 352 311.87 325.8400000000001 327.17 310.54L371.88 265.83L289.66 183.61L205.03 268.24C198.8 274.4700000000001 188.71 274.49 182.46 268.29L98.34 184.97zM362.96 320H448V234.96L362.96 320z" />
+    <glyph glyph-name="chart-network"
+      unicode="&#xF78A;"
+      horiz-adv-x="640" d=" M513.6 245.2L494.4 270.8L446.4000000000001 234.8L465.6 209.2L513.6 245.2zM576 256C589.3 256 601.6 260 611.8 266.9C618.5999999999999 271.5 624.5 277.4 629.0999999999999 284.2000000000001C636 294.4 640 306.7 640 320C640 333.3 636 345.6 629.1 355.8C626.8000000000001 359.2 624.2 362.4 621.3000000000001 365.3C618.4000000000001 368.2 615.2 370.8 611.8000000000001 373.1C601.6 380 589.3 384 576 384S550.4 380 540.2 373.1C533.4000000000001 368.5 527.5 362.6 522.9000000000001 355.8C516 345.6 512 333.3 512 320C512 284.7 540.7 256 576 256zM576 352C593.6 352 608 337.6 608 320S593.6 288 576 288S544 302.4 544 320S558.4 352 576 352zM99.8 197.1C89.6 204 77.3 208 64 208S38.4 204 28.2 197.1C21.4 192.5 15.5 186.6 10.9 179.8C4 169.6 0 157.3 0 144C0 108.7 28.7 80 64 80S128 108.7 128 144C128 157.3 124 169.6 117.1 179.8C112.5 186.6 106.6 192.5 99.8 197.1zM64 112C46.4 112 32 126.4 32 144S46.4 176 64 176S96 161.6 96 144S81.6 112 64 112zM152 128H200V160H152V128zM621.3 45.3C618.4 48.2 615.1999999999999 50.8 611.8 53.1C601.6 60 589.3 64 576 64S550.4 60 540.2 53.1C536.9000000000001 50.9 533.9000000000001 48.4 531.1 45.6L439.3 100.7000000000001C444.9000000000001 114.0000000000001 448 128.7000000000001 448 144.0000000000001C448 205.9000000000001 397.9 256.0000000000001 336 256.0000000000001C324.7 256.0000000000001 314.1 253.8000000000001 303.8 250.8000000000001L264.5 334.9000000000001C278.8 346.6 288 364.1 288 384C288 397.3 284 409.6 277.1 419.8C272.5 426.6 266.6 432.5 259.8 437.1C249.6 444 237.3 448 224 448S198.4 444 188.2 437.1C181.4 432.5 175.5 426.6 170.9 419.8C164 409.6 160 397.3 160 384C160 348.7 188.7 320 224 320C228 320 231.9 320.5 235.7 321.2L274.7 237.6C244.2 217.6 224 183.2000000000001 224 144C224 82.1 274.1 32 336 32C371 32 401.8 48.4 422.4 73.5L514.8 18.1C513.0999999999999 12.3 512.0999999999999 6.3 512.0999999999999 0C512.0999999999999 -35.3 540.8 -64 576.0999999999999 -64C589.3999999999999 -64 601.6999999999999 -60 611.8999999999999 -53.1C618.6999999999998 -48.5 624.5999999999999 -42.6 629.1999999999998 -35.8C636 -25.6 640 -13.3 640 0C640 13.3 636 25.6 629.1 35.8C626.8000000000001 39.2 624.1 42.4 621.3000000000001 45.3zM224 352C206.4 352 192 366.4 192 384S206.4 416 224 416S256 401.6 256 384S241.6 352 224 352zM336 64C291.9 64 256 99.9 256 144S291.9 224 336 224S416 188.1 416 144S380.1 64 336 64zM576 -32C558.4 -32 544 -17.6 544 0S558.4 32 576 32S608 17.6 608 0S593.6 -32 576 -32z" />
+    <glyph glyph-name="chart-pie-alt"
+      unicode="&#xF64E;"
+      horiz-adv-x="512" d=" M461.29 160H224V397.29C224 406.12 216.82 413.5 208.26 413.5C207.57 413.5 206.86 413.45 206.15 413.35C87.08 396.53 -3.96 292.57 0.13 167.93C4.2 43.9 107.91 -59.8 231.93 -63.87C234.62 -63.96 237.32 -64 240 -64C361.04 -64 460.89 25.66 477.35 142.16C478.68 151.61 470.83 160 461.29 160zM240 -32C237.67 -32 235.32 -31.96 232.98 -31.88C125.74 -28.36 35.63 61.75 32.11 168.99C28.84 268.98 96.45 355.77 192 378.17V128H442.15C420.27 35.57 336.49 -32 240 -32zM288.8 447.96C288.45 447.99 288.1 448 287.76 448C279.1 448 272 440.56 272 431.77V208H495.77C504.91 208 512.59 215.69 511.97 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96zM304 240V414.1C393.25 400.29 464.28 329.25 478.1 240H304z" />
+    <glyph glyph-name="chart-pie"
+      unicode="&#xF200;"
+      horiz-adv-x="544" d=" M527.79 160H290.5L448.53 1.97A16.51 16.51 0 0 1 460.15 -2.84C463.97 -2.84 467.77 -1.49 470.72 1.29C509.42 37.75 536.04 86.9 543.8499999999999 142.15C545.1899999999999 151.61 537.3399999999999 160.0000000000001 527.79 160.0000000000001zM459.88 35.88L367.76 128H508.64C500.52 93.84 483.68 62 459.88 35.88zM224 160V397.29C224 406.12 216.82 413.5 208.26 413.5C207.57 413.5 206.86 413.45 206.15 413.35C86.99 396.51 -4.1 292.4 0.14 167.63C4.47 40.47 113.18 -64 240.13 -64C241.11 -64 242.06 -63.99 243.04 -63.98C293.44 -63.35 340.01 -47.11 378.3 -19.95C386.2 -14.35 386.72 -2.72 379.87 4.1299999999999L224 160zM242.63 -31.98L240.12 -32C131.08 -32 35.82 59.92 32.12 168.72C28.72 268.85 96.33 355.75 192 378.17V146.75L201.37 137.38L343.2100000000001 -4.46C312.6500000000001 -22.08 278.2500000000001 -31.54 242.6300000000001 -31.98zM511.96 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96C288.45 447.99 288.1 448 287.76 448C279.1 448 272 440.55 272 431.77V208H495.77C504.91 208 512.59 215.68 511.96 224.8zM304 240V414.1C393.25 400.29 464.28 329.25 478.1 240H304z" />
+    <glyph glyph-name="check-circle"
+      unicode="&#xF058;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -24C137.336 -24 40 72.055 40 192C40 310.663 136.055 408 256 408C374.664 408 472 311.945 472 192C472 73.337 375.945 -24 256 -24zM397.63 250.961L217.15 71.929C212.445 67.262 204.847 67.292 200.18 71.997L114.302 158.569C109.635 163.274 109.665 170.872 114.37 175.539L122.89 183.99C127.595 188.657 135.193 188.627 139.86 183.922L208.836 114.389L372.2770000000001 276.519C376.9820000000001 281.1860000000001 384.5800000000001 281.156 389.2470000000001 276.451L397.6980000000001 267.931C402.3660000000001 263.226 402.3350000000001 255.628 397.6300000000001 250.961z" />
+    <glyph glyph-name="check-double"
+      unicode="&#xF560;"
+      horiz-adv-x="448" d=" M444.96 289L432.8 300C430.77 302.67 428.08 304 424.69 304S418.61 302.67 416.58 300L131.77 20L31.42 119C29.39 121.67 26.7 123 23.31 123S17.23 121.67 15.2 119L3.04 108C1.01 105.33 0 102.33 0 99S1.01 93 3.04 91L123.66 -28C126.35 -30.67 129.23 -32 132.28 -32S138.2 -30.67 140.9 -28L444.9700000000001 272C447 274 448.0100000000001 276.67 448.0100000000001 280S446.9900000000001 286.3300000000001 444.9600000000001 289zM127.17 163.97C129.82 161.3200000000001 132.65 160 135.64 160S141.46 161.32 144.11 163.97L365.01 384.2C367 386.2 368 388.85 368 392.1600000000001S367 398.45 365.01 401.1L353.05 412.03C351.06 414.68 348.4100000000001 416 345.08 416S339.1 414.68 337.11 412.03L135.14 211.66L62.89 283.69C60.9 286.3400000000001 58.25 287.66 54.92 287.66S48.94 286.3400000000001 46.95 283.69L34.99 272.76C33 270.11 32 267.13 32 263.82S33 257.86 34.99 255.87L127.17 163.97z" />
+    <glyph glyph-name="check-square"
+      unicode="&#xF14A;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM400 384C408.823 384 416 376.822 416 368V16C416 7.178 408.823 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400M365.699 285.707L357.248 294.227C352.581 298.932 344.983 298.963 340.278 294.295L176.837 132.165L107.861 201.698C103.194 206.4030000000001 95.596 206.434 90.891 201.7660000000001L82.371 193.3150000000001C77.666 188.6480000000001 77.635 181.0500000000001 82.303 176.345L168.1810000000001 89.773C172.8480000000001 85.068 180.446 85.037 185.1510000000001 89.705L365.6310000000001 268.7370000000001C370.3350000000001 273.4040000000001 370.3660000000001 281.0020000000001 365.699 285.7070000000001z" />
+    <glyph glyph-name="check"
+      unicode="&#xF00C;"
+      horiz-adv-x="448" d=" M413.505 356.049L133.49 76.034L34.495 175.029C29.809 179.715 22.211 179.715 17.524 175.029L6.211 163.716C1.525 159.03 1.525 151.432 6.211 146.745L125.005 27.951C129.691 23.265 137.289 23.265 141.976 27.951L441.789 327.764C446.475 332.4500000000001 446.475 340.048 441.789 344.735L430.475 356.049C425.789 360.735 418.191 360.735 413.505 356.049z" />
+    <glyph glyph-name="chess-bishop-alt"
+      unicode="&#xF43B;"
+      horiz-adv-x="256" d=" M232 25.602V52C232 58.627 226.627 64 220 64H204.339C190.35 104.654 189.648 134.157 189.818 160.151H212C218.627 160.151 224 165.524 224 172.151V180.151C224 186.778 218.627 192.151 212 192.151H189.926V211.516C225.839 230.122 223.693 272.55 223.693 273.495C223.693 321.5320000000001 186.682 387.848 152.303 408.5130000000001C161.205 410.5370000000001 167.856 418.485 167.856 428C167.856 439.046 158.902 448 147.856 448H108C96.954 448 88 439.046 88 428C88 418.451 94.697 410.479 103.646 408.4890000000001C69.104 387.6910000000001 32.29 321.227 32.29 273.495C32.29 272.7290000000001 30.086 230.16 66.074 211.517V192.151H44C37.373 192.151 32 186.778 32 180.151V172.151C32 165.524 37.373 160.151 44 160.151H66.218C66.443 135.349 65.772 105.068 51.666 64H36C29.373 64 24 58.627 24 52V25.602L4.942 11.742A12.002 12.002 0 0 1 0 2.037V-52C0 -58.627 5.373 -64 12 -64H243.999C250.626 -64 255.999 -58.628 255.999 -52L256 2.037A12 12 0 0 1 251.058 11.742L232 25.602zM64.29 273.495C64.29 317.645 108.043 384 127.991 384C134.551 384 149.739 373.271 165.602 348.229L120.929 303.556A6 6 0 0 1 120.929 295.071L135.071 280.929A6 6 0 0 1 143.556 280.929L181.033 318.406C187.763 302.075 191.692 286.015 191.692 273.495C191.692 240.295 170.484 237.978 157.925 234.443V192.151H98.074V234.442C85.672 237.935 64.29 240.203 64.29 273.495zM98.221 160H157.817C157.658 134.688 158.324 104.221 170.682 64H85.314C97.781 104.683 98.43 135.832 98.221 160zM223.999 -32H32V-8.147L56 9.307V32H200V9.307L224 -8.147L223.999 -32z" />
+    <glyph glyph-name="chess-bishop"
+      unicode="&#xF43A;"
+      horiz-adv-x="320" d=" M9.739 144C9.739 90.219 32.632 68.216 68.174 57.97V0H251.826V57.967C287.374 68.212 310.272 90.214 310.272 144C310.272 215.874 260.845 314.647 209.946 359.757C223.095 368.319 231.796 383.139 231.796 400C231.796 426.51 210.306 448 183.796 448H136C109.49 448 88 426.51 88 400C88 383.081 96.761 368.218 109.986 359.67C59.126 314.521 9.739 215.828 9.739 144zM241.963 264.5900000000001L144.929 167.556A6 6 0 0 1 144.929 159.071L159.071 144.929A6 6 0 0 1 167.556 144.929L256.662 234.035C262.117 221.169 278.272 181.211 278.272 144C278.272 93.743 257.67 92.953 219.826 82.047V32H100.174V82.047C62.369 92.947 41.739 93.657 41.739 144C41.739 229.783 123.305 352 160.005 352C172.859 352 208.284 326.962 241.963 264.5900000000001zM136 384C127.178 384 120 391.178 120 400S127.178 416 136 416H183.795C192.617 416 199.795 408.822 199.795 400S192.617 384 183.795 384H136zM308 -64H12C5.373 -64 0 -58.627 0 -52V-44C0 -37.373 5.373 -32 12 -32H308C314.627 -32 320 -37.373 320 -44V-52C320 -58.627 314.627 -64 308 -64z" />
+    <glyph glyph-name="chess-board"
+      unicode="&#xF43C;"
+      horiz-adv-x="512" d=" M0 448V-64H512V448H0zM480 -32H32V416H480V-32zM128 0H64V64H128V0zM192 64H256V0H192V64zM320 64H384V0H320V64zM192 64H128V128H192V64zM320 128V64H256V128H320zM384 64V128H448V64H384zM128 192V128H64V192H128zM256 128H192V192H256V128zM320 192H384V128H320V192zM192 192H128V256H192V192zM256 192V256H320V192H256zM384 192V256H448V192H384zM128 320V256H64V320H128zM192 256V320H256V256H192zM320 256V320H384V256H320zM192 320H128V384H192V320zM320 320H256V384H320V320zM448 320H384V384H448V320z" />
+    <glyph glyph-name="chess-clock-alt"
+      unicode="&#xF43E;"
+      horiz-adv-x="640" d=" M600 320H480V352H500C506.627 352 512 357.373 512 364V372C512 378.627 506.627 384 500 384H428C421.373 384 416 378.627 416 372V364C416 357.373 421.373 352 428 352H448V320H212C218.627 320 224 325.373 224 332V340C224 346.627 218.627 352 212 352H140C133.373 352 128 346.627 128 340V332C128 325.373 133.373 320 140 320H40C17.909 320 0 302.092 0 280V40C0 17.908 17.909 0 40 0H600C622.091 0 640 17.908 640 40V280C640 302.092 622.091 320 600 320zM608 40C608 35.589 604.411 32 600 32H40C35.589 32 32 35.589 32 40V280C32 284.411 35.589 288 40 288H600C604.411 288 608 284.411 608 280V40zM176 280C109.726 280 56 226.274 56 160S109.726 40 176 40S296 93.726 296 160S242.274 280 176 280zM176 72C127.477 72 88 111.477 88 160S127.477 248 176 248S264 208.523 264 160S224.523 72 176 72zM224.083 202.427C228.77 197.741 228.77 190.143 224.083 185.456L184.485 145.858C179.798 141.172 172.201 141.172 167.514 145.858L161.858 151.514C157.171 156.2 157.171 163.798 161.858 168.485L201.456 208.083C206.143 212.769 213.74 212.769 218.427 208.083L224.083 202.427zM464 280C397.726 280 344 226.274 344 160S397.726 40 464 40S584 93.726 584 160S530.274 280 464 280zM464 72C415.477 72 376 111.477 376 160S415.477 248 464 248S552 208.523 552 160S512.523 72 464 72zM480 212V156C480 149.373 474.627 144 468 144H460C453.373 144 448 149.373 448 156V212C448 218.627 453.373 224 460 224H468C474.627 224 480 218.627 480 212z" />
+    <glyph glyph-name="chess-clock"
+      unicode="&#xF43D;"
+      horiz-adv-x="640" d=" M600 320H500C506.627 320 512 325.373 512 332V340C512 346.627 506.627 352 500 352H428C421.373 352 416 346.627 416 340V332C416 325.373 421.373 320 428 320H192V352H212C218.627 352 224 357.373 224 364V372C224 378.627 218.627 384 212 384H140C133.373 384 128 378.627 128 372V364C128 357.373 133.373 352 140 352H160V320H40C17.909 320 0 302.092 0 280V40C0 17.908 17.909 0 40 0H600C622.091 0 640 17.908 640 40V280C640 302.092 622.091 320 600 320zM608 40C608 35.589 604.411 32 600 32H40C35.589 32 32 35.589 32 40V280C32 284.411 35.589 288 40 288H600C604.411 288 608 284.411 608 280V40zM464 280C397.726 280 344 226.274 344 160S397.726 40 464 40S584 93.726 584 160S530.274 280 464 280zM464 72C415.477 72 376 111.477 376 160S415.477 248 464 248S552 208.523 552 160S512.523 72 464 72zM176 280C109.726 280 56 226.274 56 160S109.726 40 176 40S296 93.726 296 160S242.274 280 176 280zM176 72C127.477 72 88 111.477 88 160S127.477 248 176 248S264 208.523 264 160S224.523 72 176 72zM192 212V156C192 149.373 186.627 144 180 144H172C165.373 144 160 149.373 160 156V212C160 218.627 165.373 224 172 224H180C186.627 224 192 218.627 192 212zM512.0830000000001 202.427C516.7700000000001 197.741 516.7700000000001 190.143 512.0830000000001 185.456L472.4850000000001 145.858C467.7980000000001 141.172 460.2010000000001 141.172 455.5140000000001 145.858L449.8580000000001 151.514C445.1710000000001 156.2 445.1710000000001 163.798 449.8580000000001 168.485L489.4560000000001 208.083C494.1430000000001 212.769 501.7400000000001 212.769 506.4270000000001 208.083L512.0830000000001 202.427z" />
+    <glyph glyph-name="chess-king-alt"
+      unicode="&#xF440;"
+      horiz-adv-x="256" d=" M232 25.602V52C232 58.627 226.627 64 220 64H204.108C187.141 112.115 189.926 167.907 189.926 191.813V192H216C222.627 192 228 197.373 228 204V212C228 218.627 222.627 224 216 224H194.058L225.595 320.548C230.663 336.062 219.102 352 202.782 352H153.799V379.234H173.591A5.98 5.98 0 0 1 179.571 385.214V407.637A5.98 5.98 0 0 1 173.591 413.617H145.204V442.02A5.98 5.98 0 0 1 139.224 448H116.8A5.98 5.98 0 0 1 110.82 442.02V413.617H82.401A5.98 5.98 0 0 1 76.421 407.637V385.213A5.98 5.98 0 0 1 82.401 379.233H102.225V352H53.212C36.891 352 25.33 336.0610000000001 30.399 320.5470000000001L61.941 224H40C33.373 224 28 218.627 28 212V204C28 197.373 33.373 192 40 192H66.074V191.813C66.074 168.915 68.977 112.521 51.897 64H36C29.373 64 24 58.627 24 52V25.602L4.942 11.742A12.002 12.002 0 0 1 0 2.037V-52C0 -58.627 5.373 -64 12 -64H243.999C250.626 -64 255.999 -58.628 255.999 -52L256 2.037A12 12 0 0 1 251.058 11.742L232 25.602zM191.752 320L160.395 224H95.605L64.242 320H191.752zM98.074 191.813V192H157.926V191.813C157.926 165.524 155.584 113.743 170.451 64H85.544C100.566 114.385 98.074 166.298 98.074 191.813zM223.999 -32H32V-8.147L56 9.307V32H200V9.307L224 -8.147L223.999 -32z" />
+    <glyph glyph-name="chess-king"
+      unicode="&#xF43F;"
+      horiz-adv-x="448" d=" M416 -44V-52C416 -58.627 410.627 -64 404 -64H44C37.373 -64 32 -58.627 32 -52V-44C32 -37.373 37.373 -32 44 -32H404C410.627 -32 416 -37.373 416 -44zM445.705 242.741L360.418 0H87.582L2.295 242.741C-6.846 268.756 12.459 296 40.033 296H208V352H150A6 6 0 0 0 144 358V378A6 6 0 0 0 150 384H208V442A6 6 0 0 0 214 448H234A6 6 0 0 0 240 442V384H298A6 6 0 0 0 304 378V358A6 6 0 0 0 298 352H240V296H407.967C435.541 296 454.846 268.756 445.705 242.741zM407.967 264H40.033C34.489 264 30.647 258.579 32.485 253.348L110.256 32H337.743L415.514 253.348C417.3520000000001 258.579 413.512 264 407.967 264z" />
+    <glyph glyph-name="chess-knight-alt"
+      unicode="&#xF442;"
+      horiz-adv-x="320" d=" M84 283.273C84 274.4360000000001 76.837 267.273 68 267.273S52 274.4360000000001 52 283.273S59.163 299.273 68 299.273S84 292.1090000000001 84 283.273zM314.4 12.552A10.745 10.745 0 0 0 320 3.119L319.999 -53.255C319.999 -59.189 315.1880000000001 -64 309.254 -64H10.745C4.811 -64 0 -59.189 0 -53.255V3.119C0 7.051 2.148 10.669 5.6 12.552L32 26.952V53.255C32 59.189 36.811 64 42.745 64L32 74.745V89.662C32 108.492 39.433 126.37 52.173 139.619L24.833 151.77C9.748 158.476 0 173.476 0 189.984V298.048C0 307.305 2.42 316.1910000000001 6.959 323.982C-8.808 355.508 14.539 384 41.924 384H125.091C215.131 384 288 311.0080000000001 288 221.091V74.745L277.255 64C283.189 64 288 59.189 288 53.255V26.952L314.4 12.552zM88 64H232L256 88V221.091C256 293.39 197.39 352 125.091 352H41.924A8.156 8.156 0 0 1 34.629 340.197L45.091 319.273L37.752 311.934A19.638 19.638 0 0 1 32 298.048V189.984A9.818 9.818 0 0 1 37.831 181.0120000000001L75.856 164.1120000000001A9.82 9.82 0 0 1 84.407 164.3910000000001L99.954 172.5530000000001A9.82 9.82 0 0 1 104.98 179.1410000000001L112.683 214.2310000000001A19.633 19.633 0 0 0 123.201 227.6430000000001L149.819 240.7260000000001V185.3120000000001A40.001 40.001 0 0 0 129.771 150.6430000000001L84.049 124.33A39.996 39.996 0 0 1 64 89.662V88L88 64zM288 -9.498L256 7.956V32H64V7.956L32 -9.498V-32H287.999L288 -9.498z" />
+    <glyph glyph-name="chess-knight"
+      unicode="&#xF441;"
+      horiz-adv-x="384" d=" M26.13 145.773L65.667 128.201A79.895 79.895 0 0 1 32 62.979V0H352V224C352 329.987 266.105 416 160 416H44.129C32.918 416 22.379 411.634 14.452 403.707A41.913 41.913 0 0 1 6.592 355.2630000000001L9.544 349.3590000000001C3.337 340.187 0 329.379 0 318.059V185.98C0 168.61 10.257 152.827 26.13 145.773zM32 318.059C32 324.424 34.529 330.529 39.03 335.03L48 344L35.213 369.574C32.145 375.709 36.228 384 44.129 384H160C248.365 384 320 312.366 320 224V32H64V62.979A48 48 0 0 0 89.227 105.233L150.773 138.404A47.998000000000005 47.998000000000005 0 0 1 176 180.657V248L143.467 232.009A23.999000000000002 23.999000000000002 0 0 1 130.612 215.616L121.198 172.728A12 12 0 0 0 115.055 164.676L96.052 154.7A12.001000000000001 12.001000000000001 0 0 0 85.6 154.359L39.125 175.014A12.003000000000002 12.003000000000002 0 0 0 32 185.98V318.059zM56 300C56 311.046 64.954 320 76 320S96 311.046 96 300S87.046 280 76 280S56 288.954 56 300zM384 -44V-52C384 -58.627 378.627 -64 372 -64H12C5.373 -64 0 -58.627 0 -52V-44C0 -37.373 5.373 -32 12 -32H372C378.627 -32 384 -37.373 384 -44z" />
+    <glyph glyph-name="chess-pawn-alt"
+      unicode="&#xF444;"
+      horiz-adv-x="320" d=" M288 26.952V52C288 58.627 282.627 64 276 64H250.865C240.438 91.343 229.907 128.825 228.174 184H252C258.627 184 264 189.373 264 196V204C264 210.627 258.627 216 252 216H233.249C249.838 233.857 260 257.762 260 284C260 339.141 215.141 384 160 384S60 339.141 60 284C60 257.762 70.162 233.857 86.751 216H68C61.373 216 56 210.627 56 204V196C56 189.373 61.373 184 68 184H91.824C90.881 152.33 86.457 110.196 69.098 64H44C37.373 64 32 58.627 32 52V26.952L6.254 12.909A12 12 0 0 1 0 2.374V-52C0 -58.627 5.373 -64 12 -64H307.999C314.6260000000001 -64 319.999 -58.628 319.999 -52L320 2.374C320 6.765 317.601 10.806 313.746 12.909L288 26.952zM160 352C197.495 352 228 321.495 228 284S197.495 216 160 216S92 246.505 92 284S122.505 352 160 352zM123.843 184H196.127C197.006 152.261 201.104 110.448 216.907 64H103.091C118.874 110.415 122.967 152.242 123.843 184zM287.999 -32H32V-9.498L64 7.956V32H256V7.956L288 -9.498L287.999 -32z" />
+    <glyph glyph-name="chess-pawn"
+      unicode="&#xF443;"
+      horiz-adv-x="320" d=" M280 0S230.184 62.676 218.459 176H244C250.627 176 256 181.373 256 188V196C256 202.627 250.627 208 244 208H216.278C216.254 208.728 216.224 209.45 216.202 210.182C240.308 227.622 256 255.973 256 288C256 341.019 213.019 384 160 384S64 341.019 64 288C64 255.973 79.692 227.622 103.797 210.182C103.776 209.45 103.746 208.728 103.721 208H76C69.373 208 64 202.6270000000001 64 196V188C64 181.373 69.373 176 76 176H101.541C89.816 62.676 40 0 40 0H280zM96 288C96 323.29 124.71 352 160 352S224 323.29 224 288S195.29 224 160 224S96 252.71 96 288zM134.992 192H185.009C189.451 122.038 207.81 68.015 224.617 32H95.384C112.191 68.015 130.549 122.038 134.992 192zM320 -44V-52C320 -58.627 314.627 -64 308 -64H12C5.373 -64 0 -58.627 0 -52V-44C0 -37.373 5.373 -32 12 -32H308C314.627 -32 320 -37.373 320 -44z" />
+    <glyph glyph-name="chess-queen-alt"
+      unicode="&#xF446;"
+      horiz-adv-x="256" d=" M232 25.602V52C232 58.627 226.627 64 220 64H204.454C188.02 114.736 189.926 169.417 189.926 208H217.037C223.664 208 229.037 213.373 229.037 220V228C229.037 234.627 223.664 240 217.037 240H197.013L246.908 362.6960000000001A6 6 0 0 1 244.165 370.255L225.7990000000001 380.011C222.904 381.549 219.3190000000001 380.475 217.7290000000001 377.608C213.6000000000001 370.159 206.8850000000001 359.6720000000001 196.8080000000001 359.6720000000001C183.1450000000001 359.6720000000001 182.1830000000001 369.116 181.674 387.116A6.003 6.003 0 0 1 175.6760000000001 392.953H156.54C153.952 392.953 151.669 391.284 150.847 388.829C146.584 376.089 138.399 369.278 128.002 369.278C117.605 369.278 109.42 376.089 105.157 388.829C104.336 391.284 102.053 392.9530000000001 99.464 392.9530000000001H80.328A6.0040000000000004 6.0040000000000004 0 0 1 74.33 387.115C73.826 369.1600000000001 72.877 359.6720000000001 59.195 359.6720000000001C49.392 359.6720000000001 43.143 369.235 38.096 377.742A5.992 5.992 0 0 1 30.128 379.971L11.84 370.255A6 6 0 0 1 9.097 362.6960000000001L58.988 240H38.963C32.336 240 26.963 234.627 26.963 228V220C26.963 213.373 32.336 208 38.963 208H66.074C66.074 181.041 69.078 118.198 51.552 64H36C29.373 64 24 58.627 24 52V25.602L4.942 11.742A12.002 12.002 0 0 1 0 2.037V-52C0 -58.627 5.373 -64 12 -64H243.999C250.626 -64 255.999 -58.628 255.999 -52L256 2.037A12 12 0 0 1 251.058 11.742L232 25.602zM97.304 346.993C121.07 330.21 146.551 338.412 158.7 346.993C168.107 332.763 183.309 327.275 198.127 327.6910000000001L162.468 240H93.532L57.875 327.6910000000001C69.891 327.351 86.712 330.974 97.304 346.993zM98.074 208H157.926C157.926 177.62 155.45 119.311 171.019 64H84.979C100.77 120.236 98.074 179.178 98.074 208zM223.999 -32H32V-8.147L56 9.307V32H200V9.307L224 -8.147L223.999 -32zM155.821 420C155.821 404.536 143.285 392 127.821 392S99.821 404.536 99.821 420S112.357 448 127.821 448S155.821 435.464 155.821 420z" />
+    <glyph glyph-name="chess-queen"
+      unicode="&#xF445;"
+      horiz-adv-x="512" d=" M436 -64H76C69.373 -64 64 -58.627 64 -52V-44C64 -37.373 69.373 -32 76 -32H436C442.627 -32 448 -37.373 448 -44V-52C448 -58.627 442.627 -64 436 -64zM255.579 416C242.345 416 231.579 405.234 231.579 392S242.345 368 255.579 368S279.579 378.766 279.579 392S268.813 416 255.579 416M255.579 448C286.507 448 311.579 422.928 311.579 392S286.507 336 255.579 336S199.579 361.072 199.579 392S224.651 448 255.579 448zM337.158 288H328.839C324.306 278.4070000000001 304.159 238.769 256 238.769C207.853 238.769 187.683 278.433 183.161 288H174.846C173.361 266.117 167.4 218.794 112 218.794C85.356 218.794 65.652 234.488 50.315 256.37L43.461 252.753L133.507 32H378.493L468.539 252.753L461.762 256.33C452.575 243.118 432.5 218.794 400 218.794C344.578 218.794 338.626 266.408 337.158 288M356.319 320C362.813 320 368.1310000000001 314.828 368.314 308.336C369.3760000000001 270.598 371.2870000000001 250.794 400 250.794C421.318 250.794 435.449 273.079 444.065 288.596C447.226 294.289 454.37 296.416 460.147 293.366L499.504 272.593A12 12 0 0 0 505.014 257.448L400 0H112L6.986 257.448A12 12 0 0 0 12.496 272.593L51.675 293.2720000000001C58.157 296.693 64.822 293.437 67.574 288.819C78.182 271.019 91.309 250.794 111.999 250.794C140.752 250.794 142.634 270.692 143.687 308.3330000000001C143.868 314.826 149.187 320 155.682 320H196.687C201.862 320 206.441 316.6720000000001 208.075 311.7620000000001C216.965 285.053 234.148 270.7700000000001 256 270.7700000000001S295.034 285.053 303.925 311.7620000000001C305.5590000000001 316.673 310.1380000000001 320 315.313 320H356.319z" />
+    <glyph glyph-name="chess-rook-alt"
+      unicode="&#xF448;"
+      horiz-adv-x="320" d=" M183.999 136H136.001V184.421C136.001 197.443 146.558 208 159.581 208H160.42C173.443 208 184 197.443 184 184.421V136zM313.746 12.909A12.001000000000001 12.001000000000001 0 0 0 320 2.374L319.999 -52C319.999 -58.627 314.6260000000001 -64 307.999 -64H12C5.373 -64 0 -58.627 0 -52V2.374C0 6.765 2.399 10.806 6.254 12.909L32 26.952V52C32 58.627 37.373 64 44 64H48.825C62.999 128.512 64.001 190.011 64.013 217.36L31.03 250.343A24.002000000000002 24.002000000000002 0 0 0 24 267.314V360C24 373.255 34.745 384 48 384H272C285.255 384 296 373.255 296 360V267.314A23.998000000000005 23.998000000000005 0 0 0 288.971 250.344L255.989 217.361C256.003 189.982 257.009 128.41 271.1720000000001 64.001H276C282.627 64.001 288 58.628 288 52.001V26.953L313.746 12.909zM81.549 64H238.447C223.103 138.108 223.943 205.729 224.02 230.648L264 270.628V352H224V304H192V352H128V304H96V352H56V270.628L95.979 230.649C96.06 205.509 96.867 138.028 81.549 64zM288 -9.498L256 7.956V32H64V7.956L32 -9.498V-32H287.999L288 -9.498z" />
+    <glyph glyph-name="chess-rook"
+      unicode="&#xF447;"
+      horiz-adv-x="384" d=" M80 224C80.186 187.04 79.541 111.235 46.447 0H337.5350000000001C304.471 110.821 303.82 186.807 304 224L344.971 264.971A23.999000000000002 23.999000000000002 0 0 1 352 281.942V392C352 405.255 341.255 416 328 416H56C42.745 416 32 405.255 32 392V281.9410000000001C32 275.576 34.529 269.471 39.029 264.9700000000001L80 224zM64 384H112V336H144V384H240V336H272V384H320V285.255L272.064 237.319C271.8660000000001 196.418 270.9090000000001 130.982 295.5950000000001 32H88.364C113.075 131.192 112.139 196.448 111.933 237.321L64 285.255V384zM220 160H164V216C164 231.464 176.536 244 192 244S220 231.464 220 216V160zM384 -44V-52C384 -58.627 378.627 -64 372 -64H12C5.373 -64 0 -58.627 0 -52V-44C0 -37.373 5.373 -32 12 -32H372C378.627 -32 384 -37.373 384 -44z" />
+    <glyph glyph-name="chess"
+      unicode="&#xF439;"
+      horiz-adv-x="512" d=" M507.097 11.596L488 25.602V52C488 58.627 482.627 64 476 64H472.235C462.776 104.997 461.637 143.938 461.537 163.584L491.567 187.983A12 12 0 0 1 496 197.296V264C496 277.255 485.255 288 472 288H296C282.745 288 272 277.255 272 264V197.297C272 193.683 273.628 190.262 276.433 187.984L306.464 163.584C306.366 143.962 305.23 105.066 295.762 64.001H292C285.373 64.001 280 58.628 280 52.001V25.603L260.903 11.597A11.997 11.997 0 0 1 256 1.92V2.037A12 12 0 0 1 251.058 11.742L232 25.602V52C232 58.627 226.627 64 220 64H204.107C187.14 112.115 189.925 167.907 189.925 191.813V192H216C222.627 192 228 197.373 228 204V212C228 218.627 222.627 224 216 224H194.058L225.595 320.548C230.663 336.062 219.102 352 202.782 352H153.799V379.234H173.591A5.98 5.98 0 0 1 179.57 385.214V407.637A5.98 5.98 0 0 1 173.591 413.617H145.203V442.02A5.98 5.98 0 0 1 139.224 448H116.8A5.979 5.979 0 0 1 110.821 442.02V413.617H82.4A5.98 5.98 0 0 1 76.421 407.637V385.213A5.98 5.98 0 0 1 82.4 379.233H102.224V352H53.211C36.89 352 25.329 336.0610000000001 30.398 320.5470000000001L61.941 224H40C33.373 224 28 218.627 28 212V204C28 197.373 33.373 192 40 192H66.074V191.813C66.074 168.915 68.977 112.521 51.897 64H36C29.373 64 24 58.627 24 52V25.602L4.942 11.742A12.002 12.002 0 0 1 0 2.037V-52C0 -58.627 5.373 -64 12 -64H243.999C250.626 -64 255.999 -58.627 255.999 -52H256C256 -58.627 261.373 -64 268 -64H500C506.627 -64 512 -58.627 512 -52V1.919C512 5.742 510.179 9.335 507.097 11.596zM64.241 320H191.752L160.395 224H95.605L64.241 320zM98.074 191.813V192H157.926V191.813C157.926 165.524 155.584 113.743 170.451 64H85.544C100.565 114.385 98.074 166.299 98.074 191.813zM223.999 -32H32V-8.147L56 9.307V32H200V9.307L224 -8.147L223.999 -32zM304 206.815V256H328V224H360V256H408V224H440V256H464V206.815L429.564 178.836L429.538 171.254C429.485 155.6520000000001 429.337 112.052 439.463 63.999H328.533C338.673 112.127 338.517 155.6760000000001 338.462 171.257L338.435 178.837L304 206.815zM479.999 -32H288V-8.147L312 9.307V32H456V9.307L480 -8.147L479.999 -32zM402.461 93.538H365.539V132.308C365.539 141.484 372.978 148.923 382.154 148.923H385.846C395.022 148.923 402.461 141.484 402.461 132.308V93.538z" />
+    <glyph glyph-name="chevron-circle-down"
+      unicode="&#xF13A;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192zM264.5 105.4L379.5 220.5C384.2 225.2 384.2 232.8 379.5 237.5L372.4 244.6C367.7 249.3 360.1 249.3 355.4 244.6L256 145L156.5 244.5C151.8 249.2 144.2 249.2 139.5 244.5L132.4 237.4C127.7 232.7 127.7 225.1 132.4 220.4L247.4 105.3C252.2 100.7 259.8 100.7 264.5 105.4z" />
+    <glyph glyph-name="chevron-circle-left"
+      unicode="&#xF137;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24zM169.4 200.5L284.5 315.5C289.2 320.2 296.8 320.2 301.5 315.5L308.6 308.4C313.3 303.7000000000001 313.3 296.1 308.6 291.4L209 192L308.5 92.5C313.2 87.8 313.2 80.2 308.5 75.5L301.4 68.4C296.7 63.7 289.1 63.7 284.4 68.4L169.3 183.4C164.7 188.2 164.7 195.8 169.4 200.5z" />
+    <glyph glyph-name="chevron-circle-right"
+      unicode="&#xF138;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408zM342.6 183.5L227.5000000000001 68.5C222.8000000000001 63.8 215.2 63.8 210.5 68.5L203.4 75.6C198.7000000000001 80.3 198.7000000000001 87.9 203.4 92.6L303 192L203.5 291.5C198.8 296.2 198.8 303.8 203.5 308.5L210.6 315.6C215.3 320.3 222.9 320.3 227.6 315.6L342.7 200.6C347.3 195.8 347.3 188.2 342.6 183.5z" />
+    <glyph glyph-name="chevron-circle-up"
+      unicode="&#xF139;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM264.5 278.6L379.5 163.5C384.2 158.8 384.2 151.2 379.5 146.5L372.4 139.4C367.7 134.7 360.1 134.7 355.4 139.4L256 239L156.5 139.5C151.8 134.8 144.2 134.8 139.5 139.5L132.4 146.6C127.7 151.3 127.7 158.9 132.4 163.6L247.4 278.7000000000001C252.2 283.3 259.8 283.3 264.5 278.6z" />
+    <glyph glyph-name="chevron-double-down"
+      unicode="&#xF322;"
+      horiz-adv-x="448" d=" M443.5 349.5L232.5 138.4C227.8 133.7 220.2 133.7 215.5 138.4L4.5 349.5C-0.2 354.2 -0.2 361.8 4.5 366.5L11.6 373.6C16.3 378.3 23.9 378.3 28.6 373.6L224 178.1L419.5 373.5C424.2 378.2 431.8 378.2 436.5 373.5L443.6 366.4C448.2000000000001 361.8 448.2000000000001 354.2 443.5 349.5zM443.5 238.5L436.4 245.6C431.7 250.3 424.1 250.3 419.4 245.6L224 50.1L28.5 245.5C23.8 250.2 16.2 250.2 11.5 245.5L4.4 238.4C-0.3 233.7 -0.3 226.1 4.4 221.4L215.4 10.3C220.1 5.6 227.7 5.6 232.4 10.3L443.4 221.4C448.2 226.2 448.2 233.8 443.5 238.5z" />
+    <glyph glyph-name="chevron-double-left"
+      unicode="&#xF323;"
+      horiz-adv-x="384" d=" M349.5 -27.5L138.4 183.5C133.7 188.2 133.7 195.8 138.4 200.5L349.5 411.5C354.2 416.2 361.8 416.2 366.5 411.5L373.6 404.4C378.3 399.7 378.3 392.1 373.6 387.4L178.1 192L373.6 -3.5C378.3 -8.2 378.3 -15.8 373.6 -20.5L366.5 -27.6C361.8 -32.2 354.2 -32.2 349.5 -27.5zM238.5 -27.5L245.6 -20.4C250.3 -15.7 250.3 -8.1 245.6 -3.4L50.1 192L245.5 387.5C250.2 392.2 250.2 399.8 245.5 404.5L238.4 411.6C233.7 416.3 226.1 416.3 221.4 411.6L10.3 200.6C5.6 195.9 5.6 188.3 10.3 183.6L221.4 -27.4C226.2 -32.2 233.8 -32.2 238.5 -27.5z" />
+    <glyph glyph-name="chevron-double-right"
+      unicode="&#xF324;"
+      horiz-adv-x="384" d=" M34.5 411.5L245.6 200.5C250.3 195.8 250.3 188.2 245.6 183.5L34.5 -27.5C29.8 -32.2 22.2 -32.2 17.5 -27.5L10.4 -20.4C5.7 -15.7 5.7 -8.1 10.4 -3.4L205.9 192L10.5 387.5C5.8 392.2 5.8 399.8 10.5 404.5L17.6 411.6C22.2 416.2 29.8 416.2 34.5 411.5zM145.5 411.5L138.4 404.4C133.7 399.7 133.7 392.1 138.4 387.4L333.9 192L138.5 -3.5C133.8 -8.2 133.8 -15.8 138.5 -20.5L145.6 -27.6C150.3 -32.3 157.9 -32.3 162.6 -27.6L373.7 183.4C378.4 188.1 378.4 195.7 373.7 200.4L162.6 411.4C157.8 416.2 150.2 416.2 145.5 411.5z" />
+    <glyph glyph-name="chevron-double-up"
+      unicode="&#xF325;"
+      horiz-adv-x="448" d=" M4.5 34.5L215.5 245.6C220.2 250.3 227.8 250.3 232.5 245.6L443.5 34.5C448.2 29.8 448.2 22.2 443.5 17.5L436.4 10.4C431.7 5.7 424.1 5.7 419.4 10.4L224 205.9L28.5 10.5C23.8 5.8 16.2 5.8 11.5 10.5L4.4 17.6C-0.2 22.2 -0.2 29.8 4.5 34.5zM4.5 145.5L11.6 138.4C16.3 133.7 23.9 133.7 28.6 138.4L224 333.9L419.5 138.4C424.2 133.7 431.8 133.7 436.5 138.4L443.6 145.5C448.3 150.2 448.3 157.8 443.6 162.5L232.6 373.6C227.9000000000001 378.3 220.3 378.3 215.6 373.6L4.5 162.5C-0.2 157.8 -0.2 150.2 4.5 145.5z" />
+    <glyph glyph-name="chevron-down"
+      unicode="&#xF078;"
+      horiz-adv-x="448" d=" M443.5 285.4L436.4 292.5C431.7 297.2 424.1 297.2 419.4 292.5L224 97L28.5 292.5C23.8 297.2 16.2 297.2 11.5 292.5L4.4 285.4C-0.3 280.7000000000001 -0.3 273.1 4.4 268.4L215.4 57.3C220.1 52.6 227.7 52.6 232.4 57.3L443.4 268.4C448.2 273.1 448.2 280.7000000000001 443.5 285.4z" />
+    <glyph glyph-name="chevron-left"
+      unicode="&#xF053;"
+      horiz-adv-x="256" d=" M238.475 -27.535L245.546 -20.465C250.232 -15.7790000000001 250.232 -8.181 245.546 -3.494L50.053 192L245.546 387.4940000000001C250.232 392.18 250.232 399.778 245.546 404.4650000000001L238.475 411.5350000000001C233.789 416.221 226.191 416.221 221.505 411.5350000000001L10.454 200.485C5.768 195.799 5.768 188.201 10.454 183.514L221.505 -27.536C226.191 -32.222 233.789 -32.222 238.475 -27.535z" />
+    <glyph glyph-name="chevron-right"
+      unicode="&#xF054;"
+      horiz-adv-x="256" d=" M17.525 411.535L10.454 404.465C5.768 399.779 5.768 392.181 10.454 387.4940000000001L205.947 192L10.454 -3.494C5.768 -8.18 5.768 -15.778 10.454 -20.465L17.525 -27.535C22.211 -32.221 29.809 -32.221 34.495 -27.535L245.546 183.515C250.232 188.201 250.232 195.799 245.546 200.486L34.495 411.535C29.809 416.222 22.211 416.222 17.525 411.535z" />
+    <glyph glyph-name="chevron-square-down"
+      unicode="&#xF329;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM215.5 112.4L100.5 227.5C95.8 232.2 95.8 239.8 100.5 244.5L107.6 251.6C112.3 256.3 119.9 256.3 124.6 251.6L224 152L323.5 251.5C328.2 256.2 335.8 256.2 340.5 251.5L347.6 244.4C352.3 239.7 352.3 232.1 347.6 227.4L232.6 112.3C227.8 107.8 220.2 107.8 215.5 112.4z" />
+    <glyph glyph-name="chevron-square-left"
+      unicode="&#xF32A;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM48 0C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48zM144.4 200.5L259.5 315.5C264.2 320.2 271.8 320.2 276.5 315.5L283.6 308.4C288.3 303.7000000000001 288.3 296.1 283.6 291.4L184 192L283.5 92.5C288.2 87.8 288.2 80.2 283.5 75.5L276.4 68.4C271.7 63.7 264.1 63.7 259.4 68.4L144.3 183.4C139.8 188.2 139.8 195.8 144.4 200.5z" />
+    <glyph glyph-name="chevron-square-right"
+      unicode="&#xF32B;"
+      horiz-adv-x="448" d=" M0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368zM400 384C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400zM303.6 183.5L188.5 68.5C183.8000000000001 63.8 176.2 63.8 171.5 68.5L164.4 75.6C159.7000000000001 80.3 159.7000000000001 87.9 164.4 92.6L264 192L164.5 291.5C159.8 296.2 159.8 303.8 164.5 308.5L171.6 315.6C176.3 320.3 183.9 320.3 188.6 315.6L303.7 200.6C308.2 195.8 308.2 188.2 303.6 183.5z" />
+    <glyph glyph-name="chevron-square-up"
+      unicode="&#xF32C;"
+      horiz-adv-x="448" d=" M48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32zM32 368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368zM232.5 271.6L347.5 156.5C352.2 151.8 352.2 144.2 347.5 139.5L340.4 132.4C335.7 127.7 328.1 127.7 323.4 132.4L224 232L124.5 132.5C119.8 127.8 112.2 127.8 107.5 132.5L100.4 139.6C95.7 144.3 95.7 151.9 100.4 156.6L215.4 271.7000000000001C220.2 276.2000000000001 227.8 276.2000000000001 232.5 271.6z" />
+    <glyph glyph-name="chevron-up"
+      unicode="&#xF077;"
+      horiz-adv-x="448" d=" M4.465 81.525L11.535 74.454C16.221 69.768 23.819 69.768 28.506 74.454L224 269.947L419.4940000000001 74.454C424.18 69.768 431.778 69.768 436.4650000000001 74.454L443.5350000000001 81.525C448.221 86.211 448.221 93.809 443.5350000000001 98.495L232.485 309.546C227.799 314.232 220.201 314.232 215.514 309.546L4.465 98.495C-0.222 93.809 -0.222 86.211 4.465 81.525z" />
+    <glyph glyph-name="child"
+      unicode="&#xF1AE;"
+      horiz-adv-x="448" d=" M413.287 357.254C389.577 380.961 349.955 384.466 319.969 354.478C318.651 406.275 276.1070000000001 448 224 448C171.896 448 129.353 406.271 128.031 354.479C97.944 384.5660000000001 58.32 380.858 34.715 357.257C9.761 332.301 9.761 291.699 34.713 266.746L112 189.489V-8C112 -38.879 137.122 -64 168 -64H184C199.654 -64 213.828 -57.544 224 -47.154C234.172 -57.544 248.346 -64 264 -64H280C310.878 -64 336 -38.879 336 -8V189.489L413.286 266.745C438.238 291.699 438.238 332.301 413.287 357.254zM224 416C259.346 416 288 387.346 288 352S259.346 288 224 288S160 316.654 160 352S188.654 416 224 416zM390.628 289.372L304 202.744V-8C304 -21.255 293.255 -32 280 -32H264C250.745 -32 240 -21.255 240 -8V104H208V-8C208 -21.255 197.255 -32 184 -32H168C154.745 -32 144 -21.255 144 -8V202.744L57.372 289.372C44.876 301.8690000000001 44.876 322.1310000000001 57.372 334.6280000000001C69.87 347.124 90.129 347.125 102.628 334.6280000000001L181.256 256H266.7440000000001L345.372 334.628C357.87 347.124 378.129 347.125 390.6280000000001 334.628C403.124 322.131 403.124 301.8690000000001 390.6280000000001 289.372z" />
+    <glyph glyph-name="chimney"
+      unicode="&#xF78B;"
+      horiz-adv-x="512" d=" M480 448H32C14.3 448 0 433.7 0 416V288C0 270.3 14.3 256 32 256V-48C32 -56.8 39.2 -64 48 -64H464C472.8 -64 480 -56.8 480 -48V256C497.7 256 512 270.3 512 288V416C512 433.7 497.7 448 480 448zM64 256H160V128H64V256zM64 -32V96H320V-32H64zM448 -32H352V96H448V-32zM448 128H192V256H448V128zM480 288H32V416H480V288z" />
+    <glyph glyph-name="church"
+      unicode="&#xF51D;"
+      horiz-adv-x="576" d=" M281.71 127.7C248.43 124.53 224 94.68 224 61.25V-56C224 -60.42 227.58 -64 232 -64H248C252.42 -64 256 -60.42 256 -56V62.2C256 78.15 266.86 92.96 282.59 95.56C302.61 98.85 320 83.42 320 64V-56C320 -60.42 323.58 -64 328 -64H344C348.42 -64 352 -60.42 352 -56V64C352 101.42 319.88 131.34 281.71 127.7zM558.5699999999999 92.01L448 144.74V173.88C448 185.12 442.1 195.54 432.46 201.32L304 278.4V352H376C380.42 352 384 355.58 384 360V376C384 380.42 380.42 384 376 384H304V440C304 444.42 300.42 448 296 448H280C275.58 448 272 444.42 272 440V384H200C195.58 384 192 380.42 192 376V360C192 355.58 195.58 352 200 352H272V278.4L143.54 201.32A31.997 31.997 0 0 1 128 173.88V144.73L17.43 92.01C6.96 87.01 0 74.11 0 59.68V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V59.68C32 61.66 32.45 63.1 32.8 63.89L128 109.29V-56C128 -60.42 131.58 -64 136 -64H152C156.42 -64 160 -60.42 160 -56V173.88L288 250.68L416 173.88V-56C416 -60.42 419.58 -64 424 -64H440C444.42 -64 448 -60.42 448 -56V109.29L543.2 63.89C543.5500000000001 63.1100000000001 544 61.67 544 59.6800000000001V-56C544 -60.42 547.58 -64 552 -64H568C572.42 -64 576 -60.42 576 -56V59.68C576 74.11 569.04 87.01 558.57 92.01z" />
+    <glyph glyph-name="circle-notch"
+      unicode="&#xF1CE;"
+      horiz-adv-x="512" d=" M288 423.897V415.728A11.995 11.995 0 0 1 297.698 403.96C396.638 384.575 472 297.539 472 192C472 73.337 375.945 -24 256 -24C137.337 -24 40 72.055 40 192C40 296.534 114.546 384.509 214.297 403.978A11.993 11.993 0 0 1 224 415.747V423.894C224 431.417 217.155 437.087 209.763 435.692C94.472 413.952 7.364 312.425 8.004 190.668C8.724 53.616 119.481 -56.288 256.5350000000001 -55.999C393.255 -55.711 504 55.211 504 192C504 313.187 417.076 414.067 302.176 435.704C294.807 437.092 288 431.396 288 423.897z" />
+    <glyph glyph-name="circle"
+      unicode="&#xF111;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192z" />
+    <glyph glyph-name="city"
+      unicode="&#xF64F;"
+      horiz-adv-x="640" d=" M132 80H92C85.38 80 80 74.63 80 68V28C80 21.37 85.38 16 92 16H132C138.62 16 144 21.37 144 28V68C144 74.63 138.62 80 132 80zM132 176H92C85.38 176 80 170.63 80 164V124C80 117.37 85.38 112 92 112H132C138.62 112 144 117.37 144 124V164C144 170.63 138.62 176 132 176zM132 272H92C85.38 272 80 266.63 80 260V220C80 213.37 85.38 208 92 208H132C138.62 208 144 213.37 144 220V260C144 266.63 138.62 272 132 272zM228 80H188C181.38 80 176 74.63 176 68V28C176 21.37 181.38 16 188 16H228C234.62 16 240 21.37 240 28V68C240 74.63 234.62 80 228 80zM228 176H188C181.38 176 176 170.63 176 164V124C176 117.37 181.38 112 188 112H228C234.62 112 240 117.37 240 124V164C240 170.63 234.62 176 228 176zM228 272H188C181.38 272 176 266.63 176 260V220C176 213.37 181.38 208 188 208H228C234.62 208 240 213.37 240 220V260C240 266.63 234.62 272 228 272zM420 176H380C373.38 176 368 170.63 368 164V124C368 117.37 373.38 112 380 112H420C426.62 112 432 117.37 432 124V164C432 170.63 426.62 176 420 176zM420 272H380C373.38 272 368 266.63 368 260V220C368 213.37 373.38 208 380 208H420C426.62 208 432 213.37 432 220V260C432 266.63 426.62 272 420 272zM420 368H380C373.38 368 368 362.63 368 356V316C368 309.37 373.38 304 380 304H420C426.62 304 432 309.37 432 316V356C432 362.63 426.62 368 420 368zM548 80H508C501.38 80 496 74.63 496 68V28C496 21.37 501.38 16 508 16H548C554.62 16 560 21.37 560 28V68C560 74.63 554.62 80 548 80zM548 176H508C501.38 176 496 170.63 496 164V124C496 117.37 501.38 112 508 112H548C554.62 112 560 117.37 560 124V164C560 170.63 554.62 176 548 176zM616 256H512V424C512 437.26 501.25 448 488 448H312C298.75 448 288 437.26 288 424V352H224V440C224 444.42 220.42 448 216 448H200C195.58 448 192 444.42 192 440V352H128V440C128 444.42 124.42 448 120 448H104C99.58 448 96 444.42 96 440V352H24C10.75 352 0 341.26 0 328V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V320H320V416H480V224H608V-56C608 -60.42 611.58 -64 616 -64H632C636.42 -64 640 -60.42 640 -56V232C640 245.26 629.25 256 616 256z" />
+    <glyph glyph-name="claw-marks"
+      unicode="&#xF6C2;"
+      horiz-adv-x="512" d=" M509.64 -29.53L508.17 -26.41C463.56 69.12 328.12 306.31 34.58 445.6C23.83 450.71 11.46 447.46 4.58 437.74C-2.36 427.9 -1.26 415.05 7.27 406.51L175.71 238.16C176.15 237.1 176.12 233.35 176.05 227.91V176.02H231.94C235.63 176.02 239.22 174.52 241.63 172.12L316.71 94.61C319.33 91.97 320.8 88.46 320.8 85.07L319.68 31.68L372.7 32.82C376.39 32.82 380.01 31.32 382.76 28.57L470.5599999999999 -56.8C475.28 -61.57 481.3999999999999 -63.99 487.5899999999999 -63.99C492.4299999999999 -63.99 497.3399999999999 -62.51 501.6499999999999 -59.46C511.4199999999999 -52.61 514.6999999999999 -40.3100000000001 509.6399999999999 -29.53zM405.22 51.34C396.66 59.9 384.82 64.8100000000001 372.38 64.8100000000001H372.35L352.35 64.39L352.79 84.72C352.79 97 348.0100000000001 108.55 339.5100000000001 117.05L264.4300000000001 194.56C255.7400000000001 203.25 244.2200000000001 208.03 231.9400000000001 208.03H208.0400000000001L208.0700000000001 230.48C208.1600000000001 238.53 208.3200000000001 250.71 198.5700000000001 260.45L64.26 394.77C287.06 275.07 406.66 98.49 460.31 -2.26L405.2200000000001 51.34zM29.52 236L29.49 236.02A20.536 20.536 0 0 1 3.9 229.27C-1.91 221.04 -0.94 209.87 4.96 204.1L75.98 114.93C78.6 112.29 80.07 108.77 80.07 105.02V48.02H137.06C140.81 48.02 144.31 46.57 147.9 43.05L266.75 -57.9C270.75 -61.9 276.03 -63.96 281.34 -63.96C285.46 -63.96 289.62 -62.71 293.21 -60.18C301.43 -54.43 304.3 -43.68 300.02 -34.62C222.01 130.77 84.85 209.74 29.52 236zM169.58 66.56C160.89 75.25 149.33 80.03 137.05 80.03H112.06V105.03C112.06 117.3300000000001 107.28 128.87 99.81 136.2000000000001L64.6 180.38C116.78 148.16 187.57 92.46 242.06 4.98L169.58 66.56zM313.77 340.71C315.46 339.04 316.39 336.76 316.52 332.52L321.61 289.62L366.41 284.39C368.75 284.39 371.03 283.45 374.03 280.59L478.07 197.84C481.91 194 486.97 192.03 492.07 192.03C496.07 192.03 500.07 193.23 503.57 195.69C511.44 201.24 514.16 211.58 510.07 220.25C445 358.21 330.55 424.12 284.34 446.07C275.62 450.19 265.28 447.51 259.69 439.62C254.1 431.68 255 420.95 260.13 416.15L313.77 340.7100000000001zM451.0599999999999 260.08L395.35 304.41C387.85 311.93 377.48 316.28 368.64 316.28H368.33L350.37 318.42L348.4 334.42C348.4 345.31 344.15 355.57 338.18 361.26L316.65 391.51C357.02 365.73 409.07 323.65 451.0599999999999 260.08z" />
+    <glyph glyph-name="clipboard-check"
+      unicode="&#xF46C;"
+      horiz-adv-x="384" d=" M336 384H247.4C247.8 386.6 248 389.3 248 392C248 422.9 222.9 448 192 448S136 422.9 136 392C136 389.3 136.2 386.6 136.6 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 416C205.3 416 216 405.3 216 392S205.3 368 192 368S168 378.7 168 392S178.7 416 192 416zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V336C32 344.8 39.2 352 48 352H96V332C96 325.4 101.4 320 108 320H276C282.6 320 288 325.4 288 332V352H336C344.8 352 352 344.8 352 336V-16zM293.1 220.4C288.4000000000001 225.1 280.8 225.1 276.1 220.5L158.4 103.7L108 154.3C103.3 159 95.7 159 91 154.3L82.5 145.8C77.8 141.1 77.8 133.5 82.5 128.8L149.9 61.2000000000001C154.6 56.5000000000001 162.2 56.5000000000001 166.9 61.2000000000001L301.7000000000001 194.9C306.4000000000001 199.6 306.4000000000001 207.2000000000001 301.8000000000001 211.9L293.1000000000001 220.4z" />
+    <glyph glyph-name="clipboard-list-check"
+      unicode="&#xF737;"
+      horiz-adv-x="384" d=" M336 384H247.4C247.8 386.6 248 389.3 248 392C248 422.9 222.9 448 192 448S136 422.9 136 392C136 389.3 136.2 386.6 136.6 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 416C205.3 416 216 405.3 216 392S205.3 368 192 368S168 378.7 168 392S178.7 416 192 416zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V336C32 344.8 39.2 352 48 352H96V332C96 325.4 101.4 320 108 320H276C282.6 320 288 325.4 288 332V352H336C344.8 352 352 344.8 352 336V-16zM112 120C98.7 120 88 109.3 88 96S98.7 72 112 72S136 82.7 136 96S125.3 120 112 120zM280 112H168C163.6 112 160 108.4 160 104V88C160 83.6 163.6 80 168 80H280C284.4 80 288 83.6 288 88V104C288 108.4 284.4 112 280 112zM126.2 177.6L190.4 241.2C192.5 243.3 192.5 246.7 190.4 248.8L177.8 261.5C175.7 263.6 172.3 263.6 170.2 261.5L122.6 214.3L102 235.2C99.9 237.3 96.5 237.3 94.4 235.2L81.7 222.6C79.6 220.5 79.6 217.1 81.7 215L118.8 177.6C120.7 175.5 124.1 175.5 126.2 177.6zM280 208H202.4L170.1 176H280C284.4 176 288 179.6 288 184V200C288 204.4 284.4 208 280 208z" />
+    <glyph glyph-name="clipboard-list"
+      unicode="&#xF46D;"
+      horiz-adv-x="384" d=" M280 208H168C163.6 208 160 204.4 160 200V184C160 179.6 163.6 176 168 176H280C284.4 176 288 179.6 288 184V200C288 204.4 284.4 208 280 208zM280 112H168C163.6 112 160 108.4 160 104V88C160 83.6 163.6 80 168 80H280C284.4 80 288 83.6 288 88V104C288 108.4 284.4 112 280 112zM112 216C98.7 216 88 205.3 88 192S98.7 168 112 168S136 178.7 136 192S125.3 216 112 216zM112 120C98.7 120 88 109.3 88 96S98.7 72 112 72S136 82.7 136 96S125.3 120 112 120zM336 384H247.4C247.8 386.6 248 389.3 248 392C248 422.9 222.9 448 192 448S136 422.9 136 392C136 389.3 136.2 386.6 136.6 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 416C205.3 416 216 405.3 216 392S205.3 368 192 368S168 378.7 168 392S178.7 416 192 416zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V336C32 344.8 39.2 352 48 352H96V332C96 325.4 101.4 320 108 320H276C282.6 320 288 325.4 288 332V352H336C344.8 352 352 344.8 352 336V-16z" />
+    <glyph glyph-name="clipboard-prescription"
+      unicode="&#xF5E8;"
+      horiz-adv-x="384" d=" M285.6600000000001 135.03C288.7800000000001 138.15 288.7800000000001 143.22 285.6600000000001 146.34L274.35 157.65C271.23 160.77 266.1600000000001 160.77 263.04 157.65L224 118.63L192.67 149.96C211.17 159.1 224 177.97 224 200C224 230.93 198.93 256 168 256H104C99.58 256 96 252.42 96 248V104C96 99.58 99.58 96 104 96H120C124.42 96 128 99.58 128 104V144H153.37L201.37 96L162.34 56.97C159.22 53.85 159.22 48.78 162.34 45.66L173.65 34.35C176.77 31.23 181.84 31.23 184.96 34.35L224 73.37L263.03 34.34C266.15 31.22 271.22 31.22 274.34 34.34L285.65 45.65C288.77 48.77 288.77 53.84 285.65 56.96L246.61 96C246.62 96.01 246.61 95.97 246.62 95.99L285.6600000000001 135.03zM168 176H128V224H168C181.23 224 192 213.23 192 200S181.23 176 168 176zM336 384H247.42C247.8 386.62 248.0000000000001 389.28 248.0000000000001 392C248.0000000000001 422.88 222.88 448 192 448S136 422.88 136 392C136 389.28 136.21 386.62 136.5800000000001 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V336C384 362.51 362.51 384 336 384zM192 416C205.26 416 216 405.26 216 392C216 378.75 205.26 368 192 368S168 378.75 168 392C168 405.26 178.74 416 192 416zM352 -16C352 -24.82 344.82 -32 336 -32H48C39.18 -32 32 -24.82 32 -16V336C32 344.82 39.18 352 48 352H96V332C96 325.37 101.37 320 108 320H276C282.63 320 288 325.37 288 332V352H336C344.82 352 352 344.82 352 336V-16z" />
+    <glyph glyph-name="clipboard"
+      unicode="&#xF328;"
+      horiz-adv-x="384" d=" M336 384H247.419C247.794 386.614 248 389.283 248 392C248 422.879 222.878 448 192 448S136 422.879 136 392C136 389.283 136.205 386.614 136.581 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V336C384 362.51 362.51 384 336 384zM352 -16C352 -24.822 344.822 -32 336 -32H48C39.178 -32 32 -24.822 32 -16V336C32 344.822 39.178 352 48 352H96V332C96 325.373 101.373 320 108 320H276C282.627 320 288 325.373 288 332V352H336C344.822 352 352 344.822 352 336V-16zM192 416C205.255 416 216 405.255 216 392S205.255 368 192 368S168 378.745 168 392S178.745 416 192 416" />
+    <glyph glyph-name="clock"
+      unicode="&#xF017;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192zM323.1 103.7L241.9000000000001 162.7C238.8000000000001 165 237.0000000000001 168.6 237.0000000000001 172.4V332C237.0000000000001 338.6 242.4000000000001 344 249.0000000000001 344H263C269.6 344 275 338.6 275 332V185.7L345.5 134.4C350.9 130.5 352 123 348.1 117.6L339.9000000000001 106.3C336.0000000000001 100.9999999999999 328.5000000000001 99.8 323.1 103.6999999999999z" />
+    <glyph glyph-name="clone"
+      unicode="&#xF24D;"
+      horiz-adv-x="512" d=" M464 448H144C117.49 448 96 426.51 96 400V352H48C21.49 352 0 330.51 0 304V-16C0 -42.51 21.49 -64 48 -64H368C394.51 -64 416 -42.51 416 -16V32H464C490.51 32 512 53.49 512 80V400C512 426.51 490.51 448 464 448zM384 -16C384 -24.82 376.82 -32 368 -32H48C39.18 -32 32 -24.82 32 -16V304C32 312.82 39.18 320 48 320H96V80C96 53.49 117.49 32 144 32H384V-16zM480 80C480 71.18 472.82 64 464 64H144C135.18 64 128 71.18 128 80V400C128 408.82 135.18 416 144 416H464C472.82 416 480 408.82 480 400V80z" />
+    <glyph glyph-name="closed-captioning"
+      unicode="&#xF20A;"
+      horiz-adv-x="512" d=" M246.2 259.5L236.4 244.3C234.4 241.3 230.7 240.6 227.8 242.8C187.1 274 114.8 257.1 114.8 194.3C114.8 129.5 184.9 109 226.4 146.7C229.1 149.1 233.2 148.6 235.4 145.7L246.1 131.1C247.9 128.7 247.6 125.3 245.5 123.2C196.3 73.2 80 93.8 80 193.8C80 290.1 198.3 310.9 245.2 267.3C247.4 265.2 247.8 261.9 246.2 259.5zM464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM480 48C480 39.2 472.8 32 464 32H48C39.2 32 32 39.2 32 48V336C32 344.8 39.2 352 48 352H464C472.8 352 480 344.8 480 336V48zM431 259.5L421.2 244.3C419.2 241.3 415.5 240.6 412.6 242.8C371.9 274 299.6 257.1 299.6 194.3C299.6 129.5 369.7 109 411.2 146.7C413.8999999999999 149.1 418 148.6 420.2 145.7L430.8999999999999 131.1C432.7 128.7 432.3999999999999 125.3 430.2999999999999 123.2C381.1999999999999 73.1 264.8999999999999 93.7 264.8999999999999 193.7C264.8999999999999 290 383.1999999999999 310.8 430.0999999999999 267.2C432.1999999999999 265.2 432.5999999999999 261.9 430.9999999999999 259.5z" />
+    <glyph glyph-name="cloud-download-alt"
+      unicode="&#xF381;"
+      horiz-adv-x="640" d=" M571.7 209.2C574.5 219.1 576 229.4 576 240C576 301.9 525.9 352 464 352C447.3 352 431.1 348.4 416 341.2C384.4 386.2 331.7 416 272 416C177.6 416 100.3 341.5 96.2 247.8C39.2 227.8 0 173.7 0 112C0 32.4 64.4 -32 144 -32H512C582.7 -32 640 25.2 640 96C640 143 614.2 186.8 571.7 209.2zM512 0H144C82.1 0 32 50.1 32 112C32 168.8 74.2 215.7 129 223C128.3 228.6 128 234.3 128 240C128 319.5 192.5 384 272 384C332.3 384 383.9 347 405.4 294.4C420 310.1 440.8 320 464 320C508.2 320 544 284.2 544 240C544 221.5 537.7 204.4 527.1 190.8C573 183.6 608 143.9 608 96C608 43 565 0 512 0zM384 200H320V284C320 290.6 314.6 296 308 296H300C293.4 296 288 290.6 288 284V200H224C194.8 200 180.8 163.8 202.6 144.2L282.6 72.2C294.8 61.2 313.2000000000001 61.2 325.4000000000001 72.2L405.4000000000001 144.2C427.1 163.8 413.3 200 384.0000000000001 200zM304 96L224 168H384L304 96z" />
+    <glyph glyph-name="cloud-download"
+      unicode="&#xF0ED;"
+      horiz-adv-x="640" d=" M571.7 209.2C574.5 219.1 576 229.4 576 240C576 301.9 525.9 352 464 352C447.3 352 431.1 348.4 416 341.2C384.4 386.2 331.7 416 272 416C177.6 416 100.3 341.5 96.2 247.8C39.2 227.8 0 173.7 0 112C0 32.4 64.4 -32 144 -32H512C582.7 -32 640 25.2 640 96C640 143 614.2 186.8 571.7 209.2zM512 0H144C82.1 0 32 50.1 32 112C32 168.8 74.2 215.7 129 223C128.3 228.6 128 234.3 128 240C128 319.5 192.5 384 272 384C332.3 384 383.9 347 405.4 294.4C420 310.1 440.8 320 464 320C508.2 320 544 284.2 544 240C544 221.5 537.7 204.4 527.1 190.8C573 183.6 608 143.9 608 96C608 43 565 0 512 0zM405.2 193.5C400.5 198.2 392.9 198.2 388.2 193.5L320 125.3V276C320 282.6 314.6 288 308 288H300C293.4 288 288 282.6 288 276V125.3L219.8 193.5C215.1 198.2 207.5 198.2 202.8 193.5L197.1 187.8C192.4 183.1 192.4 175.5 197.1 170.8L295.4000000000001 72.5C300.1 67.8 307.7000000000001 67.8 312.4000000000001 72.5L410.7000000000001 170.8C415.4000000000001 175.5 415.4000000000001 183.1 410.7000000000001 187.8L405.2000000000001 193.5z" />
+    <glyph glyph-name="cloud-drizzle"
+      unicode="&#xF738;"
+      horiz-adv-x="512" d=" M48 88C39.2 88 32 80.8 32 72V32C32 23.2 39.2 16 48 16S64 23.2 64 32V72C64 80.8 56.8 88 48 88zM144 8C135.2 8 128 0.8 128 -8V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V-8C160 0.8 152.8 8 144 8zM240 88C231.2 88 224 80.8 224 72V32C224 23.2 231.2 16 240 16S256 23.2 256 32V72C256 80.8 248.8 88 240 88zM336 8C327.2 8 320 0.8 320 -8V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V-8C352 0.8 344.8 8 336 8zM432 88C423.2 88 416 80.8 416 72V32C416 23.2 423.2 16 432 16S448 23.2 448 32V72C448 80.8 440.8 88 432 88zM415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160z" />
+    <glyph glyph-name="cloud-hail-mixed"
+      unicode="&#xF73A;"
+      horiz-adv-x="512" d=" M415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160zM183.9 77.9C176.3 82.3 166.5 79.7 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.3 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM216 -16C202.7 -16 192 -26.7 192 -40S202.7 -64 216 -64S240 -53.3 240 -40S229.3 -16 216 -16zM87.2 78.3C79.3 82.2 69.7 79.1 65.7 71.1L49.7 39.1C45.8 31.2 48.9 21.6 56.9 17.6C59.2 16.5 61.7 15.9 64.1 15.9C69.9 15.9 75.6 19.1 78.4 24.7L94.4 56.7000000000001C98.2 64.8000000000001 95.1 74.4 87.2 78.3000000000001zM24 -16C10.7 -16 0 -26.7 0 -40S10.7 -64 24 -64S48 -53.3 48 -40S37.3 -16 24 -16zM471.2 78.3C463.3 82.2 453.7 79.1 449.7 71.1L433.7 39.1C429.8 31.2 432.9 21.6 440.9 17.6C443.2 16.5 445.7 15.9 448.1 15.9C453.9 15.9 459.6 19.1 462.4 24.7L478.4 56.7000000000001C482.2 64.8000000000001 479.1 74.4 471.2 78.3000000000001zM279.2 78.3C271.3 82.2 261.7 79.1 257.7 71.1L241.7 39.1C237.8 31.2 240.9 21.6 248.9 17.6C251.2 16.5 253.7 15.9 256.1 15.9C261.9 15.9 267.6 19.1 270.4 24.7L286.4 56.7000000000001C290.2 64.8000000000001 287.1 74.4 279.2 78.3000000000001zM408 -16C394.7 -16 384 -26.7 384 -40S394.7 -64 408 -64S432 -53.3 432 -40S421.3 -16 408 -16zM375.9 77.9C368.3 82.3 358.5 79.7 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.3 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9z" />
+    <glyph glyph-name="cloud-hail"
+      unicode="&#xF739;"
+      horiz-adv-x="512" d=" M376 80C362.7 80 352 69.3 352 56S362.7 32 376 32S400 42.7 400 56S389.3 80 376 80zM184 -16C170.7 -16 160 -26.7 160 -40S170.7 -64 184 -64S208 -53.3 208 -40S197.3 -16 184 -16zM312 -16C298.7 -16 288 -26.7 288 -40S298.7 -64 312 -64S336 -53.3 336 -40S325.3 -16 312 -16zM248 80C234.7 80 224 69.3 224 56S234.7 32 248 32S272 42.7 272 56S261.3 80 248 80zM56 -16C42.7 -16 32 -26.7 32 -40S42.7 -64 56 -64S80 -53.3 80 -40S69.3 -16 56 -16zM120 80C106.7 80 96 69.3 96 56S106.7 32 120 32S144 42.7 144 56S133.3 80 120 80zM415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160z" />
+    <glyph glyph-name="cloud-meatball"
+      unicode="&#xF73B;"
+      horiz-adv-x="512" d=" M48 96C21.5 96 0 74.5 0 48S21.5 0 48 0S96 21.5 96 48S74.5 96 48 96zM48 32C39.2 32 32 39.2 32 48S39.2 64 48 64S64 56.8 64 48S56.8 32 48 32zM464 96C437.5 96 416 74.5 416 48S437.5 0 464 0S512 21.5 512 48S490.5 96 464 96zM464 32C455.2 32 448 39.2 448 48S455.2 64 464 64S480 56.8 480 48S472.8 32 464 32zM346.5 154.5C334.3 166.7 317.2 172.4 300.2 170.8C278.4 197.4 233.5 197.4 211.8 170.8C194.9 172.4 177.8 166.7 165.5 154.5C153.3 142.3 147.5 125.3 149.2 108.2C135.9 97.3 128 81.2 128 64S135.9 30.7 149.2 19.8C147.5 2.7 153.3 -14.3 165.5 -26.5C177.8 -38.8 196 -45.5 212 -43.1C222.9 -56.2 238.8 -64 256 -64S289.1 -56.2 300 -43.1C316.2 -45.5 334.2 -38.8 346.5 -26.5C358.7 -14.3 364.5 2.7 362.8 19.8C376.1 30.7 384 46.8 384 64S376.1 97.3 362.8 108.2C364.5 125.3 358.7 142.3 346.5 154.5zM337.7 41.3L325.8 35.1L329.9000000000001 22.3C332.9000000000001 12.8 330.7000000000001 2.8 324.0000000000001 -3.9C319.1000000000001 -8.8 312.6000000000001 -11.5 305.6000000000001 -11.5C303.6000000000001 -11.5 301.1000000000001 -10.8 297.8000000000001 -9.8L285.0000000000001 -5.7L278.8000000000001 -17.7C269.6000000000001 -35.4 242.6000000000001 -35.4 233.4000000000001 -17.7L227.2000000000001 -5.7L214.4000000000001 -9.8C211.2000000000001 -10.8 208.6000000000001 -11.5 206.6000000000001 -11.5C199.7000000000001 -11.5 193.1000000000001 -8.8 188.2000000000001 -3.9C181.5000000000001 2.8 179.3000000000001 12.8 182.3000000000001 22.3L186.4 35.1L174.5 41.3C165.7 45.9 160.2 54.6 160.2 64S165.7 82.1 174.5 86.7L186.4 92.9L182.3000000000001 105.7C179.3000000000001 115.2 181.5 125.2 188.2000000000001 131.9C194.9 138.6 204.9 140.8 214.4 137.8L227.2000000000001 133.6999999999999L233.4000000000001 145.5999999999999C242.6 163.2999999999999 269.6 163.2999999999999 278.8 145.5999999999999L285 133.6999999999999L297.8 137.8C307.2 140.8 317.3 138.6 324 131.9C330.7 125.2 332.9 115.2 329.9 105.7L325.8 92.9L337.7 86.7C346.5 82.1 352 73.4 352 64S346.5 45.9 337.7 41.3zM512 232C512 286.8 469.4 331.8 415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H118.3C120.1 139.4 124 150.2 129.9 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 159.9 408 159.9H382.1C388 150.1 391.9000000000001 139.3 393.7000000000001 127.9H408C465.3 128 512 174.7 512 232z" />
+    <glyph glyph-name="cloud-moon-rain"
+      unicode="&#xF73C;"
+      horiz-adv-x="576" d=" M573.9 210.5C570.3 218.2 562.4 223.1 554 223.1H552.6L549.8000000000001 222.7C543.5000000000001 221.5 537.2 220.9 530.9000000000001 220.9C476.5000000000001 220.9 432.2000000000001 264.9 432.2000000000001 319.1C432.2000000000001 354.3 451.4000000000001 387 482.3000000000001 404.4C490.5000000000001 409 494.7000000000001 418 493.2000000000001 427.2C491.6000000000001 436.5 484.7000000000001 443.5 475.4000000000001 445.2C465.7 447.1 455.8 448 446 448C378.9 448 322.4 406.6 298.3 348.5C308.5 346 318.3 342.2 327.3 337.1C346.4000000000001 382.7 391.2 415.1 443.8 416C416.5 391.6 400.3 356.4 400.3 319.2C400.3 248.5 457.3 190.7 527.9 189.1C505.6 170.9 477.6 160.7000000000001 448.1 160.3V160.1C448.1 149.1 446.6 138.4 444 128.2000000000001C444.7 128.2000000000001 445.3999999999999 128.1 446.1 128.1C494.8 128.1 540.4 149.7000000000001 571.0999999999999 187.3C576.3999999999999 193.8 577.4999999999999 202.8 573.8999999999999 210.5zM351.3 250.7C346 289.8 312.5 320 272 320C263.4 320 255 318.6 246.8 315.7C227.1 338.7 198.6 352 168 352C111.5 352 65.3 306.7 64 250.4C26.2 237.1 0 201.1 0 160C0 107.1 43.1 64 96 64H320C372.9 64 416 107.1 416 160C416 161.3 415.7 162.6 415.7 164C414 203.6 388.2 238 351.3 250.7zM320 96H96C60.7 96 32 124.7 32 160C32 190.6 53.8 217 84 222.8L98.5 225.6L96.5 243.6C96.3 245.1 96.1 246.5000000000001 96.1 248.0000000000001C96.1 287.7000000000001 128.4 320 168.1 320C192.4 320 214.9 307.8000000000001 228.3 287.2000000000001L236.4 274.8000000000001L249.4 281.9000000000001C282.1 299.7000000000001 320.1 273.7000000000001 320.2 241.5000000000001L320 225.3000000000001L332.8 222.7000000000001C362.6 216.7000000000001 384.1 190.4 384.1 160.0000000000001C384 124.7000000000001 355.3 96.0000000000001 320 96.0000000000001zM170.2 29.9C162.6 34.2 152.8 31.7 148.4 23.9L111.8 -40.1C107.4 -47.8 110.1 -57.5 117.8 -61.9C120.3 -63.3 123 -64 125.7 -64C131.2 -64 136.6 -61.1 139.6 -55.9L176.2 8.1C180.6 15.8 177.9 25.5 170.2 29.9zM74.2 29.9C66.6 34.2 56.8 31.7 52.4 23.9L15.8 -40.1C11.4 -47.8 14.1 -57.5 21.8 -61.9C24.3 -63.3 27 -64 29.7 -64C35.2 -64 40.6 -61.1 43.6 -55.9L80.2 8.1C84.6 15.8 81.9 25.5 74.2 29.9zM266.2 29.9C258.6 34.2 248.8 31.7 244.4 23.9L207.8 -40.1C203.4 -47.8 206.1 -57.5 213.8 -61.9C216.3 -63.3 219 -64 221.7 -64C227.2 -64 232.6 -61.1 235.6 -55.9L272.2 8.1C276.6 15.8 273.9 25.5 266.2 29.9zM362.2 29.9C354.6 34.2 344.8 31.7 340.4 23.9L303.8 -40.1C299.4 -47.8 302.1 -57.5 309.8 -61.9C312.3 -63.3 315 -64 317.7 -64C323.2 -64 328.5999999999999 -61.1 331.5999999999999 -55.9L368.2 8.1C372.5999999999999 15.8 369.8999999999999 25.5 362.2 29.9z" />
+    <glyph glyph-name="cloud-moon"
+      unicode="&#xF6C3;"
+      horiz-adv-x="640" d=" M351.5 134.4C347 175.7 311.9 208 269.4 208C255.5 208 242.1 204.5 229.9 197.7C211.6 214.5 188 224 163.1 224C109.4 224 65.6 181.2 63.9 127.8C25.6 113.5 -0.1 77.1 -0.1 35.1C0 -19.5 44.5 -64 99.2 -64H348.8C403.5 -64 448 -19.5 448 35.2C448 89 405 132.9 351.5 134.4zM348.8 -32H99.2C62.1 -32 32 -1.9 32 35.2C32 66.8 53.5 93.7 84.4 100.6L98.4 106.5L96.4 121.1C96.2 122.3 96 123.6 96 124.9C96 162.0000000000001 126.1 192.1 163.2 192.1C183.3 192.1 202.2 182.9 215.2 166.9L225.3 154.4L237.7 164.5000000000001C247 172 258 176 269.4 176C297.3 176 320 153.3 320 125.4C320 123.9 319.8 122.6 319.3 119L316.7 97.7L337.9 101.3C341.5 101.9 345.1 102.5 348.9 102.5C386 102.5 416.1 72.3 416.1 35.3S385.9 -32 348.8 -32zM637.6 160.8C633.5 169.4 625.2 174.7 615.8000000000001 174.7C614.3000000000001 174.7 612.8000000000001 174.6 611.2 174.3C603.5 172.8 595.7 172.1 588 172.1C521 172.1 466.5 226.8 466.5 294C466.5 337.7000000000001 490.1 378.3 528.1 400C537 405.1 541.7 415 540 425.1C538.3 435.3 530.6 443 520.5 444.9000000000001C509 446.9000000000001 497.3 448.0000000000001 485.5 448.0000000000001C379.8 448.0000000000001 293.7 361.9000000000001 293.7 256C293.7 249.5000000000001 294.1 243.2 294.8 236.8000000000001C307.5 233.9000000000001 319.4000000000001 229.0000000000001 330.2 222.2000000000001C327.6 233.1000000000001 325.7 244.2000000000001 325.7 255.9000000000001C325.7 344.1 397.4 415.9000000000001 485.5 415.9000000000001C488.5 415.9000000000001 491.4 415.8 494.4 415.7000000000001C457 386.8 434.5 341.8 434.5 293.8C434.5 209 503.4 140 588 140C590.6 140 593.2 140.1 595.8 140.2C566.2 111.9 527 96 485.5 96C478 96 470.7 96.7 463.6 97.9C469.3 87.6 473.3 76.4 476.1 64.8C479.2 64.6 482.3 64.1 485.5 64.1C543.6 64.1 597.9 89.9999999999999 634.5 135.1999999999999C640.5 142.3999999999999 641.7 152.3 637.6 160.8z" />
+    <glyph glyph-name="cloud-rain"
+      unicode="&#xF73D;"
+      horiz-adv-x="512" d=" M118.5 78.8C115.7 89 106.7 95.9 96.2 96C84.6 95.3 76.5 89.2 73.5 78.9C68.8 62.6 61.7 52 54.7 41.8C46.1 29.1 37.3 15.9999999999999 37.3 -3.5000000000001C37.3 -36.9 63.6 -64 96 -64S154.7 -36.9 154.7 -3.5C154.7 16.1 145.9 29.1 137.3 41.7C130.3 52 123.2 62.5 118.5 78.8zM96 -32C81.3 -32 69.3 -19.2 69.3 -3.5C69.3 5.8 73.4 12.3 81.2 23.8C85.8 30.6 91.1 38.5 95.9 48.4C100.7 38.5000000000001 106.1 30.6 110.7 23.8C118.5 12.3 122.6 5.8 122.6 -3.5C122.7 -19.2 110.7 -32 96 -32zM278.5 78.8C275.7 89 266.7 95.9 256.2 96H256C245.5 96 236.5 89.2 233.5 78.9C228.8 62.6 221.7 52 214.7 41.8C206.1 29.1 197.3 15.9999999999999 197.3 -3.5000000000001C197.3 -36.9 223.6 -64 256 -64S314.7 -36.9 314.7 -3.5C314.7 16.1 305.9 29.1 297.3 41.7C290.3 52 283.2 62.5 278.5 78.8zM256 -32C241.3 -32 229.3 -19.2 229.3 -3.5C229.3 5.8 233.4 12.3 241.2 23.8C245.8 30.6 251.1 38.5 255.9 48.4C260.7 38.5000000000001 266.1 30.6 270.7 23.8C278.5 12.3 282.6 5.8 282.6 -3.5C282.7 -19.2 270.7 -32 256 -32zM438.5 78.8C435.7 89 426.7 95.9 416.2 96C405.8 95.3 396.5 89.2 393.5 78.9C388.8 62.6 381.7 52 374.7 41.8C366.1 29.1 357.3 15.9999999999999 357.3 -3.5000000000001C357.3 -36.9 383.6 -64 416 -64S474.7 -36.9 474.7 -3.5C474.7 16.1 465.9 29.1 457.3 41.7C450.3 52 443.2 62.5 438.5 78.8zM416 -32C401.3 -32 389.3 -19.2 389.3 -3.5C389.3 5.8 393.4000000000001 12.3 401.2 23.8C405.8 30.6 411.1 38.5 415.9 48.4C420.7 38.5000000000001 426.1 30.6 430.7 23.8C438.5 12.3 442.6 5.8 442.6 -3.5C442.7 -19.2 430.7 -32 416 -32zM415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160z" />
+    <glyph glyph-name="cloud-rainbow"
+      unicode="&#xF73E;"
+      horiz-adv-x="576" d=" M568.2 416C572.5 416.1 576 419.5 576 423.9V439.9C576 444.4 572.3 448.1 567.8 448C427.2 445.1 301.9 367.7 236.1 243.8C220.1 251.6 202.4 256 184 256C117.8 256 64 202.2 64 136V135.6C25.7 119.6 0 82.1 0 40C0 -17.3 46.7 -64 104 -64H408C465.3 -64 512 -17.3 512 40C512 78.8 490.4 112.4 458.9 130.2C484.2 166.3 524.6999999999999 189.3 568.4 191.7C572.6999999999999 191.9 576.1 195.3 576.1 199.6V215.6C576.1 220.1 572.3000000000001 223.9 567.8000000000001 223.7C511.0000000000001 221 458.8000000000001 190.1 428.0000000000001 141.6C423.9000000000001 142.4 419.9000000000001 143.4 415.6000000000001 143.7000000000001C413.3000000000001 170.0000000000001 399.3000000000001 192.7000000000001 379.0000000000001 207.3000000000001C424.6000000000001 266.0000000000001 493.3000000000001 301.6 568.2 303.9000000000001C572.5 304 576 307.5 576 311.8000000000001V327.8000000000001C576 332.3000000000001 572.2 336.1 567.7 335.9000000000001C480.6 333.4000000000001 401.0000000000001 290.9000000000001 349.5000000000001 221.1C342.6000000000001 222.9 335.5000000000001 224.1 328.0000000000001 224.1C310.2000000000001 224.1 293.2000000000001 218.8 278.8000000000001 208.9C274.1000000000001 215.1 268.6000000000001 220.4 262.9000000000001 225.5000000000001C322.8 340.8 438.2 413.2 568.2 416zM287 173.9C297.8 185.6 312.4 192 328 192C358.9 192 384 166.9 384 136C384 134.4 383.7 132.9 383.2 129.1L380.7 109.1L404.2 111.5C405.4 111.7 406.7 111.9 408 111.9C447.7 111.9 480 79.6 480 39.9S447.7 -32.1 408 -32.1H104C64.3 -32.1 32 0.2 32 39.9C32 72.2 53.9 100.6 85.3 109.1L98.6 112.7L96.6 129.9C96.3 131.9 96 133.9 96 135.9C96 184.4 135.5 223.9 184 223.9C216.2 223.9 245.8 206 261.2 177.1L271.8 157.3L287 173.9z" />
+    <glyph glyph-name="cloud-showers-heavy"
+      unicode="&#xF740;"
+      horiz-adv-x="512" d=" M183.9 77.9C176.3 82.3 166.5 79.7 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.3 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM279.9 77.9C272.3 82.3 262.5 79.7 258.1 71.9L194.1 -40.1C189.7 -47.8 192.4 -57.6 200.1 -61.9C202.6 -63.3 205.3 -64 208 -64C213.5 -64 218.9 -61.1 221.9 -55.9L285.9 56.1C290.3 63.7000000000001 287.6 73.5 279.9 77.9zM87.9 77.9C80.3 82.3 70.5 79.7 66.1 71.9L2.1 -40.1C-2.3 -47.8 0.4 -57.6 8.1 -61.9C10.6 -63.3 13.3 -64 16 -64C21.5 -64 26.9 -61.1 29.9 -55.9L93.9 56.1C98.3 63.7000000000001 95.6 73.5 87.9 77.9zM471.9 77.9C464.3 82.3 454.5 79.7 450.1 71.9L386.1 -40.1C381.7 -47.8 384.4 -57.6 392.1 -61.9C394.6 -63.3 397.3 -64 400 -64C405.5 -64 410.8999999999999 -61.1 413.8999999999999 -55.9L477.8999999999999 56.1C482.2999999999999 63.7000000000001 479.5999999999999 73.5 471.8999999999999 77.9zM375.9 77.9C368.3 82.3 358.5 79.7 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.3 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9zM415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.9 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160z" />
+    <glyph glyph-name="cloud-showers"
+      unicode="&#xF73F;"
+      horiz-adv-x="512" d=" M415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7zM408 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 160 408 160zM48 80C39.2 80 32 72.8 32 64V-16C32 -24.8 39.2 -32 48 -32S64 -24.8 64 -16V64C64 72.8 56.8 80 48 80zM144 48C135.2 48 128 40.8 128 32V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V32C160 40.8 152.8 48 144 48zM240 80C231.2 80 224 72.8 224 64V-16C224 -24.8 231.2 -32 240 -32S256 -24.8 256 -16V64C256 72.8 248.8 80 240 80zM336 48C327.2 48 320 40.8 320 32V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V32C352 40.8 344.8 48 336 48zM432 80C423.2 80 416 72.8 416 64V-16C416 -24.8 423.2 -32 432 -32S448 -24.8 448 -16V64C448 72.8 440.8 80 432 80z" />
+    <glyph glyph-name="cloud-sleet"
+      unicode="&#xF741;"
+      horiz-adv-x="512" d=" M87.2 94.3C79.3 98.2 69.7 95 65.7 87.1L1.7 -40.9C-2.2 -48.8 0.9 -58.4 8.9 -62.4C11.2 -63.5 13.7 -64.1 16.1 -64.1C21.9 -64.1 27.6 -60.9 30.4 -55.3L94.4 72.7C98.2 80.8 95.1 90.4 87.2 94.3zM343.2 94.3C335.3 98.2 325.7 95 321.7 87.1L257.7 -40.9C253.8 -48.8 256.9 -58.4 264.9 -62.4C267.2 -63.5 269.7 -64.1 272.1 -64.1C277.9 -64.1 283.6 -60.9 286.4 -55.3L350.4 72.7C354.2 80.8 351.1 90.4 343.2 94.3zM494.9 58.9L486.9 72.8C484.7 76.6 479.8 77.9 476 75.7L448 59.6V88C448 92.4 444.4 96 440 96H424C419.6 96 416 92.4 416 88V59.6L388 75.7000000000001C384.2 77.9 379.3 76.6 377.1 72.8000000000001L369.1 58.9000000000001C366.9000000000001 55.1000000000001 368.2000000000001 50.2000000000001 372 48.0000000000001L399.9 32.0000000000001L372 16.0000000000001C368.2 13.8000000000001 366.9 8.9000000000001 369.1 5.1000000000001L377.1 -8.7999999999998C379.3 -12.5999999999999 384.2000000000001 -13.8999999999999 388 -11.6999999999998L416 4.4000000000002V-24C416 -28.4 419.6 -32 424 -32H440C444.4 -32 448 -28.4 448 -24V4.4L476 -11.7C479.8 -13.9 484.7 -12.6 486.9 -8.8000000000001L494.9 5.0999999999999C497.1 8.8999999999999 495.8 13.7999999999999 492 15.9999999999999L464.1 31.9999999999999L492 47.9999999999999C495.8 50.1999999999999 497.1 55.0999999999999 494.9 58.8999999999999zM238.9 58.9L230.9 72.8C228.7 76.6 223.8 77.9 220 75.7L192 59.6V88C192 92.4 188.4 96 184 96H168C163.6 96 160 92.4 160 88V59.6L132 75.7000000000001C128.2 77.9 123.3 76.6 121.1 72.8000000000001L113.1 58.9000000000001C110.9 55.1000000000001 112.2 50.2000000000001 116 48.0000000000001L143.9 32.0000000000001L116 16.0000000000001C112.2 13.8000000000001 110.9 8.9000000000001 113.1 5.1000000000001L121.1 -8.7999999999998C123.3 -12.5999999999999 128.2 -13.8999999999999 132 -11.6999999999998L160 4.4000000000002V-24C160 -28.4 163.6 -32 168 -32H184C188.4 -32 192 -28.4 192 -24V4.4L220 -11.7C223.8 -13.9 228.7 -12.6 230.9 -8.8000000000001L238.9 5.0999999999999C241.1 8.8999999999999 239.8 13.7999999999999 236 15.9999999999999L208.1 31.9999999999999L236 47.9999999999999C239.8 50.1999999999999 241.1 55.0999999999999 238.9 58.8999999999999zM512 232C512 286.8 469.4 331.8 415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H408C465.3 128 512 174.7 512 232zM32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 159.9 408 159.9H104C64.3 160 32 192.3 32 232z" />
+    <glyph glyph-name="cloud-snow"
+      unicode="&#xF742;"
+      horiz-adv-x="512" d=" M126.9 58.9L118.9 72.8C116.7 76.6 111.8 77.9 108 75.6999999999999L80 59.5999999999999V88C80 92.4 76.4 96 72 96H56C51.6 96 48 92.4 48 88V59.6L20 75.7000000000001C16.2 77.9 11.3 76.6 9.1 72.8000000000001L1.1 58.9000000000001C-1.1 55.1000000000001 0.2 50.2000000000001 4 48.0000000000001L31.9 32.0000000000001L4 16C0.2 13.8 -1.1 8.9 1.1 5.1L9.1 -8.8C11.3 -12.6 16.2 -13.9 20 -11.6999999999999L48 4.4000000000001V-24C48 -28.4 51.6 -32 56 -32H72C76.4 -32 80 -28.4 80 -24V4.4L108 -11.7C111.8 -13.9 116.7 -12.6 118.9 -8.8000000000001L126.9 5.0999999999999C129.1 8.8999999999999 127.8 13.7999999999999 124 15.9999999999999L96.1 31.9999999999999L124 47.9999999999999C127.8 50.1999999999999 129.1 55.0999999999999 126.9 58.8999999999999zM510.9 58.9L502.9 72.8C500.7 76.6 495.8 77.9 492 75.6999999999999L464 59.5999999999999V88C464 92.4 460.4 96 456 96H440C435.6 96 432 92.4 432 88V59.6L404 75.7000000000001C400.2 77.9 395.3 76.6 393.1 72.8000000000001L385.1 58.9000000000001C382.9000000000001 55.1000000000001 384.2000000000001 50.2000000000001 388 48.0000000000001L415.9 32.0000000000001L388 16.0000000000001C384.2 13.8000000000001 382.9 8.9000000000001 385.1 5.1000000000001L393.1 -8.7999999999998C395.3 -12.5999999999999 400.2000000000001 -13.8999999999999 404 -11.6999999999998L432 4.4000000000002V-24C432 -28.4 435.6 -32 440 -32H456C460.4 -32 464 -28.4 464 -24V4.4L492 -11.7C495.8 -13.9 500.7 -12.6 502.9 -8.8000000000001L510.9 5.0999999999999C513.1 8.8999999999999 511.8 13.7999999999999 508 15.9999999999999L480.1 31.9999999999999L508 47.9999999999999C511.8 50.1999999999999 513.1 55.0999999999999 510.9 58.8999999999999zM318.9 26.9L310.9 40.8C308.7 44.6 303.8 45.9 300 43.6999999999999L272 27.5999999999999V56C272 60.4 268.4 64 264 64H248C243.6 64 240 60.4 240 56V27.6L212 43.7C208.2 45.9 203.3 44.6 201.1 40.8000000000001L193.1 26.9000000000001C190.9 23.1000000000001 192.2 18.2000000000001 196 16.0000000000001L223.9 1e-13L196 -15.9999999999999C192.2 -18.1999999999999 190.9 -23.0999999999999 193.1 -26.8999999999999L201.1 -40.7999999999998C203.3 -44.5999999999998 208.2 -45.8999999999999 212 -43.6999999999998L240 -27.5999999999998V-56C240 -60.4 243.6 -64 248 -64H264C268.4 -64 272 -60.4 272 -56V-27.6L300 -43.7C303.8 -45.9 308.7 -44.6 310.9 -40.8000000000001L318.9 -26.9000000000001C321.1 -23.1000000000001 319.8 -18.2000000000001 316 -16.0000000000001L288.1 -1e-13L316 15.9999999999999C319.8 18.1999999999999 321.1 23.0999999999999 318.9 26.8999999999999zM104 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7C411.7 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128zM85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9S447.7 159.9 408 159.9H104C64.3 159.9 32 192.2 32 231.9C32 264.3 53.9 292.7 85.3 301.2z" />
+    <glyph glyph-name="cloud-sun-rain"
+      unicode="&#xF743;"
+      horiz-adv-x="640" d=" M298.2 29.9C290.6 34.2 280.8 31.7 276.4 23.9L239.8 -40.1C235.4 -47.8 238.1 -57.5 245.8 -61.9C248.3 -63.3 251 -64 253.7 -64C259.2 -64 264.6 -61.1 267.6 -55.9L304.2 8.1C308.6 15.8 305.9 25.5 298.2 29.9zM192 308C218.4 308 240 288 243.1 262.4C247.9 266 252.9 269.3 258.2 272.3C259.7 280.7000000000001 262.1 288.8 265 296.6C250.7 322.3 223.5 340 192 340C145.8 340 108.3 302.4000000000001 108.3 256.2000000000001S145.8 172.4 192 172.4C192.3 172.4 192.6 172.5000000000001 192.9 172.5000000000001C194 183.9 196.6 194.9000000000001 200.6 205.3000000000001C197.8 204.8000000000001 195 204.4000000000001 192.1 204.4000000000001C163.6 204.4000000000001 140.4 227.6000000000001 140.4 256.1000000000001C140.3 284.7000000000001 163.5 308.0000000000001 192 308.0000000000001zM160.3 156.3C156.7 161.6 150.4 164.4 143.9 163.1L87.9 152L99 208C100.2 214.4 97.6 220.8 92.2 224.4L44.8 256.2000000000001L92.2 288C97.6 291.6 100.2 298.1 99 304.4L87.9 360.4L143.9 349.3C150.4 348 156.7 350.7000000000001 160.3 356.1L192 403.6L223.8 356.1C227.4 350.8 233.8 348 240.2 349.3L319.6 365C328.3 366.7 333.9000000000001 375.1 332.2000000000001 383.8C330.5000000000001 392.5 321.9000000000001 398.3 313.4000000000001 396.4L244.5000000000001 382.8L205.3 441.3C199.4 450.2 184.7 450.2 178.7 441.3L139.6 382.8L70.6 396.5C65.3 397.6 59.9 395.9 56.2 392.1C52.4 388.3 50.8 382.9 51.8 377.6L65.5 308.6L7.1 269.5C2.7 266.5 0 261.6 0 256.2C0 250.9 2.7 245.9 7.1 242.9L65.5 203.8L51.8 134.8C50.8 129.5 52.4 124.1 56.2 120.3C60 116.5 65.2 114.8 70.6 115.9L139.5 129.6L178.6 71.1C181.7 66.4999999999999 186.8 63.9999999999999 191.9 63.9999999999999C195 63.9999999999999 198.1 64.8999999999999 200.8000000000001 66.6999999999999C208.1000000000001 71.5999999999999 210.1000000000001 81.5999999999999 205.2000000000001 88.8999999999999L160.3000000000001 156.3zM490.2 29.9C482.6 34.2 472.8 31.7 468.4 23.9L431.8 -40.1C427.4 -47.8 430.1 -57.5 437.8 -61.9C440.3 -63.3 443 -64 445.7 -64C451.1999999999999 -64 456.5999999999999 -61.1 459.5999999999999 -55.9L496.1999999999999 8.1C500.5999999999999 15.8 497.8999999999999 25.5 490.1999999999999 29.9zM575.3 250.7C570 289.8 536.5 320 496 320C487.4 320 479 318.6 470.8 315.7C451.1 338.6 422.6 352 392 352C335.5 352 289.3 306.7 288 250.4C250.2 237.1 224 201.1 224 160C224 107.1 267.1 64 320 64H544C596.9 64 640 107.1 640 160C640 201.3 613.4 237.6 575.3 250.7zM560 239.2zM544 96H320C284.7 96 256 124.7 256 160C256 190.6 277.8 217 308 222.8L322.5 225.6L320.5 243.6C320.3 245.1 320.1 246.5000000000001 320.1 248.0000000000001C320.1 287.7000000000001 352.4000000000001 320 392.1 320C416.4000000000001 320 438.9000000000001 307.8000000000001 452.3 287.2000000000001L460.4 274.8000000000001L473.4 281.9000000000001C506.1 299.7000000000001 544.1 273.7000000000001 544.2 241.5000000000001L544 225.3000000000001L556.8 222.7000000000001C586.5999999999999 216.7000000000001 608.0999999999999 190.4 608.0999999999999 160.0000000000001C607.9999999999999 124.7000000000001 579.3 96.0000000000001 543.9999999999999 96.0000000000001zM586.2 29.9C578.6 34.2 568.8000000000001 31.7 564.4000000000001 23.9L527.8000000000001 -40.1C523.4000000000001 -47.8 526.1 -57.5 533.8000000000001 -61.9C536.3000000000001 -63.3 539.0000000000001 -64 541.7 -64C547.2 -64 552.6 -61.1 555.6 -55.9L592.2 8.1C596.6 15.8 593.9000000000001 25.5 586.2 29.9zM394.2000000000001 29.9C386.6 34.2 376.8000000000001 31.7 372.4000000000001 23.9L335.8 -40.1C331.4000000000001 -47.8 334.1 -57.5 341.8 -61.9C344.3 -63.3 347 -64 349.7 -64C355.2 -64 360.6 -61.1 363.6 -55.9L400.2 8.1C404.6 15.8 401.9 25.5 394.2 29.9z" />
+    <glyph glyph-name="cloud-sun"
+      unicode="&#xF6C4;"
+      horiz-adv-x="640" d=" M543.7 143.7C539.8 188.6 502 224 456 224C438.2 224 421.2 218.7 406.8 208.8C384.3 238.3 349.5 256 312 256C245.8 256 192 202.2 192 136V135.6C153.7 119.6 128 82.1 128 40C128 -17.3 174.7 -64 232 -64H536C593.3 -64 640 -17.3 640 40C640 94.8 597.4 139.8 543.7 143.7zM536 -32H232C192.3 -32 160 0.3 160 40C160 72.3 181.9 100.7 213.3 109.2L226.6 112.8L224.6 130C224.3 132 224 134 224 136C224 184.5 263.5 224 312 224C344.2 224 373.8 206.1 389.2 177.2L399.8 157.4L415 173.9C425.8 185.6 440.4 192 456 192C486.9 192 512 166.9 512 136C512 134.4 511.7 132.9 511.2 129.1L508.7 109.1L532.2 111.5C533.4000000000001 111.7 534.7 111.9 536 111.9C575.7 111.9 608 79.6 608 39.9S575.7 -32 536 -32zM92.6 125L105.1 188.2C106.3 194.5 103.7 201 98.3 204.6L44.8 240.4L98.3 276.2C103.7 279.8 106.3 286.3 105.1 292.6L92.6 355.9L155.8 343.4C162.2 342.1 168.6 344.9 172.2 350.2L208 403.7L243.8 350.2C247.4 344.9 253.7 342.1 260.2 343.4L323.4 355.9L310.9 292.7C310.6 291.1 310.8 289.5 310.9 287.9C311.3 287.9 311.6 288 312 288C322.1 288 332 286.9 341.6 285C341.8 285.5 342.1 285.9 342.2000000000001 286.5L359.4000000000001 373.2C360.4000000000001 378.4 358.8 383.8 355.0000000000001 387.6S345.8000000000001 393.1 340.6000000000001 392L264.4000000000001 376.9L221.3000000000001 441.3C215.3000000000001 450.2 200.7000000000001 450.2 194.7000000000001 441.3L151.5000000000001 376.8L75.4000000000001 391.9C70.1000000000001 393 64.7000000000001 391.3 61.0000000000001 387.5C57.2000000000001 383.7 55.6000000000001 378.3 56.6000000000001 373.1L71.7000000000001 296.9L7.1000000000001 253.8C2.7000000000001 250.8 1e-13 245.8 1e-13 240.5S2.7000000000001 230.2 7.1000000000001 227.2L71.6 184L56.5 107.8C55.5 102.6 57.1 97.2 60.9 93.4C63.9 90.4 68 88.7000000000001 72.2 88.7000000000001C73.2 88.7000000000001 74.3 88.8000000000001 75.3 89.0000000000001L108.1 95.5000000000001C114.3 109.3000000000001 122.7 122.0000000000001 133.2 133.1000000000001L92.6 125zM208 298.3C226.5 298.3 242.8 289.4 253.4 275.9C263.6 280.2000000000001 274.2 283.5 285.3 285.5C269.7 312.1 241.1 330.3 208 330.3C158.5 330.3 118.2 290 118.2 240.5C118.2 207.5 136.3 178.8 163 163.2C165 174.3 168.3 184.9 172.6 195.1C159 205.7 150.2 222 150.2 240.5C150.2 272.3 176.1 298.3 208 298.3z" />
+    <glyph glyph-name="cloud-upload-alt"
+      unicode="&#xF382;"
+      horiz-adv-x="640" d=" M405.4 215.8L325.4 287.8C313.2 298.8 294.8 298.8 282.6 287.8L202.6 215.8C180.9 196.2 194.7 160 224 160H288V76C288 69.4 293.4 64 300 64H308C314.6 64 320 69.4 320 76V160H384C413.2 160 427.1 196.2 405.4 215.8zM224 192L304 264L384 192H224zM571.7 209.2C574.5 219.1 576 229.4 576 240C576 301.9 525.9 352 464 352C447.3 352 431.1 348.4 416 341.2C384.4 386.2 331.7 416 272 416C177.6 416 100.3 341.5 96.2 247.8C39.2 227.8 0 173.7 0 112C0 32.4 64.4 -32 144 -32H512C582.7 -32 640 25.2 640 96C640 143 614.2 186.8 571.7 209.2zM512 0H144C82.1 0 32 50.1 32 112C32 168.8 74.2 215.7 129 223C128.3 228.6 128 234.3 128 240C128 319.5 192.5 384 272 384C332.3 384 383.9 347 405.4 294.4C420 310.1 440.8 320 464 320C508.2 320 544 284.2 544 240C544 221.5 537.7 204.4 527.1 190.8C573 183.6 608 143.9 608 96C608 43 565 0 512 0z" />
+    <glyph glyph-name="cloud-upload"
+      unicode="&#xF0EE;"
+      horiz-adv-x="640" d=" M312.5 279.5C307.8 284.2 300.2 284.2 295.5 279.5L197.2 181.2C192.5 176.5 192.5 168.9 197.2 164.2L202.9 158.5C207.6 153.8 215.2 153.8 219.9 158.5L288.1 226.7V76C288.1 69.4 293.5 64 300.1 64H308.1C314.7 64 320.1 69.4 320.1 76V226.7L388.3 158.5C393 153.8 400.6 153.8 405.3 158.5L411 164.2C415.7 168.9 415.7 176.5 411 181.2L312.5 279.5zM571.7 209.2C574.5 219.1 576 229.4 576 240C576 301.9 525.9 352 464 352C447.3 352 431.1 348.4 416 341.2C384.4 386.2 331.7 416 272 416C177.6 416 100.3 341.5 96.2 247.8C39.2 227.8 0 173.7 0 112C0 32.4 64.4 -32 144 -32H512C582.7 -32 640 25.2 640 96C640 143 614.2 186.8 571.7 209.2zM512 0H144C82.1 0 32 50.1 32 112C32 168.8 74.2 215.7 129 223C128.3 228.6 128 234.3 128 240C128 319.5 192.5 384 272 384C332.3 384 383.9 347 405.4 294.4C420 310.1 440.8 320 464 320C508.2 320 544 284.2 544 240C544 221.5 537.7 204.4 527.1 190.8C573 183.6 608 143.9 608 96C608 43 565 0 512 0z" />
+    <glyph glyph-name="cloud"
+      unicode="&#xF0C2;"
+      horiz-adv-x="640" d=" M571.7 209.2C574.5 219.1 576 229.4 576 240C576 301.9 525.9 352 464 352C447.3 352 431.1 348.4 416 341.2C384.4 386.2 331.7 416 272 416C177.6 416 100.3 341.5 96.2 247.8C39.2 227.8 0 173.7 0 112C0 32.4 64.4 -32 144 -32H512C582.7 -32 640 25.2 640 96C640 143 614.2 186.8 571.7 209.2zM512 0H144C82.1 0 32 50.1 32 112C32 168.8 74.2 215.7 129 223C128.3 228.6 128 234.3 128 240C128 319.5 192.5 384 272 384C332.3 384 383.9 347 405.4 294.4C420 310.1 440.8 320 464 320C508.2 320 544 284.2 544 240C544 221.5 537.7 204.4 527.1 190.8C573 183.6 608 143.9 608 96C608 43 565 0 512 0z" />
+    <glyph glyph-name="clouds-moon"
+      unicode="&#xF745;"
+      horiz-adv-x="640" d=" M462.6 126.9C455.6 163.9 423 192 384 192C384 244.9 340.9 288 288 288H282.5C269.2 325.8 233 352 192 352S114.8 325.8 101.5 288H96C43.1 288 0 244.9 0 192S43.1 96 96 96H136.8C121.4 78.9 112 56.5 112 32C112 -20.9 155.1 -64 208 -64H448C500.9 -64 544 -20.9 544 32C544 80 508.6 119.8 462.6 126.9zM96 128C60.7 128 32 156.7 32 192S60.7 256 96 256H126.7L129.3 268.8C135.3 298.5 161.7 320 192 320S248.7 298.5 254.7 268.8L257.3 256H288C323.3 256 352 227.3 352 192C352 189.4 351.3 187 351 184.6C350.6 184.4 350.1 184.3 349.6 184.1C331.8 208.8 302.9000000000001 224 272 224C219.1 224 176 180.9 176 128H96zM448 -32H208C172.7 -32 144 -3.3 144 32C144 63 166.2 89.4 196.8 94.8L213.3 97.7L209.7 114C208.6 119 208 123.6 208 127.9C208 163.2 236.7 191.9 272 191.9C296.6 191.9 319.2 177.4 329.7 154.9L338.3 136.5L354.1 149.2C362.9000000000001 156.2 373.2000000000001 159.9 383.9000000000001 159.9C410.4000000000001 159.9 431.9000000000001 138.4 431.9000000000001 111.9V95.9H447.9000000000001C483.2 95.9 511.9 67.2 511.9 31.9S483.3 -32 448 -32zM637.8 198.6C634 206.7 625.8 211.9 616.9 211.9H615.4L612.5 211.5C605.9 210.3 599.3 209.6 592.7 209.6C535.5 209.6 489.0000000000001 255.8 489.0000000000001 312.7C489.0000000000001 349.7 509.1000000000001 384 541.6 402.3C550.2 407.1 554.7 416.5 553 426.2C551.4 435.9 544 443.3 534.3 445.1C524.2 447.1 513.8 448 503.5 448C420.5 448 351.7 388.2 337.5 309.8C348.4 305.2000000000001 358.5 299.1 367.7 291.7000000000001C373.7 361.2 431.9 416 503.5 416H505.4C475 390.6 457 352.8 457 312.7C457 238.2 517.9 177.6 592.7 177.6H593.7C570.2 157.1 540.2 145.6 508.6 144.4C521.7 137.2000000000001 533.3000000000001 127.8 543.1 116.7000000000001C578.8000000000001 125.2000000000001 611 145.1 634.7 174.1C640.5 181.1 641.6 190.5 637.8000000000001 198.6z" />
+    <glyph glyph-name="clouds-sun"
+      unicode="&#xF746;"
+      horiz-adv-x="640" d=" M640 189.7C640 241.3 599.8 283.2 550.4 283.2H549.9C533.3 323.9 494.6 352.4 450.5 352.4C404.1 352.4 364.3 322.3 349 278.2C323.7 269.4 303.8 249.1 294.3 223.3C246 218.3 208 177.8 208 128.2C208 126.4 208.1 124.5 208.2 122.6C170.2 109.4 144 73.4 144 32.1C144 -20.9 187.1 -64 240 -64H480C532.9 -64 576 -20.9 576 32.1C576 56.8 566.6 79.2000000000001 551.2 96.2000000000001C600.2 96.7000000000001 640 138.4 640 189.7000000000001zM480 -32H240C204.7 -32 176 -3.3 176 32.1C176 63.1 198.2 89.6 228.8 95L245.3 97.9L241.7 114.2C240.6 119.2 240.0000000000001 123.8 240.0000000000001 128.1C240.0000000000001 163.4 268.7000000000001 192.2 304 192.2C328.6 192.2 351.2 177.6999999999999 361.8 155.1999999999999L370.4000000000001 136.8L386.2000000000001 149.5C395.0000000000001 156.5 405.3000000000001 160.1999999999999 416.0000000000001 160.1999999999999C442.5000000000001 160.1999999999999 464.0000000000001 138.6999999999999 464.0000000000001 112.1999999999999V96.1999999999999H480.0000000000001C515.3000000000001 96.1999999999999 544 67.4999999999999 544 32.0999999999999S515.3 -32 480 -32zM550.4 128.2H494.3C486.8 164.7 454.6 192.3 416 192.3C404 192.3 392.3 189.6 381.6 184.4C368.6 202.4 349.6 215.2 328.4 220.9C338 238.2 355.1 250 375.1 251C380.7 290.3 412.1 320.4 450.4 320.4C490.7 320.4 523.3 287.1 526.3 244.9C533.6999999999999 248.6 541.5999999999999 251.2 550.3 251.2C582.0999999999999 251.2 607.9 223.7 607.9 189.7C608 155.7 582.1999999999999 128.2 550.4 128.2zM165.5 135.9C163.4 136.9 161.2 137.6 158.9 137.6C157.9 137.6 156.8 137.5 155.8 137.3L92.6 124.8L105.1 188C106.3 194.3 103.7 200.8 98.3 204.5L44.8 240.3L98.3 276.1C103.7 279.7 106.3 286.2 105.1 292.6L92.6 355.8L155.8 343.3C162.3 342 168.6 344.8 172.2 350.1L208 403.6L243.8 350C247.4 344.7 253.7 341.9 260.2 343.2L323.4 355.7L311.3 294.5C315.5 297.3 319.7 300 324.3 302.3C331.6 318 341.8 331.7000000000001 353.6 343.5L359.4 373C360.4 378.2000000000001 358.8 383.6 355 387.4000000000001C351.2 391.2 346 392.9000000000001 340.6 391.8L264.4000000000001 376.7000000000001L221.3000000000001 441.3C215.3000000000001 450.2 200.7000000000001 450.2 194.7000000000001 441.3L151.5000000000001 376.7000000000001L75.3000000000001 391.9000000000001C70.0000000000001 393 64.7000000000001 391.2000000000001 60.9000000000001 387.5C57.1000000000001 383.7000000000001 55.5000000000001 378.3 56.5000000000001 373.1L71.6000000000001 296.8L7.1000000000001 253.6C2.7000000000001 250.6 1e-13 245.6 1e-13 240.3C0 235 2.7 230 7.1 227L71.6 183.8L56.5 107.6C55.5 102.3 57.1 96.9 60.9 93.2000000000001S70.1 87.8000000000001 75.3 88.8000000000001L131.6 99.9000000000001C140.4 113.9000000000001 151.9 126.2000000000001 165.5 135.9000000000001zM208 298.2C236.8 298.2 260.5 277 264.9 249.4C267.3 250.2 269.7 251.2 272.2 251.8C277.2 260.8 283.4 268.9 290.2 276.3C276.3 308 244.7 330.2 208 330.2C158.5 330.2 118.2 289.9 118.2 240.3C118.2 200.8 143.9 167.6 179.3 155.5C181.6 166.1 185.2 176.1 189.9 185.6C166.9 193.2 150.1 214.7 150.1 240.3C150.2 272.2000000000001 176.1 298.2000000000001 208 298.2000000000001z" />
+    <glyph glyph-name="clouds"
+      unicode="&#xF744;"
+      horiz-adv-x="640" d=" M543.7 143.7C539.8 188.6 502 224 456 224C448.9 224 442 222.9 435.3 221.3C443.2 236.6 448 253.7 448 272C448 333.8 397.8 384 336 384C325.5 384 315.1 382.5 305 379.5C283 421 239.4 448 192 448C130.2 448 78.2 404.1 66.9 344.2C27.5 332.4 0 296.2 0 254.2C0 202.2 42.3 160 94.2 160H194.4C192.8 152.2 192 144.2 192 136V135.6C153.7 119.6 128 82.1 128 40C128 -17.3 174.7 -64 232 -64H536C593.3 -64 640 -17.3 640 40C640 94.8 597.4 139.8 543.7 143.7zM94.2 192C59.9 192 32 219.9 32 254.2C32 284.5 53.8 310.2 83.8 315.3L95.8 317.3L97 329.4C102 378.8 142.8 416 192 416C231.5 416 267.5 391 281.6 353.7L287.6 337.7L303.1 344.7C313.7000000000001 349.5 324.8 352 336 352C380.1 352 416 316.1 416 272C416 252.1 408.6 233.9 396.3 219.8C374.1 242.3 344.3 256 312 256C266.2 256 226.7 229.9 206.5 192H94.2zM536 -32H232C192.3 -32 160 0.3 160 40C160 72.3 181.9 100.7 213.3 109.2L226.6 112.8L224.6 130C224.3 132 224 134 224 136C224 184.5 263.5 224 312 224C344.2 224 373.8 206.1 389.2 177.2L399.8 157.4L415 173.9C425.8 185.6 440.4 192 456 192C486.9 192 512 166.9 512 136C512 134.4 511.7 132.9 511.2 129.1L508.7 109.1L532.2 111.5C533.4000000000001 111.7 534.7 111.9 536 111.9C575.7 111.9 608 79.6 608 39.9S575.7 -32 536 -32z" />
+    <glyph glyph-name="club"
+      unicode="&#xF327;"
+      horiz-adv-x="512" d=" M256 416C320.9 416 365.1 350.4 341.7 290.6L325.7 249.6C324 245.3 327.6 240.9 332.1 241.5L375.8 247.3C431.2 254.6 479.6 211.6 479.9999999999999 156.8C480.3999999999999 105.1 437.2 63.6 385.5 64.1C344.5 64.5 330.8999999999999 75.4 298.3 109.3C294.6 113.2 288 110.5 288 105.1V80.1C288 39.5 288 27.5 317.1 -9.2C324.4 -18.4 317.8 -31.9 306.1 -31.9H205.8C194.1 -31.9 187.5 -18.4 194.8 -9.2C224 27.4 224 39.4 224 80V105C224 110.4 217.4 113.1 213.7 109.2C181.4 75.5 167.8 64.5 126.6 64C74.8 63.5 31.6 105.1 32.1 156.8C32.6 211.6 81.1 254.5 136.3 247.1L180 241.3C184.5 240.7 188 245.2 186.4 249.4L170.4 290.4C146.8 350.5 191.2 416 256 416M256 448C168.6 448 108.9 359.8 140.5 278.9C65.6 288.8 0 230.4 0 156C0 87.6 55.6 32 124 32C159.5 32 176 40 200 64C200 40 190.3 36.4 169.8 10.6C145.9 -19.5 167.4 -64 205.8 -64H306.1C344.6 -64 366.1 -19.5 342.1 10.6C323.1 34.7 312 40 312 64C336 40 360.9 32 388 32C456.4 32 512 87.6 512 156C512 230.5 446.2 288.8 371.5 278.9C403.1 359.6 343.5 448 256 448z" />
+    <glyph glyph-name="cocktail"
+      unicode="&#xF561;"
+      horiz-adv-x="576" d=" M391.32 320H24.68C2.73 320 -8.26 293.4700000000001 7.26 277.95L192 93.21V-32H138.67C123.94 -32 112 -43.94 112 -58.67C112 -61.62 114.39 -64 117.33 -64H298.6600000000001C301.61 -64 303.99 -61.61 303.99 -58.67C303.99 -43.94 292.05 -32 277.32 -32H224V93.21L331.7 200.91L354.36 223.57L408.73 277.94C424.25 293.47 413.26 320 391.32 320zM208 122.47L42.47 288H373.53L208 122.47zM432 448C369.45 448 317.11 407.77 297.39 352H331.7C349.65 389.68 387.53 416 432 416C493.76 416 544 365.76 544 304S493.76 192 432 192C413.51 192 396.32 196.93 380.94 204.9L357.42 181.38C379.23 168.08 404.59 160 432 160C511.53 160 576 224.47 576 304S511.53 448 432 448zM432 256C431.96 256 431.92 256.01 431.87 256.01C431.67 255.8 431.57 255.53 431.36 255.32L405.04 229C413.5 225.95 422.5 224 432 224C476.12 224 512 259.89 512 304S476.12 384 432 384C405.95 384 382.99 371.32 368.38 352H432C458.47 352 480 330.4700000000001 480 304S458.47 256 432 256z" />
+    <glyph glyph-name="code-branch"
+      unicode="&#xF126;"
+      horiz-adv-x="384" d=" M384 304C384 348.2 348.2 384 304 384S224 348.2 224 304C224 264.8 252.2 232.2 289.5 225.3C288.7 208.1 284.5 194.9 276.8 185.3C259.3 163.5 223.7 160.1 186.1 156.6C157.9 154 128.7 151.2000000000001 105.7 139.7000000000001C102.3 138.0000000000001 99 136.1 96 134.0000000000001V289.6C132.5 297 160 329.3 160 368C160 412.2 124.2 448 80 448S0 412.2 0 368C0 329.3 27.5 297 64 289.6V94.4C27.5 87 0 54.7 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 52.9 135.1 83.9 101.1 93.2C106.1 102.8 113.4 107.8 120.1 111.2C137.6 120 162.6 122.4 189 124.9C231.6 128.9 275.7 133 301.7 165.4C314.1 180.9 320.7 200.9 321.5 226.1C357.3 234 384 265.9 384 304zM32 368C32 394.5 53.5 416 80 416S128 394.5 128 368S106.5 320 80 320S32 341.5 32 368zM128 16C128 -10.5 106.5 -32 80 -32S32 -10.5 32 16C32 42.4 53.4 63.9 79.8 64H80.4C106.7 63.8 128 42.3 128 16zM315.8 257.5L304 256C277.5 256 256 277.5 256 304S277.5 352 304 352S352 330.5 352 304C352 281.6 336.6 262.8 315.8 257.5z" />
+    <glyph glyph-name="code-commit"
+      unicode="&#xF386;"
+      horiz-adv-x="640" d=" M320 320C354.19 320 386.33 306.69 410.51 282.51S448 226.19 448 192S434.69 125.67 410.51 101.49S354.19 64 320 64S253.67 77.31 229.49 101.49S192 157.81 192 192S205.31 258.33 229.49 282.51S285.81 320 320 320M320 352C231.63 352 160 280.37 160 192S231.63 32 320 32S480 103.63 480 192S408.37 352 320 352zM628 208H511.33C511.77 202.7 512 197.37 512 192S511.77 181.3 511.33 176H628C634.63 176 640 181.37 640 188V196C640 202.63 634.63 208 628 208zM128 192C128 197.37 128.23 202.7 128.67 208H12C5.37 208 0 202.63 0 196V188C0 181.37 5.37 176 12 176H128.67C128.23 181.3 128 186.63 128 192z" />
+    <glyph glyph-name="code-merge"
+      unicode="&#xF387;"
+      horiz-adv-x="384" d=" M304 256C262.3 256 228 224 224.3 183.2C199.1 184.5 162.7 191.1 135.5 214.9C115.2 232.7 102.7 257.9 98 290C133.5 298.2 160 330 160 367.9C160 412.1 124.2 447.9 80 447.9S0 412.2 0 368C0 329.3 27.5 297 64 289.6V94.4C27.5 87 0 54.7 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 54.7 132.5 87 96 94.4V210.6C101.5 203.4 107.7 196.7 114.6 190.7C151 159 197.9 151.9 228 151C238.5 119.1 268.5 96 304 96C348.2 96 384 131.8 384 176S348.2 256 304 256zM32 368C32 394.5 53.5 416 80 416S128 394.5 128 368S106.5 320 80 320S32 341.5 32 368zM128 16C128 -10.5 106.5 -32 80 -32S32 -10.5 32 16S53.5 64 80 64S128 42.5 128 16zM304 128C277.5 128 256 149.5 256 176S277.5 224 304 224S352 202.5 352 176S330.5 128 304 128z" />
+    <glyph glyph-name="code"
+      unicode="&#xF121;"
+      horiz-adv-x="576" d=" M228.5 -63.8L203.5 -56.7C200.3 -55.8 198.5 -52.5 199.4 -49.3L340.1 443.6C341 446.8 344.3 448.6 347.5 447.7L372.5 440.6C375.7 439.7 377.5 436.4 376.6 433.2L235.9 -59.6C235 -62.8 231.6 -64.7 228.5 -63.8zM152.9 61.5L171.4 82.4C173.3 84.5 173 87.7 170.9 89.5L49.9 192L170.9 294.5C173 296.3 173.3 299.5 171.4 301.6L152.9 322.5C151.1 324.6 147.9 324.8 145.8 322.9L1.7 195.7C-0.6 193.7 -0.6 190.2 1.7 188.2L145.8 61C147.9 59.2 151.1 59.4 152.9 61.5zM430.2000000000001 61.1L574.3000000000001 188.3C576.6 190.3 576.6 193.8 574.3000000000001 195.8L430.2 322.9C428.1 324.7 425 324.5 423.1 322.5L404.6 301.6C402.7 299.5 403 296.3 405.1 294.5L526.0999999999999 192L405.0999999999999 89.5C402.9999999999999 87.7 402.7 84.5 404.5999999999999 82.4L423.0999999999999 61.5C424.8999999999999 59.4 428.0999999999999 59.2 430.2 61.1z" />
+    <glyph glyph-name="coffee-togo"
+      unicode="&#xF6C5;"
+      horiz-adv-x="448" d=" M432 384H416L392.84 430.31A32 32 0 0 1 364.2200000000001 448H83.78A32 32 0 0 1 55.16 430.31L32 384H16C7.16 384 0 376.8400000000001 0 368V304C0 295.16 7.16 288 16 288H34.67L61.56 -34.66C62.94 -51.24 76.8 -64 93.44 -64H354.55C371.19 -64 385.06 -51.24 386.44 -34.66L413.33 288H432C440.84 288 448 295.16 448 304V368C448 376.8400000000001 440.84 384 432 384zM354.56 -32H93.44L88.11 32H359.89L354.56 -32zM362.56 64H85.44L74.78 192H373.23L362.56 64zM375.89 224H72.11L66.78 288H381.23L375.8900000000001 224zM416 320H32V352H51.78L83.78 416H364.23L396.23 352H416V320z" />
+    <glyph glyph-name="coffee"
+      unicode="&#xF0F4;"
+      horiz-adv-x="576" d=" M517.9 0H26.1C1.6 0 -7 32 6.1 32H537.9C551 32 542.4 0 517.9 0zM576 288.9C576.5 235.5 533.3 192 480 192H448V160C448 107 405 64 352 64H160C107 64 64 107 64 160V372C64 378.6 69.4 384 76 384H478.8C531.6 384 575.5 341.8 576 288.9zM416 352H96V160C96 124.7 124.7 96 160 96H352C387.3 96 416 124.7 416 160V352zM544 288C544 323.3 515.3 352 480 352H448V224H480C515.3 224 544 252.7 544 288z" />
+    <glyph glyph-name="coffin"
+      unicode="&#xF6C6;"
+      horiz-adv-x="384" d=" M370.62 335.3L271.83 434.53C263.13 443.2200000000001 251.6 448 239.38 448H144.62C132.4 448 120.87 443.2200000000001 112.15 434.5L13.39 335.3C2.07 323.92 -2.52 307.19 1.35 291.66L81.2 -29.14C86.3 -49.66 104.61 -64 125.71 -64H258.29C279.39 -64 297.7 -49.66 302.8 -29.14L382.65 291.63C386.52 307.19 381.93 323.92 370.62 335.3zM271.73 -21.42C270.2000000000001 -27.65 264.67 -32 258.29 -32H125.71C119.33 -32 113.8 -27.66 112.27 -21.42L32.42 299.41C31.23 304.16 32.64 309.27 36.08 312.74L134.81 411.9100000000001C137.47 414.55 140.94 416 144.62 416H239.38C243.07 416 246.54 414.55 249.16 411.94L347.92 312.74C351.36 309.27 352.76 304.16 351.5800000000001 299.38L271.73 -21.42zM272.01 304H240.01V336C240.01 344.8400000000001 232.85 352 224.01 352H160C151.16 352 144 344.8400000000001 144 336V304H112C103.16 304 96 296.8400000000001 96 288V224C96 215.16 103.16 208 112 208H144V112C144 103.16 151.16 96 160 96H224C232.84 96 240 103.16 240 112V208H272C280.84 208 288 215.16 288 224V288C288.01 296.8400000000001 280.85 304 272.01 304zM256.01 240H208V128H176V240H127.99V272H176V320H208V272H256.01V240z" />
+    <glyph glyph-name="cog"
+      unicode="&#xF013;"
+      horiz-adv-x="512" d=" M482.696 148.724L450.086 167.551A195.168 195.168 0 0 1 450.086 216.45L482.696 235.277C492.272 240.805 496.891 252.179 493.742 262.778C482.528 300.527 462.567 334.506 436.207 362.373C428.573 370.443 416.39 372.209 406.77 366.655L374.208 347.857A194.125 194.125 0 0 1 331.869 372.337V409.951C331.869 421.081 324.217 430.755 313.385 433.318C275.741 442.227 236.267 442.228 198.615 433.318C187.784 430.755 180.131 421.082 180.131 409.951V372.337A194.101 194.101 0 0 1 137.792 347.857L105.23 366.655C95.609 372.209 83.426 370.443 75.793 362.373C49.433 334.506 29.472 300.526 18.258 262.778C15.109 252.1790000000001 19.728 240.806 29.304 235.277L61.914 216.45A195.168 195.168 0 0 1 61.914 167.5510000000001L29.304 148.7240000000001C19.728 143.196 15.109 131.8220000000001 18.258 121.2230000000001C29.472 83.4750000000001 49.433 49.4950000000001 75.793 21.628C83.427 13.5580000000001 95.61 11.792 105.23 17.345L137.792 36.143A194.08 194.08 0 0 1 180.131 11.664V-25.9499999999999C180.131 -37.0799999999999 187.783 -46.7539999999999 198.615 -49.3169999999999C236.26 -58.2259999999999 275.733 -58.227 313.385 -49.3169999999999C324.216 -46.754 331.869 -37.081 331.869 -25.9499999999999V11.664A194.138 194.138 0 0 1 374.208 36.143L406.77 17.345C416.39 11.7910000000001 428.573 13.557 436.207 21.628C462.567 49.4950000000001 482.528 83.475 493.742 121.2230000000001C496.891 131.8220000000001 492.2719999999999 143.1950000000001 482.696 148.7240000000001zM417.2170000000001 48.263L370.908 75.003C343.92 51.932 334.3490000000001 46.127 299.8690000000001 33.944V-19.535A217.145 217.145 0 0 0 212.131 -19.535V33.944C178.51 45.823 168.7760000000001 51.3389999999999 141.0920000000001 75.0029999999999L94.7830000000001 48.2629999999999C75.073 70.3529999999999 60.0940000000001 96.2519999999999 50.854 124.2209999999999L97.1830000000001 150.9609999999999C90.6480000000001 186.3779999999999 90.6450000000001 197.6049999999999 97.1830000000001 233.0399999999999L50.8540000000001 259.7799999999999C60.0940000000001 287.7489999999999 75.074 313.6489999999999 94.7830000000001 335.7489999999999L141.0920000000001 308.9889999999999C168.4690000000001 332.4229999999999 178.155 338.0539999999999 212.131 350.058V403.536A216.79 216.79 0 0 0 299.8690000000001 403.536V350.057C333.8470000000001 338.052 343.5340000000001 332.42 370.908 308.988L417.217 335.748C436.926 313.649 451.906 287.749 461.146 259.779L414.817 233.039C421.353 197.613 421.355 186.395 414.817 150.96L461.146 124.22C451.9059999999999 96.252 436.927 70.352 417.217 48.263zM256 288C203.065 288 160 244.935 160 192S203.065 96 256 96S352 139.065 352 192S308.935 288 256 288zM256 128C220.71 128 192 156.71 192 192S220.71 256 256 256S320 227.29 320 192S291.29 128 256 128z" />
+    <glyph glyph-name="cogs"
+      unicode="&#xF085;"
+      horiz-adv-x="640" d=" M538.6 251.6L536.1 255.5C532 255.2 528 255.2 523.9 255.5L521.4 251.5C515.6 242.3 504.3 238.1 493.9 241.4C480.1 245.7 470.9 250.2 459.6 259.5C450.6 266.9 448.4 279.8 454.2 289.9L456.7 294.2000000000001C454.4 297.6 452.4 301.1 450.6 304.8H441.5C429.8999999999999 304.8 420.1 313 417.8999999999999 324.4C415.2999999999999 338.1 415.2 348.6 418 362.9C420.1 374.2 430.1 382.4 441.6 382.4H450.6C452.4 386.1 454.4 389.6 456.7 393L454.1 397.5C448.3 407.5 450.4999999999999 420.2 459.3 427.8C469.9 436.9000000000001 478.9999999999999 442.1 492.8 446.8C503.6 450.5 515.5 446.1 521.3 436.2L523.9 431.8C528 432.1 532 432.1 536.1 431.8L538.7 436.2C544.5 446.1 556.4000000000001 450.5 567.3000000000001 446.7C580.6 442.2 589.6 437.1 600.8000000000001 427.6C609.6 420.1 611.7 407.4 605.9000000000001 397.4L603.3000000000001 393C605.6 389.6 607.6 386.1 609.4000000000001 382.4H614.5000000000001C626.1000000000001 382.4 635.9000000000001 374.2 638.1000000000001 362.8C640.7000000000002 349.1 640.8000000000002 338.6 638.0000000000001 324.3C635.9000000000001 313 625.9000000000001 304.8 614.4000000000001 304.8H609.4000000000001C607.6000000000001 301.1 605.6000000000001 297.6 603.3000000000001 294.2000000000001L605.8000000000001 289.9C611.7 279.7000000000001 609.3000000000001 266.8 600.3000000000001 259.4C589.6 250.6 580.4000000000001 246 566.3000000000001 241.5C555.8000000000001 238.2 544.4000000000001 242.3 538.6 251.6zM550.8000000000001 286.1L561.4000000000001 267.8C568.1000000000001 270.6 574.3000000000001 274.2 580.1000000000001 278.6L569.5000000000001 296.9L575.9000000000001 304.4C580.7 310.1 584.5000000000001 316.5 586.9000000000001 323.5L590.2 332.8H611.3000000000001C612.2 339.9 612.2 347.2 611.3000000000001 354.3H590.2L586.9000000000001 363.6C584.4000000000001 370.6 580.7 377 575.9000000000001 382.7L569.5000000000001 390.2L580 408.6C574.3 413 568 416.6 561.3 419.4L550.6999999999999 401.1L540.9999999999999 402.9C533.6999999999999 404.3 526.1999999999999 404.3 518.8999999999999 402.9L509.1999999999999 401.1L498.5999999999999 419.4C492 416.7 485.7 413 480 408.6L490.6 390.3L484.2 382.8C479.4 377.1 475.6 370.7 473.2 363.7L469.9 354.4H448.8C447.9000000000001 347.3 447.9000000000001 340 448.8 332.9H469.9L473.2 323.6C475.7 316.6 479.4 310.2 484.2 304.5L490.6 297L480 278.6C485.7 274.2 492 270.6 498.7 267.8L509.3 286.1L519 284.3C526.3 282.9 533.8 282.9 541.1 284.3L550.8000000000001 286.1zM145.3 -6.4V25.2C132.4 30.7 120.2 37.8000000000001 108.9 46.3000000000001L81.4 30.4000000000001C71.6 24.8000000000001 59.3 26.7000000000001 51.7 35.0000000000001C27.5 61.3000000000001 13.2 84.5000000000001 1.1 123.1000000000001C-2.3 133.8000000000001 2.2 145.4000000000002 11.9 151.1000000000001L39.2 167C37.5 181 37.5 195.1 39.2 209.1L11.9 224.9C2.2 230.5 -2.3 242.2 1.1 252.9C13.2 291.3 27.3 314.5 51.7 341C59.3 349.3 71.7 351.2 81.4 345.6L108.8 329.7C120.1 338.2 132.3 345.2 145.2 350.8V382.4C145.2 393.7 153 403.4 164 405.8C198.7000000000001 413.6 226.0000000000001 414.5 265.7000000000001 405.8C276.7000000000001 403.4 284.6 393.6 284.6 382.4V350.8C297.5 345.3 309.7000000000001 338.2000000000001 321 329.8L348.4 345.6C358.2 351.2 370.6 349.3 378.2 341C405.1 311.4 419.7 285.1 430.3 252.5C433.7 242 429.5 230.6 420.1 224.8L395.1 209C396.8 195 396.8 180.9 395.1 166.9L423.2000000000001 149.4C431.8000000000001 144 436.2000000000001 133.8 434.0000000000001 123.9C427.1000000000001 92.6 401.0000000000001 59.3 378.1000000000001 34.7C370.5000000000001 26.5 358.2000000000001 24.7 348.5000000000001 30.3L321 46.2C309.7 37.7 297.5 30.7 284.6 25.1V-6.5000000000001C284.6 -17.7 276.8 -27.5000000000001 265.8 -29.9C228.3 -38.2 200.9 -38.1 163.9 -29.9C153.1 -27.4 145.3 -17.6 145.3 -6.4zM177.3 -0.2C202.1 -5.2 227.8 -5.2 252.6 -0.2V47.5L263.3 51.3C280.1 57.2 295.6 66.2 309.2 77.8L317.8 85.2L359.2 61.3C376 80.4 393.2 102.6 401.3 126.5L359.9000000000001 150.4L362.0000000000001 161.5C365.2000000000001 179.1 365.2000000000001 197 362.0000000000001 214.6L359.9000000000001 225.7L401.3 249.6C393.2 273.5 376 295.8 359.2 314.8L317.8 290.9L309.2 298.3C295.6 310 280.2 318.9 263.3 324.8L252.6 328.6V376.2C227.8 381.2 202.1 381.2 177.3 376.2V328.5L166.6 324.7C149.8 318.8 134.3 309.8 120.7 298.2L112.1 290.8L70.7 314.7A192.19 192.19 0 0 1 33 249.5L74.4 225.6L72.3 214.5C69.1 196.9 69.1 179 72.3 161.4L74.4 150.3L33 126.4C41.1 102.5 53.9 80.2 70.7 61.2L112.1 85.1L120.7 77.7C134.3 66 149.7 57.1 166.6 51.2L177.3 47.4V-0.2zM215.7 105.1C170 105.1 132.8 142.3 132.8 188S170 270.9 215.7 270.9S298.6 233.7 298.6 188S261.4000000000001 105.1 215.7 105.1zM215.7 238.9000000000001C187.7 238.9000000000001 164.8 216.1 164.8 188.0000000000001S187.6 137.1000000000001 215.7 137.1000000000001C243.7 137.1000000000001 266.6 159.9000000000001 266.6 188.0000000000001S243.8 238.9000000000001 215.7 238.9000000000001zM538.6 -52.8L536.1 -48.9C532 -49.2 528 -49.2 523.9 -48.9L521.4 -52.9C515.6 -62.1 504.3 -66.2999999999999 493.9 -63C480.1 -58.7 470.9 -54.2 459.6 -44.9C450.6 -37.5 448.4 -24.6 454.2 -14.5L456.7 -10.2C454.4 -6.8 452.4 -3.3 450.6 0.4H441.5C429.8999999999999 0.4 420.1 8.6 417.8999999999999 20.0000000000001C415.2999999999999 33.7 415.2 44.2 418 58.5000000000001C420.1 69.8000000000001 430.1 78.0000000000001 441.6 78.0000000000001H450.6C452.4 81.7000000000001 454.4 85.2000000000001 456.7 88.6000000000001L454.1 93.1000000000001C448.3 103.1000000000001 450.4999999999999 115.8000000000001 459.3 123.4000000000001C469.9 132.5000000000001 478.9999999999999 137.7000000000001 492.8 142.4000000000001C503.6 146.1000000000001 515.5 141.7000000000001 521.3 131.8000000000001L523.9 127.4000000000001C528 127.7000000000001 532 127.7000000000001 536.1 127.4000000000001L538.7 131.8000000000001C544.5 141.7000000000001 556.4000000000001 146.1000000000001 567.3000000000001 142.3000000000001C580.6 137.8000000000001 589.6 132.7000000000001 600.8000000000001 123.2000000000001C609.6 115.7000000000001 611.7 103.0000000000001 605.9000000000001 93.0000000000001L603.3000000000001 88.6000000000001C605.6 85.2000000000001 607.6 81.7000000000001 609.4000000000001 78.0000000000001H614.5000000000001C626.1000000000001 78.0000000000001 635.9000000000001 69.8000000000001 638.1000000000001 58.4C640.7000000000002 44.7 640.8000000000002 34.2 638.0000000000001 19.9C635.9000000000001 8.6 625.9000000000001 0.4 614.4000000000001 0.4H609.4000000000001C607.6000000000001 -3.3 605.6000000000001 -6.8 603.3000000000001 -10.2L605.8000000000001 -14.5C611.7 -24.7 609.3000000000001 -37.6 600.3000000000001 -45C589.6 -53.8 580.4000000000001 -58.4 566.3000000000001 -62.9C555.8000000000001 -66.1 544.4000000000001 -62 538.6 -52.8zM550.8000000000001 -18.1999999999999L561.4000000000001 -36.4999999999999C568.1000000000001 -33.6999999999999 574.3000000000001 -30.1 580.1000000000001 -25.6999999999999L569.5000000000001 -7.3999999999999L575.9000000000001 0.1000000000001C580.7 5.8000000000001 584.5000000000001 12.2000000000001 586.9000000000001 19.2000000000001L590.2 28.5000000000001H611.3000000000001C612.2 35.6000000000001 612.2 42.9000000000001 611.3000000000001 50.0000000000001H590.2L586.9000000000001 59.3000000000001C584.4000000000001 66.3000000000001 580.7 72.7000000000001 575.9000000000001 78.4000000000002L569.5000000000001 85.9000000000002L580.1000000000001 104.2000000000002C574.4000000000001 108.6000000000001 568.1000000000001 112.2000000000002 561.4000000000001 115.0000000000002L550.8000000000001 96.7000000000002L541.1 98.5000000000002C533.8000000000001 99.9000000000002 526.3000000000001 99.9000000000002 519 98.5000000000002L509.3 96.7000000000002L498.7 115.0000000000002C492 112.2000000000002 485.8 108.6000000000002 480 104.2000000000002L490.6 85.9000000000002L484.2 78.4000000000002C479.4 72.7000000000002 475.6 66.3000000000001 473.2 59.3000000000001L469.9 50.0000000000001H448.8C447.9000000000001 42.9000000000001 447.9000000000001 35.6000000000001 448.8 28.5000000000001H469.9L473.2 19.2000000000001C475.7 12.2000000000001 479.4 5.8000000000001 484.2 0.1000000000001L490.6 -7.3999999999999L480 -25.6999999999999C485.7 -30.0999999999999 492 -33.6999999999999 498.7 -36.4999999999999L509.3 -18.1999999999999L519 -19.9999999999999C526.3 -21.3999999999999 533.8 -21.3999999999999 541.1 -19.9999999999999L550.8000000000001 -18.1999999999999zM560 40C560 57.7 545.7 72 528 72S496 57.7 496 40S510.3 8 528 8S560 22.3 560 40zM560 344.3C560 362 545.7 376.3 528 376.3S496 362 496 344.3S510.3 312.3 528 312.3S560 326.7000000000001 560 344.3z" />
+    <glyph glyph-name="coins"
+      unicode="&#xF51E;"
+      horiz-adv-x="512" d=" M336 416C287.4 416 243.4 407 211.5 392.6C210.6 392.2 160 371.6 160 336V319.3C76.1 315.8 0 284.6 0 240V48C0 3.8 78.8 -32 176 -32S352 3.8 352 48V64.4C441.7 68.1 512 102.3 512 144V336C512 373 449.9 416 336 416zM320 48C320 34.1 269.5 0 176 0S32 34.1 32 48V98.1C63.8 77.5 116.4 64 176 64S288.2 77.5 320 98.1V48zM320 144C320 130.1 269.5 96 176 96S32 130.1 32 144V194.1C63.8 173.5 116.4 160 176 160S288.2 173.5 320 194.1V144zM176 192C95 192 29.3 213.5 29.3 240S95 288 176 288S322.7 266.5 322.7 240S257 192 176 192zM480 144C480 130.9 435 100.4 352 96.7V160.8C404.8 163 451.1 175.4 480 194.1V144zM480 240C480 226.9 434.9 196.6 352 192.8V240C352 245.6 350.3 251 347.9 256.3C402.5 258 450.3 270.8 480 290.1V240zM336 288C328.7 288 322 288.5 315.1 288.9C278.2000000000001 310.6 230.1 317.1 199.5 318.9C193.2 324.2 189.4 329.9 189.4 336C189.4 362.5 255.1 384 336.1 384S482.8 362.5 482.8 336S417 288 336 288z" />
+    <glyph glyph-name="columns"
+      unicode="&#xF0DB;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM240 0H48C39.163 0 32 7.163 32 16V352H240V0zM480 16C480 7.163 472.837 0 464 0H272V352H480V16z" />
+    <glyph glyph-name="comment-alt-check"
+      unicode="&#xF4A2;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM345.3 313.5C343.7 315.1 341.7 315.8 339.6 315.8C337.6 315.8 335.5 315 333.9000000000001 313.5L226.5 206.1L178 254.6C176.4 256.2 174.4 256.9 172.3 256.9C170.3 256.9 168.2 256.1 166.6 254.6L155.3 243.3C152.2 240.2 152.2 235.1 155.3 232L220.8 166.5C222.4 164.9 224.4 164.2 226.5 164.2S230.6 165 232.2 166.5L356.7 291C359.8 294.1 359.8 299.2 356.7 302.3L345.3 313.5z" />
+    <glyph glyph-name="comment-alt-dollar"
+      unicode="&#xF650;"
+      horiz-adv-x="512" d=" M448 448H64C28.65 448 0 419.35 0 384V96C0 60.65 28.65 32 64 32H160V-51.98C160 -59.08 165.83 -64 172.05 -64C174.46 -64 176.92 -63.26 179.13 -61.63L304 32H448C483.35 32 512 60.65 512 96V384C512 419.35 483.35 448 448 448zM480 96C480 78.36 465.64 64 448 64H293.34L284.81 57.6L192 -11.98V64H64C46.36 64 32 78.36 32 96V384C32 401.64 46.36 416 64 416H448C465.64 416 480 401.64 480 384V96zM289.94 246.95L230.88 263.81C222.13 266.3300000000001 216 274.42 216 283.51C216 294.81 225.19 303.99 236.47 303.99H273.38C281.62 303.99 289.46 301.43 296.01 296.67C299 294.5 303.23 295.21 305.85 297.83L317.27 309.25C320.77 312.75 320.21 318.47 316.28 321.48C304.02 330.89 289.1 335.99 273.38 335.99H272V360C272 364.42 268.42 368 264 368H248C243.58 368 240 364.42 240 360V336H236.47C205.88 336 181.34 309.7 184.23 278.52C186.29 256.36 203.29 238.4 224.68 232.3L281.12 216.19C289.87 213.67 296 205.58 296 196.49C296 185.19 286.81 176.01 275.53 176.01H238.62C230.38 176.01 222.54 178.57 215.99 183.33C213 185.5 208.77 184.79 206.15 182.17L194.73 170.75C191.23 167.25 191.79 161.54 195.72 158.5199999999999C207.98 149.1099999999999 222.9 144.0099999999999 238.62 144.0099999999999H240V120.0099999999999C240 115.5899999999999 243.58 112.0099999999999 248 112.0099999999999H264C268.42 112.0099999999999 272 115.5899999999999 272 120.0099999999999V144.0099999999999H273.36C296.17 144.0099999999999 317.69 157.5999999999999 325.0800000000001 179.18C335.23 208.8199999999999 317.8000000000001 238.97 289.9400000000001 246.95z" />
+    <glyph glyph-name="comment-alt-dots"
+      unicode="&#xF4A3;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM128 264C114.7 264 104 253.3 104 240S114.7 216 128 216S152 226.7 152 240S141.3 264 128 264zM256 264C242.7 264 232 253.3 232 240S242.7 216 256 216S280 226.7 280 240S269.3 264 256 264zM384 264C370.7 264 360 253.3 360 240S370.7 216 384 216S408 226.7 408 240S397.3 264 384 264z" />
+    <glyph glyph-name="comment-alt-edit"
+      unicode="&#xF4A4;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM336 342.6C323.5 355.1 303.2 355.1 290.8 342.6L164.7 216.6C162.7 214.6 161.3 212.1 160.5 209.3L144.5 148.1C143.1 142.6 144.6 136.8 148.7 132.7C151.7 129.7 155.8 128 160 128C161.3000000000001 128 162.7 128.2 164 128.5L225.2000000000001 144.5C228.0000000000001 145.2 230.5000000000001 146.7 232.5000000000001 148.7L358.6 274.8C371.1 287.3 371.1 307.6 358.6 320L336 342.6zM213 174.4L182.4 166.4L190.4 197L265.4 272L288 249.4L213 174.4zM310.6 272L288 294.6L313.4 320L336 297.4L310.6 272z" />
+    <glyph glyph-name="comment-alt-exclamation"
+      unicode="&#xF4A5;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM256 184C242.7 184 232 173.3 232 160S242.7 136 256 136S280 146.7 280 160S269.3 184 256 184zM247.5 208H264.5C268.7 208 272.2 211.3 272.5 215.5L279.5 327.5C279.8 332.1 276.1 336 271.5 336H240.5C235.9 336 232.2 332.1 232.5 327.5L239.5 215.5C239.8 211.3 243.3 208 247.5 208z" />
+    <glyph glyph-name="comment-alt-lines"
+      unicode="&#xF4A6;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM280 208H136C131.6 208 128 204.4 128 200V184C128 179.6 131.6 176 136 176H280C284.4 176 288 179.6 288 184V200C288 204.4 284.4 208 280 208zM376 304H136C131.6 304 128 300.4 128 296V280C128 275.6 131.6 272 136 272H376C380.4 272 384 275.6 384 280V296C384 300.4 380.4 304 376 304z" />
+    <glyph glyph-name="comment-alt-minus"
+      unicode="&#xF4A7;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM344 256H168C163.6 256 160 252.4 160 248V232C160 227.6 163.6 224 168 224H344C348.4 224 352 227.6 352 232V248C352 252.4 348.4 256 344 256z" />
+    <glyph glyph-name="comment-alt-plus"
+      unicode="&#xF4A8;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM344 256H272V328C272 332.4 268.4 336 264 336H248C243.6 336 240 332.4 240 328V256H168C163.6 256 160 252.4 160 248V232C160 227.6 163.6 224 168 224H240V152C240 147.6 243.6 144 248 144H264C268.4 144 272 147.6 272 152V224H344C348.4 224 352 227.6 352 232V248C352 252.4 348.4 256 344 256z" />
+    <glyph glyph-name="comment-alt-slash"
+      unicode="&#xF4A9;"
+      horiz-adv-x="640" d=" M637 -37.2L540.3 38.9L517.8 56.6L74.6 405.6L69.4 409.7L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L64 373.2L96 348L456.7 64L472.6 51.5L617 -62.2C620.4 -65 625.5 -64.4 628.2 -61L638.2 -48.5C641 -45 640.4000000000001 -40 637 -37.2zM368 64H357.3L348.8 57.6L256 -12V64H128C110.4 64 96 78.4 96 96V286.9L64 312.1V96C64 60.7 92.7 32 128 32H224V-52C224 -59.1 229.8 -64 236 -64C238.4 -64 240.9 -63.3 243.1 -61.6L368 32H419.7L379.1 64H368zM512 416C529.6 416 544 401.6 544 384V97.1L572.2 74.9C574.5 81.5000000000001 576 88.6 576 96.0000000000001V384C576 419.3 547.3 448 512 448H128C119.6 448 111.6 446.3 104.3 443.3L139 416H512z" />
+    <glyph glyph-name="comment-alt-smile"
+      unicode="&#xF4AA;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM331.8 210.7C313 188.6 285.4 176 256 176S199 188.6 180.2 210.6C174.5 217.3 164.4 218 157.7 212.4C150.9 206.6 150.2 196.6 155.9 189.8C180.7 160.7 217.2 144 256 144S331.3 160.7 356.2 189.9C362 196.6 361.1 206.7 354.4 212.5C347.7 218.2 337.6 217.4 331.8 210.7zM192 264C205.3 264 216 274.7 216 288S205.3 312 192 312S168 301.3 168 288S178.7 264 192 264zM320 264C333.3 264 344 274.7 344 288S333.3 312 320 312S296 301.3 296 288S306.7 264 320 264z" />
+    <glyph glyph-name="comment-alt-times"
+      unicode="&#xF4AB;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96zM329.5 302.2L318.2 313.5C316.6 315.1 314.6 315.8 312.5 315.8S308.4 315 306.8 313.5L256 262.6L205.1 313.5C203.5 315.1 201.5 315.8 199.4 315.8S195.3 315 193.7 313.5L182.4 302.2C179.3 299.1 179.3 294 182.4 290.9L233.3 240L182.4 189.1C179.3 186 179.3 180.9 182.4 177.8L193.7 166.5C195.3 164.8999999999999 197.3 164.1999999999999 199.4 164.1999999999999S203.5 165 205.1 166.5L256 217.4L306.9 166.5C308.5 164.8999999999999 310.5 164.1999999999999 312.6 164.1999999999999S316.7 165 318.3 166.5L329.6 177.8C332.7 180.9 332.7 186 329.6 189.1L278.6 240L329.5 290.9C332.7 294 332.7 299.1 329.5 302.2z" />
+    <glyph glyph-name="comment-alt"
+      unicode="&#xF27A;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM480 96C480 78.4 465.6 64 448 64H293.3L284.8 57.6L192 -12V64H64C46.4 64 32 78.4 32 96V384C32 401.6 46.4 416 64 416H448C465.6 416 480 401.6 480 384V96z" />
+    <glyph glyph-name="comment-check"
+      unicode="&#xF4AC;"
+      horiz-adv-x="512" d=" M345.3 281.5C343.7 283.1 341.7 283.8 339.6 283.8C337.6 283.8 335.5 283 333.9000000000001 281.5L226.5 174.1L178 222.6C176.4 224.2 174.4 224.9 172.3 224.9C170.3 224.9 168.2 224.1 166.6 222.6L155.3 211.3C152.2 208.2 152.2 203.1 155.3 200L220.8 134.5C222.4 132.9 224.4 132.2 226.5 132.2S230.6 133 232.2 134.5L356.7 259C359.8 262.1 359.8 267.2 356.7 270.3L345.3 281.5zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-dollar"
+      unicode="&#xF651;"
+      horiz-adv-x="512" d=" M256 416C114.62 416 0 322.88 0 208C0 160.45 19.86 116.77 52.9 81.73C38 42.28 6.97 8.94 6.54 8.5C-0.02 1.55 -1.84 -8.69 1.95 -17.48S14.39 -32 23.98 -32C85.49 -32 134 -6.28 163.13 14.33C191.95 5.2 223.2 0 256 0C397.38 0 512 93.12 512 208S397.38 416 256 416zM256 32C227.67 32 199.68 36.32 172.79 44.84L157.63 49.64L144.64 40.45C121.62 24.16 86.11 5.11 42.02 0.86C54.01 15.95 71.84 41.3 82.83 70.41L89.9 89.12L76.18 103.67C47.28 134.33 32 170.4 32 208C32 305.05 132.49 384 256 384S480 305.05 480 208S379.51 32 256 32zM289.94 214.95L230.88 231.81C222.13 234.33 216 242.42 216 251.51C216 262.81 225.19 271.99 236.47 271.99H273.38C281.62 271.99 289.46 269.43 296.01 264.67C299 262.5 303.23 263.21 305.85 265.83L317.27 277.25C320.77 280.75 320.21 286.47 316.28 289.48C304.02 298.89 289.1 303.99 273.38 303.99H272V327.99C272 332.41 268.42 335.99 264 335.99H248C243.58 335.99 240 332.41 240 327.99V303.99H236.47C205.88 303.99 181.34 277.69 184.23 246.51C186.29 224.35 203.29 206.39 224.68 200.29L281.12 184.18C289.87 181.66 296 173.5699999999999 296 164.48C296 153.18 286.81 144 275.53 144H238.62C230.38 144 222.54 146.56 215.99 151.3199999999999C213 153.49 208.77 152.7799999999999 206.15 150.1599999999999L194.73 138.7399999999999C191.23 135.2399999999999 191.79 129.5299999999999 195.72 126.5099999999999C207.98 117.0999999999999 222.9 111.9999999999999 238.62 111.9999999999999H240V87.9999999999999C240 83.5799999999999 243.58 79.9999999999999 248 79.9999999999999H264C268.42 79.9999999999999 272 83.5799999999999 272 87.9999999999999V111.9999999999999H273.36C296.17 111.9999999999999 317.69 125.5899999999999 325.0800000000001 147.1699999999999C335.23 176.8199999999999 317.8000000000001 206.9699999999999 289.9400000000001 214.9499999999999z" />
+    <glyph glyph-name="comment-dots"
+      unicode="&#xF4AD;"
+      horiz-adv-x="512" d=" M128 232C114.7 232 104 221.3 104 208S114.7 184 128 184S152 194.7 152 208S141.3 232 128 232zM256 232C242.7 232 232 221.3 232 208S242.7 184 256 184S280 194.7 280 208S269.3 232 256 232zM384 232C370.7 232 360 221.3 360 208S370.7 184 384 184S408 194.7 408 208S397.3 232 384 232zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-edit"
+      unicode="&#xF4AE;"
+      horiz-adv-x="512" d=" M336 310.6C323.5 323.1 303.2 323.1 290.8 310.6L164.7 184.6C162.7 182.6 161.3 180.1 160.5 177.3L144.5 116.1C143.1 110.6 144.6 104.8 148.7 100.7000000000001C151.7 97.7000000000001 155.8 96.0000000000001 160 96.0000000000001C161.3000000000001 96.0000000000001 162.7 96.2000000000001 164 96.5000000000001L225.2000000000001 112.5000000000001C228.0000000000001 113.2000000000001 230.5000000000001 114.7000000000001 232.5000000000001 116.7000000000001L358.6 242.8000000000001C371.1 255.3000000000001 371.1 275.6 358.6 288.0000000000001L336 310.6zM213 142.4L182.4 134.4L190.4 165L265.4 240L288 217.4L213 142.4zM310.6 240L288 262.6L313.4 288L336 265.4L310.6 240zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-exclamation"
+      unicode="&#xF4AF;"
+      horiz-adv-x="512" d=" M256 152C242.7 152 232 141.3 232 128S242.7 104 256 104S280 114.7 280 128S269.3 152 256 152zM247.5 176H264.5C268.7 176 272.2 179.3 272.5 183.5L279.5 295.5C279.8 300.1 276.1 304 271.5 304H240.5C235.9 304 232.2 300.1 232.5 295.5L239.5 183.5C239.8 179.3 243.3 176 247.5 176zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-lines"
+      unicode="&#xF4B0;"
+      horiz-adv-x="512" d=" M280 176H136C131.6 176 128 172.4 128 168V152C128 147.6 131.6 144 136 144H280C284.4 144 288 147.6 288 152V168C288 172.4 284.4 176 280 176zM376 272H136C131.6 272 128 268.4 128 264V248C128 243.6 131.6 240 136 240H376C380.4 240 384 243.6 384 248V264C384 268.4 380.4 272 376 272zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-minus"
+      unicode="&#xF4B1;"
+      horiz-adv-x="512" d=" M344 224H168C163.6 224 160 220.4 160 216V200C160 195.6 163.6 192 168 192H344C348.4 192 352 195.6 352 200V216C352 220.4 348.4 224 344 224zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-plus"
+      unicode="&#xF4B2;"
+      horiz-adv-x="512" d=" M344 224H272V296C272 300.4 268.4 304 264 304H248C243.6 304 240 300.4 240 296V224H168C163.6 224 160 220.4 160 216V200C160 195.6 163.6 192 168 192H240V120C240 115.6 243.6 112 248 112H264C268.4 112 272 115.6 272 120V192H344C348.4 192 352 195.6 352 200V216C352 220.4 348.4 224 344 224zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment-slash"
+      unicode="&#xF4B3;"
+      horiz-adv-x="640" d=" M320 384C443.5 384 544 305 544 208C544 176.2 533 146.4 514.1 120.6L539.1 100.9C562.4 132.2 576 168.8 576 208C576 322.9 461.4 416 320 416C268.8 416 221.3 403.7 181.3 382.7L209.1 360.8C241.9 375.5 279.7 384 320 384zM637 -37.2L164.8 334.6L138.9 355L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L115.5 332.6L140.6 312.8L617 -62.2C620.4 -65 625.5 -64.4 628.2 -61L638.2 -48.5C641 -45 640.4000000000001 -40 637 -37.2zM320 32C291.7 32 263.7 36.3 236.8 44.8L221.6 49.6L208.6 40.4C185.6 24.1 150.1 5.1 106 0.8C118 15.9 135.8000000000001 41.2 146.8 70.4L153.9 89.1L140.2 103.7C111.3 134.3 96 170.4 96 208C96 231.3 101.9 253.6 112.5 274L87.1 294C72.4 267.7 64 238.7 64 208C64 160.4 83.9 116.8 116.9 81.7C102 42.3 71 8.9 70.5 8.5C63.9 1.5 62.1 -8.7 65.9 -17.5S78.4 -32 88 -32C149.5 -32 198 -6.3 227.1 14.3C256 5.2 287.2 0 320 0C360.6 0 398.9 7.9 433 21.6L403.5 44.8C377.6 36.6 349.5 32 320 32z" />
+    <glyph glyph-name="comment-smile"
+      unicode="&#xF4B4;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32zM331.8 162.7C313 140.6 285.4 128 256 128S199 140.6 180.2 162.6C174.5 169.3 164.4 170 157.7 164.4C150.9 158.6 150.2 148.6 155.9 141.8C180.7 112.7 217.2 96 256 96S331.3 112.7 356.2 141.9C362 148.6 361.1 158.7 354.4 164.5C347.7 170.2 337.6 169.4 331.8 162.7zM192 232C205.3 232 216 242.7 216 256S205.3 280 192 280S168 269.3 168 256S178.7 232 192 232zM320 232C333.3 232 344 242.7 344 256S333.3 280 320 280S296 269.3 296 256S306.7 232 320 232z" />
+    <glyph glyph-name="comment-times"
+      unicode="&#xF4B5;"
+      horiz-adv-x="512" d=" M329.5 270.2L318.2 281.5C316.6 283.1 314.6 283.8 312.5 283.8S308.4 283 306.8 281.5L256 230.6L205.1 281.5C203.5 283.1 201.5 283.8 199.4 283.8S195.3 283 193.7 281.5L182.4 270.2C179.3 267.1 179.3 262 182.4 258.9L233.3 208L182.4 157.1C179.3 154 179.3 148.9 182.4 145.8L193.7 134.5C195.3 132.8999999999999 197.3 132.1999999999999 199.4 132.1999999999999S203.5 133 205.1 134.5L256 185.3999999999999L306.9 134.5C308.5 132.8999999999999 310.5 132.1999999999999 312.6 132.1999999999999S316.7 133 318.3 134.5L329.6 145.8C332.7 148.9 332.7 154 329.6 157.1L278.6 208L329.5 258.9C332.7 262 332.7 267.1 329.5 270.2zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384S480 305 480 208S379.5 32 256 32z" />
+    <glyph glyph-name="comment"
+      unicode="&#xF075;"
+      horiz-adv-x="512" d=" M256 384C379.5 384 480 305 480 208S379.5 32 256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.3 134.3 32 170.4 32 208C32 305 132.5 384 256 384M256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5C5.7 -26.3 14.3 -32 23.9 -32C85.4 -32 133.9 -6.3 163 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416z" />
+    <glyph glyph-name="comments-alt-dollar"
+      unicode="&#xF652;"
+      horiz-adv-x="576" d=" M224 213.4C245.85 214.69 263.38 233.02 263.38 255.86C263.38 274.8400000000001 251.04 291.8 233.38 297.0900000000001L191.82 309.56C187.6 310.8300000000001 184.63 315.18 184.63 320.14C184.63 326.17 188.97 331.08 194.29 331.08H220.23C224.13 331.08 227.88 330 231.19 327.98C234.36 326.05 238.5 326.83 241.19 329.38L252.63 340.25C256.16 343.61 256.01 349.4700000000001 252.09 352.36C243.91 358.39 234.12 361.94 224.01 362.68V376C224.01 380.42 220.43 384 216.01 384H200.01C195.59 384 192.01 380.42 192.01 376V362.6C170.16 361.31 152.63 342.98 152.63 320.14C152.63 301.16 164.97 284.2 182.63 278.91L224.19 266.44C228.41 265.17 231.38 260.82 231.38 255.86C231.38 249.83 227.04 244.92 221.72 244.92H195.78C191.88 244.92 188.13 246 184.82 248.02C181.65 249.96 177.51 249.17 174.82 246.62L163.38 235.75C159.85 232.39 160 226.53 163.92 223.64C172.1 217.61 181.89 214.06 192 213.32V200C192 195.58 195.58 192 200 192H216C220.42 192 224 195.58 224 200V213.4zM512 288H416V384C416 419.35 387.35 448 352 448H64C28.65 448 0 419.35 0 384V192C0 156.65 28.65 128 64 128H96V76.02C96 68.92 101.83 64 108.05 64C110.46 64 112.92 64.74 115.13 66.37L192 109.88V64C192 28.65 220.65 0 256 0H352L460.87 -61.63C463.08 -63.26 465.55 -64 467.95 -64C474.17 -64 480 -59.08 480 -51.98V0H512C547.35 0 576 28.65 576 64V224C576 259.35 547.35 288 512 288zM128 110.43V160H64C46.36 160 32 174.36 32 192V384C32 401.64 46.36 416 64 416H352C369.64 416 384 401.64 384 384V192C384 174.36 369.64 160 352 160H215.57L128 110.43zM544 64C544 46.36 529.64 32 512 32H448V-17.57L360.43 32H256C238.36 32 224 46.36 224 64V128H352C387.35 128 416 156.65 416 192V256H512C529.64 256 544 241.64 544 224V64z" />
+    <glyph glyph-name="comments-alt"
+      unicode="&#xF4B6;"
+      horiz-adv-x="576" d=" M512 288H416V384C416 419.3 387.3 448 352 448H64C28.7 448 0 419.3 0 384V224C0 188.7 28.7 160 64 160H96V108C96 100.9 101.8 96 108 96C110.4 96 112.9 96.7 115.1 98.4L224 160H352C387.3 160 416 188.7 416 224V256H512C529.6 256 544 241.6 544 224V64C544 46.4 529.6 32 512 32H448V-17.6L367.8 27.8L360.5 31.9999999999999H256C238.4 31.9999999999999 224 46.3999999999999 224 63.9999999999999V160L192 141.8999999999999V64C192 28.7 220.7 0 256 0H352L460.9 -61.6C463.1 -63.2 465.6 -64 468 -64C474.2 -64 480 -59.1 480 -52V0H512C547.3 0 576 28.7 576 64V224C576 259.3 547.3 288 512 288zM384 224C384 206.4 369.6 192 352 192H215.6L208.3 187.8L128 142.4V192H64C46.4 192 32 206.4 32 224V384C32 401.6 46.4 416 64 416H352C369.6 416 384 401.6 384 384V224z" />
+    <glyph glyph-name="comments-dollar"
+      unicode="&#xF653;"
+      horiz-adv-x="576" d=" M532.01 61.83C559.48 88.95 576 122.96 576 160C576 240.02 499.55 306.13 399.82 317.94C399.82 317.93 399.83 317.92 399.83 317.91C368.37 375.53 294.34 416 208 416C93.12 416 0 344.37 0 256C0 218.96 16.52 184.95 43.99 157.83C28.69 127.09 6.65 103.3 6.29 102.94C-0.02 96.25 -1.76 86.41 1.87 77.95A23.085 23.085 0 0 1 23.06 64C76.6 64 119.73 84.24 148.23 102.78C157.31 100.69 166.68 99.1 176.23 97.96C207.74 40.41 281.73 0 368 0C388.79 0 408.83 2.41 427.77 6.78C456.27 -11.76 499.4 -32 552.94 -32C562.1600000000001 -32 570.49 -26.5 574.12 -18.04C577.76 -9.58 576.01 0.26 569.7 6.95C569.35 7.31 547.3100000000001 31.09 532.01 61.83zM155.42 133.96L142.18 137.01L130.79 129.6C110.72 116.54 80.3 101.35 43.11 97.13C51.88 108.43 63.28 124.74 72.65 143.57L82.97 164.32L66.48 180.6C50.75 196.13 32 221.81 32 256C32 326.58 110.95 384 208 384S384 326.58 384 256S305.05 128 208 128C190.27 128 172.58 130.01 155.42 133.96zM445.2200000000001 33.61L433.8300000000001 41.02L420.5900000000001 37.97A234.31800000000004 234.31800000000004 0 0 0 368 32C302.86 32 246 57.94 215.57 96.29C326.9100000000001 99.38 416 169.6 416 256C416 265.45 414.73 274.66 412.68 283.66C488.12 269.2200000000001 544 219.33 544 160C544 125.81 525.25 100.13 509.53 84.61L493.04 68.33L503.36 47.58C512.74 28.72 524.17 12.39 532.89 1.14C495.7 5.3600000000001 465.29 20.5500000000001 445.22 33.61zM233.38 265.0900000000001L191.82 277.56C187.6 278.8300000000001 184.63 283.18 184.63 288.14C184.63 294.17 188.97 299.0800000000001 194.29 299.0800000000001H220.23C224.13 299.0800000000001 227.88 298 231.19 295.98C234.36 294.05 238.5 294.8300000000001 241.19 297.38L252.63 308.25C256.16 311.61 256.01 317.4700000000001 252.09 320.36C243.91 326.3900000000001 234.12 329.9400000000001 224.01 330.6800000000001V344C224.01 348.42 220.43 352 216.01 352H200.01C195.59 352 192.01 348.42 192.01 344V330.6C170.16 329.31 152.63 310.98 152.63 288.14C152.63 269.16 164.97 252.2 182.63 246.91L224.19 234.44C228.41 233.17 231.38 228.82 231.38 223.86C231.38 217.83 227.04 212.92 221.72 212.92H195.78C191.88 212.92 188.13 214 184.82 216.02C181.65 217.96 177.51 217.17 174.82 214.62L163.38 203.75C159.85 200.39 160 194.53 163.92 191.64C172.1 185.61 181.89 182.06 192 181.32V168C192 163.58 195.58 160 200 160H216C220.42 160 224 163.58 224 168V181.4C245.85 182.69 263.38 201.02 263.38 223.86C263.38 242.84 251.03 259.8 233.38 265.09z" />
+    <glyph glyph-name="comments"
+      unicode="&#xF086;"
+      horiz-adv-x="576" d=" M532 61.8C559.5 88.9 576 122.9 576 160C576 240 499.5 306.1 399.8 317.9C368.4 375.5 294.3 416 208 416C93.1 416 0 344.4 0 256C0 219 16.5 185 44 157.8C28.7 127.1 6.7 103.3 6.3 102.9C0 96.2000000000001 -1.8 86.4 1.9 77.9C5.5 69.4 13.9 63.9 23.1 63.9C76.6 63.9 119.8 84.1 148.3 102.7000000000001C157.4 100.6 166.7 99.0000000000001 176.3 97.9C207.8 40.4 281.8 -0.1 368.1 -0.1C388.9000000000001 -0.1 408.9000000000001 2.3 427.9000000000001 6.7C456.4 -11.8 499.5 -32.1 553.1 -32.1C562.3000000000001 -32.1 570.6 -26.6 574.3000000000001 -18.1C577.9000000000001 -9.6 576.2 0.2 569.9000000000001 6.9C569.4000000000001 7.3 547.3000000000001 31.1 532.0000000000001 61.8zM142.2 137L130.8 129.6C110.7 116.5 80.3 101.4 43.1 97.1C51.9 108.4 63.3 124.7000000000001 72.6 143.5L83 164.3L66.5 180.6C50.7 196.1 32 221.8 32 256C32 326.6 111 384 208 384S384 326.6 384 256S305 128 208 128C190.3 128 172.6 130 155.4 134L142.2 137zM445.2 33.6L433.8 41L420.6 37.9C403.4000000000001 33.9 385.7000000000001 31.9 368 31.9C302.9 31.9 246 57.8 215.6 96.2C326.9 99.4 416 169.6 416 256C416 265.5 414.7 274.7 412.7 283.7C488.1 269.2 544 219.3 544 160C544 125.8 525.3 100.1 509.5 84.6L493 68.3L503.3 47.6C512.7 28.7 524.1 12.4 532.8 1.2C495.6999999999999 5.4 465.3 20.6 445.2 33.6zM407.4 301.3C407.5 301.1 407.5 300.9 407.6 300.7000000000001C407.5 300.9 407.5 301.1 407.4 301.3z" />
+    <glyph glyph-name="compact-disc"
+      unicode="&#xF51F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 288C195 288 152 245 152 192S195 96 248 96S344 139 344 192S301 288 248 288zM248 128C212.7 128 184 156.7 184 192S212.7 256 248 256S312 227.3 312 192S283.3 128 248 128zM248 216C234.8 216 224 205.2 224 192S234.8 168 248 168S272 178.8 272 192S261.2 216 248 216zM240 360C151.8 360 80 288.2 80 200H112C112 270.6 169.4 328 240 328V360z" />
+    <glyph glyph-name="compass-slash"
+      unicode="&#xF5E9;"
+      horiz-adv-x="640" d=" M411.12 181.35L449.83 288.7200000000001C455.48 304.39 439.5 322.99 423.43 322.99C421.17 322.99 418.92 322.62 416.7200000000001 321.8300000000001L290.5100000000001 276.3200000000001L320.14 253L415.31 287.31L384.63 202.21L411.12 181.35zM322.01 -26.12C263.96 -26.12 207.37 -2.83 166.76 37.79C126.55 77.9999999999999 104.26 132.39 104 190.9499999999999C103.85 224.1699999999999 111.1 255.98 124.54 284.81L98.74 305.13C51.33 210.8299999999999 67.57 91.7199999999999 144.13 15.1599999999999C192.48 -33.1900000000001 257.25 -58.1200000000001 322.01 -58.1200000000001C379.64 -58.1200000000001 437.11 -38.1300000000001 483.2 2.3799999999999L457.75 22.4199999999999C419.95 -8.9800000000001 372.4700000000001 -26.1200000000001 322.01 -26.1200000000001zM317.28 408C375.45 408 430.47 385.01 472.22 343.26C538.23 277.25 552.63 179.12 515.93 98.82L541.7299999999999 78.5C587.9499999999999 171.85 572.4599999999999 288.27 494.8399999999999 365.89C445.64 415.1 381.37 440 317.28 440C260.47 440 203.92 420.2200000000001 157.99 380.68L183.53 360.56C221.35 391.26 268.05 408 317.28 408zM228.88 202.65L190.17 95.28C184.52 79.61 200.5 61.01 216.57 61.01C218.83 61.01 221.09 61.38 223.28 62.17L349.49 107.68L319.86 131.01L224.69 96.7L255.37 181.8L228.88 202.65zM637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25z" />
+    <glyph glyph-name="compass"
+      unicode="&#xF14E;"
+      horiz-adv-x="496" d=" M264.9700000000001 175.03C274.35 184.4 274.35 199.6 264.9700000000001 208.97C255.6 218.34 240.4000000000001 218.34 231.0300000000001 208.97C221.65 199.6 221.65 184.4 231.0300000000001 175.03C240.4000000000001 165.66 255.6 165.66 264.9700000000001 175.03zM351.44 323C349.18 323 346.93 322.63 344.73 321.8400000000001L189.83 265.99C182.34 263.29 176.73 257.68 174.03 250.19L118.18 95.28C112.53 79.61 128.51 61.01 144.58 61.01C146.84 61.01 149.09 61.38 151.29 62.17L306.1900000000001 118.0200000000001C313.6800000000001 120.72 319.2900000000001 126.3300000000001 321.9900000000001 133.8200000000001L377.8400000000001 288.7200000000001C383.4800000000001 304.3900000000001 367.5100000000001 323.0000000000001 351.4400000000001 323.0000000000001zM292.79 147.21L152.69 96.7000000000001L203.2 236.8100000000001L343.3100000000001 287.3200000000001L292.7900000000001 147.21zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="compress-alt"
+      unicode="&#xF422;"
+      horiz-adv-x="448" d=" M9.171 -28.485L3.515 -22.829C-1.171 -18.143 -1.171 -10.545 3.515 -5.858L169.373 160H108C101.373 160 96 165.373 96 172V180C96 186.627 101.373 192 108 192H208C216.837 192 224 184.837 224 176V76C224 69.373 218.627 64 212 64H204C197.373 64 192 69.373 192 76V137.373L26.142 -28.485C21.455 -33.172 13.857 -33.172 9.171 -28.485zM240 192H340C346.627 192 352 197.373 352 204V212C352 218.627 346.627 224 340 224H278.627L444.485 389.858C449.171 394.544 449.171 402.142 444.485 406.829L438.829 412.485C434.1430000000001 417.171 426.545 417.171 421.858 412.485L256 246.627V308C256 314.627 250.627 320 244 320H236C229.373 320 224 314.627 224 308V208C224 199.163 231.163 192 240 192z" />
+    <glyph glyph-name="compress-arrows-alt"
+      unicode="&#xF78C;"
+      horiz-adv-x="512" d=" M312 224H424C445.4 224 456.1 249.9 441 265L396.3 309.7L509.7 423C512.8 426.1 512.8 431.2 509.7 434.3L498.3 445.7C495.2 448.8 490.1 448.8 487 445.7L373.6 332.3L329 376.9C324.1 381.8 318.1 384 312.2 384C299.9 384 288 374.4 288 359.9V247.9C288 234.7 298.7 224 312 224zM320 340.7L404.7 256H320V340.7zM396.3 74.4L441 119.1C445.9 124 448.1 130 448.1 135.9C448.1 148.2 438.5 160.1 424 160.1H312C298.7 160.1 288 149.4 288 136.1V24.1C288 2.7 313.9 -8.0000000000001 329 7.1L373.7 51.8L487 -61.7C490.1 -64.7999999999999 495.2 -64.7999999999999 498.3 -61.7L509.6 -50.4C512.7 -47.3 512.7 -42.2 509.6 -39.1L396.3 74.4zM320 43.3V128H404.7L320 43.3zM200 160H88C66.6 160 55.9 134.1 71 119L115.7 74.3L2.3 -39C-0.8 -42.1 -0.8 -47.2 2.3 -50.3L13.6 -61.6C16.7 -64.7 21.8 -64.7 24.9 -61.6L138.3 51.8L183 7.1C187.9 2.2 193.9 -1e-13 199.8 -1e-13C212.1 -1e-13 224 9.6 224 24.1V136C224 149.3 213.3 160 200 160zM192 43.3L107.3 128H192V43.3zM183 376.9000000000001L138.3 332.2000000000001L25 445.7C21.9 448.8 16.8 448.8 13.7 445.7L2.3 434.3C-0.8 431.2 -0.8 426.1 2.3 423L115.7 309.6L71.1 265C66.2 260.1 64 254.1 64 248.2C64 235.9 73.6 224 88.1 224H200.1C213.4 224 224.1 234.7 224.1 248V360C224 381.3 198.1 392 183 376.9zM192 256H107.3L192 340.7000000000001V256z" />
+    <glyph glyph-name="compress-wide"
+      unicode="&#xF326;"
+      horiz-adv-x="512" d=" M500 224H376C362.7 224 352 234.7 352 248V372C352 378.6 357.4 384 364 384H372C378.6 384 384 378.6 384 372V256H500C506.6 256 512 250.6 512 244V236C512 229.4 506.6 224 500 224zM160 248V372C160 378.6 154.6 384 148 384H140C133.4 384 128 378.6 128 372V256H12C5.4 256 0 250.6 0 244V236C0 229.4 5.4 224 12 224H136C149.3 224 160 234.7 160 248zM160 12V136C160 149.3 149.3 160 136 160H12C5.4 160 0 154.6 0 148V140C0 133.4 5.4 128 12 128H128V12C128 5.4 133.4 0 140 0H148C154.6 0 160 5.4 160 12zM384 12V128H500C506.6 128 512 133.4 512 140V148C512 154.6 506.6 160 500 160H376C362.7 160 352 149.3 352 136V12C352 5.4 357.4 0 364 0H372C378.6 0 384 5.4 384 12z" />
+    <glyph glyph-name="compress"
+      unicode="&#xF066;"
+      horiz-adv-x="448" d=" M436 256H312C298.7 256 288 266.7 288 280V404C288 410.6 293.4 416 300 416H308C314.6 416 320 410.6 320 404V288H436C442.6 288 448 282.6 448 276V268C448 261.4 442.6 256 436 256zM160 280V404C160 410.6 154.6 416 148 416H140C133.4 416 128 410.6 128 404V288H12C5.4 288 0 282.6 0 276V268C0 261.4 5.4 256 12 256H136C149.3 256 160 266.7 160 280zM160 -20V104C160 117.3 149.3 128 136 128H12C5.4 128 0 122.6 0 116V108C0 101.4 5.4 96 12 96H128V-20C128 -26.6 133.4 -32 140 -32H148C154.6 -32 160 -26.6 160 -20zM320 -20V96H436C442.6 96 448 101.4 448 108V116C448 122.6 442.6 128 436 128H312C298.7 128 288 117.3 288 104V-20C288 -26.6 293.4 -32 300 -32H308C314.6 -32 320 -26.6 320 -20z" />
+    <glyph glyph-name="concierge-bell"
+      unicode="&#xF562;"
+      horiz-adv-x="512" d=" M504 32H480V96C480 214.31 388.21 310.9600000000001 272 319.19V352H312C316.42 352 320 355.58 320 360V376C320 380.42 316.42 384 312 384H200C195.58 384 192 380.42 192 376V360C192 355.58 195.58 352 200 352H240V319.19C123.79 310.9600000000001 32 214.31 32 96V32H8C3.58 32 0 28.42 0 24V8C0 3.58 3.58 0 8 0H504C508.42 0 512 3.58 512 8V24C512 28.42 508.42 32 504 32zM448 32H64V96C64 196.17 142.3 280.19 242.26 287.27C259.13 288.4600000000001 252.59 288.48 269.74 287.27C369.7 280.19 448 196.17 448 96V32z" />
+    <glyph glyph-name="container-storage"
+      unicode="&#xF4B7;"
+      horiz-adv-x="640" d=" M632 384C636.4 384 640 387.6 640 392V408C640 412.4 636.4 416 632 416H8C3.6 416 0 412.4 0 408V392C0 387.6 3.6 384 8 384H16V0H8C3.6 0 0 -3.6 0 -8V-24C0 -28.4 3.6 -32 8 -32H632C636.4 -32 640 -28.4 640 -24V-8C640 -3.6 636.4 0 632 0H624V384H632zM592 0H48V384H592V0zM120 64H136C140.4 64 144 67.6 144 72V312C144 316.4 140.4 320 136 320H120C115.6 320 112 316.4 112 312V72C112 67.6 115.6 64 120 64zM216 64H232C236.4 64 240 67.6 240 72V312C240 316.4 236.4 320 232 320H216C211.6 320 208 316.4 208 312V72C208 67.6 211.6 64 216 64zM312 64H328C332.4 64 336 67.6 336 72V312C336 316.4 332.4 320 328 320H312C307.6 320 304 316.4 304 312V72C304 67.6 307.6 64 312 64zM408 64H424C428.4 64 432 67.6 432 72V312C432 316.4 428.4 320 424 320H408C403.6 320 400 316.4 400 312V72C400 67.6 403.6 64 408 64zM504 64H520C524.4 64 528 67.6 528 72V312C528 316.4 524.4 320 520 320H504C499.6 320 496 316.4 496 312V72C496 67.6 499.6 64 504 64z" />
+    <glyph glyph-name="conveyor-belt-alt"
+      unicode="&#xF46F;"
+      horiz-adv-x="640" d=" M544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM544 -32H96C60.7 -32 32 -3.3 32 32S60.7 96 96 96H544C579.3 96 608 67.3 608 32S579.3 -32 544 -32zM144 80C117.5 80 96 58.5 96 32S117.5 -16 144 -16S192 5.5 192 32S170.5 80 144 80zM144 16C135.2 16 128 23.2 128 32S135.2 48 144 48S160 40.8 160 32S152.8 16 144 16zM496 80C469.5 80 448 58.5 448 32S469.5 -16 496 -16S544 5.5 544 32S522.5 80 496 80zM496 16C487.2 16 480 23.2 480 32S487.2 48 496 48S512 40.8 512 32S504.8 16 496 16zM320 80C293.5 80 272 58.5 272 32S293.5 -16 320 -16S368 5.5 368 32S346.5 80 320 80zM320 16C311.2 16 304 23.2 304 32S311.2 48 320 48S336 40.8 336 32S328.8 16 320 16zM112 160H528C536.8 160 544 167.2 544 176V368C544 376.8 536.8 384 528 384H384V432C384 440.8 376.8 448 368 448H112C103.2 448 96 440.8 96 432V176C96 167.2 103.2 160 112 160zM384 352H512V192H384V352zM128 416H352V192H128V416z" />
+    <glyph glyph-name="conveyor-belt"
+      unicode="&#xF46E;"
+      horiz-adv-x="640" d=" M544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM544 -32H96C60.7 -32 32 -3.3 32 32S60.7 96 96 96H544C579.3 96 608 67.3 608 32S579.3 -32 544 -32zM144 80C117.5 80 96 58.5 96 32S117.5 -16 144 -16S192 5.5 192 32S170.5 80 144 80zM144 16C135.2 16 128 23.2 128 32S135.2 48 144 48S160 40.8 160 32S152.8 16 144 16zM496 80C469.5 80 448 58.5 448 32S469.5 -16 496 -16S544 5.5 544 32S522.5 80 496 80zM496 16C487.2 16 480 23.2 480 32S487.2 48 496 48S512 40.8 512 32S504.8 16 496 16zM320 80C293.5 80 272 58.5 272 32S293.5 -16 320 -16S368 5.5 368 32S346.5 80 320 80zM320 16C311.2 16 304 23.2 304 32S311.2 48 320 48S336 40.8 336 32S328.8 16 320 16zM144 160H496C504.8 160 512 167.2 512 176V432C512 440.8 504.8 448 496 448H144C135.2 448 128 440.8 128 432V176C128 167.2 135.2 160 144 160zM288 416H352V339.8L320 355.8L288 339.8V416zM160 416H256V288L320 320L384 288V416H480V192H160V416z" />
+    <glyph glyph-name="cookie-bite"
+      unicode="&#xF564;"
+      horiz-adv-x="512" d=" M352 120C338.75 120 328 109.26 328 96C328 82.75 338.75 72 352 72S376 82.75 376 96C376 109.26 365.25 120 352 120zM184 256C184 269.26 173.25 280 160 280S136 269.26 136 256C136 242.75 146.75 232 160 232S184 242.75 184 256zM192 120C178.75 120 168 109.26 168 96C168 82.75 178.75 72 192 72S216 82.75 216 96C216 109.26 205.25 120 192 120zM288 216C274.75 216 264 205.26 264 192C264 178.75 274.75 168 288 168S312 178.75 312 192C312 205.26 301.25 216 288 216zM510.52 192.18C440.55 193.03 384.05 249.87 384.05 320.04C313.88 320.04 257.05 376.53 256.19 446.49C249.57 447.5 242.9 448 236.26 448C215.58 448 195.08 443.15 176.47 433.67L107.34 398.45A132.221 132.221 0 0 1 49.55 340.64L14.45 271.76A132.645 132.645 0 0 1 1.63 190.81L13.71 114.53A132.555 132.555 0 0 1 50.87 41.57L105.64 -13.19A132.036 132.036 0 0 1 178.35 -50.25L255.06 -62.39C261.92 -63.48 268.82 -64.01 275.7 -64.01C296.42 -64.01 316.95 -59.13 335.59 -49.63L404.72 -14.41A132.221 132.221 0 0 1 462.51 43.4L497.61 112.28C510.17 136.91 514.62 164.85 510.52 192.18zM469.1 126.82L434 57.93C424.32 38.93 409.17 23.78 390.19 14.11L321.06 -21.11C307.08 -28.23 291.39 -32 275.7 -32C270.49 -32 265.23 -31.59 260.07 -30.77L183.37 -18.63C162.37 -15.3 143.32 -5.59 128.28 9.45L73.51 64.21C58.41 79.3 48.67 98.44 45.33 119.54L33.25 195.81C29.9 216.93 33.27 238.17 42.97 257.2199999999999L78.07 326.0999999999999C87.75 345.0999999999999 102.9 360.25 121.88 369.92L191 405.15C202.33 410.92 214.8 414.48 227.51 415.61C240.66 352.4600000000001 291.35 302.66 354.76 290.75C366.67 227.33 416.47 176.64 479.63 163.5C478.53 150.77 474.99 138.36 469.1 126.82z" />
+    <glyph glyph-name="cookie"
+      unicode="&#xF563;"
+      horiz-adv-x="512" d=" M352 120C338.75 120 328 109.26 328 96C328 82.75 338.75 72 352 72S376 82.75 376 96C376 109.26 365.25 120 352 120zM344 320C344 333.26 333.25 344 320 344S296 333.26 296 320C296 306.75 306.75 296 320 296S344 306.75 344 320zM184 256C184 269.26 173.25 280 160 280S136 269.26 136 256C136 242.75 146.75 232 160 232S184 242.75 184 256zM192 120C178.75 120 168 109.26 168 96C168 82.75 178.75 72 192 72S216 82.75 216 96C216 109.26 205.25 120 192 120zM288 216C274.75 216 264 205.26 264 192C264 178.75 274.75 168 288 168S312 178.75 312 192C312 205.26 301.25 216 288 216zM510.37 193.21L498.29 269.4700000000001A132.493 132.493 0 0 1 461.13 342.42L406.37 397.17C386.64 416.8900000000001 361.19 429.87 333.6600000000001 434.2200000000001L256.9600000000001 446.37C250.11 447.46 243.22 448 236.34 448C215.62 448 195.09 443.12 176.45 433.62L107.33 398.41A132.25 132.25 0 0 1 49.54 340.61L14.44 271.74A132.602 132.602 0 0 1 1.62 190.8L13.7 114.53A132.493 132.493 0 0 1 50.86 41.58L105.62 -13.17A132.087 132.087 0 0 1 178.33 -50.22L255.03 -62.36C261.89 -63.4499999999999 268.78 -63.98 275.66 -63.98C296.38 -63.98 316.91 -59.1 335.54 -49.6L404.66 -14.39A132.302 132.302 0 0 1 462.45 43.41L497.55 112.28A132.56 132.56 0 0 1 510.37 193.21zM469.04 126.8L433.94 57.92C424.26 38.92 409.11 23.77 390.14 14.1L321.02 -21.11C307.04 -28.2399999999999 291.35 -31.9999999999999 275.66 -31.9999999999999C270.45 -31.9999999999999 265.19 -31.5899999999999 260.03 -30.7699999999999L183.34 -18.6299999999999C162.35 -15.3 143.3 -5.5899999999999 128.25 9.45L73.5 64.21C58.41 79.3 48.66 98.43 45.32 119.54L33.24 195.8C29.89 216.92 33.26 238.1600000000001 42.96 257.2000000000001L78.06 326.0800000000001C87.74 345.0800000000001 102.89 360.23 121.86 369.9L190.98 405.11C204.97 412.23 220.65 416 236.34 416C241.55 416 246.81 415.5900000000001 251.96 414.77L328.6600000000001 402.62C349.6500000000001 399.3 368.7000000000001 389.5900000000001 383.74 374.54L438.5 319.79C453.59 304.7000000000001 463.34 285.5700000000001 466.68 264.4600000000001L478.76 188.2000000000001C482.11 167.0800000000001 478.74 145.84 469.04 126.8000000000001z" />
+    <glyph glyph-name="copy"
+      unicode="&#xF0C5;"
+      horiz-adv-x="448" d=" M433.941 382.059L382.059 433.941A48 48 0 0 1 348.118 448H176C149.49 448 128 426.51 128 400V352H48C21.49 352 0 330.51 0 304V-16C0 -42.51 21.49 -64 48 -64H272C298.51 -64 320 -42.51 320 -16V32H400C426.51 32 448 53.49 448 80V348.118A48 48 0 0 1 433.941 382.059zM352 415.509A15.879999999999999 15.879999999999999 0 0 0 359.431 411.314L411.313 359.431A15.885 15.885 0 0 0 415.508 352H352V415.509zM288 -16C288 -24.822 280.822 -32 272 -32H48C39.178 -32 32 -24.822 32 -16V304C32 312.822 39.178 320 48 320H128V80C128 53.49 149.49 32 176 32H288V-16zM416 80C416 71.178 408.822 64 400 64H176C167.178 64 160 71.178 160 80V400C160 408.822 167.178 416 176 416H320V344C320 330.8 330.8 320 344 320H416V80z" />
+    <glyph glyph-name="copyright"
+      unicode="&#xF1F9;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM472 192C472 73.337 375.945 -24 256 -24C137.337 -24 40 72.055 40 192C40 310.663 136.055 408 256 408C374.663 408 472 311.945 472 192zM360.474 90.634C351.06 81.492 316.019 51.668 260.368 51.668C182.543 51.668 123.855 112.219 123.855 192.514C123.855 270.4650000000001 182.2 330.11 259.286 330.11C312.833 330.11 344.794 305.3250000000001 353.314 297.7290000000001A11.96 11.96 0 0 0 355.0350000000001 281.728L346.2720000000001 269.648C342.2380000000001 264.087 334.3950000000001 263.069 329.0690000000001 267.319C320.1480000000001 274.441 295.5600000000001 291.007 260.0070000000001 291.007C205.6870000000001 291.007 165.8460000000001 249.216 165.8460000000001 192.876C165.8460000000001 134.667 206.6370000000001 90.772 260.7280000000001 90.772C300.2660000000001 90.772 327.2500000000001 112.846 334.5790000000001 119.612C339.6470000000001 124.293 347.6330000000001 123.72 352.0020000000001 118.373L361.4160000000001 106.839C365.3850000000001 101.978 364.9800000000001 95.011 360.4740000000001 90.634z" />
+    <glyph glyph-name="corn"
+      unicode="&#xF6C7;"
+      horiz-adv-x="512" d=" M446.02 448C433.07 448 420.75 444.2 410.35 437.38C395 441.46 382.2 438.88 375.46 436.89A65.477 65.477 0 0 1 347.85 420.94C341.61 421.38 330.3 421.33 317.38 415.8400000000001C307.36 411.33 298.86 404.71 292.34 396.64A64.994 64.994 0 0 1 262.66 387.65C253.91 382.69 246.54 375.67 241.05 367.33C230.87 365.8400000000001 221.22 361.96 212.73 355.9C212.64 355.8400000000001 212.58 355.74 212.49 355.67C205.53 365.2100000000001 198.01 374.41 189.5 382.91L168.37 404.05C159.33 413.09 143.87 408.41 141.37 395.88L117.61 277.07L37.0599999999999 196.51C16.98 176.42 2.98 150.35 0.47 122.06C-2.63 87.15 9.56 53.78 33.97 29.37L96.18 -32.86L96.46 -32.58C123.84 -58.15 161.23 -69.48 199.77 -61.46C222.63 -56.71 243.19 -44.21 259.7 -27.7L341.02 53.64L459.82 77.4C472.35 79.91 477.03 95.37 468 104.4L446.86 125.54C438.2 134.2 428.8400000000001 141.85 419.12 148.9C424.08 156.65 427.55 165.11 428.9100000000001 173.96A64.739 64.739 0 0 1 449.85 196.2C455.14 205.1 458.11 215.04 458.69 225.14C466.8 231.55 473.37 239.84 477.71 249.49C482.18 259.42 484.04 270.07 483.34 280.54A66.545 66.545 0 0 1 499.46 307.51A66.217 66.217 0 0 1 500.25 342.02C528.26 382.8 504.65 448 446.02 448zM56.6 170.79L147.09 261.3L166.88 360.29C215.21 311.9600000000001 232.23 244.84 219.39 182.57C183.92 171.85 151.41 152.48 124.47 125.53L54.06 55.1C24.1 88.08 24.76 138.96 56.6 170.79zM424.23 102.91L325.25 83.11L234.75 -7.4C218.35 -23.8 196.86 -32 175.36 -32C153.87 -32 132.37 -23.8 115.97 -7.4L76.38 32.2L147.08 102.91C185.35 141.18 235.5 160.3200000000001 285.65 160.3200000000001C335.81 160.3200000000001 385.96 141.1800000000001 424.23 102.9100000000001zM461.39 349.1600000000001C468.89 340.85 472.37 328.8 468.89 317.01C465.4 305.76 456.56 297.4600000000001 446.12 294.25C452 285.1400000000001 453.35 273.35 448.5300000000001 262.6400000000001C443.7000000000001 251.9300000000001 434.0700000000001 245.2300000000001 423.36 243.3500000000001C428.19 233.7100000000001 427.9100000000001 221.9300000000001 422.0300000000001 212.0200000000001C416.4000000000001 202.1100000000001 406.2200000000001 196.22 395.5100000000001 195.41C399.0900000000001 185.96 398.1200000000001 175.09 392.2200000000001 165.96C359.7800000000001 183.16 323.43 192.3200000000001 285.67 192.3200000000001C274.85 192.3200000000001 264.2100000000001 191.3100000000001 253.6900000000001 189.84C255.2200000000001 200.32 256.29 210.92 256.29 221.71C256.29 259.5 247.13 295.87 229.9100000000001 328.3400000000001C243.39 339.5600000000001 257.49 335.75 262.4000000000001 333.9000000000001C263.2100000000001 344.3400000000001 269.1 354.5300000000001 279.0100000000001 360.1500000000001C294.8300000000001 369.54 309.9300000000001 361.6800000000001 310.3400000000001 361.48C312.2200000000001 371.9300000000001 319.18 381.5700000000001 329.8900000000001 386.3900000000001C343.35 392.1 355.3200000000001 387.7100000000001 361.5000000000001 383.7100000000001C364.7200000000001 394.42 373.2800000000001 402.99 384.5300000000001 406.2100000000001C387.5300000000001 407.1 403.1700000000001 411.24 416.6700000000001 398.18C422.33 409.01 433.44 416 446.02 416C446.54 416 479.87 416.95 479.87 378.08C479.33 365.23 471.84 354.52 461.39 349.16z" />
+    <glyph glyph-name="couch"
+      unicode="&#xF4B8;"
+      horiz-adv-x="640" d=" M576 254.1V287.8C576 340.9 533 384 480 384H160C107 384 64 340.9 64 287.8V254.1C27.5 246.6 0 214.3 0 175.5C0 150.4 12.1 126.7 32 111.7V32.1C32 14.4 46.3 0 64 0H128C145.3 0 159.3 14.7 159.8 32H480.2C480.7 14.7 494.7 0 512 0H576C593.7 0 608 14.4 608 32.1V111.7000000000001C627.9 126.8000000000001 640 150.4 640 175.5000000000001C640 214.2000000000001 612.5 246.6000000000001 576 254.1000000000001zM128 32.1H64V129.5C46.9 139.5 32 150.6 32 175.5C32 202 53.5 223.6 80 223.6H112C120.8 223.6 128 216.4 128 207.6V32.1zM480 64H160V159.5H480V64zM480 207.6V192H160V207.6C160 234.1 138.5 255.7 112 255.7H96V287.8C96 323.2 124.7 351.9 160 351.9H480C515.3 351.9 544 323.1 544 287.8V255.7H528C501.5 255.7 480 234.1 480 207.6zM576 129.5V32.1H512V207.6C512 216.4 519.2 223.6 528 223.6H560C586.5 223.6 608 202 608 175.5C608 151.6 594.1 140.1 576 129.5z" />
+    <glyph glyph-name="cow"
+      unicode="&#xF6C8;"
+      horiz-adv-x="640" d=" M634.06 168.33L624 182.46V237.42C624 256.77 608.26 272.51 588.92 272.51C579.8399999999999 272.51 574.67 269.57 565.31 264.86L508.7099999999999 344.32A96.029 96.029 0 0 1 430.95 384H112C67.88 384 32 348.11 32 304V215.12C12.95 204.04 0 183.63 0 160V128C35.35 128 64 156.65 64 192V304C64 327.89 81.59 347.5900000000001 104.46 351.24C99.23 341.96 96 331.41 96 320V32C96 14.33 110.33 0 128 0H176C193.67 0 208 14.33 208 32V83.58C215.31 80.66 223.62 78.61 232.04 76.73V56C232.04 47.16 239.2 40 248.04 40S264.04 47.16 264.04 56V72.71C266.77 72.59 269.22 72 272 72C274.81 72 277.29 72.61 280.04 72.72V56C280.04 47.16 287.2 40 296.04 40S312.04 47.16 312.04 56V76.75C320.43 78.63 328.72 80.67 336 83.58V32C336 14.33 350.33 0 368 0H415.9599999999999C433.63 0 447.9599999999999 14.32 447.9599999999999 31.99L448 175.96L479.96 160V118.02C479.96 105.7 483.51 93.64 490.2 83.3L525.66 28.4A62.073 62.073 0 0 1 577.81 0H577.92C612.2099999999999 0 640 27.79 640 62.08V149.77C640 156.42 637.92 162.91 634.06 168.33zM212.73 352H331.27C348.81 352 358.39 332.2200000000001 347.16 319.2C307.06 272.69 289.2 272 272.05 272H270.96C253.76 272 237.14 272.43 196.83 319.2C185.61 332.22 195.19 352 212.73 352zM208.59 117.81C211.57 150.35 238.71 176 272 176S332.43 150.35 335.41 117.81C321.21 112.13 277.96 90.08 208.59 117.81zM608 62.08C608 45.49 594.51 32 577.81 32C567.55 32 558.1099999999999 37.14 552.54 45.76L517.0799999999999 100.66A31.939 31.939 0 0 0 511.9599999999999 118.02V179.79L416.01 227.71L416 175.97L415.9599999999999 32H368V112C368 142.87 342.55 208 272 208C201.14 208 176 143.45 176 112V32H128V320C128 337.64 142.36 352 160 352H164.29C156.58 333.82 159.58 313.4 172.59 298.3C214.84 249.29 239.76 240 270.9600000000001 240C303.8900000000001 240 329.1500000000001 249.29 371.4000000000001 298.3C384.4100000000001 313.4 387.42 333.8200000000001 379.7000000000001 352H430.9500000000001C451.41 352 470.78 342.11 482.64 325.74L561.3000000000001 215.32C565.7900000000001 232.55 580.22 239.94 583.9900000000001 239.94C588.1900000000002 239.94 591.9900000000001 236.57 591.9900000000001 231.93V172.23L607.9900000000001 149.7700000000001V62.08zM568 144C559.16 144 552 136.84 552 128S559.16 112 568 112S584 119.16 584 128S576.84 144 568 144z" />
+    <glyph glyph-name="credit-card-blank"
+      unicode="&#xF389;"
+      horiz-adv-x="576" d=" M528 417H48C21.5 417 0 395.5 0 369V17C0 -9.5 21.5 -31 48 -31H528C554.5 -31 576 -9.5 576 17V369C576 395.5 554.5 417 528 417zM544 17C544 8.2 536.8 1 528 1H48C39.2 1 32 8.2 32 17V369C32 377.8 39.2 385 48 385H528C536.8 385 544 377.8 544 369V17zM192 85V77C192 70.4 186.6 65 180 65H108C101.4 65 96 70.4 96 77V85C96 91.6 101.4 97 108 97H180C186.6 97 192 91.6 192 85zM384 85V77C384 70.4 378.6 65 372 65H236C229.4 65 224 70.4 224 77V85C224 91.6 229.4 97 236 97H372C378.6 97 384 91.6 384 85z" />
+    <glyph glyph-name="credit-card-front"
+      unicode="&#xF38A;"
+      horiz-adv-x="576" d=" M528 417H48C21.5 417 0 395.5 0 369V17C0 -9.5 21.5 -31 48 -31H528C554.5 -31 576 -9.5 576 17V369C576 395.5 554.5 417 528 417zM544 17C544 8.2 536.8 1 528 1H48C39.2 1 32 8.2 32 17V369C32 377.8 39.2 385 48 385H528C536.8 385 544 377.8 544 369V17zM192 85V77C192 70.4 186.6 65 180 65H108C101.4 65 96 70.4 96 77V85C96 91.6 101.4 97 108 97H180C186.6 97 192 91.6 192 85zM384 85V77C384 70.4 378.6 65 372 65H236C229.4 65 224 70.4 224 77V85C224 91.6 229.4 97 236 97H372C378.6 97 384 91.6 384 85zM488 353H408C394.7 353 384 342.3 384 329V281C384 267.7 394.7 257 408 257H488C501.3 257 512 267.7 512 281V329C512 342.3 501.3 353 488 353zM480 289H416V321H480V289zM260 129H204C197.4 129 192 134.4 192 141V181C192 187.6 197.4 193 204 193H260C266.6 193 272 187.6 272 181V141C272 134.4 266.6 129 260 129zM288 141V181C288 187.6 293.4 193 300 193H356C362.6 193 368 187.6 368 181V141C368 134.4 362.6 129 356 129H300C293.4 129 288 134.4 288 141zM96 141V181C96 187.6 101.4 193 108 193H164C170.6 193 176 187.6 176 181V141C176 134.4 170.6 129 164 129H108C101.4 129 96 134.4 96 141zM480 181V141C480 134.4 474.6 129 468 129H396C389.4 129 384 134.4 384 141V181C384 187.6 389.4 193 396 193H468C474.6 193 480 187.6 480 181z" />
+    <glyph glyph-name="credit-card"
+      unicode="&#xF09D;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM48 384H528C536.8 384 544 376.8 544 368V320H32V368C32 376.8 39.2 384 48 384zM528 0H48C39.2 0 32 7.2 32 16V224H544V16C544 7.2 536.8 0 528 0zM192 84V76C192 69.4 186.6 64 180 64H108C101.4 64 96 69.4 96 76V84C96 90.6 101.4 96 108 96H180C186.6 96 192 90.6 192 84zM384 84V76C384 69.4 378.6 64 372 64H236C229.4 64 224 69.4 224 76V84C224 90.6 229.4 96 236 96H372C378.6 96 384 90.6 384 84z" />
+    <glyph glyph-name="cricket"
+      unicode="&#xF449;"
+      horiz-adv-x="640" d=" M632.8 417.8L623.5999999999999 430.9C617.5 439.7 608.3 445.5 597.8 447.4C587.3 449.4 576.6999999999999 446.9 567.9 440.8L419.1 336C404.6 325.9 384.7000000000001 329.4 374.5 343.9L365.3 357C355.2 371.5 335.3 375 320.8 364.9L20.6 154.6C6.6 144.8 -1.2 128.7000000000001 0.1 112.6C6.2 37.6 52.5 -28.6 121 -60C141.8 -69.5 160.4 -60.1 167.5 -55.1L467.6 155.1C482 165.2 485.8 185 475.5 199.7L466.3 212.8C456.2 227.3 459.7 247.2 474.2 257.4L622.9 362.1C641 374.8 645.4 399.7 632.8 417.8zM149.1 -28.9C144.5 -32.2 138.7 -32.9 134.3 -30.9C53.2 6.4 32.9 85.6 32 115.3C31.6 120.1 34.3 125.2 38.9 128.5L264.2 286.2L240.6 152.5L374.3 128.9L149.1 -28.9zM442.7000000000001 176.7000000000001L411.4000000000001 154.8000000000001L277.7000000000001 178.4000000000001L301.3000000000001 312.1000000000001L332.6000000000001 334.0000000000001C336.2000000000001 336.5000000000001 341.2000000000001 335.7000000000001 343.7000000000001 332.0000000000001L444.6000000000002 187.8000000000001C447.2000000000002 184.2000000000001 446.3000000000002 179.3000000000001 442.7000000000002 176.7000000000001zM604.6 388.3L429.6 265.2L411.2000000000001 291.4L586.2 414.5C589.5 416.8 594.6 416.5 597.3000000000001 412.5L606.5000000000001 399.4C609.1000000000001 395.8 608.2000000000002 390.8 604.6000000000001 388.3zM496 96C451.9 96 416 60.1 416 16S451.9 -64 496 -64S576 -28.1 576 16S540.1 96 496 96zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32z" />
+    <glyph glyph-name="crop-alt"
+      unicode="&#xF565;"
+      horiz-adv-x="512" d=" M488 128H416V320C416 337.67 401.67 352 384 352H192V424C192 437.26 181.25 448 168 448H120C106.75 448 96 437.26 96 424V352H24C10.75 352 0 341.26 0 328V280C0 266.75 10.75 256 24 256H96V64C96 46.33 110.33 32 128 32H320V-40C320 -53.25 330.75 -64 344 -64H392C405.25 -64 416 -53.25 416 -40V32H488C501.25 32 512 42.75 512 56V104C512 117.26 501.25 128 488 128zM96 288H32V320H96V288zM320 64H128V416H160V96H320V64zM320 128H192V256H320V128zM384 -32H352V288H192V320H384V-32zM480 64H416V96H480V64z" />
+    <glyph glyph-name="crop"
+      unicode="&#xF125;"
+      horiz-adv-x="512" d=" M488 128H416V329.38L509.66 423.04C512.78 426.16 512.78 431.23 509.66 434.35L498.35 445.6600000000001C495.23 448.78 490.16 448.78 487.04 445.6600000000001L393.37 352H192V424C192 437.26 181.25 448 168 448H120C106.75 448 96 437.26 96 424V352H24C10.75 352 0 341.26 0 328V280C0 266.75 10.75 256 24 256H96V64C96 46.33 110.33 32 128 32H320V-40C320 -53.25 330.75 -64 344 -64H392C405.25 -64 416 -53.25 416 -40V32H488C501.25 32 512 42.75 512 56V104C512 117.25 501.25 128 488 128zM96 288H32V320H96V288zM192 320H361.37L329.37 288H192V320zM297.38 256L192 150.62V256H297.38zM320 64H128V416H160V96H320V64zM214.62 128L320 233.37V128H214.62zM352 -32V265.37L384 297.37V-32H352zM480 64H416V96H480V64z" />
+    <glyph glyph-name="cross"
+      unicode="&#xF654;"
+      horiz-adv-x="384" d=" M352 320H256V416C256 433.67 241.67 448 224 448H160C142.33 448 128 433.67 128 416V320H32C14.33 320 0 305.67 0 288V224C0 206.33 14.33 192 32 192H128V-32C128 -49.67 142.33 -64 160 -64H224C241.67 -64 256 -49.67 256 -32V192H352C369.67 192 384 206.33 384 224V288C384 305.67 369.67 320 352 320zM352 224H224V-32H160V224H32V288H160V416H224V288H352V224z" />
+    <glyph glyph-name="crosshairs"
+      unicode="&#xF05B;"
+      horiz-adv-x="512" d=" M506 208H471.409C463.608 314.538 378.538 399.608 272 407.409V442A6 6 0 0 1 266 448H246A6 6 0 0 1 240 442V407.409C133.462 399.608 48.392 314.538 40.591 208H6A6 6 0 0 1 0 202V182A6 6 0 0 1 6 176H40.591C48.392 69.462 133.462 -15.608 240 -23.409V-58A6 6 0 0 1 246 -64H266A6 6 0 0 1 272 -58V-23.409C378.538 -15.608 463.608 69.462 471.409 176H506A6 6 0 0 1 512 182V202A6 6 0 0 1 506 208zM272 8.695V74A6 6 0 0 1 266 80H246A6 6 0 0 1 240 74V8.695C151.282 16.289 80.315 86.969 72.695 176H138A6 6 0 0 1 144 182V202A6 6 0 0 1 138 208H72.695C80.289 296.718 150.969 367.684 240 375.305V310A6 6 0 0 1 246 304H266A6 6 0 0 1 272 310V375.305C360.718 367.711 431.685 297.031 439.305 208H374A6 6 0 0 1 368 202V182A6 6 0 0 1 374 176H439.305C431.711 87.282 361.031 16.316 272 8.695zM280 192C280 178.745 269.255 168 256 168S232 178.745 232 192S242.745 216 256 216S280 205.255 280 192z" />
+    <glyph glyph-name="crow"
+      unicode="&#xF520;"
+      horiz-adv-x="640" d=" M416 376C402.75 376 392 365.26 392 352C392 338.75 402.75 328 416 328S440 338.75 440 352C440 365.26 429.25 376 416 376zM520 384H506.12C492.9 421.2 457.74 448 416 448C362.98 448 320 405.02 320 352V312.4L11.38 54.43C4.21 48.72 0 39.77 0 30.26C0 12.74 13.53 0 28.45 0C32.67 0 36.99 1.02 41.16 3.23L168 64H277.49L321.9 -56.1C324.17 -62.33 331.05 -65.5400000000001 337.28 -63.27L344.11 -60.78C350.34 -58.51 353.55 -51.63 351.28 -45.4L310.82 64H331.29C345.18 64 358.65 65.82 371.64 68.98L417.89 -56.1C420.16 -62.33 427.04 -65.54 433.27 -63.27L440.1 -60.78C446.33 -58.51 449.54 -51.63 447.27 -45.4L401.29 78.96C466.33 108.02 512 176.33 512 256V286.93L640 304C640 348.18 586.27 384 520 384zM480 256C480 167.78 413.29 96 331.29 96H274.26L319.59 108.95C367.62 122.68 408 156.18 430.31 200.84C434.25 208.75 431.06 218.36 423.1499999999999 222.31C415.2399999999999 226.2 405.68 223.08 401.68 215.15C383.37 178.49 350.24 150.99 310.77 139.73C118.59 84.8199999999999 195.05 112.46 44.15 40.12L352 297.44V352C352 387.29 380.71 416 416 416S480 387.29 480 352V256zM512 319.2200000000001V352H520C550.83 352 576.88 342.51 592.46 329.95L512 319.2200000000001z" />
+    <glyph glyph-name="crown"
+      unicode="&#xF521;"
+      horiz-adv-x="640" d=" M536 -32H104C99.6 -32 96 -35.6 96 -40V-56C96 -60.4 99.6 -64 104 -64H536C540.4 -64 544 -60.4 544 -56V-40C544 -35.6 540.4 -32 536 -32zM584 288C553.1 288 528 262.9 528 232C528 224.4 529.5 217.2 532.3 210.6L476 176.8C470.8 173.7 465.2 172.2 459.6 172.2C448.5 172.2 437.7000000000001 178 431.8 188.3L357.4 318.5C368.7 328.8 376 343.5 376 360C376 390.9 350.9 416 320 416S264 390.9 264 360C264 343.5 271.3 328.8 282.6 318.6L208.2 188.4C202.3 178 191.5 172.3 180.4 172.3C174.8 172.3 169.1 173.8 164 176.9L107.7 210.7C110.4 217.3 112 224.5 112 232.1C112 263 86.9 288.1 56 288.1S0 262.9 0 232S25.1 176 56 176C58 176 59.9 176.4 61.8 176.6L128 0H512L578.2 176.6C580.1 176.4 582 176 584 176C614.9 176 640 201.1 640 232S614.9 288 584 288zM320 384C333.2 384 344 373.2 344 360S333.2 336 320 336S296 346.8 296 360S306.8 384 320 384zM56 208C42.8 208 32 218.8 32 232S42.8 256 56 256S80 245.2 80 232S69.2 208 56 208zM489.8 32H150.2L94.2 181.4L147.6 149.4C157.6 143.4 168.9 140.3 180.5 140.3C203.4 140.3 224.7 152.6999999999999 236.1 172.6L311.7 304.9C314.5 304.5 317.2 304.1 320.1 304.1S325.7 304.5 328.5 304.9L404 172.5C415.4 152.6 436.7 140.3 459.6 140.3C471.2 140.3 482.5 143.5 492.5 149.4L545.9 181.4L489.8 32zM584 208C570.8 208 560 218.8 560 232S570.8 256 584 256S608 245.2 608 232S597.2 208 584 208z" />
+    <glyph glyph-name="cube"
+      unicode="&#xF1B2;"
+      horiz-adv-x="512" d=" M239.1 441.7L31.1 363.7C12.4 356.7 0 338.7 0 318.7V93.6C0 75.4 10.3 58.8 26.5 50.7L234.5 -53.3C248 -60.1 263.9 -60.1 277.4 -53.3L485.4 50.7C501.7 58.8000000000001 511.9 75.5000000000001 511.9 93.6V318.7C511.9 338.7 499.5 356.6 480.8 363.6L272.8 441.6C262 445.8 250 445.8 239.1 441.7zM256 413.8L480 329.8V329.5L256 232.4L32 329.5V329.8L256 413.8zM32 294.6L240 204.5V-20.2L32 83.8V294.6zM272 -20.2V204.5L480 294.6V83.7L272 -20.2z" />
+    <glyph glyph-name="cubes"
+      unicode="&#xF1B3;"
+      horiz-adv-x="512" d=" M388 229V340.1C388 355.1 378.7 368.5 364.6 373.8L268.6 409.8C260.5 412.9 251.5000000000001 412.9 243.3 409.8L147.3 373.8C133.2 368.5 123.9 355.1 123.9 340.1V229L23.4 191.3C9.3 186 0 172.6 0 157.6V56.3C0 42.7 7.7 30.2 19.9 24.1L115.9 -23.9C126 -29 138 -29 148.1 -23.9L256 30L363.9 -24C374 -29.1 386 -29.1 396.1 -24L492.1 24C504.3 30.1 511.9999999999999 42.6 511.9999999999999 56.2V157.6C511.9999999999999 172.6 502.6999999999999 186 488.6 191.3L388 229zM264.2 190.6V289L371.4 335.5V228.8L317 208.4L264.2 190.6zM140.5 353.6L256 397L371.5 353.7V353.5L256 303.5L140.5 353.5V353.6zM247.8 289V190.6L195 208.4L140.5 228.8V335.5L247.8 289zM123.8 -9.4L16.5 44.2V152.9L123.7 106.4V-9.4zM247.5 44.2L140.3 -9.4V106.4L247.5 152.9V44.2zM247.5 170.9L132 120.9L16.5 170.9V171.1L131 214L238.6 174.4L247.5 171.1V170.9zM371.8 -9.4L264.6 44.2V152.9L371.8 106.4V-9.4zM495.5 44.2L388.3 -9.4V106.4L495.5 152.9V44.2zM495.5 170.9L380 120.9L264.5 171V171.2L273.4 174.5L381 214L495.5 171.1V170.9z" />
+    <glyph glyph-name="curling"
+      unicode="&#xF44A;"
+      horiz-adv-x="640" d=" M517.9 253.8C499.9 293.7000000000001 460.3 320 416 320H304C304 337.7000000000001 318.3 352 336 352H464C481.7 352 496 366.3 496 384V416C496 433.7 481.7 448 464 448H336C265.4 448 208 390.6 208 320V318.8C170.3 313.4 137.8 288.7000000000001 122 253.7C53 243.1 0 184 0 112V80C0 0.5 64.5 -64 144 -64H496C575.5 -64 640 0.5 640 80V112C640 184 586.9 243.2 517.9 253.8zM240 288V320C240 372.9 283.1 416 336 416H464V384H336C300.7 384 272 355.3 272 320V288H416C441.6 288 465.1 275.7 480 256H160C186.8 291.6 224.3 288 240 288zM496 -32H144C82.2 -32 32 18.2 32 80H608C608 18.2 557.8 -32 496 -32zM32 112C32 173.8 82.2 224 144 224H496C557.8 224 608 173.8 608 112H32z" />
+    <glyph glyph-name="cut"
+      unicode="&#xF0C4;"
+      horiz-adv-x="448" d=" M249.52 192L446.83 389.17A3.9959999999999996 3.9959999999999996 0 0 1 446.83 394.82C434.33 407.32 414.07 407.32 401.58 394.82L224.06 217.44L175.42 266.05C185.88 281.43 192 300 192 320C192 373.02 149.02 416 96 416S0 373.02 0 320S42.98 224 96 224C116.01 224 134.58 230.12 149.96 240.6L198.59 192L149.96 143.4C134.58 153.88 116.01 160 96 160C42.98 160 0 117.02 0 64S42.98 -32 96 -32S192 10.98 192 64C192 84 185.88 102.57 175.42 117.95L224.06 166.56L401.5800000000001 -10.82C414.0800000000001 -23.32 434.3400000000001 -23.32 446.8300000000001 -10.82A3.9959999999999996 3.9959999999999996 0 0 1 446.8300000000001 -5.17L249.52 192zM96 256C60.71 256 32 284.7100000000001 32 320S60.71 384 96 384S160 355.29 160 320S131.29 256 96 256zM96 0C60.71 0 32 28.71 32 64S60.71 128 96 128S160 99.29 160 64S131.29 0 96 0z" />
+    <glyph glyph-name="dagger"
+      unicode="&#xF6CB;"
+      horiz-adv-x="384" d=" M335.21 320.04H240V432C240 440.83 232.84 448 224 448H160C151.16 448 144 440.84 144 432V320.03H48.79C22.47 320.03 0.45 299.18 0.01 272.86C-0.44 246 21.22 224.07 48 224.07C74.51 224.07 96 245.55 96 272.06C96 277.7 94.85 283.03 93.06 288.06H128V19.14L178.69 -56.87C185.02 -66.37 198.98 -66.37 205.32 -56.87L256 19.13V288.05H290.94C289.15 283.02 288 277.69 288 272.05C288 245.55 309.49 224.06 336 224.06C362.78 224.06 384.44 245.99 383.99 272.87C383.55 299.18 361.5300000000001 320.04 335.2100000000001 320.04zM64 272.05C64 263.23 56.82 256.05 48 256.05S32 263.23 32 272.05S39.18 288.05 48 288.05S64 280.87 64 272.05zM176 416.01H208V320.04H176V416.01zM224 28.82L192 -19.17L160 28.82V288.05H224V28.82zM336 256.06C327.18 256.06 320 263.24 320 272.06S327.18 288.06 336 288.06S352 280.88 352 272.06S344.82 256.06 336 256.06z" />
+    <glyph glyph-name="database"
+      unicode="&#xF1C0;"
+      horiz-adv-x="448" d=" M224 416C330 416 416 387.25 416 352V320C416 284.75 330 256 224 256S32 284.75 32 320V352C32 387.25 118 416 224 416M416 266.5V224C416 188.75 330 160 224 160S32 188.75 32 224V266.5C73.25 237.5 148.75 224 224 224S374.749 237.5 416 266.5M416 170.5V128C416 92.75 330 64 224 64S32 92.75 32 128V170.5C73.25 141.5 148.75 128 224 128S374.749 141.5 416 170.5M416 74.5V32C416 -3.25 330 -32 224 -32S32 -3.25 32 32V74.5C73.25 45.5 148.75 32 224 32S374.749 45.5 416 74.5M224 448C145.858 448 0 429.199 0 352V32C0 -45.338 146.096 -64 224 -64C302.142 -64 448 -45.199 448 32V352C448 429.338 301.904 448 224 448z" />
+    <glyph glyph-name="deaf"
+      unicode="&#xF2A4;"
+      horiz-adv-x="512" d=" M409.171 339.515L403.515 345.171C398.829 349.857 398.829 357.4550000000001 403.515 362.142L485.859 444.486C490.545 449.1720000000001 498.143 449.1720000000001 502.83 444.486L508.486 438.83C513.172 434.144 513.172 426.546 508.486 421.859L426.142 339.515C421.455 334.8280000000001 413.857 334.8280000000001 409.171 339.515zM26.142 -60.485L212.486 125.859C217.172 130.545 217.172 138.143 212.486 142.83L206.83 148.486C202.144 153.172 194.546 153.172 189.859 148.486L3.515 -37.858C-1.171 -42.544 -1.171 -50.142 3.515 -54.829L9.171 -60.485C13.857 -65.172 21.455 -65.172 26.142 -60.485zM343.676 42.666C343.676 111.959 417.067 121.143 417.067 208C417.067 296.812 344.812 369.0660000000001 256 369.0660000000001S94.933 296.812 94.933 208C94.933 199.163 102.096 192 110.933 192S126.933 199.163 126.933 208C126.933 279.1670000000001 184.832 337.0660000000001 255.999 337.0660000000001C327.1670000000001 337.0660000000001 385.0660000000001 279.1670000000001 385.0660000000001 208C385.0660000000001 136.566 311.675 127.84 311.675 42.666C311.675 1.495 278.18 -32 237.008 -32C228.171 -32 221.008 -39.163 221.008 -48S228.171 -64 237.008 -64C295.826 -64 343.6760000000001 -16.149 343.6760000000001 42.666zM336.743 192C327.906 192 320.743 199.163 320.743 208C320.743 244.172 291.315 273.6 255.143 273.6S189.543 244.172 189.543 208C189.543 199.163 182.38 192 173.543 192S157.543 199.163 157.543 208C157.543 261.8160000000001 201.326 305.6 255.143 305.6S352.743 261.817 352.743 208C352.743 199.163 345.58 192 336.743 192z" />
+    <glyph glyph-name="deer-rudolph"
+      unicode="&#xF78F;"
+      horiz-adv-x="512" d=" M368 288C359.2 288 352 280.8 352 272S359.2 256 368 256S384 263.2 384 272S376.8 288 368 288zM480 336C466.7 336 455.4 327.9 450.5 316.5L364.8 340.6L375.9000000000001 346.2C388.3 352.4 398.9000000000001 361.8 406.6 373.3L424.7000000000001 400.5C427.2000000000001 404.2 426.2000000000001 409.1 422.5000000000001 411.6L409.2000000000001 420.5C405.5000000000001 423 400.6 422 398.1 418.3L380.1 391C375.5 384 369.1 378.4 361.6 374.7L319 353.4L285.2 362.9L293.5 373.2C300.3 381.7 304 392.3 304 403.2V440C304 444.4 300.4 448 296 448H280C275.6 448 272 444.4 272 440V403.2C272 399.6 270.8 396.1 268.5 393.2L251.7 372.3L235.6 376.8C228.7 378.7000000000001 223.9 385 223.9 392.2V440C223.9 444.4 220.3 448 215.9 448H199.9C195.5 448 191.9 444.4 191.9 440V392.2C191.9 370.7 206.2 351.8 226.9 346L305.8 323.8L272 256H96C43 256 0 213 0 160V128H32V100.5L20.1 68.7C15.5 56.5 14.8 43.3 17.9 30.7L40.9 -41.7C45.1 -55 57.5 -64 71.4 -64H119.1C139.9 -64 155.2 -44.5 150.2 -24.3L133.2 44.3L152.6 95.9999999999999H224V-32.0000000000001C224 -49.7 238.3 -64 256 -64H320C337.7 -64 352 -49.7 352 -32V128L384 192H432C458.5 192 480 213.5 480 240V272C497.7 272 512 286.3 512 304S497.7 336 480 336zM448 240C448 231.2 440.8 224 432 224H364.2L320 135.6V-32H256V128H130.4L99.7 46.2L119.1 -32H71.4L48.8 39.2C47.4 45.3 47.9 51.5 50.1 57.4L64.1 94.6V160H32C32 195.3 60.7 224 96 224H291.8L325.5 291.4C332.4 305.1 348 312 362.8 307.9L436.4 287.2000000000001C443.3 285.3 448.1 279 448.1 271.8V240z" />
+    <glyph glyph-name="deer"
+      unicode="&#xF78E;"
+      horiz-adv-x="512" d=" M400 288C391.2 288 384 280.8 384 272S391.2 256 400 256S416 263.2 416 272S408.8 288 400 288zM488.7 314.7L396.8 340.5L407.9 346.1C420.3 352.3 430.9 361.7 438.6 373.2L456.7 400.4C459.2 404.1 458.2 409 454.5 411.5L441.2 420.4C437.5 422.9 432.6 421.9 430.1 418.2L412.1 391C407.5 384 401.1 378.4 393.6 374.7L351 353.4L317.2 362.9L325.5 373.2C332.3 381.7 336 392.3 336 403.2V440C336 444.4 332.4 448 328 448H312C307.6 448 304 444.4 304 440V403.2C304 399.6 302.8 396.1 300.5 393.2L283.7 372.3L267.6 376.8C260.7 378.7000000000001 255.9 385 255.9 392.2V440C255.9 444.4 252.3 448 247.9 448H231.9C227.5 448 223.9 444.4 223.9 440V392.2C223.9 370.7 238.2 351.8 258.9 346L337.8 323.8L304 256H96C43 256 0 213 0 160V128H32V100.5L20.1 68.7C15.5 56.5 14.8 43.3 17.9 30.7L40.9 -41.7C45.1 -55 57.5 -64 71.4 -64H119.1C139.9 -64 155.2 -44.5 150.2 -24.3L133.2 44.3L152.6 95.9999999999999H256V-32.0000000000001C256 -49.7 270.3 -64 288 -64H352C369.7 -64 384 -49.7 384 -32V128L416 192H464C490.5 192 512 213.5 512 240V283.9C512 298.2000000000001 502.4 310.8 488.7 314.7000000000001zM480 240C480 231.2 472.8 224 464 224H396.2L352 135.6V-32H288V128H130.4L99.7 46.2L119.1 -32H71.4L48.8 39.2C47.4 45.3 47.9 51.5 50.1 57.4L64.1 94.6V160H32C32 195.3 60.7 224 96 224H323.8L357.5 291.4C364.4 305.1 380 312 394.8 307.9L468.4 287.2000000000001C475.3 285.3 480.1 279 480.1 271.8V240z" />
+    <glyph glyph-name="democrat"
+      unicode="&#xF747;"
+      horiz-adv-x="640" d=" M283.7 221.2L275.5 237.7C274 240.7 269.8 240.7 268.3 237.7L260.1 221.2L241.9000000000001 218.5C238.6 218 237.3000000000001 214 239.7000000000001 211.7L252.9000000000001 198.8L249.8000000000001 180.6C249.2000000000001 177.3 252.7000000000001 174.9 255.6000000000001 176.4L271.9000000000001 185L288.2000000000001 176.4C291.1 174.9 294.6 177.3 294.0000000000001 180.6L290.9000000000001 198.8L304.1 211.7C306.5 214 305.2000000000001 218 301.9000000000001 218.5L283.7000000000001 221.2zM379.7 221.2L371.5 237.7C370 240.7 365.8 240.7 364.3 237.7L356.1 221.2L337.9000000000001 218.5C334.6 218 333.3 214 335.7000000000001 211.7L348.9000000000001 198.8L345.8 180.6C345.2 177.3 348.7 174.9 351.6 176.4L367.9000000000001 185L384.2000000000001 176.4C387.1 174.9 390.6 177.3 390.0000000000001 180.6L386.9000000000001 198.8L400.1 211.7C402.5 214 401.2000000000001 218 397.9000000000001 218.5L379.7000000000001 221.2zM638.7 221.8L623.5 244.6C579.6 310.3 516.3 304 485.2 304H271.8L247 336.4C264.3 364.4 264.5 400.8 245.8 429.1C238.2 440.6 225.4 447.4 211.6 447.5C200.6 447.5 190.3 443.2 182.5 435.5L167.6 420.6L151.8 436.4C144.3 443.9 134.4 448 123.8 448C110.6 448 98.3 441.4 91 430.4C76.2 408 74.7 379.9 85.5 356.5L10.3 264.6C-1.4 250.3 -3.3 230.7 5.5 214.6L21.4 185.5C30 169.7 46.9 160 65.6 160H100C112.8 160 124.8 164.5 134.1 172.7L148.7 184.9L175.9 121.4V-17.3C175.9 -43 196.8 -64 222.6 -64H273.2C298.9 -64 319.9 -43.1 319.9 -17.3V32H433.2V-17.3C433.2 -43 454.1 -64 479.9 -64H529.1999999999999C554.9 -64 575.9 -43.1 575.9 -17.3V213.2C575.9 229.6 571.1999999999999 244.8 563.5 258.1C576.5 250.3 588 239.9 596.7 226.8L612 204C614.4 200.3 619.4 199.3 623.1 201.8L636.4 210.7C640.1 213.1 641.1 218.1 638.6999999999999 221.8zM544 -17.3C544 -25.4 537.4 -32 529.3 -32H480C471.9 -32 465.3 -25.4 465.3 -17.3V64H288V-17.3C288 -25.4 281.4 -32 273.3 -32H222.7C214.6 -32 208 -25.4 208 -17.3V112H544V-17.3zM544 144H201.1L161.3 237L113.2 196.9C109.8 193.8 105 192 100.1 192H65.6C58.7 192 52.3 195.4 49.4 200.7L33.5 229.8C30.9 234.5 31.5 239.9 35 244.2L117.9 345.4C121 349.2 126.1 351.4 131.6 351.7C128.8 353.4 125.8 354.8 123.3 357.2C108.2 372.3 106.4 395.5 117.7 412.6C119.1 414.8 121.5 415.9 123.9 415.9C125.8 415.9 127.7 415.2 129.2 413.7L167.7 375.2L205.2 412.7C207 414.5 209.3 415.4 211.6 415.4C214.5 415.4 217.4 414 219.1 411.4C232.9000000000001 390.5 230.6 362 212.2 343.6C210.1 341.5 207.8 339.7 205.4 338.1L256 272H485.3C517.8 272 544.1 245.7 544.1 213.2V144zM475.7 221.2L467.5 237.7C466 240.7 461.8 240.7 460.3 237.7L452.1 221.2L433.9000000000001 218.5C430.6 218 429.3 214 431.7000000000001 211.7L444.9000000000001 198.8L441.8 180.6C441.2 177.3 444.7 174.9 447.6 176.4L463.9 185L480.2 176.4C483.1 174.9 486.6 177.3 486.0000000000001 180.6L482.9 198.8L496.1 211.7C498.5 214 497.2 218 493.9 218.5L475.7 221.2z" />
+    <glyph glyph-name="desktop-alt"
+      unicode="&#xF390;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V112C0 85.5 21.5 64 48 64H240L216 -32H144C135.2 -32 128 -39.2 128 -48S135.2 -64 144 -64H432C440.8 -64 448 -56.8 448 -48S440.8 -32 432 -32H360L336 64H528C554.5 64 576 85.5 576 112V400C576 426.5 554.5 448 528 448zM249 -32L265 32H311L327 -32H249zM544 112C544 103.2 536.8 96 528 96H48C39.2 96 32 103.2 32 112V160H544V112zM544 192H32V400C32 408.8 39.2 416 48 416H528C536.8 416 544 408.8 544 400V192z" />
+    <glyph glyph-name="desktop"
+      unicode="&#xF108;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V112C0 85.5 21.5 64 48 64H240L216 -32H144C135.2 -32 128 -39.2 128 -48S135.2 -64 144 -64H432C440.8 -64 448 -56.8 448 -48S440.8 -32 432 -32H360L336 64H528C554.5 64 576 85.5 576 112V400C576 426.5 554.5 448 528 448zM249 -32L265 32H311L327 -32H249zM544 112C544 103.2 536.8 96 528 96H48C39.2 96 32 103.2 32 112V400C32 408.8 39.2 416 48 416H528C536.8 416 544 408.8 544 400V112z" />
+    <glyph glyph-name="dewpoint"
+      unicode="&#xF748;"
+      horiz-adv-x="448" d=" M176 448C163.6 448 151.3 441.2 146.8 427.3C100 279.4 0 207.2 0 103C0 10.7 78.7 -64 176 -64S352 10.7 352 103C352 207.8 252.2 278.8 205.2 427.3C201.2 440.9 188.6 448 176 448zM320 103C320 28.6 255.4 -32 176 -32S32 28.5 32 103C32 150.5 58.1 192.2 91.2 245C120.4 291.6 153.4 344.3 176 413.6C198.7 343.9 231.7 291.3 260.9 244.8C293.9 192.2 320 150.7 320 103zM384 448C348.7 448 320 419.3 320 384S348.7 320 384 320S448 348.7 448 384S419.3 448 384 448zM384 352C366.3 352 352 366.3 352 384S366.3 416 384 416S416 401.7 416 384S401.7 352 384 352z" />
+    <glyph glyph-name="dharmachakra"
+      unicode="&#xF655;"
+      horiz-adv-x="512" d=" M503.67 215.65L478.86 214.62C474.36 259.51 456.58 300.4600000000001 429.55 333.56L447.86 350.4C451.21 353.48 451.32 358.73 448.1 361.94L425.9500000000001 384.09C422.7400000000001 387.3 417.4900000000001 387.2 414.4100000000001 383.85L397.5700000000001 365.54C364.4700000000001 392.57 323.5200000000001 410.35 278.6300000000001 414.85L279.6600000000001 439.66A7.997 7.997 0 0 1 271.67 447.99H240.35C235.8 447.99 232.17 444.2 232.36 439.66L233.39 414.85C188.51 410.35 147.55 392.57 114.45 365.54L97.6 383.85C94.52 387.2 89.27 387.31 86.06 384.09L63.91 361.95A7.990000000000001 7.990000000000001 0 0 1 64.15 350.41L82.46 333.57C55.42 300.4700000000001 37.65 259.52 33.15 214.63L8.34 215.66C3.79 215.84 0 212.21 0 207.66V176.34C0 171.79 3.79 168.16 8.33 168.35L33.14 169.38C37.64 124.49 55.42 83.54 82.45 50.4399999999999L64.15 33.6C60.8 30.52 60.69 25.27 63.91 22.0599999999999L86.06 -0.09C89.27 -3.3100000000001 94.52 -3.2 97.6 0.15L114.44 18.46C147.54 -8.58 188.49 -26.35 233.38 -30.85L232.35 -55.66A7.997 7.997 0 0 1 240.34 -63.99H271.6600000000001C276.2100000000001 -63.99 279.8400000000001 -60.2 279.6500000000001 -55.66L278.6200000000001 -30.85C323.5100000000001 -26.35 364.4600000000001 -8.57 397.5600000000001 18.46L414.4000000000001 0.15C417.48 -3.2 422.73 -3.31 425.9400000000001 -0.09L448.0900000000001 22.0599999999999A7.990000000000001 7.990000000000001 0 0 1 447.85 33.6L429.54 50.4399999999999C456.58 83.54 474.35 124.49 478.85 169.38L503.66 168.35C508.21 168.16 511.99 171.79 511.99 176.34V207.66C512 212.21 508.21 215.84 503.67 215.65zM446.75 213.28L350.26 209.26C347.78 222.9 342.52 235.53 334.92 246.5L405.8300000000001 311.74C427.9600000000001 284.1 442.6500000000001 250.29 446.7500000000001 213.28zM256 128C220.71 128 192 156.71 192 192S220.71 256 256 256S320 227.29 320 192S291.29 128 256 128zM375.74 341.8300000000001L310.5 270.92C299.53 278.52 286.9 283.7800000000001 273.26 286.26L277.28 382.75C314.29 378.6500000000001 348.1 363.9600000000001 375.74 341.8300000000001zM234.72 382.75L238.74 286.26C225.1 283.78 212.47 278.52 201.5 270.92L136.26 341.83C163.9 363.96 197.71 378.65 234.72 382.75zM106.17 311.74L177.08 246.5C169.48 235.53 164.22 222.9 161.74 209.26L65.25 213.28C69.35 250.29 84.04 284.1 106.17 311.74zM65.25 170.72L161.74 174.74C164.22 161.1 169.48 148.47 177.08 137.5L106.17 72.26C84.04 99.9 69.35 133.71 65.25 170.72zM136.26 42.17L201.5 113.0800000000001C212.47 105.48 225.1 100.22 238.74 97.7400000000001L234.72 1.2500000000001C197.71 5.3500000000001 163.9 20.0400000000001 136.26 42.1700000000001zM277.28 1.25L273.26 97.74C286.9 100.22 299.53 105.48 310.5 113.08L375.74 42.17C348.1 20.04 314.29 5.35 277.2800000000001 1.2499999999999zM405.83 72.26L334.92 137.5C342.52 148.47 347.78 161.1 350.26 174.74L446.75 170.72C442.6499999999999 133.71 427.9599999999999 99.9 405.83 72.2600000000001z" />
+    <glyph glyph-name="diagnoses"
+      unicode="&#xF470;"
+      horiz-adv-x="640" d=" M416 352C416 404.9 372.9 448 320 448S224 404.9 224 352S267.1 256 320 256S416 299.1 416 352zM320 288C284.7 288 256 316.7 256 352S284.7 416 320 416S384 387.3 384 352S355.3 288 320 288zM632 -32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32zM160 192C160 191.5 159.9 191 159.9 190.6C206.6 208.7 262.9 224 320 224C364.9 224 409 214.4 448.6 201.6C447.3 211.4 448.2000000000001 221.7 455.2 233.1C413.7 246.3 367.4 256 320 256C258.9 256 199.5 240 150 221C156.2 212.9 160 203 160 192zM496 192C504.8 192 512 199.2 512 208S504.8 224 496 224S480 216.8 480 208S487.2 192 496 192zM584.6 119.6L566.8000000000001 92.9C561.8000000000001 85.4 552.3000000000001 83.9 545.4000000000001 88.0000000000001C523.0000000000001 101.2000000000001 473.7000000000001 127.7000000000001 416.0000000000001 144.7000000000001V4C416.0000000000001 1.8 417.8000000000002 0 420.0000000000001 0H444.0000000000001C446.2000000000001 0 448.0000000000001 1.8 448.0000000000001 4V99.8C485.9000000000001 84.9 515.8000000000001 68.3 529.2000000000002 60.4C549.6000000000001 48.4 578.3000000000002 52.3 593.5000000000001 75.1L611.3000000000001 101.8C624.4000000000001 121.5 622.7 153.6 596.2 169.5C583.8000000000001 176.9 565.3000000000001 187.2 543 198C540.7 187 534.4 177.5 525.9 170.7C549.1 159.6 568.1 149.1 579.8 142.1C587.5999999999999 137.4 589.6999999999999 127.2 584.5999999999999 119.6zM46.5 75.1C61.5 52.5 90.2 48.2 110.8 60.4C124.1 68.3 154.1 85.0000000000001 192 99.8V4C192 1.8 193.8 0 196 0H220C222.2 0 224 1.8 224 4V144.6C166.3 127.7000000000001 116.9 101.1 94.6 87.9C87.6 83.8 78.2 85.4 73.2 92.8L55.4 119.5C50.3 127.1 52.5 137.3 60.3 142C66 145.4 73.7 149.8 82.4 154.5C73.9 161.3 67.6 170.7 65.2 181.6C57 177.1 49.7 172.9 43.9 169.4C17.5 153.6 15.6 121.6 28.8 101.7000000000001L46.5 75.1zM112 176C120.8 176 128 183.2 128 192S120.8 208 112 208S96 200.8 96 192S103.2 176 112 176zM256 144C256 135.2 263.2 128 272 128S288 135.2 288 144S280.8 160 272 160S256 152.8 256 144zM352 48C352 39.2 359.2 32 368 32S384 39.2 384 48S376.8 64 368 64S352 56.8 352 48z" />
+    <glyph glyph-name="diamond"
+      unicode="&#xF219;"
+      horiz-adv-x="448" d=" M253 434.6C237.7 452.5 210.2 452.5 194.9 434.6L9.3 217.1C-3.1 202.6 -3.1 181.5 9.3 166.9L195 -50.6C210.3 -68.5 237.8 -68.5 253.1 -50.6L438.7 166.9C451.1 181.4 451.1 202.5 438.7 217.1L253 434.6zM414.4 187.7L228.7 -29.8C226.2 -32.7 221.8 -32.7 219.3 -29.8L33.6 187.7C31.5 190.2 31.5 193.9 33.6 196.3L219.3 413.8C221.8 416.7 226.2 416.7 228.7 413.8L414.4 196.3C416.5 193.8 416.5 190.2 414.4 187.7z" />
+    <glyph glyph-name="dice-d10"
+      unicode="&#xF6CD;"
+      horiz-adv-x="512" d=" M503.88 186.71L279.8 437.36C273.45 444.45 264.7200000000001 448 256 448S238.55 444.45 232.2 437.36L8.12 186.71C-3.69 173.5 -2.48 153.21 10.81 141.49L234.89 -56.03C240.92 -61.35 248.46 -64 256 -64C263.54 -64 271.08 -61.34 277.11 -56.03L501.19 141.5C514.48 153.21 515.68 173.51 503.88 186.71zM256 150.05L180.14 200.62L256 377.62L331.86 200.62L256 150.05zM148.72 208.29L47.69 183.03L220.97 376.88L148.72 208.29zM363.28 208.29L291.03 376.88L464.5 182.99L363.28 208.29zM31.91 165.38L31.92 165.34L31.89 165.36L31.91 165.38zM48.94 150.35L157.28 177.44L240.04 122.25V-17.97L48.94 150.35zM271.96 -17.9V122.25L354.72 177.44L462.92 150.38L271.96 -17.9z" />
+    <glyph glyph-name="dice-d12"
+      unicode="&#xF6CE;"
+      horiz-adv-x="512" d=" M505.24 269.51L457.54 364.92A63.972 63.972 0 0 1 428.92 393.54L333.51 441.24A63.905 63.905 0 0 1 304.89 448H207.11C197.17 448 187.38 445.69 178.49 441.24L83.08 393.54A63.972 63.972 0 0 1 54.46 364.92L6.76 269.51A63.874 63.874 0 0 1 0 240.89V143.11C0 133.17 2.31 123.38 6.76 114.49L54.46 19.08A63.972 63.972 0 0 1 83.08 -9.54L178.49 -57.2399999999999A64.07 64.07 0 0 1 207.11 -63.9999999999999H304.89C314.83 -63.9999999999999 324.62 -61.6899999999999 333.51 -57.2399999999999L428.92 -9.54A63.972 63.972 0 0 1 457.54 19.08L505.24 114.49A64.07 64.07 0 0 1 511.9999999999999 143.11V240.89C511.9999999999999 250.83 509.6899999999999 260.63 505.24 269.51zM475.69 257.07L380.11 147.84L272 201.89V307.78L428.94 350.58L475.69 257.07zM308.8 -32H203.2L147.91 120.06L256 174.11L364.0900000000001 120.06L308.8 -32zM199.55 416H312.44L395.29 374.58L256 336.5900000000001L116.71 374.58L199.55 416zM83.06 350.58L240 307.78V201.9L131.89 147.85L36.31 257.0700000000001L83.06 350.5800000000001zM32 135.55V213.43L113.99 119.73L162.41 -13.4299999999999L87.85 23.85L32 135.55zM424.15 23.85L349.59 -13.4299999999999L398.01 119.73L480 213.43V135.55L424.15 23.85z" />
+    <glyph glyph-name="dice-d20"
+      unicode="&#xF6CF;"
+      horiz-adv-x="448" d=" M431.88 331.87L239.88 443.7A31.478000000000005 31.478000000000005 0 0 1 208.12 443.7L16.12 331.86C6.15 326.06 0 315.25 0 303.54V80.45C0 68.74 6.15 57.94 16.12 52.13L208.12 -59.7A31.478000000000005 31.478000000000005 0 0 1 239.88 -59.7L431.88 52.13C441.85 57.94 448 68.75 448 80.45V303.54C448 315.25 441.85 326.06 431.88 331.87zM224 390.38L318.7 272H129.3L224 390.38zM124.62 240H323.37L224 78.53L124.62 240zM192.9 68.01L55.92 85.13L100.35 218.41L192.9 68.01zM347.65 218.42L392.08 85.14L255.1 68.01L347.65 218.42zM354.82 278.11L262.67 393.28L400.68 312.5L354.82 278.11zM93.18 278.11L46.94 312.79L185.48 393.49L93.18 278.11zM77.17 250.13L32.04 114.73L32.21 283.85L77.17 250.13zM208 33.88V-22.55L85.4 49.2L208 33.88zM363.6 49.33L240 -22.84V33.88L363.6 49.33zM370.8300000000001 250.13L415.98 283.99L415.81 115.2000000000001L370.83 250.1300000000001zM224.14 -32H224.31L224.22 -32.05L224.14 -32z" />
+    <glyph glyph-name="dice-d4"
+      unicode="&#xF6D0;"
+      horiz-adv-x="512" d=" M504.9 158.97L280.84 436.14C274.45 444.04 265.23 448 256 448S237.55 444.04 231.15 436.14L7.1 158.97C-4.21 144.97 -1.74 124.4 12.57 113.48L236.62 -57.46C242.34 -61.83 249.17 -64.01 256 -64.01S269.6600000000001 -61.83 275.38 -57.46L499.43 113.48C513.74 124.4 516.21 144.98 504.9 158.97zM31.99 138.86L240 396.25V-19.79L31.99 138.86zM256.02 -32H256.05L256.04 -32.01L256.02 -32zM272 -19.82V396.18L480.02 138.92L272 -19.82z" />
+    <glyph glyph-name="dice-d6"
+      unicode="&#xF6D1;"
+      horiz-adv-x="448" d=" M431.88 331.87L239.88 443.7A31.478000000000005 31.478000000000005 0 0 1 208.12 443.7L16.12 331.86C6.15 326.06 0 315.25 0 303.54V80.45C0 68.74 6.15 57.94 16.12 52.13L208.12 -59.7A31.478000000000005 31.478000000000005 0 0 1 239.88 -59.7L431.88 52.13C441.85 57.94 448 68.75 448 80.45V303.54C448 315.25 441.85 326.06 431.88 331.87zM224 415.92L399.75 313.06L224 210.52L47.83 313.3L224 415.92zM32.21 285.35L208 182.82V-22.55L32 80.46L32.21 285.35zM240 -22.84V182.82L415.98 285.46L415.7700000000001 79.79L240 -22.84z" />
+    <glyph glyph-name="dice-d8"
+      unicode="&#xF6D2;"
+      horiz-adv-x="512" d=" M502.12 215.86L279.86 438.12C273.27 444.71 264.64 448 256 448S238.73 444.71 232.14 438.12L9.88 215.86C-3.3 202.68 -3.3 181.31 9.88 168.13L232.13 -54.12C238.72 -60.71 247.36 -64 255.99 -64S273.26 -60.71 279.85 -54.12L502.1 168.13C515.2900000000001 181.32 515.2900000000001 202.68 502.12 215.86zM32.51 193.19C32.52 193.2 32.5 193.22 32.51 193.23L32.55 193.26L32.51 193.19zM240 -16.72L61.19 162.08L240 85.45V-16.72zM240 120.26L43.68 204.4L240 400.73V120.26zM272 -16.72V85.45L450.8 162.08L272 -16.72zM272 120.26V400.7200000000001L468.32 204.4L272 120.26zM479.49 193.19L479.45 193.27L479.49 193.23C479.5 193.22 479.48 193.21 479.49 193.19z" />
+    <glyph glyph-name="dice-five"
+      unicode="&#xF523;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM128 312C114.75 312 104 301.26 104 288C104 274.75 114.75 264 128 264S152 274.75 152 288C152 301.26 141.25 312 128 312zM224 216C210.75 216 200 205.26 200 192C200 178.75 210.75 168 224 168S248 178.75 248 192C248 205.26 237.25 216 224 216zM128 120C114.75 120 104 109.26 104 96C104 82.75 114.75 72 128 72S152 82.75 152 96C152 109.26 141.25 120 128 120zM320 312C306.75 312 296 301.26 296 288C296 274.75 306.75 264 320 264S344 274.75 344 288C344 301.26 333.25 312 320 312zM320 120C306.75 120 296 109.26 296 96C296 82.75 306.75 72 320 72S344 82.75 344 96C344 109.26 333.25 120 320 120z" />
+    <glyph glyph-name="dice-four"
+      unicode="&#xF524;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM128 312C114.75 312 104 301.26 104 288C104 274.75 114.75 264 128 264S152 274.75 152 288C152 301.26 141.25 312 128 312zM128 120C114.75 120 104 109.26 104 96C104 82.75 114.75 72 128 72S152 82.75 152 96C152 109.26 141.25 120 128 120zM320 312C306.75 312 296 301.26 296 288C296 274.75 306.75 264 320 264S344 274.75 344 288C344 301.26 333.25 312 320 312zM320 120C306.75 120 296 109.26 296 96C296 82.75 306.75 72 320 72S344 82.75 344 96C344 109.26 333.25 120 320 120z" />
+    <glyph glyph-name="dice-one"
+      unicode="&#xF525;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM224 216C210.75 216 200 205.26 200 192C200 178.75 210.75 168 224 168S248 178.75 248 192C248 205.26 237.25 216 224 216z" />
+    <glyph glyph-name="dice-six"
+      unicode="&#xF526;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM128 312C114.75 312 104 301.26 104 288C104 274.75 114.75 264 128 264S152 274.75 152 288C152 301.26 141.25 312 128 312zM128 216C114.75 216 104 205.26 104 192C104 178.75 114.75 168 128 168S152 178.75 152 192C152 205.26 141.25 216 128 216zM320 216C306.75 216 296 205.26 296 192C296 178.75 306.75 168 320 168S344 178.75 344 192C344 205.26 333.25 216 320 216zM128 120C114.75 120 104 109.26 104 96C104 82.75 114.75 72 128 72S152 82.75 152 96C152 109.26 141.25 120 128 120zM320 312C306.75 312 296 301.26 296 288C296 274.75 306.75 264 320 264S344 274.75 344 288C344 301.26 333.25 312 320 312zM320 120C306.75 120 296 109.26 296 96C296 82.75 306.75 72 320 72S344 82.75 344 96C344 109.26 333.25 120 320 120z" />
+    <glyph glyph-name="dice-three"
+      unicode="&#xF527;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM128 312C114.75 312 104 301.26 104 288C104 274.75 114.75 264 128 264S152 274.75 152 288C152 301.26 141.25 312 128 312zM224 216C210.75 216 200 205.26 200 192C200 178.75 210.75 168 224 168S248 178.75 248 192C248 205.26 237.25 216 224 216zM320 120C306.75 120 296 109.26 296 96C296 82.75 306.75 72 320 72S344 82.75 344 96C344 109.26 333.25 120 320 120z" />
+    <glyph glyph-name="dice-two"
+      unicode="&#xF528;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM416 32C416 14.36 401.64 0 384 0H64C46.36 0 32 14.36 32 32V352C32 369.64 46.36 384 64 384H384C401.64 384 416 369.64 416 352V32zM128 312C114.75 312 104 301.26 104 288C104 274.75 114.75 264 128 264S152 274.75 152 288C152 301.26 141.25 312 128 312zM320 120C306.75 120 296 109.26 296 96C296 82.75 306.75 72 320 72S344 82.75 344 96C344 109.26 333.25 120 320 120z" />
+    <glyph glyph-name="dice"
+      unicode="&#xF522;"
+      horiz-adv-x="640" d=" M480 120C466.75 120 456 109.26 456 96C456 82.75 466.75 72 480 72S504 82.75 504 96C504 109.26 493.25 120 480 120zM224 248C210.75 248 200 237.26 200 224C200 210.75 210.75 200 224 200S248 210.75 248 224C248 237.26 237.25 248 224 248zM320 248C306.75 248 296 237.26 296 224C296 210.75 306.75 200 320 200S344 210.75 344 224C344 237.26 333.25 248 320 248zM128 248C114.75 248 104 237.26 104 224C104 210.75 114.75 200 128 200S152 210.75 152 224C152 237.26 141.25 248 128 248zM224 152C210.75 152 200 141.26 200 128C200 114.75 210.75 104 224 104S248 114.75 248 128C248 141.26 237.25 152 224 152zM224 344C210.75 344 200 333.26 200 320C200 306.75 210.75 296 224 296S248 306.75 248 320C248 333.26 237.25 344 224 344zM576 256H439.38C436.49 261.17 433.12 266.15 428.73 270.54L270.54 428.7200000000001C257.69 441.58 240.84 448 224 448S190.31 441.58 177.46 428.7200000000001L19.28 270.54C-6.42 244.84 -6.42 203.16 19.28 177.46L177.46 19.28C190.31 6.43 207.16 0 224 0S257.69 6.43 270.54 19.28L320 68.74V0C320 -35.35 348.65 -64 384 -64H576C611.35 -64 640 -35.35 640 0V192C640 227.35 611.35 256 576 256zM247.27 42.55C241.06 36.34 232.79 32.91 224 32.91S206.95 36.33 200.73 42.55L42.55 200.73C36.34 206.95 32.91 215.21 32.91 224S36.33 241.05 42.55 247.27L200.73 405.45C206.94 411.6600000000001 215.21 415.0900000000001 224 415.0900000000001S241.05 411.67 247.27 405.45L405.4500000000001 247.27C411.6700000000001 241.06 415.0900000000001 232.79 415.0900000000001 224S411.67 206.95 405.4500000000001 200.73L247.27 42.55zM608 0C608 -17.64 593.64 -32 576 -32H384C366.36 -32 352 -17.64 352 0V100.74L428.7200000000001 177.46C441.57 190.31 448 207.16 448 224H576C593.64 224 608 209.64 608 192V0z" />
+    <glyph glyph-name="digital-tachograph"
+      unicode="&#xF566;"
+      horiz-adv-x="640" d=" M608 352H32C14.33 352 0 337.67 0 320V64C0 46.33 14.33 32 32 32H608C625.67 32 640 46.33 640 64V320C640 337.67 625.67 352 608 352zM608 64H32V320H608V64zM80 176H288C296.84 176 304 183.16 304 192V272C304 280.8400000000001 296.84 288 288 288H80C71.16 288 64 280.8400000000001 64 272V192C64 183.16 71.16 176 80 176zM88 264H280V200H88V264zM72 88H296C300.42 88 304 91.58 304 96V104C304 108.42 300.42 112 296 112H72C67.58 112 64 108.42 64 104V96C64 91.58 67.58 88 72 88zM344 88H568C572.42 88 576 91.58 576 96V104C576 108.42 572.42 112 568 112H344C339.58 112 336 108.42 336 104V96C336 91.58 339.58 88 344 88zM80 160C75.58 160 72 156.42 72 152V136C72 131.58 75.58 128 80 128H96C100.42 128 104 131.58 104 136V152C104 156.42 100.42 160 96 160H80zM144 160C139.58 160 136 156.42 136 152V136C136 131.58 139.58 128 144 128H160C164.42 128 168 131.58 168 136V152C168 156.42 164.42 160 160 160H144zM208 160C203.58 160 200 156.42 200 152V136C200 131.58 203.58 128 208 128H224C228.42 128 232 131.58 232 136V152C232 156.42 228.42 160 224 160H208zM272 160C267.58 160 264 156.42 264 152V136C264 131.58 267.58 128 272 128H288C292.42 128 296 131.58 296 136V152C296 156.42 292.42 160 288 160H272z" />
+    <glyph glyph-name="diploma"
+      unicode="&#xF5EA;"
+      horiz-adv-x="640" d=" M608.64 400.44C603.02 409.99 591.58 416 579.27 416C576.74 416 574.17 415.75 571.61 415.2200000000001L444.65 372.44A390.24 390.24 0 0 0 320 352C277.62 352 235.52 358.9 195.35 372.44L68.39 415.2200000000001C65.83 415.75 63.26 416 60.74 416C48.43 416 36.99 409.99 31.36 400.44C-10.45 329.5 -10.45 182.49 31.36 111.55C36.99 102.01 48.42 96 60.74 96C63.27 96 65.83 96.25 68.39 96.78L195.35 139.56C199.64 141.0099999999999 204.09 141.86 208.43 143.12L152.2 48.3299999999999A31.991999999999997 31.991999999999997 0 0 1 151.91 16.17A32.007 32.007 0 0 1 179.72 0.0099999999999H199.92L215.53 -19.8000000000001A32.009 32.009 0 0 1 240.6600000000001 -31.9900000000001C252.2200000000001 -31.9900000000001 262.8900000000001 -25.7500000000001 268.56 -15.6700000000001L320.03 75.8999999999999L371.56 -15.6000000000001A32.004 32.004 0 0 1 424.5899999999999 -19.7000000000001L440.1099999999999 0.0099999999999L460.4599999999999 0.0199999999999A31.997 31.997 0 0 1 487.9499999999999 48.3699999999999L431.6499999999999 143.0999999999999C435.9699999999999 141.8499999999999 440.38 140.9999999999999 444.6499999999999 139.5599999999999L571.6099999999999 96.7799999999999C574.1699999999998 96.2499999999999 576.7399999999999 95.9999999999999 579.2699999999999 95.9999999999999C591.5799999999998 95.9999999999999 603.0199999999999 102.0099999999999 608.6499999999999 111.5499999999999C650.4499999999998 182.4899999999999 650.4499999999998 329.4999999999999 608.6399999999999 400.4399999999999zM185.13 169.89L60.74 127.97V128C59.94 128 59.29 128.16 58.99 128.16C58.83 128.16 58.76 128.11 58.83 127.96C22.91 189.1400000000001 22.94 323.1400000000001 58.3 383.3900000000001C58.45 383.5100000000001 59.17 383.9000000000001 61.12 383.9000000000001L185.14 342.11C203.13 336.0500000000001 221.48 331.5300000000001 240.01 327.9600000000001V196.34L231.66 182.2700000000001C215.98 178.9300000000001 200.41 175.04 185.13 169.8900000000001zM424.56 32L399.44 0.09L320 141.16L240.66 0L215.44 32H179.72L272 187.56V323.06C287.9100000000001 321.24 303.9 319.99 320 319.99S352.0900000000001 321.24 368 323.06V187.56L460.44 32.01L424.56 32zM581.7 128.61C581.5500000000001 128.5 580.83 128.11 578.87 128.11L454.87 169.9C439.6 175.04 424.04 178.9400000000001 408.37 182.28L400 196.35V327.95C418.52 331.53 436.88 336.04 454.87 342.1L579.18 384H579.27C580.0699999999999 384 580.72 383.8400000000001 581.02 383.8400000000001C581.18 383.8400000000001 581.24 383.89 581.18 384.04C617.0899999999999 322.86 617.06 188.85 581.6999999999999 128.61z" />
+    <glyph glyph-name="directions"
+      unicode="&#xF5EB;"
+      horiz-adv-x="512" d=" M502.61 214.68L278.68 438.61C272.42 444.87 264.21 448 256 448S239.58 444.87 233.32 438.61L9.39 214.68C-3.13 202.15 -3.13 181.85 9.39 169.32L233.32 -54.61C239.58 -60.87 247.79 -64 256 -64S272.42 -60.87 278.68 -54.61L502.61 169.32C515.13 181.85 515.13 202.15 502.61 214.68zM255.95 -31.98L32.02 192.05L255.95 415.99C255.96 415.99 255.97 416 256 416L256.05 415.98L479.98 191.95L255.95 -31.98zM330.89 224H208C181.49 224 160 202.51 160 176V136C160 131.58 163.58 128 168 128H184C188.42 128 192 131.58 192 136V176C192 184.84 199.16 192 208 192H330.89L276.26 141.57C273.01 138.57 272.81 133.51 275.81 130.27L286.65 118.53C289.65 115.28 294.71 115.08 297.95 118.08L376.35 190.44C381.2200000000001 194.96 384.0100000000001 201.38 384.0100000000001 208.02S381.2300000000001 221.08 376.29 225.64L297.9500000000001 297.95C294.7000000000001 300.95 289.6400000000001 300.74 286.6500000000001 297.5L275.8100000000001 285.76C272.8100000000001 282.51 273.0200000000001 277.45 276.2600000000001 274.46L330.89 224z" />
+    <glyph glyph-name="divide"
+      unicode="&#xF529;"
+      horiz-adv-x="384" d=" M376 216H8C3.58 216 0 212.42 0 208V176C0 171.58 3.58 168 8 168H376C380.42 168 384 171.58 384 176V208C384 212.42 380.42 216 376 216zM192 112C165.54 112 144 90.46 144 64S165.54 16 192 16S240 37.54 240 64S218.46 112 192 112zM192 272C218.46 272 240 293.54 240 320S218.46 368 192 368S144 346.4600000000001 144 320S165.54 272 192 272z" />
+    <glyph glyph-name="dizzy"
+      unicode="&#xF567;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 160C212.7 160 184 131.3 184 96S212.7 32 248 32S312 60.7 312 96S283.3 160 248 160zM248 64C230.4 64 216 78.4 216 96S230.4 128 248 128S280 113.6 280 96S265.6 64 248 64zM219.3 204.7C225.5 210.9 225.5 221.1 219.3 227.3L190.6 256L219.3 284.7C225.5 290.9 225.5 301.1 219.3 307.3S202.9 313.5 196.7 307.3L168 278.6L139.3 307.3C133.1 313.5 122.9 313.5 116.7 307.3S110.5 290.9 116.7 284.7L145.4 256L116.7 227.3C110.5 221.1 110.5 210.9 116.7 204.7C122.9 198.5 133.1 198.4 139.3 204.7L168 233.4L196.7 204.7C202.9 198.4 213.1 198.4 219.3 204.7zM379.3 307.3C373.1 313.5 362.9000000000001 313.5 356.7 307.3L328 278.6L299.3 307.3C293.1 313.5 282.9000000000001 313.5 276.7 307.3S270.5 290.9 276.7 284.7L305.4 256L276.7 227.3C270.5 221.1 270.5 210.9 276.7 204.7C282.9 198.5 293.1 198.4 299.3 204.7L328 233.4L356.7 204.7C362.9 198.5 373.1 198.4 379.3 204.7C385.5 210.9 385.5 221.1 379.3 227.3L350.6 256L379.3 284.7C385.6 290.9 385.6 301.1 379.3 307.3z" />
+    <glyph glyph-name="dna"
+      unicode="&#xF471;"
+      horiz-adv-x="384" d=" M0 -55.5C-0.3 -60.1 3.3 -64 8 -64H24.1C28.3 -64 31.8 -60.9 32.1 -56.7C32.5 -51.1 33.5 -42.6 35.6 -32H348.2000000000001C350.4000000000001 -42.7 351.5000000000001 -51.3 351.9000000000001 -56.8C352.3 -60.9 355.7000000000001 -64 359.9000000000001 -64H376C380.7 -64 384.3 -60.1 384 -55.5C381.7 -24 365.5 86.5 251.8 172.4C242.5 166.1 232.6 160 222.2 154.1C248.2 135.7 268.8 115.9 285.4000000000001 95.9H97.7C121.8 124.7 154.7 153.4 199.7 177.9C360.9 265.7 381.4 403.6 384 439.5C384.3 444.1 380.7 448 376 448H359.9C355.7 448 352.2 444.9 351.9 440.7C351.5 435.1 350.5 426.5 348.4 415.9H35.8C33.6 426.6 32.6 435.2 32.1 440.7C31.7 444.8 28.3 447.9 24.1 447.9L8 448C3.4 448 -0.3 444.1 0 439.5C2.5 405.5 21.7 280 161 192.2C21.3 104.4 2.5 -21.5 0 -55.5zM340 384C333.7 364.8 324.1 342.8 309.6 320H75C60.6 342.9 50.9 364.8 44.5 384H340zM192 210.6C151.3 233.9 120.8 260.8 98.2 288H286.3C263.6 260.9 232.9 234.1 192 210.6zM44 0C50.3 19.2 59.9 41.1 74.4 64H308.9C323.4 41.1 333.1 19.1 339.5 0H44z" />
+    <glyph glyph-name="do-not-enter"
+      unicode="&#xF5EC;"
+      horiz-adv-x="496" d=" M394.67 256H101.33C93.97 256 88 248.84 88 240V144C88 135.16 93.97 128 101.33 128H394.66C402.02 128 407.99 135.16 407.99 144V240C408 248.84 402.03 256 394.67 256zM376 160H120V224H376V160zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="dog-leashed"
+      unicode="&#xF6D4;"
+      horiz-adv-x="512" d=" M496 352H432L424.84 366.31A32 32 0 0 1 396.2200000000001 384H326.6L299.3200000000001 411.28C296.0600000000001 414.54 292.0500000000001 416 288.1200000000001 416C279.8900000000001 416 272.0000000000001 409.61 272.0000000000001 399.9700000000001V238.96L23.38 446.15C19.99 448.98 14.94 448.52 12.11 445.12L1.86 432.82C-0.97 429.43 -0.51 424.38 2.88 421.55L239.94 224H160C140.41 224 122.24 218.07 107.05 208H80C53.53 208 32 229.53 32 256C32 264.8400000000001 24.84 272 16 272S0 264.8400000000001 0 256C0 212.76 34.53 177.64 77.46 176.26C69.12 162.03 64 145.68 64 128V-32C64 -49.67 78.33 -64 96 -64H160C177.67 -64 192 -49.67 192 -32V64H288V-32C288 -49.67 302.33 -64 320 -64H384C401.67 -64 416 -49.67 416 -32V208H448C483.35 208 512 236.65 512 272V336C512 344.8400000000001 504.84 352 496 352zM256 96H160V-32H96V128C96 163.29 124.71 192 160 192H256V96zM384 -32H320V96H288V189.52L384 165.52V-32zM480 272C480 254.36 465.64 240 448 240H384V198.48L304 218.48V361.3400000000001L313.34 352H396.22L412.22 320H480V272zM368 320C359.1600000000001 320 352 312.8400000000001 352 304S359.1600000000001 288 368 288S384 295.16 384 304S376.84 320 368 320z" />
+    <glyph glyph-name="dog"
+      unicode="&#xF6D3;"
+      horiz-adv-x="512" d=" M496 352H432L424.84 366.31A32 32 0 0 1 396.2200000000001 384H326.6L299.3200000000001 411.28C296.0600000000001 414.54 292.0500000000001 416 288.1200000000001 416C279.8900000000001 416 272.0000000000001 409.61 272.0000000000001 399.9700000000001V224H160C140.41 224 122.24 218.07 107.05 208H80C53.53 208 32 229.53 32 256C32 264.8400000000001 24.84 272 16 272S0 264.8400000000001 0 256C0 212.76 34.53 177.64 77.46 176.26C69.12 162.03 64 145.68 64 128V-32C64 -49.67 78.33 -64 96 -64H160C177.67 -64 192 -49.67 192 -32V64H288V-32C288 -49.67 302.33 -64 320 -64H384C401.67 -64 416 -49.67 416 -32V208H448C483.35 208 512 236.65 512 272V336C512 344.8400000000001 504.84 352 496 352zM384 -32H320V96H160V-32H96V128C96 163.29 124.71 192 160 192H278.06L384 165.52V-32zM480 272C480 254.36 465.64 240 448 240H384V198.48L304 218.48V361.3400000000001L313.34 352H396.22L412.22 320H480V272zM368 320C359.1600000000001 320 352 312.8400000000001 352 304S359.1600000000001 288 368 288S384 295.16 384 304S376.84 320 368 320z" />
+    <glyph glyph-name="dollar-sign"
+      unicode="&#xF155;"
+      horiz-adv-x="256" d=" M191.9 188.7L73.7 225.8C49.2 233.5 32 259 32 287.7C32 323.2 57.6 352 89 352H162.8C185 352 206.1 343.4 222.9 327.5C226 324.6 230.7 324.3 233.9 327.2L245.8 338C249.2 341.1 249.4 346.4 246.2 349.6C223.4 371.6 193.5 384.1 162.9 384.1H144V440C144 444.4 140.4 448 136 448H120C115.6 448 112 444.4 112 440V384H89C39.9 384 0 340.8 0 287.7C0 245.1 26.4 207.1 64.1 195.3L182.3 158.2C206.9 150.5 224 125 224 96.3C224 60.9 198.4 32 167 32H93.2C71 32 49.9 40.6 33.1 56.5C30 59.4 25.3 59.7 22.1 56.8L10.3 46C7 43 6.7 37.6 10 34.5C32.8 12.5 62.7 0 93.3 0H112V-56C112 -60.4 115.6 -64 120 -64H136C140.4 -64 144 -60.4 144 -56V0H167C216.1 0 256 43.2 256 96.3C256 138.8 229.6 176.8 191.9 188.7000000000001z" />
+    <glyph glyph-name="dolly-empty"
+      unicode="&#xF473;"
+      horiz-adv-x="576" d=" M570.5 153.4C569.1 157.6 564.6 159.9 560.4 158.5L321.3 78.7C307.6 89.3 290.7 96 272 96C265.7 96 259.7 95.1 253.9 93.7L158.2 362.7C146.9 394.7 116.7 416 82.8 416H8C3.6 416 0 412.4 0 408V392C0 387.6 3.6 384 8 384H82.8C103.1 384 121.2 371.2 128 352.1L224.7 80.2000000000001C201.4 63.0000000000001 187.5 33.7 193.3 1.3000000000001C198.9 -29.9999999999999 223.7 -55.8 254.8 -62.1999999999999C306.5 -73 352 -33.8 352 16C352 29.1 348.6 41.2 343 52.1L570.5 128.1C574.7 129.5 577 134 575.6 138.2000000000001L570.5 153.4zM272 -32C245.5 -32 224 -10.5 224 16S245.5 64 272 64S320 42.5 320 16S298.5 -32 272 -32z" />
+    <glyph glyph-name="dolly-flatbed-alt"
+      unicode="&#xF475;"
+      horiz-adv-x="640" d=" M208 96H592C600.8 96 608 103.2 608 112V240C608 248.8 600.8 256 592 256H544V368C544 376.8 536.8 384 528 384H208C199.2 384 192 376.8 192 368V112C192 103.2 199.2 96 208 96zM416 352H512V256H416V352zM416 224H576V128H416V224zM224 352H384V128H224V352zM632 32H128V440C128 444.4 124.4 448 120 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H96V8C96 3.6 99.6 0 104 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H632C636.4 0 640 3.6 640 8V24C640 28.4 636.4 32 632 32zM208 -32C199.2 -32 192 -24.8 192 -16S199.2 0 208 0S224 -7.2 224 -16S216.8 -32 208 -32zM496 -32C487.2 -32 480 -24.8 480 -16S487.2 0 496 0S512 -7.2 512 -16S504.8 -32 496 -32z" />
+    <glyph glyph-name="dolly-flatbed-empty"
+      unicode="&#xF476;"
+      horiz-adv-x="640" d=" M632 32H128V440C128 444.4 124.4 448 120 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H96V8C96 3.6 99.6 0 104 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H632C636.4 0 640 3.6 640 8V24C640 28.4 636.4 32 632 32zM224 -16C224 -24.8 216.8 -32 208 -32S192 -24.8 192 -16S199.2 0 208 0S224 -7.2 224 -16zM512 -16C512 -24.8 504.8 -32 496 -32S480 -24.8 480 -16S487.2 0 496 0S512 -7.2 512 -16z" />
+    <glyph glyph-name="dolly-flatbed"
+      unicode="&#xF474;"
+      horiz-adv-x="640" d=" M208 96H592C600.8 96 608 103.2 608 112V368C608 376.8 600.8 384 592 384H208C199.2 384 192 376.8 192 368V112C192 103.2 199.2 96 208 96zM352 352H448V271.3L411.9 285.7000000000001L400 290.5L388.1 285.7000000000001L352 271.3V352zM224 352H320V224L400 256L480 224V352H576V128H224V352zM632 32H128V440C128 444.4 124.4 448 120 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H96V8C96 3.6 99.6 0 104 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H632C636.4 0 640 3.6 640 8V24C640 28.4 636.4 32 632 32zM208 -32C199.2 -32 192 -24.8 192 -16S199.2 0 208 0S224 -7.2 224 -16S216.8 -32 208 -32zM496 -32C487.2 -32 480 -24.8 480 -16S487.2 0 496 0S512 -7.2 512 -16S504.8 -32 496 -32z" />
+    <glyph glyph-name="dolly"
+      unicode="&#xF472;"
+      horiz-adv-x="576" d=" M575.6 138.2L570.5 153.4C569.1 157.6 564.6 159.9 560.4 158.5L526 146.9L451.5 370.1C448.8 378.2 443.1 384.8 435.5 388.6C427.8 392.4 419.2 393 411.1 390.3L176.3 312L158.3 362.7C146.9 394.7 116.7 416 82.8 416H8C3.6 416 0 412.4 0 408V392C0 387.6 3.6 384 8 384H82.8C103.1 384 121.2 371.2 128 352.1L224.7 80.2000000000001C201.4 63.0000000000001 187.5 33.7 193.3 1.3000000000001C198.9 -29.9999999999999 223.7 -55.6999999999999 254.8 -62.1999999999999C306.5 -72.9 352 -33.8 352 16.0000000000001C352 29.1000000000001 348.6 41.2 343 52.1000000000001L570.5 128.1000000000001C574.7 129.5000000000001 577 134.0000000000001 575.6 138.2000000000001zM187 281.9L293.4 317.4L318.4 242.5C319.8 238.3 324.3 236 328.5 237.4L343.7 242.5C347.9 243.9 350.2 248.4 348.8 252.6L323.8 327.5L421.2 360L495.7 136.7L321.3 78.6C307.6 89.3 290.7 96 272 96C265.7 96 259.7 95.1 253.9 93.7L187 281.9zM272 -32C245.5 -32 224 -10.5 224 16S245.5 64 272 64S320 42.5 320 16S298.5 -32 272 -32z" />
+    <glyph glyph-name="donate"
+      unicode="&#xF4B9;"
+      horiz-adv-x="512" d=" M224.7 232.3L281.1 216.2C289.9 213.7 296 205.6 296 196.5C296 185.2000000000001 286.8 176 275.5 176H238.6C230.4 176 222.5 178.6 216 183.3C213 185.5 208.8 184.8 206.1999999999999 182.1L194.7999999999999 170.7000000000001C191.2999999999999 167.2000000000001 191.8999999999999 161.5000000000001 195.7999999999999 158.5000000000001C208.0999999999999 149.1000000000001 222.9999999999999 144.0000000000001 238.7 144.0000000000001H240.1V120.0000000000001C240.1 115.6000000000001 243.7 112.0000000000001 248.1 112.0000000000001H264.0999999999999C268.4999999999999 112.0000000000001 272.0999999999999 115.6000000000001 272.0999999999999 120.0000000000001V144.0000000000001H273.4999999999999C296.2999999999999 144.0000000000001 317.7999999999999 157.6000000000001 325.1999999999999 179.2000000000001C335.2999999999999 208.8000000000001 317.8999999999999 239.0000000000001 290.0999999999999 247.0000000000001L231 263.9C222.2 266.4 216.1 274.5 216.1 283.6C216.1 294.9 225.3 304.1 236.6 304.1H273.5C281.7 304.1 289.6 301.5 296.1 296.8C299.1 294.6 303.3 295.3 305.9000000000001 298L317.3 309.4C320.8 312.9 320.2 318.6 316.3 321.6C304 331 289.1 336.1 273.4000000000001 336.1H272V360C272 364.4 268.4 368 264 368H248C243.6 368 240 364.4 240 360V336H236.5C205.9 336 181.4 309.7 184.3 278.5C186.3 256.4 203.3 238.4 224.7 232.3zM480 160H448C458.3 184.6 464 211.6 464 240C464 354.9 370.9 448 256 448S48 354.9 48 240C48 211.6 53.7 184.6 64 160H32C14.3 160 0 145.6 0 128V-32C0 -49.6 14.3 -64 32 -64H480C497.7 -64 512 -49.6 512 -32V128C512 145.6 497.7 160 480 160zM256 416C353 416 432 337 432 240S353 64 256 64S80 143 80 240S159 416 256 416zM480 -32H32V128H80.9C97.5 102.2 119.5 80.3 145.5 64H104C99.6 64 96 60.4 96 56V40C96 35.6 99.6 32 104 32H408C412.4 32 416 35.6 416 40V56C416 60.4 412.4 64 408 64H366.5C392.5 80.3 414.5 102.2 431.1 128H480V-32z" />
+    <glyph glyph-name="door-closed"
+      unicode="&#xF52A;"
+      horiz-adv-x="640" d=" M400 160C417.67 160 432 174.33 432 192S417.67 224 400 224S368 209.67 368 192S382.33 160 400 160zM632 -32H512V416C512 433.67 497.67 448 480 448H160C142.33 448 128 433.67 128 416V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM480 -32H160V416H480V-32z" />
+    <glyph glyph-name="door-open"
+      unicode="&#xF52B;"
+      horiz-adv-x="640" d=" M288 160C301.25 160 312 174.33 312 192S301.25 224 288 224S264 209.67 264 192S274.75 160 288 160zM632 -32H512V352C512 369.67 497.67 384 480 384H384V414.82C384 433.58 369.2 448 352.06 448C349.49 448 346.87 447.68 344.23 446.99L152.23 397.25C137.99 393.56 128 380.3 128 365.08V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM352 414.82V-32H160L160.26 366.27L352.06 415.96L352 414.82zM480 -32H384V352H480V-32z" />
+    <glyph glyph-name="dot-circle"
+      unicode="&#xF192;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -24C137.337 -24 40 72.055 40 192C40 310.663 136.055 408 256 408C374.663 408 472 311.945 472 192C472 73.337 375.945 -24 256 -24zM256 272C211.817 272 176 236.183 176 192S211.817 112 256 112S336 147.817 336 192S300.183 272 256 272zM256 144C229.533 144 208 165.533 208 192S229.533 240 256 240S304 218.467 304 192S282.467 144 256 144z" />
+    <glyph glyph-name="dove"
+      unicode="&#xF4BA;"
+      horiz-adv-x="512" d=" M368 287.9C368 279.1 375.2 271.9 384 271.9S400 279.1 400 287.9S392.8 303.9 384 303.9S368 296.8 368 287.9zM384 384C337.5 384 298.7 350.9 289.9 306.9C260.7 343.5 241 387.2 233.9 434.2C231.8 447.4 215 453.1 206 442.5C170.7 400.8 153 354 147.3 320.2C122 344.6 101.3 373.5 86.9 406.2C81.4 418.8 63.6 419.3 57.8 406.9C41.8 372.9 32.5 335 32 294.9C31.4 252 41.8 164.7000000000001 142.6 83.1L13.8 50.9C1.5 47.8 -3.9 33.7 3 23C22.9 -7.7 71.9 -59.6 177.8 -64C191.2 -64.6 200.5 -57.2 203 -55L266.9 -0.2H320C408.4 -0.2 480 71.5 480 159.9V288L512 384H384zM209.9 393.7C224 343.4 251.1 297.7 288 260.7V248C246.9 255.4 209.2 272.3 176.7 295.8C179.9 337.6 196.1 371.6 209.9 393.7000000000001zM448 293.3V159.8C448 89.2000000000001 390.6 31.7 320 31.7H255.1S179.9 -32.1 179.1 -32.1C104.5 -28.9999999999999 63.3 0.3 41.7 24.8L212.5 67.5C164.9 106.2 62.4 171.6 64 294.5C64.3 317.2 67.7 339.4 74.3 360.9C156.4 221.8 300 212.1 320 209.8V287.9C320 323.3 348.7 352 384 352H467.6L448 293.3z" />
+    <glyph glyph-name="download"
+      unicode="&#xF019;"
+      horiz-adv-x="512" d=" M452 16C452 5 443 -4 432 -4S412 5 412 16S421 36 432 36S452 27 452 16zM368 36C357 36 348 27 348 16S357 -4 368 -4S388 5 388 16S379 36 368 36zM512 84V-20C512 -44.3 492.3 -64 468 -64H44C19.7 -64 0 -44.3 0 -20V84C0 108.3 19.7 128 44 128H143.4L87 184.4C61.8 209.6 79.7 252.7 115.3 252.7H168V408C168 430.1 185.9 448 208 448H304C326.1 448 344 430.1 344 408V252.7H396.7C432.3 252.7 450.1 209.6 425 184.4L368.6 128H468C492.3 128 512 108.3 512 84zM250.3 66.3C253.4 63.2 258.5 63.2 261.6 66.3L402.3 207C407.3 212 403.8 220.7 396.6 220.7H312V408C312 412.4 308.4 416 304 416H208C203.6 416 200 412.4 200 408V220.7H115.3C108.2 220.7 104.6 212.1 109.6 207L250.3 66.3zM480 84C480 90.6 474.6 96 468 96H336.6L284.3 43.7C268.7 28.1 243.3 28.1 227.7 43.7L175.4 96H44C37.4 96 32 90.6 32 84V-20C32 -26.6 37.4 -32 44 -32H468C474.6 -32 480 -26.6 480 -20V84z" />
+    <glyph glyph-name="drafting-compass"
+      unicode="&#xF568;"
+      horiz-adv-x="512" d=" M433.86 143.69C455.33 161.86 474.45 183.03 489.61 207.49C491.99 211.32 490.62 216.44 486.72 218.7L472.86 226.73C469.13 228.89 464.45 227.62 462.17 223.96C449.88 204.21 434.68 186.88 417.6600000000001 171.76L339.9500000000001 306.35C347.39 319.9700000000001 352 335.37 352 352C352 405.02 309.02 448 256 448S160 405.02 160 352C160 335.37 164.61 319.9700000000001 172.05 306.3400000000001L96.11 174.81C80.3 189.25 65.9 205.38 54.34 223.95C52.06 227.61 47.38 228.89 43.65 226.72L29.79 218.69C25.89 216.43 24.52 211.32 26.9 207.48C41.33 184.19 59.66 164.26 79.9 146.72L0 8.34L7.02 -49.91C8.03 -58.26 15.13 -64.01 22.9 -64.01C24.98 -64.01 27.11 -63.6 29.19 -62.71L83.14 -39.67L161.99 96.9C192.36 85.1900000000001 224.82 78.5700000000001 258.25 78.5700000000001C290.32 78.5700000000001 321.52 84.6900000000001 350.88 95.39L428.86 -39.67L482.81 -62.71C484.88 -63.59 487.01 -64.01 489.1 -64.01C496.87 -64.01 503.98 -58.26 504.98 -49.91L512 8.34L433.86 143.6900000000001zM392.11 152.01C383.24 146.04 374 140.71 364.42 135.97L291.1600000000001 262.86C301.2700000000001 266.85 310.35 272.64 318.4400000000001 279.62L392.1100000000001 152.0099999999999zM256 416C291.35 416 320 387.35 320 352S291.35 288 256 288S192 316.65 192 352S220.65 416 256 416zM60.76 -14.42L36.24 -24.89L33.05 1.5799999999999L193.57 279.62C201.66 272.64 210.74 266.8499999999999 220.85 262.86L60.76 -14.42zM258.25 110.59C230.52 110.59 203.53 115.7 178.14 124.89L253.95 256.2C254.65 256.18 255.29 255.99 255.99 255.99S257.34 256.18 258.03 256.2L334.57 123.63C310.24 115.41 284.61 110.59 258.25 110.59zM475.76 -24.89L451.24 -14.42L380.42 108.24C389.9600000000001 113.06 399.1600000000001 118.44 408.0800000000001 124.34L478.95 1.58L475.76 -24.89z" />
+    <glyph glyph-name="dragon"
+      unicode="&#xF6D5;"
+      horiz-adv-x="640" d=" M481.01 328.05C495.93 327.19 508.36 337.94 511.89 352.63L453.47 368C446.98 340.88 468.98 328.74 481.01 328.05zM535.51 196.25C505.67 213.23 479.9 227.89 479.9 247.63V256H496.86L525.4799999999999 233.97C533.8199999999999 227.55 544.2199999999999 224 554.7499999999999 224H583.9299999999998C605.0799999999998 224 624.0199999999999 238.17 629.9499999999998 258.45L637.3499999999998 283.61C643.1899999999998 303.41 639.2299999999998 325.05 626.7299999999998 341.52L569.8 416.4100000000001C554.78 436.19 530.98 448 506.14 448H297.1600000000001C277.6900000000001 448 264.0700000000001 423.96 281.7600000000001 406.75L319.2500000000001 376.5L286.7000000000001 363.08C270.5100000000001 355.14 267.5600000000001 330.27 287.8300000000001 320.44L335.9400000000001 301.19V250.3L145.6400000000001 298.18C126.46 303.04 105.96 295.35 94.65 279.1L3.76 148.88C-1.27 140.97 -1.24 131.16 3.79 123.29C5.48 120.67 13.33 110.18 28.78 112.38L143.8 134.18L131.73 116.88C126.7 108.97 126.73 99.16 131.76 91.29C138.46 80.84 149.63 79.43 155.91 80.24L358.78 107.63C367.11 90.92 376.95 75.28 389.95 61.9C259.4 53.15 137.56 25.1 25.82 0.57C10.86 -2.7 0.01 -16.1 0.01 -31.31C0.01 -49.31 14.76 -63.95 32.88 -63.95L506.89 -64C549.54 -64 590.03 -44.23 615.18 -11.11C638.5799999999999 19.69 645.67 57.62 635.0799999999999 95.69C620.5799999999999 147.84 573.4 174.69 535.51 196.25zM41.72 147.38L120.89 260.79C124.64 266.18 131.48 268.65 137.89 267.15L221.96 246.13L170 171.7L41.72 147.38zM168.9 114.28L255.13 237.76L335.92 217.26C335.92 169.36 344.6 144.63 346.5200000000001 138.26L168.9 114.28zM506.89 -32H32C262.53 24.77 384.62 30.36 432.4700000000001 32.02C448.0100000000001 32.55 453.6900000000001 52.85 440.6900000000001 61.36C391.7300000000001 93.59 367.9300000000001 142.28 367.9300000000001 210.19V312.02C367.9300000000001 318.5700000000001 363.9600000000001 324.44 357.8700000000001 326.88L319.7200000000001 342.11L356.4300000000001 357.2000000000001C361.6500000000001 359.36 365.3700000000001 364.11 366.1800000000001 369.7000000000001S364.7700000000001 380.9000000000001 360.3700000000001 384.4500000000001L321.15 416H506.14C521.04 416 535.3199999999999 408.92 544.3199999999999 397.05L601.2399999999999 322.14C607.6199999999999 313.76 609.6399999999999 302.75 606.68 292.66L599.28 267.4700000000001C597.28 260.7200000000001 590.97 256 583.9399999999999 256H554.76C551.2 256 547.86 257.14 545.01 259.3300000000001L512.05 284.69A16.01 16.01 0 0 1 502.3 288H463.9C455.06 288 447.9 280.8400000000001 447.9 272V247.62C447.9 209.28 482.77 189.43 519.6999999999999 168.43C555.8799999999999 147.84 593.28 126.54 604.27 87.1C623.63 17.24 563.13 -32 506.89 -32z" />
+    <glyph glyph-name="draw-circle"
+      unicode="&#xF5ED;"
+      horiz-adv-x="512" d=" M512 192C512 225.51 486.16 252.69 453.37 255.46C432.89 318.9600000000001 382.9600000000001 368.89 319.4600000000001 389.37C316.69 422.1600000000001 289.51 448 256 448S195.31 422.1600000000001 192.54 389.37C129.04 368.89 79.11 318.9600000000001 58.63 255.46C25.84 252.69 0 225.51 0 192C0 158.49 25.84 131.31 58.63 128.54C79.11 65.04 129.04 15.11 192.54 -5.37C195.31 -38.16 222.49 -64 256 -64S316.69 -38.16 319.46 -5.37C382.96 15.11 432.89 65.04 453.37 128.54C486.16 131.31 512 158.49 512 192zM256 416C273.64 416 288 401.64 288 384S273.64 352 256 352S224 366.36 224 384S238.36 416 256 416zM32 192C32 209.64 46.36 224 64 224S96 209.64 96 192S81.64 160 64 160S32 174.36 32 192zM256 -32C238.36 -32 224 -17.64 224 0S238.36 32 256 32S288 17.64 288 0S273.64 -32 256 -32zM314.12 26.47C304.04 48.57 281.88 64 256 64S207.96 48.57 197.88 26.47C147.72 44.14 108.15 83.71 90.48 133.87C112.57 143.96 128 166.12 128 192C128 217.88 112.57 240.04 90.47 250.12C108.14 300.29 147.71 339.85 197.87 357.52C207.96 335.43 230.12 320 256 320S304.04 335.43 314.12 357.53C364.28 339.86 403.85 300.29 421.52 250.13C399.43 240.04 384 217.88 384 192C384 166.12 399.43 143.96 421.53 133.88C403.85 83.71 364.28 44.14 314.12 26.47zM448 160C430.36 160 416 174.36 416 192S430.36 224 448 224S480 209.64 480 192S465.64 160 448 160z" />
+    <glyph glyph-name="draw-polygon"
+      unicode="&#xF5EE;"
+      horiz-adv-x="448" d=" M384 96C377.7 96 371.74 94.81 365.99 93.11L333.57 147.13C344.95 158.69 352 174.51 352 192S344.95 225.31 333.58 236.87L366 290.89C371.75 289.19 377.71 288 384.01 288C419.36 288 448.01 316.65 448.01 352S419.36 416 384.01 416C354.22 416 329.41 395.55 322.27 368H125.74C118.6 395.55 93.79 416 64 416C28.65 416 0 387.35 0 352C0 322.2100000000001 20.44 297.4 48 290.26V93.73C20.44 86.6 0 61.79 0 32C0 -3.35 28.65 -32 64 -32C93.79 -32 118.6 -11.56 125.74 16H322.27C329.41 -11.56 354.22 -32 384.01 -32C419.36 -32 448.01 -3.35 448.01 32C448 67.35 419.35 96 384 96zM80 93.74V290.26C102.41 296.06 119.93 313.58 125.74 336H322.27C325.13 324.9600000000001 330.67 315.01 338.43 307.13L306.01 253.11C300.26 254.81 294.3 256 288 256C252.65 256 224 227.35 224 192S252.65 128 288 128C294.3 128 300.26 129.19 306.01 130.89L338.43 76.87C330.67 68.99 325.13 59.04 322.27 48H125.74A63.81399999999999 63.81399999999999 0 0 1 80 93.74zM288 160C270.36 160 256 174.36 256 192S270.36 224 288 224S320 209.64 320 192S305.64 160 288 160zM384 384C401.64 384 416 369.64 416 352S401.64 320 384 320S352 334.36 352 352S366.36 384 384 384zM32 352C32 369.64 46.36 384 64 384S96 369.64 96 352S81.64 320 64 320S32 334.36 32 352zM64 0C46.36 0 32 14.36 32 32S46.36 64 64 64S96 49.64 96 32S81.64 0 64 0zM384 0C366.36 0 352 14.36 352 32S366.36 64 384 64S416 49.64 416 32S401.64 0 384 0z" />
+    <glyph glyph-name="draw-square"
+      unicode="&#xF5EF;"
+      horiz-adv-x="448" d=" M400 93.74V290.26C427.56 297.4 448 322.21 448 352C448 387.35 419.35 416 384 416C354.21 416 329.4 395.55 322.26 368H125.74C118.6 395.55 93.79 416 64 416C28.65 416 0 387.35 0 352C0 322.2100000000001 20.44 297.4 48 290.26V93.73C20.44 86.6 0 61.79 0 32C0 -3.35 28.65 -32 64 -32C93.79 -32 118.6 -11.56 125.74 16H322.27C329.41 -11.56 354.22 -32 384.01 -32C419.36 -32 448.01 -3.35 448.01 32C448 61.79 427.56 86.6 400 93.74zM322.26 48H125.74C119.94 70.41 102.42 87.93 80 93.74V290.26C102.41 296.06 119.93 313.58 125.74 336H322.27C328.07 313.5900000000001 345.59 296.07 368.01 290.26V93.73C345.59 87.93 328.07 70.41 322.26 48zM384 384C401.64 384 416 369.64 416 352S401.64 320 384 320S352 334.36 352 352S366.36 384 384 384zM32 352C32 369.64 46.36 384 64 384S96 369.64 96 352S81.64 320 64 320S32 334.36 32 352zM64 0C46.36 0 32 14.36 32 32S46.36 64 64 64S96 49.64 96 32S81.64 0 64 0zM384 0C366.36 0 352 14.36 352 32S366.36 64 384 64S416 49.64 416 32S401.64 0 384 0z" />
+    <glyph glyph-name="dreidel"
+      unicode="&#xF792;"
+      horiz-adv-x="448" d=" M438.6 384L416 406.6C403.5 419.1 383.2 419.1 370.7 406.6L278.1 314L217.5 374.6C211 381.1 202.4 384.4 193.9 384.4S176.8000000000001 381.1 170.3000000000001 374.6L19.6 224C7 211.5 0 194.5 0 176.7V34.9C0 -2.1 29.9 -32 66.9 -32H208.7C226.4 -32 243.4000000000001 -25 256 -12.4L406.7 138.3C419.8 151.4 419.8 172.5 406.7 185.6L346.1 246.2L438.7 338.8C451.0999999999999 351.2000000000001 451.0999999999999 371.5 438.5999999999999 384zM233.4 10.2C226.8 3.6 218.1 0 208.7 0H66.9C47.6 0 32 15.6 32 34.9V176.7C32 186 35.6 194.8 42.2 201.4L101.6 260.8L292.8 69.6L233.4 10.2zM384 160.9L315.3 92.2L124.2 283.4L192.9 352C193 352.1 193.3 352.4 193.9 352.4L194.9 352L384 162.9C384.6 162.4 384.6 161.4 384 160.9zM323.4 268.8L300.8 291.4L393.4 384L416 361.4L323.4 268.8z" />
+    <glyph glyph-name="drum-steelpan"
+      unicode="&#xF56A;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 358.69 0 288V96C0 25.31 128.94 -32 288 -32S576 25.31 576 96V288C576 358.69 447.06 416 288 416zM288 384C313.68 384 338.43 382.54 361.82 379.91L346.37 319.83C341.86 302.28 315.67 288 288 288S234.14 302.27 229.63 319.82L214.18 379.91C237.57 382.54 262.32 384 288 384zM382.8400000000001 198.88C353.49 194.48 321.54 192 288 192C254.21 192 222.04 194.52 192.51 198.97C212.58 218.62 225.89 244.41 229.63 272.44C245.95 262.0800000000001 266.6600000000001 256 288 256C309.02 256 329.4700000000001 261.87 345.68 271.95C349.32 243.87 362.73 218.21 382.8400000000001 198.88zM178.26 374.63L195.23 314.5900000000001C207.28 271.93 187.59 227.88 150.5 207.12C79.32 224.16 32 253.98 32 288C32 326.27 91.87 359.21 178.26 374.63zM544 96C544 56.86 444.27 0 288 0S32 56.86 32 96V229.53C79.81 188.27 176.38 160 288 160S496.19 188.27 544 229.54V96zM425.61 207.13C389.57 225.82 369.06 266.9700000000001 378.6500000000001 308.29L394.2100000000001 375.27C482.52 360.13 544 326.79 544 288C544 254 496.72 224.19 425.61 207.13z" />
+    <glyph glyph-name="drum"
+      unicode="&#xF569;"
+      horiz-adv-x="576" d=" M453.26 328.73L569.8 419.36C576.8 424.78 578.05 434.83 572.6099999999999 441.81C567.1399999999999 448.81 557.05 450.06 550.1699999999998 444.61L414.2499999999999 338.91C376.09 347.21 333.35 352 288 352C128.94 352 0 294.69 0 224V64C0 -6.69 128.94 -64 288 -64S576 -6.69 576 64V224C575.99 267.3400000000001 527.41 305.57 453.26 328.73zM288 320C320.99 320 352.41 317.5800000000001 381.36 313.32L262.19 220.63C255.19 215.21 253.94 205.16 259.38 198.18C262.54 194.13 267.25 192.01 272 192.01C275.44 192.01 278.9100000000001 193.1 281.81 195.39L423.26 305.4C495.66 288.44 543.99 258.37 543.99 224C543.99 170.98 429.38 128 287.99 128S32 170.98 32 224S146.61 320 288 320zM272 96.36V-31.64C215.14 -30.19 166.42 -21.26 128 -8.56V117.59C169.59 105.21 218.91 97.66 272 96.36zM304 96.36C357.0900000000001 97.66 406.4 105.21 448 117.59V-8.55C409.58 -21.2499999999999 360.86 -30.1799999999999 304 -31.6299999999999V96.36zM32 64V165.54C48.17 151.5800000000001 69.95 139.17 96 128.79V3.85C55.05 22.52 32 45.27 32 64zM479.99 3.85V128.79C506.04 139.17 527.82 151.5800000000001 543.99 165.54V64C543.99 45.27 520.94 22.52 479.99 3.85z" />
+    <glyph glyph-name="drumstick-bite"
+      unicode="&#xF6D7;"
+      horiz-adv-x="512" d=" M471.39 390.42C439.73 426.03 396.12 446.4700000000001 348.54 447.94C301 449.15 255.67 431.28 222.51 398.3C195.69 371.67 160.05 328.07 160.05 257.45V188.15L116.66 144.78C110.72 138.84 101.97 141.7 99.44 142.72A72.413 72.413 0 0 1 21.29 126.7C7.56 112.99 0 94.74 0 75.33C0 55.94 7.56 37.68 21.29 23.98C33.67 11.59 50.17 4.54 67.71 3.66C68.59 -13.89 75.65 -30.38 88.03 -42.77C102.19 -56.9300000000001 120.79 -64.01 139.39 -64.01C158.02 -64.01 176.62 -56.93 190.78 -42.77C211.29 -22.25 217.57 8.42 206.78 35.4C205.78 37.93 202.9 46.68 208.84 52.61L252.23 95.98H322.38C339.35 95.98 355.83 98.21 372.77 102.81C377.62 104.12 381.59 107.64 383.43 112.31C385.31 116.97 384.87 122.25 382.27 126.55C372.86 142.04 368.11 158.68 368.11 175.99C368.11 228.93 411.19 272 464.14 272C472.49 272 481.15 270.5800000000001 491.43 267.52C496.28 266.05 501.53 266.99 505.56 270.02C509.62 273.05 512 277.8 512 282.87C511.97 323.35 497.93 360.54 471.39 390.42zM186.21 75.24C173.05 62.1 169.55 42.27 177.08 23.51C183.08 8.45 179.58 -8.68 168.14 -20.14C152.79 -35.47 126.06 -35.5 110.65 -20.14C101.08 -10.58 97.49 3.16 100.8 17.57L106.52 42.46L81.61 36.74C67.32 33.49 53.54 37.0099999999999 43.91 46.6C36.22 54.27 32 64.48 32 75.32C32 86.18 36.22 96.39 43.91 104.06C55.35 115.51 72.39 119.05 87.55 112.98C106.27 105.49 126.16 109.01 139.28 122.1400000000001L165.33 148.1800000000001C173.45 126.5500000000001 190.58 109.4400000000001 212.29 101.3000000000001L186.21 75.2400000000001zM464.14 304C393.52 304 336.1 246.57 336.1 175.98C336.1 160.21 339.1600000000001 144.51 345.0700000000001 129.63C337.5400000000001 128.52 330.0000000000001 127.97 322.3800000000001 127.97H240.4500000000001C213.7500000000001 127.97 192.0600000000001 149.5 192.0600000000001 175.98V257.44C192.0600000000001 302.7299999999999 208.4100000000001 339.17 245.0800000000001 375.5999999999999C271.4000000000001 401.76 306.0400000000001 416.01 343.0800000000001 416.01C344.5800000000001 416.01 346.0800000000001 415.99 347.5800000000001 415.95C386.2500000000001 414.75 421.73 398.14 447.4500000000001 369.16C464.2400000000001 350.2699999999999 474.77 327.7 478.4900000000001 303.03C473.58 303.67 468.83 304 464.14 304z" />
+    <glyph glyph-name="drumstick"
+      unicode="&#xF6D6;"
+      horiz-adv-x="512" d=" M471.24 390.41C439.61 426.03 396.02 446.45 348.46 447.94C301.56 449.2200000000001 255.59 431.31 222.43 398.29C195.62 371.66 160 328.06 160 257.44V188.14L116.63 144.77C110.69 138.88 101.97 141.72 99.44 142.71C72.5 153.49 41.79 147.16 21.29 126.69C7.56 112.99 0 94.74 0 75.33C0 55.94 7.56 37.68 21.28 23.98C33.65 11.59 50.15 4.54 67.68 3.67C68.55 -13.8800000000001 75.62 -30.3700000000001 87.99 -42.76C102.15 -56.9200000000001 120.74 -64.01 139.36 -64C157.95 -64 176.55 -56.92 190.7 -42.76C211.2 -22.27 217.48 8.4 206.7 35.41C205.7 37.94 202.86 46.68 208.76 52.62L252.13 95.98H322.25C361.12 95.98 395.25 106.17 426.5900000000001 127.1400000000001C473.03 158.16 503.62 206.8200000000001 510.5600000000001 260.6400000000001C516.73 308.7900000000001 502.77 354.8900000000001 471.2400000000001 390.4100000000001zM186.12 75.22C173 62.05 169.53 42.23 177.03 23.51C183.03 8.4300000000001 179.53 -8.6999999999999 168.09 -20.1399999999999C152.18 -35.9899999999999 126.47 -35.9499999999999 110.62 -20.1399999999999C101.06 -10.5799999999999 97.46 3.1600000000001 100.78 17.5700000000001L106.5 42.46L81.59 36.74C67.34 33.49 53.5 37.01 43.9 46.6C36.22 54.28 32 64.48 32 75.33C32 86.1900000000001 36.22 96.39 43.91 104.0700000000001C55.32 115.5200000000001 72.41 119.0600000000001 87.56 112.9900000000001C106.37 105.4700000000001 126.12 109.02 139.25 122.1500000000001L165.29 148.1900000000001C173.4 126.5600000000001 190.53 109.4500000000001 212.22 101.3200000000001L186.12 75.2200000000001zM478.83 264.7100000000001C473.17 220.72 447.02 179.2500000000001 408.83 153.73C382.92 136.4 354.61 127.98 322.27 127.98H240.37C213.68 127.98 192 149.51 192 175.99V257.45C192 302.74 208.34 339.18 245 375.6C271.31 401.76 305.94 416.01 343 416.01C344.4700000000001 416.01 345.9700000000001 415.99 347.5 415.95C386.16 414.75 421.5900000000001 398.14 447.31 369.16C472.61 340.66 483.83 303.56 478.83 264.71z" />
+    <glyph glyph-name="duck"
+      unicode="&#xF6D8;"
+      horiz-adv-x="576" d=" M432 192C502.69 192 576 249.31 576 320H478.43C477.99 323.21 477.87 326.36 477.14 329.61C468.12 370.16 435.53 403.3400000000001 395.08 412.82C385.9 414.98 376.83 416 368 416C306.14 416 256 365.86 256 304V192H195.27C169.59 192 145.48 202.07 125.32 217.99C120.32 221.94 114.19 224.01 107.97 224.01C104.36 224.01 100.73 223.31 97.26 221.89C86.77 217.53 80 207.4 80 196.05C80 194.66 80.37 193.38 80.41 192H32.25C12.87 192 -2.72 174.79 0.4 155.66C17.76 49.23 110.13 -32 221.47 -32H321.41C389.65 -32 450.26 23.86 447.94 92.06C446.93 121.8 434.85 148.59 416.01 169.04V192H432zM478.73 288H538.52C526.93 255.32 482.12 230.75 447.05 225.2C463.7499999999999 241.81 475.1899999999999 263.57 478.73 288zM392.4600000000001 147.36C406.9000000000001 131.68 415.24 111.66 415.9500000000001 90.98C416.7000000000001 68.8 408.0000000000001 47.15 391.4500000000001 30.02C373.0100000000001 10.9400000000001 347.48 1e-13 321.4100000000001 1e-13H221.47C126.5 1e-13 47.42 69.3100000000001 32.14 160.0000000000001H84.96C101.17 95.83 158.91 48.0000000000001 228.05 48.0000000000001H248C252.42 48.0000000000001 256 51.58 256 56.0000000000001V72.0000000000001C256 76.4200000000001 252.42 80.0000000000001 248 80.0000000000001H228.04C167.24 80.0000000000001 117.2 127.0000000000001 112.38 186.59C133.64 168.9400000000001 161.47 160.0000000000001 195.26 160.0000000000001H288V304C288 348.18 323.82 384 368 384S448 348.18 448 304C448 270.17 426.93 241.4 397.25 229.7C384.43 223.58 385.64 224.16 384 223.37V156.54L392.46 147.36zM368 320C359.1600000000001 320 352 312.8400000000001 352 304S359.1600000000001 288 368 288S384 295.16 384 304S376.84 320 368 320z" />
+    <glyph glyph-name="dumbbell"
+      unicode="&#xF44B;"
+      horiz-adv-x="640" d=" M632 208H608V304C608 330.5 586.5 352 560 352H528C522.4 352 517 350.8 512 349.1V368C512 394.5 490.5 416 464 416H432C405.5 416 384 394.5 384 368V208H256V368C256 394.5 234.5 416 208 416H176C149.5 416 128 394.5 128 368V349.1C123 350.9 117.6 352 112 352H80C53.5 352 32 330.5 32 304V208H8C3.6 208 0 204.4 0 200V184C0 179.6 3.6 176 8 176H32V80C32 53.5 53.5 32 80 32H112C117.6 32 123 33.2 128 34.9V16C128 -10.5 149.5 -32 176 -32H208C234.5 -32 256 -10.5 256 16V176H384V16C384 -10.5 405.5 -32 432 -32H464C490.5 -32 512 -10.5 512 16V34.9C517 33.1 522.4 32 528 32H560C586.5 32 608 53.5 608 80V176H632C636.4 176 640 179.6 640 184V200C640 204.4 636.4 208 632 208zM112 64H80C71.2 64 64 71.2 64 80V304C64 312.8 71.2 320 80 320H112C120.8 320 128 312.8 128 304V80C128 71.2 120.8 64 112 64zM224 16C224 7.2 216.8 0 208 0H176C167.2 0 160 7.2 160 16V368C160 376.8 167.2 384 176 384H208C216.8 384 224 376.8 224 368V16zM480 16C480 7.2 472.8 0 464 0H432C423.2 0 416 7.2 416 16V368C416 376.8 423.2 384 432 384H464C472.8 384 480 376.8 480 368V16zM576 80C576 71.2 568.8 64 560 64H528C519.2 64 512 71.2 512 80V304C512 312.8 519.2 320 528 320H560C568.8 320 576 312.8 576 304V80z" />
+    <glyph glyph-name="dumpster-fire"
+      unicode="&#xF794;"
+      horiz-adv-x="640" d=" M551.1 284.8C536.2 271.5 522.8000000000001 257.6 510.9 243.6C491.4 269.4000000000001 467.3 295.6 439.9000000000001 320C369.7000000000001 257.3 319.9000000000001 175.7000000000001 319.9000000000001 126.4C319.9000000000001 38.9 391.5 -32 479.9 -32S639.9000000000001 38.9 639.9000000000001 126.4C640.0000000000001 163 602.9000000000001 238.6 551.1000000000001 284.8zM494.1 1.4C489.4 0.9 484.9 1e-13 480 1e-13S470.6 0.9 465.9 1.4C434.1 7.8 410.1 35.6 410.1 68.8000000000001C410.1 82.8000000000001 425.5 114.9000000000001 454.6 147.1000000000001C461.7 139.5000000000001 468.2 131.8000000000001 473.9999999999999 124.1000000000001L498.1 92.2000000000001L524 122.7000000000001C524.1 122.8000000000001 524.1 122.9000000000001 524.2 122.9000000000001C540.4000000000001 100.7000000000001 549.7 76.8000000000001 549.7 68.8000000000001C549.8000000000001 35.6000000000001 525.8000000000001 7.8000000000001 494.1 1.4000000000001zM579.6 48.0000000000001C581 54.7 581.8000000000001 61.7000000000001 581.8000000000001 68.8000000000001C581.8000000000001 92.1000000000001 558.2 140.2000000000001 525.2 169.6000000000001C515.7 161.2000000000001 507.2 152.3000000000001 499.6 143.4000000000001C487.2 159.8000000000001 471.8 176.5000000000001 454.4 192.0000000000001C409.7000000000001 152.1000000000001 378 100.1000000000001 378 68.8000000000001C378 61.7000000000001 378.8 54.7 380.2 48.0000000000001C362.7 69.6000000000001 351.8 96.7000000000001 351.8 126.4000000000001C351.8 158.0000000000001 384.3 219.6000000000001 439.9 275.9000000000001C456.7 259.2000000000001 472.1 241.6000000000001 485.2 224.3000000000001L509.3 192.4000000000001L535.2 222.9000000000001C540.1 228.7000000000001 545.1 234.3000000000001 550.3000000000001 239.7000000000001C584.6 199.8000000000001 607.8000000000001 148.3000000000001 607.8000000000001 126.4000000000001C608.0000000000001 96.6000000000001 597.1 69.6000000000001 579.6 48.0000000000001zM128 32V0H96L67.8 256H340.6C348.1 266.7 356.1 277.4 364.9000000000001 288H304V384H410.9L418.9 344C424.9 349.3 432.5 352 440 352C443.5 352 447 351.3 450.3 350.1L443.5 384H522.2L536.5 312.7C541.1 315.1 546 316.8 551.1 316.8C557.7 316.8 564 314.4 569.6 310.4L551.5 400.9C549.7 409.8 543.3 416 536 416H40C32.7 416 26.3 409.8 24.5 400.9L0.5 280.9C-2 268.2 5.6 256 16 256H35.5L42.6 192H8C3.6 192 0 188.4 0 184V168C0 163.6 3.6 160 8 160H46.2L64 0V-16C64 -24.8 71.2 -32 80 -32H144C152.8 -32 160 -24.8 160 -16V0H336.8C328 9.8 320.1 20.5 313.5 32H128zM165.1 384H272V288H145.9L165.1 384zM34.6 288L53.8 384H132.5L113.3 288H34.6z" />
+    <glyph glyph-name="dumpster"
+      unicode="&#xF793;"
+      horiz-adv-x="576" d=" M568 192H533.3L540.4 256H560C570.4 256 578 268.2 575.5 280.9L551.5 400.9C549.7 409.8 543.3 416 536 416H40C32.7 416 26.3 409.8 24.5 400.9L0.5 280.9C-2 268.2 5.6 256 16 256H35.5L42.6 192H8C3.6 192 0 188.4 0 184V168C0 163.6 3.6 160 8 160H46.2L64 0V-16C64 -24.8 71.2 -32 80 -32H144C152.8 -32 160 -24.8 160 -16V0H416V-16C416 -24.8 423.2 -32 432 -32H496C504.8 -32 512 -24.8 512 -16V0L529.8 160H568C572.4 160 576 163.6 576 168V184C576 188.4 572.4 192 568 192zM541.4 288H462.7L443.5 384H522.2L541.4000000000001 288zM145.9 288L165.1 384H272V288H145.9zM304 384H410.9L430.1 288H304V384zM53.8 384H132.5L113.3 288H34.6L53.8 384zM480 0H448V32H128V0H96L67.8 256H508.3L480 0z" />
+    <glyph glyph-name="dungeon"
+      unicode="&#xF6D9;"
+      horiz-adv-x="512" d=" M240 270.38V-24C240 -28.42 243.58 -32 248 -32H264C268.42 -32 272 -28.42 272 -24V270.38C266.77 271.27 261.48 272 256 272S245.23 271.27 240 270.38zM176 228.87V-24C176 -28.42 179.58 -32 184 -32H200C204.42 -32 208 -28.42 208 -24V258.64C195.22 251.19 184.16 241.17 176 228.87zM512 152C512 161.08 508.96 169.47 503.84 176.19C509.3 183.5 512.17 192.55 511.82 201.68C510.5 236.87 502.06 270.85 486.73 302.65C482.24 311.9700000000001 474.25 319.06 464.79 322.64C465.65 332.78 462.63 342.92 456.28 350.9C434.9400000000001 377.75 408.9100000000001 399.73 378.92 416.23A40.004 40.004 0 0 1 359.73 421.1600000000001C356.2800000000001 421.1600000000001 352.9000000000001 420.71 349.6400000000001 419.85C344.4700000000001 428.67 336.0900000000001 435.23 326.2400000000001 438.05C303.29 444.65 279.65 448 256 448S208.71 444.65 185.75 438.05C175.92 435.23 167.53 428.67 162.36 419.85C159.1 420.71 155.72 421.1600000000001 152.27 421.1600000000001C145.58 421.1600000000001 138.94 419.46 133.08 416.24C103.08 399.74 77.05 377.76 55.71 350.9C49.37 342.92 46.35 332.79 47.21 322.65C37.74 319.06 29.76 311.98 25.27 302.66C9.95 270.85 1.51 236.88 0.18 201.67C-0.17 192.55 2.7 183.5 8.16 176.19A39.772000000000006 39.772000000000006 0 0 1 0 152V88C0 79 2.99 70.69 8.02 64C2.99 57.31 0 49 0 40V-24C0 -46.05 17.94 -64 40 -64H104C126.06 -64 144 -46.05 144 -24V40C144 49 141.01 57.31 135.98 64C141.01 70.69 144 79 144 88V152C144 160.92 141.07 169.16 136.12 175.82A40.010000000000005 40.010000000000005 0 0 1 144.16 197.78C144.87 210.32 147.9 222.9 153.18 235.18C155.84 241.37 156.85 247.86 156.38 254.15C162.38 256.4700000000001 167.82 260.23 172.16 265.2000000000001C179.46 273.54 187.94 280.74 197.37 286.61C203.07 290.15 207.61 294.92 210.81 300.39C213.95 299.62 217.23 299.2100000000001 220.58 299.2100000000001C223.95 299.2100000000001 227.32 299.63 230.59 300.4700000000001C240.01 302.88 248.07 304 255.98 304C263.9000000000001 304 271.9700000000001 302.88 281.3900000000001 300.4700000000001C284.67 299.63 288.04 299.2100000000001 291.4100000000001 299.2100000000001C294.7700000000001 299.2100000000001 298.04 299.61 301.19 300.39C304.39 294.93 308.93 290.1600000000001 314.63 286.62C324.07 280.75 332.55 273.55 339.85 265.2100000000001C344.2000000000001 260.24 349.6400000000001 256.4700000000001 355.6400000000001 254.16C355.1600000000001 247.87 356.1800000000001 241.38 358.8400000000001 235.19C364.12 222.91 367.1500000000001 210.33 367.86 197.8C368.32 189.54 371.25 181.99 375.9000000000001 175.84A39.793 39.793 0 0 1 368.0200000000001 152.0200000000001V88.02C368.0200000000001 79.02 371.0100000000001 70.71 376.04 64.02C371.0100000000001 57.33 368.0200000000001 49.02 368.0200000000001 40.02V-23.98C368.0200000000001 -46.03 385.9600000000001 -63.98 408.0200000000001 -63.98H472.02C494.08 -63.98 512.02 -46.03 512.02 -23.98V40.02C512.02 49.02 509.03 57.33 504 64.02C509.03 70.71 512.02 79.02 512.02 88.02V152zM112 -24C112 -28.42 108.42 -32 104 -32H40C35.58 -32 32 -28.42 32 -24V40C32 44.42 35.58 48 40 48H104C108.42 48 112 44.42 112 40V-24zM112 88C112 83.58 108.42 80 104 80H40C35.58 80 32 83.58 32 88V152C32 156.42 35.58 160 40 160H104C108.42 160 112 156.42 112 152V88zM123.78 247.82C117.34 232.83 113.17 216.66 112.21 199.59C111.97 195.37 108.7 192.01 104.47 192.01H40.41C35.84 192.01 31.99 195.91 32.16 200.48C33.35 232.01 41.13 261.86 54.1 288.78C55.49 291.66 58.42 293.27 61.42 293.27C62.92 293.27 64.43 292.87 65.79 292.02L120.83 257.62C124.15 255.54 125.33 251.42 123.78 247.82zM180.48 313.79A143.632 143.632 0 0 1 148.08 286.28C146.49 284.4600000000001 144.27 283.48 142.03 283.48C140.64 283.48 139.23 283.86 137.95 284.66L82.95 319.04C78.88 321.58 77.79 327.25 80.78 331.01A225.30999999999997 225.30999999999997 0 0 0 148.51 388.22C149.71 388.88 151 389.18 152.28 389.18C155.55 389.18 158.73 387.19 160 383.94L183.79 323.37C185.19 319.77 183.75 315.82 180.48 313.79zM298.86 336.12C297.6500000000001 333.04 294.62 331.21 291.4100000000001 331.21C290.7100000000001 331.21 290.0100000000001 331.29 289.3200000000001 331.4700000000001C277.4900000000001 334.49 266.7200000000001 335.99 255.9900000000001 335.99C245.2000000000001 335.99 234.4500000000001 334.4700000000001 222.6900000000001 331.4700000000001C221.9900000000001 331.29 221.2900000000001 331.21 220.6000000000001 331.21C217.3900000000001 331.21 214.3700000000001 333.04 213.1600000000001 336.13L189.4300000000001 396.54C187.7100000000001 400.93 190.0700000000001 406.01 194.6000000000001 407.31C214.11 412.91 234.69 416 256 416S297.89 412.91 317.42 407.3C321.95 406 324.32 400.92 322.5900000000001 396.53L298.86 336.12zM374.05 284.65C372.7700000000001 283.85 371.37 283.47 369.9700000000001 283.47C367.7200000000001 283.47 365.5100000000001 284.45 363.92 286.27A144.07 144.07 0 0 1 331.5200000000001 313.78C328.2500000000001 315.82 326.8100000000001 319.77 328.2100000000001 323.35L352 383.92C353.27 387.1600000000001 356.46 389.1600000000001 359.7200000000001 389.1600000000001C361 389.1600000000001 362.29 388.85 363.49 388.2A225.30999999999997 225.30999999999997 0 0 0 431.2200000000001 330.99C434.2100000000001 327.23 433.12 321.56 429.05 319.02L374.05 284.65zM388.2200000000001 247.82C386.67 251.43 387.85 255.54 391.18 257.62L446.2200000000001 292.02A8.181 8.181 0 0 0 450.59 293.27C453.59 293.27 456.53 291.66 457.91 288.78C470.8800000000001 261.87 478.66 232.01 479.85 200.48C480.02 195.91 476.17 192.01 471.6 192.01H407.54C403.31 192.01 400.04 195.37 399.8 199.59C398.83 216.66 394.6600000000001 232.82 388.2200000000001 247.82zM480 -24C480 -28.42 476.42 -32 472 -32H408C403.58 -32 400 -28.42 400 -24V40C400 44.42 403.58 48 408 48H472C476.42 48 480 44.42 480 40V-24zM480 88C480 83.58 476.42 80 472 80H408C403.58 80 400 83.58 400 88V152C400 156.42 403.58 160 408 160H472C476.42 160 480 156.42 480 152V88zM304 258.64V-24C304 -28.42 307.58 -32 312 -32H328C332.42 -32 336 -28.42 336 -24V228.87C327.84 241.17 316.78 251.19 304 258.64z" />
+    <glyph glyph-name="ear-muffs"
+      unicode="&#xF795;"
+      horiz-adv-x="640" d=" M640 96C640 111.1 633.9 124.9 624 135C624.4 159.1 609.6 180 588.2 188.3C581 206.8 564.1 219.9 544 222.8V224C544 347.5 443.5 448 320 448S96 347.5 96 224V222.8C75.8 219.8 59 206.7 51.8 188.3C30.5 179.9 15.6 159.1 16 135C6.1 124.9 0 111.1 0 96C0 90.5 0.8 85.2 2.4 80C0.8 74.8 0 69.5 0 64C0 48.9 6.1 35.1 16 25C15.6 0.9 30.4 -20 51.8 -28.3C59.9 -49.1 80.2 -64 104 -64C109.5 -64 114.8 -63.2 120 -61.6C125.2 -63.2 130.5 -64 136 -64C166.9 -64 192 -38.9 192 -8C192 -0.3 190.4 7.2 187.5 14C189.7 19.2 196.4 37.1 187.5 58C189.7 63.2 196.4 81.1 187.5 102C189.7 107.2 196.4 125.1 187.5 146C190.4 152.8 192 160.3 192 168C192 198.9 166.9 224 136 224C133.3 224 130.7 223.2 128 222.8V224C128 329.9 214.1 416 320 416S512 329.9 512 224V222.8C509.3 223.2 506.7 224 504 224C473.1 224 448 198.9 448 168C448 160.3 449.6 152.8 452.5 146C450.3 140.8 443.6 122.9 452.5 102C450.3 96.8 443.6 78.9 452.5 58C450.3 52.8 443.6 34.9 452.5 14C449.6 7.2 448 -0.3 448 -8C448 -38.9 473.1 -64 504 -64C509.5 -64 514.8 -63.2 520 -61.6C525.2 -63.2 530.5 -64 536 -64C559.7 -64 580.1 -49.1 588.2 -28.2C609.5 -19.9 624.4000000000001 0.9 624 25.1C633.9 35.2 640 49 640 64.1C640 69.6 639.2 74.9 637.6 80.1C639.2 85.2000000000001 640 90.5 640 96zM136 192C149.3 192 160 181.3 160 168C160 158.1 154 149.7 145.5 146C154 142.3 160 133.9 160 124S154 105.7 145.5 102C154 98.3 160 89.9 160 80S154 61.7 145.5 58C154 54.3 160 45.9 160 36S154 17.7 145.5 14C154 10.3 160 1.9 160 -8C160 -21.3 149.3 -32 136 -32C129.8 -32 124.3 -29.5 120 -25.6C115.7 -29.5 110.2 -32 104 -32C90.7 -32 80 -21.3 80 -8C80 -4 81.2 -0.3 83 3C79.7 1.2 76 0 72 0C58.7 0 48 10.7 48 24C48 30.3 50.6 36 54.6 40.3C42 41.1 32 51.3 32 64C32 70.2 34.5 75.7 38.4 80C34.5 84.3 32 89.8 32 96C32 108.7 42 118.9 54.6 119.7C50.6 124 48 129.7 48 136C48 149.3 58.7 160 72 160C76 160 79.7 158.8 83 157C81.2 160.3 80 164 80 168C80 181.3 90.7 192 104 192C110.2 192 115.7 189.5 120 185.6C124.3 189.5 129.8 192 136 192zM608 64C608 51.3 598 41.1 585.4 40.3C589.4 36 592 30.3 592 24C592 10.7 581.3 0 568 0C564 0 560.3 1.2 557 3C558.8 -0.3 560 -4 560 -8C560 -21.3 549.3 -32 536 -32C529.8 -32 524.3 -29.5 520 -25.6C515.7 -29.5 510.2 -32 504 -32C490.7 -32 480 -21.3 480 -8C480 1.9 486 10.3 494.5 14C486 17.7 480 26.1 480 36S486 54.3 494.5 58C486 61.7 480 70.1 480 80S486 98.3 494.5 102C486 105.7 480 114.1 480 124S486 142.3 494.5 146C486 149.7 480 158.1 480 168C480 181.3 490.7 192 504 192C510.2 192 515.7 189.5 520 185.6C524.3 189.5 529.8 192 536 192C549.3 192 560 181.3 560 168C560 164 558.8 160.3 557 157C560.3 158.8 564 160 568 160C581.3 160 592 149.3 592 136C592 129.7 589.4 124 585.4 119.7C598 118.9 608 108.7 608 96C608 89.8 605.5 84.3 601.6 80C605.5 75.7 608 70.2 608 64z" />
+    <glyph glyph-name="ear"
+      unicode="&#xF5F0;"
+      horiz-adv-x="384" d=" M192 352C139.06 352 96 308.94 96 256C96 220.7 124.72 192 160 192C177.66 192 192 177.64 192 160S177.66 128 160 128H136C131.58 128 128 124.42 128 120V104C128 99.58 131.58 96 136 96H160C195.28 96 224 124.7 224 160S195.28 224 160 224C142.34 224 128 238.36 128 256C128 291.3 156.72 320 192 320S256 291.3 256 256V232C256 227.58 259.58 224 264 224H280C284.42 224 288 227.58 288 232V256C288 308.94 244.94 352 192 352zM192 448C85.96 448 0 362.04 0 256V80C0 0.47 64.47 -64 144 -64S288 0.47 288 80V89.9C345.33 123.11 384 184.98 384 256C384 362.04 298.04 448 192 448zM271.96 117.59L256 108.34V80C256 18.24 205.76 -32 144 -32S32 18.24 32 80V256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 199.22 321.33 146.19 271.96 117.59z" />
+    <glyph glyph-name="eclipse-alt"
+      unicode="&#xF74A;"
+      horiz-adv-x="512" d=" M512 192C512 197.3 509.4 202.3 505 205.2L422.5 261L441.4 358.7C442.4 363.9 440.7 369.3 437 373S427.9 378.3 422.7 377.4L325 358.6L269.2 441C266.2 445.4 261.3 448 256 448S245.7 445.4 242.8 441L187 358.6L89.3 377.4C84.1 378.4 78.7 376.7 75 373S69.6 363.9 70.6 358.7L89.4 261L7 205.2C2.6 202.2 0 197.3 0 192S2.6 181.7 7 178.8L89.4 123L70.5 25.3C69.5 20.1 71.2 14.7 74.9 11S84 5.6 89.2 6.6L186.9 25.5L242.7 -56.9C245.7 -61.2999999999999 250.6 -63.9 255.9 -63.9S266.2 -61.2999999999999 269.1 -56.9L324.9 25.5L422.6 6.6C427.8 5.6 433.2 7.3 436.9 11S442.3 20.1 441.3 25.3L422.6 123L505 178.8C509.4 181.7 512 186.7 512 192zM395.9 143.6C390.6 140 387.9 133.6 389.1 127.3L405.5 42.5L320.7 58.9C314.3999999999999 60.1 308 57.4 304.3999999999999 52.1L256 -19.4L207.6 52.2C204.6 56.6 199.6 59.2000000000001 194.4 59.2000000000001C193.4 59.2000000000001 192.4 59.1 191.4 58.9L106.6 42.5000000000001L123 127.3000000000001C124.2 133.6000000000001 121.6 140.0000000000001 116.2 143.6000000000001L44.6 192L116.2 240.4C121.5 244 124.2 250.4 123 256.7000000000001L106.6 341.5L191.4 325.1C197.6 324 204.1 326.6 207.7 331.9000000000001L256 403.4L304.4 331.8C308 326.5 314.5 323.9 320.7 325L405.5 341.4L389.1 256.6C387.9000000000001 250.3 390.5 243.9000000000001 395.9000000000001 240.3L467.5 191.9L395.9 143.6zM327 154.9C326 154.9 324.1 154.7 323.1 154.5C319.4000000000001 153.8 315.6 153.4 311.8 153.4C279.3 153.4 252.8 180 252.8 212.6C252.8 233.8 264.3 253.6 282.7 264.1C290.3 268.4 294.2 276.7 292.8 285.3C291.4000000000001 293.9 284.9000000000001 300.5 276.3 302C269.6 303.2 262.7 303.9 255.9 303.9C194.2 304 144 253.8 144 192C144 130.2 194.2 80 255.9 80C289.8 80 321.5 95.1 342.8 121.5C347.8 127.7 348.8 136 345.4000000000001 143.2C342.0000000000001 150.3 334.8 154.9 327.0000000000001 154.9zM255.9 112C211.8 112 176 147.9 176 192C176 231.3 204.4 264 241.7 270.7A91.288 91.288 0 0 1 220.8 212.6C220.8 167.7 253.4 130.2 296.1 122.7C284 115.8 270.2 112 255.9 112z" />
+    <glyph glyph-name="eclipse"
+      unicode="&#xF749;"
+      horiz-adv-x="640" d=" M256 -19.4L207.6 52.2C204.6 56.6 199.6 59.2000000000001 194.4 59.2000000000001C193.4 59.2000000000001 192.4 59.1 191.4 58.9L106.6 42.5000000000001L123 127.3000000000001C124.2 133.6000000000001 121.6 140.0000000000001 116.2 143.6000000000001L44.6 192L116.2 240.4C121.5 244 124.2 250.4 123 256.7000000000001L106.6 341.5L191.4 325.1C197.6 324 204.1 326.6 207.7 331.9000000000001L256 403.4L291.1 351.5C298.7000000000001 359 307 365.9 315.7000000000001 372.2L269.2 441C266.2 445.4 261.3 448 256 448S245.7 445.4 242.8 441L187 358.6L89.3 377.4C84.1 378.4 78.7 376.7 75 373S69.6 363.9 70.6 358.7L89.4 261L7 205.2C2.6 202.2 0 197.3 0 192S2.6 181.7 7 178.8L89.4 123L70.5 25.3C69.5 20.1 71.2 14.7 74.9 11S84.1 5.6 89.2 6.6L186.9 25.5L242.7 -56.9C245.7 -61.2999999999999 250.6 -63.9 255.9 -63.9S266.2 -61.2999999999999 269.1 -56.9L315.5 11.7C306.8 18.1 298.5 24.9 290.8999999999999 32.4L256 -19.4zM238.2 269.8C242.6 281.6 247.9 292.9 254.1 303.7000000000001C225.6 303.3 198.2 292.6 176.8 271.2000000000001C139 233.4000000000001 133.3 177.2000000000001 162.3 128C169.5 115.8 179.8 105.6 192 98.3C212.1 86.4 233.5 80.5 254.3 80.1C248 90.9 242.7 102.2000000000001 238.3 114.1C228.7 116.1 218.6 119.8 208.3 125.9C200.8 130.3 194.3 136.8 189.9 144.3C164 188.2 178.8 227.9 199.5 248.6C208.9 257.9000000000001 222.3 266.1 238.2 269.8zM448 384C342 384 256 298 256 192S342 0 448 0S640 86 640 192S554 384 448 384zM448 32C359.8 32 288 103.8 288 192S359.8 352 448 352S608 280.2 608 192S536.2 32 448 32z" />
+    <glyph glyph-name="edit"
+      unicode="&#xF044;"
+      horiz-adv-x="576" d=" M417.8 132.5L437.8 152.5C441.6 156.3 448 153.6 448 148.3V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H340.3C345.6 384 348.3 377.5 344.5 373.8L324.5 353.8C323.4 352.7 321.8 352 320.3 352H48C39.2 352 32 344.8 32 336V-16C32 -24.8 39.2 -32 48 -32H400C408.8 -32 416 -24.8 416 -16V128.3C416 129.9 416.6 131.4 417.8 132.5zM563.7 323.7L251.2 11.2L151.3 0.1C137.9 -1.4 126.6 9.9 128.1 23.3L139.2 123.1999999999999L451.7 435.7C468.1 452.1 494.7 452.1 511.1 435.7L563.6999999999999 383.1C580.0999999999999 366.7 580.0999999999999 340.1 563.6999999999999 323.7zM470.1 275.3L403.4 342L169.8 108.5L161.5 33.4L236.6 41.7L470.1 275.3zM541.1 360.5L488.5 413.1C484.7 416.9 478.3 417.1 474.4 413.1L426 364.7L492.7 298L541.1 346.4C545 350.2 545 356.6 541.1 360.5z" />
+    <glyph glyph-name="eject"
+      unicode="&#xF052;"
+      horiz-adv-x="448" d=" M435.322 208.435L259.383 400.442C240.369 421.185 207.632 421.187 188.616 400.442L12.67 208.435C-15.475 177.732 6.324 128 48.053 128H399.939C441.5900000000001 128 463.52 177.674 435.322 208.435zM399.939 160H48.053C34.187 160 26.884 176.585 36.262 186.816L212.205 378.819C218.528 385.716 229.453 385.737 235.79 378.824L411.7330000000001 186.812C421.1040000000001 176.589 413.8090000000001 160 399.9390000000001 160zM448 48V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V48C0 74.51 21.49 96 48 96H400C426.51 96 448 74.51 448 48zM400 64H48C39.178 64 32 56.822 32 48V16C32 7.177 39.178 0 48 0H400C408.822 0 416 7.177 416 16V48C416 56.822 408.822 64 400 64z" />
+    <glyph glyph-name="elephant"
+      unicode="&#xF6DA;"
+      horiz-adv-x="640" d=" M512 416.03H466.19C460.54 421.84 437.1600000000001 448 391.99 448C353.9100000000001 448 329.49 429.77 316.44 416.03H192C85.96 416.03 0 330.07 0 224.02V96.01H32V-32C32 -49.67 46.33 -64 64 -64H128C145.67 -64 160 -49.67 160 -32V48.01C208.43 23.8 243.07 9.54 320 48.01V-32C320 -49.67 334.33 -64 352 -64H416C433.67 -64 448 -49.67 448 -32V160.02H544V128.02H512C494.33 128.02 480 113.69 480 96.02V84.75C480 42.91 510.02 4.69 551.64 0.45C599.49 -4.43 640 33.16 640 80.03V288.03C640 358.73 582.69 416.03 512 416.03zM416 -32H352V99.79L305.69 76.63C250.87 49.22 229.22 49.17 174.31 76.63L128 99.79V-32H64V128.01H32V224.02C32 312.25 103.78 384.03 192 384.03H296.39C295.29 381.32 293.69 378.84 292.84 376.03C283.88 346.55 287.42 316.16 302.78 290.56C314.31 271.37 331.69 256.51 352 248.03C352 207.88 379.18 174.3 416 163.77V-32zM608 80.01C608 53.54 586.47 32.01 560 32.01S512 53.54 512 80.01V96.01H544V80.01C544 71.18 551.19 64.01 560 64.01S576 71.18 576 80.01V192.02H440C409.12 192.02 384 217.14 384 248.02V269.3400000000001L364.33 277.55C335.58 289.56 310.43 323.8400000000001 323.46 366.7200000000001C332.04 394.98 358.4100000000001 416 391.99 416C424.85 416 438.7100000000001 398.39 452.69 384.03H512C564.94 384.03 608 340.9600000000001 608 288.02V80.01zM528 320.03C519.16 320.03 512 312.87 512 304.03S519.16 288.03 528 288.03S544 295.19 544 304.03S536.84 320.03 528 320.03z" />
+    <glyph glyph-name="ellipsis-h-alt"
+      unicode="&#xF39B;"
+      horiz-adv-x="512" d=" M256 264C216.2 264 184 231.8 184 192S216.2 120 256 120S328 152.2 328 192S295.8 264 256 264zM256 152C233.9 152 216 169.9 216 192S233.9 232 256 232S296 214.1 296 192S278.1 152 256 152zM432 264C392.2 264 360 231.8 360 192S392.2 120 432 120S504 152.2 504 192S471.8 264 432 264zM432 152C409.9 152 392 169.9 392 192S409.9 232 432 232S472 214.1 472 192S454.1 152 432 152zM80 264C40.2 264 8 231.8 8 192S40.2 120 80 120S152 152.2 152 192S119.8 264 80 264zM80 152C57.9 152 40 169.9 40 192S57.9 232 80 232S120 214.1 120 192S102.1 152 80 152z" />
+    <glyph glyph-name="ellipsis-h"
+      unicode="&#xF141;"
+      horiz-adv-x="320" d=" M192 192C192 174.3 177.7 160 160 160S128 174.3 128 192S142.3 224 160 224S192 209.7 192 192zM280 224C262.3 224 248 209.7 248 192S262.3 160 280 160S312 174.3 312 192S297.7 224 280 224zM40 224C22.3 224 8 209.7 8 192S22.3 160 40 160S72 174.3 72 192S57.7 224 40 224z" />
+    <glyph glyph-name="ellipsis-v-alt"
+      unicode="&#xF39C;"
+      horiz-adv-x="192" d=" M96 296C135.8 296 168 328.2 168 368S135.8 440 96 440S24 407.8 24 368S56.2 296 96 296zM96 408C118.1 408 136 390.1 136 368S118.1 328 96 328S56 345.9 56 368S73.9 408 96 408zM96 264C56.2 264 24 231.8 24 192S56.2 120 96 120S168 152.2 168 192S135.8 264 96 264zM96 152C73.9 152 56 169.9 56 192S73.9 232 96 232S136 214.1 136 192S118.1 152 96 152zM96 88C56.2 88 24 55.8 24 16S56.2 -56 96 -56S168 -23.8 168 16S135.8 88 96 88zM96 -24C73.9 -24 56 -6.1 56 16S73.9 56 96 56S136 38.1 136 16S118.1 -24 96 -24z" />
+    <glyph glyph-name="ellipsis-v"
+      unicode="&#xF142;"
+      horiz-adv-x="64" d=" M32 224C49.7 224 64 209.7 64 192S49.7 160 32 160S0 174.3 0 192S14.3 224 32 224zM0 312C0 294.3 14.3 280 32 280S64 294.3 64 312S49.7 344 32 344S0 329.7 0 312zM0 72C0 54.3 14.3 40 32 40S64 54.3 64 72S49.7 104 32 104S0 89.7 0 72z" />
+    <glyph glyph-name="empty-set"
+      unicode="&#xF656;"
+      horiz-adv-x="448" d=" M445.6600000000001 402.35L434.35 413.6600000000001C431.23 416.7800000000001 426.1600000000001 416.7800000000001 423.04 413.6600000000001L347.92 338.54C314.46 366.85 271.26 384 224 384C117.96 384 32 298.04 32 192C32 144.74 49.15 101.54 77.46 68.09L2.34 -7.03C-0.78 -10.15 -0.78 -15.22 2.34 -18.34L13.65 -29.65C16.77 -32.77 21.84 -32.77 24.96 -29.65L100.08 45.47C133.54 17.15 176.74 0 224 0C330.04 0 416 85.96 416 192C416 239.26 398.85 282.46 370.54 315.91L445.6600000000001 391.03A8.015 8.015 0 0 1 445.6600000000001 402.35zM64 192C64 280.2200000000001 135.78 352 224 352C262.3400000000001 352 297.1 337.88 324.69 315.31L100.69 91.31C78.11 118.9 64 153.66 64 192zM384 192C384 103.78 312.2200000000001 32 224 32C185.66 32 150.9 46.12 123.31 68.69L347.31 292.69C369.89 265.1 384 230.34 384 192z" />
+    <glyph glyph-name="engine-warning"
+      unicode="&#xF5F2;"
+      horiz-adv-x="640" d=" M320 416C196.3 416 96 315.7 96 192C96 68.24 196.3 -32 320 -32S544 68.24 544 192C544 315.7 443.7 416 320 416zM320 0C214.13 0 128 86.13 128 192S214.13 384 320 384S512 297.87 512 192S425.87 0 320 0zM338.64 320.02H301.36C293.4600000000001 320.02 287.2800000000001 313.2 288.07 305.33L298.76 156.04C299.44 149.21 305.19 144.01 312.05 144.01H327.95C334.82 144.01 340.56 149.21 341.24 156.04L351.93 305.33C352.7200000000001 313.19 346.54 320.02 338.64 320.02zM320 120C306.74 120 296 109.26 296 96C296 82.75 306.74 72 320 72S344 82.75 344 96C344 109.26 333.26 120 320 120zM90.69 378.83L78.29 388.94C74.8 391.79 69.54 391.25 66.78 387.69C23.65 331.88 0 262.7200000000001 0 192C0 121.26 23.65 52.12 66.75 -3.65C69.51 -7.22 74.76 -7.75 78.26 -4.9L90.66 5.21C94.02 7.9400000000001 94.5 12.79 91.85 16.22C53.2 66.34 32 128.46 32 192C32 255.53 53.2 317.65 91.88 367.82C94.53 371.25 94.05 376.1 90.69 378.83zM573.22 387.69C570.46 391.26 565.21 391.79 561.71 388.94L549.3100000000001 378.83C545.95 376.1 545.48 371.25 548.12 367.82C586.8 317.65 608 255.53 608 192C608 128.46 586.8 66.34 548.15 16.21C545.51 12.78 545.98 7.9400000000001 549.34 5.2L561.74 -4.91C565.23 -7.76 570.49 -7.22 573.25 -3.66C616.35 52.12 640 121.26 640 192C640 262.7200000000001 616.35 331.88 573.22 387.69z" />
+    <glyph glyph-name="envelope-open-dollar"
+      unicode="&#xF657;"
+      horiz-adv-x="512" d=" M494.59 283.48C492.61 285.11 472.4 301.39 448 321.01V352C448 369.67 433.67 384 416 384H369.53C365.4 387.31 361.82 390.16 359.33 392.14C337.23 409.81 299.44 448 256 448C212.79 448 175.36 410.28 152.66 392.14C150.13 390.13 146.56 387.27 142.46 384H96C78.33 384 64 369.67 64 352V321.02C39.48 301.31 19.25 285.01 17.52 283.5900000000001A48.00200000000001 48.00200000000001 0 0 1 0 246.52V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V246.49C512 260.8 505.62 274.37 494.59 283.48zM256 416C277.77 416 300.64 399.28 319.14 384H192.9C211.43 399.27 234.32 416 256 416zM96 352H416V178.65C383.67 152.65 350.7 126.21 329.41 109.31C312.56 95.8799999999999 279.22 63.6299999999999 256 63.9999999999999C232.79 63.62 199.44 95.8799999999999 182.59 109.3199999999999C161.3 126.2199999999999 128.35 152.6499999999999 96 178.66V352zM32 246.52C32 251.32 34.13 255.83 37.84 258.88C39.08 259.9 49.46 268.26 64 279.96V204.41C52.47 213.69 41.49 222.54 32 230.19V246.52zM480 -16C480 -24.82 472.82 -32 464 -32H48C39.18 -32 32 -24.82 32 -16V189.09C74.75 154.65 131.31 109.17 162.68 84.27C183.17 67.91 219.42 31.74 256 32.01C292.45 31.75 328.27 67.47 349.31 84.27C380.7200000000001 109.2 437.24 154.66 480 189.1V-16zM480 230.19C470.38 222.44 459.73 213.85 448 204.4V279.94C462.44 268.32 472.8 259.9700000000001 474.2 258.82C477.89 255.77 480 251.28 480 246.49V230.19zM228.91 207.42L273.91 193.92C279.07 192.37 282.68 187.14 282.68 181.19C282.68 173.92 277.38 168 270.88 168H242.7699999999999C238.2099999999999 168 233.8099999999999 169.29 229.95 171.72C226.7099999999999 173.75 222.5899999999999 173.6300000000001 219.8199999999999 170.99L208.0699999999999 159.78C204.5399999999999 156.41 204.7399999999999 150.5700000000001 208.6399999999999 147.6400000000001C217.7399999999999 140.8100000000001 228.7199999999999 136.8700000000001 240.01 136.29V120C240.01 115.58 243.59 112 248.01 112H264.01C268.43 112 272.01 115.58 272.01 120V136.12C295.63 136.75 314.68 156.66 314.68 181.19C314.68 201.16 301.7 219 283.1 224.58L238.1 238.08C232.94 239.63 229.33 244.86 229.33 250.81C229.33 258.08 234.63 264 241.13 264H269.24C273.8 264 278.2 262.71 282.06 260.28C285.3 258.25 289.42 258.37 292.19 261.01L303.94 272.22C307.4699999999999 275.59 307.2699999999999 281.43 303.37 284.36C294.2699999999999 291.19 283.29 295.13 272 295.7099999999999V312C272 316.42 268.42 320 264 320H248C243.58 320 240 316.42 240 312V295.88C216.38 295.25 197.3299999999999 275.33 197.3299999999999 250.81C197.3299999999999 230.84 210.3099999999999 213 228.9099999999999 207.42z" />
+    <glyph glyph-name="envelope-open-text"
+      unicode="&#xF658;"
+      horiz-adv-x="512" d=" M352 200V216C352 220.42 348.42 224 344 224H168C163.58 224 160 220.42 160 216V200C160 195.58 163.58 192 168 192H344C348.42 192 352 195.58 352 200zM168 256H344C348.42 256 352 259.5800000000001 352 264V280C352 284.42 348.42 288 344 288H168C163.58 288 160 284.42 160 280V264C160 259.5800000000001 163.58 256 168 256zM494.59 283.48C492.61 285.11 472.4 301.39 448 321.01V352C448 369.67 433.67 384 416 384H369.53C365.4 387.31 361.82 390.16 359.33 392.14C337.23 409.81 299.44 448 256 448C212.79 448 175.36 410.28 152.66 392.14C150.13 390.13 146.56 387.27 142.46 384H96C78.33 384 64 369.67 64 352V321.02C39.48 301.31 19.25 285.01 17.52 283.5900000000001A48.00200000000001 48.00200000000001 0 0 1 0 246.52V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V246.49C512 260.8 505.62 274.37 494.59 283.48zM256 416C277.77 416 300.64 399.28 319.14 384H192.9C211.43 399.27 234.32 416 256 416zM96 352H416V178.65C383.67 152.65 350.7 126.21 329.41 109.31C312.56 95.8799999999999 279.22 63.6299999999999 256 63.9999999999999C232.79 63.62 199.44 95.8799999999999 182.59 109.3199999999999C161.3 126.2199999999999 128.35 152.6499999999999 96 178.66V352zM32 246.52C32 251.32 34.13 255.83 37.84 258.88C39.08 259.9 49.46 268.26 64 279.96V204.41C52.47 213.69 41.49 222.54 32 230.19V246.52zM480 -16C480 -24.82 472.82 -32 464 -32H48C39.18 -32 32 -24.82 32 -16V189.09C74.75 154.65 131.31 109.17 162.68 84.27C183.17 67.91 219.42 31.74 256 32.01C292.45 31.75 328.27 67.47 349.31 84.27C380.7200000000001 109.2 437.24 154.66 480 189.1V-16zM480 230.19C470.38 222.44 459.73 213.85 448 204.4V279.94C462.44 268.32 472.8 259.9700000000001 474.2 258.82C477.89 255.77 480 251.28 480 246.49V230.19z" />
+    <glyph glyph-name="envelope-open"
+      unicode="&#xF2B6;"
+      horiz-adv-x="512" d=" M349.32 395.74C328.278 412.505 292.938 448 256 448C219.335 448 184.554 413.231 162.69 395.74C128.104 368.285 53.165 307.842 17.593 278.725A47.99000000000001 47.99000000000001 0 0 1 0 241.584V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V241.587A47.989 47.989 0 0 1 494.403 278.731C458.832 307.843 383.906 368.285 349.32 395.74zM464 -32H48C39.163 -32 32 -24.837 32 -16V241.839C32 246.645 34.155 251.192 37.878 254.231C64.16 275.685 159.658 352.474 182.59 370.68C200.211 384.73 232.317 416 256 416C279.686 416 311.789 384.73 329.41 370.68C352.342 352.473 447.846 275.6720000000001 474.124 254.212A15.99 15.99 0 0 0 479.9999999999999 241.822V-16C479.9999999999999 -24.837 472.8369999999999 -32 463.9999999999999 -32zM455.247 184.312C459.436 179.156 458.64 171.5800000000001 453.471 167.4070000000001C430.644 148.9810000000001 398.336 123.1710000000001 349.315 84.259C328.27 67.459 292.444 31.741 255.997 32.001C219.417 31.737 183.171 67.9090000000001 162.679 84.264C113.664 123.172 81.358 148.98 58.53 167.4070000000001C53.361 171.5800000000001 52.564 179.1560000000001 56.754 184.312L61.801 190.524C65.97 195.655 73.505 196.449 78.649 192.296C101.412 173.92 133.6630000000001 148.153 182.5870000000001 109.318C199.4370000000001 95.881 232.7880000000001 63.628 256.0000000000001 64.003C279.2190000000001 63.632 312.5620000000001 95.88 329.4130000000001 109.318C378.3420000000001 148.157 410.5910000000001 173.923 433.3510000000001 192.296C438.4960000000001 196.449 446.0300000000001 195.655 450.1990000000001 190.524L455.2470000000001 184.312z" />
+    <glyph glyph-name="envelope-square"
+      unicode="&#xF199;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM352 320H96C78.327 320 64 305.673 64 288V96C64 78.327 78.327 64 96 64H352C369.673 64 384 78.327 384 96V288C384 305.673 369.673 320 352 320zM352 288V254.145C337.864 242.517 315.434 224.481 269.883 188.324C259.426 179.985 238.748 160 224.256 160L224 160.002L223.744 160C209.252 160 188.574 179.984 178.116 188.324C132.572 224.476 110.138 242.516 95.999 254.146V288H352zM96 96V212.908C110.109 201.541 129.624 185.96 158.221 163.26C171.998 152.25 196.123 128 223.744 128L223.997 128.001L224.255 128C251.784 128 275.647 151.975 289.796 163.274C318.379 185.963 337.895 201.544 351.999 212.908V96H96z" />
+    <glyph glyph-name="envelope"
+      unicode="&#xF0E0;"
+      horiz-adv-x="512" d=" M464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM48 352H464C472.8 352 480 344.8 480 336V294.6C458.1 276.1 426.8 250.6 329.4 173.3C312.5 159.9 279.2 127.6 256 128C232.8 127.6 199.4 159.9 182.6 173.3C85.2 250.6 53.9 276.1 32 294.6V336C32 344.8 39.2 352 48 352zM464 32H48C39.2 32 32 39.2 32 48V253C54.8 234.3 90.8 205.4 162.7 148.3C183.2 131.9 219.4 95.8 256 96C292.4 95.7 328.3 131.5 349.3 148.3C421.2000000000001 205.4 457.2 234.3 480 253V48C480 39.2 472.8 32 464 32z" />
+    <glyph glyph-name="equals"
+      unicode="&#xF52C;"
+      horiz-adv-x="384" d=" M376 144H8C3.58 144 0 140.42 0 136V104C0 99.58 3.58 96 8 96H376C380.42 96 384 99.58 384 104V136C384 140.42 380.42 144 376 144zM376 288H8C3.58 288 0 284.42 0 280V248C0 243.58 3.58 240 8 240H376C380.42 240 384 243.58 384 248V280C384 284.42 380.42 288 376 288z" />
+    <glyph glyph-name="eraser"
+      unicode="&#xF12D;"
+      horiz-adv-x="512.001" d=" M497.942 174.059C516.687 192.804 516.687 223.196 497.942 241.9410000000001L337.942 401.9410000000001C319.198 420.6850000000001 288.806 420.687 270.0590000000001 401.9410000000001L14.059 145.941C-4.686 127.196 -4.686 96.804 14.059 78.059L110.059 -17.941A48 48 0 0 1 144 -32H500C506.627 -32 512 -26.627 512 -20V-12C512 -5.373 506.627 0 500 0H323.883L497.942 174.059zM292.686 379.313C298.929 385.556 309.06 385.567 315.314 379.314L475.314 219.314C481.557 213.071 481.567 202.94 475.314 196.687L358.627 79.999L176 262.627L292.686 379.313zM144 0A15.895 15.895 0 0 0 132.686 4.686L36.686 100.686C30.443 106.929 30.433 117.06 36.686 123.313L153.373 240L336 57.372L283.314 4.686A15.895 15.895 0 0 0 272 0H144z" />
+    <glyph glyph-name="ethernet"
+      unicode="&#xF796;"
+      horiz-adv-x="512" d=" M496 256H448V304C448 312.8 440.8 320 432 320H384V368C384 376.8 376.8 384 368 384H144C135.2 384 128 376.8 128 368V320H80C71.2 320 64 312.8 64 304V256H16C7.2 256 0 248.8 0 240V16C0 7.2 7.2 0 16 0H496C504.8 0 512 7.2 512 16V240C512 248.8 504.8 256 496 256zM480 32H416V160H384V32H320V160H288V32H224V160H192V32H128V160H96V32H32V224H96V288H160V352H352V288H416V224H480V32z" />
+    <glyph glyph-name="euro-sign"
+      unicode="&#xF153;"
+      horiz-adv-x="320" d=" M303.625 3.869C302.082 10.35 295.562 14.314 289.087 12.7430000000001C279.073 10.313 263.398 7.4390000000001 245.26 7.4390000000001C164.534 7.4390000000001 103.527 54.0530000000001 84.423 128.0000000000001H239.664A12 12 0 0 1 251.448 137.7310000000001L252.989 145.7310000000001C254.414 153.1330000000001 248.743 160.0000000000001 241.205 160.0000000000001H77.646C75.797 180.9510000000001 75.797 203.6640000000001 78.262 224.0000000000001H256.919A12 12 0 0 1 268.703 233.7310000000001L270.244 241.7310000000001C271.669 249.1330000000001 265.998 256.0000000000001 258.46 256.0000000000001H85.04C105.991 326.2500000000001 165.151 376.5610000000002 244.644 376.5610000000002C259.3690000000001 376.5610000000002 273.096 374.3670000000002 282.195 372.4750000000002C288.477 371.1690000000001 294.665 375.0560000000002 296.245 381.2740000000001L300.175 396.7490000000002C301.8640000000001 403.4010000000001 297.646 410.1320000000001 290.913 411.4670000000001C280.423 413.548 264.068 416 245.26 416C143.582 416 63.472 347.819 39.439 256H12C5.373 256 0 250.627 0 244V236C0 229.373 5.373 224 12 224H33.893C31.427 206.13 32.044 174.173 33.276 160H12C5.373 160 0 154.627 0 148V140C0 133.373 5.373 128 12 128H38.207C59.775 31.251 139.885 -32 245.26 -32C267.771 -32 286.855 -28.574 298.341 -25.894C304.8110000000001 -24.384 308.806 -17.895 307.267 -11.432L303.625 3.869z" />
+    <glyph glyph-name="exchange-alt"
+      unicode="&#xF362;"
+      horiz-adv-x="512" d=" M12 256H384V200C384 170.448 420.528 156.928 439.9170000000001 178.74L503.917 250.74C514.6940000000001 262.8640000000001 514.6940000000001 281.135 503.917 293.259L439.9170000000001 365.259C420.5350000000001 387.064 384 373.564 384 344V288H12C5.373 288 0 282.627 0 276V268C0 261.373 5.373 256 12 256zM416 344L480 272L416 200V344zM500 128H128V184C128 213.552 91.472 227.072 72.083 205.26L8.083 133.26C-2.694 121.136 -2.694 102.865 8.083 90.741L72.083 18.741C91.465 -3.064 128 10.436 128 40V96H500C506.627 96 512 101.373 512 108V116C512 122.627 506.627 128 500 128zM96 40L32 112L96 184V40z" />
+    <glyph glyph-name="exchange"
+      unicode="&#xF0EC;"
+      horiz-adv-x="512" d=" M508.485 263.515L416 171.515C411.313 166.829 403.716 166.829 399.03 171.515L391.959 178.585C387.272 183.271 387.272 190.869 391.959 195.556L452.893 256H12C5.373 256 0 261.373 0 268V276C0 282.627 5.373 288 12 288H452.905L391.959 348.444C387.272 353.13 387.272 360.728 391.959 365.415L399.029 372.485C403.716 377.1710000000001 411.313 377.1710000000001 416 372.485L508.485 280.485C513.1719999999999 275.799 513.1709999999999 268.201 508.485 263.515zM3.515 103.515L96 11.515C100.687 6.829 108.284 6.829 112.971 11.515L120.041 18.585C124.728 23.271 124.728 30.869 120.041 35.556L59.095 96H500C506.627 96 512 101.373 512 108V116C512 122.627 506.627 128 500 128H59.107L120.041 188.444C124.728 193.13 124.728 200.728 120.041 205.415L112.97 212.485C108.284 217.171 100.686 217.172 96 212.485L3.515 120.485C-1.171 115.799 -1.172 108.201 3.515 103.515z" />
+    <glyph glyph-name="exclamation-circle"
+      unicode="&#xF06A;"
+      horiz-adv-x="512" d=" M256 408C374.621 408 472 311.925 472 192C472 72.709 375.39 -24 256 -24C136.756 -24 40 72.562 40 192C40 311.203 136.602 408 256 408M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM244.51 320H267.489C274.312 320 279.763 314.318 279.479 307.5L272.479 139.5C272.211 133.072 266.923 128 260.489 128H251.51C245.077 128 239.788 133.073 239.52 139.5L232.52 307.5C232.237 314.318 237.687 320 244.51 320zM256 108C240.536 108 228 95.464 228 80S240.536 52 256 52S284 64.536 284 80S271.464 108 256 108z" />
+    <glyph glyph-name="exclamation-square"
+      unicode="&#xF321;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM224 108C208.536 108 196 95.464 196 80S208.536 52 224 52S252 64.536 252 80S239.464 108 224 108zM212.51 320H235.489C242.312 320 247.763 314.318 247.479 307.5L240.479 139.5C240.211 133.072 234.922 128 228.489 128H219.51C213.077 128 207.788 133.073 207.52 139.5L200.52 307.5C200.237 314.318 205.687 320 212.51 320zM224 108C208.536 108 196 95.464 196 80S208.536 52 224 52S252 64.536 252 80S239.464 108 224 108z" />
+    <glyph glyph-name="exclamation-triangle"
+      unicode="&#xF071;"
+      horiz-adv-x="576" d=" M270.2 288H305.7C309.1 288 311.8 285.2 311.7 281.8L304.2 85.8C304.1 82.6 301.4 80 298.2 80H277.7C274.5 80 271.8 82.5 271.7 85.8L264.2 281.8C264.1 285.2000000000001 266.8 288 270.2 288zM288 60C272.5 60 260 47.5 260 32S272.5 4 288 4S316 16.5 316 32S303.5 60 288 60zM569.5 8L329.6 424C311.2000000000001 456 264.9000000000001 456 246.4000000000001 424L6.5 8C-11.9 -23.9 11.1 -64 48.1 -64H528C564.8 -64 588 -24 569.5 8zM528 -32H48C35.7 -32 28 -18.7 34.1 -8L274.1 408C280.2000000000001 418.6 295.7000000000001 418.7 301.8 408L541.8 -8C548 -18.6 540.3 -32 528 -32z" />
+    <glyph glyph-name="exclamation"
+      unicode="&#xF12A;"
+      horiz-adv-x="192" d=" M139.315 416C146.204 416 151.679 410.213 151.297 403.334L136.63 139.334C136.277 132.975 131.017 128 124.648 128H67.352C60.983 128 55.724 132.975 55.37 139.334L40.703 403.334C40.321 410.213 45.796 416 52.685 416H139.315M96 96C131.29 96 160 67.29 160 32S131.29 -32 96 -32S32 -3.29 32 32S60.71 96 96 96M139.315 448H52.685C27.457 448 7.353 426.754 8.753 401.559L23.42 137.559C24.072 125.831 29.284 115.381 37.274 107.894C14.613 90.318 0 62.832 0 32C0 -20.935 43.065 -64 96 -64S192 -20.935 192 32C192 62.832 177.387 90.318 154.726 107.894C162.717 115.381 167.929 125.831 168.58 137.559L183.247 401.5590000000001C184.647 426.749 164.548 448 139.315 448z" />
+    <glyph glyph-name="expand-alt"
+      unicode="&#xF424;"
+      horiz-adv-x="448" d=" M198.829 172.485L204.485 166.829C209.171 162.143 209.171 154.545 204.485 149.858L54.627 0H116C122.627 0 128 -5.373 128 -12V-20C128 -26.627 122.627 -32 116 -32H12C5.373 -32 0 -26.627 0 -20V84C0 90.627 5.373 96 12 96H20C26.627 96 32 90.627 32 84V22.627L181.858 172.485C186.545 177.172 194.143 177.172 198.829 172.485zM436 416H332C325.373 416 320 410.627 320 404V396C320 389.373 325.373 384 332 384H393.373L243.515 234.142C238.829 229.456 238.829 221.858 243.515 217.171L249.171 211.515C253.857 206.829 261.455 206.829 266.142 211.515L416 361.373V300C416 293.373 421.373 288 428 288H436C442.627 288 448 293.373 448 300V404C448 410.627 442.627 416 436 416z" />
+    <glyph glyph-name="expand-arrows-alt"
+      unicode="&#xF31E;"
+      horiz-adv-x="448" d=" M391.7 118.3L356 82.6L246.6 192L356 301.4L391.7 265.7C412.4 245 448 259.7 448 289V383C448 401.2 433.2 416 415 416H321C291.7 416 276.9 380.5 297.7 359.7L333.4 324L224 214.6L114.6 324L150.3 359.7C171 380.4 156.3 416 127 416H33C14.8 416 0 401.2 0 383V289C0 259.7 35.5 244.9 56.3 265.7L92 301.4L201.4 192L92 82.6L56.3 118.3C35.6 139 0 124.3 0 95V1C0 -17.2 14.8 -32 33 -32H127C156.3 -32 171.1 3.5 150.3 24.3L114.6 60L224 169.4L333.4 60L297.7 24.3C277 3.6 291.7 -32 321 -32H415C433.2 -32 448 -17.2 448 1V95C448 124.3 412.4 139.1 391.7 118.3zM321 387.1H415C417.3 387.1 419.1 385.2 419.1 383V289C419.1 285.3 414.7000000000001 283.5 412.1 286.1L318.1 380.1C315.5 382.7 317.3 387.1 321 387.1zM35.9 286.1C33.3 283.5 28.9 285.3 28.9 289V383C28.9 385.3 30.8 387.1 33 387.1H127C130.7 387.1 132.5 382.7 129.9 380.1L35.9 286.1zM127 -3.1H33C30.7 -3.1 28.9 -1.2 28.9 1V95C28.9 98.7 33.3 100.5 35.9 97.9L129.9 3.9C132.5 1.3 130.7 -3.1 127 -3.1zM415 -3.1H321C317.3 -3.1 315.5 1.3 318.1 3.9L412.1 97.9C414.7000000000001 100.5 419.1 98.7 419.1 95V1C419.2000000000001 -1.3 417.3 -3.1 415 -3.1z" />
+    <glyph glyph-name="expand-arrows"
+      unicode="&#xF31D;"
+      horiz-adv-x="448" d=" M447.7 84L448 -20C448 -26.6 442.6 -32 436 -32L332 -31.7C325.4 -31.7 320 -26.3 320 -19.7V-9.7C320 -3.1 325.4 2.3 332 2.3L390 2L390.7 2.7L224 169.4L57.3 2.7L58 2L116 2.3C122.6 2.3 128 -3.1 128 -9.7V-19.7C128 -26.3 122.6 -31.7 116 -31.7L12 -32C5.4 -32 0 -26.6 0 -20L0.3 84C0.3 90.6 5.7 96 12.3 96H22.3C28.9 96 34.3 90.6 34.3 84L34 26L34.7 25.3L201.4 192L34.7 358.7L34 358L34.3 300C34.3 293.4 28.9 288 22.3 288H12.3C5.7 288 0.3 293.4 0.3 300L0 404C0 410.6 5.4 416 12 416L116 415.7C122.6 415.7 128 410.3 128 403.7V393.7C128 387.1 122.6 381.7 116 381.7L58 382L57.3 381.3L224 214.6L390.7 381.3L390 382L332 381.7C325.4 381.7 320 387.1 320 393.7V403.7C320 410.3 325.4 415.7 332 415.7L436 416C442.6 416 448 410.6 448 404L447.7 300C447.7 293.4 442.3 288 435.7 288H425.7C419.1 288 413.7 293.4 413.7 300L414 358L413.3 358.7L246.6 192L413.3 25.3L414 26L413.7 84C413.7 90.6 419.0999999999999 96 425.7 96H435.7C442.3 96 447.7 90.6 447.7 84z" />
+    <glyph glyph-name="expand-wide"
+      unicode="&#xF320;"
+      horiz-adv-x="512" d=" M0 236V360C0 373.3 10.7 384 24 384H148C154.6 384 160 378.6 160 372V364C160 357.4 154.6 352 148 352H32V236C32 229.4 26.6 224 20 224H12C5.4 224 0 229.4 0 236zM364 384H488C501.3 384 512 373.3 512 360V236C512 229.4 506.6 224 500 224H492C485.4 224 480 229.4 480 236V352H364C357.4 352 352 357.4 352 364V372C352 378.6 357.4 384 364 384zM512 148V24C512 10.7 501.3 0 488 0H364C357.4 0 352 5.4 352 12V20C352 26.6 357.4 32 364 32H480V148C480 154.6 485.4 160 492 160H500C506.6 160 512 154.6 512 148zM148 0H24C10.7 0 0 10.7 0 24V148C0 154.6 5.4 160 12 160H20C26.6 160 32 154.6 32 148V32H148C154.6 32 160 26.6 160 20V12C160 5.4 154.6 0 148 0z" />
+    <glyph glyph-name="expand"
+      unicode="&#xF065;"
+      horiz-adv-x="448" d=" M0 268V392C0 405.3 10.7 416 24 416H148C154.6 416 160 410.6 160 404V396C160 389.4 154.6 384 148 384H32V268C32 261.4 26.6 256 20 256H12C5.4 256 0 261.4 0 268zM300 416H424C437.3 416 448 405.3 448 392V268C448 261.4 442.6 256 436 256H428C421.4 256 416 261.4 416 268V384H300C293.4 384 288 389.4 288 396V404C288 410.6 293.4 416 300 416zM448 116V-8C448 -21.3 437.3 -32 424 -32H300C293.4 -32 288 -26.6 288 -20V-12C288 -5.4 293.4 0 300 0H416V116C416 122.6 421.4 128 428 128H436C442.6 128 448 122.6 448 116zM148 -32H24C10.7 -32 0 -21.3 0 -8V116C0 122.6 5.4 128 12 128H20C26.6 128 32 122.6 32 116V0H148C154.6 0 160 -5.4 160 -12V-20C160 -26.6 154.6 -32 148 -32z" />
+    <glyph glyph-name="external-link-alt"
+      unicode="&#xF35D;"
+      horiz-adv-x="576" d=" M544 448H543.944L447.777 447.8330000000001C419.3349999999999 447.784 405.117 413.294 425.205 393.206L460.4769999999999 357.934L163.515 60.97C158.829 56.2840000000001 158.829 48.686 163.515 44L171.999 35.515C176.686 30.829 184.284 30.829 188.97 35.515L485.934 332.479L521.206 297.207C541.229 277.184 575.784 291.227 575.833 319.779L576 415.945C576.03 433.647 561.675 448 544 448zM543.833 319.833L447.833 415.833L544 416L543.833 319.833zM448 220.319V-16C448 -42.51 426.51 -64 400 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H371.976C375.159 384 378.211 382.736 380.461 380.485L388.461 372.485C396.021 364.925 390.6670000000001 352 379.976 352H48C39.163 352 32 344.837 32 336V-16C32 -24.837 39.163 -32 48 -32H400C408.837 -32 416 -24.837 416 -16V212.32C416 215.503 417.264 218.555 419.515 220.805L427.515 228.805C435.074 236.364 448 231.01 448 220.319z" />
+    <glyph glyph-name="external-link-square-alt"
+      unicode="&#xF360;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM320 320H319.944L223.777 319.833C195.335 319.784 181.117 285.294 201.205 265.206L236.477 229.934L98.545 92C93.859 87.314 93.859 79.716 98.545 75.03L107.029 66.545C111.716 61.859 119.314 61.859 124 66.545L261.934 204.479L297.206 169.2069999999999C317.229 149.1839999999999 351.784 163.2269999999999 351.833 191.779L352 287.945C352.0299999999999 305.647 337.675 320 320 320zM319.8330000000001 191.833L223.833 287.833L320 288L319.8330000000001 191.833z" />
+    <glyph glyph-name="external-link-square"
+      unicode="&#xF14C;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM99.515 73.172C94.829 77.858 94.829 85.456 99.515 90.143L294.665 285.293L293.9580000000001 286L204 285.658C197.373 285.658 192 291.031 192 297.658V307.6570000000001C192 314.2850000000001 197.372 319.6570000000001 204 319.6570000000001L340 320C346.627 320 352 314.628 352 308L351.657 172C351.657 165.373 346.284 160 339.657 160H329.658C323.031 160 317.658 165.373 317.658 172L318 261.958L317.293 262.665L122.143 67.515C117.4569999999999 62.829 109.8589999999999 62.829 105.1719999999999 67.515L99.5149999999999 73.172z" />
+    <glyph glyph-name="external-link"
+      unicode="&#xF08E;"
+      horiz-adv-x="576" d=" M195.515 73.172C190.829 77.858 190.829 85.456 195.515 90.143L518.665 413.293L517.958 414L428 413.658C421.373 413.658 416 419.031 416 425.658V435.657C416 442.2850000000001 421.372 447.657 428 447.657L564 448C570.627 448 576 442.628 576 436L575.657 300C575.657 293.373 570.284 288 563.657 288H553.658C547.0310000000001 288 541.658 293.373 541.658 300L542 389.958L541.293 390.665L218.143 67.515C213.457 62.8290000000001 205.859 62.8290000000001 201.172 67.515L195.515 73.172zM427.515 228.8050000000001L419.515 220.805A12 12 0 0 1 416 212.32V-16C416 -24.837 408.836 -32 400 -32H48C39.164 -32 32 -24.837 32 -16V336C32 344.837 39.164 352 48 352H387.976C391.159 352 394.211 353.264 396.461 355.515L404.461 363.515C412.021 371.075 406.6670000000001 384 395.976 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V220.319C448 231.01 435.074 236.364 427.515 228.805z" />
+    <glyph glyph-name="eye-dropper"
+      unicode="&#xF1FB;"
+      horiz-adv-x="512" d=" M483.61 421.38C448.1 457.03 390.77 456.71 355.5700000000001 421.38L272.9400000000001 338.44L255.9400000000001 355.5C246.5700000000001 364.91 231.3700000000001 364.91 221.9900000000001 355.5L181.0100000000001 314.36C171.6400000000001 304.9500000000001 171.6300000000001 289.69 181.0100000000001 280.2800000000001L197.9900000000001 263.23L50.6900000000001 113.39A64.38 64.38 0 0 1 31.9300000000001 67.95V34.21L4.9300000000001 -5.58C-3.0499999999999 -18.28 -1.1999999999999 -34.83 9.3700000000001 -45.4400000000001L18.4800000000001 -54.58C29.0500000000001 -65.19 45.5400000000001 -67.0400000000001 58.1900000000001 -59.04L97.8400000000001 -31.94H131.4600000000001A63.90999999999999 63.90999999999999 0 0 1 176.7300000000001 -13.12L326.0400000000001 134.73L343 117.69C352.38 108.28 367.58 108.28 376.95 117.69L417.93 158.83C427.31 168.24 427.3 183.5 417.93 192.91L400.98 209.93L483.61 292.87C513.28 322.64 528.85 375.97 483.61 421.38zM154.09 7.59C148.04 1.52 140.01 0.1799999999999 131.46 0.1799999999999H88.59L41.12 -31.8700000000001L32.01 -22.7300000000001L63.95 24.9199999999999V67.9499999999999C63.95 76.5299999999999 67.28 84.5999999999999 73.33 90.67L220.63 240.52L303.4 157.44L154.09 7.5899999999999zM460.98 315.58L355.71 209.93L389.64 175.87L359.97 146.09L209.3 297.3300000000001L238.9700000000001 327.1L272.9400000000001 293L378.21 398.66C401.03 421.57 438.16 421.57 460.98 398.66C500.3699999999999 359.13 467.89 322.52 460.98 315.58z" />
+    <glyph glyph-name="eye-evil"
+      unicode="&#xF6DB;"
+      horiz-adv-x="640" d=" M627.03 208.92L514.87 239.3C510.13 245.8 504.85 252.57 498.95 259.55C500.32 261.6600000000001 554.21 347.65 554.21 347.65C563.11 361.9100000000001 548.1700000000001 379.02 531.76 373.07L412.11 329.75C402.38 334.61 392.0800000000001 338.76 381.2700000000001 342.19L336.8800000000001 437.26C333.54 444.42 326.77 448 320 448S306.46 444.42 303.12 437.27L258.73 342.2C247.92 338.77 237.62 334.62 227.89 329.76C98.03 376.77 106.35 374.28 101.5 374.28C88.13 374.28 78.09 359.9600000000001 85.78 347.65C85.78 347.65 139.67 261.65 141.04 259.55C135.14 252.57 129.86 245.8 125.12 239.3L12.97 208.92C-4.32 204.24 -4.32 179.77 12.97 175.08L125.13 144.7C129.85 138.22 135.11 131.48 140.99 124.52C139.62 122.39 85.79 36.35 85.79 36.35C76.86 22.04 91.86 4.9999999999999 108.24 10.92L227.89 54.24C237.62 49.3799999999999 247.93 45.23 258.74 41.8L303.13 -53.27C306.46 -60.42 313.23 -64 320 -64S333.54 -60.42 336.88 -53.27L381.27 41.8C392.08 45.23 402.38 49.38 412.12 54.24L531.77 10.92C548.1899999999999 4.97 563.12 22.08 554.22 36.35C554.22 36.35 500.39 122.3900000000001 499.02 124.5200000000001C504.9 131.48 510.15 138.22 514.88 144.7000000000001L627.04 175.0800000000001C644.3199999999999 179.7700000000001 644.3199999999999 204.2300000000001 627.03 208.9200000000001zM495.64 172.65C480.66 152.1 482.99 155.14 459.32 127.13L505.1 54.62L410.1 89.01C385.3300000000001 76.63 385.99 76.88 358.2100000000001 68.06L320 -13.78L281.79 68.0600000000001C254.0300000000001 76.8700000000001 254.7100000000001 76.6200000000001 229.9000000000001 89.0100000000001L134.9 54.6200000000001L180.68 127.1300000000001C156.9800000000001 155.1700000000001 159.34 152.09 144.3600000000001 172.65L72.91 192L144.36 211.35C159.29 231.83 156.91 228.74 180.85 257.07L134.9 329.39L229.9000000000001 294.99C254.5900000000001 307.32 253.9000000000001 307.09 281.7800000000001 315.95L320 397.78L358.21 315.94C386.03 307.1 385.29 307.37 410.09 294.98L505.09 329.38L459.14 257.06C482.98 228.85 480.61 231.94 495.63 211.34L567.09 192L495.64 172.65zM320 234.67C287.18 234.67 257.3 243.46 233.55 257.76C222.48 241.23 216 221.38 216 200C216 142.56 262.56 96 320 96S424 142.56 424 200C424 221.38 417.52 241.23 406.45 257.75C382.7 243.46 352.82 234.67 320 234.67zM320 128C280.3 128 248 160.3 248 200C248 205.03 248.52 210 249.54 214.85C261.96 210.32 275.06 207.37 288.45 205.35C288.37 204.41 288 203.64 288 202.66C288 174.21 320 159.99 320 159.99S352 174.21 352 202.66C352 203.63 351.62 204.41 351.55 205.35C364.94 207.36 378.04 210.32 390.4600000000001 214.85C391.48 210 392 205.03 392 200C392 160.3 359.7 128 320 128z" />
+    <glyph glyph-name="eye-slash"
+      unicode="&#xF070;"
+      horiz-adv-x="576" d=" M321.496 41.879L343.214 12.607A331.764 331.764 0 0 0 288 8C168.14 8 63.003 71.994 6.646 167.631A47.999 47.999 0 0 0 6.646 216.37C32.48 260.21 68.559 297.38 111.589 324.797L130.714 299.02C90.884 274.078 57.71 239.993 34.215 200.124A16.008 16.008 0 0 1 34.215 183.878C86.163 95.723 182.135 40 288 40C299.298 40 310.476 40.64 321.496 41.879zM141.972 283.8450000000001C133.037 264.43 128 242.81 128 220C128 134.178 199.23 64 288 64C293.566 64 299.063 64.277 304.479 64.815L281.213 96.174C213.676 99.592 160 153.723 160 220A120.48 120.48 0 0 0 164.664 253.26L141.972 283.8450000000001zM569.354 167.63C535.645 110.428 484.4930000000001 64.591 423.211 36.957L480.142 -39.775C484.142 -45.166 483.014 -52.779 477.623 -56.779L471.116 -61.607C465.725 -65.607 458.112 -64.4789999999999 454.113 -59.088L95.859 423.775C91.859 429.166 92.987 436.779 98.378 440.779L104.885 445.6070000000001C110.276 449.6070000000001 117.889 448.479 121.888 443.088L184.077 359.2680000000001C216.741 370.117 251.696 376 288 376C407.86 376 512.996 312.006 569.354 216.37A48.005 48.005 0 0 0 569.354 167.63zM416 220C416 288.483 358.692 344 288 344C259.941 344 233.998 335.246 212.905 320.4120000000001L247.614 273.63C267.953 290.214 295.858 292.385 318.137 280.4700000000001H318.117C303.5630000000001 280.4700000000001 291.764 268.671 291.764 254.117S303.563 227.764 318.117 227.764C332.671 227.764 344.4700000000001 239.563 344.4700000000001 254.117V254.137C359.6930000000001 225.672 351.3590000000001 189.583 323.7910000000001 170.957L362.3050000000001 119.046C394.803 141.535 416 178.362 416 220zM541.785 200.123C512.713 249.456 468.444 290.558 414.125 316.01C469.53 246.981 455.826 145.597 381.391 93.322L403.629 63.349C461.193 87.654 509.875 129.729 541.784 183.876A16.008 16.008 0 0 1 541.785 200.123z" />
+    <glyph glyph-name="eye"
+      unicode="&#xF06E;"
+      horiz-adv-x="576" d=" M569.354 216.369C512.969 312.052 407.808 376 288 376C168.14 376 63.004 312.006 6.646 216.37A47.999 47.999 0 0 1 6.646 167.631C63.032 71.947 168.192 8 288 8C407.86 8 512.996 71.994 569.354 167.631A48.00200000000001 48.00200000000001 0 0 1 569.354 216.369zM416 220C416 151.517 358.692 96 288 96S160 151.517 160 220S217.308 344 288 344S416 288.483 416 220zM541.784 183.877C489.837 95.723 393.865 40 288 40C181.709 40 85.939 96.105 34.216 183.876A16.006 16.006 0 0 0 34.216 200.123C63.288 249.456 107.557 290.558 161.876 316.01C140.845 289.809 128 256.432 128 220C128 134.182 199.221 64 288 64C376.77 64 448 134.178 448 220C448 256.411 435.167 289.794 414.125 316.01C467.885 290.8210000000001 512.399 249.989 541.785 200.123A16.006 16.006 0 0 0 541.784 183.877zM224 224C224 234.897 226.727 245.156 231.53 254.137V254.117C231.53 239.563 243.329 227.764 257.883 227.764C272.437 227.764 284.236 239.563 284.236 254.117S272.437 280.4700000000001 257.883 280.4700000000001H257.863C266.844 285.273 277.103 288 288 288C323.346 288 352 259.346 352 224S323.346 160 288 160S224 188.654 224 224z" />
+    <glyph glyph-name="fast-backward"
+      unicode="&#xF049;"
+      horiz-adv-x="512" d=" M12 1H20C26.6 1 32 6.4 32 13V170.7C32.9 169.7 33.9 168.7 35 167.8L235.5 8.4C256.1 -8.8 288 5.6 288 33V150.8L459.5 8.4C480.1 -8.8 512 5.6 512 33V353C512 380.4 480.1 394.8 459.5 377.6L288 234.1V352.9C288 380.3 256.1 394.7 235.5 377.5L35 217C33.9 216.1 32.9 215.1 32 214.1V373C32 379.6 26.6 385 20 385H12C5.4 385 0 379.6 0 373V13C0 6.4 5.4 1 12 1zM292.5 192.4L292.7 192.5L292.9 192.6L480 353V33L292.7 192.2L292.6 192.3L292.5 192.4zM61 192.8L255.8 352.8L255.9 352.9L256 353V33L255.9 33.1L255.8 33.2L61 192V192.8z" />
+    <glyph glyph-name="fast-forward"
+      unicode="&#xF050;"
+      horiz-adv-x="512" d=" M500 385H492C485.4 385 480 379.6 480 373V215.3C479.1 216.3 478.1 217.3 477 218.2L276.5 377.6C255.9 394.7 224 380.4 224 353V235.2L52.5 377.6C31.9 394.7 0 380.4 0 353V33C0 5.6 31.9 -8.8 52.5 8.4L224 151.8V33C224 5.6 255.9 -8.8 276.5 8.4L477 169C478.1 169.9 479.1 170.9 480 171.9V13C480 6.4 485.4 1 492 1H500C506.6 1 512 6.4 512 13V373C512 379.6 506.6 385 500 385zM219.5 193.6L219.3 193.5L219.1 193.4L32 33V353L219.3 193.8L219.4 193.7L219.5 193.6zM451 193.1L256.2 33.1L256.1 33H256V353L256.1 352.9L256.2 352.8L451 194V193.1z" />
+    <glyph glyph-name="fax"
+      unicode="&#xF1AC;"
+      horiz-adv-x="512" d=" M272 16H304C312.84 16 320 23.16 320 32V64C320 72.84 312.84 80 304 80H272C263.1600000000001 80 256 72.84 256 64V32C256 23.16 263.1600000000001 16 272 16zM272 112H304C312.84 112 320 119.16 320 128V160C320 168.84 312.84 176 304 176H272C263.1600000000001 176 256 168.84 256 160V128C256 119.16 263.1600000000001 112 272 112zM368 16H400C408.84 16 416 23.16 416 32V64C416 72.84 408.84 80 400 80H368C359.1600000000001 80 352 72.84 352 64V32C352 23.16 359.1600000000001 16 368 16zM368 112H400C408.84 112 416 119.16 416 128V160C416 168.84 408.84 176 400 176H368C359.1600000000001 176 352 168.84 352 160V128C352 119.16 359.1600000000001 112 368 112zM80 320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H80C106.51 -64 128 -42.51 128 -16V272C128 298.51 106.51 320 80 320zM96 -16C96 -24.82 88.82 -32 80 -32H48C39.18 -32 32 -24.82 32 -16V272C32 280.82 39.18 288 48 288H80C88.82 288 96 280.82 96 272V-16zM480 285.06V338.74C480 347.23 476.63 355.36 470.63 361.37L393.37 438.63C387.37 444.63 379.23 448 370.74 448H208C181.49 448 160 426.51 160 400V-16C160 -42.51 181.49 -64 208 -64H464C490.51 -64 512 -42.51 512 -16V240C512 260.87 498.6 278.45 480 285.06zM384 402.75L434.75 352H384V402.75zM192 400C192 408.82 199.18 416 208 416H352V352C352 334.36 366.34 320 384 320H448V256H192V400zM480 -16C480 -24.82 472.82 -32 464 -32H208C199.18 -32 192 -24.82 192 -16V224H480V-16z" />
+    <glyph glyph-name="feather-alt"
+      unicode="&#xF56B;"
+      horiz-adv-x="512" d=" M71.46 160.39C66.6 118.38 64.19 76.12 64.08 33.83L64.05 22.67L4.69 -36.6900000000001A15.921999999999999 15.921999999999999 0 0 1 0 -48C0 -57.14 7.47 -64 16 -64C20.09 -64 24.19 -62.44 27.31 -59.31L86.67 0.05L97.83 0.08C140.12 0.2 182.38 2.61 224.39 7.46C473.8 32.87 508.44 396.28 512 448C460.28 444.44 96.87 409.8 71.46 160.39zM103.29 157.15C122.75 348.14 374.98 399.3400000000001 476.23 412.23C470.56 367.77 457.47 294.2 428.4 224H310.62L347.31 260.69C353.56 266.94 353.56 277.07 347.31 283.31S330.93 289.56 324.69 283.31L96.74 55.36C97.49 89.53 99.42 123.62 103.29 157.15zM214.62 128L278.62 192H413.73C402.36 169.27 388.87 147.69 373.35 128H214.62zM220.72 39.25C187.56 35.42 153.52 33.49 119.36 32.74L182.62 96H344.06C311.3 65.75 270.94 44.37 220.72 39.25z" />
+    <glyph glyph-name="feather"
+      unicode="&#xF52D;"
+      horiz-adv-x="512" d=" M467.11 403.11C438.25 431.9700000000001 401.61 448 361.61 448C314.9100000000001 448 263.6500000000001 426.15 214.85 377.35L129.11 291.61C49.79 212.29 57.28 80.91 75.57 34.21L4.69 -36.66A15.962 15.962 0 0 1 0 -47.98C0 -56.52 6.87 -64 16.02 -64C20.12 -64 24.22 -62.44 27.34 -59.31L98.27 11.62C115.47 4.86 144.06 -0.46 177.5 -0.46C234.68 -0.46 305.53 15.02 355.61 65.1L441.35 150.84C531.95 241.4500000000001 529.6600000000001 340.5600000000001 467.11 403.11zM151.76 268.9600000000001L237.5 354.7C277.58 394.78 320.5 415.9700000000001 361.61 415.9700000000001C392.5800000000001 415.9700000000001 421.23 403.69 444.4600000000001 380.4600000000001C486.78 338.14 490.21 280.36 457.59 223.77H310.42L347.6600000000001 261.01C353.92 267.27 353.92 277.4000000000001 347.6600000000001 283.6600000000001S331.2700000000001 289.92 325.0100000000001 283.6600000000001L101.19 59.84C91.29 103.17 87.89 205.1 151.76 268.96zM177.5 31.58C154.2 31.58 136.53 34.3700000000001 124.01 37.3700000000001L182.76 96.1200000000001L340.95 95.7500000000001L332.96 87.7600000000001C284.08 38.8800000000001 214.58 31.58 177.5 31.58zM372.88 127.6700000000001H214.32L278.39 191.7400000000001H434.73C429.62 185.6200000000001 372.88 127.6700000000001 372.88 127.6700000000001z" />
+    <glyph glyph-name="female"
+      unicode="&#xF182;"
+      horiz-adv-x="256" d=" M254.648 107.109L214.739 271.385A48.17999999999999 48.17999999999999 0 0 1 197.945 297.968A47.458 47.458 0 0 1 193.391 301.176C207.438 316.775 216 337.406 216 360C216 408.523 176.523 448 128 448S40 408.523 40 360C40 337.406 48.562 316.775 62.609 301.176A47.405 47.405 0 0 1 58.055 297.968A48.184 48.184 0 0 1 41.261 271.385L1.352 107.109C-5.868 77.441 16.716 48 48.047 48H61V-11C61 -40.224 84.776 -64 114 -64H142C171.224 -64 195 -40.224 195 -11V48H207.952C239.281 48 261.8690000000001 77.436 254.648 107.109zM128 416C158.928 416 184 390.928 184 360S158.928 304 128 304S72 329.072 72 360S97.072 416 128 416zM208 80H163V-11C163 -22.598 153.598 -32 142 -32H114C102.402 -32 93 -22.598 93 -11V80H48C37.741 80 30.123 89.539 32.398 99.546L72.398 264A16 16 0 0 0 88 276.454H100.351A88.015 88.015 0 0 1 155.65 276.454H168A16 16 0 0 0 183.602 264L223.602 99.546C225.876 89.542 218.262 80 208 80z" />
+    <glyph glyph-name="field-hockey"
+      unicode="&#xF44C;"
+      horiz-adv-x="640" d=" M619.5 330.8L563.8 275L496 342.8L580.6 427.5C588.2 435.1 582.8000000000001 448 572.1 448H560.8000000000001C557.6 448 554.6 446.7 552.3000000000001 444.5L214.4 106.2C185 76.7 138.9 121 169.2 151.4C200.4 182.6 200.4 233.3 169.2 264.5C138 295.7 87.5 295.8 56.2 264.5C19.9 228.3 0 180.1 0 128.8C0 22.3 86.1 -63.1 191.8 -63.1C281.2000000000001 -63.1 325.8 -8.6 355.9 21.6C368.2 -28.8 414.3 -66.1 468.9 -63.9C526.8 -61.6 573.6999999999999 -14.6 576.1 43.4C578.3000000000001 98 541.1 144.2 490.7 156.5L636.6 302.5C638.8000000000001 304.8 640.1 307.8 640.1 311V322.3C640 333 627.1 338.4 619.5 330.8zM191.8 -31.1C103 -31.1 32 40.7 32 128.8C32 171.6 48.6 211.7 78.8 242C97.5 260.8 127.8 260.8 146.6 242C165.3 223.3 165.3 192.8 146.6 174.1C121.7 149.2000000000001 121.7 108.6 146.7 83.5C171.7 58.6 212.2 58.6 237 83.6L473.4 320.3L541.1999999999999 252.4L447.3 158.3C399.3 150.9 361.6 113.1 354.2 65.1C304.0999999999999 14.9 269.7 -31.1 191.7999999999999 -31.1zM544.1 48C544.1 3.9 508.3 -32 464.2 -32S384.3000000000001 3.9 384.3000000000001 48S420.1000000000001 128 464.2 128S544.1 92.1 544.1 48z" />
+    <glyph glyph-name="fighter-jet"
+      unicode="&#xF0FB;"
+      horiz-adv-x="640" d=" M526.785 252.068L423.825 263.3350000000001L382.163 280H367.31L283.183 384.391C304.102 385.973 320 392.241 320 400C320 409 298.617 416 272.811 416H144V384H160V264H158.37L94.37 336H36.462L8 307.89V240.243L0 239.255V144.744L8 143.756V76.109L36.462 48H94.37L158.37 120H160V0H144V-32H272.8110000000001C298.617 -32 320.0000000000001 -25 320.0000000000001 -16C320.0000000000001 -8.241 304.1020000000001 -1.973 283.1830000000001 -0.391L367.31 104H382.163L423.826 120.665L526.7860000000001 131.932C598.984 147.778 640 154.841 640 192C640 229.458 598.137 236.407 526.785 252.068zM521.6 163.5560000000001L416 152L376 136H352L242.4 0H192V152H144L80 80H49.6L40 89.481V144H48V160H89.6V165.926L32 173.037V210.963L89.6 218.074V224H48V240H40V294.519L49.6 304H80L144 232H192V384H242.4L352 248H376L416 232L521.6 220.444C608 201.481 608 196.815 608 192S608 182.519 521.6 163.556z" />
+    <glyph glyph-name="file-alt"
+      unicode="&#xF15C;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM288 212V204C288 197.4 282.6 192 276 192H108C101.4 192 96 197.4 96 204V212C96 218.6 101.4 224 108 224H276C282.6 224 288 218.6 288 212zM288 148V140C288 133.4 282.6 128 276 128H108C101.4 128 96 133.4 96 140V148C96 154.6 101.4 160 108 160H276C282.6 160 288 154.6 288 148zM288 84V76C288 69.4 282.6 64 276 64H108C101.4 64 96 69.4 96 76V84C96 90.6 101.4 96 108 96H276C282.6 96 288 90.6 288 84z" />
+    <glyph glyph-name="file-archive"
+      unicode="&#xF1C6;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM256 415.509A15.879999999999999 15.879999999999999 0 0 0 263.431 411.314L347.313 327.432A15.890000000000002 15.890000000000002 0 0 0 351.508 320.001H256V415.509zM352 -16C352 -24.837 344.836 -32 336 -32H48C39.164 -32 32 -24.837 32 -16V400C32 408.837 39.164 416 48 416H127.714V384H159.714V416H224V312C224 298.745 234.745 288 248 288H352V-16zM192 352H160V384H192V352zM160 352V320H128V352H160zM160 288V256H128V288H160zM192 288H160V320H192V288zM182.162 192H160V224H128V192L108.551 94.757C102.058 62.292 126.889 32 160 32C193.109 32 217.942 62.291 211.449 94.757L193.93 182.353A12.001000000000001 12.001000000000001 0 0 1 182.162 192zM160.27 57.927C142.352 57.927 127.826 70.032 127.826 84.963C127.826 99.895 142.351 111.999 160.27 111.999S192.714 99.895 192.714 84.963C192.714 70.032 178.188 57.927 160.27 57.927zM192 224H160V256H192V224z" />
+    <glyph glyph-name="file-audio"
+      unicode="&#xF1C7;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM258.4 34.6C296.9 60.6 320 103.9 320 150.3C320 175 313.5 199.2 301.1 220.4C289.1 241 272 258.2 251.5000000000001 270.4C244.4000000000001 274.6 235.2 272.3 230.9000000000001 265.2000000000001C226.7000000000001 258.1 229.0000000000001 248.9 236.1 244.6C269.2000000000001 224.9 289.8 188.8 289.8 150.3C289.8 113.8 271.7 79.9 241.5 59.4C234.6 54.8 232.8 45.4 237.5 38.6C240.4 34.3 245.1 31.9999999999999 249.9 31.9999999999999C253 31.9999999999999 255.9 32.8 258.4 34.6zM231.8 72.9C257.8 90.2000000000001 273.3 119.1 273.3 150.3000000000001C273.3 183.2000000000001 255.6 214.0000000000001 227.1 230.6000000000001C219.9 234.8000000000001 210.8 232.3000000000001 206.6 225.2000000000001C202.4 218.0000000000001 204.9 208.9000000000001 212 204.7000000000001C231.3 193.5000000000001 243.3 172.7000000000001 243.3 150.4000000000001C243.3 129.3000000000001 232.8 109.7000000000001 215.2 98.0000000000001C208.3 93.4000000000001 206.4 84.1000000000001 211 77.2000000000001C213.9 72.8000000000001 218.7 70.5000000000001 223.5 70.5000000000001C226.3 70.4000000000001 229.2 71.2000000000001 231.8 72.9000000000001zM204.8 111.1C218.5 119.6 226.6 134.2000000000001 226.6 150.3C226.6 167.3 217.3 182.8 202.4 190.9C195.1 194.8000000000001 186 192.1 182.1 184.8C178.2 177.5 180.9 168.4 188.2 164.5C193.4 161.7 196.7 156.2 196.7 150.3C196.7 144.7 193.8 139.5 189.1 136.6C182.1 132.2000000000001 179.9 123 184.3 115.9C187.1 111.3 192 108.8 197.1 108.8C199.6 108.8 202.3 109.5 204.8 111.1zM138 181.3V106.6L112 126H94V162H112L138 181.3M155.9 232C153 232 149.9 230.9 147.5 228.5L104 192H76C69.4 192 64 186.6 64 180V108C64 101.4 69.4 96 76 96H104L147.5 59.5C149.9 57.1 152.9 56 155.9 56C162.1 56 168 60.8 168 68V220C168 227.2 162.1 232 155.9 232z" />
+    <glyph glyph-name="file-certificate"
+      unicode="&#xF5F3;"
+      horiz-adv-x="512" d=" M497.9 350.02L414.02 433.9C405.02 442.9 392.83 448 380.13 448H176C149.5 447.9 128.01 426.4 128.01 399.91V282.3C122.04 282.3 116.07 283.98 103.88 287.3300000000001C102.18 287.79 100.52 287.99 98.92 287.99C93.36 287.99 88.49 285.49 85.26 282.2000000000001C67.31 263.9400000000001 68.19 264.43 43.56 257.7000000000001C36.86 255.89 31.59 250.49 29.78 243.63C23.31 218.96 23.69 219.47 5.76 201.31C0.81 196.2700000000001 -1.14 188.8300000000001 0.68 181.8800000000001C7.24 157.5000000000001 7.2 157.4900000000001 0.68 133.1200000000001C-1.14 126.1700000000001 0.8 118.7200000000001 5.76 113.6700000000001C23.76 95.5200000000001 23.34 95.8800000000001 29.78 71.3800000000001C31.58 64.5000000000001 36.86 59.1100000000001 43.56 57.28C45.36 56.8 46.48 56.48 48.02 56.0700000000001V-48C48.02 -53.55 50.89 -58.69 55.61 -61.61C60.27 -64.52 66.2 -64.77 71.17 -62.31L128.01 -33.89L184.85 -62.31C187.1 -63.43 189.57 -64 192.01 -64H464.01C490.5 -64 512 -42.5 512 -16.01V316.03C512 328.7200000000001 506.9 341.02 497.9 350.02zM384.03 415.41C386.83 414.71 389.33 413.31 391.43 411.21L475.3099999999999 327.33C477.41 325.23 478.8099999999999 322.73 479.5099999999999 319.93H384.0299999999999V415.41zM33.28 131.32C38.98 153.62 38.98 161.55 33.29 183.71C48.94 199.91 52.85 206.69 58.92 228.77C80.49 234.9 86.98 238.69 102.8 254.46C112.6 251.84 119.62 250.31 128.01 250.31C136.29 250.31 143.26 251.8 153.2 254.47C168.76 238.96 175.69 234.89 197.06 228.79C203.04 206.84 206.77 200.16 222.71 183.72C216.94 161.27 216.95 153.72 222.71 131.32C207.09 115.15 203.16 108.36 197.1 86.36C182.47 82.44 173.1 79 159.85 67C149.91 71.53 139.07 73.89 128 73.89S106.1 71.53 96.15 66.99C82.97 78.87 73.59 82.33 58.92 86.32C52.95 108.21 49.2 114.89 33.28 131.32zM135.17 -1.69C130.67 0.56 125.36 0.56 120.86 -1.69L80.02 -22.11V38.1C80.14 37.98 80.21 37.93 80.33 37.81C84.08 33.99 89.01 32.02 93.97 32.02C97.47 32.02 100.99 33 104.13 34.99C111.38 39.58 119.69 41.87 128 41.87S144.62 39.58 151.87 35.01C155.03 32.99 158.55 32 162.04 32C167 32 171.91 33.99 175.67 37.79C175.8 37.92 175.88 37.97 176.01 38.11V-22.11L135.17 -1.69zM480.01 -16.01C480.01 -24.81 472.81 -32.01 464.01 -32.01H208.01V56.1C209.55 56.5 210.66 56.81 212.45 57.29C219.15 59.11 224.42 64.5100000000001 226.22 71.37C232.69 96.05 232.31 95.53 250.25 113.69C255.2 118.73 257.15 126.18 255.32 133.13C248.79 157.46 248.77 157.47 255.32 181.89C257.15 188.84 255.2 196.29 250.25 201.34C232.25 219.49 232.67 219.13 226.22 243.63C224.42 250.5 219.15 255.9 212.47 257.72C188.24 264.29 188.58 263.95 170.75 282.24C167.81 285.21 163.97 286.76 160.01 287.4V399.91C160.01 408.71 167.21 416 176.01 416H352.04V311.93C352.04 298.63 362.74 288 376.04 288H480.02V-16.01z" />
+    <glyph glyph-name="file-chart-line"
+      unicode="&#xF659;"
+      horiz-adv-x="384" d=" M136 128H120C115.6 128 112 124.4 112 120V24C112 19.6 115.6 16 120 16H136C140.4 16 144 19.6 144 24V120C144 124.4 140.4 128 136 128zM200 224H184C179.6 224 176 220.4 176 216V24C176 19.6 179.6 16 184 16H200C204.4 16 208 19.6 208 24V216C208 220.4 204.4 224 200 224zM240 152V24C240 19.6 243.6 16 248 16H264C268.4 16 272 19.6 272 24V152C272 156.4 268.4 160 264 160H248C243.6 160 240 156.4 240 152zM369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01z" />
+    <glyph glyph-name="file-chart-pie"
+      unicode="&#xF65A;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM192 256V128H319.99C320 128 319.99 128.01 319.99 128.02C319.98 198.7 262.7 255.99 192.02 256H192zM224 218.51C251.22 208.85 272.85 187.23 282.5 160H224V218.51zM176 32C131.88 32 96 67.89 96 112C96 150.63 123.52 182.95 160 190.38V222.38C105.87 214.53 64 168.27 64 112C64 50.25 114.25 0 176 0C232.27 0 278.54 41.87 286.38 96H254.38C246.95 59.53 214.64 32 176 32z" />
+    <glyph glyph-name="file-check"
+      unicode="&#xF316;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM347.314 327.431A15.890000000000002 15.890000000000002 0 0 0 351.509 320H256V415.509A15.879999999999999 15.879999999999999 0 0 0 263.431 411.314L347.314 327.4310000000001zM336 -32H48C39.163 -32 32 -24.837 32 -16V400C32 408.837 39.163 416 48 416H224V312C224 298.745 234.745 288 248 288H352V-16C352 -24.837 344.837 -32 336 -32zM301.533 178.949L166.742 45.239C162.042 40.576 154.454 40.597 149.779 45.285L82.421 112.8370000000001C77.738 117.5340000000001 77.749 125.138 82.445 129.8220000000001L90.95 138.3020000000001C95.647 142.9850000000001 103.251 142.9740000000001 107.934 138.2780000000001L158.376 87.6910000000001L276.158 204.5280000000001C280.867 209.1990000000001 288.471 209.1690000000001 293.1430000000001 204.4600000000001L301.6010000000001 195.9330000000001C306.2730000000001 191.2240000000001 306.2420000000001 183.6200000000001 301.5330000000001 178.9490000000001z" />
+    <glyph glyph-name="file-code"
+      unicode="&#xF1C9;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM347.314 327.431A15.890000000000002 15.890000000000002 0 0 0 351.509 320H256V415.509A15.879999999999999 15.879999999999999 0 0 0 263.431 411.314L347.314 327.4310000000001zM336 -32H48C39.163 -32 32 -24.837 32 -16V400C32 408.837 39.163 416 48 416H224V312C224 298.745 234.745 288 248 288H352V-16C352 -24.837 344.837 -32 336 -32zM174.529 35.404L148.601 42.931A5.1 5.1 0 0 0 145.125 49.251L203.152 249.12A5.1 5.1 0 0 0 209.472 252.596L235.399 245.069A5.1 5.1 0 0 0 238.875 238.749L180.849 38.88A5.1 5.1 0 0 0 174.529 35.404zM126.083 83.078L144.575 102.802A5.101 5.101 0 0 1 144.224 110.119L105.725 144L144.223 177.881A5.1 5.1 0 0 1 144.574 185.198L126.082 204.922A5.1 5.1 0 0 1 118.873 205.155L57.61 147.721A5.1 5.1 0 0 1 57.61 140.28L118.873 82.846A5.1 5.1 0 0 1 126.083 83.078zM265.126 82.846L326.388 140.28A5.1 5.1 0 0 1 326.388 147.721L265.126 205.155A5.1 5.1 0 0 1 257.917 204.922L239.425 185.1979999999999A5.101 5.101 0 0 1 239.776 177.8809999999999L278.275 144L239.776 110.119A5.1 5.1 0 0 1 239.425 102.802L257.917 83.078A5.1 5.1 0 0 1 265.126 82.846z" />
+    <glyph glyph-name="file-contract"
+      unicode="&#xF56C;"
+      horiz-adv-x="384" d=" M196.66 84.67L182.78 126.29C179.5 136.1 170.34 142.7000000000001 160 142.7000000000001S140.5 136.1100000000001 137.22 126.29L119 71.64C117.5 67.06 113.22 64 108.41 64H96C87.16 64 80 56.84 80 48S87.16 32 96 32H108.41C127.03 32 143.5 43.88 149.38 61.53L160 93.42L176.81 42.94A15.994 15.994 0 0 1 190.87 32.05C191.25 32.02 191.62 32 191.99 32C198.02 32 203.58 35.41 206.3 40.86L213.96 56.19C216.74 61.78 221.9 62.38 223.99 62.38S231.24 61.79 234.18 55.85C241.56 41.15 256.37 32.0100000000001 272.8 32.0100000000001H288C296.84 32.0100000000001 304 39.1700000000001 304 48.0100000000001S296.84 64.0100000000001 288 64.0100000000001H272.81C268.5300000000001 64.0100000000001 264.69 66.39 262.65 70.5100000000001C250.69 94.3600000000001 216.41 100.84 196.66 84.6700000000001zM72 352H184C188.42 352 192 355.58 192 360V376C192 380.42 188.42 384 184 384H72C67.58 384 64 380.42 64 376V360C64 355.58 67.58 352 72 352zM192 296V312C192 316.42 188.42 320 184 320H72C67.58 320 64 316.42 64 312V296C64 291.5800000000001 67.58 288 72 288H184C188.42 288 192 291.5800000000001 192 296zM369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01z" />
+    <glyph glyph-name="file-csv"
+      unicode="&#xF6DD;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM120 192H112C85.49 192 64 170.51 64 144V112C64 85.49 85.49 64 112 64H120C124.42 64 128 67.58 128 72V88C128 92.42 124.42 96 120 96H112C103.16 96 96 103.16 96 112V144C96 152.84 103.16 160 112 160H120C124.42 160 128 163.58 128 168V184C128 188.42 124.42 192 120 192zM232 192C227.58 192 224 188.42 224 184V163.2C224 127.72 236.88 94.31 260.28 69.11C263.3 65.86 267.55 64 272 64S280.7 65.86 283.7200000000001 69.11C307.1300000000001 94.31 320 127.72 320 163.2000000000001V184C320 188.42 316.42 192 312 192H296C291.58 192 288 188.42 288 184V163.2C288 142.93 282.3 123.03 272 106.32C261.7 123.02 256 142.93 256 163.2V184C256 188.42 252.42 192 248 192H232zM179.45 149.53C178.07 150.72 177.33 152.08 177.33 153.37C177.33 156.49 181.78 159.99 187.74 159.99H200C204.42 159.99 208 163.5699999999999 208 167.99V183.99C208 188.41 204.42 191.99 200 191.99H187.73C164.34 191.99 145.32 174.66 145.32 153.37C145.32 142.7099999999999 150.18 132.4499999999999 158.65 125.23L180.54 106.46C181.92 105.27 182.66 103.91 182.66 102.62C182.66 99.5 178.21 96 172.25 96H160C155.58 96 152 92.42 152 88V72C152 67.58 155.58 64 160 64H172.27C195.66 64 214.68 81.33 214.68 102.62C214.68 113.28 209.82 123.54 201.35 130.76L179.45 149.53z" />
+    <glyph glyph-name="file-download"
+      unicode="&#xF56D;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM208 232C208 236.42 204.42 240 200 240H184C179.58 240 176 236.42 176 232V143.98H123.34C112.34 143.98 102.75 137.57 98.34 127.26C93.84 116.74 95.96 104.64 103.78 96.45L171.9 24.67C177.24 19.08 184.37 15.98 191.99 15.98S206.74 19.0699999999999 212.08 24.68L280.2000000000001 96.43C288.0100000000001 104.6299999999999 290.1400000000001 116.74 285.6400000000001 127.2599999999999C281.23 137.5699999999999 271.6400000000001 143.9799999999999 260.6400000000001 143.9799999999999H208V232zM250.84 111.98L192 49.98L133.16 111.98H250.84z" />
+    <glyph glyph-name="file-edit"
+      unicode="&#xF31C;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM219.2 200.8L248.8 171.2C250.6 169.4 250.6 166.6 248.8 164.8L136.4 52.4L106.3 48.1C100.4 47.3 95.3 52.3 96.1 58.3L100.4 88.4L212.8 200.8C214.6 202.6 217.4 202.6 219.2 200.8zM283.6 199.6L267.2000000000001 183.2000000000001C265.4000000000001 181.4 262.6 181.4 260.8000000000001 183.2000000000001L231.2000000000001 212.8000000000001C229.4000000000001 214.6000000000001 229.4000000000001 217.4 231.2000000000001 219.2000000000001L247.6000000000001 235.6000000000001C253.5000000000001 241.5000000000001 263.0000000000001 241.5000000000001 268.8000000000001 235.6000000000001L283.6000000000001 220.8000000000001C289.5000000000001 215 289.5000000000001 205.5 283.6000000000001 199.6000000000001z" />
+    <glyph glyph-name="file-excel"
+      unicode="&#xF1C3;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM211.7 140L262.2 221.8C267 229.8 261.3 240 251.9 240H247.8C243.7 240 239.9 237.9 237.7 234.5C206.7 186 201.3 181 192 160C174.8 192.2 183.6 176 146.2 234.5C144 237.9 140.2 240 136.1 240H132C122.6 240 116.9 229.7 121.8 221.8L173 140L113.9 50.5C108.8 42.5 114.5 32 124 32H127.5C131.6 32 135.4 34.1 137.6 37.5C174.8 95.5 182.9 100 192 120C223.5 63.3 236.3 52.8 246.4 37.4C248.6 34 252.4 32 256.4 32H260C269.5 32 275.2 42.4 270.1 50.4L211.7 140z" />
+    <glyph glyph-name="file-exclamation"
+      unicode="&#xF31A;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM180.7 256H203.3C210.2 256 215.7 250.2 215.3 243.3L208.6 123.3C208.2 116.9 203 112 196.6 112H187.3C180.9 112 175.7 117 175.3 123.3L168.6 243.3C168.3 250.2 173.8 256 180.7 256zM220 64C220 48.5 207.5 36 192 36S164 48.5 164 64S176.5 92 192 92S220 79.5 220 64z" />
+    <glyph glyph-name="file-export"
+      unicode="&#xF56E;"
+      horiz-adv-x="576" d=" M567.31 164.11L495.53 232.27C487.25 240.07 475.1199999999999 242.15 464.69 237.65C454.38 233.23 448 223.67 448 212.68V160H384V316.03C384 328.73 378.9 341.03 369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V96H352.01V-16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V160H168C163.58 160 160 156.42 160 152V136C160 131.58 163.58 128 168 128H448V75.33C448 64.35 454.38 54.78 464.69 50.36C479.62 43.91 491.57 51.97 495.57 55.75L567.29 123.87C572.91 129.2 576.01 136.35 576.01 143.99S572.91 158.8 567.31 164.11zM256.03 319.93V415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999zM480 85.12V202.88L542 144L480 85.12z" />
+    <glyph glyph-name="file-image"
+      unicode="&#xF1C5;"
+      horiz-adv-x="384" d=" M159 112L119.5 151.5C114.8 156.2 107.2 156.2 102.5 151.5L63.5 112.5L63 0H319V144L263.5 199.5C258.8 204.2 251.2 204.2 246.5 199.5L159 112zM255 162.7L287 130.7V32H95.1L95.4 99.2L111 114.8L159 66.8C179.3 87.1 236.7 144.4 255 162.7000000000001zM127 192C162.3 192 191 220.7 191 256S162.3 320 127 320S63 291.3 63 256S91.7 192 127 192zM127 288C144.6 288 159 273.6 159 256S144.6 224 127 224S95 238.4 95 256S109.4 288 127 288zM369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM256 415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16z" />
+    <glyph glyph-name="file-import"
+      unicode="&#xF56F;"
+      horiz-adv-x="512" d=" M497.9 350.02L414.02 433.9C405.02 442.9 392.82 448 380.13 448H175.99C149.5 447.9 128 426.4 128 399.91V160H8C3.58 160 0 156.42 0 152V136C0 131.58 3.58 128 8 128H256V75.33C256 64.35 262.38 54.78 272.69 50.36C287.62 43.91 299.57 51.97 303.57 55.75L375.29 123.87C380.91 129.2 384.01 136.35 384.01 143.99S380.92 158.79 375.32 164.1L303.54 232.26C295.26 240.0600000000001 283.13 242.14 272.7 237.64C262.39 233.2200000000001 256.01 223.66 256.01 212.67V160H160V399.91C160 408.71 167.2 416 176 416H352.04V311.93C352.04 298.63 362.74 288 376.04 288H480.02V-16.01C480.02 -24.81 472.82 -32.01 464.02 -32.01H175.99C167.19 -32.01 159.99 -24.81 159.99 -16.01V96H128V-16.01C128 -42.5 149.5 -64 175.99 -64H464.01C490.5 -64 512 -42.5 512 -16.01V316.03C512 328.7200000000001 506.9 341.02 497.9 350.02zM288 202.88L350 144L288 85.12V202.88zM384.03 319.93V415.41C386.83 414.71 389.33 413.31 391.43 411.21L475.3099999999999 327.33C477.41 325.23 478.8099999999999 322.73 479.5099999999999 319.93H384.0299999999999z" />
+    <glyph glyph-name="file-invoice-dollar"
+      unicode="&#xF571;"
+      horiz-adv-x="384" d=" M219.09 120.58L174.09 134.08C168.93 135.63 165.32 140.86 165.32 146.81C165.32 154.08 170.62 160 177.12 160H205.23C209.79 160 214.19 158.71 218.05 156.28C221.29 154.25 225.4100000000001 154.37 228.18 157.01L239.93 168.22C243.46 171.59 243.26 177.43 239.36 180.36C230.26 187.19 219.28 191.13 207.99 191.71V216C207.99 220.42 204.41 224 199.99 224H183.99C179.57 224 175.99 220.42 175.99 216V191.88C152.37 191.25 133.32 171.33 133.32 146.81C133.32 126.84 146.3 109 164.9 103.42L209.9 89.92C215.06 88.37 218.67 83.14 218.67 77.19C218.67 69.92 213.37 64 206.87 64H178.76C174.2 64 169.8 65.29 165.94 67.72C162.7 69.75 158.58 69.6300000000001 155.81 66.99L144.06 55.78C140.53 52.41 140.73 46.5700000000001 144.63 43.64C153.73 36.8100000000001 164.71 32.8700000000001 176 32.29V8C176 3.58 179.58 0 184 0H200C204.42 0 208 3.58 208 8V32.12C231.62 32.75 250.67 52.66 250.67 77.19C250.67 97.16 237.6900000000001 115 219.09 120.58zM72 352H184C188.42 352 192 355.58 192 360V376C192 380.42 188.42 384 184 384H72C67.58 384 64 380.42 64 376V360C64 355.58 67.58 352 72 352zM192 296V312C192 316.42 188.42 320 184 320H72C67.58 320 64 316.42 64 312V296C64 291.5800000000001 67.58 288 72 288H184C188.42 288 192 291.5800000000001 192 296zM369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01z" />
+    <glyph glyph-name="file-invoice"
+      unicode="&#xF570;"
+      horiz-adv-x="384" d=" M312 32H232C227.58 32 224 28.42 224 24V8C224 3.58 227.58 0 232 0H312C316.42 0 320 3.58 320 8V24C320 28.42 316.42 32 312 32zM64 208V112C64 103.16 72.19 96 82.29 96H301.7200000000001C311.8200000000001 96 320.0100000000001 103.16 320.0100000000001 112V208C320.0100000000001 216.84 311.8200000000001 224 301.7200000000001 224H82.29C72.19 224 64 216.84 64 208zM96 192H288V128H96V192zM72 352H184C188.42 352 192 355.58 192 360V376C192 380.42 188.42 384 184 384H72C67.58 384 64 380.42 64 376V360C64 355.58 67.58 352 72 352zM72 288H184C188.42 288 192 291.5800000000001 192 296V312C192 316.42 188.42 320 184 320H72C67.58 320 64 316.42 64 312V296C64 291.5800000000001 67.58 288 72 288zM369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01z" />
+    <glyph glyph-name="file-medical-alt"
+      unicode="&#xF478;"
+      horiz-adv-x="448" d=" M433.9 350L350 433.9C341 442.9 328.8 448 316.1 448H112.1C85.6 447.9 64.1 426.4 64.1 399.9V160H8C3.6 160 0 156.4 0 152V136C0 131.6 3.6 128 8 128H134.1L168.8 58.5C171.7 52.6 180.2 52.6 183.1 58.5L240 172.2L262.1 128H352C360.8 128 368 135.2 368 144S360.8 160 352 160H281.9L247.2 229.5C244.3 235.4 235.8 235.4 232.9 229.5L176 115.8L156.1 155.6C154.7 158.3 152 160 148.9 160H96V399.9C96 408.7 103.3 416 112.1 416H288.1V311.9C288.1 298.6 298.8 288 312.1 288H416.1V-16C416.1 -24.8 408.9000000000001 -32 400.1 -32H112.1C103.3 -32 96 -24.8 96 -16V96H64.1V-16C64.1 -42.5 85.6 -64 112.1 -64H400C426.5 -64 448 -42.5 448 -16V316C448 328.7 442.9 341 433.9 350zM320 319.9V415.4C322.8 414.7 325.3 413.3 327.4 411.2L411.3 327.3C413.4 325.2 414.8 322.7 415.5 319.9H320z" />
+    <glyph glyph-name="file-medical"
+      unicode="&#xF477;"
+      horiz-adv-x="384" d=" M224 216C224 220.4 220.4 224 216 224H168C163.6 224 160 220.4 160 216V160H104C99.6 160 96 156.4 96 152V104C96 99.6 99.6 96 104 96H160V40C160 35.6 163.6 32 168 32H216C220.4 32 224 35.6 224 40V96H280C284.4 96 288 99.6 288 104V152C288 156.4 284.4 160 280 160H224V216zM369.9 350L286 433.9C277 442.9 264.8 448 252.1 448H48C21.5 447.9 0 426.4 0 399.9V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316C384 328.7 378.9 341 369.9 350zM256 415.4C258.8 414.7 261.3 413.3 263.4 411.2L347.3 327.3C349.4 325.2 350.8 322.7 351.5 319.9H256V415.4zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V399.9C32 408.7 39.2 416 48 416H224V311.9C224 298.6 234.7 288 248 288H352V-16z" />
+    <glyph glyph-name="file-minus"
+      unicode="&#xF318;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM276 128H108C101.4 128 96 133.4 96 140V148C96 154.6 101.4 160 108 160H276C282.6 160 288 154.6 288 148V140C288 133.4 282.6 128 276 128z" />
+    <glyph glyph-name="file-pdf"
+      unicode="&#xF1C1;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM314 139.2C300.5 152.5 259 148.4 240.3 145.9C219.1 158.7 205.1 176.3 195.2 202.5C199.5 220.5 207.2 249.7 201.6 267.4C197.2 295.5 161.9 292.1 157 274.2C152 255.9 156.7 229.8 165.4 196.4C153.5 168 135.7000000000001 129.5 123.3000000000001 107.8C102.5 97.1 69.2000000000001 78.4999999999999 64.5 55.4C61 38.6 87.4 16 117.6000000000001 49C126.7000000000001 58.9 136.9000000000001 73.8 148.9000000000001 94.5C175.6000000000001 103.3 205.0000000000001 114.3 230.9000000000001 118.5C252.8000000000001 106.5 278.5000000000001 98.6 295.5000000000001 98.6C323.2000000000001 98.5 324.4000000000001 128.8 314.0000000000001 139.2000000000001zM84.8 50.2C90.7 66.1 113.4 84.6 120.3 91C98.2 55.7 84.8 49.5 84.8 50.2zM180 272.5C188.7 272.5 187.8 235 182.1 224.9C176.9 241.2 177.1 272.5 180 272.5zM151.6 113.2C162.9 133 172.6 156.4 180.4 176.9C190.1 159.2 202.5 145.2 215.5 135.4C191.2 130.7 170.1 120.3 151.6 113.2zM305 119.1S299.2 112.1 261.5 128.2C302.5 131.2 309.2 121.8 305 119.1z" />
+    <glyph glyph-name="file-plus"
+      unicode="&#xF319;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM288 148V140C288 133.4 282.6 128 276 128H208V60C208 53.4 202.6 48 196 48H188C181.4 48 176 53.4 176 60V128H108C101.4 128 96 133.4 96 140V148C96 154.6 101.4 160 108 160H176V228C176 234.6 181.4 240 188 240H196C202.6 240 208 234.6 208 228V160H276C282.6 160 288 154.6 288 148z" />
+    <glyph glyph-name="file-powerpoint"
+      unicode="&#xF1C4;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM204.3 240H140C133.4 240 128 234.6 128 228V44C128 37.4 133.4 32 140 32H148C154.6 32 160 37.4 160 44V104.4H204.3C243 104.4 272 131.7 272 173.4C272 212 248.2 240 204.3 240zM230.3 142.3C222.8 134.7 212.5 130.9 199.3 130.9H160V215H199.7C212.6 215 222.8 211.3 230.3 203.9C245.6 188.8 245.3 157.4 230.3 142.3z" />
+    <glyph glyph-name="file-prescription"
+      unicode="&#xF572;"
+      horiz-adv-x="384" d=" M192.67 149.96C211.17 159.1 224 177.97 224 200C224 230.93 198.93 256 168 256H104C99.58 256 96 252.42 96 248V104C96 99.58 99.58 96 104 96H120C124.42 96 128 99.58 128 104V144H153.37L201.37 96L162.34 56.97C159.22 53.85 159.22 48.78 162.34 45.66L173.65 34.35C176.77 31.23 181.84 31.23 184.96 34.35L224 73.37L263.03 34.34C266.15 31.22 271.22 31.22 274.34 34.34L285.65 45.65C288.77 48.77 288.77 53.84 285.65 56.96L246.61 96C246.62 96.01 246.61 95.97 246.62 95.99L285.65 135.02C288.77 138.14 288.77 143.21 285.65 146.33L274.34 157.64C271.22 160.76 266.15 160.76 263.03 157.64L224 118.63L192.67 149.96zM168 176H128V224H168C181.23 224 192 213.23 192 200S181.23 176 168 176zM369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01z" />
+    <glyph glyph-name="file-signature"
+      unicode="&#xF573;"
+      horiz-adv-x="576" d=" M560.83 312.04L536.0400000000001 336.83C515.8100000000001 357.07 483.0400000000001 357.09 462.7800000000001 336.83L384 258.28V316.03C384 328.73 378.9 341.03 369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V64.53C390.29 69.21 396.62 73.8800000000001 402.18 79.48L560.8199999999999 238.7800000000001C570.6099999999999 248.5600000000001 575.9899999999999 261.5700000000001 575.9899999999999 275.4100000000001S570.6099999999999 302.25 560.8299999999999 312.04zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V226.47L303.5 178.23C273.36 148.2700000000001 256.08 106.72 256.03 64.23C252.1 64.52 248.56 66.65 246.67 70.5C234.7 94.36 200.42 100.84 180.67 84.67L166.79 126.29C163.51 136.1 154.35 142.7000000000001 144.01 142.7000000000001S124.51 136.1100000000001 121.23 126.29L103 71.64C101.5 67.06 97.22 64 92.41 64H80C71.16 64 64 56.84 64 48S71.16 32 80 32H92.41C111.03 32 127.5 43.88 133.38 61.53L144 93.42L160.81 42.94C165.35 29.43 183.95 28.11 190.31 40.86L197.97 56.19C201.98 64.26 213.77 64.78 218.19 55.85C225.44 41.39 239.9 32.3 256 32H288C310.05 32.01 331.95 36.9 352.01 45.6V-16.01zM379.49 102.04A129.012 129.012 0 0 0 288 64V64.03C288 98.38 301.7 131.32 326.06 155.54L446.61 275.41L499.41 222.61L379.49 102.04zM538.2 261.4L517.01 240.21L464.21 293.01L485.41 314.2C493.14 321.93 505.6799999999999 321.94 513.42 314.2L538.2099999999999 289.41C545.93 281.68 545.93 269.14 538.1999999999999 261.4z" />
+    <glyph glyph-name="file-spreadsheet"
+      unicode="&#xF65B;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM64 240V16C64 7.16 71.16 0 80 0H304C312.84 0 320 7.16 320 16V240C320 248.84 312.84 256 304 256H80C71.16 256 64 248.84 64 240zM288 32H208V80H288V32zM288 112H208V160H288V112zM96 224H288V192H96V224zM96 160H176V112H96V160zM96 80H176V32H96V80z" />
+    <glyph glyph-name="file-times"
+      unicode="&#xF317;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM262.7 95.9C267.4 91.2 267.4 83.6 262.7 78.9L257 73.2C252.3 68.5 244.7 68.5 240 73.2L192 121.4L143.9 73.3C139.2 68.6 131.6 68.6 126.9 73.3L121.2 78.9999999999999C116.5 83.6999999999999 116.5 91.3 121.2 95.9999999999999L169.3 144.1L121.2 192.2C116.5 196.9 116.5 204.5 121.2 209.2L126.9 214.9C131.6 219.5999999999999 139.2 219.5999999999999 143.9 214.9L192 166.8L240.1 214.9C244.8 219.5999999999999 252.4000000000001 219.5999999999999 257.1 214.9L262.8 209.2C267.5 204.5 267.5 196.9 262.8 192.2L214.6 144L262.7 95.9z" />
+    <glyph glyph-name="file-upload"
+      unicode="&#xF574;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM171.91 231.31L103.79 159.56C95.98 151.36 93.85 139.25 98.35 128.73C102.76 118.42 112.35 112.01 123.35 112.01H176V24C176 19.58 179.58 16 184 16H200C204.42 16 208 19.58 208 24V112.02H260.66C271.66 112.02 281.25 118.43 285.66 128.74C290.16 139.26 288.04 151.36 280.22 159.55L212.1 231.33C201.41 242.52 182.59 242.53 171.91 231.31zM133.16 144.02L192 206.02L250.84 144.02H133.16z" />
+    <glyph glyph-name="file-user"
+      unicode="&#xF65C;"
+      horiz-adv-x="384" d=" M369.9 350.02L286.02 433.9C277.02 442.9 264.82 448 252.13 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H336.01C362.5 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.9 341.02 369.9 350.02zM256.03 415.41C258.83 414.71 261.33 413.31 263.43 411.21L347.31 327.33C349.41 325.23 350.81 322.73 351.51 319.93H256.0299999999999V415.41zM272 -32.01H112V-0.86C112 17.52 125.05 32 145.25 32C157.7 32 166.05 25.01 192 25.01C217.5 25.01 226.56 32 238.75 32C258.9100000000001 32 272 17.57 272 -0.86V-32.01zM352.01 -16.01C352.01 -24.81 344.81 -32.01 336.01 -32.01H304V-0.86C304 13.02 299.79 25.91 292.59 36.62C280.51 54.56 259.92 64 238.75 64C219.29 64 214.39 57.01 192 57.01C169.59 57.01 164.74 64 145.25 64C124.08 64 103.49 54.56 91.42 36.62C84.21 25.92 80 13.02 80 -0.86V-32.01H47.99C39.19 -32.01 31.99 -24.81 31.99 -16.01V399.91C31.99 408.71 39.19 416 47.99 416H224.03V311.93C224.03 298.63 234.73 288 248.03 288H352.01V-16.01zM112 160C112 115.82 147.82 80 192 80S272 115.82 272 160C272 204.19 236.18 240 192 240S112 204.19 112 160zM240 160C240 133.53 218.47 112 192 112S144 133.53 144 160S165.53 208 192 208S240 186.47 240 160z" />
+    <glyph glyph-name="file-video"
+      unicode="&#xF1C8;"
+      horiz-adv-x="384" d=" M224 167.407C224 180.99 212.989 192 199.407 192H88.593C75.011 192 64 180.99 64 167.407V56.592C64 43.01 75.011 32 88.593 32H199.407C212.989 32 224 43.01 224 56.593V67L251.971 39.029A23.998000000000005 23.998000000000005 0 0 1 268.9410000000001 32H296C309.255 32 320 42.745 320 56V168C320 181.255 309.255 192 296 192H268.941A24.003 24.003 0 0 1 251.971 184.971L224 157V167.407zM192 64H96V160H192V64zM272.255 160H288V64H272.255L224 105.174V118.826L272.255 160zM369.9410000000001 350.059L286.0580000000001 433.9410000000001A47.99600000000001 47.99600000000001 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM256 415.509A15.888 15.888 0 0 0 263.432 411.314L347.314 327.432A15.881999999999998 15.881999999999998 0 0 0 351.509 320.001H256V415.509zM352 -16C352 -24.837 344.836 -32 336 -32H48C39.164 -32 32 -24.837 32 -16V400C32 408.837 39.164 416 48 416H224V312C224 298.745 234.745 288 248 288H352V-16z" />
+    <glyph glyph-name="file-word"
+      unicode="&#xF1C2;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32zM282.4 214.5C275.6 181.7 249.9 74.8 249 64.2C243.2 93.3 248.3 62.6 207.2 215.1C205.8 220.3 201 224 195.6 224H189.2C183.8 224 179 220.4 177.6 215.1C139.3 72.8 140.2 74.5 138.2 60.4C134.1 84.3 140.3 63.3 103.8 214.8C102.5 220.2 97.7 224 92.1 224H84.9C77.1 224 71.4 216.7 73.3 209.1C82.8 171.1 107.8 71.6999999999999 115.5 41.1C116.8 35.8 121.6 31.9999999999999 127.1 31.9999999999999H144.1C149.5 31.9999999999999 154.3 35.6999999999999 155.7 40.8999999999999C189.9 168.5999999999999 189.2 164.3 192.4 183.8C198.9 152.6999999999999 192.6 176.8 229.1 40.9C230.5 35.7 235.3 32 240.7 32H254.7C260.2 32 268.4 35.7 269.8 41L312.6 209C314.5 216.6 308.8 224 301 224H294.2C288.5 224 283.5999999999999 220 282.3999999999999 214.5z" />
+    <glyph glyph-name="file"
+      unicode="&#xF15B;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM347.3 327.4C349.4 325.3 350.8 322.8 351.5 320H256V415.5C258.8 414.8 261.3 413.4 263.4 411.3L347.3 327.4zM336 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H224V312C224 298.7 234.7 288 248 288H352V-16C352 -24.8 344.8 -32 336 -32z" />
+    <glyph glyph-name="fill-drip"
+      unicode="&#xF576;"
+      horiz-adv-x="576" d=" M512 128S448 35.35 448 0C448 -35.35 476.66 -64 512 -64S576 -35.35 576 0S512 128 512 128zM512 -32C494.36 -32 480 -17.64 480 -0.04C480.26 9.74 493.57 37.63 512.01 68.69C530.4399999999999 37.65 543.74 9.78 544 0C544 -17.64 529.64 -32 512 -32zM502.63 230.94L294.94 438.63C288.69 444.88 280.5 448 272.31 448S255.93 444.88 249.69 438.63L156.84 345.78L56.97 445.65C53.85 448.77 48.78 448.77 45.66 445.65L34.34 434.34C31.22 431.2200000000001 31.22 426.15 34.34 423.03L134.22 323.15L28.12 217.05C-9.37 179.56 -9.37 118.79 28.12 81.3L145.31 -35.89C164.06 -54.63 188.62 -64.01 213.18 -64.01C237.75 -64.01 262.31 -54.64 281.05 -35.89L502.62 185.68C515.12 198.18 515.12 218.44 502.63 230.94zM258.43 -13.26C246.34 -25.34 230.27 -32 213.18 -32S180.02 -25.34 167.94 -13.26L50.74 103.94C43.86 110.82 38.97 119.08 35.83 128H399.68L258.43 -13.26zM431.68 160H33.06C35.26 172.96 41.26 184.94 50.75 194.43L156.84 300.54L244.69 212.69C250.94 206.44 261.07 206.44 267.31 212.69C273.56 218.94 273.56 229.07 267.31 235.3100000000001L179.46 323.1600000000001L272.29 416H272.31L480 208.32L431.68 160z" />
+    <glyph glyph-name="fill"
+      unicode="&#xF575;"
+      horiz-adv-x="512" d=" M502.63 230.94L294.94 438.63C288.69 444.88 280.5 448 272.31 448S255.93 444.88 249.69 438.63L156.84 345.78L56.97 445.65C53.85 448.77 48.78 448.77 45.66 445.65L34.34 434.34C31.22 431.2200000000001 31.22 426.15 34.34 423.03L134.22 323.16L28.12 217.06C-9.37 179.57 -9.37 118.8 28.12 81.31L145.31 -35.88C164.06 -54.62 188.62 -64 213.18 -64C237.75 -64 262.31 -54.63 281.06 -35.88L502.63 185.69C515.12 198.18 515.12 218.44 502.63 230.94zM258.43 -13.26C246.34 -25.34 230.27 -32 213.18 -32S180.02 -25.34 167.94 -13.26L50.74 103.94C43.86 110.82 38.97 119.08 35.83 128H399.68L258.43 -13.26zM431.68 160H33.06C35.26 172.96 41.26 184.94 50.75 194.43L156.84 300.54L244.69 212.69C250.94 206.44 261.07 206.44 267.31 212.69C273.56 218.94 273.56 229.07 267.31 235.3100000000001L179.46 323.1600000000001L272.29 416H272.31L480 208.32L431.68 160z" />
+    <glyph glyph-name="film-alt"
+      unicode="&#xF3A0;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM384 44C384 37.4 378.6 32 372 32H140C133.4 32 128 37.4 128 44V340C128 346.6 133.4 352 140 352H372C378.6 352 384 346.6 384 340V44zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="film"
+      unicode="&#xF008;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM384 44C384 37.4 378.6 32 372 32H140C133.4 32 128 37.4 128 44V164C128 170.6 133.4 176 140 176H372C378.6 176 384 170.6 384 164V44zM384 220C384 213.4 378.6 208 372 208H140C133.4 208 128 213.4 128 220V340C128 346.6 133.4 352 140 352H372C378.6 352 384 346.6 384 340V220zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="filter"
+      unicode="&#xF0B0;"
+      horiz-adv-x="512" d=" M479.968 448H32.038C3.613 448 -10.729 413.513 9.41 393.373L192 210.745V24A31.996 31.996 0 0 1 202.928 -0.082L266.928 -56.065C287.366 -73.948 320 -59.745 320 -31.983V210.745L502.595 393.373C522.695 413.472 508.45 448 479.968 448zM288 224V-32L224 24V224L32 416H480L288 224z" />
+    <glyph glyph-name="fingerprint"
+      unicode="&#xF577;"
+      horiz-adv-x="512" d=" M256 278.0800000000001C227.72 277.67 203.16 268.4600000000001 184.63 249.9100000000001C166.63 231.9100000000001 156.94 207.97 157.35 182.47C158.13 132.24 153.44 81.97 143.35 33.08C141.54 24.42 147.13 15.96 155.76 14.17C164.26 12.51 172.85 17.94 174.67 26.61C185.23 77.78 190.17 130.39 189.36 182.96C189.11 199.7300000000001 195.45 215.46 207.27 227.2700000000001C225.93 245.9300000000001 249.54 246.0700000000001 256.02 246.0700000000001C293.14 245.5200000000001 322.43 215.8800000000001 322.99 180.0100000000001C323.77 129.6400000000001 320.02 79.15 311.87 29.95C310.43 21.23 316.31 13.0000000000001 325.0300000000001 11.5600000000001C325.9400000000001 11.4 326.81 11.34 327.6900000000001 11.34C335.3800000000001 11.34 342.1600000000001 16.89 343.4400000000001 24.73C351.9100000000001 75.81 355.7800000000001 128.21 355.0000000000001 180.52C354.1300000000001 233.52 310.1900000000001 277.28 256.0000000000001 278.08zM255.91 191.99C247.07 191.85 240.04 184.58 240.16 175.74C241.28 102.35 231.94 30.75 212.38 -39.33L211.16 -43.66C209.31 -50.29 212.9 -63.9999999999999 226.57 -63.9999999999999C233.57 -63.9999999999999 239.98 -59.3899999999999 241.98 -52.3399999999999L243.2 -47.9699999999999C263.61 25.1100000000001 273.36 99.7700000000001 272.17 176.2400000000001C272.03 185.0800000000001 263.94 192.1400000000001 255.91 191.9900000000001zM112.66 298.2100000000001C87.47 267.23 73.94 228.1 74.57 188.06C75.19 148.5 71.95 108.92 64.98 70.45C63.42 61.75 69.17 53.42 77.89 51.84C78.86 51.67 79.8 51.59 80.76 51.59C88.32 51.59 95.07 57.01 96.48 64.73C103.82 105.26 107.2 146.91 106.57 188.55C106.04 221.56 116.76 252.5 137.48 278.02C143.07 284.88 142.01 294.9599999999999 135.17 300.53C128.32 306.08 118.26 305.0999999999999 112.66 298.2099999999999zM511.88 195.18C511.63 211.68 509.69 228.21 506.13 244.32C504.22 252.93 495.79 258.32 487.07 256.49C478.45 254.58 472.98 246.05 474.88 237.41C477.97 223.41 479.66 209.02 479.88 194.68C480 187.02 480.04 179.37 479.97 171.71C479.91 162.88 486.9999999999999 155.66 495.84 155.59H495.96C504.74 155.59 511.9 162.67 511.96 171.46C512.03 179.37 512 187.27 511.88 195.18zM252.6 447.95C182.63 449.29 118.32 423.12 70.32 375.0900000000001C24.04 328.78 -0.87 267.24 0.16 201.8C0.28 194.25 0.22 186.71 0 179.18C-0.25 170.35 6.72 162.98 15.56 162.73H16C24.62 162.73 31.75 169.6 32 178.28C32.22 186.28 32.28 194.3000000000001 32.16 202.31C31.26 259 52.85 312.35 92.94 352.4700000000001C134.72 394.3100000000001 191.84 416.8400000000001 252.09 415.9500000000001C326.78 414.86 396.9600000000001 377.7200000000001 439.8400000000001 316.63C444.9600000000001 309.4000000000001 454.96 307.6600000000001 462.12 312.7200000000001C469.37 317.8000000000001 471.12 327.7700000000001 466.03 335C417.28 404.48 337.5 446.7 252.6 447.95zM253.88 363.02A182.36 182.36 0 0 1 208.69 358.11C200.1 356.08 194.78 347.45 196.82 338.85C198.85 330.27 207.57 324.98 216.07 326.99C228.19 329.85 241.16 331.24 253.38 331.02C336.16 329.8 404.5 263.46 405.75 183.13C406.37 143.48 404.4100000000001 103.54 399.94 64.43C398.94 55.65 405.25 47.73 414.03 46.73C414.65 46.65 415.25 46.62 415.87 46.62C423.87 46.62 430.81 52.64 431.74 60.81C436.36 101.28 438.36 142.6 437.74 183.63C436.25 281.07 353.75 361.55 253.88 363.02z" />
+    <glyph glyph-name="fire-alt"
+      unicode="&#xF7E4;"
+      horiz-adv-x="448" d=" M448 166.4C448 219.67 396.02 329.53 323.56 396.8C302.76 377.5 283.98 357.21 267.3400000000001 336.83C240.08 374.38 206.28 412.4700000000001 168 448C69.74 356.83 0 238.04 0 166.4C0 39.15 100.29 -64 224 -64C224.53 -64 225.04 -63.92 225.58 -63.92C225.9 -63.92 226.18 -64 226.5 -64C228.38 -64 230.21 -63.65 232.08 -63.58C352.02 -59.17 448 41.96 448 166.4zM32 166.4C32 216.62 79.51 313.84 168.05 403.49C195.43 376.04 220.49 346.89 241.44 318.02L265.85 284.4L292.12 316.59A573.83 573.83 0 0 0 323.11 351.54C379.7200000000001 288.17 416 202.26 416 166.4C416 111.71 394.4700000000001 62.12 359.7200000000001 26.1899999999999C372.23 61.48 370.6 102.11 351.6900000000001 138.2099999999999A357.34 357.34 0 0 1 340.8600000000001 157.3999999999999L318.2300000000001 194.7999999999999L289.4100000000001 161.93L263.5500000000001 132.43C238.6200000000001 164.2099999999999 204.2400000000001 207.93 199.8500000000001 212.97L175.2000000000001 241.36L151.1200000000001 212.49C108.16 161 80 123.79 80 77.59C80 58.57 83.62 40.93 89.77 24.8C54.17 60.83 32 110.97 32 166.4zM225.54 -31.92C162.86 -31.49 112 10.13 112 77.59C112 111.37 133.27 141.14 175.69 192C181.75 185.02 262.17 82.32 262.17 82.32L313.4700000000001 140.84A334.42999999999995 334.42999999999995 0 0 0 323.3400000000001 123.36C347.2600000000001 77.6999999999999 337.17 19.26 294.0800000000001 -10.8800000000001C276.4600000000001 -23.21 254.9400000000001 -30.59 231.7100000000001 -31.6100000000001C229.6500000000001 -31.6800000000001 227.6200000000001 -31.9000000000001 225.5400000000001 -31.9200000000001z" />
+    <glyph glyph-name="fire-extinguisher"
+      unicode="&#xF134;"
+      horiz-adv-x="448" d=" M429.627 415.823L269.627 391.823C254.178 389.506 256 373.586 256 368H194.604C212.106 404.838 185.315 448 144 448C100.869 448 74.371 401.397 95.225 364.496C52.334 354.862 20.145 325.432 1.148 277.942C-2.134 269.737 1.856 260.425 10.061 257.144C18.271 253.862 27.579 257.857 30.859 266.057C62.582 345.363 120.434 336 176 336V302.647C130.426 294.884 96 254.524 96 206.794V-40C96 -53.255 106.745 -64 120 -64H264C277.255 -64 288 -53.255 288 -40V208C288 255.566 253.401 295.046 208 302.665V336H256C256 331.107 253.819 314.548 269.627 312.177L429.627 288.177C439.275 286.736 448 294.197 448 304V400C448 409.775 439.305 417.269 429.627 415.823zM256 208V-32H128V206.795C128 242.489 156.49 271.739 191.501 271.998L192 272C227.29 272 256 243.29 256 208zM144 416C157.234 416 168 405.234 168 392S157.234 368 144 368S120 378.766 120 392S130.766 416 144 416zM416 322.579L288 341.779V362.221L416 381.421V322.579z" />
+    <glyph glyph-name="fire-smoke"
+      unicode="&#xF74B;"
+      horiz-adv-x="576" d=" M464 160C438.5 160 414 151.1 394.2 135.2C370.8 170.3 331.1 192 288 192S205.2 170.3 181.8 135.2C162 151.1 137.5 160 112 160C50.2 160 0 109.8 0 48S50.2 -64 112 -64H464C525.8 -64 576 -13.8 576 48S525.8 160 464 160zM464 -32H112C67.9 -32 32 3.9 32 48S67.9 128 112 128C135.5 128 157.8 117.3 173.2 98.8L189.7 78.9L200.1 102.6C215.6 137.4 250 160 288 160S360.4 137.4 375.8 102.6L386.2 78.9L402.7 98.8C418.1 117.4 440.5 128 463.9 128C508 128 543.9 92.1 543.9 48S508.1 -32 464 -32zM400.9 177.2C402.6 178 404.3 178.6 406 179.4C413.3 208.3 410.4 240.1 396.3 267.8C393.1 274.1 389.5 280.8 385.5 287.5L320 256S241.9 337.4 235.3 345.3C189 287.9 165.8 254.3 165.8 216.2C165.8 202.7 168.1 190.4 171.4 178.8C172.6 178.2 173.9 177.8 175.1 177.2C182.6 184.6 190.9 191 199.7 196.8C198.6 202.9 197.9 209.2 197.9 216.2C197.9 237.9 210.3 260.5 237.5 296.2C258.5 274.1 285.7 245.7 297 233.9L313.1 217.2L334 227.3L371.6 245.4C378 229.4 379.5 212.6 377.2000000000001 196.7C385.6 190.9 393.6 184.5 400.9000000000001 177.2zM112 192C118.3 192 124.4 191.5 130.6 190.7C129.3 198.9 128 207.1 128 215.7C128 255.6 169.2 333.6 239.4 403.5C254.7 386.6 268.2 368.3 281.4 350.4C285.8 344.4 290.1 338.5 294.5 332.8L318.6 300.9L344.5 331.4C351.8 340 361.9 350.7 372.8 361.4C418.8 310.6 448.1 243.8 448.1 215.8C448.1 207.2 446.9000000000001 199 445.5 190.8C451.6 191.6 457.8 192.1 464.1 192.1C468.9 192.1 473.5 191.1 478.2 190.7000000000001C479.3000000000001 198.9 480.1 207.3000000000001 480.1 215.8000000000001C480.1 259.7000000000001 435.5 350.4000000000001 373.4000000000001 405.9000000000001C355.5 389.8 334.2 368.8 320 352C296.6 383 272.8 418.7 240 448C155.8 372.8 96 274.8 96 215.7C96 207.2 96.8 198.8 97.9 190.6C102.6 191 107.2 192 112 192z" />
+    <glyph glyph-name="fire"
+      unicode="&#xF06D;"
+      horiz-adv-x="384" d=" M216 423.99C216 447.79 184.84 457.1 171.85 437.03C76.55 289.75 200 209.27 200 160C200 137.94 182.06 120 160 120S120 137.94 120 160V265.87C120 285.26 98.15 296.63 82.27 285.55C30.75 249.62 0 190.72 0 128C0 22.13 86.13 -64 192 -64S384 22.13 384 128C384 298.29 216 320.85 216 423.99zM192 -32C103.78 -32 32 39.78 32 128C32 174.94 52.68 225.75 88 256V160C88 120.3 120.3 88 160 88S232 120.3 232 160C232 225.11 120 288 186.59 408C208 288 352 272.7 352 128C352 39.78 280.2200000000001 -32 192 -32z" />
+    <glyph glyph-name="fireplace"
+      unicode="&#xF79A;"
+      horiz-adv-x="640" d=" M624 448H16C7.2 448 0 440.8 0 432V336C0 327.2 7.2 320 16 320H32V-32C32 -49.7 46.3 -64 64 -64H128C145.7 -64 160 -49.7 160 -32V89.1C160 172.7000000000001 221.1 247.3 304.3 255.2C309.6 255.7 314.8 256 320 256C408.4 256 480 184.4 480 96V-32C480 -49.7 494.3 -64 512 -64H576C593.7 -64 608 -49.7 608 -32V320H624C632.8 320 640 327.2 640 336V432C640 440.8 632.8 448 624 448zM576 -32H512V96C512 201.9 425.9 288 320 288C313.8 288 307.6 287.7 301.2 287.1C204.1 277.8 128 190.9 128 89.1V-32H64V320H576V-32zM608 352H32V416H608V352zM342.3 136.4C328.3 155.2 310.9000000000001 174.2 291.2 192C240.7 146.4 204.8 87 204.8 51.2C204.8 -12.4 256.4 -64 320 -64S435.2 -12.4 435.2 51.2C435.2 77.8 408.5 132.8 371.2 166.4C360.5 156.8 350.8 146.6 342.3 136.4zM320 -32C274.1 -32 236.8 5.3 236.8 51.2C236.8 70.8 257.2 110.1 291.3 147.2C300.6 137.4 309.1 127.3 316.6 117.3L340.8 84.9L366.8 115.8L370.4000000000001 120C390.9000000000001 93.1 403.2000000000001 62.6 403.2000000000001 51.2C403.2000000000001 5.3 365.9000000000001 -32 320.0000000000001 -32z" />
+    <glyph glyph-name="first-aid"
+      unicode="&#xF479;"
+      horiz-adv-x="576" d=" M200 160H256V104C256 99.6 259.6 96 264 96H312C316.4 96 320 99.6 320 104V160H376C380.4 160 384 163.6 384 168V216C384 220.4 380.4 224 376 224H320V280C320 284.4 316.4 288 312 288H264C259.6 288 256 284.4 256 280V224H200C195.6 224 192 220.4 192 216V168C192 163.6 195.6 160 200 160zM528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM96 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H96V0zM448 0H128V384H448V0zM544 16C544 7.2 536.8 0 528 0H480V384H528C536.8 384 544 376.8 544 368V16z" />
+    <glyph glyph-name="fish"
+      unicode="&#xF578;"
+      horiz-adv-x="640" d=" M363.44 368C263.48 368 176.17 307.75 127.58 256.21L30.54 328.87C26.89 331.6 22.76 332.81 18.74 332.81C7.89 332.81 -2.13 324.03 0.38 312.75L27.27 192L0.39 71.26C-2.12 59.98 7.91 51.2 18.75 51.2C22.77 51.2 26.9 52.41 30.55 55.14L127.59 127.8C176.17 76.25 263.48 16 363.44 16C516.18 16 640 156.8 640 192C640 227.2 516.1800000000001 368 363.44 368zM363.44 48C277.42 48 197.23 100.56 150.87 149.74L131.27 170.53L108.4 153.41L40.07 102.24L58.5 185.04L60.05 191.99L58.5 198.94L40.07 281.74L108.4 230.57L131.27 213.45L150.87 234.24C197.23 283.44 277.42 336 363.44 336C489 336 595.86 224.67 607.5 192C595.86 159.33 489 48 363.44 48zM448 216C434.75 216 424 205.26 424 192C424 178.75 434.75 168 448 168S472 178.75 472 192C472 205.26 461.25 216 448 216z" />
+    <glyph glyph-name="fist-raised"
+      unicode="&#xF6DE;"
+      horiz-adv-x="384" d=" M350.82 280.06C351.28 282.69 352 285.24 352 288V368C352 394.51 330.51 416 304 416H288C281.68 416 275.68 414.71 270.15 412.48C264.62 432.88 246.12 448 224 448H208C185.88 448 167.38 432.88 161.85 412.48C156.32 414.71 150.32 416 144 416H128C105.88 416 87.38 400.88 81.85 380.48C76.32 382.71 70.32 384 64 384H48C21.49 384 0 362.51 0 336V149.02C0 110.85 15.16 74.24 42.15 47.25L64 25.38V-56C64 -60.42 67.58 -64 72 -64H88C92.42 -64 96 -60.42 96 -56V38.63L64.78 69.86A111.97 111.97 0 0 0 32 149.02V194.95C37.03 193.16 42.36 192 48 192H64C76.34 192 87.49 196.81 96 204.48C104.51 196.8 115.66 192 128 192H144C157.16 192 169.09 197.34 177.77 205.95C178.01 205.65 187.11 191.32 208.39 182.3C188.72 166.51 174.47 146.56 151.12 111.53A7.991999999999999 7.991999999999999 0 0 1 153.34 100.4400000000001L166.65 91.5600000000001A7.991999999999999 7.991999999999999 0 0 1 177.74 93.7800000000001L184.05 103.2500000000001C215.96 151.1200000000001 235.61 173.5400000000001 280.17 175.8100000000001C284.42 176.0300000000002 287.99 179.4800000000001 287.99 183.7400000000001V200C287.99 204.42 284.4100000000001 208 279.99 208H239.32C213.16 208 191.96 229.21 191.96 255.36V256.1C191.96 264.88 199.08 272 207.86 272H288C323.35 272 352 243.35 352 208V119.6800000000001C352 94.27 341.9100000000001 69.9100000000001 323.94 51.9400000000001L288 16V-56C288 -60.42 291.58 -64 296 -64H312C316.42 -64 320 -60.42 320 -56V2.75L346.51 29.26C370.51 53.26 384 85.82 384 119.77V208C384 236.87 370.99 262.4600000000001 350.82 280.06zM80 240C80 231.16 72.84 224 64 224H48C39.16 224 32 231.16 32 240V336C32 344.8400000000001 39.16 352 48 352H64C72.84 352 80 344.8400000000001 80 336V240zM160 240C160 231.16 152.84 224 144 224H128C119.16 224 112 231.16 112 240V368C112 376.8400000000001 119.16 384 128 384H144C152.84 384 160 376.8400000000001 160 368V240zM240 304H207.97C202.39 304 197.05 302.9 192 301.15V400C192 408.8400000000001 199.16 416 208 416H224C232.84 416 240 408.8400000000001 240 400V304zM320 298.12C309.95 301.69 299.28 304 288 304H272V368C272 376.8400000000001 279.1600000000001 384 288 384H304C312.84 384 320 376.8400000000001 320 368V298.12z" />
+    <glyph glyph-name="flag-alt"
+      unicode="&#xF74C;"
+      horiz-adv-x="512" d=" M472.5 448C465.5 448 458.2 446.5 451.3 443.4C400.8 420.7 363.5 413.1 332.2000000000001 413.1C266.1 413.1 227.7 447.6 151.4 447.6C119.8 447.6 81.2 441.1 32 424.4V432C32 440.8 24.8 448 16 448S0 440.8 0 432V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V44.4C76.2 60.2 113.6 66.4 146.5 66.4C227.7 66.4 284.3 32 365.6 32C400.9000000000001 32 440.7000000000001 38.5 489.3 57C503.3 62.4 512.1 74.9 512.1 88.2V414.6C512 435 493.4 448 472.5 448zM365.5 64C289.9 64 232.5 98.4 146.4 98.4C109.7 98.4 72 91.9 31.9 78.6V390.8C77.9 407.5 117.2 415.6 151.3 415.6C220.8 415.6 259.7000000000001 381.1 332.1 381.1C371.9000000000001 381.1 413.9000000000001 391.6 464.2 414.2C473.6 418.4 479.9 414.7 479.9 408.6V88.5C479.1 86 421.1 64 365.5 64z" />
+    <glyph glyph-name="flag-checkered"
+      unicode="&#xF11E;"
+      horiz-adv-x="512" d=" M156.8 359.18V286.76C126.87 282.38 96.23 271.93 80 261.71V332.83C98.2 344.29 126.11 356.04 156.8 359.18zM310.4 328.27C282.666 332.956 258.102 342.421 233.6 349.6600000000001V281.7800000000001C258.944 275.1210000000001 283.248 265.3400000000001 310.4 259.3900000000001V328.2700000000001zM156.8 286.76V215.9C191.046 219.5080000000001 212.961 217.608 233.6 213.4200000000001V281.7800000000001C203.912 289.5900000000001 182.295 290.492 156.8 286.76zM233.6 143.73C261.252 139.053 285.557 129.7000000000001 310.4 122.34V191.25C285.344 198.164 260.798 207.882 233.6 213.42V143.73zM80 128.15C103.07 135.81 130.33 141.26 156.8 144.18V215.9C130.78 213.17 104.78 207.49 80 199.26V128.15zM464 351.68C441.45 342.79 414.28 334.32 387.2 329.48V256.86C413.98 261.26 438.86 270.6600000000001 464 280.5700000000001V351.68zM464 139.17V210.29C447.15 199.68 417.19 188.8200000000001 387.2 184.7700000000001V112.8200000000001C417.89 115.96 445.8 127.71 464 139.1700000000001zM310.4 259.39V191.25C337.933 183.653 360.145 181.126 387.2 184.77V256.86C362.826 252.822 338.552 253.224 310.4 259.39zM477.878 410.238C493.794 417.631 512 406.028 512 388.479V126.813C512 118.862 508.075 111.403 501.486 106.953C463.411 81.238 422.789 64 371.478 64C301.554 64 256.2580000000001 98.667 199.652 98.667C136.066 98.667 95.423 84.1420000000001 64 69.603V-52C64 -58.627 58.627 -64 52 -64H44C37.373 -64 32 -58.627 32 -52V354.742C12.553 361.618 -1.146 380.66 0.076 402.729C1.433 427.25 21.532 447.001 46.071 447.962C75.808 449.127 99.553 423.287 95.556 393.551C118.847 402.678 144.035 408 172.522 408C242.446 408 287.742 373.333 344.348 373.333C391.615 373.333 441.098 393.155 477.8779999999999 410.238zM28 400C28 388.972 36.972 380 48 380S68 388.972 68 400S59.028 420 48 420S28 411.028 28 400zM480 376C446.564 360.146 390.2680000000001 341.333 344.348 341.333C280.769 341.333 236.137 376 172.522 376C128.548 376 87.117 358.029 64 341.333V104.666C97.373 120.48 153.636 130.666 199.652 130.666C263.231 130.666 307.863 95.999 371.478 95.999C415.451 95.999 456.8829999999999 113.9690000000001 479.9999999999999 130.6660000000001V376z" />
+    <glyph glyph-name="flag-usa"
+      unicode="&#xF74D;"
+      horiz-adv-x="512" d=" M472.5 448C465.5 448 458.2 446.5 451.3 443.4C400.8 420.7 363.5 413.1 332.2000000000001 413.1C266.1 413.1 227.7 447.6 151.4 447.6C119.8 447.6 81.2 441.1 32 424.4V432C32 440.8 24.8 448 16 448S0 440.8 0 432V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V44.4C76.2 60.2 113.6 66.4 146.5 66.4C227.7 66.4 284.3 32 365.6 32C400.9000000000001 32 440.7000000000001 38.5 489.3 57C503.3 62.4 512.1 74.9 512.1 88.2V414.6C512 435 493.4 448 472.5 448zM256 393.7C314.3 376.2 369.9 371.9 464.3 414.2C473.7 418.4 480 414.7 480 408.6V356.2C381.2 314.5 326.8 327.9 256 340.1V393.7zM256 307.7C290.5 301.6 320.2 295.7 354.8 295.7C390 295.7 430.6 302.7 480 322V260.4C376.5 227 317.2 242 256 256.4V307.7zM32 390.8C78 407.5 117.3 415.6 151.4 415.6C179.1 415.6 201.9 410.1 224 403.5V263.5C172.9 273.9 115.4 278.3 32 253.1V390.8zM32 219.7C132.6 252.1 191.1 238.9 252.4 224.4C309.9 210.8 372.6 194.4 480.1 226.8V172.3C379.6 139.9 321.1 153.1 259.7000000000001 167.6C198.7000000000001 182 135.2000000000001 196.2 32.0000000000001 165.1V219.7zM365.5 64C289.9 64 232.5 98.4 146.4 98.4C109.7 98.4 72 91.9 31.9 78.6V131.7C132.5 164.1 190.9 150.9 252.2 136.4C311 122.6 372.7000000000001 106.5 479.9 138.8V88.4999999999999C479.1 85.9999999999999 421.1 63.9999999999999 365.5 63.9999999999999zM96 384C87.2 384 80 376.8 80 368S87.2 352 96 352S112 359.2 112 368S104.8 384 96 384zM168 352C176.8 352 184 359.2 184 368S176.8 384 168 384S152 376.8 152 368S159.2 352 168 352zM96 328C87.2 328 80 320.8 80 312S87.2 296 96 296S112 303.2 112 312S104.8 328 96 328zM168 296C176.8 296 184 303.2 184 312S176.8 328 168 328S152 320.8 152 312S159.2 296 168 296z" />
+    <glyph glyph-name="flag"
+      unicode="&#xF024;"
+      horiz-adv-x="512" d=" M344.348 373.333C287.742 373.333 242.446 408 172.522 408C144.035 408 118.847 402.678 95.557 393.551C99.553 423.287 75.808 449.127 46.071 447.962C21.532 447.001 1.433 427.25 0.076 402.729C-1.146 380.66 12.553 361.618 32 354.742V-52C32 -58.627 37.373 -64 44 -64H52C58.627 -64 64 -58.627 64 -52V69.602C95.423 84.141 136.066 98.666 199.652 98.666C256.258 98.666 301.554 63.999 371.478 63.999C422.788 63.999 463.4109999999999 81.237 501.486 106.952C508.075 111.402 512 118.861 512 126.812V388.479C512 406.028 493.794 417.631 477.878 410.2390000000001C441.098 393.155 391.615 373.333 344.348 373.333zM48 420C59.028 420 68 411.028 68 400S59.028 380 48 380S28 388.972 28 400S36.972 420 48 420zM480 130.667C456.883 113.97 415.452 96 371.478 96C307.863 96 263.231 130.667 199.652 130.667C153.636 130.667 97.373 120.4810000000001 64 104.667V341.333C87.117 358.029 128.548 376 172.522 376C236.137 376 280.769 341.333 344.348 341.333C390.268 341.333 446.565 360.146 479.9999999999999 376V130.667z" />
+    <glyph glyph-name="flame"
+      unicode="&#xF6DF;"
+      horiz-adv-x="384" d=" M192 448C79.7 346.67 0 227.08 0 147.45C0 22.95 78.95 -64 192 -64S384 22.95 384 147.45C384 227.4 303.78 347.14 192 448zM192 -32C96.3 -32 32 40.12 32 147.45C32 210.53 95.42 311.53 192 404.28C288.58 311.52 352 210.52 352 147.45C352 40.12 287.7 -32 192 -32zM252.1 235.1C225.58 257.76 200.53 279.18 200.53 312.73C200.53 317.27 196.76 318.98 195.15 319.51C194.19 319.8100000000001 193.1 320 191.95 320C189.38 320 186.56 319.05 184.57 316.3300000000001C111.36 216.77 224 224 224 152C224 121.07 198.93 96 168 96S112 121.07 112 152V192C112 194.05 111.22 196.1 109.66 197.66S106.05 200 104 200S99.91 199.22 98.34 197.66C89.84 189.4 64 162.02 64 117.89C64 52.89 121.42 0 192 0S320 52.89 320 117.89C320 177.06 285.48 206.56 252.1 235.1zM192 32C146.74 32 108.71 60.16 98.62 97.93C114.74 77.29 139.85 64 168 64C216.52 64 256 103.48 256 152C256 172.66 249.92 188.85 241.49 202.01C268.18 178.72 288 157.43 288 117.89C288 70.53 244.94 32 192 32z" />
+    <glyph glyph-name="flask-poison"
+      unicode="&#xF6E0;"
+      horiz-adv-x="416" d=" M288 288.01V416H312C316.42 416 320 419.58 320 424V440C320 444.42 316.42 448 312 448H104C99.58 448 96 444.42 96 440V424C96 419.58 99.58 416 104 416H128V288.01C52.85 256.65 0 182.52 0 96C0 42.21 20.43 -6.79 53.94 -43.7C65.89 -56.87 83.15 -64 100.94 -64H314.98C333.04 -64 350.4700000000001 -56.56 362.56 -43.15C375.48 -28.81 415.8 18.78 415.7 96H416C416 182.52 363.15 256.65 288 288.01zM338.79 -21.72C332.9000000000001 -28.25 324.23 -32 314.98 -32H100.94C91.79 -32 83.29 -28.43 77.64 -22.2C48.21 10.23 32 52.2 32 96C32 167.25 74.52 231.02 140.32 258.4700000000001L160 266.68V416H256V266.69L275.68 258.48C338.24 232.38 379.75 173.46 383.69 106.49L383.7 95.96C383.77 39.97 359.32 1.0500000000001 338.79 -21.72zM176 144C167.16 144 160 136.84 160 128S167.16 112 176 112S192 119.16 192 128S184.84 144 176 144zM240 144C231.16 144 224 136.84 224 128S231.16 112 240 112S256 119.16 256 128S248.84 144 240 144zM208 224C137.31 224 80 181.02 80 128C80 97.81 98.89 71.22 128 53.7V16C128 7.16 135.16 0 144 0H272C280.84 0 288 7.16 288 16V53.7C317.11 71.23 336 97.82 336 128C336 181.02 278.69 224 208 224zM271.49 81.11L256 71.78V32H160V71.78L144.51 81.11C123.85 93.55 112 110.64 112 128C112 162.69 155.96 192 208 192S304 162.69 304 128C304 110.64 292.15 93.55 271.49 81.11z" />
+    <glyph glyph-name="flask-potion"
+      unicode="&#xF6E1;"
+      horiz-adv-x="416" d=" M416 96C416 182.52 363.15 256.65 288 288.01V416H312C316.42 416 320 419.58 320 424V440C320 444.42 316.42 448 312 448H104C99.58 448 96 444.42 96 440V424C96 419.58 99.58 416 104 416H128V288.01C52.85 256.65 0 182.52 0 96C0 42.21 20.43 -6.79 53.94 -43.7C65.89 -56.87 83.15 -64 100.94 -64H314.98C333.04 -64 350.4700000000001 -56.56 362.56 -43.15C375.48 -28.81 415.8 18.78 415.7 96H416zM140.32 258.4700000000001L160 266.68V416H256V266.68L275.68 258.4700000000001C336.49 233.1 377.11 176.64 382.9700000000001 112H331.62C302.96 112 274.2100000000001 119.59 248.53 133.97C186.72 168.53 112.91 168.53 51.09 133.97L34.49 124.68C44.22 183.96 83.52 234.78 140.32 258.4700000000001zM338.79 -21.72C332.9 -28.25 324.23 -32 314.98 -32H100.94C91.79 -32 83.29 -28.43 77.64 -22.2C50.24 7.99 34.9 46.56 32.83 87.07L66.72 106.03C118.81 135.14 180.94 135.11 232.91 106.03C263.38 89 297.5 80 331.62 80H382.61C379.1600000000001 42.35 364.26 6.54 338.79 -21.72z" />
+    <glyph glyph-name="flask"
+      unicode="&#xF0C3;"
+      horiz-adv-x="448" d=" M434.9 37.3L288 229.4V416H314C317.3 416 320 418.7 320 422V442C320 445.3 317.3 448 314 448H134C130.7 448 128 445.3 128 442V422C128 418.7 130.7 416 134 416H160V229.4L13.1 37.3C-18.6 -4.2 11 -64 63.1 -64H384.9000000000001C437.1 -64 466.6 -4.2 434.9000000000001 37.3zM384.9 -32H63.1C37.4 -32 22.8 -2.6 38.5 17.8L188.7 214.3C190.8 217.1 192 220.5 192 224V416H256V224C256 220.5 257.2 217.1 259.3 214.3L409.5 17.8C425.1 -2.6 410.7 -32 384.9 -32z" />
+    <glyph glyph-name="flushed"
+      unicode="&#xF579;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM344 304C299.8 304 264 268.2 264 224S299.8 144 344 144S424 179.8 424 224S388.2 304 344 304zM344 176C317.5 176 296 197.5 296 224S317.5 272 344 272S392 250.5 392 224S370.5 176 344 176zM344 248C330.7 248 320 237.3 320 224S330.7 200 344 200S368 210.7 368 224S357.3 248 344 248zM232 224C232 268.2 196.2 304 152 304S72 268.2 72 224S107.8 144 152 144S232 179.8 232 224zM152 176C125.5 176 104 197.5 104 224S125.5 272 152 272S200 250.5 200 224S178.5 176 152 176zM152 248C138.7 248 128 237.3 128 224S138.7 200 152 200S176 210.7 176 224S165.3 248 152 248zM312 80H184C175.2 80 168 72.8 168 64S175.2 48 184 48H312C320.8 48 328 55.2 328 64S320.8 80 312 80z" />
+    <glyph glyph-name="fog"
+      unicode="&#xF74E;"
+      horiz-adv-x="640" d=" M168 128H472C529.3 128 576 174.7 576 232C576 286.8 533.4 331.8 479.7 335.7C475.8 380.6 437.9 416 392 416C374.2 416 357.2 410.7 342.8 400.8C320.3 430.3 285.5 448 248 448C181.8 448 128 394.2 128 328V327.6C89.7 311.6 64 274.1 64 232C64 174.7 110.7 128 168 128zM149.3 301.2L162.6 304.8L160.6 322C160.3 324 160 326 160 328C160 376.5 199.5 416 248.0000000000001 416C280.2000000000001 416 309.8 398.1 325.2000000000001 369.2L335.8000000000001 349.4L351 365.9C361.9 377.6 376.4 384 392 384C422.9 384 448 358.9 448 328C448 326.4 447.7 324.9 447.2 321.1L444.7 301.1L468.2 303.5C469.4 303.7 470.7 303.9 472 303.9C511.7 303.9 544 271.6 544 231.9S511.7 159.9 472 159.9H168C128.3 159.9 96 192.2 96 231.9C96 264.3 117.9 292.7 149.3 301.2zM216 -32H72C67.6 -32 64 -35.6 64 -40V-56C64 -60.4 67.6 -64 72 -64H216C220.4 -64 224 -60.4 224 -56V-40C224 -35.6 220.4 -32 216 -32zM632 -32H296C291.6 -32 288 -35.6 288 -40V-56C288 -60.4 291.6 -64 296 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32zM576 40V56C576 60.4 572.4 64 568 64H8C3.6 64 0 60.4 0 56V40C0 35.6 3.6 32 8 32H568C572.4 32 576 35.6 576 40z" />
+    <glyph glyph-name="folder-minus"
+      unicode="&#xF65D;"
+      horiz-adv-x="512" d=" M344 176H168C163.58 176 160 172.42 160 168V152C160 147.58 163.58 144 168 144H344C348.42 144 352 147.58 352 152V168C352 172.42 348.42 176 344 176zM194.74 352L249.37 297.37C255.37 291.37 263.51 288 272 288H464C472.84 288 480 280.8400000000001 480 272V48C480 39.16 472.84 32 464 32H48C39.16 32 32 39.16 32 48V336C32 344.8400000000001 39.16 352 48 352H194.74M48 384C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48z" />
+    <glyph glyph-name="folder-open"
+      unicode="&#xF07C;"
+      horiz-adv-x="576" d=" M527.95 224H480V272C480 298.51 458.51 320 432 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H433.057C461.125 0 487.192 14.733 501.656 38.84L569.109 151.304C588.24 183.188 565.285 224 527.95 224zM48 352H194.745L258.745 288H432C440.837 288 448 280.837 448 272V224H171.177C143.109 224 117.042 209.267 102.578 185.16L32 67.53V336C32 344.837 39.163 352 48 352zM541.6949999999999 167.768L474.216 55.304A47.997 47.997 0 0 0 433.057 32H44.823L126.84 168.696A48 48 0 0 0 168 192H527.975C540.412 192 548.094 178.432 541.695 167.768z" />
+    <glyph glyph-name="folder-plus"
+      unicode="&#xF65E;"
+      horiz-adv-x="512" d=" M344 176H272V248C272 252.42 268.42 256 264 256H248C243.58 256 240 252.42 240 248V176H168C163.58 176 160 172.42 160 168V152C160 147.58 163.58 144 168 144H240V72C240 67.58 243.58 64 248 64H264C268.42 64 272 67.58 272 72V144H344C348.42 144 352 147.58 352 152V168C352 172.42 348.42 176 344 176zM194.74 352L249.37 297.37C255.37 291.37 263.51 288 272 288H464C472.84 288 480 280.8400000000001 480 272V48C480 39.16 472.84 32 464 32H48C39.16 32 32 39.16 32 48V336C32 344.8400000000001 39.16 352 48 352H194.74M48 384C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48z" />
+    <glyph glyph-name="folder-times"
+      unicode="&#xF65F;"
+      horiz-adv-x="512" d=" M329.54 222.23L318.23 233.54C315.11 236.66 310.04 236.66 306.92 233.54L256 182.63L205.09 233.54C201.97 236.66 196.9 236.66 193.78 233.54L182.47 222.23C179.35 219.11 179.35 214.04 182.47 210.92L233.37 160L182.46 109.09C179.34 105.97 179.34 100.9 182.46 97.78L193.77 86.47C196.89 83.35 201.96 83.35 205.08 86.47L256 137.37L306.91 86.46C310.03 83.34 315.1 83.34 318.22 86.46L329.53 97.77C332.65 100.89 332.65 105.96 329.53 109.08L278.63 160L329.54 210.91A8.015 8.015 0 0 1 329.54 222.23zM194.74 352L249.37 297.37C255.37 291.37 263.51 288 272 288H464C472.84 288 480 280.8400000000001 480 272V48C480 39.16 472.84 32 464 32H48C39.16 32 32 39.16 32 48V336C32 344.8400000000001 39.16 352 48 352H194.74M48 384C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48z" />
+    <glyph glyph-name="folder"
+      unicode="&#xF07B;"
+      horiz-adv-x="512" d=" M194.74 352L249.37 297.37C255.37 291.37 263.51 288 272 288H464C472.84 288 480 280.8400000000001 480 272V48C480 39.16 472.84 32 464 32H48C39.16 32 32 39.16 32 48V336C32 344.8400000000001 39.16 352 48 352H194.74M48 384C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48z" />
+    <glyph glyph-name="folders"
+      unicode="&#xF660;"
+      horiz-adv-x="640" d=" M592 384H400L345.37 438.63C339.37 444.63 331.23 448 322.74 448H176C149.49 448 128 426.51 128 400V320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V64H592C618.51 64 640 85.49 640 112V336C640 362.51 618.51 384 592 384zM480 -16C480 -24.84 472.84 -32 464 -32H48C39.16 -32 32 -24.84 32 -16V272C32 280.8400000000001 39.16 288 48 288H128V112C128 85.49 149.49 64 176 64H480V-16zM608 112C608 103.16 600.84 96 592 96H176C167.16 96 160 103.16 160 112V400C160 408.8400000000001 167.16 416 176 416H322.74L377.37 361.37C383.37 355.37 391.51 352 400 352H592C600.84 352 608 344.8400000000001 608 336V112z" />
+    <glyph glyph-name="font"
+      unicode="&#xF031;"
+      horiz-adv-x="448" d=" M232.594 416H215.407A11.998 11.998 0 0 1 204.168 408.204L51.473 0H28C21.373 0 16 -5.373 16 -12V-20C16 -26.627 21.373 -32 28 -32H116C122.627 -32 128 -26.627 128 -20V-12C128 -5.373 122.627 0 116 0H87.913L132.564 120.46H314.817L360.063 0H332C325.373 0 320 -5.373 320 -12V-20C320 -26.627 325.373 -32 332 -32H420C426.627 -32 432 -26.627 432 -20V-12C432 -5.373 426.627 0 420 0H396.527L243.833 408.204A12 12 0 0 1 232.594 416zM144.636 152.66L220.332 353.9010000000001C221.832 357.7580000000001 223.046 361.7280000000001 224 365.3280000000001C224.95 361.7390000000001 226.159 357.7840000000001 227.651 353.9460000000001L302.749 152.66H144.636z" />
+    <glyph glyph-name="football-ball"
+      unicode="&#xF44E;"
+      horiz-adv-x="496" d=" M344.2 265.5L315.9 237.2L344.2 208.9C347.3 205.8 347.3 200.7 344.2 197.6L332.9 186.3C329.8 183.1999999999999 324.7 183.1999999999999 321.6 186.3L293.3 214.6L270.6 192L298.9 163.6999999999999C302 160.5999999999999 302 155.5 298.9 152.3999999999999L287.6 141.0999999999999C284.5 137.9999999999999 279.4 137.9999999999999 276.3 141.0999999999999L248 169.4L225.4 146.8L253.7 118.5C256.8 115.3999999999999 256.8 110.3 253.7 107.1999999999999L242.4 95.8999999999999C239.3 92.7999999999999 234.2 92.7999999999999 231.1 95.8999999999999L202.8 124.1999999999999L174.5 95.8999999999999C171.4 92.7999999999999 166.3 92.7999999999999 163.2 95.8999999999999L151.9 107.1999999999999C148.8 110.3 148.8 115.3999999999999 151.9 118.5L180.2 146.8L151.8 175C148.7 178.1 148.7 183.1999999999999 151.8 186.3L163.1 197.6C166.2 200.7 171.3 200.7 174.4 197.6L202.7 169.3L225.3 191.9L197 220.2C193.9 223.3 193.9 228.4 197 231.5L208.3 242.8C211.4 245.9 216.5 245.9 219.6 242.8L247.9 214.5L270.5 237.1L242.2 265.4C239.1 268.5 239.1 273.6 242.2 276.7000000000001L253.5 288C256.6 291.1 261.7 291.1 264.8 288L293.1 259.7000000000001L321.4000000000001 288C324.5000000000001 291.1 329.6 291.1 332.7000000000001 288L344.0000000000001 276.7000000000001C347.3000000000001 273.7000000000001 347.3000000000001 268.7000000000001 344.2000000000001 265.5zM401.5 38.3C263.6 -99.9 75.7 -47.3 51.9 -40.9C33.7 -36 19.5 -21.8 14.7 -3.6C-2.4 61.1 -28.2 222.8000000000001 94.5 345.7000000000001C232.4 483.9 420.3 431.3 444.1 424.9C462.3 420 476.5 405.8 481.3 387.6C498.4 322.9 524.2 161.2 401.5 38.3zM435.9 394C415.6 399.4 385.1 405.4 349.6 407.2L463.5 293.3C461.9 329 455.8 359.4 450.5 379.4C448.6 386.5 443 392.1 435.9 394zM60.1 -10C80.4 -15.4 110.9 -21.4 146.4 -23.2L32.6 90.7C34.2 55 40.3 24.6 45.6 4.6C47.4 -2.5 53 -8.1 60.1 -10zM462.8 248.8L304.6 406.9C230.4000000000001 401.6 167.4 373.6 117.1 323.2C58.7 264.7 37.8 195.9 33.2 135.3L191.3 -22.8000000000001C265.5 -17.5000000000001 328.5 10.4999999999999 378.8 60.8999999999999C437.3 119.2999999999999 458.2 188.0999999999999 462.8 248.8z" />
+    <glyph glyph-name="football-helmet"
+      unicode="&#xF44F;"
+      horiz-adv-x="512" d=" M480 128H355.5L340.3 204L477.1 221.8C486.1 223 492.7 231.6 491 240.5C468.4 354.2 368.3 440 248 440C114.9 440 18.2 338.5 2.6 228.1C-7.6 156 13.3 86.8 53.7 35.9C56.8 32 61.5 29.8 66.5 29.8H120L205.7 -13.1C215 -17.8 225.1 -20 235 -20C281.5 -20 313.1 29.2 295.9 72.1L286.4 96H329.3L338.8 46.6C348.3 -0.8 386.8 -36.6 434.7 -42.6C478.6999999999999 -48.1 477.1999999999999 -47.9999999999999 479.9999999999999 -47.9999999999999C502.4999999999999 -47.9999999999999 511.9999999999999 -28.3 511.9999999999999 -15.9999999999999V96C511.9999999999999 113.7 497.6999999999999 128 479.9999999999999 128zM273.6 128L263.3 153.7C245.4 198.6 308.4000000000001 199.9 308.5 199.9L322.9 128H273.6zM284.8 229.1C243.4 223.7 218.1 180.7 233.6 141.9L266.2000000000001 58.2C271.2000000000001 45.7 268.3000000000001 31.5 258.8000000000001 22C246.0000000000001 9.2 229.5000000000001 11 220.0000000000001 15.7C131.4000000000001 60 137.1000000000001 59.3 127.5000000000001 64.1H74.1C40.2 109.9 26.1 166.3 34.2 223.7C47.5 317.4 131.2 408 248 408C344.8 408 429.4 343.1 455.5 251.3L284.8 229.1zM480 -16L438.7 -10.8C412.8 -7.6 390.7 7.9 378.6 29.9H480V-16zM480 64H368.3L361.9000000000001 96H480V64zM176 136C162.7 136 152 125.3 152 112S162.7 88 176 88S200 98.7 200 112S189.3 136 176 136z" />
+    <glyph glyph-name="forklift"
+      unicode="&#xF47A;"
+      horiz-adv-x="640" d=" M416 79.6V178.8C416 187.5 414.2 196 410.8 204L332.5 386.9C324.9 404.6 307.6 416 288.3 416H144C117.5 416 96 394.5 96 368V256H48C21.5 256 0 234.5 0 208V16C0 -28.2 35.8 -64 80 -64C118.7 -64 151 -36.5 158.4 0H289.6C297 -36.5 329.3 -64 368 -64C412.2 -64 448 -28.2 448 16C448 42.1 435.3 65 416 79.6zM128 368C128 376.8 135.2 384 144 384H288.3C294.7 384 300.5 380.2 303 374.3L381.4 191.5C383.1 187.5 384 183.3 384 178.9V160H247.7C236.3 160 225.2 164.1 216.5 171.5L128 247.4V368zM80 -32C53.5 -32 32 -10.5 32 16S53.5 64 80 64S128 42.5 128 16S106.5 -32 80 -32zM289.6 32H158.4C151 68.5 118.7 96 80 96C61.9 96 45.4 89.8 32 79.6V208C32 216.8 39.2 224 48 224H106.1L195.6 147.3C210.1 134.9 228.6 128 247.6 128H384V94.4C378.8 95.5 373.5 96 368 96C329.3 96 297 68.5 289.6 32zM368 -32C341.5 -32 320 -10.5 320 16S341.5 64 368 64S416 42.5 416 16S394.5 -32 368 -32zM632 32H512V440C512 444.4 508.4 448 504 448H488C483.6 448 480 444.4 480 440V8C480 3.6 483.6 0 488 0H632C636.4 0 640 3.6 640 8V24C640 28.4 636.4 32 632 32z" />
+    <glyph glyph-name="forward"
+      unicode="&#xF04E;"
+      horiz-adv-x="512" d=" M244.5 217.1L52.5 376.6C31.9 393.7 0 379.4 0 352V32C0 4.6 31.9 -9.8 52.5 7.4L244.5 167.9C259.8 180.8 259.8 204.4 244.5 217.1zM224 192.6L32 32V352L224 192.6zM500.5 217.1L308.5 376.5C287.9 393.7 256 379.4 256 352V32C256 4.6 287.9 -9.8 308.5 7.4L500.5 167.9C515.8 180.8 515.8 204.4 500.5 217.1zM480 192.6L288 32V352L480 192.6z" />
+    <glyph glyph-name="fragile"
+      unicode="&#xF4BB;"
+      horiz-adv-x="288" d=" M213.9 -32H160V97.7C236.7 106.4 294.6 175.3 287.4 255.3L271.4 433.4C270.7 441.7 263.9 448 255.7 448H32.3C24.1 448 17.3 441.7 16.6 433.4L0.6 255.3C-6.6 175.3 51.3 106.4 128 97.7000000000001V-32H74.1C49.6 -32 40.9 -64 54.1 -64H233.9C247 -64 238.4 -32 213.9 -32zM32.5 252.5L47.1 416H118.9L154 357.5C71.3 307.9 93.2 321 67.7 305.7C94.8 284.7 80.2 296 181.2 217.8C184.5 215.3 189.2 215.5 192.2 218.5C195.5 221.7 195.5 227 192.2 230.3L121.7 300.9C193.8 344.2 180 335.9 197.9 346.6L156.3 416H240.9L255.5 252.5C260.6 195.3 218.8 128 144 128S27.3 195.1 32.5 252.5z" />
+    <glyph glyph-name="frog"
+      unicode="&#xF52E;"
+      horiz-adv-x="576" d=" M368 328C354.75 328 344 317.26 344 304C344 290.75 354.75 280 368 280S392 290.75 392 304C392 317.26 381.25 328 368 328zM554.67 0H487.1899999999999L384.31 115.73L546.29 207.33A58.15999999999999 58.15999999999999 0 0 1 576 258.06C576 279.45 564.28 299.01 545.52 309.29C504.96 331.51 446.53 350.56 446.53 350.56C439.67 387.77 407.19 416 368 416C328.77 416 296.28 387.71 289.46 350.46C126.75 335.04 -0.5 197.88 0 31.02C0.11 -3.89 29.08 -32 64 -32H373.33C379.22 -32 384 -27.22 384 -21.33C384 -9.55 374.45 0 362.67 0H300.01L334.47 45.92A103.73400000000001 103.73400000000001 0 0 1 351.96 101.98L472.81 -32H565.33C571.22 -32 576 -27.22 576 -21.33C576 -9.55 566.45 0 554.67 0zM346.84 134.92C340.63 154.73 328.81 172.92 311.23 186.42C273.32 215.54 219.72 213.04 181.48 184.35L150.41 161.04C143.35 155.74 141.91 145.71 147.19 138.63C152.5 131.55 162.53 130.18 169.6 135.44L202.17 159.88C225.7 177.53 257.89 181.21 283.41 166.59C320.41 145.39 330.76 98.01 308.37 64.4L260.03 0H64C46.41 0 32.05 13.96 32 31.12C31.55 180.89 143.53 304.48 292.48 318.6L316.5800000000001 320.8900000000001L320.9400000000001 344.7000000000001C325.1 367.4700000000001 344.9 384 368 384C391.07 384 410.87 367.5 415.06 344.76L418.52 326.05L436.6 320.15C437.16 319.97 492.7499999999999 301.72 530.14 281.23C538.6899999999999 276.55 544 267.67 544 258.06C544 248.61 538.88 239.86 530.63 235.24L346.84 134.92z" />
+    <glyph glyph-name="frosty-head"
+      unicode="&#xF79B;"
+      horiz-adv-x="384" d=" M376 224H320V416C320 433.7 305.7 448 288 448H96C78.3 448 64 433.7 64 416V224H8C3.6 224 0 220.4 0 216V200C0 195.6 3.6 192 8 192H45.5C27 164 16 130.5 16 94.3C16 31.5 48.8 -23.2 98 -54.5C108.7 -61.3 121.6 -64 134.2 -64H155.8C151.4 -57.7 144 -47 135 -32H134.3C128.8 -32 121.1 -31.2 115.3 -27.5C73.1 -0.7 48 44.8 48 94.3C48 132.2 62.9 166.3 86.8 192H298.5C316.1 172.5 328.7 148.3 333.6 121.6C343.9000000000001 64.5 321 8.7 273.9000000000001 -24.1C266.5000000000001 -29.2 258.0000000000001 -31.9 249.1 -31.9C240.1 -46.9 232.6 -57.6 228.3 -63.9H249.1C264.5 -63.9 279.6 -59.1 292.2000000000001 -50.3C346.1 -12.6999999999999 378.3000000000001 53.8000000000001 365.0000000000001 127.4C360.7000000000001 151.0000000000001 351.1000000000001 172.7000000000001 338.1000000000001 192.1H376C380.4 192.1 384 195.7 384 200.1V216.1C384 220.4 380.4 224 376 224zM288 224H96V288H288V224zM288 320H96V416H288V320zM245.3 42.7C245.3 72.1 221.4 96 192 96S138.7 72.1 138.7 42.7C138.7 15.1 177.9 -39.6 192 -60.1C206.2 -39.6 245.3 15.1 245.3 42.7zM192 64C203.8 64 213.3 54.4 213.3 42.7C213.3 36 203.6 16.7 192 -2.5C180.4 16.6 170.7 36 170.7 42.7C170.7 54.4 180.2 64 192 64zM256 96C267.8 96 277.3 105.6 277.3 117.3C277.3 129.1 267.7 138.6 256 138.6C244.2 138.6 234.7 129 234.7 117.3C234.7 105.6 244.2 96 256 96zM149.3 117.3C149.3 129.1 139.7 138.6 128 138.6C116.2 138.6 106.7 129 106.7 117.3C106.7 105.5 116.3 96 128 96C139.8 96 149.3 105.6 149.3 117.3z" />
+    <glyph glyph-name="frown-open"
+      unicode="&#xF57A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM248 160C208.3 160 145.4 136.3 136.5 85.5C134.6 74.6 138.5 63.3 146.8 56C155 48.7 166.7 46.1 177.4 49.4C206.7 58.4 233.8 64 248 64S289.3 58.4 318.6 49.4C326.3 47 338.7000000000001 46.8 349.2000000000001 56C357.4000000000001 63.3 361.4000000000001 74.6 359.5000000000001 85.5C350.6000000000001 136.3 287.7000000000001 160 248.0000000000001 160zM248 96C230.3 96 201.1 90.2 168 80C173.2 109.7 218.1 128 248 128S322.8 109.7 328 80C294.9 90.2 265.7 96 248 96z" />
+    <glyph glyph-name="frown"
+      unicode="&#xF119;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 128C203.6 128 161.8 108.4 133.2 74.2C127.5 67.4 128.4 57.3 135.2 51.7C142 46 152.1 46.9 157.7 53.7C180.1 80.5 213 95.9 247.9 95.9S315.7 80.5 338.1 53.7C343.4 47.3 353.5 45.7 360.6 51.7C367.4 57.4 368.3 67.5 362.6 74.2C334.2 108.4 292.4 128 248 128zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208z" />
+    <glyph glyph-name="function"
+      unicode="&#xF661;"
+      horiz-adv-x="640" d=" M578.99 348.68C576.48 352.26 571.39 353.06 567.83 350.5L555.1700000000001 341.39C551.73 338.92 551.0000000000001 334.2100000000001 553.4300000000001 330.76C589.6 279.12 608.6700000000001 220.24 608.6700000000001 160C608.6700000000001 99.76 589.6 40.88 553.4300000000001 -10.76C551.0100000000001 -14.22 551.73 -18.92 555.1700000000001 -21.39L567.83 -30.5C571.39 -33.06 576.48 -32.26 578.99 -28.68C618.93 28.23 640 93.29 640 160S618.93 291.77 578.99 348.68zM308.83 341.39L296.17 350.5C292.61 353.06 287.52 352.26 285.01 348.68C245.07 291.77 224 226.71 224 160S245.07 28.23 285.01 -28.68C287.52 -32.26 292.61 -33.06 296.17 -30.5L308.8300000000001 -21.39C312.2700000000001 -18.92 313.0000000000001 -14.21 310.5700000000001 -10.76C274.4000000000001 40.88 255.3400000000001 99.76 255.3400000000001 160C255.3400000000001 220.24 274.4100000000001 279.12 310.5800000000001 330.76C313.0000000000001 334.22 312.2700000000001 338.92 308.8300000000001 341.39zM224 408C224 412.42 220.42 416 216 416H160C115.82 416 80 380.18 80 336V256H8C3.58 256 0 252.42 0 248V232C0 227.58 3.58 224 8 224H80V80C80 53.49 58.51 32 32 32H8C3.58 32 0 28.42 0 24V8C0 3.58 3.58 0 8 0H32C76.18 0 112 35.82 112 80V224H184C188.42 224 192 227.58 192 232V248C192 252.42 188.42 256 184 256H112V336C112 362.51 133.49 384 160 384H216C220.42 384 224 387.58 224 392V408zM509.66 226.35L498.35 237.66C495.23 240.78 490.16 240.78 487.04 237.66L432 182.63L376.9700000000001 237.66C373.85 240.78 368.7800000000001 240.78 365.6600000000001 237.66L354.35 226.35C351.23 223.23 351.23 218.16 354.35 215.04L409.38 160L354.35 104.97C351.23 101.85 351.23 96.78 354.35 93.66L365.6600000000001 82.35C368.7800000000001 79.23 373.85 79.23 376.9700000000001 82.35L432 137.38L487.03 82.35C490.15 79.23 495.22 79.23 498.34 82.35L509.65 93.66C512.77 96.78 512.77 101.85 509.65 104.97L454.62 160L509.65 215.03A8.006 8.006 0 0 1 509.66 226.35z" />
+    <glyph glyph-name="funnel-dollar"
+      unicode="&#xF662;"
+      horiz-adv-x="640" d=" M464.02 288C459.32 288 454.7 287.66 450.09 287.3L568.06 401.91C585.02 418.87 573.01 448 548.97 448H27.03C3.05 448 -9.05 418.9 7.94 401.91L224 192V10C224 1.19 228.3 -7.07 235.52 -12.12L309.52 -59.1C314.34 -62.47 319.67 -64 324.88 -64C338.87 -64 352 -52.97 352 -36.98V-23.76C382.43 -48.88 421.46 -63.97 464.02 -63.97C561.36 -63.97 640 14.8100000000001 640 112.01C640 209.36 561.22 288 464.02 288zM320 -26L256.26 12.25L256 12.47V205.53L39.35 416H536.64L385.94 269.5900000000001C327.93 240.81 288.04 181.17 288.04 112.03C288.04 74.38 299.92 39.61 320 11.02V-26zM464.02 -31.96C384.63 -31.96 320.04 32.63 320.04 112.02S384.63 256 464.02 256S608 191.41 608 112.02S543.41 -31.96 464.02 -31.96zM491.13 120.5800000000001L446.13 134.0800000000001C440.97 135.6300000000001 437.36 140.86 437.36 146.8100000000001C437.36 154.0800000000001 442.6600000000001 160.0000000000001 449.1600000000001 160.0000000000001H477.27C481.83 160.0000000000001 486.23 158.71 490.09 156.28C493.33 154.2500000000001 497.45 154.37 500.22 157.0100000000001L511.97 168.22C515.5 171.59 515.3000000000001 177.43 511.4 180.36C502.3 187.19 491.3200000000001 191.13 480.03 191.71V208C480.03 212.42 476.45 216 472.03 216H456.03C451.61 216 448.0300000000001 212.42 448.0300000000001 208V191.88C424.4100000000001 191.25 405.36 171.33 405.36 146.81C405.36 126.84 418.3400000000001 109 436.94 103.42L481.94 89.92C487.1 88.37 490.71 83.14 490.71 77.19C490.71 69.92 485.41 64 478.91 64H450.8C446.24 64 441.8400000000001 65.29 437.98 67.72C434.74 69.75 430.62 69.6300000000001 427.85 66.99L416.1 55.78C412.5700000000001 52.41 412.7700000000001 46.5700000000001 416.67 43.64C425.7700000000001 36.8100000000001 436.75 32.8700000000001 448.04 32.29V16C448.04 11.58 451.62 8 456.04 8H472.04C476.46 8 480.04 11.58 480.04 16V32.12C503.66 32.75 522.71 52.66 522.71 77.19C522.71 97.16 509.73 115 491.1300000000001 120.58z" />
+    <glyph glyph-name="futbol"
+      unicode="&#xF1E3;"
+      horiz-adv-x="496" d=" M483.7 268.6C449.7 373.4 352.5 440 248.1 440C81.2 440 -40 276.6 12.3 115.4C46.3 10.6 143.7 -56 248 -56C414.9 -56 536 107.4 483.7 268.6zM440.7 94.9L346.4 83.3L328.6 108.1999999999999L362.3 212.2999999999999L391.2 221.2999999999999L460.8 156.3C457.1999999999999 135.1999999999999 450.4999999999999 114.5 440.7 94.9zM35.6 156.5L105 221.4L133.9 212.4L167.8 108.7L149.7 83.5L55.5 95.1C42.5 121.1 38.3 140.3 35.6 156.5zM232.1 337.2V304.3L146.2 242L114.7 251.8L96.7 345.7000000000001C112 360.8 129.5 373.5 148.7 383.5L232.1 337.2000000000001zM381.5 251.8L350 242L264.1 304.3V337.2000000000001L347.7000000000001 383.6C366.8000000000001 373.6 384.4000000000001 360.9000000000001 399.7000000000001 345.7000000000001L381.5000000000001 251.8zM166.1 216.8L248.1 276.3L330.2 216.7L299.1 120.7H197.5L166.1 216.8zM463.8 197.3L412.7 245L426 313.3C460.5 262.5 463.3 216.1 463.8 197.3zM309.2 398.8L248.1 364.9L187.1 398.7C258.6 419.9 309.1 398.8 309.2 398.8zM70.3 313.9L83.5 245L32.4 197.5C33.2 229.3 41.1 260.9 56 290.1C60.2 298.4 65.1 306.3 70.3 313.9zM77.8 59.9L146.5 51.5L175.7 -11.2C136.9 2.6 103 27.3 77.8 59.9zM215.7 -21.4L175.6 64.6L193 88.8H303.2L320.5 64.6L280.4 -21.4C257.7 -24.9 238 -24.8 215.7 -21.4zM320.5 -11.2L349.7 51.4999999999999L418.7 59.9999999999999C393.7 27.3999999999999 359.9 2.8999999999999 320.5 -11.2z" />
+    <glyph glyph-name="gamepad"
+      unicode="&#xF11B;"
+      horiz-adv-x="640" d=" M472 328C547.2 328 608 267.2 608 192S547.2 56 472 56C429.9 56 392 80 375 96H265C248 80 221.9 56 168 56C92.8 56 32 116.8 32 192S92.8 328 168 328H472M472 360H168C75.2 360 0 284.8 0 192S75.2 24 168 24C209.5 24 247.5 39.1 276.8 64H363.2000000000001C392.5000000000001 39.1 430.5000000000001 24 472.0000000000001 24C564.8000000000001 24 640 99.2 640 192S564.8 360 472 360zM512 260C492.1 260 476 243.9 476 224S492.1 188 512 188S548 204.1 548 224S531.9 260 512 260zM448 196C428.1 196 412 179.9 412 160S428.1 124 448 124S484 140.1 484 160S467.9 196 448 196zM180 212V258C180 261.3 177.3 264 174 264H146C142.7 264 140 261.3 140 258V212H94C90.7 212 88 209.3 88 206V178C88 174.7 90.7 172 94 172H140V126C140 122.7 142.7 120 146 120H174C177.3 120 180 122.7 180 126V172H226C229.3 172 232 174.7 232 178V206C232 209.3 229.3 212 226 212H180z" />
+    <glyph glyph-name="gas-pump-slash"
+      unicode="&#xF5F4;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM480 369.37V288C480 261.49 501.49 240 528 240H544V76.72L574.72 52.53C575.4100000000001 56.28 576 60.06 576 64.0100000000001V305.37C576 313.86 572.63 321.99 566.63 328L472.97 421.66C469.85 424.78 464.78 424.78 461.66 421.66L450.35 410.35C447.23 407.23 447.23 402.16 450.35 399.04L480 369.37zM512 337.37L544 305.37V272H528C519.17 272 512 279.17 512 288V337.37zM160 416H320C337.64 416 352 401.64 352 384V227.91L384 202.71V384C384 419.35 355.35 448 320 448H160C138.22 448 119.04 437.07 107.48 420.45L133.1 400.27C138.73 409.5 148.43 416 160 416zM408 -32H384V80.5L352 105.7V-32H128V282.0900000000001L96 307.29V-32H72C67.58 -32 64 -35.58 64 -40V-56C64 -60.42 67.58 -64 72 -64H408C412.42 -64 416 -60.42 416 -56V-40C416 -35.58 412.42 -32 408 -32z" />
+    <glyph glyph-name="gas-pump"
+      unicode="&#xF52F;"
+      horiz-adv-x="512" d=" M502.6 328L409 421.7C405.9 424.8 400.8 424.8 397.7 421.7L386.4 410.4C383.3 407.3 383.3 402.2 386.4 399.1L416 369.4V288C416 261.5 437.5 240 464 240H480V65.8C480 49.9 469.1 35 453.4 32.4C433.4 29.1 416 44.5000000000001 416 64.0000000000001V112.0000000000001C416 156.2000000000001 380.2 192.0000000000001 336 192.0000000000001H320V384C320 419.3 291.3 448 256 448H96C60.7 448 32 419.3 32 384V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H344C348.4 -64 352 -60.4 352 -56V-40C352 -35.6 348.4 -32 344 -32H320V160H336C362.5 160 384 138.5 384 112V67.6C384 35.7 405.7 6.1 437.2 0.9C477.3 -5.7 512 25.2 512 64.0000000000001V305.4C512 313.9 508.6 322 502.6 328zM480 272H464C455.2 272 448 279.2 448 288V337.4L480 305.4V272zM288 -32H64V224H288V-32zM288 256H64V384C64 401.6 78.4 416 96 416H256C273.6 416 288 401.6 288 384V256z" />
+    <glyph glyph-name="gavel"
+      unicode="&#xF0E3;"
+      horiz-adv-x="512" d=" M500.892 261.439L480.259 282.082C467.347 294.9940000000001 447.843 296.419 433.5270000000001 287.53L351.53 369.526C360.418 383.841 358.995 403.346 346.082 416.257L325.44 436.892C310.632 451.7 286.659 451.705 271.848 436.892L158.315 323.367C143.541 308.592 143.541 284.552 158.315 269.776L178.958 249.132C191.617 236.475 211.076 234.659 225.683 243.693L255.375 214.001L196.572 155.198L188.49 163.28C171.557 180.214 144.006 180.212 127.073 163.28L12.699 48.927C-4.233 31.994 -4.233 4.443 12.699 -12.49L51.509 -51.301C68.44 -68.2329999999999 95.991 -68.234 112.926 -51.301L227.28 63.073C244.212 80.006 244.212 107.557 227.28 124.49L219.199 132.571L278.002 191.374L307.694 161.682C298.663 147.0750000000001 300.476 127.615 313.134 114.957L333.7770000000001 94.314C348.5530000000001 79.538 372.5920000000001 79.538 387.3680000000001 94.314L500.893 207.847C515.701 222.656 515.7040000000001 246.628 500.8920000000001 261.439zM204.653 85.7L90.3 -28.652C85.844 -33.11 78.593 -33.109 74.137 -28.652V-28.653L35.347 10.1370000000001C30.891 14.5930000000001 30.891 21.8440000000001 35.347 26.3000000000001L149.7 140.652C154.156 145.109 161.406 145.11 165.862 140.653L204.652 101.8629999999999C209.108 97.4069999999999 209.108 90.156 204.653 85.6999999999999zM478.273 230.476L364.74 116.942A5.896 5.896 0 0 0 356.403 116.942L335.76 137.585A5.902 5.902 0 0 0 335.759 145.9210000000001L352.237 162.3950000000001L226.3950000000001 288.2360000000001L209.9210000000001 271.7610000000001A5.902 5.902 0 0 0 201.585 271.7600000000001L180.942 292.403A5.903 5.903 0 0 0 180.942 300.74L294.476 414.273A5.896 5.896 0 0 0 302.813 414.273L323.456 393.629A5.893000000000001 5.893000000000001 0 0 0 323.4550000000001 385.293L306.9830000000001 368.818L432.82 242.981L449.297 259.454A5.893000000000001 5.893000000000001 0 0 0 457.6319999999999 259.454L478.275 238.811V238.81A5.893000000000001 5.893000000000001 0 0 0 478.273 230.476z" />
+    <glyph glyph-name="gem"
+      unicode="&#xF3A5;"
+      horiz-adv-x="576" d=" M463.7 448H112.3C108.1 448 104.2 445.8 102 442.2L1.7 279.4C-1 275 -0.5 269.3 2.9 265.4L278.9 -59.7999999999999C283.7 -65.4 292.3 -65.4 297.1 -59.7999999999999L573.0999999999999 265.4000000000001C576.4999999999999 269.3000000000001 576.8999999999999 275 574.3 279.4000000000001L474 442.2C471.8 445.8 467.9 448 463.7 448zM450.1 412L524.4 288H441.4L384.6 412H450.1zM345 412L401.8 288H174.1L231 412H345zM125.9 412H191.4L134.6 288H51.6L125.9 412zM61.2 256H134.2L216 64L61.2 256zM173.2 256H402.7L288 -7.8L173.2 256zM360 64L441.8 256H514.8L360 64z" />
+    <glyph glyph-name="genderless"
+      unicode="&#xF22D;"
+      horiz-adv-x="288" d=" M144 304C205.9 304 256 254 256 192C256 130.1 206 80 144 80C82.1 80 32 130 32 192C32 253.9 82 304 144 304M144 336C64.5 336 0 271.5 0 192S64.5 48 144 48S288 112.5 288 192S223.5 336 144 336z" />
+    <glyph glyph-name="ghost"
+      unicode="&#xF6E2;"
+      horiz-adv-x="384" d=" M192 448C190.04 448 188.07 447.9700000000001 186.09 447.9100000000001C81.01 444.76 0 353.08 0 247.95V-15.97C0 -25.61 7.89 -32 16.12 -32C20.05 -32 24.06 -30.54 27.32 -27.28L52.24 -8.75C55.1 -6.63 58.45 -5.59 61.78 -5.59C66.21 -5.59 70.6 -7.42 73.75 -10.97L116.7 -59.32C119.82 -62.44 123.92 -64.01 128.01 -64.01S136.2 -62.45 139.32 -59.32L180.04 -13.47C183.22 -9.89 187.61 -8.09 192 -8.09S200.78 -9.88 203.96 -13.47L244.68 -59.32C247.8 -62.44 251.9 -64.01 255.99 -64.01S264.18 -62.45 267.3 -59.32L310.25 -10.97A15.994 15.994 0 0 0 331.76 -8.7499999999999L356.68 -27.28C359.94 -30.54 363.95 -32 367.88 -32C376.1 -32 384 -25.61 384 -15.97V256C384 362.04 298.04 448 192 448zM352 16.08L350.87 16.92C342.5300000000001 23.1299999999999 332.63 26.4 322.23 26.4C308.5200000000001 26.4 295.44 20.52 286.3400000000001 10.28L256 -23.87L227.89 7.78C218.79 18.03 205.71 23.9 192 23.9S165.21 18.02 156.11 7.78L128 -23.87L97.66 10.28A48.016999999999996 48.016999999999996 0 0 1 61.77 26.4C51.38 26.4 41.48 23.12 33.14 16.92L32 16.08V247.95C32 338 101.56 413.36 187.05 415.92L192 416C280.2200000000001 416 352 344.2200000000001 352 256V16.08zM128 288C110.33 288 96 273.67 96 256S110.33 224 128 224S160 238.33 160 256S145.67 288 128 288zM256 288C238.33 288 224 273.67 224 256S238.33 224 256 224S288 238.33 288 256S273.67 288 256 288z" />
+    <glyph glyph-name="gift-card"
+      unicode="&#xF663;"
+      horiz-adv-x="576" d=" M528 320H456.7C466.2 333.4 472 349.9 472 368C472 412.1 438.6 448 397.5 448C355.2 448 330.7 422.6 288 352.2C245.3 422.6 220.8 448 178.5 448C137.4 448 104 412.1 104 368C104 349.9 109.8 333.4 119.3 320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H528C554.51 -64 576 -42.51 576 -16V272C576 298.51 554.51 320 528 320zM308.2 323.6C357.7 406.9 374.2 416 397.5 416C420.9 416 440 394.5 440 368S420.9 320 397.5 320H306L308.2 323.6zM178.5 416C201.9 416 218.3 406.9 267.8 323.6L269.9000000000001 320H178.4C155 320 135.9 341.5 135.9 368C136 394.5 155.1 416 178.5 416zM544 -16C544 -24.82 536.82 -32 528 -32H48C39.18 -32 32 -24.82 32 -16V16H544V-16zM544 48H32V112H544V48zM544 144H32V272C32 280.8400000000001 39.16 288 48 288H249.38L170.35 208.97C167.23 205.85 167.23 200.78 170.35 197.66L181.66 186.35C184.78 183.23 189.85 183.23 192.97 186.35L288 281.38L383.03 186.35C386.15 183.23 391.22 183.23 394.34 186.35L405.65 197.66C408.77 200.78 408.77 205.85 405.65 208.97L326.62 288H528C536.84 288 544 280.8400000000001 544 272V144z" />
+    <glyph glyph-name="gift"
+      unicode="&#xF06B;"
+      horiz-adv-x="512" d=" M464 304H424.7C434.2 317.4 440 333.9 440 352C440 396.1 406.6 432 365.5 432C323.2 432 298.7 406.6 256 336.2C213.3 406.6 188.8 432 146.5 432C105.4 432 72 396.1 72 352C72 333.9 77.8 317.4 87.3 304H48C21.5 304 0 282.5 0 256V160C0 151.2 7.2 144 16 144H32V0C32 -26.5 53.5 -48 80 -48H432C458.5 -48 480 -26.5 480 0V144H496C504.8 144 512 151.2 512 160V256C512 282.5 490.5 304 464 304zM276.2 307.6C325.7 390.9 342.2 400 365.5 400C388.9 400 408 378.5 408 352S388.9 304 365.5 304H274L276.2 307.6zM146.5 400C169.9 400 186.3 390.9 235.8 307.6L237.9 304H146.4C123 304 103.9 325.5 103.9 352C104 378.5 123.1 400 146.5 400zM192 -16H80C71.2 -16 64 -8.8 64 0V144H192V-16zM192 176H32V256C32 264.8 39.2 272 48 272H192V176zM288 -16H224V272H288V-16zM448 0C448 -8.8 440.8 -16 432 -16H320V144H448V0zM480 176H320V272H464C472.8 272 480 264.8 480 256V176z" />
+    <glyph glyph-name="gifts"
+      unicode="&#xF79C;"
+      horiz-adv-x="640" d=" M608 224H580.7C587.8000000000001 234 592 245.5 592 257.9C592 288.4 566.7 320 524.2 320C481.3000000000001 320 449.6 285.2 432.0000000000001 257.8C414.3000000000001 285.2000000000001 382.7000000000001 320 339.8000000000001 320C332.6000000000001 320 326.2000000000001 318.8 320.0000000000001 317.2000000000001V320C320.0000000000001 337.7 305.7000000000001 352 288.0000000000001 352H217.6000000000001L260.7000000000001 382.8C264.3000000000001 385.4 265.1 390.4 262.6 394L253.3 407C250.7 410.6 245.7 411.4 242.1 408.9L189 370.9L211.8000000000001 431.6C213.4 435.7 211.3000000000001 440.3 207.1000000000001 441.9000000000001L192.1000000000001 447.5C188.0000000000001 449.1 183.3000000000001 447 181.8000000000001 442.8L160 384.7L138.2 442.8C136.6 446.9 132 449 127.9 447.5L112.9 441.9C108.8 440.3 106.7 435.7 108.2 431.6L131 370.9L78 408.8C74.4 411.4 69.4 410.5 66.8 406.9L57.5 393.9C54.9 390.3 55.8 385.3 59.4 382.7L102.4 352H32C14.3 352 0 337.7 0 320V-32C0 -49.7 14.3 -64 32 -64H608C625.7 -64 640 -49.7 640 -32V192C640 209.7 625.7 224 608 224zM339.8 288C377.4000000000001 288 405.8 242.1 414.5 224H357C335.1 224 322.6 230.2 315.9 235.4C308.1 241.4 304 249.2 304 257.9C304 272.7000000000001 317.4 288 339.8 288zM224 192V-32H32V320H288V298C277.7 286.6 272 272.2 272 257.9C272 245.5 276.1 234 283.3 224H256C238.3 224 224 209.7 224 192zM416 -32H256V64H416V-32zM416 96H256V192H416V96zM524.2 288C546.6 288 560 272.7 560 257.9C560 249.2 555.9 241.4 548.1 235.4C541.4 230.2 528.9 224 507 224H449.5C458.2 242.1 486.6 288 524.2 288zM608 -32H448V64H608V-32zM608 96H448V192H608V96z" />
+    <glyph glyph-name="gingerbread-man"
+      unicode="&#xF79D;"
+      horiz-adv-x="448" d=" M224 112C215.2 112 208 104.8 208 96S215.2 80 224 80S240 87.2 240 96S232.8 112 224 112zM192 360C183.2 360 176 352.8 176 344S183.2 328 192 328S208 335.2 208 344S200.8 360 192 360zM224 176C215.2 176 208 168.8 208 160S215.2 144 224 144S240 151.2 240 160S232.8 176 224 176zM224 240C215.2 240 208 232.8 208 224S215.2 208 224 208S240 215.2 240 224S232.8 240 224 240zM256 360C247.2 360 240 352.8 240 344S247.2 328 256 328S272 335.2 272 344S264.8 360 256 360zM448 208C448 252.1 412.1 288 368 288H328.4C338.7 311.1 341 337.4 334.2 363.6C324.3 402.4 292.8 434 254.2 444.1C244.2 446.7 234.1 448 224 448C193.5 448 164.9 436.1 143.4 414.6C121.9 393.1 110 364.5 110 334C110 318 113.4 302.3 119.8 288H80C35.9 288 0 252.1 0 208S35.9 128 80 128H107.9L49.9 66.4C22.1 32.2 27.3 -18.3 61.5 -46.1C75.8 -57.6 93.7 -64 112 -64C136.2 -64 158.9 -53.2 174.1 -34.4L224 17.2L273.9 -34.4C289.1 -53.2 311.8 -64 336 -64C354.3 -64 372.2 -57.6 386.4 -46.1C420.6 -18.3 425.8 32.2 398 66.4L340 128H368C412.1 128 448 163.9 448 208zM304.6 120.9L373.2000000000001 46.3C389.9000000000001 25.6999999999999 386.8000000000001 -4.5000000000001 366.2000000000001 -21.2C357.3000000000001 -28.4 346.6 -32.0000000000001 336.0000000000001 -32.0000000000001C322.0000000000001 -32.0000000000001 308.2000000000001 -25.9 298.7000000000001 -14.3000000000001L248.8000000000001 37.3C242.4000000000001 45.1999999999999 233.2000000000001 49.1 224 49.1S205.6 45.2 199.2 37.3L149.3 -14.3000000000001C139.8 -26 126 -32 112 -32C101.4 -32 90.7 -28.5 81.8 -21.2C61.2 -4.5 58.1 25.7 74.8 46.3L143.4 120.9C156.1 136.6 145 160 124.8 160H80C53.5 160 32 181.5 32 208S53.5 256 80 256H161.6C170.9 256 175.8 267.5 168.9 273.7C152.4 288.6 142 310 142 334C142 379.3 178.7 416 224 416C231.2 416 238.6 415.1 246.1 413.1C273.7 405.9 296.2 383.3 303.2 355.6C311.5 323.1 300.5 292.9 279.2 273.7C272.3 267.4 277 255.9 286.4 255.9H368C394.5 255.9 416 234.4 416 207.9S394.5 159.9 368 159.9H323.3C303.1 160 291.9000000000001 136.6 304.6 120.9z" />
+    <glyph glyph-name="glass-champagne"
+      unicode="&#xF79E;"
+      horiz-adv-x="256" d=" M255 235.7L228 420.6C225.7 436.3 212.2 448 196.3 448H59.7C43.8 448 30.3 436.3 28 420.6L1 235.7C-8 166.9 42.9 106.2 112 97.7V-32H58.7C43.9 -32 32 -43.9 32 -58.7C32 -61.6 34.4 -64 37.3 -64H218.6C221.6 -64 223.9 -61.6 223.9 -58.7C223.9 -44 212 -32 197.2000000000001 -32H144V97.7C213 106.1 264 166.9 255 235.7zM196.3 416L210.3 320H45.7L59.7 416H196.3zM32.7 231.1L41 288H215L223.2 231.5C226.6 205.8 218.9 180.7 201.4 160.8C183.2 140 156.4 128 128 128S72.8 140 54.5 160.8C37.1 180.7 29.4 205.8 32.7 231.1z" />
+    <glyph glyph-name="glass-cheers"
+      unicode="&#xF79F;"
+      horiz-adv-x="640" d=" M605.4 11L570.4 -2L524.4 121.4C581.4 153.6 603.9 224.9 571.1999999999999 281.5L484.3 432C478.4 442.2 467.7 448 456.6 448C452.5 448 448.4000000000001 447.2 444.4000000000001 445.6L323.8000000000001 395.6C322.4000000000001 395 317.7000000000001 395 316.3000000000001 395.6L195.7000000000001 445.6C191.7000000000001 447.3 187.6000000000001 448 183.5000000000001 448C172.4000000000001 448 161.6000000000001 442.2 155.8000000000001 432L68.8000000000001 281.5C36.1000000000001 224.9 58.6000000000001 153.6 115.6000000000001 121.4L69.6 -2L34.6 11C20.8 16.1 5.5 9.1 0.3 -4.7C-0.7 -7.5 0.7 -10.5 3.4 -11.6L143.3 -63.7999999999999C146.1 -64.7999999999999 149.1 -63.4 150.2 -60.6999999999999C155.3 -46.8999999999999 148.3 -31.4999999999999 134.5 -26.3999999999999L99.5 -13.3999999999999L145.1 109C216.2 90.3 274.9 134.6 289.7 189.7L320 302.2L350.1 190C365 134.6 423.9000000000001 90.6 494.7 109.3L540.3000000000001 -13.1L505.3000000000001 -26.1C491.5000000000001 -31.2 484.5000000000001 -46.6 489.6000000000001 -60.4C490.6000000000001 -63.2 493.7000000000001 -64.6 496.5000000000001 -63.5000000000001L636.4000000000001 -11.3000000000001C639.2 -10.3000000000001 640.6000000000001 -7.2 639.5000000000001 -4.4000000000001C634.5000000000001 9.1999999999999 619.2000000000002 16.1999999999999 605.4000000000001 10.9999999999999zM259 198.2C243.2 139.4 181.1 127.2 141.3 143.7C92.7 163.8 70.7 220.7 96.6 265.5L122.1 309.7L272.3 247.5L259 198.2zM280.6 278.7L138.2 337.7L183.4 416L304 366L280.6 278.7zM336 366L456.6 416L501.8 337.7L359.4 278.7L336 366zM381 198.2L367.8 247.5L518 309.7L543.5 265.5C569.4 220.6 547.4 163.8 498.8 143.7C458 126.8 396.4 141 381 198.2z" />
+    <glyph glyph-name="glass-martini-alt"
+      unicode="&#xF57B;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L240 160.36V-32H186.67C171.94 -32 160 -43.94 160 -58.67C160 -61.62 162.39 -64 165.33 -64H346.6600000000001C349.61 -64 351.99 -61.61 351.99 -58.67C351.99 -43.94 340.05 -32 325.32 -32H272V160.36L502.05 390.4zM32.2 414.93C32.64 416 33.08 416 33.8 416H478.2C478.92 416 479.36 416 479.8 414.93C480.25 413.86 479.94 413.55 479.42 413.04L418.39 352H93.61L32.58 413.03C32.06 413.54 31.76 413.85 32.2 414.93zM256.06 189.67L125.61 320H386.4L256.06 189.67z" />
+    <glyph glyph-name="glass-martini"
+      unicode="&#xF000;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L240 160.36V-32H186.67C171.94 -32 160 -43.94 160 -58.67C160 -61.62 162.39 -64 165.33 -64H346.6600000000001C349.61 -64 351.99 -61.61 351.99 -58.67C351.99 -43.94 340.05 -32 325.32 -32H272V160.36L502.05 390.4zM256.06 189.67L32.58 413.03C32.07 413.54 31.76 413.85 32.2 414.92C32.64 416 33.08 416 33.8 416H478.2C478.92 416 479.36 416 479.8 414.93C480.25 413.86 479.94 413.55 479.42 413.04L418.39 352L256.06 189.67z" />
+    <glyph glyph-name="glass-whiskey-rocks"
+      unicode="&#xF7A1;"
+      horiz-adv-x="512" d=" M480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM424.4 27.5C422.2 11.8 408.5 0 392.7 0H119.7C103.9 0 90.3 11.8 88 27.9L67.2 160H96V112C96 85.5 117.5 64 144 64H240C254 64 266.5 70.2 275.3 79.9L286.1 69.1C295.2000000000001 59.9999999999999 307.2000000000001 54.9999999999999 320 54.9999999999999C332.8 54.9999999999999 344.9 59.9999999999999 353.9 69.1L410.9 126.1C420.3 135.5 424.9 147.8 424.9 160H445L424.4 27.4999999999999zM251.7 148.7C245.5 154.9 245.5 165.1 251.7 171.3L308.7 228.3C311.8 231.4 315.9 233 320 233C324.1 233 328.2 231.4 331.3 228.3L388.3 171.3C394.5 165.1 394.5 154.9 388.3 148.7L331.3 91.7C328.2 88.6 324.1 87 320 87C315.9 87 311.8 88.6 308.7 91.7L251.7 148.7zM229.1 193.9C210.4 175.2 210.4 144.7 229.1 126L252.6 102.5C249.7 98.6 245.3 95.9 240 95.9H144C135.2 95.9 128 103.1 128 111.9V207.9C128 216.7 135.2 223.9 144 223.9H240C245.2 223.9 249.7 221.2 252.6 217.3L229.1 193.9zM450 192H412.2C411.7 192.6 411.5 193.4 410.9 193.9L353.9 250.9C344.9 260 332.8 265 320 265C307.2 265 295.1 260 286.1 250.9L275.3 240.1C266.5 249.8 254 256 240 256H144C117.5 256 96 234.5 96 208V192H62.2L32 384H480L450 192z" />
+    <glyph glyph-name="glass-whiskey"
+      unicode="&#xF7A0;"
+      horiz-adv-x="512" d=" M480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM424.4 27.5C422.2 11.8 408.5 0 392.7 0H119.7C103.9 0 90.3 11.8 88 27.9L67.2 160H445L424.4 27.5zM450 192H62.2L32 384H480L450 192z" />
+    <glyph glyph-name="glasses-alt"
+      unicode="&#xF5F5;"
+      horiz-adv-x="576" d=" M572.39 145.37L528.75 355.2200000000001C523.34 376.95 509.09 395.45 489.63 406.14C470.13 416.84 446.91 418.95 425.82 411.89L402.97 404.28C398.78 402.88 396.51 398.35 397.91 394.1600000000001L402.97 378.98C404.37 374.79 408.9 372.52 413.09 373.92L433.37 380.69C446.48 385.06 461.12 384.98 473.36 378.55C485.66 372.0900000000001 494.3 361.0900000000001 497.65 347.65L528.1 206.81C504.32 227.22 473.79 240 440 240C373.11 240 317.79 191.62 306.42 128H269.58C258.21 191.62 202.89 240 136 240C102.21 240 71.68 227.22 47.9 206.82L78.35 347.66C81.71 361.1 90.34 372.1 102.64 378.56C114.88 384.99 129.52 385.07 142.63 380.7L162.91 373.93C167.1 372.53 171.63 374.8 173.03 378.99L178.09 394.17C179.4900000000001 398.36 177.22 402.89 173.03 404.29L150.18 411.9C129.09 418.96 105.87 416.85 86.37 406.15C66.91 395.45 52.66 376.95 47.25 355.2200000000001L3.61 145.37A172.5 172.5 0 0 1 0 112V104C0 28.89 60.89 -32 136 -32C208.37 -32 266.9700000000001 24.69 271.19 96H304.8C309.0200000000001 24.69 367.62 -32 439.99 -32C515.1 -32 575.99 28.89 575.99 104V112C575.89 123.21 574.67 134.39 572.39 145.37zM136 0C78.65 0 32 46.65 32 104S78.65 208 136 208S240 161.35 240 104S193.35 0 136 0zM440 0C382.65 0 336 46.65 336 104S382.65 208 440 208S544 161.35 544 104S497.35 0 440 0z" />
+    <glyph glyph-name="glasses"
+      unicode="&#xF530;"
+      horiz-adv-x="576" d=" M574.21 167.42L528.72 355.42C523.34 376.9700000000001 509.1 395.4700000000001 489.63 406.1500000000001C470.16 416.81 446.9700000000001 418.95 425.82 411.92L402.97 404.3C398.78 402.9000000000001 396.51 398.37 397.91 394.18L402.9700000000001 379C404.37 374.81 408.9000000000001 372.54 413.0900000000001 373.94L434.8800000000001 381.21C444.9800000000001 384.58 456.0400000000001 385.16 466.1100000000001 381.69C482.26 376.13 493.6800000000001 363.57 497.6200000000001 347.85L538.23 176.41C515.88 184.04 484.99 191.47 448.6600000000001 191.47C411.3200000000001 191.47 368.4000000000001 183.47 323.6600000000001 159.99H252.35C207.61 183.47 164.69 191.48 127.35 191.47C91.02 191.47 60.13 184.03 37.77 176.4L78.34 347.64C81.7 361.08 90.33 372.08 102.63 378.54C114.87 384.97 129.51 385.05 142.62 380.68L162.9 373.91C167.09 372.51 171.62 374.78 173.0200000000001 378.9700000000001L178.0800000000001 394.15C179.4800000000001 398.34 177.21 402.87 173.0200000000001 404.27L150.1700000000001 411.88C129.0800000000001 418.94 105.86 416.83 86.36 406.13C66.91 395.45 52.66 376.95 47.25 355.2200000000001L1.8 167.42C0.6 162.49 0 157.44 0 152.36V78.72C0 17.57 50.14 -32 112 -32H148.08C206.69 -32 255.38 12.67 259.77 70.44L264.14 128H311.86L316.23 70.44C320.61 12.66 369.31 -32 427.92 -32H464C525.86 -32 576 17.57 576 78.72V152.37C576 157.44 575.4 162.49 574.21 167.42zM227.86 72.86C224.76 32 189.72 0 148.08 0H112C67.89 0 32 35.31 32 78.72V140.0200000000001C50.79 147.9900000000001 85.21 159.48 127.37 159.48C163.72 159.48 199.01 151.04 232.53 134.35L227.86 72.86zM544 78.72C544 35.3100000000001 508.11 0 464 0H427.92C386.29 0 351.24 32 348.14 72.86L343.47 134.35C377 151.03 412.3 159.48 448.66 159.48C490.8199999999999 159.48 525.22 147.99 544 140.0200000000001V78.72z" />
+    <glyph glyph-name="globe-africa"
+      unicode="&#xF57C;"
+      horiz-adv-x="496" d=" M248 440C111.04 440 0 328.9700000000001 0 192S111.04 -56 248 -56S496 55.03 496 192S384.96 440 248 440zM441.2100000000001 288H423.5C406.12 288 392 273.88 392 256.5L392.28 250.03L379.66 243.34C377 242.86 371.25 242.68 364.57 242.37C332.26 240.85 317.69 239.7 311.66 227.76L307.66 217.64L326.1 190.03A31.427 31.427 0 0 1 352.29 176L360.0100000000001 176.5L360.1 165.48L341.29 140.3900000000001A31.937 31.937 0 0 1 335.63 127.42L331.44 104.86C321.06 95.36 311.82 84.56 303.9700000000001 72.78L290.9400000000001 53.25C286.2800000000001 46.27 274.4100000000001 46.92 270.6600000000001 54.53A62.925999999999995 62.925999999999995 0 0 0 264.0000000000001 82.62V112.5C264.0000000000001 129.88 249.8800000000001 144 232.5000000000001 144H206.6200000000001C196.3100000000001 144 186.6200000000001 148.02 179.3100000000001 155.31C172.0300000000001 162.61 168.0000000000001 172.31 168.0000000000001 182.62V196.68C168.0000000000001 208.77 173.7800000000001 220.34 183.4400000000001 227.59L211.0600000000001 248.28C222.0000000000001 256.55 238.7800000000001 258.7 252.3700000000001 251.92L267.0900000000001 244.56C274.5900000000001 240.83 283.1200000000001 240.18 291.1500000000001 242.86L338.4600000000001 258.63A31.465999999999998 31.465999999999998 0 0 1 359.9900000000001 288.51C359.9900000000001 305.89 345.8700000000001 320.01 328.4900000000001 320.01L318.7700000000001 319.85L311.8300000000001 326.79C305.8900000000001 332.73 297.9900000000001 336.01 289.5800000000001 336.01L200.0000000000001 335.5L199.6200000000001 339.42L214.0600000000001 343.03C221.7200000000001 344.94 228.3100000000001 349.59 232.6200000000001 356.09L240.28 368H264.5C281.88 368 296 382.12 296 399.5V402.44C359.74 387.9 412.7 345.14 441.21 288zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408C253.54 408 258.96 407.58 264.39 407.17L264.5 400H240.28C229.75 400 219.94 394.75 214.09 385.98L206.31 374.06L191.84 370.45C177.81 366.92 168 354.36 168 339.91V335.5C168 318.12 182.12 304 199.5 304L289.2200000000001 304.16L296.1600000000001 297.2200000000001C302.1 291.27 310 288 318.4100000000001 288L328.35 288.9700000000001L281.4100000000001 273.19L266.69 280.55C244.35 291.7200000000001 213.31 290.05 191.85 273.88L164.26 253.1900000000001C146.56 239.92 136 218.8 136 196.69V182.6300000000001C136 163.7700000000001 143.34 146.0400000000001 156.69 132.6900000000001S187.75 112 206.62 112L232 112.5V82.62C232 67.93 235.47 53.24 242.03 40.2C249.47 25.28 264.4700000000001 16 281.15 16C295.81 16 309.4 23.28 317.56 35.48L330.5899999999999 55.03C337.0299999999999 64.67 344.5899999999999 73.5 353 81.2000000000001C358.0899999999999 85.8200000000001 361.47 91.8600000000001 362.75 98.65L366.97 121.2700000000001L385.72 146.2700000000001C389.78 151.6900000000001 392 158.3900000000001 392 165.16V176.5C392 193.88 377.88 208 360.5 208L352.72 207.8L351.5 209.63C356.88 209.97 362.31 210.2400000000001 366.0299999999999 210.41C381.9099999999999 211.14 386.69 211.46 391.19 213.71L406.6 221.41C417.35 226.79 424.01 237.5800000000001 424.01 249.5800000000001L423.51 256H454.32C460.61 235.7700000000001 464.01 214.2700000000001 464.01 192C464 72.9 367.1 -24 248 -24z" />
+    <glyph glyph-name="globe-americas"
+      unicode="&#xF57D;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM463.72 186.55L420.9000000000001 197.26C418.93 197.76 417.24 198.93 416.1500000000001 200.59L398.1800000000001 227.5600000000001A8.05 8.05 0 0 0 398.1800000000001 236.4400000000001L417.7700000000001 265.8300000000001C418.55 266.99 419.5800000000001 267.9200000000001 420.8300000000001 268.5300000000001L444.8000000000001 280.5200000000001C457.03 253.47 464 223.56 464 192C464 190.16 463.77 188.38 463.72 186.55zM32 192C32 203.92 33.22 215.53 35.09 226.93C42.25 216.33 49.61 205.47 55 197.57C60.88 188.9 67.81 180.96 76.38 173.23C87.1 163.54 98.94 155.4 111.54 149.07C125.35 142.1 145.6 131.12 159.82 123.24C164.85 120.44 168.01 115.08 168.01 109.27V77.25C168.01 64.44 173.01 52.37 182.07 43.31C194.73 30.65 200.98 11.64 200.01 3.37V-18.44C103.95 3.47 32 89.41 32 192zM231.92 -23.19L231.84 1.25C234.34 19.83 222.4 48.23 204.68 65.94C201.71 68.92 199.99 73.05 199.99 77.25V109.27C199.99 126.74 190.52 142.82 175.27 151.24C160.77 159.27 140.08 170.51 125.93 177.65C115.87 182.7000000000001 106.4 189.21 96.99 197.7000000000001A100.36 100.36 0 0 0 81.43 215.59C71.77 229.7800000000001 55.89 253.3100000000001 46.03 267.9400000000001C72.01 336.8100000000001 132.01 389.0800000000001 205.59 403.79L257.38 352L242.35 336.9700000000001C233.32 327.94 233.01 313.44 241.41 304.03L235.69 304C229.44 304 223.5 301.5900000000001 218.97 297.2L209.06 287.56C201.5 280.26 199.59 269.03 204.31 259.61L208.31 251.63C201.37 254.38 193.53 254.7500000000001 186.28 252.29L155.09 241.9000000000001A27.892999999999997 27.892999999999997 0 0 1 136 215.4C136 204.74 141.91 195.17 151.44 190.4L162.53 184.85C173.25 179.49 185.15 176.47 197.15 176.05C199.53 173.75 203.4 168.49 205.84 165.16C211.75 157.08 217.34 149.44 224.84 145.69L228.22 144H298.75C302.9700000000001 144 307.09 142.3 310.06 139.31L323.75 125.62A14.66 14.66 0 0 0 328 115.35C328 107.3 324.7200000000001 99.43 318.94 93.6899999999999L307.6 82.36A39.93 39.93 0 0 1 297.35 64.48L296.23 60.0699999999999C295.29 56.3799999999999 294.3900000000001 52.6899999999999 293.04 49.0699999999999L266.26 -23.1000000000001C260.23 -23.6100000000001 254.17 -24.0200000000001 248.01 -24.0200000000001C242.57 -24.0000000000001 237.25 -23.5800000000001 231.92 -23.1900000000001zM302.74 -16.7L323 37.91C324.78 42.61 326.03 47.44 327.25 52.27L328.28 56.3200000000001C328.62 57.6300000000001 329.34 58.8700000000001 332.37 61.9L341.56 71.0600000000001C353.28 82.7000000000001 360 98.8600000000001 360 115.3700000000001C360 127.6200000000001 355.0299999999999 139.6000000000001 346.38 148.2600000000001L332.69 161.9500000000001C323.75 170.8900000000001 311.38 176.0100000000001 298.75 176.0100000000001H237.81C235.9 178.2400000000001 233.47 181.6 231.65 184.0700000000001C223.44 195.28 214.12 208 200 208C192 208 184 209.89 176.84 213.47L174.5 214.64L196.41 221.94L205.69 213.88C210.07 210.1 215.63 208 221.41 208H227.07C235.45 208 243.07 212.25 247.48 219.39C251.89 226.51 252.29 235.25 248.54 242.73L235.57 268.68L238.95 271.99H244.7C251.11 271.99 257.14 274.49 261.67 279.02L269.67 287.02C278.7 296.05 279.01 310.55 270.61 319.96L280.02 329.37C286.05 335.42 289.4 343.45 289.4 351.99S286.06 368.57 280.02 374.61L246.71 407.92C247.15 407.92 247.58 407.99 248.02 407.99C324.15 407.99 391.06 368.31 429.54 308.64L406.56 297.15A39.974 39.974 0 0 1 391.18 283.57L371.59 254.18C362.59 240.7 362.59 223.29 371.59 209.8L389.56 182.8299999999999C395.0899999999999 174.55 403.44 168.6599999999999 413.1499999999999 166.2199999999999L460.5299999999999 154.38C445.8099999999999 71.2299999999999 383.4899999999999 4.5099999999999 302.7399999999999 -16.7z" />
+    <glyph glyph-name="globe-asia"
+      unicode="&#xF57E;"
+      horiz-adv-x="496" d=" M248 440C111.04 440 0 328.9700000000001 0 192S111.04 -56 248 -56S496 55.03 496 192S384.96 440 248 440zM248 408C266.88 408 285.0900000000001 405.32 302.55 400.75L250.62 356.9700000000001C243.5 352.25 239.43 344.03 239.93 335.53C240.46 327 245.55 319.3400000000001 253.18 315.51L263.99 310.1V245.91C262.24 246.46 260.43 246.79 258.55 246.85C251.43 246.85 244.08 243.29 240.3 236.94L222.62 208C214.09 208 206.03 204.67 200 198.62L194.34 192.96C189.81 188.43 187.31 182.4 187.31 175.99S189.81 163.55 194.34 159.02L200 153.36V144H177.88L155.29 189.23A23.997 23.997 0 0 1 137.63 202.18C130.25 203.41 122.25 200.9 116.85 195.46L97.38 176H32.81C32.42 181.3 32 186.6 32 192C32 311.1 128.9 408 248 408zM37.56 144H97.37C105.9 144 113.96 147.33 119.99 153.38L131.61 164.99L149.23 129.68C154.7 118.77 165.67 112.01 177.85 112.01H200C217.66 112.01 232 126.37 232 144.01V153.39C232 161.73 228.66 169.92 222.78 175.86L222.94 176.0200000000001C234.13 176.0200000000001 244.66 181.9900000000001 250.38 191.55L261.22 209.61C264.38 208.58 267.97 208.02 272 208.02C285.22 208.02 296 218.79 296 232.02V310.13C296 322.29 289.2799999999999 333.2200000000001 278.44 338.69L337.51 388.36C412.01 354.24 464 279.16 464 192C464 169.29 460.43 147.42 453.91 126.84C452.59 128.61 451.53 130.54 449.9500000000001 132.1300000000001L445.0700000000001 137.0100000000001V140C445.0700000000001 159.85 428.9200000000001 176 409.0700000000001 176H403C397.5 176 392.21 174.73 387.45 172.43A40.04 40.04 0 0 1 370.89 176H358.8C350.43 176 342.4100000000001 173.43 335.5900000000001 168.58L311.87 151.68L273.62 136.54C258.3400000000001 130.43 248.48 115.85 248.48 99.4V89.1900000000001C248.48 78.5100000000001 252.64 68.46 260.19 60.9100000000001L272.11 49C281.17 39.94 293.23 34.94 306.05 34.94H316.39C320.31 34.94 324.23 35.42 328.03 36.37L346.42 40.97L357.33 30.06C362.71 24.68 369.22 20.93 376.26 18.61C340.34 -8.03 296.06 -24 248 -24C145.41 -24 59.47 47.95 37.56 144zM409 48.51C408.13 48.37 407.32 48 406.43 48H391.27C387.03 48 382.96 49.69 379.96 52.69L366.95 65.7A26.78 26.78 0 0 1 341.53 72.74L320.26 67.42C318.99 67.1 317.69 66.94 316.38 66.94H306.04C301.8 66.94 297.73 68.63 294.73 71.63L282.82 83.54A8.008 8.008 0 0 0 280.48 89.2000000000001V99.4C280.48 102.67 282.4700000000001 105.61 285.51 106.83L324.85 122.5700000000001C326.8300000000001 123.3600000000001 328.7100000000001 124.3900000000001 330.44 125.6200000000001L354.15 142.5100000000001A8.05 8.05 0 0 0 358.79 143.9900000000001H370.88C374.11 143.9900000000001 377.0299999999999 142.0500000000001 378.2699999999999 139.0600000000001L383.62 126.21A4 4 0 0 1 387.31 123.7500000000001H391.11C392.89 123.7500000000001 394.46 124.9200000000001 394.95 126.6300000000001L399.1499999999999 141.1000000000001C399.6499999999999 142.8100000000001 401.2099999999999 143.9800000000001 402.9899999999999 143.9800000000001H409.0499999999999C411.2599999999999 143.9800000000001 413.0499999999999 142.1900000000001 413.0499999999999 139.9800000000001V127.0500000000001C413.0499999999999 124.9300000000001 413.8899999999999 122.8900000000001 415.3899999999999 121.3900000000001L427.2999999999999 109.48C430.2999999999999 106.48 431.9899999999999 102.41 431.9899999999999 98.17V79.42A216.64 216.64 0 0 0 409 48.51z" />
+    <glyph glyph-name="globe-europe"
+      unicode="&#xF7A2;"
+      horiz-adv-x="496" d=" M184 328.8C184 335.8 178.3 341.5 171.3 341.5H171.2C167.8 341.5 164.6 340.2 162.3 337.8L133.8 309.3C131.4 306.9 130.1 303.7000000000001 130.1 300.4V300.3C130.1 293.3 135.8 287.6 142.8 287.6H160.8C164.2 287.6 167.4 288.9000000000001 169.7 291.3L180.2 301.8C182.6 304.2000000000001 183.9 307.4 183.9 310.7000000000001V328.8zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM296 -18.4V16C296 42.5 274.5 64 248 64H227.8C223.9 64 214.7 67.1 211.6 69.4L189.4 86.1C186 88.6 184 92.7 184 96.9V120.8C184 125.5 186.5 129.9 190.5 132.4L233.4000000000001 158.1C235.5000000000001 159.4 237.9000000000001 160 240.3000000000001 160H271.5000000000001C274.7000000000001 160 277.8000000000001 158.8 280.3000000000001 156.8L332.5000000000001 111.9999999999999H362.7000000000001L380.0000000000001 94.6999999999999C389.5000000000001 85.1999999999999 402.1000000000001 79.9999999999999 415.5000000000001 79.9999999999999H432.3000000000001C402.4000000000001 30.8999999999999 353.6000000000001 -5.3000000000001 296.0000000000001 -18.4000000000001zM448.5 112H415.6C410.8 112 406.1 113.9 402.7000000000001 117.3L385.4000000000001 134.6C379.4000000000001 140.6 371.3 144 362.8 144H344.5L301.3 181.1C293.1 188.2000000000001 282.6 192 271.7 192H240.5C232.3 192 224.2 189.8 217.1 185.5L174.2 159.8C160.5 151.6 152.1 136.8 152.1 120.8V96.9C152.1 82.6 158.8 69.1 170.3 60.5000000000001L192.5 43.8000000000001C201.1 37.3000000000001 217.1 32.0000000000001 227.9 32.0000000000001H248.1C256.9 32.0000000000001 264.1 24.8000000000001 264.1 16.0000000000001V-23.1999999999999C258.8 -23.5999999999999 253.5 -23.9999999999999 248.1 -23.9999999999999C129 -23.9999999999999 32.1 72.9000000000001 32.1 192.0000000000001C32.1 310.9000000000001 128.6 407.6 247.4 408.0000000000001L232 396.9C221.8 389.2 216 377.7 216 365.5V342.3C216 335.9 219.1 325.3 221.9 320C221.1 317.9 200.8 305 197.3 301.5C188.7 292.9 184 281.5 184 269.4V253C184 228 204.4 207.6 229.4 207.6H254.7C265.7000000000001 207.6 275.9000000000001 211.5 283.9000000000001 218.2C287.8 216.8 292.1 216.1 296.5000000000001 216.1H309.9000000000001C335.5000000000001 216.1 342.1 236.3 346.0000000000001 237.6C351.1000000000001 228.5 359.5000000000001 221.4 369.5000000000001 218.1C365.2000000000001 203.9 368.6000000000001 187.8 379.6000000000001 176.5L397.8000000000001 157.4C406.5000000000001 148.5 418.4000000000001 143.5 430.5000000000001 143.5H458.2C455.8000000000001 132.7 452.5000000000001 122.2 448.5000000000001 112zM430.7 175.6C427.1 175.6 423.6 177.1 421.1 179.6L402.6 199A9.93 9.93 0 0 0 402.7000000000001 213C415.3000000000001 225.6 413.2000000000001 221.6 413.2000000000001 230.8C413.2000000000001 233.3 412.2000000000001 235.7 410.4000000000001 237.5L402.5000000000001 245.4C400.7000000000001 247.2 398.3000000000001 248.2 395.8000000000001 248.2H382.4000000000001C373.9000000000001 248.2 369.8000000000001 258.5 375.7000000000001 264.4L383.6000000000001 271.7000000000001C385.4000000000001 273.5 387.8000000000001 274.5 390.3000000000001 274.5H398.6000000000001C403.8000000000001 274.5 408.1000000000001 278.7000000000001 408.1000000000001 284V294.2000000000001C408.1000000000001 299.4 403.9000000000001 303.7000000000001 398.6000000000001 303.7000000000001H370.4000000000001C363.0000000000001 303.7000000000001 357.0000000000001 297.7000000000001 357.0000000000001 290.3V284.7000000000001C357.0000000000001 278.9 353.3000000000002 273.8 347.8000000000002 272L321.3000000000002 263.2000000000001C317.0000000000001 261.8 316.7000000000001 258.2000000000001 316.7000000000001 255.0000000000001C316.7000000000001 251.3000000000001 313.7000000000001 248.3000000000001 310.0000000000001 248.3000000000001H296.6000000000002C292.9000000000002 248.3000000000001 289.9000000000002 251.3000000000001 289.9000000000002 255.0000000000001C289.9000000000002 263.4000000000001 277.4000000000002 263.6 274.6000000000002 258C265.6000000000002 245.6 263.1000000000002 239.8000000000001 254.7000000000002 239.8000000000001H229.4000000000001C222.0000000000001 239.8000000000001 216.0000000000001 245.8000000000001 216.0000000000001 253.2000000000001V269.6C216.0000000000001 273.2000000000001 217.4000000000001 276.6 219.9000000000001 279.1C239.4000000000001 293.1 249.5000000000001 296.7000000000001 249.5000000000001 310.6C249.5000000000001 313.5000000000001 251.3000000000002 316.1 254.1000000000001 317.0000000000001L287.7000000000001 328.2000000000001C289.1000000000001 328.7000000000001 290.4000000000001 329.4000000000001 291.4000000000001 330.5000000000001L313.9 353C318.9 358 317.4 367.9 307.2 367.9H289.8L276.4 349V342.3C276.4 338.6 273.4 335.6 269.7 335.6H254.7C251 335.6 248 338.6 248 342.3V365.5C248 367.6 249 369.6 250.7 370.9L294.7 402.8C391.4 381.3 464 295 464 192C464 186.5 463.6 181 463.2 175.6H430.7z" />
+    <glyph glyph-name="globe-snow"
+      unicode="&#xF7A3;"
+      horiz-adv-x="448" d=" M224 352C232.8 352 240 359.2 240 368S232.8 384 224 384S208 376.8 208 368S215.2 352 224 352zM112 272C112 280.8 104.8 288 96 288S80 280.8 80 272S87.2 256 96 256S112 263.2 112 272zM320 288C328.8 288 336 295.2 336 304S328.8 320 320 320S304 312.8 304 304S311.2 288 320 288zM363.3 49C414.8 90 448 153 448 224C448 347.7 347.7 448 224 448S0 347.7 0 224C0 153 33.2 90 84.7 49L38.4 -12.8C22.6 -33.9 37.6 -64 64 -64H384C410.4 -64 425.4 -33.9 409.6 -12.8L363.3 49zM32 224C32 329.9 118.1 416 224 416S416 329.9 416 224C416 157.3 381.7 98.4 329.9 64H240V96H320C332.3 96 343.5 103 348.8 114.1C354.1 125.2000000000001 352.6 138.3 345 147.9L325.3 172.5000000000001C326.6 174.2000000000001 327.7 176.0000000000001 328.6 177.9C333.9000000000001 188.9 332.5 202.1 324.9000000000001 211.7000000000001L249.1 308C243 315.7 233.8 320.2 224 320.2S204.9 315.7 198.9 308L122.9 211.7C115.3 202.1 113.9 188.9 119.3 177.9C120.2 176 121.4 174.2 122.6 172.5L103 148C95.3 138.4 93.8 125.2 99.2 114.2C104.5 103 115.7 96 128 96H208V64H118.1C66.3 98.4 32 157.3 32 224zM148 191.9L224 288.2L299.9 192H268.9L320 128H240V216C240 220.4 236.4 224 232 224H216C211.6 224 208 220.4 208 216V128H128L179.1 192L148 191.9zM64 -32L112 32H336L384 -32H64z" />
+    <glyph glyph-name="globe-stand"
+      unicode="&#xF5F6;"
+      horiz-adv-x="448" d=" M360.21 -32H240.14V18.41C290.51 25.02 339.18 47.5599999999999 377.93 86.3C465.1399999999999 173.4599999999999 470.78 310.7099999999999 395.7699999999999 404.91L413.9099999999999 423.03A7.985 7.985 0 0 1 413.9099999999999 434.34L402.58 445.6600000000001A8.015 8.015 0 0 1 391.26 445.6600000000001L351.81 406.23C352.95 405.14 354.17 404.19 355.29 403.08C394.6 363.79 416.25 311.56 416.25 256S394.6 148.21 355.29 108.92C315.98 69.64 263.71 48 208.12 48S100.26 69.64 60.95 108.92C59.84 110.03 58.88 111.26 57.8 112.39L2.35 56.97A7.985 7.985 0 0 1 2.35 45.66L13.67 34.35A8.015 8.015 0 0 1 24.99 34.35L59.13 68.47C102.67 33.85 155.39 16.64 208.13 16.5V-32H88.04C74.78 -32 64.03 -42.74 64.03 -56C64.03 -60.42 67.61 -64 72.03 -64H376.2200000000001C380.6400000000001 -64 384.2200000000001 -60.42 384.2200000000001 -56C384.23 -42.74 373.48 -32 360.2100000000001 -32zM208.12 80C253.19 80 298.26 97.18 332.65 131.55C401.42 200.28 401.42 311.7200000000001 332.65 380.4500000000001C298.26 414.82 253.19 432 208.12 432S117.98 414.82 83.59 380.45C14.82 311.7200000000001 14.82 200.28 83.59 131.55C117.98 97.18 163.05 80 208.12 80zM106.23 357.82C133.45 385.02 169.63 400 208.12 400S282.79 385.02 310.01 357.82C337.22 330.62 352.21 294.46 352.21 256C352.21 217.54 337.22 181.38 310.01 154.18C282.79 126.98 246.61 112 208.12 112S133.45 126.98 106.23 154.18C79.02 181.38 64.03 217.54 64.03 256C64.03 294.4600000000001 79.02 330.62 106.23 357.82z" />
+    <glyph glyph-name="globe"
+      unicode="&#xF0AC;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM441.2 288H358.7C349.7 332.4 334.6 370.2 315.5 397.1C370.5 378.9 415.7 339.2 441.2 288zM336 192C336 169.1 334.4 147.8 331.7 128H164.3C161.6 147.8 160 169.1 160 192S161.6 236.2 164.3 256H331.7000000000001C334.4000000000001 236.2 336.0000000000001 214.9 336.0000000000001 192zM248 408C274.9 408 309.4 363.9 326.1 288H169.9C186.6 363.9 221.1 408 248 408zM180.5 397.1C161.5 370.3 146.3 332.5 137.3 288H54.8C80.3 339.2 125.5 378.9 180.5 397.1zM32 192C32 214.3 35.4 235.8 41.7 256H132.2C129.6 235.5 128 214.2 128 192S129.5 148.5 132.2 128H41.7C35.4 148.2 32 169.7 32 192zM54.8 96H137.3C146.3 51.6 161.4 13.8 180.5 -13.1C125.5 5.1 80.3 44.8 54.8 96zM248 -24C221.1 -24 186.6 20.1 169.9 96H326.1C309.4000000000001 20.1 274.9000000000001 -24 248.0000000000001 -24zM315.5 -13.1C334.5 13.7 349.7 51.5 358.7 96H441.2C415.7 44.8 370.5 5.1 315.5 -13.1zM363.8 128C366.4000000000001 148.5 368 169.8 368 192S366.5 235.5 363.8 256H454.3C460.6 235.8 464 214.3 464 192S460.6 148.2 454.3 128H363.8z" />
+    <glyph glyph-name="golf-ball"
+      unicode="&#xF450;"
+      horiz-adv-x="416" d=" M416 240C416 356.3 320.5 450.3 203.7 448C91.6 445.7 0.9 353.8 0 241.7C-0.5 174.5 31 115 80 76.6V32C80 5.5 101.5 -16 128 -16C135.3 -16 160 -12 160 -32V-58C160 -61.3 162.7 -64 166 -64H186C189.3 -64 192 -61.3 192 -58V-32C192 -5.5 170.5 16 144 16C136.7 16 112 12 112 32V48H304V32C304 12 279.4 16 272 16C245.5 16 224 -5.5 224 -32V-58C224 -61.3 226.7 -64 230 -64H250C253.3 -64 256 -61.3 256 -58V-32C256 -12 280.6 -16 288 -16C314.5 -16 336 5.5 336 32V76.6C384.6 114.6 416 173.5 416 240.0000000000001zM32 240C32 337 111 416 208 416S384 337 384 240C384 169 341.6 107.8 280.9 80H135.1C74.4 107.8 32 169 32 240zM272 225.1C272 206.8 257.2 192 238.9 192C224.5 192 212.6 201.3 208 214.1C234.3 204.7 259.5 229.3 249.9 256C262.7 251.4 272 239.5 272 225.1zM352 209.1C352 190.8 337.2 176 318.9 176C304.5 176 292.6 185.3 288 198.1C314.3 188.7 339.5 213.3 329.9 240C342.7 235.4 352 223.5 352 209.1zM288 145.1C288 126.8 273.2 112 254.9 112C240.5 112 228.6 121.3 224 134.1C250.3 124.7000000000001 275.5 149.3 265.9 176C278.7 171.4 288 159.5 288 145.1z" />
+    <glyph glyph-name="golf-club"
+      unicode="&#xF451;"
+      horiz-adv-x="640" d=" M633.2 441.6L622.4000000000001 446.8C616.4000000000001 449.7 609.3000000000001 447.2 606.4000000000001 441.2L473 167.3C44 247.8 72.8 242.9 63.9 242.9C29.4 242.9 0 214.9 0 178.9V0C0 -35.3 28.7 -64 64 -64H363.1C387.7000000000001 -64 410.1 -49.9 420.8 -27.7L638.8 425.6C641.6999999999999 431.5 639.1999999999999 438.7000000000001 633.1999999999999 441.6zM449.3000000000001 118.6L393.5 4C382.8 -18 360.4 -32 336 -32H64C46.3 -32 32 -17.7 32 0V16H120C124.4 16 128 19.6 128 24V40C128 44.4 124.4 48 120 48H32V112H120C124.4 112 128 115.6 128 120V136C128 140.4 124.4 144 120 144H32V178.9C32 196.6 46.3 210.9 63.9 210.9C68.4 210.9 44.2 215.2 437.9 141.3C448.3 139.4 454 128.1 449.3 118.6z" />
+    <glyph glyph-name="gopuram"
+      unicode="&#xF664;"
+      horiz-adv-x="512" d=" M496 96H480V208C480 216.84 472.84 224 464 224H448V304C448 312.8400000000001 440.84 320 432 320H416V432C416 440.84 408.84 448 400 448S384 440.84 384 432V416H320V432C320 440.84 312.84 448 304 448S288 440.84 288 432V416H224V432C224 440.84 216.84 448 208 448S192 440.84 192 432V416H128V432C128 440.84 120.84 448 112 448S96 440.84 96 432V320H80C71.16 320 64 312.8400000000001 64 304V224H48C39.16 224 32 216.84 32 208V96H16C7.16 96 0 88.84 0 80V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V64H96V-56C96 -60.42 99.58 -64 104 -64H120C124.42 -64 128 -60.42 128 -56V64H384V-56C384 -60.42 387.58 -64 392 -64H408C412.42 -64 416 -60.42 416 -56V64H480V-56C480 -60.42 483.58 -64 488 -64H504C508.42 -64 512 -60.42 512 -56V80C512 88.84 504.84 96 496 96zM128 384H384V320H128V384zM261.3300000000001 256H250.6600000000001C244.7700000000001 256 239.9900000000001 251.22 239.9900000000001 245.33V224H191.9900000000001V288H319.9900000000001V224H271.9900000000001V245.33C272.0000000000001 251.22 267.2200000000001 256 261.3300000000001 256zM96 288H160V224H96V288zM128 96H64V192H128V96zM272 96H240V122.67C240 125.62 242.39 128 245.33 128H266.6600000000001C269.61 128 271.99 125.61 271.99 122.67V96zM352 96H304V122.67C304 143.26 287.25 160 266.67 160H245.3400000000001C224.75 160 208.0100000000001 143.25 208.0100000000001 122.67V96H160.0100000000001V192H352.0100000000001V96zM352 224V288H416V224H352zM448 96H384V192H448V96zM277.3300000000001 32H234.6600000000001C211.1 32 192 12.9 192 -10.67V-56C192 -60.42 195.58 -64 200 -64H216C220.42 -64 224 -60.42 224 -56V-10.67C224 -4.78 228.78 0 234.67 0H277.34C283.23 0 288.01 -4.78 288.01 -10.67V-56C288.01 -60.42 291.59 -64 296.01 -64H312.01C316.43 -64 320.01 -60.42 320.01 -56V-10.67C320 12.9 300.9 32 277.33 32z" />
+    <glyph glyph-name="graduation-cap"
+      unicode="&#xF19D;"
+      horiz-adv-x="640" d=" M612.16 294.01L347.16 379.69C329.35 385.44 310.66 385.44 292.85 379.69L27.85 294.01C10.94 288.54 0 273.62 0 256S10.94 223.46 27.84 217.99L57.55 208.39C54.25 202.21 51.81 195.56 50.22 188.59C39.53 183.41 32 172.68 32 160C32 147.27 39.57 136.48 50.33 131.33L32.28 19.47C30.67 9.48 36.19 0 43.62 0H84.37C91.8 0 97.33 9.48 95.71 19.47L77.67 131.33C88.43 136.48 96 147.27 96 160C96 170.6 90.51 179.54 82.57 185.37C84.06 190.03 86.37 194.23 89.14 198.18L142.61 180.89L128 64C128 28.65 213.96 0 320 0S512 28.65 512 64L497.39 180.89L612.16 218C629.06 223.46 640 238.38 640 256S629.06 288.54 612.16 294.01zM479.48 66.14C468.72 54.81 414.04 32 320 32C225.96 32 171.28 54.81 160.52 66.14L173.61 170.87L292.85 132.32C295.4500000000001 131.48 318.5700000000001 123.09 347.1600000000001 132.32L466.4 170.87L479.48 66.14zM602.28 248.42L337.28 162.74C325.97 159.08 314.03 159.08 302.72 162.74L127.05 219.54L322.94 256.2800000000001C331.63 257.9000000000001 337.35 266.26 335.7199999999999 274.9500000000001C334.0999999999999 283.6500000000001 325.5599999999999 289.3400000000001 317.0599999999999 287.7200000000001L113.2799999999999 249.5200000000001C100.8799999999999 247.2000000000001 89.7699999999999 241.8700000000001 80.1999999999999 234.6900000000001L37.7099999999999 248.4300000000001C29.8599999999999 250.9800000000001 30.2499999999999 261.1700000000001 37.7099999999999 263.5800000000001L302.7099999999999 349.2600000000001C317.8099999999999 354.1400000000001 330.5499999999999 351.4300000000001 337.2699999999999 349.2600000000001L602.2699999999999 263.5800000000001C609.6599999999999 261.1900000000001 610.1799999999998 250.9800000000001 602.2799999999999 248.4200000000001z" />
+    <glyph glyph-name="greater-than-equal"
+      unicode="&#xF532;"
+      horiz-adv-x="384" d=" M32.84 129.05L47.13 100.43A7.986000000000001 7.986000000000001 0 0 1 57.86 96.85L347.57 241.77A7.996000000000001 7.996000000000001 0 0 1 351.99 248.92V261.8300000000001C351.99 264.85 350.29 267.61 347.5900000000001 268.9700000000001L57.87 415.15C53.92 417.13 49.11 415.52 47.14 411.57L32.84 382.95A8.006 8.006 0 0 1 36.42 372.2200000000001L268.87 256L36.42 139.78A8.006 8.006 0 0 1 32.84 129.05zM376 16H8C3.58 16 0 12.42 0 8V-24C0 -28.42 3.58 -32 8 -32H376C380.42 -32 384 -28.42 384 -24V8C384 12.42 380.42 16 376 16z" />
+    <glyph glyph-name="greater-than"
+      unicode="&#xF531;"
+      horiz-adv-x="320" d=" M320 197.83C320 200.85 318.3 203.61 315.6 204.97L25.87 351.15C21.92 353.13 17.11 351.52 15.14 347.57L0.84 318.95A8.006 8.006 0 0 1 4.42 308.2200000000001L236.87 192L4.42 75.78C0.47 73.81 -1.13 69 0.84 65.05L15.13 36.43C17.1 32.48 21.91 30.87 25.86 32.85L315.57 177.77A8.007 8.007 0 0 1 319.99 184.92V197.83z" />
+    <glyph glyph-name="grimace"
+      unicode="&#xF57F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208zM344 176H152C125.5 176 104 154.5 104 128V96C104 69.5 125.5 48 152 48H344C370.5 48 392 69.5 392 96V128C392 154.5 370.5 176 344 176zM176 80H152C143.2 80 136 87.2 136 96V104H176V80zM176 120H136V128C136 136.8 143.2 144 152 144H176V120zM240 80H192V104H240V80zM240 120H192V144H240V120zM304 80H256V104H304V80zM304 120H256V144H304V120zM360 96C360 87.2 352.8 80 344 80H320V104H360V96zM360 120H320V144H344C352.8 144 360 136.8 360 128V120z" />
+    <glyph glyph-name="grin-alt"
+      unicode="&#xF581;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM184.3 192C196.7 210.7 199.4 229.3 200 248C199.5 266.7 196.7 285.3 184.3 304C176.3 316 159.2 315.4 151.6 304C139.2 285.3 136.5 266.7 135.9 248C136.4 229.3 139.2000000000001 210.7 151.6 192C159.7 180 176.8 180.6 184.3 192zM344.3 192C356.7 210.7 359.4000000000001 229.3 360 248C359.5 266.7 356.7 285.3 344.3 304C336.3 316 319.2 315.4 311.6 304C299.2000000000001 285.3 296.5 266.7 295.9000000000001 248C296.4000000000001 229.3 299.2000000000001 210.7 311.6 192C319.7000000000001 180 336.8 180.6 344.3 192zM371.1 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C119.6 128.9 113.7 127.7 109.6 124.1C105.4 120.4 103.4 114.9 104.3 109.3C113.5 54.3 187.5 15.9999999999999 248.1 15.9999999999999S382.6 54.3 391.9000000000001 109.3C392.8 114.8 390.8 120.4 386.6 124.1C382.3 127.8 376.4000000000001 129 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48z" />
+    <glyph glyph-name="grin-beam-sweat"
+      unicode="&#xF583;"
+      horiz-adv-x="504" d=" M277.7 200.3C281.1 199.2 285.1 200.8 287 204L296.5 221C304.2 234.7 315.7 242.6 328 242.6S351.8 234.7 359.5 221L369 204C371.1 200.3 375.2 199.3 378.3 200.3C381.9000000000001 201.4 384.3 204.8 384 208.6C380.7 250.7 351.8 280 328 280S275.3 250.7 272 208.6C271.7 204.9 274.1 201.4 277.7 200.3zM117.7 200.3C121.1 199.2 125.1 200.8 127 204L136.5 221C144.2 234.7 155.7 242.6 168 242.6S191.8 234.7 199.5 221L209 204C211.1 200.3 215.2 199.3 218.3 200.3C221.9 201.4 224.3 204.8 224 208.6C220.7 250.7 191.8 280 168 280S115.3 250.7 112 208.6C111.7 204.9 114.1 201.4 117.7 200.3zM371.1 127.2000000000001C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C119.6 128.9 113.8 127.7 109.6 124.1C105.4 120.4 103.4 114.9 104.3 109.3C113.5 54.3 187.5 15.9999999999999 248.1 15.9999999999999S382.6 54.3 391.9000000000001 109.3C392.8 114.8 390.8 120.4 386.6 124.1C382.3 127.8 376.4000000000001 129 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48zM504 330.7C504 357.9 476 403.6 452.6 437.1C448.8 442.6 440.4 448 432 448C423.6 448 415.2 442.6 411.4 437.2C403 425.2 394.1 411.7 386.1 398C346.6 424.5 299.1 440 248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192C496 221.6 490.5 249.9 481 276.3C495.1 289.9 504 309.2000000000001 504 330.7000000000001zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408C293.7 408 336 393.6 371 369.3C364.4 354.8 360 341.3 360 330.7C360 289.5 392.3 256 432 256C439.4 256 446.3 257.5 453 259.6C460 238.3 464 215.6 464 192C464 72.9 367.1 -24 248 -24zM432 288C409.9 288 392 307.2 392 330.7C392 343.6 407.5 374.5 432 410.6C456.5 374.4 472 343.6 472 330.7C472 307.2 454.1 288 432 288z" />
+    <glyph glyph-name="grin-beam"
+      unicode="&#xF582;"
+      horiz-adv-x="496" d=" M117.7 200.3C121.1 199.2 125.1 200.8 127 204L136.5 221C144.2 234.7 155.7 242.6 168 242.6S191.8 234.7 199.5 221L209 204C211.1 200.3 215.2 199.3 218.3 200.3C221.9 201.4 224.3 204.8 224 208.6C220.7 250.7 191.8 280 168 280S115.3 250.7 112 208.6C111.7 204.9 114.1 201.4 117.7 200.3zM277.7 200.3C281.1 199.2 285.1 200.8 287 204L296.5 221C304.2 234.7 315.7 242.6 328 242.6S351.8 234.7 359.5 221L369 204C371.1 200.3 375.2 199.3 378.3 200.3C381.9000000000001 201.4 384.3 204.8 384 208.6C380.7 250.7 351.8 280 328 280S275.3 250.7 272 208.6C271.7 204.9 274.1 201.4 277.7 200.3zM371.1 127.2000000000001C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C119.6 128.9 113.8 127.7 109.6 124.1C105.4 120.4 103.4 114.9 104.3 109.3C113.5 54.3 187.5 15.9999999999999 248.1 15.9999999999999S382.6 54.3 391.9000000000001 109.3C392.8 114.8 390.8 120.4 386.6 124.1C382.3 127.8 376.4000000000001 129 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="grin-hearts"
+      unicode="&#xF584;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM371.1 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C113.3 130.9 102.3 120.9 104.2 109.3C113.4 54.3 187.4 16 248 16S382.5 54.3 391.8 109.3C393.7 120.9 382.8 130.9 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48zM186.2 176.8C200.5 173.1 213.4 182.3 216.7 194.4L237.2 268.3C241.3 283 238.9 298.7000000000001 230.7 311.5C222.5 324.3 209.1 333 193.9 335.4C168.7 339.5 144.5 324.7 134.6 301.4C109.4 304.4 84.4 290.4 75.5 267.1C70 252.7 70.8 236.8 77.8 223.3C84.7 209.8 97.2 199.9 112 196.1L186.2 176.8zM105.5 255.6C110.7 269.4000000000001 125.9 271.1 134 269L156.8 263.1L163 285.8C166.3 297.7000000000001 177.7 305.5 188.9 303.8C202 301.7000000000001 209.8 289.2000000000001 206.4 276.8L187.7 209.5L120.1 227C108 230.1 100.7 242.9 105.5 255.6zM420.4 267C411.5 290.3 386.3 304.3 361.4 301.3C351.5 324.6 326.7 339.5 302.1 335.3C286.9 332.9 273.5 324.2000000000001 265.3 311.4C257.1 298.6 254.7 282.9 258.8 268.2L279.2 194.4C282.5999999999999 182.1 295.7 173.1 309.7 176.8L383.8999999999999 196A53.47 53.47 0 0 1 418.0999999999999 223.1999999999999C424.9999999999999 236.7 425.8999999999999 252.7 420.3999999999999 267zM375.9 227L308.2 209.5L289.5 276.8C286.1 289.1 293.9 301.7000000000001 307 303.8C320.7 306 330.4 294.8 332.8 285.9L339 263.2000000000001L362 269C374 272.1 386.5 266.2000000000001 390.5 255.6C395.3 242.9000000000001 388 230.1 375.9 227.0000000000001z" />
+    <glyph glyph-name="grin-squint-tears"
+      unicode="&#xF586;"
+      horiz-adv-x="512" d=" M402 241.9C396.4 241.5 391.5 238.2 388.9 233.3C374.3 205 346.5 169.4 312.6 135.5C278.7 101.5 243 73.7 214.8 59.2C209.8 56.7 206.5 51.7 206.1 46.1C205.7 40.4999999999999 208.3 35.2 212.8 31.9C227.1 21.7 244.9 17.2 263.8 17.2C304.8 17.2 351.2 38.2 380.5 67.6C423.3999999999999 110.4 448.5 189.8 416.2 235.3C412.8999999999999 239.8 407.2 242.4 402 241.9zM357.8 90.2000000000001C333 65.5000000000001 292.9 47.1 259.6 49.1C283.7000000000001 65.6 310 87.7000000000001 335.1 112.9C360.2000000000001 138.0000000000001 382.4000000000001 164.3 398.9000000000001 188.4C400.7000000000001 156.2000000000001 382.6 114.9 357.8 90.2000000000001zM207.9 211.8C204.9 214.8 200.6 216 196.5 215L106 192.3C100.3 190.9 96.5 185.6 96.9 179.7C97.4 173.9 102 169.2 107.8 168.7L160.1 163.9L164.9 111.6C165.4 105.8 170.1 101.2 175.9 100.7C184.5 100.3 187.8000000000001 106.9 188.5 109.8L211.1 200.3C212.1 204.5 210.9 208.8 207.9 211.8zM247.6 236.9L338.1 259.5C343.8 260.9 347.6 266.2 347.2000000000001 272.1C346.7000000000001 277.9 342.1 282.6 336.3000000000001 283.1L284.0000000000001 287.9L279.2000000000001 340.2C278.7000000000001 346 274.0000000000001 350.6 268.2000000000001 351.1C262.5000000000001 351.2 257.0000000000001 347.7 255.6000000000001 342L233 251.5C232 247.4 233.2 243.1 236.2 240.1C241.2 235.1 247.5 236.9 247.6 236.9zM491.2 323.4C519.3000000000001 351.6 518.9000000000001 397.7 490.3000000000001 426.3C461.1000000000001 455.5 415.0000000000001 454.6 387.4000000000001 427.1C382.9000000000001 422.6 378.9000000000001 416.2 375.3000000000001 408.6C338.2 429.1 297.2 440 256 440C192.5 440 129 415.8 80.6 367.4C0.7 287.5 -12.4 167 39.6 72.8C31.6 68.9999999999999 25.2 64.9999999999999 20.9 60.6C-7.2 32.4 -6.8 -13.7 21.8 -42.3000000000001C50.3 -70.8000000000001 96.3 -71.5000000000001 124.7 -43.1000000000001C129.2 -38.6000000000001 133.2 -32.2000000000001 136.8 -24.6000000000001C173.8 -45.1000000000001 214.8 -56.0000000000001 256 -56.0000000000001C319.5 -56.0000000000001 383 -31.8000000000001 431.4 16.5999999999999C511.3 96.4999999999999 524.4 216.8999999999999 472.4 311.2C480.4 315 486.8 319.0999999999999 491.2 323.3999999999999zM410 404.5C417.4 411.9 427.4 416 438 416H438.4C449.4 415.9 459.7 411.5 467.6 403.6C483.7 387.5 484.1 361.6 468.4999999999999 346C461.8999999999999 339.4 436.2 329.2 385.2 321.2C393.2 372.2 403.3999999999999 397.9 410 404.5zM102 -20.5C86.3 -36.2 60.5 -35.8 44.4 -19.7S27.9 22.3 43.5 37.9C50.1 44.5000000000001 75.8 54.7 126.8 62.7000000000001C118.8 11.9 108.6 -13.9 102 -20.4999999999999zM408.8 39.3C368 -1.5 313.7 -24 256 -24C217.2 -24 180.2 -13.2 147.6 5.9C153 25.6 157 47.5 159.8 66.8C161 74.8 158.3 82.6999999999999 152.6 88.4999999999999C146.8 94.3 138.9 96.8999999999999 130.9 95.8C107.1 92.4 87 88.3 70.3 83.8C22.2 166.5 32.6 274.1 103.3 344.8C144 385.6 198.3 408 256 408C294.8 408 331.8 397.2 364.4 378.1C359 358.4 355 336.5 352.2 317.2C351 309.2 353.7 301.3 359.4 295.5C364.3 290.6 370.7 288 377.4 288C378.6 288 379.8 288.1 381.1 288.3C404.9 291.7000000000001 425 295.8 441.7 300.3C489.9 217.7 479.5 110 408.8 39.3z" />
+    <glyph glyph-name="grin-squint"
+      unicode="&#xF585;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM118.9 184.2C122.5 180 128.8 178.5 134.2 181.7L214.2 229.7C217.8 231.9 220 235.8 220 240S217.8000000000001 248.1 214.2 250.3L134.2 298.3C129.1 301.3 122.7 300.2000000000001 118.9 295.8C115.1 291.3 115.1 284.8 118.8 280.3L152.4 240L118.8000000000001 199.7C115.0000000000001 195.2 115.1 188.6 118.9 184.2zM361.8 181.7C367.2 178.5 373.5 180 377.1 184.2C380.9000000000001 188.7 380.9000000000001 195.2 377.2000000000001 199.7L343.6 240L377.2000000000001 280.3C381.0000000000001 284.8 380.9000000000001 291.3 377.1 295.8C373.2000000000001 300.2000000000001 366.8 301.2000000000001 361.8 298.3L281.8 250.3C278.2 248.1 276 244.2 276 240S278.2 231.9 281.8 229.7L361.8 181.7zM371.1 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C119.6 128.9 113.7 127.7 109.6 124.1C105.4 120.4 103.4 114.9 104.3 109.3C113.5 54.3 187.5 15.9999999999999 248.1 15.9999999999999S382.6 54.3 391.9000000000001 109.3C392.8 114.8 390.8 120.4 386.6 124.1C382.3 127.8 376.4000000000001 129 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48z" />
+    <glyph glyph-name="grin-stars"
+      unicode="&#xF587;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM371.1 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C113.3 130.9 102.3 120.9 104.2 109.3C113.4 54.3 187.4 16 248 16S382.5 54.3 391.8 109.3C393.7 120.9 382.8 130.9 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48zM410.1 300L374.8 305.1L359 337.2C349.5 356 322.7 356.1 313.1 337.2L297.3 305.1L261.8 300C256.4000000000001 299.2 251.8 296.4 248 292.6C244.2 296.4 239.6 299.2 234.1 300L198.8 305.1L183 337.2C173.5 356 146.7 356.1 137.1 337.2L121.3 305.1L85.8 300C65.6 297 56.2 271.8 71.7 256.3L97.4 231.4L91.3 195.8C87.9 174.4 110.5 159.5 128.2 169.3L160 185.8L191.5 169.5C210 159.3 232.1 174.7 228.7000000000001 196.1L222.6000000000001 231.5L248 256L273.4 231.4L267.3 195.8C263.9 174.4 286.5 159.5 304.2 169.3L336 185.8L367.5 169.5C386 159.3 408.1 174.7 404.7 196.1L398.5999999999999 231.5L424.4999999999999 256.6C439.3999999999999 271.5 430.7999999999999 296.9 410.0999999999999 300zM188.2 242.5L194.9 203.6L160 221.8L125.1 203.7L131.8 242.6L103.3 270.3L142.5 275.9L160 311.4L177.5 275.9L216.7 270.3L188.2 242.5zM364.2000000000001 242.5L370.9000000000001 203.6L336.0000000000001 221.8L301.1000000000001 203.7L307.8000000000001 242.6L279.3000000000001 270.3L318.5000000000001 275.9L336.0000000000001 311.4L353.5000000000001 275.9L392.7000000000001 270.3L364.2000000000001 242.5z" />
+    <glyph glyph-name="grin-tears"
+      unicode="&#xF588;"
+      horiz-adv-x="640" d=" M349.7 200.3C353.1 199.2 357.1 200.8 359 204L368.5 221C376.2 234.7 387.7 242.6 400 242.6S423.8 234.7 431.5 221L441 204C443.1 200.3 447.2 199.3 450.3 200.3C453.9 201.4 456.3 204.8 456 208.6C452.7 250.7 423.8 280 400 280S347.3 250.7 344 208.6C343.7 204.9 346.1 201.4 349.7 200.3zM443.1 127.2000000000001C412.9 117.5 368 112 320 112S227.1 117.5 196.9 127.2C191.6 128.9 185.8 127.7 181.6 124.1C177.4 120.4 175.3 114.9 176.3 109.3C185.6 54.3 259.5 15.9999999999999 320.1 15.9999999999999S454.6 54.3 463.9 109.3C464.8 114.8 462.8 120.4 458.6 124.1C454.3 127.8 448.5 129 443.1 127.2zM320 48C285 48 243 64.3 221.5 88.3C279 77.5 361.1 77.5 418.6 88.3C397 64.3 355 48 320 48zM189.7 200.3C193.1 199.2 197.1 200.8 199 204L208.5 221C216.2 234.7 227.7 242.6 240 242.6S263.8 234.7 271.5 221L281 204C283.1 200.3 287.2 199.3 290.3 200.3C293.9000000000001 201.4 296.3 204.8 296 208.6C292.7 250.7 263.8 280 240 280S187.3 250.7 184 208.6C183.7 204.9 186.1 201.4 189.7 200.3zM619.2 188.6C610 197.8 592.4000000000001 205.8 566.8000000000001 212.5C556.3 339.9 450 440 320 440S83.7 339.9 73.2 212.6C47.6 205.9 30 197.9 20.8 188.7C-7.3 160.5 -6.9 114.4 21.7 85.8C33.5 73.9999999999999 65.9 52.9 104.4 71.1C146.9 -4.4 227.1 -55.9 319.9 -55.9S493 -4.4 535.4 71.1C573.8 52.9999999999999 606.1999999999999 73.9 618.1 85.8C646.9 114.3 647.3000000000001 160.5 619.2 188.6zM102 107.5C86.5 92 60.6 92 44.3 108.4C28.2 124.5 27.8 150.4 43.4 166C50 172.6 75.7 182.8 126.7 190.8C118.8 139.8 108.6 114.1 102 107.5zM320 -24C237.4 -24 165.9 22.9 129.6 91.2C145.2 113.4 154.6 158.7 159.7 194.8C160.9 202.8 158.2 210.7 152.5 216.5C146.7 222.3 138.8 224.9 130.8 223.8C122.1 222.5 114 221.2 106.2 219.8C119.9 325.7 210.3 408 320 408S520.1 325.7 533.8 219.7C526 221.1 517.9 222.5 509.1999999999999 223.7C501.3 224.8 493.3 222.2 487.4999999999999 216.4C481.6999999999999 210.6 479.1 202.8 480.3 194.7C485.4999999999999 158.6 494.8 113.3 510.4 91.1C474.1 22.9 402.6 -24 320 -24zM595.7 108.4C579.3000000000001 91.9 553.4000000000001 92.2 538.1 107.6C531.5 114.2 521.3000000000001 139.9 513.3000000000001 190.9C564.3000000000001 182.9 590.0000000000001 172.7 596.6 166.1C612.2 150.3 611.8000000000001 124.5 595.7 108.4z" />
+    <glyph glyph-name="grin-tongue-squint"
+      unicode="&#xF58A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192C0 70.9 86.8 -29.8 201.6 -51.5C215.4 -59.2 231.1 -64 248 -64S280.6 -59.2 294.4 -51.5C409.2 -29.8 496 70.9 496 192C496 329 385 440 248 440zM312 32C312 -3.6 282.9 -32.5 247.1 -32C212 -31.5 184 -2.2 184 33V64C202.9 73.5 206.7 76.2 216 76.2H216.3C226.1 76.1 234.5 69.2 236.7 59.6L239.4 47.9999999999999C241.5 38.8 254.6 38.8 256.7 47.9999999999999L259.4 59.6C261.6 69.2 270 76.1 279.8 76.2H280.1C289.3 76.2 293 73.5 312.1 64V32zM336.6 -4.8C341.3 6.5 344 18.9 344 32V45.6C368.7 61.7000000000001 387.4 83.6 391.8 109.4C393.8 121.0000000000001 382.8 131.0000000000001 371.1 127.3C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C113.3 130.9 102.3 120.9 104.2 109.3C108.5 83.5 127.2 61.7 152 45.5V32C152 19 154.7 6.6 159.4 -4.8C84.4 29.1 32 104.5 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192C464 104.5 411.6 29.1 336.6 -4.8zM377.1 295.8C373.3 300.2000000000001 366.9000000000001 301.3 361.8 298.3L281.8 250.3C278.2 248.1 276 244.2 276 240S278.2 231.9 281.8 229.7L361.8 181.7C367.2 178.5 373.5 180 377.1 184.2C380.9000000000001 188.7 380.9000000000001 195.2 377.2000000000001 199.7L343.6 240L377.2000000000001 280.3C381.0000000000001 284.8 380.9000000000001 291.4 377.1 295.8zM214.2 250.3L134.2 298.3C129.2 301.3 122.8 300.3 118.9 295.8C115.1 291.3 115.1 284.8 118.8 280.3L152.4 240L118.8000000000001 199.7C115.0000000000001 195.2 115.1 188.7 118.9 184.2C122.5 180 128.8000000000001 178.5 134.2000000000001 181.7L214.2000000000001 229.7C217.8000000000001 231.9 220.0000000000001 235.8 220.0000000000001 240S217.8000000000001 248.1 214.2000000000001 250.3z" />
+    <glyph glyph-name="grin-tongue-wink"
+      unicode="&#xF58B;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192C0 70.9 86.8 -29.8 201.6 -51.5C215.4 -59.2 231.1 -64 248 -64S280.6 -59.2 294.4 -51.5C409.2 -29.8 496 70.9 496 192C496 329 385 440 248 440zM312 32C312 -3.6 282.9 -32.5 247.1 -32C212 -31.5 184 -2.2 184 33V64C202.9 73.5 206.7 76.2 216 76.2H216.3C226.1 76.1 234.5 69.2 236.7 59.6L239.4 47.9999999999999C241.5 38.8 254.6 38.8 256.7 47.9999999999999L259.4 59.6C261.6 69.2 270 76.1 279.8 76.2H280.1C289.3 76.2 293 73.5 312.1 64V32zM336.6 -4.8C341.3 6.5 344 18.9 344 32V45.6C368.7 61.7000000000001 387.4 83.6 391.8 109.4C393.8 121.0000000000001 382.8 131.0000000000001 371.1 127.3C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C113.3 130.9 102.3 120.9 104.2 109.3C108.5 83.5 127.2 61.7 152 45.5V32C152 19 154.7 6.6 159.4 -4.8C84.4 29.1 32 104.5 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192C464 104.5 411.6 29.1 336.6 -4.8zM344 320C299.8 320 264 284.2 264 240S299.8 160 344 160S424 195.8 424 240S388.2 320 344 320zM344 192C317.5 192 296 213.5 296 240S317.5 288 344 288S392 266.5 392 240S370.5 192 344 192zM152 268C126.3 268 96.1 251.1 92.2 225.9C91.4 220.9 93.9 215.9 98.3 213.5C102.7 211.1 108.2 211.7 112 215.1L121.5 223.6C136.3 236.8 167.7 236.8 182.5 223.6L192 215.1C194.5 212.9 200 210.4 205.7 213.5C210.1 215.9 212.6 220.9 211.8 225.9C207.9 251.1 177.7 268 152 268zM344 264C330.7 264 320 253.3 320 240S330.7 216 344 216S368 226.7 368 240S357.3 264 344 264z" />
+    <glyph glyph-name="grin-tongue"
+      unicode="&#xF589;"
+      horiz-adv-x="496" d=" M168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM248 440C111 440 0 329 0 192C0 70.9 86.8 -29.8 201.6 -51.5C215.4 -59.2 231.1 -64 248 -64S280.6 -59.2 294.4 -51.5C409.2 -29.8 496 70.9 496 192C496 329 385 440 248 440zM312 32C312 -3.6 282.9 -32.5 247.1 -32C212 -31.5 184 -2.2 184 33V64C202.9 73.5 206.7 76.2 216 76.2H216.3C226.1 76.1 234.5 69.2 236.7 59.6L239.4 47.9999999999999C241.5 38.8 254.6 38.8 256.7 47.9999999999999L259.4 59.6C261.6 69.2 270 76.1 279.8 76.2H280.1C289.3 76.2 293 73.5 312.1 64V32zM336.6 -4.8C341.3 6.5 344 18.9 344 32V45.6C368.7 61.7000000000001 387.4 83.6 391.8 109.4C393.8 121.0000000000001 382.8 131.0000000000001 371.1 127.3C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C113.3 130.9 102.3 120.9 104.2 109.3C108.5 83.5 127.2 61.7 152 45.5V32C152 19 154.7 6.6 159.4 -4.8C84.4 29.1 32 104.5 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192C464 104.5 411.6 29.1 336.6 -4.8zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="grin-wink"
+      unicode="&#xF58C;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3S59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9S138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9S436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM288 215L297.5 223.5C312.3 236.7 343.7 236.7 358.5 223.5L368 215C376.5 207.6 389.6 214.7 387.8 225.8C383.8 251 353.6 267.9 327.9000000000001 267.9S272 251 268 225.8C266.4 214.7 279.6 207.6 288 215zM376.1 128C374.5 128 372.8 127.7 371.2000000000001 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C123.2 127.7 121.6 128 120 128C110.6 128 102.6 119.4 104.3 109.3C113.5 54.3 187.5 16 248.1 16S382.6 54.3 391.9000000000001 109.3C393.5000000000001 119.5 385.5000000000001 128 376.1 128zM322.6 69.4C300.4 56 272.5 48 248 48S195.6 56 173.4 69.4C164 75.1 156.1 81.5 149.9 88.2C178.5 82.9 212.6 80 247.9 80C283.3 80 317.3 82.9 345.9 88.2C339.9 81.5 332 75.1 322.6 69.4z" />
+    <glyph glyph-name="grin"
+      unicode="&#xF580;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM371.1 127.2C340.9 117.5 296 112 248 112S155.1 117.5 124.9 127.2C119.6 128.9 113.8 127.7 109.6 124.1C105.4 120.4 103.4 114.9 104.3 109.3C113.5 54.3 187.5 15.9999999999999 248.1 15.9999999999999S382.6 54.3 391.9000000000001 109.3C392.8 114.8 390.8 120.4 386.6 124.1C382.3 127.8 376.4000000000001 129 371.1 127.2zM248 48C213 48 171 64.3 149.5 88.3C207 77.5 289.1 77.5 346.6 88.3C325 64.3 283 48 248 48zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208z" />
+    <glyph glyph-name="grip-horizontal"
+      unicode="&#xF58D;"
+      horiz-adv-x="448" d=" M424 352H344C330.78 352 320 341.23 320 328V248C320 234.77 330.78 224 344 224H424C437.2200000000001 224 448 234.77 448 248V328C448 341.23 437.2200000000001 352 424 352zM416 256H352V320H416V256zM264 352H184C170.78 352 160 341.23 160 328V248C160 234.77 170.78 224 184 224H264C277.2200000000001 224 288 234.77 288 248V328C288 341.23 277.2200000000001 352 264 352zM256 256H192V320H256V256zM104 352H24C10.78 352 0 341.23 0 328V248C0 234.77 10.78 224 24 224H104C117.22 224 128 234.77 128 248V328C128 341.23 117.22 352 104 352zM96 256H32V320H96V256zM424 160H344C330.78 160 320 149.23 320 136V56C320 42.77 330.78 32 344 32H424C437.2200000000001 32 448 42.77 448 56V136C448 149.23 437.2200000000001 160 424 160zM416 64H352V128H416V64zM264 160H184C170.78 160 160 149.23 160 136V56C160 42.77 170.78 32 184 32H264C277.2200000000001 32 288 42.77 288 56V136C288 149.23 277.2200000000001 160 264 160zM256 64H192V128H256V64zM104 160H24C10.78 160 0 149.23 0 136V56C0 42.77 10.78 32 24 32H104C117.22 32 128 42.77 128 56V136C128 149.23 117.22 160 104 160zM96 64H32V128H96V64z" />
+    <glyph glyph-name="grip-lines-vertical"
+      unicode="&#xF7A5;"
+      horiz-adv-x="256" d=" M192 -24V408C192 412.4 188.4 416 184 416H168C163.6 416 160 412.4 160 408V-24C160 -28.4 163.6 -32 168 -32H184C188.4 -32 192 -28.4 192 -24zM96 -24V408C96 412.4 92.4 416 88 416H72C67.6 416 64 412.4 64 408V-24C64 -28.4 67.6 -32 72 -32H88C92.4 -32 96 -28.4 96 -24z" />
+    <glyph glyph-name="grip-lines"
+      unicode="&#xF7A4;"
+      horiz-adv-x="448" d=" M440 256H8C3.6 256 0 252.4 0 248V232C0 227.6 3.6 224 8 224H440C444.4 224 448 227.6 448 232V248C448 252.4 444.4 256 440 256zM440 160H8C3.6 160 0 156.4 0 152V136C0 131.6 3.6 128 8 128H440C444.4 128 448 131.6 448 136V152C448 156.4 444.4 160 440 160z" />
+    <glyph glyph-name="grip-vertical"
+      unicode="&#xF58E;"
+      horiz-adv-x="320" d=" M104 416H24C10.78 416 0 405.23 0 392V312C0 298.77 10.78 288 24 288H104C117.22 288 128 298.77 128 312V392C128 405.23 117.22 416 104 416zM96 320H32V384H96V320zM104 256H24C10.78 256 0 245.23 0 232V152C0 138.77 10.78 128 24 128H104C117.22 128 128 138.77 128 152V232C128 245.23 117.22 256 104 256zM96 160H32V224H96V160zM104 96H24C10.78 96 0 85.23 0 72V-8C0 -21.23 10.78 -32 24 -32H104C117.22 -32 128 -21.23 128 -8V72C128 85.23 117.22 96 104 96zM96 0H32V64H96V0zM296 416H216C202.78 416 192 405.23 192 392V312C192 298.77 202.78 288 216 288H296C309.2200000000001 288 320 298.77 320 312V392C320 405.23 309.2200000000001 416 296 416zM288 320H224V384H288V320zM296 256H216C202.78 256 192 245.23 192 232V152C192 138.77 202.78 128 216 128H296C309.2200000000001 128 320 138.77 320 152V232C320 245.23 309.2200000000001 256 296 256zM288 160H224V224H288V160zM296 96H216C202.78 96 192 85.23 192 72V-8C192 -21.23 202.78 -32 216 -32H296C309.2200000000001 -32 320 -21.23 320 -8V72C320 85.23 309.2200000000001 96 296 96zM288 0H224V64H288V0z" />
+    <glyph glyph-name="guitar"
+      unicode="&#xF7A6;"
+      horiz-adv-x="512" d=" M160 160C124.7 160 96 131.3 96 96S124.6 32 160 32C195.3 32 224 60.7 224 96S195.4 160 160 160zM160 64C142.4 64 128 78.4 128 96S142.4 128 160 128S192 113.6 192 96S177.6 64 160 64zM502.6 393.4L457.4 438.6C451.1 444.9 443 448 434.8 448C426.6 448 418.4000000000001 444.9 412.2 438.6L344.3 370.7C336 362.4 333.8 350.8 336.5 340.2L300 303.6C280.1 314.1 259 319.9 238.8 319.9C212.2 319.9 187.2 310.9 168.7 292.3C158.3 281.9 151 269.5 146.6 255.8C140.1 235.5 121.3 220.2 100.6 218.2C74.7 215.8 50.7 205.7 32.3 187.2000000000001C-17.3 137.6 -8.5 48.2 52 -12.3C86.2 -46.4999999999999 129.5 -64.1999999999999 169.7000000000001 -64.1999999999999C200.7000000000001 -64.1999999999999 229.9000000000001 -53.6999999999999 251.5000000000001 -32.0999999999999C270.0000000000001 -13.5999999999999 280.1000000000001 10.3000000000001 282.5000000000001 36.2000000000001C284.4000000000001 56.8000000000001 299.8000000000001 75.6000000000001 320.1000000000001 82.2000000000001C333.7000000000001 86.6000000000001 346.2000000000001 93.9000000000001 356.6000000000001 104.3000000000001C389.3000000000001 137.0000000000001 391.8000000000001 189.5000000000001 368.0000000000001 235.7000000000002L404.5000000000001 272.2000000000002C415.1000000000001 269.5000000000001 426.7000000000001 271.8000000000002 435.0000000000001 280.0000000000001L502.9000000000001 347.9000000000002C509.1000000000001 354.1000000000002 512.3000000000001 362.3000000000002 512.3000000000001 370.5000000000001C512.0000000000001 378.9000000000002 508.9000000000001 387.1000000000002 502.6000000000001 393.4000000000002zM333.8 127.2C327.3 120.7 319.4000000000001 115.9 310.1 113C277.6 102.5 253.6 73 250.5000000000001 39.6C248.7 20.1 241.1 3.3 228.7 -9.1C209.9 -27.9999999999999 186.2 -31.9999999999999 169.6 -31.9999999999999C136.2 -31.9999999999999 101.5 -16.4999999999999 74.5 10.5000000000001C26.5 58.5000000000001 17.7 127.7000000000001 54.8 164.8000000000001C67.2 177.2000000000001 84.1 184.7000000000001 103.5 186.6000000000001C136.9 189.8000000000001 166.4 213.7000000000001 176.9 246.2000000000001C179.9 255.4000000000001 184.7000000000001 263.4000000000001 191.1 269.9000000000001C206.1 284.9000000000001 225.2 288.1 238.6 288.1C251.1 288.1 263.8 285.1 276 280.0000000000001L208.4 212.4000000000001C202.2 206.2000000000001 202.2 196.0000000000001 208.4 189.8000000000001L253.6 144.5000000000001C259.8 138.3000000000001 270 138.3000000000001 276.2000000000001 144.5000000000001L344.0000000000001 212.3000000000001C347.9000000000001 202.9000000000001 350.4000000000001 193.2000000000001 351.4000000000001 183.4000000000001C353.8 160.8000000000001 347.5000000000001 140.8000000000001 333.8 127.2000000000001zM480 370.7L412.1 302.9L394.4000000000001 307.4L265 178.4L242.4 201L371.3 330.4L366.8 348.1L434.7 416L480 370.7z" />
+    <glyph glyph-name="h-square"
+      unicode="&#xF0FD;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM336 308V76C336 69.373 330.627 64 324 64H316C309.373 64 304 69.373 304 76V176H144V76C144 69.373 138.627 64 132 64H124C117.373 64 112 69.373 112 76V308C112 314.627 117.373 320 124 320H132C138.627 320 144 314.627 144 308V208H304V308C304 314.627 309.373 320 316 320H324C330.627 320 336 314.627 336 308z" />
+    <glyph glyph-name="h1"
+      unicode="&#xF313;"
+      horiz-adv-x="608" d=" M224.121 333.925V340C224.121 346.627 229.494 352 236.121 352H330.2970000000001C336.9240000000001 352 342.2970000000001 346.627 342.2970000000001 340V333.925C342.2970000000001 327.298 336.9240000000001 321.925 330.2970000000001 321.925H300.9430000000001V62.075H330.2970000000001C336.9240000000001 62.075 342.2970000000001 56.702 342.2970000000001 50.075V44C342.2970000000001 37.373 336.9240000000001 32 330.2970000000001 32H236.1210000000001C229.4940000000001 32 224.1210000000001 37.373 224.1210000000001 44V50.075C224.1210000000001 56.702 229.4940000000001 62.075 236.1210000000001 62.075H265.475V176.738H86.534V62.075H115.888C122.515 62.075 127.888 56.702 127.888 50.075V44C127.888 37.373 122.515 32 115.888 32H21.711C15.084 32 9.711 37.373 9.711 44V50.075C9.711 56.702 15.084 62.075 21.711 62.075H51.065V321.925H21.711C15.084 321.925 9.711 327.298 9.711 333.925V340C9.711 346.627 15.084 352 21.711 352H115.888C122.515 352 127.888 346.627 127.888 340V333.925C127.888 327.298 122.515 321.925 115.888 321.925H86.534V207.711H265.475V321.925H236.1210000000001C229.4940000000001 321.925 224.1210000000001 327.298 224.1210000000001 333.925zM509.59 352H494.942A12 12 0 0 1 486.4839999999999 348.512L424.974 287.389C420.3 282.7440000000001 420.245 275.199 424.8519999999999 270.488L430.628 264.581C435.298 259.805 442.9699999999999 259.762 447.693 264.485L474.2299999999999 291.022C480.7669999999999 297.326 484.8189999999999 302.221 487.2299999999999 305.527C487.1219999999999 302.298 487.0199999999999 298.092 487.0199999999999 293.812V63.873H428C421.373 63.873 416 58.5 416 51.873V44C416 37.373 421.373 32 428 32H579.262C585.8889999999999 32 591.262 37.373 591.262 44V51.873C591.262 58.5 585.8889999999999 63.873 579.262 63.873H521.59V340C521.59 346.627 516.217 352 509.59 352z" />
+    <glyph glyph-name="h2"
+      unicode="&#xF314;"
+      horiz-adv-x="608" d=" M435.784 63.736H588C594.627 63.736 600 58.363 600 51.736V44C600 37.373 594.627 32 588 32H410.2080000000001C404.031 32 398.8710000000001 36.687 398.2630000000001 42.834C397.927 46.232 397.74 49.872 397.74 54.134C397.74 165.797 558.865 180.6710000000001 558.865 264.045C558.865 298.4460000000001 532.814 322.473 495.513 322.473C469.929 322.473 446.7050000000001 307.569 432.2220000000001 288.275C428.3610000000001 283.131 421.2070000000001 281.815 415.8710000000001 285.406L408.7280000000001 290.214C403.2060000000001 293.9310000000001 401.8030000000001 301.406 405.5120000000001 306.933C424.329 334.975 458.799 356 497.303 356C558.135 356 595.076 316.405 595.076 265.835C595.076 159.922 438.774 144.065 435.784 63.736zM236.121 321.925H265.475V207.711H86.534V321.925H115.888C122.515 321.925 127.888 327.298 127.888 333.925V340C127.888 346.627 122.515 352 115.888 352H21.711C15.084 352 9.711 346.627 9.711 340V333.925C9.711 327.298 15.084 321.925 21.711 321.925H51.065V62.075H21.711C15.084 62.075 9.711 56.702 9.711 50.075V44C9.711 37.373 15.084 32 21.711 32H115.888C122.515 32 127.888 37.373 127.888 44V50.075C127.888 56.702 122.515 62.075 115.888 62.075H86.534V176.738H265.475V62.075H236.1210000000001C229.4940000000001 62.075 224.1210000000001 56.702 224.1210000000001 50.075V44C224.1210000000001 37.373 229.4940000000001 32 236.1210000000001 32H330.2970000000001C336.9240000000001 32 342.2970000000001 37.373 342.2970000000001 44V50.075C342.2970000000001 56.702 336.9240000000001 62.075 330.2970000000001 62.075H300.9430000000001V321.925H330.2970000000001C336.9240000000001 321.925 342.2970000000001 327.298 342.2970000000001 333.925V340C342.2970000000001 346.627 336.9240000000001 352 330.2970000000001 352H236.1210000000001C229.4940000000001 352 224.1210000000001 346.627 224.1210000000001 340V333.925C224.1210000000001 327.298 229.4940000000001 321.925 236.1210000000001 321.925z" />
+    <glyph glyph-name="h3"
+      unicode="&#xF315;"
+      horiz-adv-x="608" d=" M600 128.458C600 72.126 553.71 28 494.617 28C457.881 28 422.339 44.619 400.1040000000001 64.905C395.451 69.15 394.8950000000001 76.278 398.8060000000001 81.215L405.1330000000001 89.199C409.4160000000001 94.6039999999999 417.3780000000001 95.3149999999999 422.5100000000001 90.708C441.2940000000001 73.841 467.948 61.526 494.1700000000001 61.526C531.3380000000001 61.526 564.2350000000001 89.002 564.2350000000001 127.563C564.2350000000001 169.555 528.5820000000001 192.705 487.0090000000001 192.705H472.2090000000001A12 12 0 0 0 461.1240000000001 200.109L458.4250000000001 206.618A12.001000000000001 12.001000000000001 0 0 0 460.3860000000001 219.009L535.1740000000001 306.543C540.45 312.6520000000001 545.5980000000001 317.948 548.7540000000001 321.0950000000001C544.4840000000002 320.711 537.4150000000001 320.2630000000001 527.7380000000002 320.2630000000001H419.585C412.958 320.2630000000001 407.585 325.636 407.585 332.2630000000001V340C407.585 346.627 412.958 352 419.585 352H583.524C590.151 352 595.524 346.627 595.524 340V333.154A12 12 0 0 0 592.587 325.289L503.659 222.81C555.885 218.285 600 186.591 600 128.458zM236.121 321.925H265.475V207.711H86.534V321.925H115.888C122.515 321.925 127.888 327.298 127.888 333.925V340C127.888 346.627 122.515 352 115.888 352H21.711C15.084 352 9.711 346.627 9.711 340V333.925C9.711 327.298 15.084 321.925 21.711 321.925H51.065V62.075H21.711C15.084 62.075 9.711 56.702 9.711 50.075V44C9.711 37.373 15.084 32 21.711 32H115.888C122.515 32 127.888 37.373 127.888 44V50.075C127.888 56.702 122.515 62.075 115.888 62.075H86.534V176.738H265.475V62.075H236.1210000000001C229.4940000000001 62.075 224.1210000000001 56.702 224.1210000000001 50.075V44C224.1210000000001 37.373 229.4940000000001 32 236.1210000000001 32H330.2970000000001C336.9240000000001 32 342.2970000000001 37.373 342.2970000000001 44V50.075C342.2970000000001 56.702 336.9240000000001 62.075 330.2970000000001 62.075H300.9430000000001V321.925H330.2970000000001C336.9240000000001 321.925 342.2970000000001 327.298 342.2970000000001 333.925V340C342.2970000000001 346.627 336.9240000000001 352 330.2970000000001 352H236.1210000000001C229.4940000000001 352 224.1210000000001 346.627 224.1210000000001 340V333.925C224.1210000000001 327.298 229.4940000000001 321.925 236.1210000000001 321.925z" />
+    <glyph glyph-name="hammer-war"
+      unicode="&#xF6E4;"
+      horiz-adv-x="384" d=" M352.07 416C350.32 416 348.54 415.86 346.74 415.56L240 397.77V432C240 440.84 232.84 448 224 448H160C151.16 448 144 440.84 144 432V397.77L37.26 415.56C35.47 415.86 33.68 416 31.93 416C14.64 416 0 401.95 0 383.99V192.01C0 174.05 14.64 160 31.94 160C33.69 160 35.47 160.14 37.27 160.44L144 178.23V-48C144 -56.84 151.16 -64 160 -64H224C232.84 -64 240 -56.84 240 -48V178.23L346.74 160.44C348.5300000000001 160.14 350.31 160 352.07 160C369.37 160 384.01 174.05 384.01 192.01V383.99C384 401.95 369.36 416 352.07 416zM176 416H208V392.43L192 389.76L176 392.43V416zM208 -32H176V183.57L192 186.24L208 183.57V-32zM352 192.01L197.26 217.8L192 218.68L186.74 217.8L32 192.01V383.99L186.74 358.2L192 357.32L197.26 358.2L352 383.99V192.01z" />
+    <glyph glyph-name="hammer"
+      unicode="&#xF6E3;"
+      horiz-adv-x="576" d=" M573.65 247.08L562.31 258.39C559.18 261.51 554.0999999999999 261.51 550.9699999999999 258.39L533.9599999999999 241.42L480.9799999999999 294.2800000000001C486.6199999999999 315.5900000000001 481.3399999999999 339.1800000000001 464.5899999999999 355.8900000000001L419.2299999999999 401.1400000000001C387.92 432.38 346.88 448 305.84 448C264.8 448 223.75 432.38 192.44 401.14L261.1 332.64C256.68 315.93 259.22 297.94 268.5 282.8400000000001L21.47 52.74C-6.48 26.7 -7.24 -17.27 19.8 -44.25C33.02 -57.44 50.32 -64 67.59 -64C85.64 -64 103.68 -56.83 117.01 -42.58L350.14 206.56C362.98 201.5 376.98 200.26 390.26 203.76L443.24 150.9L426.23 133.93A7.985 7.985 0 0 1 426.23 122.62L437.57 111.31C440.7 108.1899999999999 445.78 108.1899999999999 448.91 111.31L573.65 235.76A7.997 7.997 0 0 1 573.65 247.08zM93.57 -20.74C86.78 -28 77.55 -32 67.59 -32C58.11 -32 49.19 -28.31 42.48 -21.62C35.61 -14.76 31.91 -5.65 32.08 4.05C32.25 13.75 36.25 22.73 43.36 29.35L289.73 258.8200000000001L323.5800000000001 225.05L93.57 -20.74zM465.92 173.54L412.94 226.39L399.9 239.4L382.07 234.7C370.77 231.72 359.23 234.73 351.2 242.74L300.17 293.65C292.14 301.66 289.13 313.18 292.11 324.45L296.82 342.24L283.7799999999999 355.25L240.64 398.3C260.18 409.84 282.5399999999999 416 305.8399999999999 416C340.1099999999999 416 372.32 402.68 396.56 378.51L441.92 333.25C449.95 325.24 452.96 313.72 449.98 302.45L445.27 284.66L458.31 271.65L511.29 218.79L465.92 173.54z" />
+    <glyph glyph-name="hamsa"
+      unicode="&#xF665;"
+      horiz-adv-x="512" d=" M256 120C242.75 120 232 109.26 232 96S242.75 72 256 72S280 82.74 280 96S269.25 120 256 120zM451.95 224H416V352C416 387.29 387.29 416 352 416C338.84 416 326.59 412.01 316.4 405.16C307.65 430.09 283.88 448 256 448S204.35 430.09 195.6 405.16A63.602999999999994 63.602999999999994 0 0 1 160 416C124.71 416 96 387.29 96 352V224H60.06C18.96 224 0.05 186.69 0 160C-0.03 144.82 5.04 129.88 14.79 117.94L104.6 7.9C141.93 -37.8 197.12 -64 256.01 -64S370.09 -37.79 407.41 7.89L497.21 117.93C506.95 129.87 512.02 144.81 512 160C511.95 186.76 492.69 224 451.95 224zM472.43 138.17L385.05 31.1C360.31 0.81 326.38 -21.54 287.98 -28.9299999999999C227.18 -40.6399999999999 167.3 -18.2599999999999 129.39 28.14L39.59 138.1700000000001C31.99 147.4800000000001 29.94 161.0600000000001 34.4 172.7500000000001C38.81 184.44 48.9 192 60.06 192H128V350.05C128 366.01 138.8 380.89 154.53 383.54C174.52 386.9 192 371.39 192 352V232C192 227.58 195.58 224 200 224H216C220.42 224 224 227.58 224 232V382.05C224 398.01 234.8 412.89 250.53 415.54C270.52 418.9 288 403.39 288 384V232C288 227.58 291.58 224 296 224H312C316.42 224 320 227.58 320 232V350.05C320 366.01 330.8 380.89 346.53 383.54C366.52 386.9 384 371.39 384 352V192H451.95C463.11 192 473.2 184.44 477.62 172.75C482.08 161.06 480.03 147.48 472.43 138.17zM256 176C237.21 176 198.04 174.18 143.88 106.14C139.29 100.37 139.29 91.63 143.88 85.87C198.07 17.78 237.24 16 256 16C274.79 16 313.96 17.82 368.12 85.87C372.71 91.64 372.71 100.38 368.12 106.14C313.93 174.22 274.76 176 256 176zM256 48C211.82 48 176 96 176 96S211.82 144 256 144S336 96 336 96S300.18 48 256 48z" />
+    <glyph glyph-name="hand-heart"
+      unicode="&#xF4BC;"
+      horiz-adv-x="448" d=" M392 336C383.4 336 375.3 334.1 368 330.6V360C368 390.9 342.9 416 312 416C302.3 416 293.2 413.5 285.3 409.2C278 431.7 256.9 448 232 448S186 431.7 178.7 409.2C170.8 413.5 161.7 416 152 416C121.1 416 96 390.9 96 360V207.2C84.5 219 53.9 234.9 23.9 213.9C-1.4 196.2 -7.6 161.2 10.1 135.9L123.8 -35.4C135.7 -53.3 155.6 -64 177.1 -64H357.7000000000001C388.1 -64 414.5000000000001 -42.4 420.5000000000001 -12.6L441.1000000000001 90.6C445.6000000000001 113.3 447.9000000000001 136.5 447.9000000000001 159.6V280C448.0000000000001 310.9 422.9000000000001 336 392.0000000000001 336zM416 159.7C416 138.6 413.9 117.6 409.8 96.9L389.2 -6.3C386.2 -21.3 373.1 -32 357.8 -32H177.2C166.5 -32 156.5 -26.6 150.5 -17.7L36.3 154.2C28.7 165.1 31.3 180 42.2 187.6C58 198.7 72.2 186.6 75.6 181.7L113.4 127.3C117.9 120.9 128 124 128 131.9V360C128 373.3 138.7 384 152 384S176 373.3 176 360V200C176 195.6 179.6 192 184 192H200C204.4 192 208 195.6 208 200V392C208 405.3 218.7 416 232 416S256 405.3 256 392V200C256 195.6 259.6 192 264 192H280C284.4 192 288 195.6 288 200V360C288 373.3 298.7 384 312 384S336 373.3 336 360V200C336 195.6 339.6 192 344 192H360C364.4 192 368 195.6 368 200V280C368 293.3 378.7 304 392 304S416 293.3 416 280V159.7zM333.3 149C327.2 153.9 316.7 160 303 160C289.9 160 273.8 154.4 256 136.9C238.2 154.4 222.1 160 209 160C195.3 160 184.7 153.9 178.7 149C155.1 129.9 153.9 95.5 175 74.8L247.6 3.5C252.3 -1.1 259.9 -1.1 264.6 3.5L337.2000000000001 74.8C358.1 95.5 356.9000000000001 129.9 333.3000000000001 149zM314.6 97.6L256 40L197.4 97.6C185.4 109.4 195.3 128 209 128C215.7 128 224.5 123 233.6 114.1L256 92L278.4 114.1C287.5 123.1 296.3 128 303 128C316.7 128 326.6 109.4 314.6 97.6z" />
+    <glyph glyph-name="hand-holding-box"
+      unicode="&#xF47B;"
+      horiz-adv-x="576" d=" M112 192H464C472.8 192 480 199.2 480 208V432C480 440.8 472.8 448 464 448H112C103.2 448 96 440.8 96 432V208C96 199.2 103.2 192 112 192zM256 416H320V339.8L288 355.8L256 339.8V416zM128 416H224V288L288 320L352 288V416H448V224H128V416zM558.3 114.4C548.6999999999999 123 536.1999999999999 127.8 523.0999999999999 127.8C510.5999999999999 127.8 498.2999999999999 123.5 488.4999999999999 115.6L426.8999999999999 66.3C424.9999999999999 64.8 422.6999999999999 63.9999999999999 420.1999999999999 63.9999999999999H378.5999999999999C383.1999999999999 73.6 385.0999999999999 84.6999999999999 383.3999999999999 96.3C379.3999999999999 124.1999999999999 353.7999999999999 144 325.5999999999999 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C512.7 93.9 518 95.7 523.1 95.7C528.1 95.7 533 94 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4z" />
+    <glyph glyph-name="hand-holding-heart"
+      unicode="&#xF4BE;"
+      horiz-adv-x="576" d=" M558.3 114.4C538.5999999999999 132.1 508.9 132 488.4 115.6L426.8 66.3C424.9 64.8 422.6 63.9999999999999 420.1 63.9999999999999H378.5C383.1 73.6 385 84.6999999999999 383.3 96.3C379.3 124.1999999999999 353.7 144 325.5 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C516.2 96.6 528.5 98.1 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4zM275.3 197.5C282.3 190.1 293.7 190.1 300.8 197.5L409.7 311.6C441.3 344.8 439.5 399.7 404.0999999999999 430.3C368.7999999999999 460.9 322.7 447.3 299.2 422.6L288 411L276.9 422.6C253.9 446.7 207.6 461.2 172 430.3C136.7 399.7 134.8 344.7 166.4 311.6L275.3 197.5zM192.4 406.1C213.2 424.1 240.6 414.8 254.3 400.4L288 365.1L321.7 400.4C335.2 414.5 362.7 424.1 383.6 406.1C407.4 385.5 403.8 351.6 387 334L288 230.2L189 334C172.3 351.4 168.7 385.5 192.4 406.1z" />
+    <glyph glyph-name="hand-holding-magic"
+      unicode="&#xF6E5;"
+      horiz-adv-x="576" d=" M558.3 114.35C548.7199999999999 123 536.2099999999999 127.7600000000001 523.0699999999999 127.7600000000001C510.5599999999999 127.7600000000001 498.2599999999999 123.4400000000001 488.4499999999999 115.59L426.88 66.34A10.68 10.68 0 0 0 420.2199999999999 64.0000000000001H378.5899999999999C383.1499999999999 73.58 385.07 84.6600000000001 383.3999999999999 96.27C379.38 124.2000000000001 353.7799999999999 144.0000000000001 325.57 144.0000000000001H181.33C160.56 144.0000000000001 140.35 137.2600000000001 123.73 124.8000000000001L85.33 96H8C3.58 96 0 92.42 0 88V72C0 67.58 3.58 64 8 64H96L142.93 99.2A63.99 63.99 0 0 0 181.33 112H328C341.25 112 352 101.26 352 88C352 74.75 341.25 64 328 64H240C231.16 64 224 56.84 224 48S231.16 32 240 32H420.2200000000001C429.9100000000001 32 439.31 35.3 446.87 41.35L508.43 90.6C512.65 93.98 517.89 95.7600000000001 523.0600000000001 95.7600000000001C528.0500000000001 95.7600000000001 532.97 94.1 536.84 90.6C546.89 81.52 546.1 66.09 535.97 58.01L435.1400000000001 -22.65A42.656 42.656 0 0 0 408.4900000000001 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H408.51C425.46 -64 441.91 -58.23 455.14 -47.64L555.97 33.03C568.2 42.79 575.49 57.39 575.97 73.0600000000001S570.01 103.7800000000001 558.3000000000001 114.3500000000001zM208 224H280C319.69 224 352 256.3 352 296S319.69 368 280 368H264.69C233 368 204.81 349.2200000000001 192 321.39C209.72 329.25 233.88 336 264.69 336H280C302.06 336 320 318.06 320 296S302.06 256 280 256H208C180.53 256 160 281.3400000000001 160 304V368C160 394.4700000000001 181.53 416 208 416H368C394.4700000000001 416 416 394.4700000000001 416 368V298.77C416 262.65 399.37 226.36 369.16 196.57L348.31 176C405.4 190.78 447.56 240.27 448 297.33V368C448 412.11 412.12 448 368 448H208C163.87 448 128 412.11 128 368V304C128 261.39 165.38 224 208 224z" />
+    <glyph glyph-name="hand-holding-seedling"
+      unicode="&#xF4BF;"
+      horiz-adv-x="576" d=" M248.9 256H272V200C272 195.6 275.6 192 280 192H296C300.4 192 304 195.6 304 200V256H327.1C411.4 256 480 335 480 432V448H424.9C364.9 448 313 407.9 288 349.9C263 407.9 211.1 448 151.1 448H96V432C96 335 164.6 256 248.9 256zM424.9 416H447.3C440.6 344.1 389.3 288 327.2 288H304.8C311.4 359.9 362.8 416 424.9 416zM151.1 416C213.2 416 264.5 359.9 271.2 288H248.8C186.6999999999999 288 135.3999999999999 344.1 128.6999999999999 416H151.0999999999999zM558.3 114.4C548.6999999999999 123 536.1999999999999 127.8 523.0999999999999 127.8C510.5999999999999 127.8 498.2999999999999 123.5 488.4999999999999 115.6L426.8999999999999 66.3C424.9999999999999 64.8 422.6999999999999 63.9999999999999 420.1999999999999 63.9999999999999H378.5999999999999C383.1999999999999 73.6 385.0999999999999 84.6999999999999 383.3999999999999 96.3C379.3999999999999 124.1999999999999 353.7999999999999 144 325.5999999999999 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C512.7 93.9 518 95.7 523.1 95.7C528.1 95.7 533 94 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4z" />
+    <glyph glyph-name="hand-holding-usd"
+      unicode="&#xF4C0;"
+      horiz-adv-x="576" d=" M256.7 312.3L313.1 296.2000000000001C321.9 293.7000000000001 328 285.6 328 276.5C328 265.2000000000001 318.8 256 307.5 256H270.6C262.4 256 254.5 258.6 248 263.3000000000001C245 265.5 240.8 264.8000000000001 238.2 262.1L226.8 250.7000000000001C223.3 247.2000000000001 223.9 241.5000000000001 227.8 238.5000000000001C240.1 229.1000000000001 255 224.0000000000001 270.7 224.0000000000001H272.0999999999999V200.0000000000001C272.0999999999999 195.6000000000001 275.7 192.0000000000001 280.0999999999999 192.0000000000001H296.0999999999999C300.4999999999999 192.0000000000001 304.0999999999999 195.6000000000001 304.0999999999999 200.0000000000001V224.0000000000001H305.4999999999999C328.2999999999999 224.0000000000001 349.7999999999999 237.6000000000001 357.1999999999999 259.2000000000001C367.2999999999999 288.8000000000001 349.8999999999999 319.0000000000001 322.0999999999999 327.0000000000001L263 343.9C254.2 346.4 248.1 354.5 248.1 363.6C248.1 374.9 257.3 384.1 268.6 384.1H305.5C313.7 384.1 321.6 381.5 328.1 376.8C331.1 374.6 335.3 375.3 337.9000000000001 378L349.3 389.4000000000001C352.8 392.9000000000001 352.2 398.6 348.3 401.6C336 410.9 321.1 416 305.4 416H304V440C304 444.4 300.4 448 296 448H280C275.6 448 272 444.4 272 440V416H268.5C237.9 416 213.4 389.7 216.3 358.5C218.3 336.4 235.3 318.4 256.7 312.3zM558.3 114.4C538.5999999999999 132.1 508.9 132 488.4 115.6L426.8 66.3C424.9 64.8 422.6 63.9999999999999 420.1 63.9999999999999H378.5C383.1 73.6 385 84.6999999999999 383.3 96.3C379.3 124.1999999999999 353.7 144 325.5 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C516.2 96.6 528.5 98.1 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4z" />
+    <glyph glyph-name="hand-holding-water"
+      unicode="&#xF4C1;"
+      horiz-adv-x="576" d=" M558.3 114.4C548.6999999999999 123 536.1999999999999 127.8 523.0999999999999 127.8C510.5999999999999 127.8 498.2999999999999 123.5 488.4999999999999 115.6L426.8999999999999 66.3C424.9999999999999 64.8 422.6999999999999 63.9999999999999 420.1999999999999 63.9999999999999H378.5999999999999C383.1999999999999 73.6 385.0999999999999 84.6999999999999 383.3999999999999 96.3C379.3999999999999 124.1999999999999 353.7999999999999 144 325.5999999999999 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C512.7 93.9 518 95.7 523.1 95.7C528.1 95.7 533 94 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4zM288 192C341 192 384 234.1 384 286C384 326 326.9 406.7 300.8 441.6C297.6 445.9 292.8 448 288 448S278.4 445.9 275.2 441.6C249.1 406.7 192 326 192 286C192 234.1 235 192 288 192zM288 405C332.1 343.6 352 301.5 352 286C352 251.8 323.3 224 288 224S224 251.8 224 286C224 301.5 243.9 343.6 288 405z" />
+    <glyph glyph-name="hand-holding"
+      unicode="&#xF4BD;"
+      horiz-adv-x="576" d=" M558.3 114.4C548.6999999999999 123 536.1999999999999 127.8 523.0999999999999 127.8C510.5999999999999 127.8 498.2999999999999 123.5 488.4999999999999 115.6L426.8999999999999 66.3C424.9999999999999 64.8 422.6999999999999 63.9999999999999 420.1999999999999 63.9999999999999H378.5999999999999C383.1999999999999 73.6 385.0999999999999 84.6999999999999 383.3999999999999 96.3C379.3999999999999 124.1999999999999 353.7999999999999 144 325.5999999999999 144H181.3C160.5 144 140.3 137.3 123.7 124.8L85.3 96H8C3.6 96 0 92.4 0 88V72C0 67.6 3.6 64 8 64H96L142.9 99.2C154 107.5 167.5 112 181.3 112H328C341.3 112 352 101.3 352 88S341.3 64 328 64H240C231.2 64 224 56.8 224 48S231.2 32 240 32H420.2C429.9 32 439.3 35.3 446.9 41.3L508.5 90.5C512.7 93.9 518 95.7 523.1 95.7C528.1 95.7 533 94 536.9 90.5C547 81.4 546.1999999999999 66 536 57.9L435.2 -22.8C427.6 -28.9 418.2 -32.1 408.5 -32.1H8C3.6 -32.1 0 -35.7 0 -40.1V-56.1C0 -60.5 3.6 -64.1 8 -64.1H408.5C425.5 -64.1 441.9 -58.3 455.1 -47.7L556 33C568.2 42.8 575.5 57.4 576 73S570 103.8 558.3 114.4z" />
+    <glyph glyph-name="hand-lizard"
+      unicode="&#xF258;"
+      horiz-adv-x="576" d=" M558.232 150.069L406.298 386.5900000000001C394.468 405.006 374.338 416 352.45 416H48C21.532 416 0 394.468 0 368V360C0 320.299 32.299 288 72 288H288.103L264.914 229.07A7.954 7.954 0 0 0 257.47 224H144C99.888 224 64 188.112 64 144C64 117.532 85.532 96 112 96H237.848A31.98 31.98 0 0 0 254.67 91.222L348.206 33.423A7.948000000000001 7.948000000000001 0 0 0 352 26.618V-32H576V89.537C576 111.043 569.856 131.976 558.232 150.069zM544 0H384V26.618C384 40.584 376.907 53.305 365.027 60.645L271.49 118.444A63.96 63.96 0 0 1 237.847 128H112C103.178 128 96 135.178 96 144C96 170.468 117.532 192 144 192H257.469C274.02 192 288.63 201.952 294.691 217.353L320.031 281.747C327.2579999999999 300.1090000000001 313.697 320.001 293.976 320.001H72C49.944 320.001 32 337.945 32 360.001V368.001C32 376.823 39.178 384.001 48 384.001H352.45C363.393 384.001 373.459 378.504 379.374 369.296L531.309 132.775A79.854 79.854 0 0 0 544 89.537V0z" />
+    <glyph glyph-name="hand-paper"
+      unicode="&#xF256;"
+      horiz-adv-x="448" d=" M369.427 328.881V351.69C369.427 394.5180000000001 326.6210000000001 424.479 287.1230000000001 408.213C267.3030000000001 462.379 192.7530000000001 460.392 174.6720000000001 407.416C136.2330000000001 423.166 92.8580000000001 394.601 92.8580000000001 351.5V205.846C72.5180000000001 219.519 45.2810000000001 219.738 24.4680000000001 204.376C-2.0889999999999 184.771 -7.8999999999999 147.296 11.3350000000001 120.45L136.3050000000001 -53.979A24 24 0 0 1 155.814 -64H387.999A24 24 0 0 1 411.379 -45.42L442.8210000000001 90.215A200.779 200.779 0 0 1 448.0010000000001 135.488V271.75C448.0000000000001 313.31 407.4410000000001 341.862 369.427 328.881zM415.997 135.487A168.76 168.76 0 0 0 411.647 97.441L381.641 -32H159.924L37.336 139.088C28.287 151.718 31.035 169.457 43.461 178.63C55.783 187.725 73.053 185.033 82.097 172.412L110.356 132.973C114.869 126.672 124.859 129.868 124.859 137.632V351.5C124.859 389.508 180.287 388.427 180.287 350.784V192A8 8 0 0 1 188.287 184H195.43A8 8 0 0 1 203.43 192V387.75C203.43 425.774 258.858 424.677 258.858 387.034V192A8 8 0 0 1 266.858 184H274.001A8 8 0 0 1 282.001 192V352.406C282.001 390.403 337.429 389.3330000000001 337.429 351.69V192A8 8 0 0 1 345.429 184H352.572A8 8 0 0 1 360.572 192V271.034C360.572 308.59 416 309.881 416 271.75V135.487z" />
+    <glyph glyph-name="hand-peace"
+      unicode="&#xF25B;"
+      horiz-adv-x="448" d=" M363.642 246.876C350.572 274.492 319.261 287.731 290.867 278.173V380.5C290.867 417.7200000000001 260.876 448 224.012 448S157.1569999999999 417.7200000000001 157.1569999999999 380.5L160 272L129.148 361.568C115.645 396.454 76.664 413.477 42.319 399.78C8.02 386.104 -8.796 347.07 4.609 312.432L65.068 156.22C35.907 132.54 15.735 104.673 36.385 67.992L93.524 -33.508C104.112 -52.316 124.007 -64 145.445 -64H359.718C373.182 -64 386.397 -59.338 396.928 -50.872C407.3829999999999 -42.467 414.817 -30.606 417.861 -17.472L446.431 105.778A60.85600000000001 60.85600000000001 0 0 1 448 119.5V192C448 235.874 402.864 264.88 363.642 246.876zM71.039 119.847L98.796 142.387A8.002 8.002 0 0 1 101.214 151.485L34.453 323.981C17.447 367.92 82.438 393.597 99.305 350.019L161.579 189.113A8 8 0 0 1 169.04 184.001H181.157A8 8 0 0 1 189.157 192.001V380.5C189.157 427.429 258.866 427.521 258.866 380.5V192A8 8 0 0 1 266.866 184H274.009A8 8 0 0 1 282.009 192V221C282.009 258.351 337.434 258.41 337.434 221V192A8 8 0 0 1 345.434 184H352.577A8 8 0 0 1 360.577 192C360.577 229.35 416.0009999999999 229.41 416.0009999999999 192V119.5C416.0009999999999 117.314 415.7509999999999 115.129 415.2589999999999 113.004L386.6889999999999 -10.246C383.7200000000001 -23.055 372.629 -32 359.719 -32H145.445C135.547 -32 126.337 -26.563 121.41 -17.811L64.27 83.689C57.407 95.881 60.254 111.0870000000001 71.039 119.847z" />
+    <glyph glyph-name="hand-point-down"
+      unicode="&#xF0A7;"
+      horiz-adv-x="448" d=" M185.6 -64C224.084 -64 256 -31.937 256 6.4V63.217C256.351 63.226 256.703 63.237 257.054 63.25C271.241 63.786 284.781 67.905 296.636 75.135C319.975 70.491 345.022 77.47 362.13 91.77C411.916 90.145 448 120.796 448 180.401V203.637C448 257.747 413.719 294.089 405.962 328.7389999999999C412.139 334.572 416 342.833 416 352V416C416 433.673 401.673 448 384 448H160C142.327 448 128 433.673 128 416V352C128 340.38 134.194 330.208 143.459 324.603C133.384 306.553 94.075 274.745 76.315 263.6840000000001C53.853 249.8 0 240.546 0 192C0 150.687 29.922 118.4 70.4 118.4C88.19 118.4 103.011 122.754 115.2 128.191V6.4C115.2 -31.23 147.439 -64 185.6 -64zM384 416V352H160V416H384zM185.6 -32C165.2 -32 147.2 -13.7 147.2 6.4V179.2C128.3 179.2 108.8 150.4 70.4 150.4C48 150.4 32 168 32 192S67.686 220.704 93.2 236.5C116.643 251.095 165.756 290.165 176.462 320H375.139C384.733 280.32 416 247.974 416 203.636V180.4C416 136.192 391.7850000000001 118.083 349.1 125.199C340.372 109.259 312.0320000000001 98.852 290.6 111.0989999999999C270.718 89.9739999999999 240.003 91.6949999999999 224 105.699V6.4C224 -14.3 206.3000000000001 -32 185.6 -32zM332 384C332 395.046 340.954 404 352 404S372 395.046 372 384S363.046 364 352 364S332 372.954 332 384z" />
+    <glyph glyph-name="hand-point-left"
+      unicode="&#xF0A5;"
+      horiz-adv-x="512" d=" M0 230.4C0 191.916 32.063 160 70.4 160H127.217C127.226 159.649 127.237 159.297 127.25 158.946C127.786 144.759 131.905 131.2190000000001 139.135 119.364C134.491 96.025 141.47 70.978 155.77 53.87C154.145 4.084 184.796 -32 244.401 -32H267.637C321.747 -32 358.089 2.281 392.7390000000001 10.038C398.572 3.861 406.8330000000001 0 416 0H480C497.673 0 512 14.327 512 32V256C512 273.673 497.673 288 480 288H416C404.38 288 394.208 281.8060000000001 388.603 272.541C370.552 282.616 338.745 321.925 327.6840000000001 339.685C313.8 362.147 304.546 416 256 416C214.687 416 182.4 386.078 182.4 345.6C182.4 327.81 186.754 312.9890000000001 192.191 300.8H70.4C32.77 300.8 0 268.5610000000001 0 230.4zM480 32H416V256H480V32zM32 230.4C32 250.8 50.3 268.8 70.4 268.8H243.2C243.2 287.7000000000001 214.4 307.2000000000001 214.4 345.6C214.4 368 232 384 256 384S284.704 348.314 300.5 322.8C315.0950000000001 299.357 354.165 250.244 384 239.538V40.861C344.32 31.267 311.974 0 267.636 0H244.4C200.192 0 182.083 24.215 189.199 66.9C173.259 75.628 162.852 103.968 175.099 125.4C153.974 145.282 155.695 175.997 169.699 192H70.4C49.7 192 32 209.7 32 230.4zM448 84C459.046 84 468 75.046 468 64S459.046 44 448 44S428 52.954 428 64S436.954 84 448 84z" />
+    <glyph glyph-name="hand-point-right"
+      unicode="&#xF0A4;"
+      horiz-adv-x="512" d=" M441.6 300.8H319.8090000000001C325.2460000000001 312.9890000000001 329.6 327.81 329.6 345.6C329.6 386.0780000000001 297.314 416 256 416C207.454 416 198.2 362.1470000000001 184.317 339.685C173.255 321.9240000000001 141.448 282.616 123.398 272.541C117.792 281.8060000000001 107.62 288 96 288H32C14.327 288 0 273.673 0 256V32C0 14.327 14.327 0 32 0H96C105.167 0 113.428 3.861 119.262 10.038C153.911 2.281 190.254 -32 244.364 -32H267.6C327.206 -32 357.856 4.084 356.231 53.87C370.531 70.978 377.51 96.025 372.866 119.364C380.095 131.22 384.214 144.759 384.751 158.946C384.764 159.297 384.775 159.649 384.784 160H441.6C479.937 160 512 191.916 512 230.4C512 268.5610000000001 479.23 300.8 441.6 300.8zM32 256H96V32H32V256zM441.6 192H342.2990000000001C356.3030000000001 175.997 358.0250000000001 145.282 336.8990000000001 125.4C349.1460000000001 103.969 338.7400000000001 75.629 322.7990000000001 66.9C329.915 24.215 311.8060000000001 0 267.598 0H244.362C200.025 0 167.678 31.267 127.998 40.861V239.538C157.833 250.244 196.902 299.356 211.498 322.8C227.296 348.314 232 384 256 384S297.6 368 297.6 345.6C297.6 307.2 268.8 287.7 268.8 268.8H441.6C461.7 268.8 480 250.8 480 230.4C480 209.7 462.3 192 441.6 192zM84 64C84 52.954 75.046 44 64 44S44 52.954 44 64S52.954 84 64 84S84 75.046 84 64z" />
+    <glyph glyph-name="hand-point-up"
+      unicode="&#xF0A6;"
+      horiz-adv-x="448" d=" M115.2 377.6V255.808C103.011 261.245 88.19 265.599 70.4 265.599C29.922 265.6 0 233.313 0 192C0 143.454 53.853 134.2 76.315 120.317C94.076 109.255 133.384 77.448 143.459 59.398C134.194 53.792 128 43.62 128 32V-32C128 -49.673 142.327 -64 160 -64H384C401.673 -64 416 -49.673 416 -32V32C416 41.167 412.139 49.428 405.962 55.262C413.719 89.911 448 126.254 448 180.364V203.6C448 263.206 411.916 293.856 362.13 292.231C345.022 306.531 319.975 313.51 296.636 308.866C284.78 316.0950000000001 271.241 320.214 257.054 320.751A92.713 92.713 0 0 1 256 320.784V377.6C256 415.937 224.084 448 185.6 448C147.439 448 115.2 415.23 115.2 377.6zM160 -32V32H384V-32H160zM224 377.6V278.2990000000001C240.003 292.303 270.718 294.0250000000001 290.6 272.899C312.031 285.146 340.3710000000001 274.74 349.1 258.7990000000001C391.7850000000001 265.915 416 247.8060000000001 416 203.5980000000001V180.362C416 136.025 384.733 103.678 375.139 63.9980000000001H176.462C165.756 93.833 116.644 132.9020000000001 93.2 147.4980000000001C67.686 163.296 32 168 32 192S48 233.6 70.4 233.6C108.8 233.6 128.3 204.8 147.2 204.8V377.6C147.2 397.7 165.2 416 185.6 416C206.3 416 224 398.3 224 377.6zM352 20C363.046 20 372 11.046 372 0S363.046 -20 352 -20S332 -11.046 332 0S340.954 20 352 20z" />
+    <glyph glyph-name="hand-pointer"
+      unicode="&#xF25A;"
+      horiz-adv-x="448" d=" M360.543 259.844C343.0830000000001 288.335 306.252 296.907 278.405 279.5370000000001C262.44 300.368 235.733 307.815 212.286 299.9220000000001V387.75C212.286 420.972 185.498 448 152.572 448S92.857 420.972 92.857 387.75V205.848C72.519 219.521 45.279 219.738 24.468 204.376C-2.088 184.771 -7.9 147.296 11.336 120.45L125.607 -39.05C136.803 -54.673 154.893 -64 174 -64H359.714C387.428 -64 411.546 -44.706 417.859 -17.472L446.43 105.778A60.769000000000005 60.769000000000005 0 0 1 448 119.501V206.501C448 251.8660000000001 399.989 280.8130000000001 360.543 259.8440000000001zM82.097 172.412L110.355 132.973A7.999 7.999 0 1 1 124.858 137.632V387.75C124.858 425.1 180.286 425.16 180.286 387.75V206.5A8 8 0 0 1 188.286 198.5H195.43A8 8 0 0 1 203.43 206.5V242.75C203.43 280.1 258.8590000000001 280.16 258.8590000000001 242.75V206.5A8 8 0 0 1 266.8590000000001 198.5H274A8 8 0 0 1 282 206.5V228.25C282 265.601 337.429 265.658 337.429 228.25V206.5A8 8 0 0 1 345.429 198.5H352.572A8 8 0 0 1 360.572 206.5C360.572 243.85 416.001 243.91 416.001 206.5V119.5C416.001 117.314 415.751 115.129 415.259 113.004L386.686 -10.247C383.717 -23.055 372.626 -32 359.715 -32H174C165.187 -32 156.819 -27.668 151.619 -20.412L37.336 139.088C15.123 170.0920000000001 61.137 201.663 82.097 172.412zM180.285 47V134A8 8 0 0 0 188.285 142H195.429A8 8 0 0 0 203.429 134V47A8 8 0 0 0 195.429 39H188.285A8 8 0 0 0 180.285 47zM258.857 47V134A8 8 0 0 0 266.857 142H274A8 8 0 0 0 282 134V47A8 8 0 0 0 274 39H266.8570000000001A8 8 0 0 0 258.8570000000001 47zM337.429 47V134A8 8 0 0 0 345.429 142H352.572A8 8 0 0 0 360.572 134V47A8 8 0 0 0 352.572 39H345.429A8 8 0 0 0 337.429 47z" />
+    <glyph glyph-name="hand-receiving"
+      unicode="&#xF47C;"
+      horiz-adv-x="640" d=" M439.2 342.4L342.9 438.7C336.7 444.9 328.6 448 320.5 448S304.3 444.9 298.1 438.7L201.7 342.3C189.4 330 189.4 309.9 201.7 297.6L298.1 201.2C304.3 195 312.4000000000001 191.9 320.5 191.9S336.7 195 342.9 201.2L439.3 297.6C451.6 310 451.6 330 439.2 342.4zM320.5 223.6L224.1 320L320.4 416.4L416.8 320L320.5 223.6zM220 199.2C206 218.4 170.9 230.6 145.5 203.1C129.9 186.3 129.6 160.3 143 141.8L171.6 102.5C178.1 93.6 165.1 83.4 158 91.8L96 165.1V302.2C96 328.2 74.8 351.5 48.8 351.9C21.9 352.4 0 330.8 0 304V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L117.5 -30.1C122.9 -36.9 126.4 -47.6 127.6 -57.1C128.1 -61.1 131.6 -63.9999999999999 135.6 -63.9999999999999H151.6C156.4 -63.9999999999999 160.1 -60.1 159.6 -55.3C158 -39.3 152.1 -21.9999999999999 142.5 -10.1L35.5 123.6C33.2 126.4 32 130 32 133.6V304C32 325 64 325.6 64 303.3V153.6L128.6 76.1C165.5 31.9 225.4 78.8 199.4 118.5C199.2 118.8 199 119 198.9 119.3L168.3 161.5C163.6 168 164.1 178.2 171.8 183.8C178.8 188.9 188.9 187.6 194.2 180.3L236.6 121.9C249.3 105.0000000000001 256.1 84.5000000000001 256.1 63.9V-56.1C256.1 -60.4999999999999 259.7000000000001 -64.0999999999999 264.1 -64.0999999999999H280.1C284.5 -64.0999999999999 288.1 -60.4999999999999 288.1 -56.0999999999999V63.9000000000001C288.1 91.6000000000001 279.1 118.5000000000001 262.5 140.7000000000001L220 199.2zM640 304C640 330.8 618.1 352.4 591.2 352C565.2 351.6 544 328.3 544 302.3V165.2000000000001L482 91.9C474.9 83.5000000000001 461.9 93.6 468.4 102.6L497 141.9C510.4 160.4 510.1 186.5000000000001 494.5 203.2000000000001C469 230.6000000000001 433.9 218.5000000000001 420 199.3000000000001L377.6 140.9C361 118.7 352 91.7 352 64V-56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V64C384 84.6 390.8 105.1 403.5 122L445.9 180.4C451.2 187.7 461.2 189.1 468.3 183.9C476.1 178.3 476.6 168.1 471.8 161.6L441.2 119.4C441 119.1 440.8 118.9 440.7 118.6C414.5999999999999 78.9 474.5999999999999 31.9 511.4999999999999 76.2L576.0999999999999 153.7V303.4C576.0999999999999 325.7 608.0999999999999 325.1 608.0999999999999 304.1V133.7C608.0999999999999 130.1 606.8999999999999 126.5 604.5999999999999 123.7L497.6 -10C488.1 -21.9 482.1 -39.2 480.5 -55.2C480 -60 483.7 -63.9 488.5 -63.9H504.5C508.5 -63.9 512 -61 512.5 -57C513.7 -47.4 517.1 -36.8 522.6 -30L629.6 103.7C636.4 112.2 640.1 122.8 640.1 133.7L640 304z" />
+    <glyph glyph-name="hand-rock"
+      unicode="&#xF255;"
+      horiz-adv-x="512" d=" M412.055 364.901C394.09 405.67 342.756 417.843 308.44 390.93C280.183 425.759 227.552 423.631 201.562 388.7C157.639 421.013 94.25 389.778 94.25 334.857V324.779C50.599 343.682 0 312.1430000000001 0 263.429V204.103C0 172.724 13.628 142.793 37.389 121.984L138.589 33.3580000000001C147.059 25.94 145 18.212 145 -8C145 -21.255 155.745 -32 169 -32H430C443.255 -32 454 -21.255 454 -8C454 16.785 452.86 25.765 458.887 39.867L503.251 143.675C509.056 157.2580000000001 512 171.623 512 186.369V305.5800000000001C512 357.27 456.451 389.105 412.055 364.901zM159.67 57.432L58.47 146.058C41.648 160.79 32 181.946 32 204.103V263.429C32 282.954 48.327 298.671 68.112 298.281C87.349 297.9650000000001 103 282.014 103 262.724V219.778C103 217.472 103.995 215.278 105.729 213.759L112.979 207.41A8 8 0 0 1 126.25 213.428V334.857C126.25 380.103 197.25 382.269 197.25 334.151V306.286A8 8 0 0 1 205.25 298.286H212.5A8 8 0 0 1 220.5 306.286V349.1430000000001C220.5 394.373 291.5 396.572 291.5 348.438V306.2870000000001A8 8 0 0 1 299.5 298.2870000000001H306.75A8 8 0 0 1 314.75 306.2870000000001V338.43C314.75 384.4340000000001 385.75 384.9340000000001 385.75 337.725V306.2870000000001A8 8 0 0 1 393.75 298.2870000000001H401A8 8 0 0 1 409 306.2870000000001C409 351.529 480 353.7150000000001 480 305.581V186.37A76.236 76.236 0 0 0 473.826 156.251L429.461 52.443C420.883 32.37 422 18.067 422 0H177C177 19.081 179.866 39.746 159.67 57.432z" />
+    <glyph glyph-name="hand-scissors"
+      unicode="&#xF257;"
+      horiz-adv-x="512" d=" M256 -32H328.5C333.115 -32 337.732 -31.472 342.222 -30.431L465.472 -1.861C478.605 1.183 490.467 8.617 498.872 19.072C507.338 29.603 511.9999999999999 42.818 511.9999999999999 56.282V270.555C511.9999999999999 291.993 500.3159999999999 311.8880000000001 481.5079999999999 322.475L380.0079999999999 379.6140000000001C343.327 400.265 315.4599999999999 380.092 291.7799999999999 350.9310000000001L135.5689999999999 411.391C100.9299999999999 424.796 61.8969999999999 407.98 48.2189999999999 373.682C34.5229999999999 339.337 51.5449999999999 300.356 86.4309999999999 286.853L176 256L67.5 258.843C30.28 258.843 0 228.852 0 191.988S30.28 125.134 67.5 125.134H169.827C160.269 96.741 173.508 65.429 201.124 52.359C183.12 13.136 212.126 -32 256 -32zM364.311 351.729L465.811 294.589C474.564 289.6620000000001 480 280.452 480 270.554V56.282C480 43.372 471.055 32.2810000000001 458.246 29.312L334.996 0.742A28.842999999999996 28.842999999999996 0 0 0 328.5 0H256C218.59 0 218.65 55.424 256 55.424A8 8 0 0 1 264 63.424V70.567A8 8 0 0 1 256 78.567H227C189.59 78.567 189.649 133.992 227 133.992H256A8 8 0 0 1 264 141.992V149.1349999999999A8 8 0 0 1 256 157.1349999999999H67.5C20.479 157.1349999999999 20.571 226.844 67.5 226.844H256A8 8 0 0 1 264 234.844V246.96A8 8 0 0 1 258.888 254.421L97.981 316.695C54.402 333.562 80.079 398.552 124.018 381.5470000000001L296.515 314.786A8.002 8.002 0 0 1 305.613 317.204L328.153 344.961C336.913 355.746 352.1190000000001 358.593 364.3110000000001 351.7290000000001z" />
+    <glyph glyph-name="hand-spock"
+      unicode="&#xF259;"
+      horiz-adv-x="512" d=" M443.093 360.385C442.4290000000001 386.332 424.711 410.395 397.488 417.201C365.219 425.2680000000001 332.522 405.7560000000001 324.424 373.362L297.674 240L266.689 401.228C259.2510000000001 433.605 226.918 453.916 194.475 446.457C164.762 439.631 145.228 411.7850000000001 147.967 382.221C106.726 387.771 71.875 350.381 81.248 309.1430000000001L116 156.24V142.518L101.516 156.124C76.885 179.304 38.75 177.347 16.347 153.542C-6.421 129.3510000000001 -5.264 91.145 18.928 68.376L152.675 -57.477A24 24 0 0 1 169.124 -64H415.211A24 24 0 0 1 438.221 -46.822L471.172 64.324A110.935 110.935 0 0 1 475.75 95.874V134.03C475.75 138.938 476.326 143.848 477.463 148.622L510.316 286.796C520.259 328.551 484.659 366.447 443.093 360.385zM479.224 294.206L446.3340000000001 156.034A95.07499999999999 95.07499999999999 0 0 1 443.7500000000001 134.029V95.875A78.974 78.974 0 0 0 440.4910000000001 73.42L409.238 -32H172.297L40.889 91.678C29.545 102.355 29.003 120.269 39.679 131.612L39.68 131.613C50.416 143.0219999999999 68.287 143.48 79.612 132.8229999999999L134.517 81.1469999999999C139.614 76.3519999999999 148 79.9739999999999 148 86.9719999999999V158.9329999999999C148 159.5299999999999 147.934 160.1239999999999 147.801 160.7049999999999L112.452 316.2389999999999C104.174 352.6619999999999 159.257 365.236 167.548 328.76L199.032 190.2279999999999A7.999 7.999 0 0 1 206.833 183.9999999999999H215.744C220.88 183.9999999999999 224.692 188.7829999999999 223.541 193.7909999999999L180.436 381.4170000000001C172.082 417.777 227.098 430.63 235.501 394.0660000000001L282.3350000000001 190.209A8 8 0 0 1 290.1320000000001 184H303.8210000000001A7.999 7.999 0 0 1 311.5820000000001 190.06L355.4670000000001 365.602C364.5290000000001 401.856 419.3550000000001 388.2 410.2810000000001 351.899L370.7910000000001 193.941C369.5270000000001 188.889 373.3560000000001 184.001 378.5520000000002 184.001H388.5930000000002A7.999 7.999 0 0 1 396.3750000000001 190.148L424.2590000000002 307.293C432.9140000000001 343.64 487.8930000000001 330.616 479.2240000000002 294.206z" />
+    <glyph glyph-name="hands-heart"
+      unicode="&#xF4C3;"
+      horiz-adv-x="640" d=" M436 430.4C421.6 442.9 405.4 448 389.6 448C366.8 448 345 437.3 331 422.7L320 411L308.9 422.6C295.2 437 273.3 448 250.2 448C234.5 448 218.4 442.9 203.9 430.4C168.6 399.8 166.7 344.8 198.3 311.7L307.2 197.6C314.2 190.2 325.6 190.2 332.7 197.6L441.6 311.7C473.2 344.8 471.4 399.8 436 430.4zM419 333.9L320 230.1L221 333.9000000000001C204.3 351.4000000000001 200.6 385.5 224.4 406C232.6 413.1 241.7 415.9000000000001 250.7 415.9000000000001C264.6 415.9000000000001 278 409 286.3 400.3L320 365.1L353.7 400.4C361.9 409 375.4 416 389.3 416C398.2 416 407.4000000000001 413.2 415.5 406.1C439.4 385.4 435.7 351.5 419 333.9zM220 199.2C206 218.4 170.9 230.6 145.5 203.1C129.9 186.3 129.6 160.3 143 141.8L171.6 102.5C178.1 93.6 165.1 83.4 158 91.8L96 165.1V302.2C96 328.2 74.8 351.5 48.8 351.9C21.9 352.4 0 330.8 0 304V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L117.5 -30.1C122.9 -36.9 126.4 -47.6 127.6 -57.1C128.1 -61.1 131.6 -63.9999999999999 135.6 -63.9999999999999H151.6C156.4 -63.9999999999999 160.1 -60.1 159.6 -55.3C158 -39.3 152.1 -21.9999999999999 142.5 -10.1L35.5 123.6C33.2 126.4 32 130 32 133.6V304C32 325 64 325.6 64 303.3V153.6L128.6 76.1C165.5 31.9 225.4 78.8 199.4 118.5C199.2 118.8 199 119 198.9 119.3L168.3 161.5C163.6 168 164.1 178.2 171.8 183.8C178.8 188.9 188.9 187.6 194.2 180.3L236.6 121.9C249.3 105.0000000000001 256.1 84.5000000000001 256.1 63.9V-56.1C256.1 -60.4999999999999 259.7000000000001 -64.0999999999999 264.1 -64.0999999999999H280.1C284.5 -64.0999999999999 288.1 -60.4999999999999 288.1 -56.0999999999999V63.9000000000001C288.1 91.6000000000001 279.1 118.5000000000001 262.5 140.7000000000001L220 199.2zM640 304C640 330.8 618.1 352.4 591.2 352C565.2 351.6 544 328.3 544 302.3V165.2000000000001L482 91.9C474.9 83.5000000000001 461.9 93.6 468.4 102.6L497 141.9C510.4 160.4 510.1 186.5000000000001 494.5 203.2000000000001C469 230.6000000000001 433.9 218.5000000000001 420 199.3000000000001L377.6 140.9C361 118.7 352 91.7 352 64V-56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V64C384 84.6 390.8 105.1 403.5 122L445.9 180.4C451.2 187.7 461.2 189.1 468.3 183.9C476.1 178.3 476.6 168.1 471.8 161.6L441.2 119.4C441 119.1 440.8 118.9 440.7 118.6C414.5999999999999 78.9 474.5999999999999 31.9 511.4999999999999 76.2L576.0999999999999 153.7V303.4C576.0999999999999 325.7 608.0999999999999 325.1 608.0999999999999 304.1V133.7C608.0999999999999 130.1 606.8999999999999 126.5 604.5999999999999 123.7L497.6 -10C488.1 -21.9 482.1 -39.2 480.5 -55.2C480 -60 483.7 -63.9 488.5 -63.9H504.5C508.5 -63.9 512 -61 512.5 -57C513.7 -47.4 517.1 -36.8 522.6 -30L629.6 103.7C636.4 112.2 640.1 122.8 640.1 133.7L640 304z" />
+    <glyph glyph-name="hands-helping"
+      unicode="&#xF4C4;"
+      horiz-adv-x="640" d=" M638.9 238.3L630.9 252.2C628.6999999999999 256 623.8 257.3 620 255.1L512 192.1V208C512 234.5 490.5 256 464 256H320V193.8C320 177.8 309.1 163 293.4 160.5C273.4 157.2 256 172.7 256 192.1V286.4C256 300.2 263.1 313 274.8 320.3L308.2 341.2C319.5999999999999 348.3 332.8 352.1 346.3 352.1H449.5L568 419.1C571.8 421.3 573.2 426.2 571 430L563 444C560.8 447.8 555.9 449.2 552.1 447L441.1 384H346.4000000000001C326.9000000000001 384 307.8 378.5 291.3 368.2L257.8 347.3C240.3 336.3 229.1 318.7000000000001 225.6 298.8L163.1 261.8C141.5 248.8 128 225.1 128 199.9V161.3L4 90.9C0.2 88.7 -1.2 83.8 1 80L9 66.1C11.2 62.3 16.1 60.9 19.9 63.1L160 142.7V199.9C160 213.9 167.5 227.1 179.4 234.3L224 260.7V194.8C224 161.4 248.3 131.5 281.6 128.3C319.7000000000001 124.6 352 154.6 352 192V224H464C472.8 224 480 216.8 480 208V176C480 167.1999999999999 472.8 160 464 160H440V124C440 104.1999999999999 424 88.1999999999999 404.2 88.1999999999999H388.1V72.1999999999999C388.1 49.9999999999999 370.1 31.9999999999999 347.9 31.9999999999999H238.5L122.9 -35.3000000000001C119.1 -37.5000000000001 117.8 -42.4000000000001 120 -46.2L128 -60.0000000000001C130.2 -63.8000000000001 135.1 -65.1 138.9 -62.9L247.1 0H347.9C382.7 0 411.9 24.8 418.7 57.7C449.1 64.4 472 91.6 472 124V128.7C485.6 131 496.6 139.3 503.8 150.4L636 227.4C639.8 229.6 641.1 234.5 638.9 238.3z" />
+    <glyph glyph-name="hands-usd"
+      unicode="&#xF4C5;"
+      horiz-adv-x="640" d=" M640 304C640 330.8 618.1 352.4 591.2 352C565.2 351.6 544 328.3 544 302.3V165.2000000000001L482 91.9C474.9 83.5000000000001 461.9 93.6 468.4 102.6L497 141.9C510.4 160.4 510.1 186.5000000000001 494.5 203.2000000000001C469 230.6000000000001 433.9 218.5000000000001 420 199.3000000000001L377.6 140.9C361 118.7 352 91.7 352 64V-56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V64C384 84.6 390.8 105.1 403.5 122L445.9 180.4C451.2 187.7 461.2 189.1 468.3 183.9C476.1 178.3 476.6 168.1 471.8 161.6L441.2 119.4C441 119.1 440.8 118.9 440.7 118.6C414.5999999999999 78.9 474.5999999999999 31.9 511.4999999999999 76.2L576.0999999999999 153.7V303.4C576.0999999999999 325.7 608.0999999999999 325.1 608.0999999999999 304.1V133.7C608.0999999999999 130.1 606.8999999999999 126.5 604.5999999999999 123.7L497.6 -10C488.1 -21.9 482.1 -39.2 480.5 -55.2C480 -60 483.7 -63.9 488.5 -63.9H504.5C508.5 -63.9 512 -61 512.5 -57C513.7 -47.4 517.1 -36.8 522.6 -30L629.6 103.7C636.4 112.2 640.1 122.8 640.1 133.7L640 304zM220 199.2C206 218.4 170.9 230.6 145.5 203.1C129.9 186.3 129.6 160.3 143 141.8L171.6 102.5C178.1 93.6 165.1 83.4 158 91.8L96 165.1V302.2C96 328.2 74.8 351.5 48.8 351.9C21.9 352.4 0 330.8 0 304V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L117.5 -30.1C122.9 -36.9 126.4 -47.6 127.6 -57.1C128.1 -61.1 131.6 -63.9999999999999 135.6 -63.9999999999999H151.6C156.4 -63.9999999999999 160.1 -60.1 159.6 -55.3C158 -39.3 152.1 -21.9999999999999 142.5 -10.1L35.5 123.6C33.2 126.4 32 130 32 133.6V304C32 325 64 325.6 64 303.3V153.6L128.6 76.1C165.5 31.9 225.4 78.8 199.4 118.5C199.2 118.8 199 119 198.9 119.3L168.3 161.5C163.6 168 164.1 178.2 171.8 183.8C178.8 188.9 188.9 187.6 194.2 180.3L236.6 121.9C249.3 105.0000000000001 256.1 84.5000000000001 256.1 63.9V-56.1C256.1 -60.4999999999999 259.7000000000001 -64.0999999999999 264.1 -64.0999999999999H280.1C284.5 -64.0999999999999 288.1 -60.4999999999999 288.1 -56.0999999999999V63.9000000000001C288.1 91.6000000000001 279.1 118.5000000000001 262.5 140.7000000000001L220 199.2zM389.1 259.2C399.2000000000001 288.8 381.8 319 354 327L294.9 343.9C286.1 346.4 280 354.5 280 363.6C280 374.9 289.2 384.1 300.5 384.1H337.4C345.6 384.1 353.5 381.5 360 376.8C363 374.6 367.2 375.3 369.8 378L381.2 389.4C384.7 392.9 384.1 398.6 380.2 401.6C368 410.9 353.1 416 337.4 416H336V440C336 444.4 332.4 448 328 448H312C307.6 448 304 444.4 304 440V416H300.5C269.9 416 245.4 389.7 248.3 358.5C250.4 336.3 267.4000000000001 318.4 288.8 312.3L345.2 296.2000000000001C354 293.7000000000001 360.1 285.6 360.1 276.5C360.1 265.2000000000001 350.9 256 339.6 256H302.7C294.5 256 286.6 258.6 280.1 263.3000000000001C277.1 265.5 272.9 264.8000000000001 270.3 262.1L258.9 250.7000000000001C255.4 247.2000000000001 256 241.5000000000001 259.9 238.5000000000001C272.2 229.1000000000001 287.1 224.0000000000001 302.8 224.0000000000001H304.2V200.0000000000001C304.2 195.6000000000001 307.8 192.0000000000001 312.2 192.0000000000001H328.2C332.5999999999999 192.0000000000001 336.2 195.6000000000001 336.2 200.0000000000001V224.0000000000001H337.5999999999999C360.2 224.0000000000001 381.7 237.6000000000001 389.0999999999999 259.2000000000001z" />
+    <glyph glyph-name="hands"
+      unicode="&#xF4C2;"
+      horiz-adv-x="640" d=" M220 199.2C206 218.4 170.9 230.6 145.5 203.1C129.9 186.3 129.6 160.3 143 141.8L171.6 102.5C178.1 93.6 165.1 83.4 158 91.8L96 165.1V302.2C96 328.2 74.8 351.5 48.8 351.9C21.9 352.4 0 330.8 0 304V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L117.5 -30.1C122.9 -36.9 126.4 -47.6 127.6 -57.1C128.1 -61.1 131.6 -63.9999999999999 135.6 -63.9999999999999H151.6C156.4 -63.9999999999999 160.1 -60.1 159.6 -55.3C158 -39.3 152.1 -21.9999999999999 142.5 -10.1L35.5 123.6C33.2 126.4 32 130 32 133.6V304C32 325 64 325.6 64 303.3V153.6L128.6 76.1C165.5 31.9 225.4 78.8 199.4 118.5C199.2 118.8 199 119 198.9 119.3L168.3 161.5C163.6 168 164.1 178.2 171.8 183.8C178.8 188.9 188.9 187.6 194.2 180.3L236.6 121.9C249.3 105.0000000000001 256.1 84.5000000000001 256.1 63.9V-56.1C256.1 -60.4999999999999 259.7000000000001 -64.0999999999999 264.1 -64.0999999999999H280.1C284.5 -64.0999999999999 288.1 -60.4999999999999 288.1 -56.0999999999999V63.9000000000001C288.1 91.6000000000001 279.1 118.5000000000001 262.5 140.7000000000001L220 199.2zM640 304C640 330.8 618.1 352.4 591.2 352C565.2 351.6 544 328.3 544 302.3V165.2000000000001L482 91.9C474.9 83.5000000000001 461.9 93.6 468.4 102.6L497 141.9C510.4 160.4 510.1 186.5000000000001 494.5 203.2000000000001C469 230.6000000000001 433.9 218.5000000000001 420 199.3000000000001L377.6 140.9C361 118.7 352 91.7 352 64V-56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V64C384 84.6 390.8 105.1 403.5 122L445.9 180.4C451.2 187.7 461.2 189.1 468.3 183.9C476.1 178.3 476.6 168.1 471.8 161.6L441.2 119.4C441 119.1 440.8 118.9 440.7 118.6C414.5999999999999 78.9 474.5999999999999 31.9 511.4999999999999 76.2L576.0999999999999 153.7V303.4C576.0999999999999 325.7 608.0999999999999 325.1 608.0999999999999 304.1V133.7C608.0999999999999 130.1 606.8999999999999 126.5 604.5999999999999 123.7L497.6 -10C488.1 -21.9 482.1 -39.2 480.5 -55.2C480 -60 483.7 -63.9 488.5 -63.9H504.5C508.5 -63.9 512 -61 512.5 -57C513.7 -47.4 517.1 -36.8 522.6 -30L629.6 103.7C636.4 112.2 640.1 122.8 640.1 133.7L640 304z" />
+    <glyph glyph-name="handshake-alt"
+      unicode="&#xF4C6;"
+      horiz-adv-x="640" d=" M238.4 271.4L321.5 347.6C324.5 350.3 328.3 351.8 332.3 351.8H433.3C437.6 351.8 441.6 350.1 444.7 347L505.4 287.9H632C636.4 287.9 640 291.5 640 295.9V311.9C640 316.3 636.4 319.9 632 319.9H518.5L467.3 369.8C458.2 378.9 446.2 383.9 433.4000000000001 383.9H332.4000000000001C322.0000000000001 383.9 312.3 380 304.1 373.9C295.7000000000001 380.4 285.4000000000001 384.2 274.8 384.2H205.3C192.6 384.2 180.4 379.1 171.3 370.1L121.4 320H8C3.6 320 0 316.4 0 312V296C0 291.6 3.6 288 8 288H134.6L193.9 347.3C196.9 350.3 201 352 205.2 352H274.7C275.6 349.8 275 351.3 275.8 349.1L216.8 295C188.6 269.1 187.2 225.8 212.6 198.1C226.9000000000001 182.5 271.2000000000001 158.8 309.5 193.9L332.3 214.8L457.9 112.9C464.7 107.4 465.8 97.2 460.2 90.4L450.7 78.7C445.3 72.1 435.3 70.6 428.2 76.4L410.4 90.8L368.9 39.8C361.4 30.4999999999999 347.9 29.6 339.5 36.4L308.9 62.5L298.5 49.7C281.8 29.2 251.5 26 231.9 41.8L142 127.9H8C3.6 127.9 0 124.3 0 119.9V103.9C0 99.5 3.6 95.9 8 95.9H129.2L210.7 17.9C240.5 -6.2 282.5 -5.5 311.7 18.1L318.9 11.9C328.5 4.1 340.2 0 352.4 0C368.4 0 383.5 7 393.8 19.6L415.7 46.5C432.0999999999999 37.6 458.5999999999999 37.5 475.6999999999999 58.5L485.1999999999999 70.2C491.3999999999999 77.8 494.8 86.8 495.6999999999999 95.9H632C636.4 95.9 640 99.5 640 103.9V119.9C640 124.3 636.4 127.9 632 127.9H486.8C484.3 131.4 481.5 134.8 478 137.7L356.1 236.7L384.5 262.8C391 268.8 391.5 278.9 385.5 285.4S369.4 292.3 362.9 286.4L287.8 217.6C273.4 204.5 249.2 205.6 236.1 219.8C222.6 234.5 223.5 257.7 238.4 271.4z" />
+    <glyph glyph-name="handshake"
+      unicode="&#xF2B5;"
+      horiz-adv-x="640" d=" M16 128.2C24.8 128.2 32 135.4 32 144.2S24.8 160.2 16 160.2S0 153 0 144.2C0 135.3 7.2 128.2 16 128.2zM632 320L518.5 319.8L467.3 369.7000000000001C458.2 378.8 446.2 383.8 433.4000000000001 383.8H332.4000000000001C322.0000000000001 383.8 312.3 379.9 304.1 373.8C295.7000000000001 380.3 285.4000000000001 384.1 274.8 384.1H205.3C192.6 384.1 180.4 379 171.4 370L121.4 320H8C3.6 320 0 316.4 0 312V296C0 291.6 3.6 288 8 288H64V96.1H8C3.6 96.1 0 92.5 0 88.1V72.1C0 67.7000000000001 3.6 64.1 8 64.1H64C81.6 64.1 95.8 78.3 95.9 95.8H129.1L210.6 17.8C240.4000000000001 -6.3 282.4000000000001 -5.6 311.6 18L318.8 11.8C328.4000000000001 4 340.1 -0.1 352.3 -0.1C368.3 -0.1 383.4000000000001 6.9 393.7 19.5000000000001L415.6 46.4C432 37.5000000000001 458.4999999999999 37.4 475.6 58.4L485.1 70.1C491.3 77.7000000000001 494.7 86.7000000000001 495.6 95.8H544.1999999999999C544.3 78.3 558.5999999999999 64.1 576.0999999999999 64.1H632.0999999999999C636.4999999999999 64.1 640.0999999999999 67.7000000000001 640.0999999999999 72.1V88.1C640.0999999999999 92.5 636.4999999999999 96.1 632.0999999999999 96.1H576.0999999999999V287.8L632.0999999999999 288C636.4999999999999 288 640.0999999999999 291.6 640.0999999999999 296V312C639.9999999999999 316.5 636.3999999999999 320 631.9999999999999 320zM460.2 90.4L450.7 78.7C445.3 72.1 435.3 70.6 428.2 76.4L410.4 90.8L368.9 39.8C361.4 30.4999999999999 347.9 29.6 339.5 36.4L308.9 62.5L298.5 49.7C281.8 29.2 251.5 26 231.9 41.8L142 127.9H96V288.1H134.6L193.9 347.4C196.9 350.4 201 352.1 205.2 352.1H274.7C275.6 349.9 275 351.4 275.8 349.2L216.8 295C188.6 269.1 187.2 225.8 212.6 198.1C226.9000000000001 182.5 271.2000000000001 158.8 309.5 193.9L332.3 214.8L457.9 112.9C464.7 107.3 465.7 97.2 460.2 90.4zM544 127.9H486.8C484.3 131.4 481.5 134.8 478 137.7L356.1 236.7L384.5 262.8C391 268.8 391.5 278.9 385.5 285.4S369.4 292.3 362.9 286.4L287.8 217.6C273.4 204.5 249.2 205.6 236.1 219.8C222.5 234.6 223.4 257.8 238.3 271.5L321.4 347.7C324.4 350.4 328.2 351.9 332.2 351.9H433.2C437.5 351.9 441.5 350.2 444.6 347.1L505.3 288H544V127.9zM624 160.1C615.2 160.1 608 152.9 608 144.1S615.2 128.1 624 128.1S640 135.3 640 144.1C640 153 632.8 160.1 624 160.1z" />
+    <glyph glyph-name="hanukiah"
+      unicode="&#xF6E6;"
+      horiz-adv-x="624" d=" M232 320C245.25 320 256 331.94 256 346.67S232 400 232 400S208 361.39 208 346.67S218.75 320 232 320zM392 320C405.25 320 416 331.94 416 346.67S392 400 392 400S368 361.39 368 346.67S378.75 320 392 320zM384 288C379.58 288 376 284.42 376 280V144H408V280C408 284.42 404.42 288 400 288H384zM448 288C443.58 288 440 284.42 440 280V144H472V280C472 284.42 468.42 288 464 288H448zM456 320C469.25 320 480 331.94 480 346.67S456 400 456 400S432 361.39 432 346.67S442.75 320 456 320zM520 320C533.25 320 544 331.94 544 346.67S520 400 520 400S496 361.39 496 346.67S506.75 320 520 320zM512 288C507.58 288 504 284.42 504 280V144H536V280C536 284.42 532.42 288 528 288H512zM312 368C325.25 368 336 379.94 336 394.67S312 448 312 448S288 409.39 288 394.67S298.75 368 312 368zM224 288C219.58 288 216 284.42 216 280V144H248V280C248 284.42 244.42 288 240 288H224zM608 288H592C587.58 288 584 284.42 584 280V144C584 117.49 562.51 96 536 96H328V328C328 332.42 324.42 336 320 336H304C299.58 336 296 332.42 296 328V96H88C61.49 96 40 117.49 40 144V280C40 284.42 36.42 288 32 288H16C11.58 288 8 284.42 8 280V144C8 99.82 43.82 64 88 64H296V-32H96C91.58 -32 88 -35.58 88 -40V-56C88 -60.42 91.58 -64 96 -64H528C532.42 -64 536 -60.42 536 -56V-40C536 -35.58 532.42 -32 528 -32H328V64H536C580.18 64 616 99.82 616 144V280C616 284.42 612.42 288 608 288zM48 346.67C48 361.39 24 400 24 400S0 361.39 0 346.67S10.75 320 24 320S48 331.94 48 346.67zM600 400S576 361.39 576 346.67S586.75 320 600 320S624 331.94 624 346.67S600 400 600 400zM96 288C91.58 288 88 284.42 88 280V144H120V280C120 284.42 116.42 288 112 288H96zM104 320C117.25 320 128 331.94 128 346.67S104 400 104 400S80 361.39 80 346.67S90.75 320 104 320zM168 320C181.25 320 192 331.94 192 346.67S168 400 168 400S144 361.39 144 346.67S154.75 320 168 320zM160 288C155.58 288 152 284.42 152 280V144H184V280C184 284.42 180.42 288 176 288H160z" />
+    <glyph glyph-name="hashtag"
+      unicode="&#xF292;"
+      horiz-adv-x="448" d=" M446.381 265.891L447.81 273.891C449.123 281.246 443.468 288 435.997 288H337.396L357.734 401.891C359.0470000000001 409.246 353.392 416 345.92 416H337.793A12 12 0 0 1 325.98 406.109L304.89 288H177.396L197.734 401.891C199.047 409.246 193.392 416 185.92 416H177.793A12 12 0 0 1 165.98 406.109L144.89 288H42.003A12 12 0 0 1 30.19 278.1090000000001L28.761 270.1090000000001C27.448 262.754 33.103 256 40.575 256H139.175L116.318 128H13.432A12 12 0 0 1 1.619 118.109L0.19 110.109C-1.123 102.754 4.532 96 12.003 96H110.604L90.266 -17.891C88.953 -25.246 94.608 -32 102.08 -32H110.207A12 12 0 0 1 122.02 -22.109L143.11 96H270.6040000000001L250.2660000000001 -17.891C248.953 -25.246 254.608 -32 262.08 -32H270.207A12 12 0 0 1 282.02 -22.109L303.11 96H405.996A12 12 0 0 1 417.809 105.891L419.238 113.891C420.551 121.2460000000001 414.896 128 407.425 128H308.824L331.681 256H434.5669999999999A12 12 0 0 1 446.3809999999999 265.891zM276.318 128H148.825L171.682 256H299.176L276.318 128z" />
+    <glyph glyph-name="hat-santa"
+      unicode="&#xF7A7;"
+      horiz-adv-x="640" d=" M627.2 258.5C626.3000000000001 270.8 621.1 282.7 611.9000000000001 291.9C602.9000000000001 300.9 591.2 306.3 578.6000000000001 307.2000000000001C569.3000000000002 315.3 557.1000000000001 320 544.1000000000001 320S518.9000000000001 315.3 509.6000000000001 307.2000000000001C505.3000000000001 306.9 501.3000000000001 305.4 497.3000000000001 304C419.7 382.4 379.9 416 305.2 416C236.6 416 174.8 374.8 148.4 311.5L58.7 96H48C21.5 96 0 74.5 0 48V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V48C512 74.5 490.5 96 464 96H452.6L391.6 238.2C389.2000000000001 243.7 393.5 249.4 398.9000000000001 249.4C399.9000000000001 249.4 400.9000000000001 249.2 401.9000000000001 248.8L449.0000000000001 229.9C448.8000000000001 227.9 447.9000000000001 226 447.9000000000001 223.9C447.9000000000001 210.8 452.6 198.8 460.7 189.4C461.6 177.1 466.8000000000001 165.2 476.0000000000001 156C485.1000000000001 146.9 496.9 141.5 509.6000000000001 140.5C518.9000000000001 132.5 530.9000000000001 127.8 543.9000000000001 127.8S568.9000000000001 132.5 578.2 140.5C590.9000000000001 141.5 602.7 146.9 611.8000000000001 156C621.0000000000001 165.2 626.2 177.1 627.1 189.4C635.2 198.7 639.9 210.8 639.9 223.9S635.3 249.1 627.1999999999999 258.5zM480 48V16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V48C32 56.8 39.2 64 48 64H464C472.8 64 480 56.8 480 48zM398.9 281.4C385.4 281.4 373 274.7000000000001 365.5 263.4C358.1 252.2 356.8 238.1 362.2 225.7L417.8 96H93.3L178 299.2C199.5 350.7 249.4 384 305.2 384C366.5 384 399.1 357.4 471.1 284.7C465.7 277.1 461.9 268.7 461 259.6L413.7 278.5C409 280.5 404 281.4 398.9 281.4zM592.5999999999999 203.9C596.9999999999999 195.8 596.0999999999999 185.6 589.1999999999999 178.8C584.9999999999999 174.6 579.5999999999999 172.6 574.0999999999999 172.6C570.5999999999999 172.6 567.1999999999999 173.8 564.0999999999999 175.5C561.4999999999999 166.7 553.5999999999999 160.1 543.9999999999999 160.1S526.4999999999999 166.7000000000001 523.8999999999999 175.5C520.6999999999998 173.8 517.3999999999999 172.6 513.8999999999999 172.6C508.3999999999999 172.6 502.9999999999999 174.7000000000001 498.7999999999998 178.8C491.9999999999998 185.6 491.0999999999999 195.8 495.3999999999999 203.9C486.5999999999999 206.5 479.9999999999999 214.4 479.9999999999999 224S486.5999999999999 241.5 495.3999999999999 244.1C490.9999999999999 252.2 491.8999999999999 262.4 498.7999999999998 269.2C502.8999999999999 273.3 508.0999999999999 275.2 513.3999999999999 275.2C516.9999999999999 275.2 520.5999999999999 274.3 523.8999999999999 272.5C526.4999999999999 281.3 534.3999999999999 287.9 543.9999999999999 287.9S561.4999999999999 281.3 564.0999999999999 272.5C567.3999999999999 274.3 570.9999999999999 275.2 574.5999999999999 275.2C579.8999999999999 275.2 585.1999999999999 273.2 589.1999999999999 269.2C595.9999999999999 262.4 596.9999999999999 252.2 592.5999999999999 244.1C601.3999999999999 241.5 607.9999999999999 233.6 607.9999999999999 224S601.3999999999999 206.5 592.5999999999999 203.9z" />
+    <glyph glyph-name="hat-winter"
+      unicode="&#xF7A8;"
+      horiz-adv-x="512" d=" M489.9 62C478.1 135.4 442.5 255.5 335.8 319.4V320.1C345.8 327.9 352 339.9 352 353.2S345.8999999999999 378.4 335.8 386.3C337.4 399 333.2 411.8 323.8 421.1C314.4 430.4 301.6 434.5 289 433C273.3999999999999 453 238.6 453 222.9 432.9C210.3 434.3 197.5 430.3 188.1 421C178.7 411.6 174.6 398.8 176.1 386.2C166.1 378.4 159.9 366.4 159.9 353.1S166 327.9 176.1 320V319.3C69.5 255.5 33.9 135.4 22.1 62C9.3 57.8 0 46.2 0 32V-32C0 -49.7 14.3 -64 32 -64H480C497.7 -64 512 -49.7 512 -32V32C512 46.2 502.7 57.8 489.9 62zM456.8 64H55.2C57.8 78.4 61.2 94.1 66 111.1L128 142.1L192 110.1L256 142.1L320 110.1L384 142.1L446 111.1C450.8 94.1 454.3 78.4 456.8 64zM199.8 362.9L218.8 368.5L209.4 385.9C207.5999999999999 389.2 206.9 394.4 210.8 398.3C214.7 402.3 220 401.5 223.3 399.8L240.7 390.4L246.3 409.4C247.5 413.3 250.9 417.2 256.1 417.2S264.8 413.3 265.9 409.4L271.5 390.4L288.9 399.8C292.2 401.6 297.4 402.3 301.4 398.3C305.3 394.4 304.6 389.2 302.8 385.9L293.4 368.5L312.4 362.9C316.3 361.8 320.2 358.3 320.2 353.1S316.3 344.4 312.4 343.3L293.4 337.7L302.8 320.3C304.6 317 305.3 311.8 301.4 307.9C298.5 305 295.8 302.7 288.9 306.4L271.5 315.9L265.9 296.9C264.7 293 261.3 289.1 256.1 289.1S247.4 293 246.3 296.9L240.7 315.9L223.3 306.4C216.4 302.6 213.7 305 210.8 307.9C206.9 311.8 207.6 317 209.4 320.3L218.8 337.7L199.8 343.3C195.9 344.4 192 347.9 192 353.1S195.9 361.8 199.8 362.9zM186.5 287.3C187.0999999999999 286.6 187.5 285.8 188.1999999999999 285.2C197.3999999999999 276 210.1999999999999 271.5 223.1999999999999 273C231 263.1 242.8999999999999 257.1 256.0999999999999 257.1S281.2 263.1 288.9999999999999 273C301.9999999999999 271.4 314.7999999999999 276 323.9999999999999 285.2C324.6999999999999 285.9 325.0999999999999 286.6 325.6999999999999 287.3C378.0999999999999 253.5 410.7999999999999 203.7 430.8999999999999 154.5L384 177.9L320 145.9L256 177.9L192 145.9L128 177.9L81.3 154.5C101.4 203.7 134 253.5 186.5 287.3zM480 -32H32V32H480V-32z" />
+    <glyph glyph-name="hat-witch"
+      unicode="&#xF6E7;"
+      horiz-adv-x="576" d=" M573.99 8.11L563.5 20.14C560.67 23.39 555.85 23.69 552.53 20.94C537.16 8.24 519.97 -1.54 502.11 -9.81L393.59 233.64A64.009 64.009 0 0 0 391.7 279.09L398.05 298.13C402.4 311.19 414.62 320 428.4 320H467.6C481.3699999999999 320 493.6 311.19 497.96 298.12L512 256L542.36 333.24C546.19 344.74 543.2 357.42 534.63 365.99L465.28 438.63A31.974000000000004 31.974000000000004 0 0 1 442.64 448C437.21 448 431.74 446.62 426.77 443.78L260.43 340.82A128.004 128.004 0 0 1 206.96 281.67L74.07 -9.89C56.14 -1.61 38.89 8.2 23.46 20.95C20.14 23.69 15.32 23.4 12.49 20.15L2.01 8.11C-0.95 4.72 -0.61 -0.57 2.85 -3.44C50.01 -42.55 109.39 -64 170.92 -64H405.08C466.61 -64 525.98 -42.55 573.15 -3.44C576.61 -0.57 576.9499999999999 4.71 573.99 8.11zM236.21 268.67C244.57 287.48 258.44 302.82 277.2800000000001 313.61L442.65 415.99L511.97 343.39L509.29 336.5800000000001A63.876 63.876 0 0 1 467.6 352H428.4000000000001A63.913000000000004 63.913000000000004 0 0 1 367.6900000000001 308.24L361.3400000000001 289.2000000000001C353.9000000000001 266.87 354.9000000000001 242.6600000000001 364.36 220.6L446.7100000000001 35.87C433.29 33.53 419.7000000000001 31.99 405.8800000000001 31.99H352V35.99C352 51.43 339.44 63.99 324 63.99H252C236.56 63.99 224 51.43 224 35.99V31.99H170.13C156.57 31.99 143.22 33.44 130.03 35.7L236.21 268.67zM103.99 -21.41L116.51 6.0599999999999C134.09 2.47 151.93 -1e-13 170.12 -1e-13H224V-32.0000000000001H170.92C147.96 -32.0000000000001 125.58 -27.9300000000001 103.99 -21.4100000000001zM256 -32V32H320V-32H256zM352 -32V0H405.87C424.2200000000001 0 442.2100000000001 2.52 459.94 6.17L472.21 -21.35C450.57 -27.91 428.1 -32 405.07 -32H352z" />
+    <glyph glyph-name="hat-wizard"
+      unicode="&#xF6E8;"
+      horiz-adv-x="512" d=" M288 256L272 288L256 256L224 240L256 224L272 192L288 224L320 240L288 256zM504 -32H480L379.18 200.66A73.068 73.068 0 0 0 376.9700000000001 253.1L442.67 448L223.83 324.32C196.22 308.7200000000001 174.37 284.81 161.46 256.07L32 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H504C508.42 -64 512 -60.42 512 -56V-40C512 -35.58 508.42 -32 504 -32zM67.08 -32L98.8 38.6L154.66 10.67L176 -32H67.08zM192 7.55L178.52 34.52L151.55 48L178.51 61.48L192 88.45L205.48 61.49L232.45 48L205.49 34.52L192 7.55zM208 -32L229.33 10.67L304 48L229.33 85.33L192 160L154.67 85.33L109.71 62.85L190.65 242.96C200.84 265.63 217.76 284.14 239.58 296.47L385.6600000000001 379.02L346.6600000000001 263.32C338.3400000000001 238.63 339.4600000000001 211.85 349.8300000000001 187.94L373.5300000000001 133.24L352 144L336 176L320 144L288 128L320 112L336 80L352 112L377.26 124.63L445.12 -32H208z" />
+    <glyph glyph-name="haykal"
+      unicode="&#xF666;"
+      horiz-adv-x="512" d=" M496.25 245.48L386.25 260.92L428.07 365.26C433.33 378.37 423.09 390.81 411.18 390.81C407.98 390.81 404.6600000000001 389.91 401.49 387.89L307.45 328L273.35 435.18C270.64 443.73 263.32 448 256 448C248.68 448 241.36 443.73 238.65 435.18L204.56 327.99L110.52 387.88C107.34 389.9000000000001 104.02 390.8 100.83 390.8C88.92 390.8 78.68 378.37 83.94 365.25L125.76 260.9100000000001L15.76 245.4700000000001C-1.77 243.01 -5.91 219.2 9.73 210.8L107.89 158.14L33.4 74.61C22.48 62.36 31.68 43.68 46.68 43.68C48 43.68 49.35 43.82 50.75 44.13L159.32 67.78L155.21 -44.77C154.78 -56.42 164.08 -63.99 173.62 -63.99C178.78 -63.99 184.01 -61.78 187.82 -56.81L256 32.09L324.18 -56.8099999999999C327.99 -61.78 333.22 -63.9899999999999 338.38 -63.9899999999999C347.93 -63.9899999999999 357.2199999999999 -56.42 356.79 -44.77L352.68 67.78L461.2499999999999 44.1300000000001C462.6399999999999 43.83 463.9999999999999 43.6800000000001 465.3199999999999 43.6800000000001C480.3299999999999 43.6800000000001 489.5199999999999 62.3700000000001 478.5999999999999 74.6100000000001L404.1199999999999 158.1500000000001L502.2799999999999 210.8100000000001C517.9299999999998 219.2100000000001 513.7899999999998 243.0200000000001 496.2499999999999 245.4800000000001zM389.37 186.43L353.52 167.19L380.72 136.68L427.51 84.2L359.3 99.06L319.6500000000001 107.7L321.1500000000001 66.59L323.73 -4.12L280.9000000000001 51.73L256 84.2L231.1 51.73L188.27 -4.12L190.85 66.59L192.35 107.7L152.7 99.06L84.49 84.2L131.28 136.68L158.48 167.19L122.63 186.43L60.96 219.52L130.07 229.22L170.25 234.86L154.98 272.97L128.71 338.52L187.79 300.9L222.14 279.03L234.59 318.18L256 385.51L277.42 318.17L289.87 279.02L324.2200000000001 300.89L383.3 338.51L357.0300000000001 272.96L341.7600000000001 234.85L381.9400000000001 229.21L451.0500000000001 219.51L389.3700000000001 186.43z" />
+    <glyph glyph-name="hdd"
+      unicode="&#xF0A0;"
+      horiz-adv-x="576" d=" M566.819 220.623L462.377 364.232A48.001 48.001 0 0 1 423.557 384H152.443A47.998000000000005 47.998000000000005 0 0 1 113.624 364.232L9.181 220.623A47.99600000000001 47.99600000000001 0 0 1 0 192.391V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V192.391A47.99600000000001 47.99600000000001 0 0 1 566.819 220.623zM139.503 345.411A16.048 16.048 0 0 0 152.443 352H423.558C428.66 352 433.497 349.5370000000001 436.498 345.411L524.796 224H51.204L139.503 345.411zM544 176V48C544 39.177 536.822 32 528 32H48C39.178 32 32 39.177 32 48V176C32 184.837 39.163 192 48 192H528C536.837 192 544 184.837 544 176zM488 112C488 98.745 477.255 88 464 88S440 98.745 440 112S450.745 136 464 136S488 125.255 488 112zM424 112C424 98.745 413.255 88 400 88S376 98.745 376 112S386.745 136 400 136S424 125.255 424 112z" />
+    <glyph glyph-name="head-side"
+      unicode="&#xF6E9;"
+      horiz-adv-x="512" d=" M509.21 173C488.27 220.12 460.77 324.73 436.13 359.75C397.68 414.4 334.56 448 266.09 448H200.01C95.47 448 4.12 367.92 0.14 263.45C-2.13 203.67 23.1 149.86 64 113.18V-56C64 -60.42 67.58 -64 72 -64H88C92.42 -64 96 -60.42 96 -56V127.46L85.36 137C49.71 168.97 30.3 214.62 32.11 262.23C35.35 347.02 110.66 416 200.01 416H266.09C323.28 416 377.06 388.0900000000001 409.95 341.3400000000001C422.47 323.54 439.06 274.6 452.4 235.27C462.13 206.56 471.33 179.44 479.97 160H416V64C416 46.36 401.64 32 384 32H288V-56C288 -60.42 291.58 -64 296 -64H312C316.42 -64 320 -60.42 320 -56V0H384C419.35 0 448 28.65 448 64V128H479.96C503.12 128 518.61 151.84 509.21 173zM352 256C352 273.67 337.67 288 320 288S288 273.67 288 256S302.33 224 320 224S352 238.33 352 256z" />
+    <glyph glyph-name="head-vr"
+      unicode="&#xF6EA;"
+      horiz-adv-x="512" d=" M480 384H383.51C345.04 424.02 291.6 448 234.09 448H200.01C127.59 448 61.92 409.3 26.82 350.96C11.71 348.39 0 335.8400000000001 0 320V256C0 238.33 14.33 224 32 224H216C216.72 224 217.18 224.59 217.85 224.77C236.84 204.67 264.12 192 293.43 192H480C497.67 192 512 206.33 512 224V352C512 369.67 497.67 384 480 384zM32 256V320H197.66C193.56 308.44 191.45 295.95 192.13 282.8400000000001C192.63 273.3400000000001 195.02 264.4700000000001 198.23 256H32zM216.57 351.76C216.35 351.78 216.22 352 216 352H67.08C97.91 390.58 146.13 416 200.02 416H234.1C270.39 416 304.89 404.21 333.92 384H288C259.53 384 234.15 371.44 216.57 351.76zM384 224H288C252.71 224 224 252.71 224 288S252.71 352 288 352H384V224zM480 224H416V352H480V224zM46.19 192H11.26C22.12 161.46 40.33 134.41 64 113.18V-56C64 -60.42 67.58 -64 72 -64H88C92.42 -64 96 -60.42 96 -56V127.46L85.37 137C68.1 152.49 55.22 171.41 46.19 192zM384 160V64C384 46.36 369.64 32 352 32H288V-56C288 -60.42 291.58 -64 296 -64H312C316.42 -64 320 -60.42 320 -56V0H352C387.35 0 416 28.65 416 64V128H447.96C466.41 128 479.75 143.15 479.76 160H384z" />
+    <glyph glyph-name="heading"
+      unicode="&#xF1DC;"
+      horiz-adv-x="448" d=" M304.51 383.799H352.361V208.729H95.639V383.799H143.49C150.117 383.799 155.49 389.1720000000001 155.49 395.799V404C155.49 410.627 150.117 416 143.49 416H13.698C7.071 416 1.698 410.627 1.698 404V395.799C1.698 389.1720000000001 7.071 383.799 13.698 383.799H61.549V0.196H13.698C7.071 0.196 1.698 -5.177 1.698 -11.804V-20.004C1.698 -26.631 7.071 -32.004 13.698 -32.004H143.49C150.117 -32.004 155.49 -26.631 155.49 -20.004V-11.804C155.49 -5.177 150.117 0.196 143.49 0.196H95.639V176.527H352.361V0.196H304.51C297.883 0.196 292.51 -5.177 292.51 -11.804V-20.004C292.51 -26.631 297.883 -32.004 304.51 -32.004H434.302C440.9290000000001 -32.004 446.302 -26.631 446.302 -20.004V-11.804C446.302 -5.177 440.9290000000001 0.196 434.302 0.196H386.451V383.799H434.302C440.9290000000001 383.799 446.302 389.1720000000001 446.302 395.799V404C446.302 410.627 440.9290000000001 416 434.302 416H304.51C297.883 416 292.51 410.627 292.51 404V395.799C292.51 389.171 297.883 383.799 304.51 383.799z" />
+    <glyph glyph-name="headphones-alt"
+      unicode="&#xF58F;"
+      horiz-adv-x="512" d=" M384 160H352C334.33 160 320 145.65 320 127.94V0.06C320 -17.64 334.33 -32 352 -32H384C419.35 -32 448 -3.29 448 32.12V95.88C448 131.29 419.35 160 384 160zM416 32.12C416 14.44 401.64 0.06 384 0.06H352V127.94H384C401.64 127.94 416 113.56 416 95.88V32.12zM160 160H128C92.65 160 64 131.29 64 95.88V32.12C64 -3.29 92.65 -32 128 -32H160C177.67 -32 192 -17.65 192 0.06V127.94C192 145.65 177.67 160 160 160zM160 0.06H128C110.36 0.06 96 14.44 96 32.12V95.88C96 113.56 110.36 127.94 128 127.94H160V0.06zM256 416C114.84 416 0 301.15 0 160V40C0 35.58 3.58 32 8 32H24C28.42 32 32 35.58 32 40V160C32 283.52 132.5 384 256 384S480 283.52 480 160V40C480 35.58 483.58 32 488 32H504C508.42 32 512 35.58 512 40V160C512 301.15 397.16 416 256 416z" />
+    <glyph glyph-name="headphones"
+      unicode="&#xF025;"
+      horiz-adv-x="512" d=" M256 416C114.517 416 0 301.503 0 160V108.571A16.003 16.003 0 0 1 8.213 94.593L32.017 81.331C32.012 80.888 32 80.445 32 80C32 18.144 82.144 -32 144 -32H168C181.255 -32 192 -21.255 192 -8V168C192 181.255 181.255 192 168 192H144C94.325 192 52.21 159.657 37.547 114.882L32 117.973V160C32 283.795 132.184 384 256 384C379.796 384 480 283.8160000000001 480 160V117.973L474.453 114.8830000000001C459.79 159.657 417.676 192 368 192H344C330.745 192 320 181.255 320 168V-8C320 -21.255 330.745 -32 344 -32H368C429.856 -32 480 18.144 480 80C480 80.445 479.988 80.888 479.983 81.332L503.787 94.594A16.002 16.002 0 0 1 512 108.572V160C512 301.482 397.503 416 256 416zM144 160H160V0H144C99.888 0 64 35.888 64 80S99.888 160 144 160zM368 0H352V160H368C412.112 160 448 124.112 448 80S412.112 0 368 0z" />
+    <glyph glyph-name="headset"
+      unicode="&#xF590;"
+      horiz-adv-x="512" d=" M192 224C192 241.67 177.67 256 160 256H128C92.65 256 64 227.35 64 192V128.36C64 93.01 92.65 64.36 128 64.36H160C177.67 64.36 192 78.69 192 96.36V224zM160 96.36H128C110.36 96.36 96 110.72 96 128.36V192C96 209.64 110.36 224 128 224H160V96.36zM384 64.36C419.35 64.36 448 93.01 448 128.36V192C448 227.35 419.35 256 384 256H352C334.33 256 320 241.67 320 224V96.36C320 78.69 334.33 64.36 352 64.36H384zM352 224H384C401.64 224 416 209.64 416 192V128.36C416 110.72 401.64 96.36 384 96.36H352V224zM256 448C113.97 448 3.92 330.18 0.1 192L0 168C0 163.58 3.58 160 8 160H24C28.42 160 32 163.58 32 168L32.09 192C35.43 312.81 131.63 416 256 416C379.5 416 480 315.52 480 192V16C480 -10.47 458.47 -32 432 -32H349.06C350.85 -26.97 352 -21.64 352 -16C352 10.51 330.51 32 304 32H240C213.49 32 192 10.51 192 -16S213.49 -64 240 -64H432C476.12 -64 512 -28.11 512 16V192C512 333.15 397.1600000000001 448 256 448zM304 -32H240C231.18 -32 224 -24.82 224 -16S231.18 0 240 0H304C312.82 0 320 -7.18 320 -16S312.82 -32 304 -32z" />
+    <glyph glyph-name="heart-broken"
+      unicode="&#xF7A9;"
+      horiz-adv-x="512" d=" M473.7 374.1C434.1 415.3 389.9 415.8 378.2 415.8C349.5 415.8 320.7 406.4 296.9 387.6C291.7 383.5 289.9 376.2 292 370L317 294.6L231.2 237.4C225 233.3 222.5 225.4 225.1 218.5L247.2 159.7L169.2 237.7L248.9 290.9C254.9 294.9 257.5 302.4 255.2 309.2L237.8 361.7C236.1 366.7 233.2 371.5 229.4 375.1C185.5 416.7 148.5 416.2 134.4 416.2C122.4 416.2 80.3 416.2 38.3 374.3C-10.4 324.3 -12.5 245 31 192L243.1 -26.5C246.6 -30.1 251.3 -32 255.9 -32C260.6 -32 265.2 -30.2 268.7 -26.5L481 192C524.5 245 522.4 324.3 473.7 374.1zM457 213.2L256 6.2L55 213.2C22.3 254 25 314.6 61 351.4C81.1 371.6 103.8 384 134.4 384C161.7 384 186 373.7 207.2 352L220.9 310.5L135.1 253.3C126.7 247.7 125.5 235.8 132.7 228.7L263.6 97.8C278.8 82.6 304 98.8 296.5 119L259.5 217.8L344.9 274.8C350.9 278.8 353.5 286.3 351.2 293.2000000000001L326 369C341.6 378.7 359.6 383.8 378.2 383.8C404.9 383.8 429.5 373.9 450.8 351.7C487.1 314.6 489.6999999999999 254 456.9999999999999 213.2z" />
+    <glyph glyph-name="heart-circle"
+      unicode="&#xF4C7;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM364 294.4C322.1 330.7 274.5 302.8 259.1 286.7L248 275.1L236.9 286.7C210.3 314.6 164.4 322.6 132 294.4C96.7 263.8 94.8 208.8 126.4 175.7L235.3 61.6C242.3 54.2 253.7 54.2 260.8 61.6L369.7000000000001 175.7000000000001C401.2000000000001 208.9 399.4000000000001 263.8000000000001 364.0000000000001 294.4000000000001zM347 197.9L248 94.1L149 197.9C132.3 215.4 128.6 249.5 152.4 270C174.6 289.3 202.4 276.8 214.3 264.3L248 229L281.7 264.3C290.4 273.5 319.2 291.1 343.6 270C367.4 249.5 363.7 215.5 347 197.9z" />
+    <glyph glyph-name="heart-rate"
+      unicode="&#xF5F8;"
+      horiz-adv-x="640" d=" M480 224C473.47 224 467.56 220.02 465.16 213.94L419.54 99.89L335.54 435.87C333.7200000000001 443.14 327.69 447.83 319.62 448C312.12 447.81 305.7800000000001 442.4700000000001 304.31 435.14L222.25 24.91L175.53 211.88A16.005 16.005 0 0 1 160 224H8C3.58 224 0 220.42 0 216V200C0 195.58 3.58 192 8 192H147.5L208.47 -51.88C210.25 -59.02 216.69 -64 224 -64H224.38C231.88 -63.81 238.22 -58.47 239.69 -51.14L321.75 359.0900000000001L400.4700000000001 44.12C402.1600000000001 37.39 408 32.5 414.9100000000001 32.03C422.5300000000001 31.7500000000001 428.29 35.62 430.85 42.06L490.85 192H632C636.42 192 640 195.58 640 200V216C640 220.42 636.42 224 632 224H480z" />
+    <glyph glyph-name="heart-square"
+      unicode="&#xF4C8;"
+      horiz-adv-x="448" d=" M340 302.4C325.6 314.9 309.4 320 293.6 320C270.8 320 249.0000000000001 309.3 235.0000000000001 294.7L224 283.1L212.9 294.7C199.2 309 177.3 320 154.2 320C138.5 320 122.4 314.9 107.9 302.4C72.6 271.8 70.7 216.8 102.3 183.7L211.2 69.6C218.2 62.2000000000001 229.6 62.2000000000001 236.7 69.6L345.6 183.7000000000001C377.2000000000001 216.9 375.4000000000001 271.8000000000001 340 302.4000000000001zM323 205.9L224 102.1L125 205.9C108.3 223.4 104.6 257.5 128.4 278C136.6 285.1 145.7 287.9000000000001 154.7 287.9000000000001C168.6 287.9000000000001 182 281 190.3 272.3000000000001L224 237L257.7 272.3C265.9 280.9 279.4 287.8 293.3 287.8C302.2 287.8 311.4000000000001 285 319.5 277.9C343.4 257.5 339.7 223.5 323 205.9zM400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16z" />
+    <glyph glyph-name="heart"
+      unicode="&#xF004;"
+      horiz-adv-x="512" d=" M462.3 385.3C407.8 431.7 326.3 424 275.7000000000001 371.8L256 351.4L236.3 371.7C195.5 413.9 113.2 439.3 49.7 385.3C-13.1 331.7 -16.4 235.5 39.8 177.5L233.3 -22.3C239.5 -28.7 247.7 -32 255.9 -32C264.1 -32 272.3 -28.8 278.5 -22.3L472 177.5C528.4 235.5 525.1 331.7 462.3 385.3zM449.2 199.7L256.4 -0.1L62.8 199.7C24.4 239.3 16.4 314.8 70.5 360.9C125.3 407.7 189.7 373.8 213.3 349.4L256 305.3L298.7 349.4C321.9 373.4 386.9 407.4 441.5 360.9C495.5 314.9 487.6 239.4 449.2 199.7z" />
+    <glyph glyph-name="heartbeat"
+      unicode="&#xF21E;"
+      horiz-adv-x="512" d=" M468.7 371.5C423.6 415.8 375 416 362.3 416C349.6 416 300.8 415.8 256 371.6C211.3 415.7 162.5 416 149.7 416C137 416 88.3 415.8 43.3 371.5C15.4 344 0 307.3 0 268.1C0 233.9 12.3 202 33.8 176H154.6L184.5 247.8L241.4 121.4C246.9 109.1 264.3 108.7 270.3 120.8L320 220.2L342.1 176H478.1C499.6 202 511.9 233.9 511.9 268.0999999999999C512 307.3 496.6 344 468.7 371.5zM462.5 208H361.9L334.3 263.2C328.4 275 311.6 275 305.7 263.2L256.8 165.3L198.6 294.6C192.8 307.4 174.6 307.1 169.2 294.2L133.3 208H49.5C40.3 222.6 6.9 290.7 67.8 350.7C90.4 372.9 120 384 149.7 384C183.6 384 204.2 377.7 256 326.7C311 380.9 330.5 384 362.3 384C392 384 421.6 372.9 444.1 350.7C505.1 290.6 471.6 222.5 462.5 208zM268.7 4.6C262.5 -1.5 252.5 -1.5 246.3 4.6L108.9 144H64L223.9 -18.2C242.6 -36.7 272.5 -36.6 291.2 -18.2L448 144H403.5L268.7 4.6z" />
+    <glyph glyph-name="helicopter"
+      unicode="&#xF533;"
+      horiz-adv-x="640" d=" M304 32H576C593.67 32 608 46.33 608 64C608 187.71 507.71 288 384 288V384H568C572.42 384 576 387.58 576 392V408C576 412.42 572.42 416 568 416H136C131.58 416 128 412.42 128 408V392C128 387.58 131.58 384 136 384H352V288H128L84.8 345.6C81.78 349.63 77.03 352 72 352H16.01C5.6 352 -2.04 342.2200000000001 0.49 332.12L32 224L192 160L278.4 44.8A31.991999999999997 31.991999999999997 0 0 1 304 32zM416 253.11C506.66 237.8 576 158.95 576 64H416V253.11zM212.22 186.38L203.89 189.71L58.35 247.92L37.33 320H64L102.4 268.8L112 256H384V64H304L217.6 179.2L212.22 186.38zM637.66 -21.65L626.35 -10.34C623.23 -7.22 618.16 -7.22 615.0400000000001 -10.34L607.44 -17.94C598.44 -26.94 586.24 -31.99 573.5100000000001 -31.99H232C227.58 -31.99 224 -35.57 224 -39.99V-55.99C224 -60.41 227.58 -63.99 232 -63.99H573.48C594.7 -63.99 615.0600000000001 -55.56 630.0600000000001 -40.55L637.6500000000001 -32.96C640.7800000000001 -29.84 640.7800000000001 -24.78 637.6600000000001 -21.65z" />
+    <glyph glyph-name="helmet-battle"
+      unicode="&#xF6EB;"
+      horiz-adv-x="512" d=" M510.28 224.63L429.4100000000001 443.4700000000001C428.26 446.58 425.63 448 423 448C419.5 448 415.99 445.48 415.99 441.07V334.68C361.4100000000001 412.71 255.99 448 255.99 448S150.6 412.7200000000001 96.01 334.7V441.07C96.01 445.48 92.51 448 89 448C86.37 448 83.73 446.58 82.58 443.4700000000001L1.72 224.63C-2.14 209.58 0.56 193.72 9.13 181.12C18.12 167.89 32.66 160 48.02 160C51.31 160 54.5 160.42 57.59 161.11C50.2 115.49 38.37 79.61 32.87 56.47C29.44 42.04 36.46 27.1 49.19 21.23L239.99 -64V192L159.99 208V224H351.98V208L271.98 192V-64L462.79 21.23C475.52 27.1 482.54 42.04 479.11 56.47C473.61 79.61 461.78 115.49 454.39 161.11C457.49 160.42 460.68 160 463.98 160C479.34 160 493.8799999999999 167.89 502.8699999999999 181.12C511.4399999999999 193.72 514.14 209.58 510.28 224.63zM64.01 211.11C64.01 200.75 56.68 192 48.01 192C43.26 192 38.61 194.66 35.59 199.11C32.41 203.78 31.29 209.66 32.43 215.42L64.01 300.89V211.11zM303.99 -14.66V165.77L383.99 181.77V256H128V181.77L208 165.77V-14.66L64.13 49.6C65.64 55.9 67.65 63.15 69.89 71.3C80.28 109.05 96 166.11 96 237.18C96 341.38 219.41 399 256.04 413.8C292.7200000000001 399.09 415.99 341.8400000000001 415.99 237.17C415.99 166.1 431.7 109.05 442.1 71.29C444.3400000000001 63.14 446.35 55.89 447.86 49.59L303.99 -14.66zM476.41 199.1100000000001C473.39 194.6600000000001 468.74 192 463.99 192C455.3199999999999 192 447.99 200.75 447.99 211.11V300.88L479.5699999999999 215.41C480.7099999999999 209.65 479.5799999999999 203.78 476.4099999999999 199.11z" />
+    <glyph glyph-name="hexagon"
+      unicode="&#xF312;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM525.8 183.9L413.8 -8.1C410.9 -13 405.6 -16 400 -16H176C170.3 -16 165 -13 162.2 -8.1L50.2 183.9C47.3 188.9 47.3 195.1 50.2 200L162.2 392C165 397 170.3 400 176 400H400C405.7 400 411 397 413.8 392.1L525.8 200.1C528.6999999999999 195.1 528.6999999999999 188.9 525.8 183.9z" />
+    <glyph glyph-name="highlighter"
+      unicode="&#xF591;"
+      horiz-adv-x="544" d=" M528.61 372.0900000000001L468.12 432.61C457.91 442.84 444.45 448 430.98 448A52.379999999999995 52.379999999999995 0 0 1 396.23 434.85L110.59 186.2C100.3 177.12 96.26 162.85 100.26 149.71L112.75 108.69L76.21 72.13C69.47 65.38 69.47 54.45 76.21 47.7L76.46 47.44L0 -31.98L99.88 -64L143.87 -19.99L143.89 -20.01C150.64 -26.76 161.58 -26.76 168.33 -20.01L204.79 16.46L245.7 3.9300000000001C263.7100000000001 -1.5799999999999 277.11 8.4700000000001 282.2100000000001 14.2500000000001L530.86 300.1500000000001C549.21 320.9700000000001 548.23 352.4700000000001 528.61 372.0900000000001zM91.05 -27.55L58.84 -17.22L99.1 24.8099999999999L121.24 2.66L91.05 -27.55zM258.21 35.44C257.58 34.72 256.81 34.5 255.89 34.5C255.63 34.5 255.35 34.52 255.06 34.55L214.15 47.08L195.76 52.71L156.11 13.04L109.26 59.92L148.97 99.64L143.37 118.02L130.88 159.04C130.54 160.17 130.89 161.4 131.61 162.04L176.58 201.19L297.32 80.39L258.21 35.44zM506.72 321.17L318.36 104.6L200.76 222.26L417.4 410.85C421.9 414.82 434.95 420.53 445.5 409.9700000000001L505.98 349.45C513.63 341.8 514.02 329.45 506.72 321.17z" />
+    <glyph glyph-name="hiking"
+      unicode="&#xF6EC;"
+      horiz-adv-x="384" d=" M376 288H360C355.58 288 352 284.42 352 280V253.05C346.9700000000001 254.84 341.64 256 336 256H305.84L262.76 311.18L261.54 312.74L260.14 314.14C265.25 317.18 270.14 320.6600000000001 274.53 325.04C288.3 338.8 295.57 356.43 295.57 376S288.29 413.2 274.53 426.96C260.77 440.7200000000001 243.15 448 223.58 448C204 448 186.38 440.7200000000001 172.62 426.96S151.58 395.58 151.58 376C151.58 357.93 158.04 341.67 169.82 328.43L123.98 341.5900000000001C79.2 352.2100000000001 33.36 325.8400000000001 21.98 282.5L0.92 200.92C-1.02 193.42 0.14 185.64 4.14 178.98C8.23 172.15 14.8 167.37 21.95 165.67L102.21 142.72L65.43 -4.36C59.05 -30.09 74.74 -56.17 100.4 -62.56C104.2 -63.51 108.11 -63.99 112.01 -63.99C134.1 -63.99 153.26 -49.02 158.59 -27.59L185.72 80.93L224 55.03V-16C224 -42.47 245.53 -64 272 -64S320 -42.47 320 -16V63.53C320 89.28 307.49 113.61 286.53 128.61L238 160.41L243.02 180.47L244.54 178.5200000000001C253.71 166.7500000000001 267.51 160.0000000000001 282.42 160.0000000000001H336C341.64 160.0000000000001 346.9700000000001 161.15 352 162.9500000000001V-56C352 -60.42 355.58 -64 360 -64H376C380.42 -64 384 -60.42 384 -56V280C384 284.42 380.42 288 376 288zM195.24 404.33C203.02 412.11 212.47 416 223.58 416S244.14 412.11 251.9100000000001 404.33C259.68 396.56 263.5800000000001 387.1 263.5800000000001 376S259.6900000000001 355.44 251.9100000000001 347.67C244.1400000000001 339.9 234.6800000000001 336 223.5800000000001 336C212.47 336 203.0200000000001 339.89 195.2500000000001 347.67C187.4800000000001 355.44 183.5800000000001 364.9 183.5800000000001 376S187.4700000000001 396.56 195.2400000000001 404.33zM31.92 192.91L32.04 193.36L32.26 192.83L31.92 192.91zM32.67 195.89L52.95 274.45C59.89 301.06 88.39 317.23 115.85 310.65L144.83 302.33A74.842 74.842 0 0 1 134.77 279.32L108.49 174.22L32.67 195.8900000000001zM127.54 -19.88C125.73 -27.16 119.2 -32 112.01 -32C110.73 -32 109.45 -31.84 108.14 -31.52C99.55 -29.38 94.36 -20.69 96.48 -12.13L129.28 119.07L157.51 99.99L127.54 -19.88zM336 192H282.41C277.47 192 272.82 194.28 269.79 198.17L227.91 251.98L201.95 148.12C201.78 147.44 201.12 147.11 200.87 146.47L267.91 102.59C280.5 93.5700000000001 288 78.98 288 63.53V-16C288 -24.84 280.8399999999999 -32 272 -32S256 -24.84 256 -16V63.53C256 68.69 253.5 73.56 249.28 76.56L145.1 146.98A16.002 16.002 0 0 0 138.88 163.87L165.82 271.5900000000001A42.681999999999995 42.681999999999995 0 0 0 207.32 304C218.73 304 229.44 299.56 237.54 291.48L290.23 224H336C344.84 224 352 216.84 352 208S344.84 192 336 192z" />
+    <glyph glyph-name="hippo"
+      unicode="&#xF6ED;"
+      horiz-adv-x="640" d=" M584.11 351.71C555.26 353.2200000000001 529.46 334.53 504.51 325.17C489.98 359.73 455.83 384 416 384C416 401.67 401.67 416 384 416H352C334.33 416 320 401.67 320 384V343.02C286.01 368.42 241.24 384 192 384C85.96 384 0 312.37 0 224V0C0 -17.67 14.33 -32 32 -32H96C113.67 -32 128 -17.67 128 0V59.42C152.66 52.23 179.56 48 208 48S263.3400000000001 52.24 288 59.42V0C288 -17.67 302.33 -32 320 -32H384C401.67 -32 416 -17.67 416 0V160H512V112C512 103.16 519.16 96 528 96H592C600.84 96 608 103.16 608 112V160C625.67 160 640 174.33 640 192V288.42C640 320.5900000000001 616.24 350.02 584.11 351.7100000000001zM384 0H320V102.08C199.97 67.1 177.16 78.43 96 102.08V0H32V224C32 294.58 103.78 352 192 352C232.32 352 270.98 339.7100000000001 300.8400000000001 317.38L320 303.07V240C320 201.37 347.52 169.05 384 161.62V0zM576 128H544V160H576V128zM608 192H400C373.53 192 352 213.53 352 240V384H384V352H416C441.83 352 465 336.6 475.02 312.77L486.95 284.4100000000001C559.86 311.76 562.7 320.29 582.43 319.76C596.29 319.0300000000001 608 304.68 608 288.42V192zM431.81 288C422.9700000000001 288 415.81 280.8400000000001 415.81 272S422.9700000000001 256 431.81 256S447.81 263.16 447.81 272S440.65 288 431.81 288z" />
+    <glyph glyph-name="history"
+      unicode="&#xF1DA;"
+      horiz-adv-x="512" d=" M20 424H30C36.627 424 42 418.627 42 412V317.375C85.196 390.953 165.239 440.2850000000001 256.793 439.999C393.18 439.572 504.213 327.991 504 191.604C503.786 54.819 392.834 -56 256 -56C192.074 -56 133.798 -31.813 89.822 7.908C84.709 12.526 84.468 20.469 89.34 25.341L96.409 32.41C100.912 36.913 108.158 37.124 112.891 32.864C150.782 -1.238 200.935 -22 256 -22C373.7440000000001 -22 470 73.331 470 192C470 309.7440000000001 374.669 406 256 406C173.138 406 101.263 358.923 65.711 290H164C170.627 290 176 284.627 176 278V268C176 261.373 170.627 256 164 256H20C13.373 256 8 261.373 8 268V412C8 418.627 13.373 424 20 424zM341.647 108.765L346.353 115.235C350.2510000000001 120.595 349.0660000000001 128.1 343.706 131.998L272 184.147V332C272 338.627 266.627 344 260 344H252C245.373 344 240 338.627 240 332V167.853L324.884 106.119C330.2440000000001 102.22 337.749 103.405 341.647 108.765z" />
+    <glyph glyph-name="hockey-mask"
+      unicode="&#xF6EE;"
+      horiz-adv-x="448" d=" M376.61 393.54C335.13 429.85 279.56 448 224 448C168.43 448 112.87 429.85 71.39 393.54C7.36 337.5 -31.01 223.56 32.63 32C64.53 -64 224 -64 224 -64S383.4700000000001 -64 415.37 32C479.01 223.56 440.64 337.5 376.61 393.54zM385 42.09C364.92 -18.34 261.94 -31.88 224 -32C222.64 -32 86.94 -29.98 63 42.09C-4.54 245.38 52.47 334.46 92.47 369.46C126.25 399.04 174.2 416 224 416S321.74 399.04 355.53 369.4600000000001C395.53 334.4600000000001 452.54 245.38 385 42.09zM272 336C280.84 336 288 343.16 288 352S280.84 368 272 368S256 360.8400000000001 256 352S263.17 336 272 336zM176 336C184.84 336 192 343.16 192 352S184.84 368 176 368S160 360.8400000000001 160 352S167.16 336 176 336zM192 32C183.16 32 176 24.84 176 16S183.16 0 192 0S208 7.16 208 16S200.84 32 192 32zM192 96C183.16 96 176 88.84 176 80S183.16 64 192 64S208 71.16 208 80S200.84 96 192 96zM192 160C183.16 160 176 152.84 176 144S183.16 128 192 128S208 135.16 208 144S200.84 160 192 160zM172 272H100C80.12 272 64 257.67 64 240C64 204.65 96.23 176 136 176C175.76 176 208 204.65 208 240C208 257.67 191.88 272 172 272zM136 208C102.41 208 87.94 240 100 240H172C183.72 240 169.1 208 136 208zM224 320C215.16 320 208 312.8400000000001 208 304S215.16 288 224 288S240 295.16 240 304S232.84 320 224 320zM256 32C247.16 32 240 24.84 240 16S247.16 0 256 0S272 7.16 272 16S264.84 32 256 32zM256 96C247.16 96 240 88.84 240 80S247.16 64 256 64S272 71.16 272 80S264.84 96 256 96zM256 160C247.16 160 240 152.84 240 144S247.16 128 256 128S272 135.16 272 144S264.84 160 256 160zM348 272H276C256.12 272 240 257.67 240 240C240 204.65 272.24 176 312 176S384 204.65 384 240C384 257.67 367.88 272 348 272zM312 208C278.4 208 263.94 240 276 240H348C359.7200000000001 240 345.09 208 312 208z" />
+    <glyph glyph-name="hockey-puck"
+      unicode="&#xF453;"
+      horiz-adv-x="544" d=" M272 384C141 384 0 349 0 272V128C0 44 136.8 0 272 0S544 44 544 128V272C544 349 403 384 272 384zM512 128C512 75 404.5 32 272 32S32 75 32 128V215.7C127.7 141.7 415.6 141.2 512 215.7V128zM272 192C139.5 192 32 227.8 32 272S139.5 352 272 352S512 316.2 512 272S404.5 192 272 192z" />
+    <glyph glyph-name="hockey-sticks"
+      unicode="&#xF454;"
+      horiz-adv-x="640" d=" M624 96H410.6C407.6 96 404.8 97.7 403.4000000000001 100.4L373.6 160L491.6 396.2C495.5 404.1 492.3 413.7 484.4 417.7L427.3 446.3C419.4000000000001 450.3 409.8 447.1 405.8 439.1L320 267.4L234.2 439.2C230.3 447.1 220.6 450.3 212.7 446.4L155.4 417.8C147.5 413.8 144.3 404.2 148.2 396.3L266.2 160.1L236.4 100.5C235 97.8 232.3 96.1 229.2 96.1H16C7.2 96.1 0 88.9 0 80.1V-47.9C0 -56.7 7.2 -63.9 16 -63.9H202.3C238.7 -63.9 271.9 -43.3 288.2000000000001 -10.8L320.0000000000001 52.8000000000001L351.8000000000001 -10.8C368.1000000000001 -43.3 401.3000000000001 -63.9 437.7000000000001 -63.9H624C632.8 -63.9 640 -56.7 640 -47.9V80C640 88.8 632.8 96 624 96zM184.1 396.2L212.7 410.5L302.1 231.6L284.2000000000001 195.8L184.1 396.2zM32 -32V64H64V-32H32zM259.6 3.4C248.7 -18.4 226.8 -32 202.4 -32H96V64H229.4C244.7 64 258.4 72.5 265.2 86.1L427.3 410.5L455.9 396.2L259.6 3.4zM437.7 -32C413.3 -32 391.4 -18.4 380.5 3.4L338 88.5L355.9 124.3L375 86.2C381.8 72.6 395.5 64.1 410.8 64.1H544V-31.9H437.7zM608 -32H576V64H608V-32z" />
+    <glyph glyph-name="holly-berry"
+      unicode="&#xF7AA;"
+      horiz-adv-x="448" d=" M443.9 104.4C438.9 113.1 430.1 118.8 420.2 119.8C405.9 121.3 391.2 124.3 376.4 128.6999999999999C369 130.8999999999999 364.6 138.5 366.4 146.0999999999999C370 161.1999999999999 374.8 175.4999999999999 380.7 188.6999999999999C384.8 197.7999999999999 384.2 208.3999999999999 379.1 217C374.1 225.6 365.3 231.2 355.6 232.1C341 233.5 326.4 236.7 311.9 240.9C331 251.9 344 272.4 344 296C344 330.3 317 358 283.2 359.7C286.3 367.2 288 375.4 288 384C288 419.3 259.3 448 224 448S160 419.3999999999999 160 384C160 375.4 161.8 367.2 164.8 359.7C131 358 104 330.3 104 296C104 272.3 117 251.9 136.1 240.8C121.6 236.6 107 233.4 92.4 232C82.7 231.1 73.8 225.4 68.9 216.9C63.8 208.2 63.3 197.7 67.3 188.6C73.2 175.4 78 161.1 81.6 146C83.4 138.5 79 130.8 71.6 128.6C56.8 124.2000000000001 42 121.2000000000001 27.8 119.7000000000001C18 118.7000000000001 9.1 112.9 4.1 104.3000000000001C-0.8 95.7000000000001 -1.4 85.2000000000001 2.7 76.3000000000001C17.2 44.6000000000001 24.9 8.2 25.1 -28.8999999999999C25.2 -41.6999999999999 31.7 -53.0999999999999 42.6 -59.2999999999999C48.1 -62.4 54 -64 60 -64C66 -64 72.1 -62.4 77.7 -59.2C109.9 -40.8 145.1 -29.3 179.6 -26.1C189.3 -25.2 198.1 -19.4999999999999 203.1 -10.9C208.1 -2.2 208.7 8.3 204.6 17.4C198.7 30.6 193.9 44.9 190.4 60.0000000000001C188.6 67.5000000000001 193 75.2000000000001 200.4 77.4C208.3000000000001 79.8 216.2000000000001 81.7000000000001 224 83.2000000000001C231.8000000000001 81.7000000000001 239.7 79.8000000000001 247.6 77.4C255.0000000000001 75.2000000000001 259.3 67.6 257.6 60.0000000000001C254.0000000000001 44.9 249.2 30.6000000000001 243.4000000000001 17.4C239.3000000000001 8.3 239.9000000000001 -2.2 244.9000000000001 -10.9C249.9000000000001 -19.5 258.7000000000001 -25.1 268.5000000000001 -26.1C303.0000000000001 -29.3 338.3000000000001 -40.8 370.4000000000001 -59.2C375.9000000000001 -62.4 382.0000000000001 -64 388.0000000000001 -64C394.0000000000001 -64 400.0000000000001 -62.4 405.4000000000001 -59.3C416.3000000000001 -53 422.8000000000001 -41.6 422.9000000000001 -28.9C423.1000000000001 8.2 430.8000000000001 44.6 445.3000000000001 76.3C449.4000000000001 85.3 448.8000000000001 95.8 443.9000000000001 104.4zM280 328C297.6 328 312 313.6 312 296S297.6 264 280 264S248 278.4 248 296S262.4 328 280 328zM136 296C136 313.6 150.4 328 168 328S200 313.6 200 296S185.6 264 168 264S136 278.4 136 296zM191.2 107.9C167.6 100.8 153.6 76.5 159.3 52.5C163.3 35.5 168.8 19.2 176.6 5.7C137 2 98.3 -10.6 58.6 -31.7C57.6 -31.1 57.1 -30.2 57.1 -28.8C57 13.5 48.5 53.3 31 88C47.3 89.7 64 93.1 80.8 98.1C104.4 105.2000000000001 118.4 129.5 112.7 153.5C108.7 170.5 103.2 186.8 95.4 200.3C136 204.1 177.2 217.8 214.9 239.6C214.4 196.7 222.9 154.6 239.5 117.8C223.6 116.1 207.4 112.8 191.2 107.9zM224 352C206.4 352 192 366.4 192 384S206.4 416 224 416S256 401.6 256 384S241.6 352 224 352zM390.9 -28.7C390.9 -30 390.4 -31 386.3 -31.5C349.7 -10.5 311 2 272.5 4.3C279.2 19.3 284.7 35.5 288.7 52.6C293.3999999999999 72.4 284.5999999999999 92.2000000000001 268.2 102.6C272.7 111 273.2 121.1 269.3 129.7000000000001C255.1 160.8000000000001 247.7 196.3000000000001 247.2 232.9000000000001C280.8 215.2000000000001 316.8 203.9 351.6 201.8000000000001C344.9 186.8000000000001 339.4 170.6 335.4 153.5000000000001C329.7 129.5000000000001 343.7 105.2000000000001 367.3 98.1000000000001C384.1 93.1000000000001 400.8 89.7000000000001 416.2 89.7000000000001C399.5 53.3000000000001 391 13.5000000000001 390.8999999999999 -28.6999999999999z" />
+    <glyph glyph-name="home-heart"
+      unicode="&#xF4C9;"
+      horiz-adv-x="576" d=" M573.5 228.1L512 277.6V376C512 380.4 508.4 384 504 384H488C483.6 384 480 380.4 480 376V303.4L310.6 440C297.4000000000001 450.7 278.5 450.7 265.4000000000001 440L2.5 228.1C-0.4 225.7 -0.9 221.5 1.5 218.6L15.7 201.1C18.1 198.2 22.3 197.7 25.3 200.1L64 231.3V-48C64 -56.8 71.2 -64 80 -64H496C504.8 -64 512 -56.8 512 -48V231.2L550.8 199.9C553.6999999999999 197.5 558 198 560.4 200.9L574.6 218.4C576.9 221.4 576.3000000000001 225.7 573.5 228.1zM480 -32H96V257.1L283.7 408.5C286.2 410.5 289.7 410.5 292.1 408.5L480 257V-32zM276.9 246.5C250.3 274.4 204.4 282.4 172 254.2C136.7 223.6 134.8 168.6 166.4 135.5L275.3 21.4C282.3 14 293.7 14 300.8 21.4L409.7 135.5C441.3 168.7 439.5 223.6 404.0999999999999 254.2C362.2 290.5 314.5999999999999 262.6 299.2 246.5L288 234.8L276.9 246.5zM321.7 224.2C330.4 233.4 359.2 251 383.6 229.9C407.4 209.3 403.8 175.4 387 157.8L288 54L189 157.8C172.3 175.3 168.6 209.4 192.4 229.9C214.6 249.2 242.4 236.7 254.3 224.2L288 188.9L321.7 224.2000000000001z" />
+    <glyph glyph-name="home"
+      unicode="&#xF015;"
+      horiz-adv-x="512" d=" M509.8 220.5L448 270.2V346.2C448 349.5 445.3 352.2 442 352.2H422C418.7 352.2 416 349.5 416 346.2V296.1L276.1 408.9C264.4000000000001 418.4 247.6 418.4 235.9000000000001 408.9L2.2 220.5C-0.4 218.4 -0.8 214.6 1.3 212.1L13.9 196.5C16 193.9 19.8 193.5 22.4 195.6L64 229.1V0.1C64 -17.6 78.3 -31.9 96 -31.9H212C218.6 -31.9 224 -26.5 224 -19.9V112.2L288 111.9V-20.3C288 -26.9 293.4 -32.3 300 -32.3L416 -32C433.7 -32 448 -17.7 448 0V229L489.6 195.5C492.2 193.4 496 193.8 498.1 196.4L510.7 212C512.8000000000001 214.6 512.3000000000001 218.4 509.8000000000001 220.5zM416 0L320 -0.3V132C320 138.6 314.6 144 308 144L204 144.3C197.4 144.3 192 138.9 192 132.3V0H96V254.9L252.2 380.9C254.4 382.7 257.5 382.7 259.7 380.9L415.9 254.9V0z" />
+    <glyph glyph-name="hood-cloak"
+      unicode="&#xF6EF;"
+      horiz-adv-x="576" d=" M569.65 -12.85C511.98 64.13 511.98 128 511.98 128V192C511.98 276.03 465.62 315.05 410.81 374.7L450.56 414.45C462.94 426.83 454.17 448 436.6600000000001 448H287.57C191.98 448 64.02 338.55 64.02 192V128S64.02 64.13 6.35 -12.85C-9.42 -33.9 6.02 -64 32.32 -64H543.6700000000001C569.98 -64 585.4200000000001 -33.9 569.6500000000001 -12.85zM191.98 -32V128C191.98 180.94 235.04 224 287.97 224S383.96 180.94 383.96 128V-32H191.98zM415.96 -32.01V128C415.96 198.69 358.66 256 287.97 256S159.98 198.69 159.98 128V-32.02L31.96 -32.03C95.29 52.5 96.02 124.96 96.02 128V192C96.02 321.94 210.44 416 287.57 416H406.85L366.5 375.64S399.3400000000001 340.04 405.18 333.82C450.23 285.8400000000001 479.99 254.14 479.99 192.01V128.01C479.99 124.97 480.72 52.51 543.6800000000001 -31.99L415.9600000000001 -32.01z" />
+    <glyph glyph-name="horse-head"
+      unicode="&#xF7AB;"
+      horiz-adv-x="512" d=" M296 272C282.7 272 272 261.3 272 248S282.7 224 296 224S320 234.7 320 248S309.3 272 296 272zM507.9 148.8C435 306 432.3 323.5 390.4 350.2C400.6 370.1 402.9 393.6 396.5 418.3C391.8 435.8 375.9 448 357.6 448C344.6 448 345.7000000000001 445.9 276.4000000000001 415.7C118.8 346.8 0 308.9 0 67.1V-16C0 -42.5 21.5 -64 48 -64H272C302.5 -64 326.3 -35.4 318.6 -4.4L300.3 68.9C306.8 71.3 312.9000000000001 74.3 318.8 77.7000000000001L333.5 57.1C344.9 41.3 363.1 31.9 382.4 31.9H412.5C428.1 31.9 442.8 37.8 454.1 48.6L494.6 84.3C511.3 101.3 516.6 126.5 507.9 148.8zM471.8 107L432.2 72.2C427 67 419.8 64 412.4 64H382.3C373.3 64 364.8 68.3 359.6 75.6L323.7 121C306.4 103.9 283.1 92.8 256.8 92.8C217.6 92.8 184.2 116.5 169.4 150.2C167.2 155.3 160.5 156.5 156.5 152.6L144.4 140.5C142 138.1 141.3 134.3 142.8 131.1999999999999C163.9 89.5999999999999 207 60.8999999999999 256.8 60.8999999999999C261 60.8999999999999 264.9 61.6999999999999 269 62.0999999999999L287.5 -12.0000000000001C290.1 -22.4000000000001 282.1 -31.9000000000001 272 -31.9000000000001H48C39.2 -31.9000000000001 32 -24.7000000000001 32 -15.9000000000001V67.1999999999999C32 316.8 151.5 322.5 355 415.7C372.5 422 380.2 364.3999999999999 335.6 338.3C372.9000000000001 331.0999999999999 403.9000000000001 305.0999999999999 416.9000000000001 269L478.1 137.1999999999999C482.1 126.6999999999999 479.7 114.8999999999999 471.8 106.9999999999999z" />
+    <glyph glyph-name="horse"
+      unicode="&#xF6F0;"
+      horiz-adv-x="576" d=" M575.95 361.73C575.94 371.35 572.2800000000001 377.65 566.8100000000001 384.29C572.2 393.74 575.19 404.61 575.19 416C575.19 433.67 560.86 448 543.19 448H432C361.42 448 304 390.58 304 320H163.36C127.38 320 96.09 300.58 78.65 271.87C35.11 271.13 0 235.72 0 192V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V192C32 213.5 46.23 231.48 65.71 237.59C64.75 232.05 64 226.44 64 220.63C64 196.43 72.9 173.3 88.53 155.39L66.56 81.11C63.44 70.34 63.18 59.08 65.76 48.37L86.89 -39.49C90.34 -53.86 103.2 -64 118 -64H175.53C196.48 -64 211.65 -44.25 206.55 -24.14L184.87 61.43L204.16 115.16L288 96.53V-32C288 -49.67 302.33 -64 320 -64H384C401.67 -64 416 -49.67 416 -32V124.19C436.5 145.7 448 173.94 448 203.79V254.31L462.55 232.49C481.66 203.82 512.53 211.82 518 213.69L543.52 222.4C562.96 229.03 576.02 247.3 576.01 267.85L575.95 361.73zM533.1700000000001 252.69L507.6500000000001 243.98C498.3200000000001 240.79 491.5100000000001 246.74 489.1700000000001 250.25L464 288L416 304V203.79C416 177.12 403.36 153.62 384 138.1900000000001V-32H320V122.2L183.57 152.52L151.45 63.05L175.53 -32H118L96.87 55.86A31.697999999999997 31.697999999999997 0 0 0 97.24 72.04L124.87 165.4500000000001C107.45 177.63 96 197.76 96 220.63C96 257.8400000000001 126.16 288 163.37 288H336V320C336 373.02 378.98 416 432 416H543.19C543.19 402.71 535.08 391.33 523.5600000000001 386.5L543.95 361.7200000000001L544 267.8400000000001A16 16 0 0 0 533.17 252.69zM480 368C471.16 368 464 360.8400000000001 464 352S471.16 336 480 336S496 343.16 496 352S488.84 368 480 368z" />
+    <glyph glyph-name="hospital-alt"
+      unicode="&#xF47D;"
+      horiz-adv-x="576" d=" M468 64H428C421.4 64 416 58.6 416 52V12C416 5.4 421.4 0 428 0H468C474.6 0 480 5.4 480 12V52C480 58.6 474.6 64 468 64zM468 192H428C421.4 192 416 186.6 416 180V140C416 133.4 421.4 128 428 128H468C474.6 128 480 133.4 480 140V180C480 186.6 474.6 192 468 192zM308 64H268C261.4 64 256 58.6 256 52V12C256 5.4 261.4 0 268 0H308C314.6 0 320 5.4 320 12V52C320 58.6 314.6 64 308 64zM308 192H268C261.4 192 256 186.6 256 180V140C256 133.4 261.4 128 268 128H308C314.6 128 320 133.4 320 140V180C320 186.6 314.6 192 308 192zM148 64H108C101.4 64 96 58.6 96 52V12C96 5.4 101.4 0 108 0H148C154.6 0 160 5.4 160 12V52C160 58.6 154.6 64 148 64zM148 192H108C101.4 192 96 186.6 96 180V140C96 133.4 101.4 128 108 128H148C154.6 128 160 133.4 160 140V180C160 186.6 154.6 192 148 192zM330 336H304V362C304 365.3 301.3 368 298 368H278C274.7 368 272 365.3 272 362V336H246C242.7 336 240 333.3 240 330V310C240 306.7 242.7 304 246 304H272V278C272 274.7 274.7 272 278 272H298C301.3 272 304 274.7 304 278V304H330C333.3 304 336 306.7 336 310V330C336 333.3 333.3 336 330 336zM528 320H416V400C416 426.5 394.5 448 368 448H208C181.5 448 160 426.5 160 400V320H48C21.5 320 0 298.5 0 272V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V272C32 280.8 39.2 288 48 288H192V400C192 408.8 199.2 416 208 416H368C376.8 416 384 408.8 384 400V288H528C536.8 288 544 280.8 544 272V-56C544 -60.4 547.6 -64 552 -64H568C572.4 -64 576 -60.4 576 -56V272C576 298.5 554.5 320 528 320z" />
+    <glyph glyph-name="hospital-symbol"
+      unicode="&#xF47E;"
+      horiz-adv-x="512" d=" M344 304H328C323.6 304 320 300.4 320 296V208H192V296C192 300.4 188.4 304 184 304H168C163.6 304 160 300.4 160 296V88C160 83.6 163.6 80 168 80H184C188.4 80 192 83.6 192 88V176H320V88C320 83.6 323.6 80 328 80H344C348.4 80 352 83.6 352 88V296C352 300.4 348.4 304 344 304zM256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM256 -32C132.5 -32 32 68.5 32 192S132.5 416 256 416S480 315.5 480 192S379.5 -32 256 -32z" />
+    <glyph glyph-name="hospital"
+      unicode="&#xF0F8;"
+      horiz-adv-x="448" d=" M180 96H140C133.373 96 128 101.373 128 108V148C128 154.627 133.373 160 140 160H180C186.627 160 192 154.627 192 148V108C192 101.373 186.627 96 180 96zM268 96H308C314.627 96 320 101.373 320 108V148C320 154.627 314.627 160 308 160H268C261.373 160 256 154.627 256 148V108C256 101.373 261.373 96 268 96zM140 192H180C186.627 192 192 197.373 192 204V244C192 250.627 186.627 256 180 256H140C133.373 256 128 250.627 128 244V204C128 197.373 133.373 192 140 192zM268 192H308C314.627 192 320 197.373 320 204V244C320 250.627 314.627 256 308 256H268C261.373 256 256 250.627 256 244V204C256 197.373 261.373 192 268 192zM448 -64H0V-44C0 -37.373 5.373 -32 12 -32H32V363C32 374.598 42.745 384 56 384H144V424C144 437.255 154.745 448 168 448H280C293.255 448 304 437.255 304 424V384H392C405.255 384 416 374.598 416 363V-32H436C442.627 -32 448 -37.373 448 -44V-64zM64 -32H192V52C192 58.627 197.373 64 204 64H244C250.627 64 256 58.627 256 52V-32H384V352H304V312C304 298.745 293.255 288 280 288H168C154.745 288 144 298.745 144 312V352H64V-32zM266 384H240V410A6 6 0 0 1 234 416H214A6 6 0 0 1 208 410V384H182A6 6 0 0 1 176 378V358A6 6 0 0 1 182 352H208V326A6 6 0 0 1 214 320H234A6 6 0 0 1 240 326V352H266A6 6 0 0 1 272 358V378A6 6 0 0 1 266 384z" />
+    <glyph glyph-name="hot-tub"
+      unicode="&#xF593;"
+      horiz-adv-x="512" d=" M80 304C119.76 304 152 336.24 152 376C152 415.77 119.76 448 80 448S8 415.77 8 376C8 336.24 40.24 304 80 304zM80 416C102.06 416 120 398.06 120 376S102.06 336 80 336S40 353.94 40 376S57.94 416 80 416zM335.5800000000001 231.72C335.8300000000001 227.43 339.2100000000001 224 343.5100000000001 224H359.4900000000001C364.0300000000001 224 367.8300000000001 227.8 367.6000000000001 232.34C365.5700000000001 272.7100000000001 348.8500000000001 309.78 322.0000000000001 332.76C302.2300000000001 349.68 289.8200000000001 377.51 288.0400000000001 408.28C287.7900000000001 412.57 284.4100000000001 415.99 280.1100000000001 415.99H264.1300000000001C259.5900000000001 415.99 255.7900000000001 412.19 256.0200000000001 407.65C258.05 367.28 274.7700000000001 330.2100000000001 301.6200000000001 307.23C321.3800000000001 290.3200000000001 333.7900000000001 262.49 335.5800000000001 231.7200000000001zM431.5800000000001 231.72C431.8300000000001 227.43 435.2100000000001 224 439.5100000000001 224H455.4900000000001C460.0300000000001 224 463.83 227.8 463.6000000000001 232.34C461.5700000000001 272.7100000000001 444.8500000000001 309.78 418.0000000000001 332.76C398.2300000000001 349.68 385.8200000000001 377.51 384.0400000000001 408.28C383.7900000000001 412.57 380.4100000000001 415.99 376.1100000000001 415.99H360.1300000000001C355.5900000000001 415.99 351.7900000000001 412.19 352.0200000000001 407.65C354.05 367.28 370.7700000000001 330.2100000000001 397.6200000000001 307.23C417.3800000000001 290.3200000000001 429.7900000000001 262.49 431.5800000000001 231.7200000000001zM104 0H120C124.42 0 128 3.58 128 8V120C128 124.42 124.42 128 120 128H104C99.58 128 96 124.42 96 120V8C96 3.58 99.58 0 104 0zM200 0H216C220.42 0 224 3.58 224 8V120C224 124.42 220.42 128 216 128H200C195.58 128 192 124.42 192 120V8C192 3.58 195.58 0 200 0zM296 0H312C316.42 0 320 3.58 320 8V120C320 124.42 316.42 128 312 128H296C291.58 128 288 124.42 288 120V8C288 3.58 291.58 0 296 0zM392 0H408C412.42 0 416 3.58 416 8V120C416 124.42 412.42 128 408 128H392C387.58 128 384 124.42 384 120V8C384 3.58 387.58 0 392 0zM480 192H272L161.07 275.2A63.99 63.99 0 0 1 122.67 288H64C28.65 288 0 259.35 0 224V0C0 -35.35 28.65 -64 64 -64H448C483.35 -64 512 -35.35 512 0V160C512 177.67 497.67 192 480 192zM32 224C32 241.64 46.36 256 64 256H122.67C129.55 256 136.37 253.73 141.87 249.6L218.67 192H32V224zM480 0C480 -17.64 465.64 -32 448 -32H64C46.36 -32 32 -17.64 32 0V160H480V0z" />
+    <glyph glyph-name="hotel"
+      unicode="&#xF594;"
+      horiz-adv-x="576" d=" M396.8 224H435.2C441.6 224 448 230.4 448 236.8V275.2000000000001C448 281.6 441.6 288 435.2 288H396.8C390.4000000000001 288 384 281.6 384 275.2000000000001V236.8C384 230.4 390.4 224 396.8 224zM268.8 320H307.2C313.6 320 320 326.4 320 332.8V371.2C320 377.6 313.6 384 307.2 384H268.8C262.4000000000001 384 256 377.6 256 371.2V332.8C256 326.4 262.4 320 268.8 320zM396.8 320H435.2C441.6 320 448 326.4 448 332.8V371.2C448 377.6 441.6 384 435.2 384H396.8C390.4000000000001 384 384 377.6 384 371.2V332.8C384 326.4 390.4 320 396.8 320zM140.8 320H179.2C185.6 320 192 326.4 192 332.8V371.2C192 377.6 185.6 384 179.2 384H140.8C134.4 384 128 377.6 128 371.2V332.8C128 326.4 134.4 320 140.8 320zM268.8 224H307.2C313.6 224 320 230.4 320 236.8V275.2000000000001C320 281.6 313.6 288 307.2 288H268.8C262.4000000000001 288 256 281.6 256 275.2000000000001V236.8C256 230.4 262.4 224 268.8 224zM568 416C572.42 416 576 419.58 576 424V440C576 444.42 572.42 448 568 448H8C3.58 448 0 444.42 0 440V424C0 419.58 3.58 416 8 416H31.98V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H568C572.42 -64 576 -60.42 576 -56V-40C576 -35.58 572.42 -32 568 -32H544V416H568zM320 -32H256V48C256 56.84 263.1600000000001 64 272 64H304C312.84 64 320 56.84 320 48V-32zM512 -32H352V48C352 74.47 330.4700000000001 96 304 96H272C245.53 96 224 74.47 224 48V-32H63.98V416H512V-32zM140.8 224H179.2C185.6 224 192 230.4 192 236.8V275.2000000000001C192 281.6 185.6 288 179.2 288H140.8C134.4 288 128 281.6 128 275.2000000000001V236.8C128 230.4 134.4 224 140.8 224zM167.11 66.34L183.36 64.08C187.66 63.48 191.47 66.3200000000001 192.43 70.4400000000001C202.39 113.2700000000001 242.17 144.72 288.01 144.72S373.62 113.2700000000001 383.59 70.4400000000001C384.55 66.3200000000001 388.36 63.4800000000001 392.66 64.08L408.91 66.34C413.51 66.98 416.81 71.2600000000001 415.85 75.68C403.2200000000001 133.71 349.7200000000001 176.5 288 176.5S172.78 133.71 160.17 75.69C159.21 71.26 162.51 66.98 167.11 66.34z" />
+    <glyph glyph-name="hourglass-end"
+      unicode="&#xF253;"
+      horiz-adv-x="384" d=" M368 416H372C378.627 416 384 421.373 384 428V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H16C16 324.179 60.108 222.343 145.646 192C59.832 161.559 16 59.523 16 -32H12C5.373 -32 0 -37.373 0 -44V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-44C384 -37.373 378.627 -32 372 -32H368C368 59.821 323.892 161.6570000000001 238.354 192C324.168 222.441 368 324.477 368 416zM48 416H336C336 305.543 271.529 216 192 216S48 305.543 48 416zM336 -32H48C48 78.457 112.471 168 192 168S336 78.457 336 -32zM98.379 32H285.622A12.01 12.01 0 0 0 297.224 23.097A199.464 199.464 0 0 0 299.283 14.667C300.947 7.145 295.283 0 287.579 0H96.422C88.718 0 83.054 7.145 84.718 14.667C85.338 17.4709999999999 86.025 20.283 86.777 23.097A12.01 12.01 0 0 0 98.379 32zM114.341 82.912A141.625 141.625 0 0 0 121.115 91.651C123.416 94.389 126.786 95.999 130.363 95.999H253.639C257.2150000000001 95.999 260.586 94.389 262.887 91.651A142.319 142.319 0 0 0 269.661 82.912C275.318 75.002 269.573 64 259.848 64H124.153C114.429 64 108.684 75.003 114.341 82.912z" />
+    <glyph glyph-name="hourglass-half"
+      unicode="&#xF252;"
+      horiz-adv-x="384" d=" M368 416H372C378.627 416 384 421.373 384 428V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H16C16 324.179 60.108 222.343 145.646 192C59.832 161.559 16 59.523 16 -32H12C5.373 -32 0 -37.373 0 -44V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-44C384 -37.373 378.627 -32 372 -32H368C368 59.821 323.892 161.6570000000001 238.354 192C324.168 222.441 368 324.477 368 416zM48 416H336C336 305.543 271.529 216 192 216S48 305.543 48 416zM336 -32H48C48 78.457 112.471 168 192 168S336 78.457 336 -32zM269.66 301.088A141.625 141.625 0 0 0 262.886 292.3490000000001C260.585 289.611 257.215 288.001 253.638 288.001H130.362C126.786 288.001 123.415 289.611 121.114 292.3490000000001A142.319 142.319 0 0 0 114.34 301.088C108.683 308.9980000000001 114.428 320 124.153 320H259.847C269.572 320 275.316 308.997 269.66 301.088zM98.379 32H285.622A12.01 12.01 0 0 0 297.224 23.097A199.464 199.464 0 0 0 299.283 14.667C300.947 7.145 295.283 0 287.579 0H96.422C88.718 0 83.054 7.145 84.718 14.667C85.338 17.4709999999999 86.025 20.283 86.777 23.097A12.01 12.01 0 0 0 98.379 32z" />
+    <glyph glyph-name="hourglass-start"
+      unicode="&#xF251;"
+      horiz-adv-x="384" d=" M368 416H372C378.627 416 384 421.373 384 428V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H16C16 324.179 60.108 222.343 145.646 192C59.832 161.559 16 59.523 16 -32H12C5.373 -32 0 -37.373 0 -44V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-44C384 -37.373 378.627 -32 372 -32H368C368 59.821 323.892 161.6570000000001 238.354 192C324.168 222.441 368 324.477 368 416zM48 416H336C336 305.543 271.529 216 192 216S48 305.543 48 416zM336 -32H48C48 78.457 112.471 168 192 168S336 78.457 336 -32zM285.621 352H98.379A12.01 12.01 0 0 0 86.777 360.903A199.464 199.464 0 0 0 84.718 369.333C83.054 376.855 88.718 384 96.422 384H287.579C295.283 384 300.947 376.855 299.283 369.333A199.464 199.464 0 0 0 297.224 360.903A12.013 12.013 0 0 0 285.621 352zM269.66 301.088A141.625 141.625 0 0 0 262.886 292.349C260.585 289.611 257.215 288.001 253.638 288.001H130.362C126.786 288.001 123.415 289.611 121.114 292.349A142.319 142.319 0 0 0 114.34 301.088C108.683 308.998 114.428 320 124.153 320H259.847C269.572 320 275.316 308.997 269.66 301.088z" />
+    <glyph glyph-name="hourglass"
+      unicode="&#xF254;"
+      horiz-adv-x="384" d=" M368 416H372C378.627 416 384 421.373 384 428V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H16C16 324.179 60.108 222.343 145.646 192C59.832 161.559 16 59.523 16 -32H12C5.373 -32 0 -37.373 0 -44V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-44C384 -37.373 378.627 -32 372 -32H368C368 59.821 323.892 161.6570000000001 238.354 192C324.168 222.441 368 324.477 368 416zM48 416H336C336 305.543 271.529 216 192 216S48 305.543 48 416zM336 -32H48C48 78.457 112.471 168 192 168S336 78.457 336 -32z" />
+    <glyph glyph-name="house-damage"
+      unicode="&#xF6F1;"
+      horiz-adv-x="576" d=" M573.51 228.06L512 277.65V376C512 380.42 508.42 384 504 384H488C483.58 384 480 380.42 480 376V303.45L310.63 439.99C297.47 450.68 278.57 450.68 265.41 439.99L2.53 228.06C-0.39 225.7 -0.84 221.42 1.52 218.61L15.69 201.06A6.788 6.788 0 0 1 25.25 200.05L64 231.3V-48C64 -56.84 71.16 -64 80 -64H229.57L215.02 -32L192.33 17.91L296.44 89.9L236.28 224L384.3300000000001 70.14L280.2200000000001 -1.85L299.59 -32L320.14 -64H496C504.84 -64 512 -56.84 512 -48V231.22L550.79 199.94C553.7199999999999 197.58 557.99 198.03 560.3499999999999 200.95L574.5199999999999 218.5C576.8799999999999 221.42 576.3199999999998 225.7 573.5099999999999 228.06zM480 -32H337.63L323.87 -10.58L402.54 43.82A31.975999999999996 31.975999999999996 0 0 1 416.18 66.95C417.12 76.29 413.9000000000001 85.57 407.4000000000001 92.33L259.34 246.19C253.12 252.66 244.73 256 236.27 256C230.07 256 223.83 254.2 218.37 250.52C205.48 241.81 200.71 225.1 207.08 210.9L256.35 101.08L174.13 44.23C161.4 35.42 156.79 18.76 163.2 4.67L179.87 -32H96V257.1L283.74 408.49A6.635 6.635 0 0 0 292.18 408.49L480 257.02V-32z" />
+    <glyph glyph-name="house-flood"
+      unicode="&#xF74F;"
+      horiz-adv-x="576" d=" M252 255C236.6 255 224 242.4 224 227V155C224 139.6 236.6 127 252 127H324C339.4 127 352 139.6 352 155V227C352 242.4 339.4 255 324 255H252zM320 159H256V223H320V159zM568.3 -1C538.8 0.5 510.6 10.6 490.1 27.3C484.2 32.1 475.8 32.1 469.9 27.2C426.2 -8.7 342.9 -9.1 298.1 27.3C292.2 32.1 283.8 32.1 277.9 27.2C234.2 -8.7 150.9 -9 106.1 27.3C100.2 32.1 91.8 32 85.9 27.2C65.7 10.6 37.5 0.5 7.7 -1C3.4 -1.2 0 -4.6 0 -8.9V-24.9C0 -29.4 3.8 -33.2 8.3 -33C40.6 -31.5 71.6 -21.6 96.1 -5.1C149.9 -41.2 235.3 -40.9 288.1 -5.1C341.8 -41.2 427.3 -40.9 480.1 -5.1C504.7 -21.6 535.6999999999999 -31.5 567.6999999999999 -33C572.1999999999999 -33.2 575.9999999999999 -29.4 575.9999999999999 -24.9V-8.9C575.9999999999999 -4.6 572.5999999999999 -1.2 568.2999999999998 -1zM45.9 195.6C48 193 51.8 192.6 54.4 194.7L96 228.2V62.8C106.9 62.8 117.6 58.9999999999999 126.2 52.1C126.7 51.7 127.4 51.4 128 50.9999999999999V254L284.1 379.9C286.3 381.7 289.4000000000001 381.7 291.6 379.9L447.6 254V50.7C448.2000000000001 51.1 448.9000000000001 51.5 449.5 51.9C458 58.9 468.7 62.7 479.7 62.8V228.1L521.3 194.6C523.9 192.5 527.6999999999999 192.9 529.8 195.5L542.4 211.1C544.5 213.7 544 217.5 541.5 219.6L479.7 269.3V345.2000000000001C479.7 348.5 477 351.2000000000001 473.7 351.2000000000001H453.7C450.4 351.2000000000001 447.7 348.5 447.7 345.2000000000001V295.1L307.9 407.9C296.2 417.4 279.4 417.4 267.7 407.9L34.2 219.6C31.6 217.5 31.2 213.7 33.3 211.2L45.9 195.6z" />
+    <glyph glyph-name="hryvnia"
+      unicode="&#xF6F2;"
+      horiz-adv-x="384" d=" M376 224C380.42 224 384 227.58 384 232V248C384 252.42 380.42 256 376 256H279.46L292.19 268.5900000000001C308.42 284.64 317.7200000000001 307.32 317.7200000000001 330.81C317.7200000000001 377.78 281.5800000000001 416 237.1400000000001 416H152.72C130.67 416 109.52 408.23 93.16 394.16L59.65 365.36A8.008 8.008 0 0 1 58.79 354.08L69.21 341.94C72.09 338.5900000000001 77.14 338.2 80.49 341.08L114.01 369.89C124.59 378.98 138.33 384 152.72 384H237.14C263.92 384 285.72 360.14 285.72 330.81C285.72 315.81 279.88 301.42 269.69 291.3400000000001L233.96 256H8C3.58 256 0 252.42 0 248V232C0 227.58 3.58 224 8 224H201.6L136.89 160H8C3.58 160 0 156.42 0 152V136C0 131.58 3.58 128 8 128H104.54L91.81 115.41C75.58 99.36 66.28 76.68 66.28 53.1900000000001C66.28 6.22 102.42 -31.9999999999999 146.86 -31.9999999999999H231.2800000000001C253.3300000000001 -31.9999999999999 274.48 -24.23 290.8400000000001 -10.16L324.36 18.64A8.008 8.008 0 0 1 325.2200000000001 29.92L314.8 42.06A8.01 8.01 0 0 1 303.51 42.92L269.99 14.11C259.4100000000001 5.02 245.68 0 231.29 0H146.87C120.09 0 98.29 23.86 98.29 53.19C98.29 68.19 104.13 82.58 114.32 92.66L150.04 128H376C380.42 128 384 131.58 384 136V152C384 156.42 380.42 160 376 160H182.4L247.11 224H376z" />
+    <glyph glyph-name="humidity"
+      unicode="&#xF750;"
+      horiz-adv-x="384" d=" M160 156C160 171.5 147.5 184 132 184S104 171.5 104 156S116.5 128 132 128S160 140.5 160 156zM252 96C236.5 96 224 83.5 224 68S236.5 40 252 40S280 52.5 280 68S267.5 96 252 96zM223.9 425.9C219.5 440.5 205.8 448 192 448C178.5 448 165 440.8 160.2 425.9C109.1 268.2 0 225.3 0 114.1C0 15.7 85.9 -64 192 -64S384 15.7 384 114.1C384 225.8 275.1 267.4000000000001 223.9 425.9000000000001zM192 -32C103.8 -32 32 33.5 32 114.1C32 161.7000000000001 57 194.5 91.6 240.0000000000001C124.2 282.8 164.7 336 190.2 415.7000000000001C190.3 415.8 191 416 192 416C192.7 416 193.2 415.9000000000001 193.4 415.9000000000001H193.5C219.5 335.5 260 282.5 292.6 239.8C327.1 194.6 352 162 352 114.1C352 33.5 280.2 -32 192 -32zM253 180.2L240.5 190.2C237 193 232 192.4 229.3 189L129.8 55C127 51.5 127.6 46.5 131 43.8L143.5 33.8C147 31 152 31.6 154.7 35L254.2 169C257 172.4 256.4 177.5 253 180.2z" />
+    <glyph glyph-name="hurricane"
+      unicode="&#xF751;"
+      horiz-adv-x="384" d=" M176 352L200.5 426.8C204 437.4 195.9 448 185.1 448C184.4 448 183.8 448 183.1 447.9C80 435.6 0 346.4 0 240C0 125.1 93.1 32 208 32L183.5 -42.8C180 -53.4 188.1 -64 198.9 -64C199.6 -64 200.2 -64 200.9 -63.9C304 -51.6 384 37.6 384 144C384 258.9 290.9 352 176 352zM222.3 -27.2L238.4 22.1L252.1 64.1H208C111 64.1 32 143.1 32 240.1C32 321.2000000000001 86.2 390.8 161.7 411.3L145.6 362L131.9 320H176C273 320 352 241 352 144C352 62.9 297.8 -6.7 222.3 -27.2zM192 264C152.2 264 120 231.8 120 192S152.2 120 192 120S264 152.2 264 192S231.8 264 192 264zM192 152C169.9 152 152 169.9 152 192S169.9 232 192 232S232 214.1 232 192S214.1 152 192 152z" />
+    <glyph glyph-name="i-cursor"
+      unicode="&#xF246;"
+      horiz-adv-x="192" d=" M96 409.777C75.091 434.472 39.824 446.664 6.191 447.995C2.805 448.129 0 445.383 0 441.9940000000001V421.981C0 418.79 2.498 416.134 5.686 415.992C46.519 414.175 80 392.873 80 368V208H38A6 6 0 0 1 32 202V182A6 6 0 0 1 38 176H80V16C80 -8.873 46.519 -30.175 5.686 -31.992C2.498 -32.133 0 -34.789 0 -37.981V-57.994C0 -61.383 2.806 -64.129 6.192 -63.996C40.03 -62.658 75.193 -50.351 96 -25.777C116.909 -50.472 152.176 -62.664 185.809 -63.995C189.195 -64.129 192 -61.383 192 -57.994V-37.981C192 -34.7900000000001 189.502 -32.1340000000001 186.314 -31.9920000000001C145.481 -30.175 112 -8.873 112 16V176H154A6 6 0 0 1 160 182V202A6 6 0 0 1 154 208H112V368C112 392.873 145.481 414.175 186.314 415.992C189.502 416.134 192 418.79 192 421.981V441.9940000000001C192 445.383 189.194 448.129 185.808 447.996C151.97 446.658 116.807 434.352 96 409.777z" />
+    <glyph glyph-name="ice-skate"
+      unicode="&#xF7AC;"
+      horiz-adv-x="576" d=" M568 32H552C547.6 32 544 28.4 544 24V16C544 -10.5 522.5 -32 496 -32H416V32H448C483.3 32 512 60.7 512 96V133C512 177.1 482 215.5 439.3 226.1L320 256V440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V416H204.3C196.2 416 188.1 414.4 180.5 411.4L52.1 360C40 355.2 32 343.4 32 330.3V96C32 60.7 60.7 32 96 32V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H496C540.2 -64 576 -28.2 576 16V24C576 28.4 572.4 32 568 32zM64 96V330.3L192.4 381.7C196.2 383.2 200.2 384 204.3 384H288V320H232C227.6 320 224 316.4 224 312V296C224 291.6 227.6 288 232 288H288V256H232C227.6 256 224 252.4 224 248V232C224 227.6 227.6 224 232 224H316.1L431.6 195.1C460.1 188 480 162.5 480 133V96C480 78.4 465.6 64 448 64H96C78.4 64 64 78.4 64 96zM384 -32H128V32H384V-32z" />
+    <glyph glyph-name="icicles"
+      unicode="&#xF7AD;"
+      horiz-adv-x="512" d=" M466 448H46C16.3 448 -7.3 419.5 2.1 388.2L90.8 138.8C93.1 132.1 98.7 127.5 106.5 128C113.5 128.2 119.6 133.1 121.4 139.9L144.9 216.9L180.2 44.8C181.7 37.3 188.3 31.9 195.9 31.9C203.6 31.9 210.1 37.3 211.6 44.9L248 226.4L270.3 140.4C271.9000000000001 133.2 278.3 128 285.8 127.9H285.9000000000001C293.3 127.9 299.7000000000001 132.9 301.4000000000001 140.1L333.7000000000001 259.4L390.2000000000001 -50.9C391.6 -58.5000000000001 398.1 -64 405.8000000000001 -64H406.0000000000001C413.6000000000001 -64 420.2000000000001 -58.6 421.7000000000001 -51.2L511.2 393.3V393.5C516.6 422.2 494.4 448 466 448zM406.8 37L351.9000000000001 338.8C348.8 355.8 324.7000000000001 356.4 320.6 339.8L286.6 201.5L262.5 307.5C258.8 323.8 234.6 324.3 231.2 307L195.9 125L163 291C159.5 308.6 135.8 306.8 131.8 292L104.1 187.3L32.6 398C30 406.8 36.4 416 46 416H466C477.1 416 480.9 405.5 479.8 399.5L406.8 37z" />
+    <glyph glyph-name="id-badge"
+      unicode="&#xF2C1;"
+      horiz-adv-x="384" d=" M320 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM352 0C352 -17.6 337.6 -32 320 -32H64C46.4 -32 32 -17.6 32 0V384C32 401.6 46.4 416 64 416H320C337.6 416 352 401.6 352 384V0zM144 352H240C248.8 352 256 359.2 256 368S248.8 384 240 384H144C135.2 384 128 376.8 128 368S135.2 352 144 352zM192 144C236.2 144 272 179.8 272 224S236.2 304 192 304S112 268.2 112 224S147.8 144 192 144zM192 272C218.5 272 240 250.5 240 224S218.5 176 192 176S144 197.5 144 224S165.5 272 192 272zM238.8 128C219.3 128 214.4 121 192 121S164.7 128 145.2 128C124 128 103.4 118.6 91.4 100.6C84.2 89.9 80 77 80 63.1V24C80 19.6 83.6 16 88 16H104C108.4 16 112 19.6 112 24V63.1C112 77.1 121 96 145.2 96C157.6 96 166 89 192 89C217.9 89 226.3 96 238.8 96C263.1 96 272 77.1 272 63.1V24C272 19.6 275.6 16 280 16H296C300.4 16 304 19.6 304 24V63.1C304 77 299.8 89.9 292.6 100.6C280.5 118.6 259.9000000000001 128 238.8 128z" />
+    <glyph glyph-name="id-card-alt"
+      unicode="&#xF47F;"
+      horiz-adv-x="576" d=" M288 240C243.8 240 208 204.2 208 160S243.8 80 288 80S368 115.8 368 160S332.2 240 288 240zM288 112C261.5 112 240 133.5 240 160S261.5 208 288 208S336 186.5 336 160S314.5 112 288 112zM512 384H352V416C352 433.7 337.7 448 320 448H256C238.3 448 224 433.7 224 416V384H64C28.7 384 0 355.3 0 320V0C0 -35.3 28.7 -64 64 -64H512C547.3 -64 576 -35.3 576 0V320C576 355.3 547.3 384 512 384zM256 416H320V320H256V416zM384 -32H192V-10.1C192 -1.1 194.6 7.5 199.6 14.9C206.8 25.6 219.9 32.1 234.6 32.1C250.5 32.1 258.1 24.1 288 24.1S325.6 32.1 341.4 32.1C356.1 32.1 369.1 25.7 376.4 14.9C381.4 7.5 384 -1.1 384 -10.1V-32zM544 0C544 -17.6 529.6 -32 512 -32H416V-10.1C416 5.8 411.2 20.5 403 32.7C389.2 53.2 365.7 64 341.5 64C319.3 64 313.7 56 288.1 56C262.5 56 256.9000000000001 64 234.7 64C210.5 64 187 53.2 173.2 32.7C165 20.5 160.2 5.7 160.2 -10.1V-32H64C46.4 -32 32 -17.6 32 0V320C32 337.6 46.4 352 64 352H224V288H352V352H512C529.6 352 544 337.6 544 320V0z" />
+    <glyph glyph-name="id-card"
+      unicode="&#xF2C2;"
+      horiz-adv-x="576" d=" M360 96H472C476.4 96 480 99.6 480 104V120C480 124.4 476.4 128 472 128H360C355.6 128 352 124.4 352 120V104C352 99.6 355.6 96 360 96zM360 160H472C476.4 160 480 163.6 480 168V184C480 188.4 476.4 192 472 192H360C355.6 192 352 188.4 352 184V168C352 163.6 355.6 160 360 160zM360 32H472C476.4 32 480 35.6 480 40V56C480 60.4 476.4 64 472 64H360C355.6 64 352 60.4 352 56V40C352 35.6 355.6 32 360 32zM192 64C236.2 64 272 99.8 272 144S236.2 224 192 224S112 188.2 112 144S147.8 64 192 64zM192 192C218.5 192 240 170.5 240 144S218.5 96 192 96S144 117.5 144 144S165.5 192 192 192zM512 384H64C28.7 384 0 355.3 0 320V0C0 -35.3 28.7 -64 64 -64H512C547.3 -64 576 -35.3 576 0V320C576 355.3 547.3 384 512 384zM272 -32H112V-16.9C112 -9.9 114.1 -3.1 118 2.7C123.6 11.0000000000001 133.8 15.9 145.3 15.9C157.7 15.9 166.1 8.9 192.1 8.9C218 8.9 226.4000000000001 15.9 238.9000000000001 15.9C250.4000000000001 15.9 260.6 10.9 266.2000000000001 2.7C270.1 -3.1 272.2000000000001 -9.9 272.2000000000001 -16.9V-32zM544 0C544 -17.6 529.6 -32 512 -32H304V-16.9C304 -3 299.8 9.9 292.6 20.6C280.5 38.5 259.9000000000001 48 238.8 48C219.3 48 214.4 41 192 41S164.7 48 145.2 48C124 48 103.4 38.6 91.4 20.6C84.2 9.9 80 -3 80 -16.9V-32H64C46.4 -32 32 -17.6 32 0V256H544V0zM544 288H32V320C32 337.6 46.4 352 64 352H512C529.6 352 544 337.6 544 320V288z" />
+    <glyph glyph-name="igloo"
+      unicode="&#xF7AE;"
+      horiz-adv-x="576" d=" M288 416C128.9 416 0 287.1 0 128V0C0 -17.7 14.3 -32 32 -32H544C561.7 -32 576 -17.7 576 0V128C576 287.1 447.1 416 288 416zM487.5 288H352V375.6C406.2 361.6 453.5 330.4 487.5 288zM448 128H398.2C376 166.1 335.2 192 288 192S200 166.1 177.8 128H128V256H448V128zM288 384C298.9 384 309.5 383.1 320 381.8V288H88.5C135.4 346.4 207.4 384 288 384zM66.6 256H96V128H32C32 174.7 44.7 218.3 66.6 256zM32 0V96H164.5C161.8 85.7 160 75.1 160 64V0H32zM192 0V64C192 117 235 160 288 160S384 117 384 64V0H192zM544 0H416V64C416 75.1 414.1 85.7 411.5 96H544V0zM480 128V256H509.4C531.3 218.3 544 174.7 544 128H480z" />
+    <glyph glyph-name="image"
+      unicode="&#xF03E;"
+      horiz-adv-x="512" d=" M464 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V336C512 362.51 490.51 384 464 384zM480 48C480 39.178 472.822 32 464 32H48C39.178 32 32 39.178 32 48V336C32 344.822 39.178 352 48 352H464C472.822 352 480 344.822 480 336V48zM112 216C142.928 216 168 241.072 168 272S142.928 328 112 328S56 302.928 56 272S81.072 216 112 216zM112 296C125.234 296 136 285.2340000000001 136 272S125.234 248 112 248S88 258.766 88 272S98.766 296 112 296zM319.029 272.971L224 177.941L192.971 208.97C183.598 218.343 168.402 218.343 159.03 208.97L71.03 120.97A23.998000000000005 23.998000000000005 0 0 1 64 104V76C64 69.373 69.373 64 76 64H436C442.627 64 448 69.373 448 76V168C448 174.365 445.471 180.47 440.971 184.971L352.971 272.971C343.598 282.343 328.402 282.343 319.029 272.971zM416 96H96V100.686L176 180.686L224 132.686L336 244.686L416 164.686V96z" />
+    <glyph glyph-name="images"
+      unicode="&#xF302;"
+      horiz-adv-x="576" d=" M528 416H112C85.49 416 64 394.51 64 368V352H48C21.49 352 0 330.51 0 304V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V32H528C554.51 32 576 53.49 576 80V368C576 394.51 554.51 416 528 416zM480 16C480 7.178 472.822 0 464 0H48C39.178 0 32 7.178 32 16V304C32 312.822 39.178 320 48 320H64V80C64 53.49 85.49 32 112 32H480V16zM544 80C544 71.178 536.822 64 528 64H112C103.178 64 96 71.178 96 80V368C96 376.822 103.178 384 112 384H528C536.822 384 544 376.822 544 368V80zM176 248C206.928 248 232 273.072 232 304S206.928 360 176 360S120 334.928 120 304S145.072 248 176 248zM176 328C189.234 328 200 317.2340000000001 200 304S189.234 280 176 280S152 290.766 152 304S162.766 328 176 328zM416.971 304.971C407.598 314.344 392.403 314.344 383.03 304.971L288 209.941L256.971 240.971C247.598 250.344 232.402 250.344 223.03 240.971L135.03 152.971A24.002000000000002 24.002000000000002 0 0 1 128 136V108C128 101.373 133.373 96 140 96H500C506.627 96 512 101.373 512 108V200C512 206.365 509.471 212.47 504.971 216.971L416.971 304.971zM480 128H160V132.686L240 212.686L288 164.686L400 276.686L480 196.686V128z" />
+    <glyph glyph-name="inbox-in"
+      unicode="&#xF310;"
+      horiz-adv-x="576" d=" M560.8 118.2L466.1999999999999 206.9C463.8 209.2 459.9999999999999 209 457.6999999999999 206.6L444.1 192C441.8 189.6 442 185.8 444.4000000000001 183.5L503.7 127.9H388.2L356.2 63.9H219.8L187.8 127.9H72.4L131.7 183.5C134.1 185.8 134.2 189.6 132 192L118.3 206.6C116 209 112.2 209.1 109.8 206.9L15.2 118.2C5.5 109.2 0 96.5 0 83.2V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V83.2C576 96.5 570.5 109.2 560.8 118.2zM544 -16C544 -24.8 536.8 -32 528 -32H48C39.2 -32 32 -24.8 32 -16V80C32 88.8 39.2 96 48 96H168L200 32H376L408 96H528C536.8 96 544 88.8 544 80V-16zM416 320H352V424C352 437.2 341.2 448 328 448H248C234.8 448 224 437.2 224 424V320H160C131.6 320 117.2 285.5 137.4 265.4L265.4 137.4C277.9 124.9 298.2 124.9 310.7 137.4L438.7 265.4C458.7 285.5 444.5 320 416 320zM288 160L160 288H256V416H320V288H416L288 160z" />
+    <glyph glyph-name="inbox-out"
+      unicode="&#xF311;"
+      horiz-adv-x="576" d=" M560.8 118.2L466.1999999999999 206.9C463.8 209.2 459.9999999999999 209 457.6999999999999 206.6L444.1 192C441.8 189.6 442 185.8 444.4000000000001 183.5L503.7 127.9H388.2L356.2 63.9H219.8L187.8 127.9H72.4L131.7 183.5C134.1 185.8 134.2 189.6 132 192L118.3 206.6C116 209 112.2 209.1 109.8 206.9L15.2 118.2C5.5 109.1 0 96.5 0 83.2V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V83.2C576 96.5 570.5 109.1 560.8 118.2zM544 -16C544 -24.8 536.8 -32 528 -32H48C39.2 -32 32 -24.8 32 -16V80C32 88.8 39.2 96 48 96H168L200 32H376L408 96H528C536.8 96 544 88.8 544 80V-16zM160 256H224V152C224 138.8 234.8 128 248 128H328C341.2 128 352 138.8 352 152V256H416C444.4 256 458.8 290.5 438.6 310.6L310.6 438.6C298.1 451.1 277.8 451.1 265.3 438.6L137.3 310.6C117.3 290.5 131.5 256 160 256zM288 416L416 288H320V160H256V288H160L288 416z" />
+    <glyph glyph-name="inbox"
+      unicode="&#xF01C;"
+      horiz-adv-x="576" d=" M566.819 220.623L462.377 364.232A48.001 48.001 0 0 1 423.557 384H152.443A47.998000000000005 47.998000000000005 0 0 1 113.624 364.232L9.181 220.623A47.99600000000001 47.99600000000001 0 0 1 0 192.391V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V192.391A47.99600000000001 47.99600000000001 0 0 1 566.819 220.623zM139.503 345.411A16.048 16.048 0 0 0 152.443 352H423.558C428.66 352 433.497 349.5370000000001 436.498 345.411L524.796 224H388.223L356.223 160H219.777L187.777 224H51.204L139.503 345.411zM544 176V48C544 39.177 536.822 32 528 32H48C39.178 32 32 39.177 32 48V176C32 184.837 39.163 192 48 192H168L200 128H376L408 192H528C536.837 192 544 184.837 544 176z" />
+    <glyph glyph-name="indent"
+      unicode="&#xF03C;"
+      horiz-adv-x="448" d=" M0 372V396A6 6 0 0 0 6 402H442A6 6 0 0 0 448 396V372A6 6 0 0 0 442 366H6A6 6 0 0 0 0 372zM166 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H166A6 6 0 0 1 160 268V244A6 6 0 0 1 166 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM166 110H442A6 6 0 0 1 448 116V140A6 6 0 0 1 442 146H166A6 6 0 0 1 160 140V116A6 6 0 0 1 166 110zM0 96.013V287.986C0 302.256 17.283 309.332 27.313 299.299L123.313 203.313C129.562 197.065 129.562 186.934 123.313 180.686L27.313 84.699C17.296 74.682 0 81.719 0 96.013zM32 249.373V134.627L89.373 192L32 249.373z" />
+    <glyph glyph-name="industry-alt"
+      unicode="&#xF3B3;"
+      horiz-adv-x="512" d=" M404 64H364C357.373 64 352 69.373 352 76V116C352 122.627 357.373 128 364 128H404C410.627 128 416 122.627 416 116V76C416 69.373 410.627 64 404 64zM288 76V116C288 122.627 282.627 128 276 128H236C229.373 128 224 122.627 224 116V76C224 69.373 229.373 64 236 64H276C282.627 64 288 69.373 288 76zM160 76V116C160 122.627 154.627 128 148 128H108C101.373 128 96 122.627 96 116V76C96 69.373 101.373 64 108 64H148C154.627 64 160 69.373 160 76zM512 264V-8C512 -21.255 501.255 -32 488 -32H24C10.745 -32 0 -21.255 0 -8V392C0 405.255 10.745 416 24 416H104C117.255 416 128 405.255 128 392V206.833L285.267 285.466C301.052 293.3590000000001 320 282.007 320 264V206.833L477.267 285.466C493.052 293.3590000000001 512 282.007 512 264zM96 168V384H32V0H480V251.056L299.578 160.845C294.268 158.19 288 162.051 288 168V251.056L107.578 160.845C102.269 158.189 96 162.053 96 168z" />
+    <glyph glyph-name="industry"
+      unicode="&#xF275;"
+      horiz-adv-x="512" d=" M477.267 285.466L320 206.833V264C320 282.007 301.052 293.3590000000001 285.267 285.466L128 206.833V392C128 405.255 117.255 416 104 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H488C501.255 -32 512 -21.255 512 -8V264C512 282.007 493.052 293.3590000000001 477.267 285.466zM107.578 160.845L288 251.056V168C288 162.051 294.268 158.19 299.578 160.845L480 251.056V0H32V384H96V168C96 162.053 102.269 158.189 107.578 160.845z" />
+    <glyph glyph-name="infinity"
+      unicode="&#xF534;"
+      horiz-adv-x="640" d=" M488.88 352C406.31 352 346.21 269.55 320 225.55C293.79 269.55 233.69 352 151.12 352C67.78 352 0 280.2200000000001 0 192S67.78 32 151.12 32C233.68 32 293.79 114.45 320 158.46C346.21 114.45 406.31 32 488.88 32C572.22 32 640 103.78 640 192S572.22 352 488.88 352zM151.12 64C85.44 64 32 121.42 32 192S85.44 320 151.12 320C229.15 320 287.5900000000001 219.39 302.06 192C287.59 164.61 229.16 64 151.12 64zM488.88 64C410.85 64 352.41 164.61 337.94 192C352.4100000000001 219.39 410.85 320 488.88 320C554.56 320 608 262.5800000000001 608 192S554.56 64 488.88 64z" />
+    <glyph glyph-name="info-circle"
+      unicode="&#xF05A;"
+      horiz-adv-x="512" d=" M256 408C374.621 408 472 311.925 472 192C472 72.709 375.39 -24 256 -24C136.756 -24 40 72.562 40 192C40 311.203 136.602 408 256 408M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM220 96H232V216H220C213.373 216 208 221.373 208 228V236C208 242.627 213.373 248 220 248H268C274.627 248 280 242.627 280 236V96H292C298.627 96 304 90.627 304 84V76C304 69.373 298.627 64 292 64H220C213.373 64 208 69.373 208 76V84C208 90.627 213.373 96 220 96zM256 336C238.327 336 224 321.673 224 304S238.327 272 256 272S288 286.327 288 304S273.673 336 256 336z" />
+    <glyph glyph-name="info-square"
+      unicode="&#xF30F;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM188 96H200V216H188C181.373 216 176 221.373 176 228V236C176 242.627 181.373 248 188 248H236C242.627 248 248 242.627 248 236V96H260C266.627 96 272 90.627 272 84V76C272 69.373 266.627 64 260 64H188C181.373 64 176 69.373 176 76V84C176 90.627 181.373 96 188 96zM224 336C206.327 336 192 321.673 192 304S206.327 272 224 272S256 286.327 256 304S241.673 336 224 336z" />
+    <glyph glyph-name="info"
+      unicode="&#xF129;"
+      horiz-adv-x="256" d=" M208 79.333V240C208 255.495 200.62 269.299 189.189 278.081C210.442 295.704 224 322.299 224 352C224 404.935 180.935 448 128 448S32 404.935 32 352C32 327.4360000000001 41.274 304.996 56.504 288H56C29.533 288 8 266.467 8 240V192C8 168.258 25.327 148.486 48 144.667V79.3340000000001C25.327 75.514 8 55.742 8 32V-16C8 -42.467 29.533 -64 56 -64H200C226.467 -64 248 -42.467 248 -16V32C248 55.742 230.673 75.514 208 79.333zM128 416C163.346 416 192 387.346 192 352S163.346 288 128 288S64 316.654 64 352S92.654 416 128 416zM216 -16C216 -24.837 208.837 -32 200 -32H56C47.163 -32 40 -24.837 40 -16V32C40 40.837 47.163 48 56 48H80V176H56C47.163 176 40 183.163 40 192V240C40 248.837 47.163 256 56 256H160C168.837 256 176 248.837 176 240V48H200C208.837 48 216 40.837 216 32V-16z" />
+    <glyph glyph-name="inhaler"
+      unicode="&#xF5F9;"
+      horiz-adv-x="640" d=" M24 184C10.75 184 0 173.25 0 160S10.75 136 24 136S48 146.75 48 160S37.25 184 24 184zM24 88C10.75 88 0 77.25 0 64S10.75 40 24 40S48 50.75 48 64S37.25 88 24 88zM24 -8C10.75 -8 0 -18.75 0 -32S10.75 -56 24 -56S48 -45.25 48 -32S37.25 -8 24 -8zM616.27 409.98L478.47 446.9C475.7 447.64 472.91 448 470.17 448C456.04 448 443.11 438.57 439.2800000000001 424.28L414.3100000000001 331.07L409.2000000000001 336.18C405.9900000000001 339.39 401.9400000000001 340.88 397.9500000000001 340.88C391.0800000000001 340.88 384.3900000000001 336.49 382.4100000000001 328.93L346.49 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H494.62C523.71 -64 549.15 -44.38 556.53 -16.24L594.49 128.47C597.37 139.47 594.21 151.18 586.17 159.22L583.06 162.3300000000001L638.9 370.79C643.48 387.86 633.35 405.4 616.27 409.98zM525.5699999999999 -8.12C521.8799999999999 -22.18 509.1499999999999 -32 494.6199999999999 -32H224V160H371.18L377.44 183.88L406.28 293.84L563.53 136.59L525.5699999999999 -8.12zM556.92 188.46L440.45 304.93L470.22 415.99L608 379.07L556.92 188.46zM120 136C106.75 136 96 125.25 96 112S106.75 88 120 88S144 98.75 144 112S133.25 136 120 136zM120 40C106.75 40 96 29.25 96 16S106.75 -8 120 -8S144 2.75 144 16S133.25 40 120 40z" />
+    <glyph glyph-name="integral"
+      unicode="&#xF667;"
+      horiz-adv-x="366" d=" M88.46 -31.84C69.16 -30.54 51.66 -19.9299999999999 39.58 -4.82L1.75 42.46A8.007 8.007 0 0 0 3 53.71L15.5 63.71A7.982999999999999 7.982999999999999 0 0 0 26.73 62.46L66.45 12.81C74.14 3.17 86.38 -1.6 98.87 0.48C112.93 2.82 123.59 14.58 126.8 28.47L203.65 361.7800000000001C210.08 389.68 232.55 412.29 260.9700000000001 415.55C284.0200000000001 418.1900000000001 306.0900000000001 408.9600000000001 320.35 391.17L364.25 336.25A7.995 7.995 0 0 0 363 325.0100000000001L350.5 315.0100000000001C347.05 312.2500000000001 342.02 312.8100000000001 339.27 316.2600000000001L295.37 371.1800000000001C287.67 380.8000000000001 275.54 385.5700000000001 263.08 383.5500000000001C248.99 381.2600000000001 238.25 369.5300000000001 235.04 355.6L157.49 19.2900000000001C150.18 -12.3999999999999 121.39 -34.0599999999999 88.46 -31.8399999999999z" />
+    <glyph glyph-name="intersection"
+      unicode="&#xF668;"
+      horiz-adv-x="320" d=" M149.35 383.65C64.31 378.15 0 303.74 0 218.52V8C0 3.58 3.58 0 8 0H24C28.42 0 32 3.58 32 8V219.48C32 287.59 83.28 347.15 151.24 351.7C225.76 356.7 288 297.48 288 224V8C288 3.58 291.58 0 296 0H312C316.42 0 320 3.58 320 8V224C320 315.89 242.54 389.69 149.35 383.65z" />
+    <glyph glyph-name="inventory"
+      unicode="&#xF480;"
+      horiz-adv-x="640" d=" M632 448H616C611.6 448 608 443.9 608 438.9V256H544V400C544 408.8 536.8 416 528 416H368C359.2 416 352 408.8 352 400V256H32V438.9C32 443.9 28.4 448 24 448H8C3.6 448 0 443.9 0 438.9V-64H32V-32H608V-64H640V438.9C640 443.9 636.4 448 632 448zM384 384H512V256H384V384zM256 0H128V128H256V0zM288 0V128H416V0H288zM608 0H448V144C448 152.8 440.8 160 432 160H112C103.2 160 96 152.8 96 144V0H32V224H608V0z" />
+    <glyph glyph-name="italic"
+      unicode="&#xF033;"
+      horiz-adv-x="256" d=" M102.791 384H148.006L73.143 0H23.762A12 12 0 0 1 11.998 -9.632L10.388 -17.632C8.892 -25.062 14.573 -32 22.151 -32H150.968A12 12 0 0 1 162.732 -22.368L164.3420000000001 -14.368C165.8370000000001 -6.938 160.156 0 152.578 0H107.363L182.227 384H232.2380000000001A12 12 0 0 1 244.0020000000001 393.632L245.6120000000001 401.632C247.108 409.062 241.427 416 233.849 416H104.401A12 12 0 0 1 92.637 406.368L91.027 398.368C89.532 390.938 95.213 384 102.791 384z" />
+    <glyph glyph-name="jack-o-lantern"
+      unicode="&#xF30E;"
+      horiz-adv-x="576" d=" M494.75 337.48C460.24 370.04 409.33 376.67 368 357.1V396.2C368 408.4 361.2200000000001 419.37 350.31 424.82L310.69 444.64C302.72 448.61 293.31 449.09 285.03 445.9100000000001C276.72 442.75 270.03 436.19 266.69 427.88L237.99 356.13C233.21 353.69 228.59 350.94 224.25 347.75C180.84 378.04 120.47 374.51 81.25 337.49C28.84 288.0800000000001 0 222.22 0 152.05C0 81.89 28.84 16.05 81.25 -33.35C120.44 -70.33 180.78 -73.95 224.25 -43.63C260.81 -70.53 315.19 -70.53 351.75 -43.63C371.25 -57.22 394.13 -63.99 416.9700000000001 -63.99C445.0900000000001 -63.99 473.13 -53.76 494.75 -33.36C547.16 16.04 576 81.89 576 152.06S547.16 288.0800000000001 494.75 337.48zM296.4100000000001 416.01L336 396.2V357.0900000000001C317.79 365.87 297.05 369.08 276.83 367.1L296.41 416.01zM472.8100000000001 -10.08C442.6500000000001 -38.5 393.0300000000001 -38.95 362.1900000000001 -11.14L351.1900000000001 -1.24L340.4400000000001 -11.44C325.9400000000001 -25.2 308.7800000000001 -31.9 288.0000000000001 -31.9S250.0600000000001 -25.2 235.5600000000001 -11.44L224.8100000000001 -1.24L213.8100000000001 -11.14C182.9700000000001 -38.95 133.3400000000001 -38.49 103.1900000000001 -10.08C57.28 33.21 32 90.79 32 152.06S57.28 270.91 103.19 314.2200000000001C133.31 342.62 182.94 343.12 213.81 315.27L224.81 305.37L235.56 315.57C250.06 329.33 267.2200000000001 336.03 288 336.03S325.94 329.33 340.44 315.57L351.19 305.37L362.19 315.27C393 343.0900000000001 442.63 342.67 472.81 314.2100000000001C518.72 270.91 544 213.33 544 152.06S518.72 33.21 472.81 -10.08zM474.4700000000001 169.0700000000001C463.8500000000001 177.46 449.6600000000001 178.35 438.1900000000001 171.34C384.7800000000001 138.61 322.1600000000001 124.6900000000001 257.6600000000001 131.4400000000001L240 133.3V104.07H208V140.86L197.03 144.5C174.47 151.98 155.12 160.76 137.87 171.31C126.4 178.36 112.12 177.39 101.59 169C90.78 160.38 86.68 146.32 91.12 133.16C96.62 116.98 103.5 102.98 112.21 90.26C146.05 41.74 206.87 16.09 287.99 16.09C299.68 16.09 310.77 16.79 321.55 17.84L335.99 19.25V56.09H367.99V24.9400000000001L389.9600000000001 33.7500000000001C421.6800000000001 46.4700000000001 446.6500000000001 65.6800000000001 464.27 90.9300000000001C472.7400000000001 103.2400000000001 479.4900000000001 117.0700000000001 484.96 133.2700000000001C489.41 146.4100000000001 485.28 160.4700000000001 474.47 169.0700000000001zM454.6600000000001 143.47C450.1600000000001 130.1400000000001 444.6900000000001 118.8800000000001 437.9700000000001 109.15C427.4100000000001 94.0100000000001 413.2800000000001 81.53 395.8500000000001 71.84C390.3200000000001 81.53 379.9100000000001 88.0700000000001 368.0100000000001 88.0700000000001H336.0100000000001C318.3500000000001 88.0700000000001 304.0100000000001 73.71 304.0100000000001 56.08V48.5500000000001C298.7900000000001 48.2500000000001 293.4800000000002 48.08 288.0100000000001 48.08C217.7900000000001 48.08 166.0700000000001 69.0000000000001 138.5400000000001 108.47C131.5700000000001 118.62 125.9800000000001 130.06 121.2000000000001 144.03C137.6400000000001 133.9500000000001 155.6700000000001 125.3800000000001 176.0100000000001 117.9400000000001V104.0700000000001C176.0100000000001 86.4300000000001 190.3500000000001 72.08 208.0100000000001 72.08H240.0100000000001C255.5700000000001 72.08 268.5700000000001 83.2500000000001 271.4500000000001 98.0000000000001C334.8600000000002 93.2200000000001 400.2900000000001 110.58 454.9500000000001 144.0700000000001L454.6600000000001 143.47zM249.1500000000001 192.05C252.0000000000001 192.05 254.0100000000001 193.16 255.1500000000001 195.38S256.2900000000001 199.82 255.1500000000001 202.04L214 268.7100000000001C212.29 270.94 210.14 272.04 207.57 272.04S203.14 270.93 202 268.7100000000001L160.85 202.06C159.71 199.83 159.71 197.62 160.85 195.4S164 192.07 166.85 192.07H249.15zM409.1500000000001 192.05C412.0000000000001 192.05 414.0100000000001 193.16 415.1500000000001 195.38S416.2900000000001 199.82 415.1500000000001 202.04L374 268.7100000000001C372.29 270.94 370.14 272.04 367.57 272.04S363.14 270.93 362 268.7100000000001L320.85 202.06C319.7100000000001 199.83 319.7100000000001 197.62 320.85 195.4S324 192.07 326.85 192.07H409.1500000000001z" />
+    <glyph glyph-name="jedi"
+      unicode="&#xF669;"
+      horiz-adv-x="544" d=" M429.33 427.59C425.25 430.4700000000001 420.5 432 415.6 432C407.6600000000001 432 400.2200000000001 428.02 395.7000000000001 421.36C391.2500000000001 414.8 390.35 406.4700000000001 393.3000000000001 399.06C399.2600000000001 384.07 402.2800000000001 368.35 402.2800000000001 352.35C402.2800000000001 311.24 383.1100000000001 273.46 349.6800000000001 248.69C343.7900000000001 244.33 340.2100000000001 237.68 339.8600000000001 230.45C339.5100000000001 223.21 342.4300000000001 216.23 347.8800000000001 211.3C371.9500000000001 189.55 385.0700000000001 159.52 385.0100000000001 128C384.9600000000001 105.85 371.4900000000001 29.01 287.9900000000001 17.71V89.37L308.6800000000001 68.68C314.9300000000001 62.43 325.0500000000001 62.43 331.3100000000001 68.68C337.5600000000001 74.93 337.5600000000001 85.06 331.3100000000001 91.3L310.62 112H336C344.84 112 352 119.16 352 128S344.84 144 336 144H310.62L331.31 164.69C337.56 170.94 337.56 181.07 331.31 187.31S314.93 193.56 308.68 187.31L288 166.62V432C288 440.84 280.84 448 272 448S256 440.84 256 432V166.62L235.31 187.31C229.06 193.56 218.93 193.56 212.68 187.31S206.43 170.93 212.68 164.69L233.37 144H208C199.16 144 192 136.84 192 128S199.16 112 208 112H233.38L212.69 91.31C206.44 85.06 206.44 74.93 212.69 68.69C218.94 62.44 229.06 62.44 235.32 68.69L256 89.38V17.79C201.27 25.6 158.92 71.4499999999999 158.92 128.01C158.92 159.66 172.13 189.66 196.12 211.32C201.57 216.24 204.5 223.22 204.14 230.46C203.79 237.69 200.21 244.33 194.32 248.69C160.88 273.46 141.71 311.25 141.71 352.36C141.71 368.35 144.7300000000001 384.05 150.6700000000001 399.02C153.6100000000001 406.43 152.71 414.77 148.2600000000001 421.32C143.7300000000001 427.98 136.2900000000001 431.96 128.34 431.96C123.43 431.96 118.68 430.43 114.59 427.54C38.76 373.89 -3.97 286.6 0.29 194.05C6.78 53.23 125.57 -64 272 -64C421.98 -64 544 57.47 544 206.77C544 294.27 501.13 376.82 429.33 427.59zM272 -32C126.79 -32 44.79 85.66 33.81 179.15L69.46 147.95C75.84 142.36 86.01 142.56 92.02 149.47C97.86 156.11 97.18 166.22 90.52 172.05L32.53 222.79C33.36 235.17 35.48 247.26 38.17 259.19L68.67 228.69C74.92 222.44 85.04 222.44 91.3 228.69C97.55 234.94 97.55 245.07 91.3 251.31L48.77 293.84C62.54 328.81 84.32 360.45 113.29 385.82A157.03 157.03 0 0 1 109.7 352.34C109.7 304.04 130.83 259.46 168.01 228.65C141.79 201.77 126.91 165.81 126.91 128.62C126.91 48.97 191.99 -15.84 271.99 -15.84C344.15 -15.84 416.81 40.1 417.02 127.99C417.11 165.49 402.67 201.36 375.97 228.65C413.14 259.4600000000001 434.27 304.05 434.27 352.3400000000001C434.27 363.64 433.07 374.82 430.69 385.78C459.47 360.49 481.24 328.73 495.07 293.7L452.67 251.3C446.42 245.05 446.42 234.92 452.67 228.68C458.92 222.43 469.04 222.43 475.3 228.68L505.96 259.34C508.71 247.3 510.3 234.97 511.1300000000001 222.51L453.45 172.04C446.79 166.21 446.1100000000001 156.1 451.95 149.46C458.01 142.5 468.1900000000001 142.4 474.51 147.94L510.2500000000001 179.21C496.48 60.51 394.96 -32 272 -32z" />
+    <glyph glyph-name="joint"
+      unicode="&#xF595;"
+      horiz-adv-x="640" d=" M556.44 354.52C548.9 359.55 544 367.67 544 376.74V440C544 444.42 540.42 448 536 448H520C515.58 448 512 444.42 512 440V377.69C512 357.53 522.28 338.91 539.02 327.68C582.22 298.7000000000001 608 250.38 608 198.32V168C608 163.58 611.58 160 616 160H632C636.42 160 640 163.58 640 168V198.31C640 261.24 608.76 319.62 556.44 354.52zM503.5700000000001 274.39C528.9 257.29 544 228.9 544 198.31V168C544 163.58 547.58 160 552 160H568C572.42 160 576 163.58 576 168V198.31C576 240.27 554.92 279.19 519.69 302.0900000000001C494.07 318.75 480 348.4700000000001 480 379.03V440C480 444.42 476.42 448 472 448H456C451.58 448 448 444.42 448 440V372.9700000000001C448 332.65 470.15 296.95 503.57 274.39zM616 96H278.94C180.3 96 83.65 68.28 0 16C83.65 -36.28 180.3 -64 278.94 -64H616C629.25 -64 640 -53.25 640 -40V72C640 85.26 629.25 96 616 96zM278.94 -32C205.09 -32 132.61 -15.53 66.43 16C126.54 44.64 191.93 60.14 258.75 62.88L340.05 -32H278.94zM382.21 -32L299.94 64H417.79L500.0599999999999 -32H382.21zM608 -32H542.21L459.9400000000001 64H608V-32z" />
+    <glyph glyph-name="journal-whills"
+      unicode="&#xF66A;"
+      horiz-adv-x="448" d=" M448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64zM240 101.05C317.19 101.05 380 163.85 380 241.05C380 291.24 352.44 337.86 308.06 362.75C303.2800000000001 365.44 297.34 364.52 293.5300000000001 360.61C289.7500000000001 356.67 289.0900000000001 350.67 291.9700000000001 346.02C298.06 336.05 301.1600000000001 325.3300000000001 301.1600000000001 314.19C301.1600000000001 296.08 292.9100000000001 278.92 278.5 267.13A11.933999999999997 11.933999999999997 0 0 1 274.12 258.57C273.9 255.23 275.12 251.96 277.43 249.54C286.81 239.76 291.99 226.99 291.99 213.63C291.99 189.1 274.88 168.61 251.99 163.17V188.7L258.33 182.36C261.46 179.23 266.52 179.23 269.64 182.36C272.76 185.48 272.76 190.55 269.64 193.67L259.31 204H272C276.4100000000001 204 280 207.58 280 212S276.4100000000001 220 272 220H259.31L269.65 230.34C272.77 233.46 272.77 238.53 269.65 241.65S261.46 244.77 258.34 241.65L252 235.31V364C252 370.62 246.62 376 240 376S228 370.62 228 364V235.31L221.66 241.65C218.54 244.77 213.47 244.77 210.35 241.65S207.23 233.46 210.35 230.34L220.69 220H208C203.59 220 200 216.42 200 212S203.59 204 208 204H220.69L210.35 193.66C207.23 190.54 207.23 185.47 210.35 182.35C213.48 179.22 218.54 179.22 221.66 182.35L228 188.69V163.16C205.11 168.61 188 189.1 188 213.62C188 226.98 193.19 239.74 202.56 249.53C204.87 251.95 206.09 255.22 205.87 258.56C205.68 261.9 204.09 265.01 201.49 267.12C187.08 278.92 178.83 296.07 178.83 314.18C178.83 325.32 181.92 336.04 188.02 346.01A11.968 11.968 0 0 1 186.46 360.6C182.65 364.51 176.71 365.43 171.93 362.74C127.56 337.86 100 291.23 100 241.05C100 163.84 162.81 101.05 240 101.05zM149.28 206.02L125.43 226.89C124.85 231.58 124 236.2 124 241.05C124 248.35 124.71 255.57 126.08 262.61L138.34 250.35C141.47 247.2200000000001 146.53 247.2200000000001 149.65 250.35C152.77 253.4700000000001 152.77 258.54 149.65 261.6600000000001L131.21 280.1C136.5 294.5300000000001 144.43 307.93 154.99 319.29C154.9 317.5900000000001 154.83 315.9000000000001 154.83 314.2000000000001C154.83 292.8200000000001 162.99 272.4700000000001 177.55 256.7800000000001C168.74 244.1400000000001 163.99 229.1900000000001 163.99 213.6400000000001C163.99 171.73 198.08 137.6400000000001 239.99 137.6400000000001S315.99 171.73 315.99 213.6400000000001C315.99 229.1900000000001 311.24 244.1400000000001 302.43 256.7800000000001C316.99 272.4700000000001 325.15 292.8300000000001 325.15 314.2000000000001C325.15 315.9000000000001 325.09 317.5900000000001 324.99 319.2900000000001C335.55 307.9300000000001 343.48 294.5400000000001 348.77 280.1L330.33 261.6600000000001C327.21 258.5400000000001 327.21 253.4700000000001 330.33 250.3500000000001C333.46 247.2200000000001 338.52 247.2200000000001 341.64 250.3500000000001L353.9 262.61C355.27 255.5700000000001 355.98 248.3500000000001 355.98 241.0500000000001C355.98 236.2000000000001 355.13 231.5800000000001 354.55 226.8900000000001L330.7 206.0200000000001C327.39 203.1100000000001 327.0399999999999 198.0700000000001 329.95 194.7400000000001C333.01 191.2600000000001 338.05 191.2000000000001 341.26 193.9900000000001L348.11 199.9800000000001C331.46 156.3000000000001 289.44 125.0500000000001 239.98 125.0500000000001S148.51 156.3000000000001 131.85 199.9800000000001L138.7 193.9900000000001C141.94 191.1800000000001 146.98 191.2900000000001 150.01 194.7400000000001C152.94 198.0600000000001 152.59 203.1100000000001 149.28 206.0200000000001z" />
+    <glyph glyph-name="kaaba"
+      unicode="&#xF66B;"
+      horiz-adv-x="576" d=" M261.89 281.4600000000001L165.89 255.28A7.997 7.997 0 0 1 160 247.56V230.98C160 225.7 165.02 221.87 170.11 223.26L266.11 249.4400000000001A7.997 7.997 0 0 1 272 257.1600000000001V273.73C272 279.02 266.98 282.85 261.89 281.4600000000001zM309.89 249.45L405.89 223.27C410.98 221.88 416 225.71 416 230.99V247.57C416 251.18 413.59 254.34 410.11 255.29L314.11 281.4700000000001C309.0200000000001 282.86 304 279.03 304 273.75V257.18A8 8 0 0 1 309.89 249.45zM554.12 364.49L318.36 443.07C308.51 446.36 298.25 448 288 448S267.49 446.36 257.64 443.07L21.88 364.49A32.006 32.006 0 0 1 0 334.13V23.33C0 8.33 10.42 -4.65 25.06 -7.91L267.18 -61.71C274.04 -63.24 281.02 -64 288.01 -64S301.98 -63.24 308.84 -61.71L550.96 -7.91C565.6 -4.66 576.02 8.33 576.02 23.33V334.1300000000001C576 347.9000000000001 567.1899999999999 360.1300000000001 554.12 364.4900000000001zM544 218.7L458.11 242.19C453.02 243.58 448 239.75 448 234.47V217.89C448 214.28 450.41 211.12 453.89 210.17L544 185.92V23.33L301.88 -30.47A63.983999999999995 63.983999999999995 0 0 0 274.11 -30.47L32 23.33V185.7L122.11 210.18A7.997 7.997 0 0 1 128 217.9V234.48C128 239.76 122.98 243.59 117.89 242.2L32 218.86V261.3L274.25 333.98C283.25 336.67 292.7200000000001 336.68 301.78 333.9600000000001L544 261.31V218.7zM544 294.72L311 364.61C295.9100000000001 369.17 280 369.16 265.03 364.63L32 294.7100000000001V334.12L267.76 412.7100000000001C275.33 415.24 290.47 418.63 308.24 412.7100000000001L544 334.13V294.7200000000001z" />
+    <glyph glyph-name="key-skeleton"
+      unicode="&#xF6F3;"
+      horiz-adv-x="512" d=" M329.37 310.63C316.88 298.13 316.88 277.87 329.37 265.37C341.87 252.87 362.13 252.87 374.63 265.37C387.12 277.87 387.12 298.13 374.63 310.63C362.13 323.12 341.87 323.12 329.37 310.63zM393.37 374.63C380.88 362.13 380.88 341.87 393.37 329.37C405.87 316.87 426.13 316.87 438.63 329.37S451.13 362.13 438.63 374.63C426.13 387.12 405.87 387.12 393.37 374.63zM448 448H320C284.65 448 256 419.35 256 384V256C256 244.15 259.44 233.2 265.05 223.68L2.34 -39.03C-0.78 -42.15 -0.78 -47.22 2.34 -50.34L13.65 -61.65C16.77 -64.77 21.84 -64.77 24.96 -61.65L73.66 -12.95L120.06 -59.35C126.22 -65.51 136.26 -65.5699999999999 142.49 -59.35L187.35 -14.49C193.54 -8.3 193.54 1.7400000000001 187.35 7.9400000000001L140.95 54.34L169.66 83.0600000000001L216.06 36.6600000000001C222.22 30.5000000000001 232.26 30.4400000000001 238.4900000000001 36.6600000000001L283.35 81.5200000000001C289.54 87.7100000000001 289.54 97.7500000000001 283.35 103.9500000000001L236.95 150.3500000000001L287.67 201.0700000000001C297.19 195.4600000000001 308.14 192.0200000000001 319.99 192.0200000000001H447.99C483.34 192.0200000000001 511.99 220.6700000000001 511.99 256.0200000000001V384C512 419.35 483.35 448 448 448zM153.71 -3.28L131.28 -25.71L96.1 9.47L118.53 31.9L153.71 -3.28zM249.71 92.72L227.28 70.29L192.09 105.48L214.52 127.91L249.71 92.72zM480 256C480 238.36 465.64 224 448 224H320C302.36 224 288 238.36 288 256V384C288 401.64 302.36 416 320 416H448C465.64 416 480 401.64 480 384V256z" />
+    <glyph glyph-name="key"
+      unicode="&#xF084;"
+      horiz-adv-x="512" d=" M336 416C415.529 416 480 351.529 480 272S415.529 128 336 128C317.032 128 298.924 131.675 282.339 138.339L240 96H192V32H128V-32H32V48L202.339 218.339C195.675 234.924 192 253.032 192 272C192 351.529 256.471 416 336 416M336 448C238.816 448 160 369.231 160 272C160 256.693 161.945 241.648 165.798 227.053L7.029 68.284A24.003 24.003 0 0 1 0 51.314V-40C0 -53.255 10.745 -64 24 -64H136C149.255 -64 160 -53.255 160 -40V0H200C213.255 0 224 10.745 224 24V64H243.314C249.679 64 255.784 66.529 260.285 71.029L291.054 101.798C305.648 97.945 320.693 96 336 96C433.184 96 512 174.769 512 272C512 369.184 433.231 448 336 448zM384 340C395.028 340 404 331.028 404 320S395.028 300 384 300S364 308.972 364 320S372.972 340 384 340M384 368C357.49 368 336 346.51 336 320S357.49 272 384 272S432 293.49 432 320S410.51 368 384 368z" />
+    <glyph glyph-name="keyboard"
+      unicode="&#xF11C;"
+      horiz-adv-x="576" d=" M528 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V336C576 362.51 554.51 384 528 384zM544 48C544 39.177 536.823 32 528 32H48C39.177 32 32 39.177 32 48V336C32 344.823 39.177 352 48 352H528C536.823 352 544 344.823 544 336V48zM168 180V204C168 210.627 162.627 216 156 216H132C125.373 216 120 210.627 120 204V180C120 173.373 125.373 168 132 168H156C162.627 168 168 173.373 168 180zM264 180V204C264 210.627 258.627 216 252 216H228C221.373 216 216 210.627 216 204V180C216 173.373 221.373 168 228 168H252C258.627 168 264 173.373 264 180zM360 180V204C360 210.627 354.627 216 348 216H324C317.373 216 312 210.627 312 204V180C312 173.373 317.373 168 324 168H348C354.627 168 360 173.373 360 180zM456 180V204C456 210.627 450.627 216 444 216H420C413.373 216 408 210.627 408 204V180C408 173.373 413.373 168 420 168H444C450.627 168 456 173.373 456 180zM120 100V124C120 130.627 114.627 136 108 136H84C77.373 136 72 130.627 72 124V100C72 93.373 77.373 88 84 88H108C114.627 88 120 93.373 120 100zM504 100V124C504 130.627 498.627 136 492 136H468C461.373 136 456 130.627 456 124V100C456 93.373 461.373 88 468 88H492C498.627 88 504 93.373 504 100zM120 260V284C120 290.627 114.627 296 108 296H84C77.373 296 72 290.627 72 284V260C72 253.373 77.373 248 84 248H108C114.627 248 120 253.373 120 260zM216 260V284C216 290.627 210.627 296 204 296H180C173.373 296 168 290.627 168 284V260C168 253.373 173.373 248 180 248H204C210.627 248 216 253.373 216 260zM312 260V284C312 290.627 306.627 296 300 296H276C269.373 296 264 290.627 264 284V260C264 253.373 269.373 248 276 248H300C306.627 248 312 253.373 312 260zM408 260V284C408 290.627 402.627 296 396 296H372C365.373 296 360 290.627 360 284V260C360 253.373 365.373 248 372 248H396C402.627 248 408 253.373 408 260zM504 260V284C504 290.627 498.627 296 492 296H468C461.373 296 456 290.627 456 284V260C456 253.373 461.373 248 468 248H492C498.627 248 504 253.373 504 260zM408 108V116C408 122.627 402.627 128 396 128H180C173.373 128 168 122.627 168 116V108C168 101.373 173.373 96 180 96H396C402.627 96 408 101.373 408 108z" />
+    <glyph glyph-name="keynote"
+      unicode="&#xF66C;"
+      horiz-adv-x="512" d=" M505.24 173.51L456.84 270.31A32 32 0 0 1 428.2200000000001 288H128V304C128 343.77 157.25 376.6 195.34 382.7200000000001C202.29 364.78 219.6 352 240 352H304C330.51 352 352 373.49 352 400S330.51 448 304 448H240C218.63 448 200.73 433.94 194.52 414.64C139.17 407.88 96 361.13 96 304V288H83.78A32 32 0 0 1 55.16 270.31L6.76 173.51A63.874 63.874 0 0 1 0 144.89V96C0 78.33 14.33 64 32 64H192V-32H136C131.58 -32 128 -35.58 128 -40V-56C128 -60.42 131.58 -64 136 -64H376C380.42 -64 384 -60.42 384 -56V-40C384 -35.58 380.42 -32 376 -32H320V64H480C497.67 64 512 78.33 512 96V144.89C512 154.83 509.69 164.63 505.24 173.51zM240 416H304C312.82 416 320 408.82 320 400S312.82 384 304 384H240C231.18 384 224 391.18 224 400S231.18 416 240 416zM83.78 256H428.23L476.23 160H35.78L83.78 256zM288 -32H224V64H288V-32zM480 96H32V128H480V96z" />
+    <glyph glyph-name="khanda"
+      unicode="&#xF66D;"
+      horiz-adv-x="512" d=" M415.81 382A16.095 16.095 0 0 1 408.05 383.99C403.7700000000001 383.99 399.54 382.28 396.45 378.98A15.973999999999998 15.973999999999998 0 0 1 394.54 359.46C411.03 333.3 419.74 303.07 419.74 272.05C419.55 218.8 392.97 169.36 348.47 139.64L271.84 86.29V106.39L315.89 142.48C319.81 146.68 320.89 152.57 318.7 157.76L310.85 175C344.6900000000001 194.26 367.79 230.25 367.79 271.99C367.79 312.78 345.7700000000001 348.12 313.2000000000001 367.7L318.4200000000001 379.14C320.5900000000001 384.28 319.6600000000001 390.68 314.8500000000001 395.18L255.86 448L196.87 395.19C192.12 390.75 191.1 384.38 193.3 379.15L198.52 367.7100000000001C165.95 348.13 143.93 312.78 143.93 271.99C143.93 230.24 167.02 194.26 200.87 175L193.02 157.76C190.83 152.58 191.92 146.69 195.83 142.48L239.88 106.39V86.49L163.29 139.82C119.02 169.38 92.44 218.81 92.26 272C92.26 303.08 100.97 333.31 117.46 359.4700000000001C121.33 365.63 119.86 373.24 114.87 378.55C111.87 381.76 107.53 383.35 103.18 383.35C100.29 383.35 97.38 382.65 94.85 381.25C16.32 338.4 -22.3 242.7 13.36 152.01C20.43 134.02 31.25 117.63 43.82 102.95L99.79 37.59C102.91 33.94 107.39 32 111.94 32C114.49 32 117.07 32.61 119.44 33.88L198.79 76.11L228 55.77L180.92 22.99C179.25 23.36 177.69 24 175.91 24C162.66 24 151.92 13.26 151.92 0C151.92 -13.25 162.66 -24 175.91 -24C188.01 -24 197.6 -14.89 199.24 -3.24L239.87 25.04V-4.91C230.48 -10.48 223.88 -20.29 223.88 -32.01C223.88 -49.6800000000001 238.2 -64.01 255.86 -64.01S287.84 -49.68 287.84 -32.01C287.84 -20.3 281.23 -10.49 271.85 -4.91V25.24L312.76 -3.24C314.4100000000001 -14.89 324 -24 336.09 -24C349.34 -24 360.08 -13.25 360.08 0C360.08 13.26 349.34 24 336.09 24C334.31 24 332.75 23.36 331.08 22.99L284 55.77L313.21 76.11L392.56 33.8799999999999C394.94 32.62 397.51 31.9999999999999 400.06 31.9999999999999C404.61 31.9999999999999 409.0899999999999 33.9399999999999 412.2099999999999 37.5899999999999L464.7199999999999 98.8999999999999C483.5899999999999 120.9199999999999 498.7199999999999 146.3999999999999 505.9699999999999 174.4899999999999C527.5899999999999 258.1499999999999 489.5199999999999 341.7599999999999 415.81 381.9999999999999zM115.73 68.15L68.1 123.77C56.72 137.06 48.32 150.5 43.12 163.73C22.03 217.36 31.71 274.65 65.23 315.89A197.13899999999998 197.13899999999998 0 0 1 60.28 271.89C60.5 208.02 92.37 148.6999999999999 145.01 113.5699999999999L169.29 96.6599999999999L115.73 68.1499999999999zM299.94 338.63C321.52 324.29 335.8 299.8 335.8 272C335.8 243.24 320.42 218.19 297.5900000000001 204.09L285.3200000000001 231.02C276.5700000000001 255.54 276.5700000000001 282.06 285.3200000000001 306.5800000000001L299.9400000000001 338.63zM255.86 405.06L283.7100000000001 380.13L256.23 319.85L255.85 319.02L255.4700000000001 319.85L227.98 380.11L255.86 405.06zM214.11 204.09C191.28 218.19 175.9 243.24 175.9 272C175.9 299.81 190.19 324.29 211.76 338.63L226.37 306.57C235.12 282.05 235.12 255.54 226.37 231.01L214.11 204.09zM255.86 134.66L228.02 157.47L255.48 217.75L255.85 218.57L256.2200000000001 217.75L283.6900000000001 157.47L255.8600000000001 134.66zM475.02 182.5C469.52 161.21 457.89 140.09 440.45 119.73L396.28 68.16L342.71 96.67L366.23 113.05C419.54 148.65 451.4999999999999 208.06 451.73 272.0700000000001C451.73 286.77 450.09 301.3300000000001 446.88 315.5C476.3199999999999 279.1800000000001 487.48 230.7500000000001 475.0199999999999 182.5z" />
+    <glyph glyph-name="kidneys"
+      unicode="&#xF5FB;"
+      horiz-adv-x="608" d=" M248.4 223.16L192.28 252.7C197.03 261.87 202.93 270.77 211.12 278.84C247.87 315.08 252.93 379.11 218.45 417.75C200.55 437.79 176.29 448 151.92 448C130.29 448 108.59 439.96 91.18 423.61C14.08 351.18 -17.32 244.51 9.33 145.21C30.18 67.55 84.84 64 100.09 64C177.96 64 199.34 143.77 187.94 186.11C183.61 202.36 181.97 208.43 182.93 221.83L234.8 194.53C239.95 191.82 243.2 186.28 243.2 180.22V-56C243.2 -60.42 246.6 -64 250.8 -64H266C270.2 -64 273.6 -60.42 273.6 -56V180.23C273.6 198.41 263.8400000000001 215.03 248.4000000000001 223.16zM155.68 188.71L158.7 177.39C180.56 96.15 63.5 61.02 41.62 142.63L38.59 153.9C15.14 241.3 43.05 335.5 111.42 399.73C122.59 410.2200000000001 136.97 416 151.92 416C186.45 416 214.7 385.54 212.7 348.37C211.78 331.31 204.6 315.64 192.48 304.26C158.57 272.43 144.81 229.21 155.68 188.71zM516.8199999999999 423.61C499.41 439.96 477.71 448 456.08 448C431.72 448 407.45 437.79 389.57 417.75C355.09 379.11 360.15 315.08 396.9 278.8400000000001C405.09 270.76 410.99 261.86 415.73 252.7L359.61 223.16C344.16 215.03 334.41 198.41 334.41 180.23V-56C334.41 -60.42 337.81 -64 342.01 -64H357.21C361.41 -64 364.81 -60.42 364.81 -56V180.22C364.81 186.28 368.06 191.8200000000001 373.2200000000001 194.53L425.0800000000001 221.8300000000001C426.04 208.43 424.4000000000001 202.3600000000001 420.0700000000001 186.11C408.6600000000001 143.77 430.04 64 507.91 64C523.1600000000001 64 577.82 67.55 598.6700000000001 145.21C625.32 244.51 593.9200000000001 351.19 516.82 423.61zM569.42 153.91L566.39 142.64C544.5 61.03 427.44 96.15 449.31 177.4L452.33 188.72C463.19 229.22 449.44 272.43 415.52 304.27C403.4 315.65 396.22 331.32 395.3 348.38C393.3 385.55 421.55 416.01 456.0799999999999 416.01C471.0299999999999 416.01 485.4099999999999 410.23 496.5799999999999 399.74C564.9599999999999 335.5 592.8699999999999 241.31 569.42 153.91z" />
+    <glyph glyph-name="kiss-beam"
+      unicode="&#xF597;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM304 140C304 159.2 275.2 181.5 232.5 184C228.7 184.4 225.1 181.6 224.3 177.8C223.4 174 225.4 170.1 229 168.6L245.9 161.4C258.9 155.9 266.7 147.9 266.7 139.9S258.9 123.9 246 118.4L229 111.2000000000001C223.3 108.8000000000001 223 99.0000000000001 229 96.4L245.9 89.2000000000001C258.9 83.7000000000001 266.7 75.7000000000001 266.7 67.7000000000001S258.9 51.7 246 46.2L229 39.0000000000001C225.4 37.5000000000001 223.4 33.6000000000001 224.3 29.8000000000001C225.1 26.2 228.4 23.6000000000001 232.1 23.6000000000001H232.6C275.4000000000001 26.1000000000001 304.1 48.4000000000001 304.1 67.6000000000001C304.1 80.6000000000001 290.7000000000001 94.9000000000001 268.9000000000001 103.6000000000001C290.6 112.7 304 127 304 140zM168 296C144.2 296 115.3 266.7 112 224.6C111.7 220.9 114 217.4 117.6 216.3C121.1 215.3 125.1 216.8 126.9 220L136.4 237C144.1 250.7 155.6 258.6 167.9 258.6S191.7 250.7 199.4 237L208.9 220C211 216.3 215.1 215.3 218.2 216.3C221.8 217.4 224.1 220.8 223.8 224.6C220.7 266.7 191.8 296 168 296zM328 296C304.2 296 275.3 266.7 272 224.6C271.7 220.9 274 217.4 277.6 216.3C281.1 215.3 285.1 216.8 286.9000000000001 220L296.4000000000001 237C304.1 250.7 315.6 258.6 327.9000000000001 258.6S351.7000000000001 250.7 359.4000000000001 237L368.9000000000001 220C371.0000000000001 216.3 375.1 215.3 378.2000000000001 216.3C381.8000000000001 217.4 384.1 220.8 383.8000000000001 224.6C380.7000000000001 266.7 351.8000000000001 296 328.0000000000001 296z" />
+    <glyph glyph-name="kiss-wink-heart"
+      unicode="&#xF598;"
+      horiz-adv-x="504" d=" M499.6 55.7C494.4 69.3 484.4 80 472.2 87.5C487.2 119.3 496.0000000000001 154.5 496.0000000000001 192C496 329 385 440 248 440S0 329 0 192S111 -56 248 -56C284.1 -56 318.2 -47.9 349.2 -33.9C358.7 -45.5 373.9 -51.7 389.9 -47.6L455.3 -30.7C492.8 -20.9 513.5999999999999 19.1 499.6 55.7zM323.2000000000001 45.6L337.0000000000001 -4.3C309.8000000000001 -16.8 279.8000000000001 -24 248.0000000000001 -24C128.9000000000001 -24 32.0000000000001 72.9 32.0000000000001 192S128.9 408 248 408S464 311.1 464 192C464 158.1 456 126.1 442 97.6C441 97.7000000000001 423.4 128 385.9 128C344 128 311.4 88.2 323.2 45.6zM447.2000000000001 0.3L381.8000000000001 -16.6C377.8000000000001 -17.7 373.3000000000001 -15.3 372.0000000000001 -11L354.0000000000001 54.1C348.8000000000001 73 360.9000000000001 92.4 380.8000000000001 95.5C398.5000000000001 98.3 414.8000000000001 86 419.4000000000001 69.5L421.2000000000001 62.9L427.9000000000001 64.6C442.2000000000001 68.3 462.6000000000001 62.9 469.7000000000001 44.2C476.9000000000001 25.4 466.2000000000001 5.3 447.2000000000001 0.3zM304 140C304 159.2 275.3 181.5 232.5 184C228.7 184.4 225.1 181.6 224.3 177.8C223.4 174 225.4 170.1 229 168.6L245.9 161.4C258.9 155.9 266.6 147.9 266.6 139.9S258.9000000000001 123.9 245.9000000000001 118.4L228.9000000000001 111.2000000000001C223.2000000000001 108.8000000000001 222.9 99.0000000000001 228.9000000000001 96.4L245.8000000000001 89.2000000000001C258.8000000000001 83.7000000000001 266.5000000000001 75.7000000000001 266.5000000000001 67.7000000000001S258.8000000000001 51.7 245.8000000000001 46.2L228.8000000000001 39.0000000000001C225.2000000000001 37.5000000000001 223.2000000000001 33.6000000000001 224.1000000000001 29.8000000000001C224.9000000000001 26.2 228.2000000000001 23.6000000000001 231.9000000000001 23.6000000000001H232.4000000000001C275.2000000000001 26.1000000000001 303.9000000000001 48.4000000000001 303.9000000000001 67.6000000000001C303.9000000000001 80.6000000000001 290.5000000000001 94.9000000000001 268.7000000000001 103.6000000000001C290.6 112.7 304 127 304 140zM168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM403.8 225.9C399.8 251.1 369.6 268 344 268S288.1 251.1 284.2 225.9C282.4 215 295.5 207.5 304 215.1L313.5 223.6C328.3 236.8 359.7 236.8 374.5 223.6L384 215.1C392.6 207.6 405.6 214.9 403.8 225.9z" />
+    <glyph glyph-name="kiss"
+      unicode="&#xF596;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM304 140C304 159.2 275.2 181.5 232.5 184C228.7 184.4 225.1 181.6 224.3 177.8C223.4 174 225.4 170.1 229 168.6L245.9 161.4C258.9 155.9 266.7 147.9 266.7 139.9S258.9 123.9 246 118.4L229 111.2000000000001C223.3 108.8000000000001 223 99.0000000000001 229 96.4L245.9 89.2000000000001C258.9 83.7000000000001 266.7 75.7000000000001 266.7 67.7000000000001S258.9 51.7 246 46.2L229 39.0000000000001C225.4 37.5000000000001 223.4 33.6000000000001 224.3 29.8000000000001C225.1 26.2 228.4 23.6000000000001 232.1 23.6000000000001H232.6C275.4000000000001 26.1000000000001 304.1 48.4000000000001 304.1 67.6000000000001C304.1 80.6000000000001 290.7000000000001 94.9000000000001 268.9000000000001 103.6000000000001C290.6 112.7 304 127 304 140zM168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="kite"
+      unicode="&#xF6F4;"
+      horiz-adv-x="640" d=" M608 448H345.46C330.56 448 317.63 437.71 314.28 423.2L230.8 61.43L142.63 -26.73C132.16 -37.14 112.01 -28.73 112.01 -14.06V91.44L123.97 82.28C131.38 76.6 140.15 73.6 149.32 73.6C172.86 73.6 192.02 93.46 192.02 117.88V170.13C192.02 194.54 172.87 214.41 149.32 214.41C140.15 214.41 131.39 211.41 123.98 205.74L112 196.57V224C112 268.18 76.18 304 32 304H8C3.58 304 0 300.42 0 296V280C0 275.5800000000001 3.58 272 8 272H32C58.51 272 80 250.52 80 224.01V196.57L68.04 205.73C60.63 211.41 51.86 214.41 42.69 214.41C19.15 214.4 0 194.54 0 170.12V117.87C0 93.46 19.15 73.59 42.7 73.59C51.87 73.59 60.63 76.59 68.04 82.2600000000001L80 91.43V-11.69C80 -37.37 98.33 -60.63 123.83 -63.65C139.37 -65.49 154.34 -60.26 165.25 -49.39L253.41 38.77L615.1899999999999 122.26C629.7099999999999 125.61 639.9899999999999 138.54 639.9899999999999 153.44V416C640 433.67 625.67 448 608 448zM96 144L48.58 107.68C41.48 102.24 32 108.11 32 117.88V170.13C32 179.92 41.49 185.76 48.58 180.33L96 144L143.42 180.32C150.52 185.75 160 179.9 160 170.12V117.87C160 108.08 150.5 102.24 143.42 107.67L96 144zM585.38 416L476 306.63L366.62 416H585.38zM340.94 396.43L453.37 284L273.48 104.12L340.94 396.43zM296.11 81.48L476 261.37L588.4300000000001 148.94L296.1100000000001 81.48zM608 174.62L498.62 284L608 393.37V174.62z" />
+    <glyph glyph-name="kiwi-bird"
+      unicode="&#xF535;"
+      horiz-adv-x="576" d=" M463.99 248C450.74 248 439.99 237.26 439.99 224C439.99 210.75 450.74 200 463.99 200S487.99 210.75 487.99 224C487.99 237.26 477.24 248 463.99 248zM562.6 171.98C571.73 189.24 576.94 208.9 575.83 230.02C572.66 290.5900000000001 518.3 336 457.65 336H448.28C395.46 336 344.02 352.25 300.54 382.24C269.69 403.52 232.32 416 191.99 416C177.43 416 162.49 414.38 147.32 410.95C76.36 394.92 19.49 337.11 4.43 265.93C-14.18 177.97 27.63 97.59 95.99 57.97V-24C95.99 -28.42 99.57 -32 103.99 -32H119.99C124.41 -32 127.99 -28.42 127.99 -24V42.93C148.01 35.85 169.55 32 191.99 32C202.93 32 213.56 33.14 223.99 34.91V-24C223.99 -28.42 227.57 -32 231.99 -32H247.99C252.41 -32 255.99 -28.42 255.99 -24V43.44C270.2200000000001 48.51 283.87 54.82 296.3300000000001 62.94C342.08 92.75 393.88 112 448.48 112H463.99C466.57 112 468.98 112.61 471.52 112.78L545.96 -23.66C548.8000000000001 -28.91 554.24 -32 559.99 -32C561.49 -32 562.99 -31.8 564.49 -31.36C571.71 -29.24 576.49 -22.36 575.96 -14.86L562.6 171.98zM504.15 119.84C514.69 123.91 524.33 129.5000000000001 533.0500000000001 136.3800000000001L538.7800000000001 56.3100000000001L504.1500000000001 119.84zM522.0300000000001 168.9400000000001C506.77 152.86 486.16 144 463.99 144H448.48C391.18 144 334.12 125.75 278.86 89.75C253.01 72.9 222.97 64 191.99 64C143.52 64 98.18 85.63 67.62 123.33C37.06 161.04 25.44 210.6 35.74 259.31C48.18 318.12 95.86 366.51 154.38 379.73C166.9 382.56 179.56 384 191.99 384C224.46 384 255.71 374.28 282.37 355.9C331.6 321.95 388.9700000000001 304 448.28 304H457.65C503.01 304 541.6899999999999 270.06 543.87 228.35C545.04 206.11 537.28 185.01 522.03 168.94z" />
+    <glyph glyph-name="knife-kitchen"
+      unicode="&#xF6F5;"
+      horiz-adv-x="576" d=" M566.64 382.06L511 438.63C504.76 444.88 496.59 448 488.41 448S472.06 444.88 465.83 438.63L4.58 -16.14C-3.36 -24.1 -0.6 -38.3 9.9 -41.83C51.69 -55.86 98.5 -64 144.82 -64C217.78 -64 289.55 -43.81 338.69 5.35L439.14 105.39C450.86 117.0600000000001 451.32 135.78 441.25 148.5500000000001L452.84 217.3800000000001L566.64 336.8000000000001C579.12 349.3000000000001 579.12 369.5600000000001 566.64 382.0600000000001zM317.34 28.4C278.4 -10.55 217.13 -32 144.82 -32C111.99 -32 78.24 -27.62 45.85 -19.23L307.52 243.15L417.85 128.49L317.34 28.4zM422.04 230.54L411.54 180.29L330.18 264.84C378.55 311.11 488.22 416 488.41 416L544.77 359.32L422.04 230.54zM432 320C423.1600000000001 320 416 312.8400000000001 416 304S423.1600000000001 288 432 288S448 295.16 448 304S440.84 320 432 320zM464 352C464 343.16 471.16 336 480 336S496 343.16 496 352S488.84 368 480 368S464 360.8400000000001 464 352z" />
+    <glyph glyph-name="lambda"
+      unicode="&#xF66E;"
+      horiz-adv-x="448" d=" M440 0H367.37C364.25 0 361.4100000000001 1.81 360.11 4.65L178.83 397.41A31.999000000000002 31.999000000000002 0 0 1 149.78 416H8C3.58 416 0 412.42 0 408V392C0 387.58 3.58 384 8 384H144.63C147.75 384 150.59 382.19 151.89 379.35L159.68 362.4700000000001L0.62 -20.92C-1.57 -26.19 2.3 -32 8.01 -32H25.37A7.990000000000001 7.990000000000001 0 0 1 32.75 -27.08L177.92 322.9700000000001L333.17 -13.41A31.999000000000002 31.999000000000002 0 0 1 362.2200000000001 -32H440C444.42 -32 448 -28.42 448 -24V-8C448 -3.58 444.42 0 440 0z" />
+    <glyph glyph-name="lamp"
+      unicode="&#xF4CA;"
+      horiz-adv-x="416" d=" M413.7 210.2L341.8 426.2C337.3 439.4 327.2 448 316 448H112C101.4 448 91.7 440.3 87 428.1L3 212.1C-6.3 188.2 7.2 160 28 160H120.7C86.3 120.2 64 64.1 64 24.4C64 -1.7 73.7 -25.9 90.2 -45.7C100.1 -57.6 116.3 -64 132.9 -64H283.2000000000001C299.8000000000001 -64 316.0000000000001 -57.6 325.9000000000001 -45.7C342.4000000000001 -25.9 352.1 -1.8 352.1 24.4C352.1 64.1 329.8 120.2 295.4000000000001 160H388C408.1 160 421.6 186.4 413.7 210.2zM320 24.4C320 6.8 313.5 -10.4 301.2 -25.2C297.8 -29.3000000000001 290.7 -32.0000000000001 283.2 -32.0000000000001H132.9C125.4 -32.0000000000001 118.3 -29.3000000000001 114.9 -25.2C102.6 -10.4 96.1 6.8 96.1 24.4C96.1 66.1 127.1 130.4 166.5 160H249.6C289 130.4 320 66.1 320 24.4zM377.4 192H38.6C34.3 192 31.3 196.2 32.7 200.2C32.7 200.3 32.8 200.4 32.8 200.5L116.7 416H311.4L383.3 200.1V200C384.7 196 381.6 192 377.4 192z" />
+    <glyph glyph-name="landmark-alt"
+      unicode="&#xF752;"
+      horiz-adv-x="512" d=" M504 -32H480V48C480 56.8 472.8 64 464 64H448V192H472C476.4 192 480 195.6 480 200V216C480 220.4 476.4 224 472 224H448C448 324.5 370.4 407 272 415.2V440C272 444.4 268.4 448 264 448H248C243.6 448 240 444.4 240 440V415.2C141.6 407 64 324.5 64 224H40C35.6 224 32 220.4 32 216V200C32 195.6 35.6 192 40 192H64V64H48C39.2 64 32 56.8 32 48V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H504C508.4 -64 512 -60.4 512 -56V-40C512 -35.6 508.4 -32 504 -32zM256 384C344.2 384 416 312.2 416 224H96C96 312.2 167.8 384 256 384zM416 192V64H336V192H416zM304 192V64H208V192H304zM96 192H176V64H96V192zM448 -32H64V32H448V-32z" />
+    <glyph glyph-name="landmark"
+      unicode="&#xF66F;"
+      horiz-adv-x="576" d=" M565.62 355.89L299.24 445.96C295.62 447.32 291.81 448 288 448S280.38 447.32 276.76 445.96L10.38 355.89A16.001 16.001 0 0 1 0 340.91V304C0 295.16 7.16 288 16 288H560C568.84 288 576 295.16 576 304V340.91C576 347.58 571.86 353.55 565.62 355.89zM544 320H32V329.42L288 416L544 329.44V320zM568 -32H544V32C544 49.67 527.63 64 507.43 64H496V256H464V64H368V256H336V64H240V256H208V64H112V256H80V64H68.57C48.37 64 32 49.67 32 32V-32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H568C572.42 -64 576 -60.42 576 -56V-40C576 -35.58 572.42 -32 568 -32zM512 -32H64V30.72C64.7 31.24 66.21 32 68.57 32H507.43C509.8 32 511.3 31.24 512 30.72V-32z" />
+    <glyph glyph-name="language"
+      unicode="&#xF1AB;"
+      horiz-adv-x="640" d=" M616 352H24C10.745 352 0 341.255 0 328V56C0 42.745 10.745 32 24 32H616C629.255 32 640 42.745 640 56V328C640 341.255 629.255 352 616 352zM304 64H32V320H304V64zM608 64H336V320H608V64zM91.088 96H101.428A12 12 0 0 1 112.825 104.243L126.333 145.216H193.668L207.176 104.243A12.001000000000001 12.001000000000001 0 0 1 218.573 96H228.912C237.188 96 242.979 104.18 240.231 111.985L181.076 279.985A12 12 0 0 1 169.757 288H150.244A12 12 0 0 1 138.925 279.986L79.77 111.986C77.021 104.18 82.812 96 91.088 96zM151.751 224.991C155.538 235.8090000000001 159.864 254.738 159.864 254.738H160.405S164.462 235.809 167.977 224.991L185.013 173.611H134.715L151.751 224.991zM384 236V244C384 250.627 389.373 256 396 256H464V276C464 282.627 469.373 288 476 288H484C490.627 288 496 282.627 496 276V256H564C570.627 256 576 250.627 576 244V236C576 229.373 570.627 224 564 224H548.301C540.796 199.198 524.869 173.058 503.405 149.158C513.418 140.075 523.88 131.893 534.3290000000001 125.072C539.6410000000001 121.605 541.316 114.597 538.1690000000001 109.09L534.1820000000001 102.114C530.7530000000002 96.1130000000001 522.9940000000001 94.27 517.1890000000001 98.023C504.0440000000001 106.523 491.7930000000001 116.2600000000001 480.6290000000001 126.523C468.8850000000001 116.069 456.123 106.377 442.6370000000001 97.843C436.8760000000001 94.197 429.2280000000001 96.145 425.8460000000001 102.064L421.8740000000001 109.014C418.6770000000001 114.608 420.4950000000001 121.686 425.9320000000001 125.143C437.3140000000001 132.3800000000001 448.1520000000001 140.571 458.1720000000001 149.37C448.1460000000001 160.642 439.5010000000001 171.932 432.4850000000001 182.403C428.6520000000001 188.124 430.3750000000001 195.883 436.2880000000001 199.413L443.1550000000001 203.512C448.6240000000001 206.776 455.7050000000001 205.213 459.2470000000001 199.92C465.6260000000001 190.389 472.9660000000001 180.973 480.9240000000001 171.967C495.9410000000001 188.902 507.6450000000001 206.872 514.4730000000001 224H396C389.373 224 384 229.373 384 236z" />
+    <glyph glyph-name="laptop-code"
+      unicode="&#xF5FC;"
+      horiz-adv-x="640" d=" M266.34 170.35L277.65 181.66C280.77 184.78 280.77 189.85 277.65 192.97L230.62 240L277.65 287.03C280.77 290.15 280.77 295.2200000000001 277.65 298.3400000000001L266.34 309.65C263.22 312.77 258.15 312.77 255.03 309.65L191.03 245.65C187.91 242.53 187.91 237.46 191.03 234.34L255.03 170.34C258.16 167.22 263.22 167.22 266.34 170.35zM362.34 181.66L373.65 170.35C376.77 167.23 381.84 167.23 384.96 170.35L448.96 234.35C452.08 237.4700000000001 452.08 242.54 448.96 245.6600000000001L384.96 309.6600000000001C381.84 312.7800000000001 376.77 312.7800000000001 373.65 309.6600000000001L362.34 298.35C359.22 295.23 359.22 290.1600000000001 362.34 287.04L409.38 240L362.35 192.97A7.993999999999999 7.993999999999999 0 0 1 362.3400000000001 181.66zM624 80H576V352C576 387.3 547.28 416 512 416H128C92.72 416 64 387.3 64 352V80H16C7.16 80 0 72.84 0 64V16C0 -28.11 35.88 -64 80 -64H560C604.12 -64 640 -28.11 640 16V64C640 72.84 632.84 80 624 80zM96 352C96 369.67 110.33 384 128 384H512C529.67 384 544 369.67 544 352V80H391.13C387.07 80 384.11 76.87 383.21 72.91C379.98 58.65 367.23 48 352 48H288C272.77 48 260.02 58.65 256.79 72.91C255.89 76.87 252.93 80 248.8700000000001 80H96V352zM608 16C608 -10.47 586.47 -32 560 -32H80C53.53 -32 32 -10.47 32 16V48H226.75C233.34 29.38 251.13 16 272 16H368C388.88 16 406.66 29.38 413.25 48H608V16z" />
+    <glyph glyph-name="laptop"
+      unicode="&#xF109;"
+      horiz-adv-x="640" d=" M624 80H576V352C576 387.3 547.28 416 512 416H128C92.72 416 64 387.3 64 352V80H16C7.16 80 0 72.84 0 64V16C0 -28.11 35.88 -64 80 -64H560C604.12 -64 640 -28.11 640 16V64C640 72.84 632.84 80 624 80zM96 352C96 369.67 110.33 384 128 384H512C529.67 384 544 369.67 544 352V80H391.13C387.07 80 384.11 76.87 383.21 72.91C379.98 58.65 367.23 48 352 48H288C272.77 48 260.02 58.65 256.79 72.91C255.89 76.87 252.93 80 248.8700000000001 80H96V352zM608 16C608 -10.47 586.47 -32 560 -32H80C53.53 -32 32 -10.47 32 16V48H226.75C233.34 29.38 251.13 16 272 16H368C388.88 16 406.66 29.38 413.25 48H608V16z" />
+    <glyph glyph-name="laugh-beam"
+      unicode="&#xF59A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3C75.3 59.1 59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9C114.9 364.7 138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9C420.5 325.1 436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM287 220.1L296.5 237.1C304.2 250.8 315.7 258.7 328 258.7S351.8 250.8 359.5 237.1L369 220.1C373.1 212.7 384.6 216.1 383.9 224.6C380.6 266.7 351.7 296 327.9 296S275.2 266.7 271.9 224.6C271.3 216 282.9 212.7 287 220.1zM127 220.1L136.5 237.1C144.2 250.8 155.7 258.7 168 258.7S191.8 250.8 199.5 237.1L209 220.1C213.1 212.7 224.6 216.1 223.9 224.6C220.6 266.7 191.7 296 167.9 296S115.2 266.7 111.9 224.6C111.3 216.1 122.8 212.7 127 220.1zM383 160H113C103.4 160 95.9 151.6 97.1 142C105.9 71 166.5 16 240 16H256C329.4 16 390 71 398.9 142C400.1 151.6 392.6 160 383 160zM256 48H240C189.8 48 146.5 81.3 132.6 128H363.4C349.5 81.3 306.2 48 256 48z" />
+    <glyph glyph-name="laugh-squint"
+      unicode="&#xF59B;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3C75.3 59.1 59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9C114.9 364.7 138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9C420.5 325.1 436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM281.8 241.7L361.8 193.7C373.3 186.9 385.8 201.3 377.2 211.7L343.6 252L377.2000000000001 292.3C385.8000000000001 302.6 373.4000000000001 317.1 361.8000000000001 310.3L281.8000000000001 262.3C274.1000000000001 257.6 274.1000000000001 246.4 281.8000000000001 241.7zM134.2 193.7L214.2 241.7C222 246.4 222 257.6 214.2 262.3L134.2 310.3C122.6 317.2 110.2 302.6 118.8 292.3L152.4 252L118.8 211.7C110.1 201.3 122.6 186.9 134.2 193.7zM383 160H113C103.4 160 95.9 151.6 97.1 142C105.9 71 166.5 16 240 16H256C329.4 16 390 71 398.9 142C400.1 151.6 392.6 160 383 160zM256 48H240C189.8 48 146.5 81.3 132.6 128H363.4C349.5 81.3 306.2 48 256 48z" />
+    <glyph glyph-name="laugh-wink"
+      unicode="&#xF59C;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3S59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9S138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9S436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM288 231L297.5 239.5C312.3 252.7 343.7 252.7 358.5 239.5L368 231C376.5 223.6 389.6 230.7 387.8 241.8C383.8 267 353.6 283.9 327.9000000000001 283.9S272 267 268 241.8C266.4 230.7 279.6 223.6 288 231zM168 224C185.7 224 200 238.3 200 256S185.7 288 168 288S136 273.7 136 256S150.3 224 168 224zM383 160H113C103.4 160 95.9 151.6 97.1 142C105.9 71 166.5 16 240 16H256C329.4 16 390 71 398.9 142C400.1 151.6 392.6 160 383 160zM256 48H240C189.8 48 146.5 81.3 132.6 128H363.4C349.5 81.3 306.2 48 256 48z" />
+    <glyph glyph-name="laugh"
+      unicode="&#xF599;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3C75.3 59.1 59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9C114.9 364.7 138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9C420.5 325.1 436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM328 224C345.7 224 360 238.3 360 256S345.7 288 328 288S296 273.7 296 256S310.3 224 328 224zM168 224C185.7 224 200 238.3 200 256S185.7 288 168 288S136 273.7 136 256S150.3 224 168 224zM383 160H113C103.4 160 95.9 151.6 97.1 142C105.9 71 166.5 16 240 16H256C329.4 16 390 71 398.9 142C400.1 151.6 392.6 160 383 160zM256 48H240C189.8 48 146.5 81.3 132.6 128H363.4C349.5 81.3 306.2 48 256 48z" />
+    <glyph glyph-name="layer-group"
+      unicode="&#xF5FD;"
+      horiz-adv-x="512" d=" M512 191.99C512 201.97 506.19 210.93 497.23 214.8L397.49 258.0700000000001L497.19 301.3300000000001C506.19 305.2200000000001 512 314.17 512 324.14S506.19 343.06 497.23 346.93L271.94 444.67C261.84 449.11 250.23 449.12 240.07 444.69L14.81 346.94C5.81 343.05 0 334.1 0 324.13S5.81 305.21 14.77 301.3400000000001L114.5 258.06L14.8 214.8C5.81 210.92 0 201.97 0 191.99C0 182.02 5.81 173.07 14.77 169.2L114.49 125.94L14.8 82.69C5.81 78.79 0 69.84 0 59.86C0 49.89 5.81 40.94 14.77 37.07L240.09 -60.69A40.066 40.066 0 0 1 255.99 -64C261.4100000000001 -64 266.83 -62.9 271.89 -60.69L497.1799999999999 37.05C506.1799999999999 40.94 511.99 49.89 511.99 59.86C511.99 69.84 506.1799999999999 78.8 497.22 82.67L397.5 125.93L497.19 169.18C506.19 173.07 512 182.02 512 191.99zM45.23 324.13L253.26 414.39L253.29 414.4100000000001C255.03 415.12 256.94 415.17 258.74 414.39L466.77 324.13L258.74 233.86C256.93 233.09 255 233.09 253.26 233.86L45.23 324.13zM466.77 59.86L258.74 -30.4C256.93 -31.17 255 -31.17 253.26 -30.4L45.23 59.87L155.99 107.93L240.1 71.44A40.066 40.066 0 0 1 256 68.13C261.42 68.13 266.84 69.23 271.9 71.44L356.01 107.93L466.77 59.86zM258.74 101.73C256.93 100.96 255 100.96 253.26 101.73L45.23 192L156 240.06L240.1 203.56A40.066 40.066 0 0 1 256 200.25C261.42 200.25 266.84 201.35 271.9 203.56L356 240.05L466.77 191.98L258.74 101.73z" />
+    <glyph glyph-name="layer-minus"
+      unicode="&#xF5FE;"
+      horiz-adv-x="512" d=" M512 194.79C512 204.87 506.19 213.92 497.23 217.83L271.9 316.67C261.84 321.1 250.16 321.1 240.09 316.67L14.81 217.85C5.81 213.92 0 204.87 0 194.79C0 184.71 5.81 175.66 14.77 171.75L114.5 128L14.8 84.27C5.81 80.35 0 71.3 0 61.21C0 51.13 5.81 42.08 14.77 38.17L240.09 -60.65C245.15 -62.8700000000001 250.57 -63.99 255.99 -63.99S266.83 -62.88 271.89 -60.65L497.1799999999999 38.16C506.1799999999999 42.09 511.99 51.14 511.99 61.22C511.99 71.31 506.1799999999999 80.36 497.22 84.28L397.5 128.03L497.19 171.76C506.19 175.67 512 184.72 512 194.79zM466.81 61.22L258.75 -30.04C256.94 -30.8199999999999 255.01 -30.8199999999999 253.27 -30.04L45.23 61.22L156 109.8L240.1 72.91C245.16 70.69 250.58 69.5700000000001 256 69.5700000000001S266.84 70.6800000000001 271.9 72.91L356.02 109.81L466.81 61.22zM258.74 103.53C256.93 102.7500000000001 255 102.7500000000001 253.26 103.53L45.23 194.79L253.26 286.05C255.07 286.8300000000001 257 286.8300000000001 258.74 286.05L466.77 194.79L258.74 103.53zM504 384H296C291.58 384 288 380.42 288 376V360C288 355.58 291.58 352 296 352H504C508.42 352 512 355.58 512 360V376C512 380.42 508.42 384 504 384z" />
+    <glyph glyph-name="layer-plus"
+      unicode="&#xF5FF;"
+      horiz-adv-x="512" d=" M504 352H416V440C416 444.42 412.42 448 408 448H392C387.58 448 384 444.42 384 440V352H296C291.58 352 288 348.42 288 344V328C288 323.58 291.58 320 296 320H384V232C384 227.58 387.58 224 392 224H408C412.42 224 416 227.58 416 232V320H504C508.42 320 512 323.58 512 328V344C512 348.42 508.42 352 504 352zM497.23 81.29L397.51 124.16L497.23 167.03C505.58 170.6300000000001 509.42 180.2600000000001 505.81 188.55C502.16 196.84 492.49 200.68 484.07 197.03L258.75 100.17C256.94 99.4 255.01 99.4 253.27 100.17L45.23 189.6L238.68 272.76C247.03 276.35 250.87 285.99 247.26 294.2800000000001C243.61 302.5600000000001 234 306.4100000000001 225.52 302.76L14.81 212.19C5.81 208.34 0 199.48 0 189.6C0 179.73 5.81 170.86 14.77 167.0200000000001L114.5 124.15L14.8 81.3C5.81 77.45 0 68.58 0 58.69C0 48.82 5.81 39.95 14.77 36.11L240.09 -60.73C245.15 -62.9 250.57 -64.01 255.99 -64.01S266.83 -62.92 271.89 -60.73L497.1799999999999 36.1C506.1799999999999 39.95 511.99 48.82 511.99 58.6899999999999C511.9999999999999 68.5799999999999 506.1899999999999 77.4499999999999 497.23 81.29zM258.74 -30.72C256.93 -31.49 255 -31.49 253.26 -30.72L45.23 58.71L156 106.32L240.1 70.17C245.16 68 250.58 66.89 256 66.89S266.84 67.98 271.9 70.17L356.02 106.33L466.8 58.71L258.74 -30.72z" />
+    <glyph glyph-name="leaf-heart"
+      unicode="&#xF4CB;"
+      horiz-adv-x="576" d=" M426.2 242.8C412.3 254.4 378.5 271.3 336 228.3C293.4 271.3 259.6 254.4 245.8 242.8C218.3 219.8 216.9 178.6 241.5 153.7000000000001L326.2 68.1C331.6 62.6 340.5 62.5 346 68.1L430.7 153.7000000000001C455.2 178.6 453.7 219.8000000000001 426.2 242.8000000000001zM407.8 176.2000000000001L336 103.6L264.2 176.2000000000001C254 186.5000000000001 251.9 206.2000000000001 266.3 218.2000000000001C280 229.7000000000001 297.5 221.6000000000001 304.7 214.5000000000001L336.1 182.8000000000001L367.5 214.5000000000001C374.6 221.7000000000001 392.1 229.7000000000001 405.8999999999999 218.2000000000001C420.0999999999999 206.2000000000001 418.0999999999999 186.6 407.7999999999999 176.2000000000001zM546.2 438.3C543.3000000000001 444.8 537.6 448 531.9000000000001 448C526.6000000000001 448 521.2 445.2 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 139.3 99.4 119.4 105.4 100.8C29.3 35.8 2 -39.5 0.9 -42.7C-2 -51 2.4 -60.1 10.7 -63.1C18.3 -65.7999999999999 28 -62.2999999999999 31.1 -53.3C31.3 -52.6 55.3 12.1 118.6 69.6C134.1 40.6 193.8 -43 308.4 -30.9C465.5 -19.6 576 121.2 576 293.7C576 343.9 565.2 395.9 546.2 438.3zM305 0.9C208 -9.3 128 67.3 128 160C128 248.2 199.8 320 288 320H368C431.3 320 489 348.4 527.7 397.2C538.2 364.9 544 328.5 544 293.7C544 134.1 443.9 11 305 0.9z" />
+    <glyph glyph-name="leaf-maple"
+      unicode="&#xF6F6;"
+      horiz-adv-x="512" d=" M496.06 284.53L468.72 300.94L477.16 376.91C479.3 396.41 463.55 415.32 440.9100000000001 413.18L364.9400000000001 404.73L348.5300000000001 432.07C342.62 441.89 332.28 447.84 320.81 448C310.2200000000001 448.02 298.8400000000001 442.4700000000001 292.69 432.8L249.78 365.35C241.45 387.87 216.88 389.76 207.25 384.55L193.44 377.14L158.35 416.86C152.18 424.57 142.93 429.17 132.73 429.17C122.7 429.17 113.36 424.7 107.57 417.4700000000001L72 377.14L58.19 384.55C39.71 394.54 8.09 375.93 14.47 347.24L43.88 204.55L19.88 194.25C-6.57 182.91 -6.57 145.25 19.88 133.91L128.67 87.29L4.69 -36.69C-1.56 -42.94 -1.56 -53.07 4.69 -59.31C7.81 -62.44 11.91 -64 16 -64S24.19 -62.44 27.31 -59.31L151.29 64.67L197.91 -44.07C203.1 -56.25 215.0200000000001 -63.99 228.1 -63.99C241.2200000000001 -63.99 253.07 -56.19 258.29 -44.08L268.54 -20.1L411 -49.5C434.83 -54.79 458.82 -32.28 449.9700000000001 -9.5L441.1300000000001 8L480.8800000000001 43.09C497.53 56.4400000000001 496.95 81.11 481.22 94.0600000000001L441.13 129.4400000000001L448.54 143.2400000000001C454.88 154.9700000000001 449.6400000000001 178.4300000000001 429.3200000000001 185.7600000000001L496.8200000000001 228.7000000000001C517.49 241.8700000000001 516.87 272.0400000000001 496.0600000000001 284.5300000000001zM342.94 168.72C327.69 159.0100000000001 337.92 135.25 355.5 139.72L418.28 154.5200000000001L400.94 122.22L461.37 68.71L400.94 15.22L418.7200000000001 -17.9L249.4000000000001 16.52L227.3400000000001 -31.4999999999999L175.66 89.0400000000001L331.3 244.68C337.55 250.93 337.55 261.06 331.3 267.3C325.05 273.55 314.93 273.55 308.68 267.3L153.16 111.79L32.5 164.84L80.5 185.42L46.87 354.31L79.18 336.95L133.84 396.28L186.25 336.95L219.66 354.9L219.82 354.43L203.73 291.49C199.28 273.9600000000001 222.91 263.6600000000001 232.73 278.93L321.1 415.5900000000001L348.0700000000001 370.65L445.35 380.43L434.6600000000001 284.06L479.63 255.68L342.94 168.72z" />
+    <glyph glyph-name="leaf-oak"
+      unicode="&#xF6F7;"
+      horiz-adv-x="512" d=" M511.52 240.83C507.38 278.52 474.31 295.11 466.89 299.6600000000001C481.15 348.37 462.43 375.42 450.58 386.5900000000001C439.4 398.4400000000001 412.37 417.1600000000001 363.65 402.9000000000001C359.1 410.3100000000001 342.51 443.3800000000001 304.82 447.5300000000001C258.57 452.5700000000001 239.89 416.5800000000001 219.21 380.0600000000001C191.27 402.6400000000001 168.15 399 160.96 397.5900000000001C87.25 383.0300000000001 105.45 279.86 106.67 268.5C71.74 278.26 32.66 256.8300000000001 32.66 203.09C32.66 164.47 61.34 130.21 54.05 110.9C40.8 74.1300000000001 42.45 40.77 57.9 16.52L4.69 -36.69C-1.56 -42.94 -1.56 -53.07 4.69 -59.31C7.81 -62.44 11.91 -64 16 -64S24.19 -62.44 27.31 -59.31L80.52 -6.1C104.76 -21.55 138.13 -23.19 174.9 -9.95C194.21 -2.66 228.47 -31.34 267.0900000000001 -31.34C320.8300000000001 -31.34 342.2600000000001 7.74 332.5 42.67C343.87 41.4399999999999 447.03 23.2499999999999 461.59 96.9499999999999C463.01 104.1399999999999 466.64 127.2599999999999 444.0600000000001 155.2099999999999C480.5700000000001 175.8999999999999 516.57 194.5799999999999 511.52 240.83zM470.34 210.22C464.38 203.79 458.14 200.13 395.21 164.23C418.62 135.78 417.75 136.94 420.75 133.11C441.87 106.03 425.3 87.85 410.28 79.27C386.28 65.54 370.13 71.03 271.06 81.24C271.06 81.24 297.37 43.71 298.12 42.38C314.48 13.89 287.4599999999999 -5.67 253.59 2.11C238 5.69 221.61 14.68 203.59 19.7C166.58 30.12 133.1999999999999 2.92 103.65 17.02L331.31 244.68C337.56 250.93 337.56 261.06 331.31 267.3C325.06 273.55 314.93 273.55 308.68 267.3L81.02 39.65C66.93 69.2 94.12 102.58 83.7 139.59C78.68 157.61 69.7 174 66.11 189.59C58.32 223.46 77.88 250.48 106.37 234.12C107.7 233.37 145.23 207.06 145.23 207.06C135.02 306.13 129.53 322.27 143.27 346.28C151.85 361.31 170.03 377.87 197.11 356.75C200.95 353.76 199.79 354.63 228.24 331.22C264.14 394.14 267.8 400.38 274.23 406.34C294.1500000000001 424.76 322.6 415.34 333.89 389.28C340.19 374.93 356.83 367.63 372.62 372.18C397 379.33 416.12 376.47 427.9700000000001 363.96C440.48 352.11 443.3400000000001 332.99 436.1900000000001 308.62C431.6300000000001 292.82 438.9400000000001 276.18 453.28 269.89C479.34 258.59 488.76 230.14 470.34 210.22z" />
+    <glyph glyph-name="leaf"
+      unicode="&#xF06C;"
+      horiz-adv-x="576" d=" M546.2 438.3C543.3000000000001 444.8 537.6 448 531.9000000000001 448C526.6000000000001 448 521.2 445.2 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 139.1 99.4 119.1 105.6 100.3C29.3 35 1.4 -41.4 0.9 -42.7C-2 -51 2.4 -60.2 10.7 -63.1C18.6 -65.9 28.1 -61.9999999999999 31.1 -53.3C31.5 -52.1 55 11.8000000000001 118.7 69.4C151.1 9.1 214.7 -32 288 -32C294.9 -32 301.7 -31.6 308.4 -30.9C465.5 -19.5 576 121.2 576 293.7C576 343.9 565.2 395.9 546.2 438.3zM305 0.9C299.1 0.3 293.4 0 288 0C224.7 0 170.4 37.2 144.5 90.6C196.3 129 268.6 160 368 160C376.8 160 384 167.2 384 176S376.8 192 368 192C265.2 192 189 161 133.2 121.6C130.1 134 128 146.7000000000001 128 160C128 248.2 199.8 320 288 320H368C431.3 320 489 348.4 527.7 397.2C538.2 364.9 544 328.5 544 293.7C544 134.1 443.9 11 305 0.9z" />
+    <glyph glyph-name="lemon"
+      unicode="&#xF094;"
+      horiz-adv-x="512" d=" M489.038 425.037C473.784 440.291 454.948 448 437.954 448C429.2200000000001 448 420.974 445.965 413.947 441.871C355.0350000000001 407.556 232.702 494.954 92.874 355.126C-46.948 215.303 40.441 92.959 6.129 34.055C-5.93 13.353 -0.131 -17.944 22.962 -41.038C46.042 -64.118 77.34 -69.937 98.057 -57.87C156.959 -23.56 279.302 -110.951 419.125 28.873C558.949 168.696 471.56 291.04 505.871 349.944C517.93 370.646 512.132 401.943 489.038 425.0370000000001zM478.22 366.05C433.6740000000001 289.575 527.886 182.887 396.499 51.5C265.0650000000001 -79.934 158.47 14.352 81.952 -30.22C61.424 -42.176 21.824 -2.58 33.781 17.947C78.328 94.422 -15.886 201.11 115.502 332.497C246.942 463.939 353.523 369.641 430.053 414.2200000000001C450.031 425.857 490.492 387.118 478.22 366.05zM259.471 336.381C227.581 329.295 194.498 309.87 166.314 281.687C138.13 253.502 118.706 220.419 111.62 188.53C109.963 181.073 103.349 175.997 96.016 175.997C94.867 175.997 93.7 176.122 92.531 176.382C83.905 178.299 78.466 186.846 80.383 195.472C88.774 233.228 111.255 271.882 143.689 304.315C176.122 336.749 214.776 359.23 252.5320000000001 367.621C261.1600000000001 369.54 269.7050000000001 364.099 271.622 355.473S268.0970000000001 338.298 259.471 336.381z" />
+    <glyph glyph-name="less-than-equal"
+      unicode="&#xF537;"
+      horiz-adv-x="384" d=" M347.58 139.78L115.13 256L347.58 372.2200000000001C351.53 374.19 353.13 379 351.16 382.95L336.87 411.57A7.986000000000001 7.986000000000001 0 0 1 326.14 415.15L36.4 268.98A7.991999999999999 7.991999999999999 0 0 1 32 261.8400000000001V248.93C32 245.9 33.71 243.13 36.42 241.78L326.13 96.86C330.08 94.88 334.89 96.48 336.86 100.44L351.1500000000001 129.06C353.1300000000001 133 351.5300000000001 137.8 347.5800000000001 139.78zM0 8V-24C0 -28.42 3.58 -32 8 -32H376C380.42 -32 384 -28.42 384 -24V8C384 12.42 380.42 16 376 16H8C3.58 16 0 12.42 0 8z" />
+    <glyph glyph-name="less-than"
+      unicode="&#xF536;"
+      horiz-adv-x="320" d=" M0 186.17C0 183.15 1.7 180.3900000000001 4.4 179.03L294.13 32.85C298.08 30.87 302.89 32.48 304.86 36.43L319.1500000000001 65.05C321.1200000000001 69 319.5200000000001 73.8 315.5700000000001 75.78L83.13 192L315.57 308.2200000000001C319.52 310.19 321.12 315 319.15 318.95L304.86 347.57C302.89 351.52 298.08 353.13 294.13 351.15L4.42 206.23A7.985 7.985 0 0 1 0 199.08V186.17z" />
+    <glyph glyph-name="level-down-alt"
+      unicode="&#xF3BE;"
+      horiz-adv-x="256" d=" M216.01 64H162.024V424C162.024 437.255 151.279 448 138.024 448H20.024C9.333 448 3.979 435.074 11.539 427.515L23.539 415.515A12 12 0 0 1 32.024 412H126.024V64H72.037C42.473 64 28.973 27.465 50.777 8.083L122.764 -55.917C134.889 -66.6940000000001 153.159 -66.6940000000001 165.284 -55.917L237.27 8.083C259.082 27.472 245.562 64 216.01 64zM216.024 32L144.024 -32L72.024 32H216.024z" />
+    <glyph glyph-name="level-down"
+      unicode="&#xF149;"
+      horiz-adv-x="256" d=" M252.478 39.497L152.504 -60.4779999999999C147.807 -65.1749999999999 140.193 -65.1749999999999 135.496 -60.4779999999999L35.522 39.4970000000001C30.826 44.1940000000001 30.826 51.8080000000001 35.522 56.5050000000001L44.025 65.008C48.722 69.705 56.336 69.705 61.032 65.008L126 0.041V412H24.024A11.996 11.996 0 0 0 15.539 415.515L3.539 427.515C-4.021 435.074 1.333 448 12.024 448H138C151.255 448 162 437.255 162 424V0.041L226.967 65.007C231.664 69.704 239.278 69.704 243.974 65.007L252.477 56.504C257.174 51.808 257.174 44.194 252.478 39.497z" />
+    <glyph glyph-name="level-up-alt"
+      unicode="&#xF3BF;"
+      horiz-adv-x="256" d=" M237.27 375.9170000000001L165.284 439.9170000000001C153.159 450.694 134.889 450.694 122.764 439.9170000000001L50.777 375.9170000000001C28.973 356.535 42.473 320 72.037 320H126.024V-28H32.024A11.996 11.996 0 0 1 23.539 -31.515L11.539 -43.515C3.979 -51.074 9.333 -64 20.024 -64H138.024C151.279 -64 162.024 -53.255 162.024 -40V320H216.01C245.562 320 259.082 356.528 237.27 375.9170000000001zM72.024 352L144.024 416L216.024 352H72.024z" />
+    <glyph glyph-name="level-up"
+      unicode="&#xF148;"
+      horiz-adv-x="256" d=" M252.478 344.503L152.504 444.478C147.807 449.175 140.193 449.175 135.496 444.478L35.522 344.503C30.826 339.806 30.826 332.192 35.522 327.495L44.025 318.992C48.722 314.295 56.336 314.295 61.032 318.992L126 383.959V-28H24.024A11.996 11.996 0 0 1 15.539 -31.515L3.539 -43.515C-4.021 -51.074 1.333 -64 12.024 -64H138C151.255 -64 162 -53.255 162 -40V383.959L226.967 318.993C231.664 314.296 239.278 314.296 243.974 318.993L252.477 327.496C257.174 332.192 257.174 339.806 252.478 344.503z" />
+    <glyph glyph-name="life-ring"
+      unicode="&#xF1CD;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM424.766 326.824L361.881 263.939A128.711 128.711 0 0 1 327.94 297.88L390.825 360.765A217.323 217.323 0 0 0 424.766 326.824zM256 96C203.065 96 160 139.065 160 192S203.065 288 256 288S352 244.935 352 192S308.935 96 256 96zM363.952 379.147L297.812 313.007C270.822 322.332 241.194 322.337 214.188 313.007L148.049 379.147C214.7650000000001 417.671 297.279 417.646 363.952 379.147zM121.176 360.766L184.061 297.881A128.711 128.711 0 0 1 150.12 263.94L87.235 326.825A217.323 217.323 0 0 0 121.176 360.766zM68.853 299.952L134.992 233.812C125.667 206.822 125.662 177.194 134.992 150.188L68.853 84.048C30.33 150.763 30.353 233.277 68.853 299.952zM87.234 57.176L150.119 120.061A128.711 128.711 0 0 1 184.06 86.12L121.175 23.235A217.366 217.366 0 0 0 87.234 57.1760000000001zM148.048 4.853L214.187 70.993C241.177 61.668 270.805 61.663 297.8110000000001 70.993L363.951 4.853C297.235 -33.671 214.721 -33.646 148.048 4.853zM390.824 23.234L327.939 86.119A128.711 128.711 0 0 1 361.88 120.0600000000001L424.765 57.1750000000001A217.323 217.323 0 0 0 390.824 23.234zM443.147 84.0480000000001L377.007 150.1880000000001C386.332 177.1780000000001 386.337 206.8060000000001 377.007 233.8120000000001L443.147 299.9520000000001C481.67 233.2370000000001 481.647 150.7230000000001 443.147 84.0480000000001z" />
+    <glyph glyph-name="lightbulb-dollar"
+      unicode="&#xF670;"
+      horiz-adv-x="352" d=" M203.09 264.5800000000001L158.09 278.0800000000001C152.93 279.63 149.32 284.86 149.32 290.81C149.32 298.0800000000001 154.62 304 161.12 304H189.23C193.79 304 198.19 302.7100000000001 202.05 300.28C205.29 298.25 209.41 298.37 212.18 301.01L223.93 312.2200000000001C227.46 315.5900000000001 227.26 321.43 223.36 324.36C214.26 331.19 203.28 335.13 191.99 335.71V352C191.99 356.42 188.41 360 183.99 360H167.99C163.57 360 159.99 356.42 159.99 352V335.88C136.37 335.25 117.32 315.33 117.32 290.81C117.32 270.8400000000001 130.3 253 148.9 247.42L193.9 233.92C199.06 232.37 202.67 227.14 202.67 221.19C202.67 213.92 197.37 208 190.87 208H162.76C158.2 208 153.8 209.29 149.94 211.72C146.7 213.75 142.58 213.63 139.81 210.9900000000001L128.06 199.78C124.53 196.41 124.73 190.5700000000001 128.63 187.6400000000001C137.73 180.8100000000001 148.71 176.8700000000001 160 176.29V160C160 155.58 163.58 152 168 152H184C188.42 152 192 155.58 192 160V176.12C215.62 176.75 234.67 196.66 234.67 221.19C234.67 241.16 221.69 259 203.09 264.58zM176 448C73.05 448 -0.12 364.46 0 271.76C0.06 227.48 16.5 187.09 43.56 156.22C69.21 126.97 93.85 79.32 96 64L96.06 -11.18C96.06 -14.33 97 -17.4 98.74 -20.02L123.25 -56.86C126.22 -61.32 131.22 -64 136.57 -64H215.42C220.78 -64 225.7800000000001 -61.32 228.74 -56.86L253.25 -20.02C254.99 -17.4 255.92 -14.32 255.93 -11.18L256 64C258.26 79.72 282.99 127.19 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448zM223.94 -6.31L206.85 -32H145.14L128.05 -6.31L128.04 0H223.94V-6.31zM223.98 32H128.01L127.94 64H224.02L223.98 32zM284.38 177.32C270.39 161.36 248.05 129.22 233.8 96.01H118.21C103.95 129.23 81.62 161.36 67.63 177.32C44.5 203.7 32.13 237.15 32.05 272C31.87 348.99 92.43 416 176 416C255.4 416 320 351.4 320 272C320 237.15 307.35 203.52 284.38 177.32z" />
+    <glyph glyph-name="lightbulb-exclamation"
+      unicode="&#xF671;"
+      horiz-adv-x="352" d=" M176 200C162.75 200 152 189.26 152 176C152 162.75 162.75 152 176 152S200 162.75 200 176C200 189.26 189.25 200 176 200zM159.53 231.5C159.79 227.28 163.29 224 167.51 224H184.48A8 8 0 0 1 192.46 231.5L199.46 343.5C199.75 348.11 196.09 352 191.48 352H160.51C155.9 352 152.24 348.11 152.53 343.5L159.53 231.5zM176 448C73.05 448 -0.12 364.46 0 271.76C0.06 227.48 16.5 187.09 43.56 156.22C69.21 126.97 93.85 79.32 96 64L96.06 -11.18C96.06 -14.33 97 -17.4 98.74 -20.02L123.25 -56.86C126.22 -61.32 131.22 -64 136.57 -64H215.42C220.78 -64 225.7800000000001 -61.32 228.74 -56.86L253.25 -20.02C254.99 -17.4 255.92 -14.32 255.93 -11.18L256 64C258.26 79.72 282.99 127.19 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448zM223.94 -6.31L206.85 -32H145.14L128.05 -6.31L128.04 0H223.94V-6.31zM223.98 32H128.01L127.94 64H224.02L223.98 32zM284.38 177.32C270.39 161.36 248.05 129.22 233.8 96.01H118.21C103.95 129.23 81.62 161.36 67.63 177.32C44.5 203.7 32.13 237.15 32.05 272C31.87 348.99 92.43 416 176 416C255.4 416 320 351.4 320 272C320 237.15 307.35 203.52 284.38 177.32z" />
+    <glyph glyph-name="lightbulb-on"
+      unicode="&#xF672;"
+      horiz-adv-x="640" d=" M41.8 113.86A7.997999999999999 7.997999999999999 0 0 1 38.87 102.93L46.87 89.07A7.997999999999999 7.997999999999999 0 0 1 57.8 86.14L157.02 143.42C150.32 151.89 144.24 160.71 139.01 169.97L41.8 113.86zM112.33 272H8C3.58 272 0 268.42 0 264V248C0 243.58 3.58 240 8 240H114.52C112.89 250.52 112.35 261.23 112.33 272zM41.8 398.15L126.96 348.98C130.93 358.99 135.68 368.56 141.13 377.75L57.8 425.86A7.997999999999999 7.997999999999999 0 0 1 46.87 422.93L38.87 409.07C36.66 405.25 37.97 400.36 41.8 398.15zM598.1999999999999 398.15A7.997999999999999 7.997999999999999 0 0 1 601.1299999999999 409.08L593.1299999999999 422.94A7.997999999999999 7.997999999999999 0 0 1 582.1999999999999 425.87L498.8199999999999 377.73C504.26 368.56 509.06 359 513.06 349L598.1999999999999 398.15zM632 272H528C528 261.2 526.75 250.55 525.1 240H632C636.42 240 640 243.58 640 248V264C640 268.42 636.42 272 632 272zM598.2 113.86L500.8100000000001 170.09C495.5600000000001 160.79 489.3600000000001 152.0600000000001 482.6800000000001 143.61L582.2 86.15C586.0300000000001 83.9400000000001 590.9200000000001 85.2500000000001 593.13 89.08L601.13 102.9400000000001C603.34 106.7600000000001 602.03 111.65 598.2 113.8600000000001zM320 384C258.25 384 208 333.75 208 272C208 263.16 215.16 256 224 256S240 263.16 240 272C240 316.11 275.88 352 320 352C328.84 352 336 359.16 336 368C336 376.85 328.84 384 320 384zM320 448C217.05 448 143.88 364.46 144 271.76C144.06 227.48 160.5 187.09 187.56 156.22C213.21 126.96 237.85 79.31 240 64L240.06 -11.18C240.06 -14.33 241 -17.4 242.74 -20.02L267.25 -56.86C270.2200000000001 -61.32 275.2200000000001 -64 280.57 -64H359.42C364.78 -64 369.78 -61.32 372.74 -56.86L397.25 -20.02C398.99 -17.4 399.92 -14.32 399.93 -11.18L400 64C402.26 79.72 426.99 127.19 452.44 156.22C479.55 187.15 496 227.63 496 272C496 369.2 417.2 448 320 448zM367.94 -6.31L350.85 -32H289.1400000000001L272.0500000000001 -6.31L272.0400000000001 0H367.9400000000001V-6.31zM367.98 32H272.01L271.94 64H368.02L367.98 32zM428.38 177.32C414.39 161.36 392.05 129.22 377.8 96.01H262.21C247.95 129.23 225.62 161.36 211.63 177.32C188.5 203.7 176.13 237.16 176.05 272C175.87 348.99 236.43 416 320 416C399.4 416 464 351.4 464 272C464 237.15 451.35 203.52 428.38 177.32z" />
+    <glyph glyph-name="lightbulb-slash"
+      unicode="&#xF673;"
+      horiz-adv-x="640" d=" M320 416C399.4 416 464 351.4 464 272C464 212.94 428.67 177.58 423.69 171.45L448.73 151.73C451.6 155.23 496 198.87 496 272C496 369.2 417.2 448 320 448C244.86 448 196.79 404.6 173.14 368.75L198.29 348.95C217.45 379.33 257.09 416 320 416zM223.97 328.7200000000001L249.35 308.74C262.71 334.31 289.19 352 320 352C328.84 352 336 359.16 336 368S328.84 384 320 384C279.03 384 243.5 361.64 223.97 328.7200000000001zM262.2 96C247.94 129.22 225.61 161.35 211.62 177.31C195.37 195.85 184.65 217.93 179.55 241.48L144.26 269.27C144.93 225.99 161.01 186.49 187.56 156.21C213.21 126.9500000000001 237.85 79.3100000000001 240 63.99L240.06 -11.19C240.06 -14.34 241 -17.41 242.74 -20.03L267.25 -56.87C270.2200000000001 -61.33 275.2200000000001 -64.01 280.57 -64.01H359.42C364.78 -64.01 369.78 -61.33 372.74 -56.87L397.25 -20.03C398.99 -17.41 399.92 -14.33 399.93 -11.19L400 64C400.06 64.41 400.88 66.62 401.03 67.09L364.31 96H262.2zM367.94 -6.31L350.85 -32H289.1400000000001L272.0500000000001 -6.31L272.0400000000001 0H367.9400000000001V-6.31zM367.98 32H272.01L271.94 64H368.02L367.98 32zM637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25z" />
+    <glyph glyph-name="lightbulb"
+      unicode="&#xF0EB;"
+      horiz-adv-x="352" d=" M176 448C73.05 448 -0.12 364.46 0 271.76C0.06 227.48 16.5 187.09 43.56 156.22C69.21 126.97 93.85 79.32 96 64L96.06 -11.18C96.06 -14.33 97 -17.4 98.74 -20.02L123.25 -56.86C126.22 -61.32 131.22 -64 136.57 -64H215.42C220.78 -64 225.7800000000001 -61.32 228.74 -56.86L253.25 -20.02C254.99 -17.4 255.92 -14.32 255.93 -11.18L256 64C258.26 79.72 282.99 127.19 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448zM223.94 -6.31L206.85 -32H145.14L128.05 -6.31L128.04 0H223.94V-6.31zM223.98 32H128.01L127.94 64H224.02L223.98 32zM284.38 177.32C270.39 161.36 248.05 129.22 233.8 96.01H118.21C103.95 129.23 81.62 161.36 67.63 177.32C44.5 203.7 32.13 237.15 32.05 272C31.87 348.99 92.43 416 176 416C255.4 416 320 351.4 320 272C320 237.15 307.35 203.52 284.38 177.32zM176 384C114.25 384 64 333.75 64 272C64 263.16 71.16 256 80 256S96 263.16 96 272C96 316.11 131.88 352 176 352C184.84 352 192 359.16 192 368S184.84 384 176 384z" />
+    <glyph glyph-name="lights-holiday"
+      unicode="&#xF7B2;"
+      horiz-adv-x="640" d=" M638.3 371L634.1999999999999 378C630.8 383.7 623.5999999999999 385.6 617.6999999999999 382.4C534.4999999999999 336.4 429.3 311.1 319.8999999999999 311.1S105.4 336.4 22.2 382.4C16.4 385.7 9.1 383.8 5.8 378L1.7 371C-1.7 365.1 0.2 357.5 6.2 354.2C50.7 329.5 101.1 310.6 154.8 297.8L145.1 274.7000000000001L137.7 277.8C125.5 282.9 111.4 277.2000000000001 106.3 265L84.7 213.6C66.5 208.1 50.3 193.8 39.3 167.7C18.7 118.8 47.2 38.1 60.5 32.5C73.8 26.9 151.4 62.9 172 111.8C183 137.9 181.9 159.4 173.1 176.3L194.7 227.7C199.8 239.9 194.1 254.0000000000001 181.9 259.1L174.5 262.2000000000001L186.7 291.1C224.7 284 264 280 304 279.1V256H296C282.8 256 272 245.2 272 232V176.2C257.3999999999999 164 248 144.6 248 116.3C248 63.3 305.6 -0.1 320 -0.1S392 63.2 392 116.3C392 144.6 382.6 164 368 176.1999999999999V232C368 245.2 357.2 256 344 256H336V279.2C376 280.1 415.3 284 453.3 291.2L465.4999999999999 262.3L458.1 259.2C445.9 254.1 440.2 240 445.3 227.8L466.9 176.4C458.1 159.5 457 138 468 111.9C488.6 63 566.2 27 579.5 32.6C592.8 38.2 621.3 118.9 600.7 167.8C589.7 193.9 573.5 208.1 555.3000000000001 213.7L533.8 265C528.6999999999999 277.2 514.5999999999999 282.9 502.4 277.8L495 274.7000000000001L485.3 297.8C539.1 310.6 589.4 329.6 633.9 354.2000000000001C639.8 357.6 641.6999999999999 365.2000000000001 638.3 371zM142.5 124.3C132 99.3 96.2 76.7 75.3 67.9C67 89.1 58.2 130.4 68.7 155.4C80.3 182.8 97.3 190.7000000000001 122.5 180.1S154 151.7000000000001 142.5 124.3zM149.1 202C144.7 204.8 140 207.4 134.9 209.5C129.8 211.6 124.7 213.2 119.6 214.4L132.6 245.2L162.1 232.8L149.1 202zM571.3 155.3C581.8 130.3 573 89 564.6999999999999 67.8C543.8 76.7 508.0999999999999 99.2 497.4999999999999 124.2C485.8999999999999 151.6 492.3 169.3 517.4 179.9C542.6 190.6 559.6999999999999 182.8 571.3 155.3zM507.4 245.2L520.4 214.4C515.3 213.2 510.2 211.7 505.1 209.5C499.9999999999999 207.4 495.3 204.8 490.9 202L477.9 232.8L507.4 245.2zM304 224H336V190.6C330.8 191.5 325.5 192 320 192S309.2 191.5 304 190.6V224zM360 116.4C360 89.3 335.8 54.6 320 38.3C304.2 54.6 280 89.3 280 116.4C280 146.2 292.7 160 320 160S360 146.1 360 116.4z" />
+    <glyph glyph-name="link"
+      unicode="&#xF0C1;"
+      horiz-adv-x="512" d=" M301.148 53.298L221.948 -25.892C171.1700000000001 -76.691 88.911 -76.716 38.108 -25.892C-12.691 24.886 -12.716 107.145 38.108 157.948L117.298 237.148A132.833 132.833 0 0 0 120.83 240.551C128.38 247.556 140.625 242.555 141.038 232.265C141.231 227.458 141.636 222.658 142.254 217.881C142.735 214.164 141.508 210.434 138.857 207.785C122.377 191.316 63.715 132.657 63.557 132.499C26.819 95.74 26.826 36.311 63.557 -0.441C100.316 -37.179 159.745 -37.172 196.497 -0.441L275.697 78.759L276.057 79.119C312.358 115.791 312.197 175.189 275.687 211.699C267.473 219.913 258.11 226.279 248.102 230.808C243.536 232.874 240.676 237.475 240.968 242.478A62.197 62.197 0 0 0 243.794 257.737C245.897 264.338 253.325 267.698 259.713 265.017C274.786 258.693 288.9000000000001 249.397 301.148 237.149C351.836 186.46 351.827 103.979 301.148 53.298zM210.852 146.852C223.1 134.604 237.2140000000001 125.308 252.2870000000001 118.984C258.675 116.304 266.103 119.664 268.206 126.264A62.197 62.197 0 0 1 271.0320000000001 141.523C271.324 146.526 268.463 151.127 263.898 153.193C253.89 157.721 244.527 164.087 236.313 172.302C199.803 208.812 199.642 268.21 235.943 304.882L236.3030000000001 305.242L315.5030000000001 384.442C352.2550000000001 421.173 411.6840000000001 421.18 448.4430000000001 384.442C485.174 347.69 485.181 288.261 448.4430000000001 251.502C448.2860000000001 251.345 389.624 192.685 373.1430000000001 176.216C370.492 173.566 369.2650000000001 169.837 369.7460000000001 166.12A163.156 163.156 0 0 0 370.9620000000001 151.736C371.3750000000001 141.445 383.6210000000001 136.445 391.1700000000001 143.45A131.324 131.324 0 0 1 394.7020000000001 146.853L473.8920000000001 226.053C524.716 276.856 524.691 359.115 473.8920000000001 409.8930000000001C423.0900000000001 460.717 340.8300000000001 460.692 290.052 409.8930000000001L210.852 330.703C160.173 280.021 160.1640000000001 197.54 210.852 146.852z" />
+    <glyph glyph-name="lips"
+      unicode="&#xF600;"
+      horiz-adv-x="640" d=" M545.25 229C527.69 236.56 479.69 254.33 413.28 255.89C384.19 256.15 369.71 242.1 320 242.1C270.36 242.1 255.4 256.14 226.72 255.89C160.31 254.33 112.31 236.56 94.75 229C88.62 226.38 84.22 220.91 83.03 214.38C81.81 207.85 83.97 201.16 88.81 196.49C204.78 83.11 436.7200000000001 84.58 551.19 196.49C556.0300000000001 201.16 558.19 207.85 556.97 214.38C555.78 220.91 551.38 226.38 545.25 229zM320 144C219.84 144 155.66 182.81 125.81 206.55C217.41 237.13 261.75 217.07 263.0900000000001 216.74C280.68 212.33 300.3400000000001 210.13 320 210.13S359.31 212.34 376.91 216.74C378.25 217.07 422.59 237.13 514.1899999999999 206.55C484.34 182.81 420.1600000000001 144 320 144zM631.14 252.32C579.47 338.01 466.31 416 417.7200000000001 416C417.7200000000001 416 385.1500000000001 416 320 366C254.85 416 222.28 416 222.28 416C173.69 416 60.53 338.01 8.86 252.32C-1.46 235.21 -2.77 214.33 4.97 195.94C32.95 129.49 117.59 -32 279.28 -32H360.71C522.4 -32 607.04 129.49 635.03 195.95C642.77 214.33 641.4599999999999 235.21 631.14 252.32zM605.54 208.37C579.16 145.72 502.49 0 360.7200000000001 0H279.29C137.51 0 60.84 145.72 34.46 208.37C30.61 217.52 31.27 227.51 36.26 235.8C84.66 316.0800000000001 187.49 382.63 221.25 383.98C248.57 379.73 286.07 351.7000000000001 319.99 325.67C353.9100000000001 351.7100000000001 391.4100000000001 379.74 418.73 383.98C452.5 382.63 555.32 316.0800000000001 603.72 235.8C608.73 227.51 609.39 217.51 605.5400000000001 208.37z" />
+    <glyph glyph-name="lira-sign"
+      unicode="&#xF195;"
+      horiz-adv-x="384" d=" M371.9940000000001 192.319H355.7390000000001C349.341 192.319 344.033 187.299 343.7560000000001 180.907C338.879 68.39 261.5010000000001 7.51 154.807 7.51H107.973V207.604L278.6040000000001 245.522A12 12 0 0 1 288.0010000000001 257.236V265.4310000000001C288.0010000000001 273.108 280.8920000000001 278.8110000000001 273.398 277.145L107.973 240.384V287.603L278.6040000000001 325.521A12 12 0 0 1 288.0010000000001 337.235V345.43C288.0010000000001 353.107 280.8920000000001 358.81 273.398 357.144L107.973 320.3830000000001V404C107.973 410.627 102.6 416 95.973 416H76C69.373 416 64 410.627 64 404V310.613L9.397 298.4790000000001A12 12 0 0 1 0 286.765V278.569C0 270.892 7.109 265.19 14.603 266.855L64 277.832V230.613L9.397 218.479A12 12 0 0 1 0 206.765V198.57C0 190.893 7.109 185.19 14.603 186.856L64 197.832V-20C64 -26.627 69.373 -32 76 -32H159.268C289.7870000000001 -32 378.876 44.854 383.992 179.914C384.248 186.694 378.779 192.319 371.994 192.319z" />
+    <glyph glyph-name="list-alt"
+      unicode="&#xF022;"
+      horiz-adv-x="512" d=" M464 384C472.823 384 480 376.822 480 368V16C480 7.178 472.823 0 464 0H48C39.177 0 32 7.178 32 16V368C32 376.822 39.177 384 48 384H464M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM128 320C110.327 320 96 305.673 96 288S110.327 256 128 256S160 270.327 160 288S145.673 320 128 320zM128 224C110.327 224 96 209.673 96 192S110.327 160 128 160S160 174.327 160 192S145.673 224 128 224zM128 128C110.327 128 96 113.673 96 96S110.327 64 128 64S160 78.327 160 96S145.673 128 128 128zM416 276V300A6 6 0 0 1 410 306H198A6 6 0 0 1 192 300V276A6 6 0 0 1 198 270H410A6 6 0 0 1 416 276zM416 180V204A6 6 0 0 1 410 210H198A6 6 0 0 1 192 204V180A6 6 0 0 1 198 174H410A6 6 0 0 1 416 180zM416 84V108A6 6 0 0 1 410 114H198A6 6 0 0 1 192 108V84A6 6 0 0 1 198 78H410A6 6 0 0 1 416 84z" />
+    <glyph glyph-name="list-ol"
+      unicode="&#xF0CB;"
+      horiz-adv-x="512" d=" M5.495 305.007C5.495 311.451 8.896 314.8540000000001 15.342 314.8540000000001H32.707V368.202C32.707 373.036 32.886 378.049 32.886 378.049H32.527S30.737 374.11 28.589 372.32L26.978 370.888C22.323 366.59 17.489 366.771 13.192 371.425L8.538 376.438C4.063 381.092 4.241 385.924 8.896 390.4L31.096 411.1670000000001C34.854 414.568 38.256 416 43.268 416H53.473C59.917 416 63.319 412.6 63.319 406.154V314.853H80.863C87.307 314.853 90.71 311.451 90.71 305.006V297.844C90.71 291.401 87.308 287.998 80.863 287.998H15.341C8.896 287.998 5.494 291.4 5.494 297.844V305.007zM3.719 141.557C3.719 188.039 58.124 196.314 58.124 214.448C58.124 223.251 51.08 226.9490000000001 44.566 226.9490000000001C38.932 226.9490000000001 34.179 223.9560000000001 31.185 220.786C26.783 216.561 22.205 214.8000000000001 17.452 218.674L10.586 224.132C5.656 228.0060000000001 4.423 232.4070000000001 8.121 237.1610000000001C14.284 245.26 26.432 256 47.384 256C67.983 256 90.344 244.204 90.344 217.441C90.344 178.178 39.461 170.607 37.877 154.41H82.597C88.936 154.41 92.281 151.064 92.281 144.726V137.682C92.281 131.345 88.936 127.999 82.597 127.999H14.108C8.122 127.999 3.72 131.345 3.72 137.682V141.557zM6.594 -7.879L11.348 -0.132C14.693 5.325 19.094 5.678 24.552 2.332C29.306 -0.308 35.469 -2.949 42.511 -2.949C53.956 -2.949 60.47 2.685 60.47 9.552C60.47 19.4109999999999 50.61 23.461 37.053 23.461H36.349C30.715 23.461 27.898 25.222 25.433 30.1519999999999L24.552 31.913C22.44 35.9619999999999 23.319 40.364 26.841 44.413L38.286 58.323C44.272 65.542 49.203 70.12 49.203 70.12V70.472S45.154 69.592 37.23 69.592H16.805C10.467 69.592 7.122 72.936 7.122 79.275V86.318C7.122 92.657 10.467 96.001 16.805 96.001H76.844C83.182 96.001 86.528 92.657 86.528 86.494V83.677C86.528 78.747 85.295 75.401 82.126 71.704L60.998 47.406C79.661 43.357 91.457 28.5679999999999 91.457 10.961C91.458 -10.52 76.316 -32 44.8 -32C27.722 -32 15.749 -26.014 8.706 -21.261C3.776 -17.739 3.425 -12.985 6.594 -7.879zM512 340V364A6 6 0 0 1 506 370H134A6 6 0 0 1 128 364V340A6 6 0 0 1 134 334H506A6 6 0 0 1 512 340zM512 180V204A6 6 0 0 1 506 210H134A6 6 0 0 1 128 204V180A6 6 0 0 1 134 174H506A6 6 0 0 1 512 180zM512 20V44A6 6 0 0 1 506 50H134A6 6 0 0 1 128 44V20A6 6 0 0 1 134 14H506A6 6 0 0 1 512 20z" />
+    <glyph glyph-name="list-ul"
+      unicode="&#xF0CA;"
+      horiz-adv-x="512" d=" M506 334H134A6 6 0 0 0 128 340V364A6 6 0 0 0 134 370H506A6 6 0 0 0 512 364V340A6 6 0 0 0 506 334zM512 180V204A6 6 0 0 1 506 210H134A6 6 0 0 1 128 204V180A6 6 0 0 1 134 174H506A6 6 0 0 1 512 180zM512 20V44A6 6 0 0 1 506 50H134A6 6 0 0 1 128 44V20A6 6 0 0 1 134 14H506A6 6 0 0 1 512 20zM48 388C28.118 388 12 371.882 12 352S28.118 316 48 316S84 332.118 84 352S67.882 388 48 388zM48 228C28.118 228 12 211.882 12 192S28.118 156 48 156S84 172.118 84 192S67.882 228 48 228zM48 68C28.118 68 12 51.882 12 32S28.118 -4 48 -4S84 12.118 84 32S67.882 68 48 68z" />
+    <glyph glyph-name="list"
+      unicode="&#xF03A;"
+      horiz-adv-x="512" d=" M506 334H134A6 6 0 0 0 128 340V364A6 6 0 0 0 134 370H506A6 6 0 0 0 512 364V340A6 6 0 0 0 506 334zM512 180V204A6 6 0 0 1 506 210H134A6 6 0 0 1 128 204V180A6 6 0 0 1 134 174H506A6 6 0 0 1 512 180zM512 20V44A6 6 0 0 1 506 50H134A6 6 0 0 1 128 44V20A6 6 0 0 1 134 14H506A6 6 0 0 1 512 20zM84 328V376C84 382.627 78.627 388 72 388H24C17.373 388 12 382.627 12 376V328C12 321.373 17.373 316 24 316H72C78.627 316 84 321.373 84 328zM84 168V216C84 222.627 78.627 228 72 228H24C17.373 228 12 222.627 12 216V168C12 161.373 17.373 156 24 156H72C78.627 156 84 161.373 84 168zM84 8V56C84 62.627 78.627 68 72 68H24C17.373 68 12 62.627 12 56V8C12 1.373 17.373 -4 24 -4H72C78.627 -4 84 1.373 84 8z" />
+    <glyph glyph-name="location-arrow"
+      unicode="&#xF124;"
+      horiz-adv-x="512" d=" M461.9 448C456.17 448 450.31 446.9 444.51 444.48L28.74 252.59C-19.23 230.2 -3.24 159.84 47.93 159.84H223.84V-16.0699999999999C223.84 -46.0799999999999 248.05 -63.9999999999999 272.58 -63.9999999999999C289.88 -63.9999999999999 307.33 -55.1 316.59 -35.2599999999999L508.49 380.5200000000001C522.06 413.11 494.14 448 461.9 448zM479.45 393.92L287.6 -21.74C284.42 -28.56 279.36 -32.02 272.5700000000001 -32.02C266.7700000000001 -32.02 255.8100000000001 -28.69 255.8100000000001 -16.08V191.8200000000001H47.93C36.48 191.8200000000001 33.29 200.6500000000001 32.44 204.4500000000001C31.34 209.3800000000001 31.17 218.43 42.14 223.5500000000001L456.82 414.96C458.53 415.67 460.19 416.01 461.91 416.01C467.33 416.01 473.4 412.36 477.02 406.93C479.21 403.64 481.34 398.52 479.45 393.92z" />
+    <glyph glyph-name="location-circle"
+      unicode="&#xF602;"
+      horiz-adv-x="496" d=" M307.75 301L125.81 217C109.43 209.36 101.03 192.47 104.9 174.95C108.78 157.59 123.24 145.92 140.96 145.92H201.93V84.97C201.93 67.25 213.59 52.75 230.96 48.91C233.8 48.29 236.65 47.97 239.4 47.97C253.71 47.97 266.62 56.11 273.02 69.88L357 251.78L357.25 252.33C362.94 265.9700000000001 359.59 281.81 348.75 292.67C337.84 303.5900000000001 322.03 306.9400000000001 307.75 301zM244 83.33C242.72 80.61 240.72 79.44 237.88 80.16C235.29 80.74 233.94 82.36 233.94 84.97V177.92H140.97C138.38 177.92 136.75 179.25 136.16 181.89C135.54 184.67 136.6 186.73 139.28 187.97L320.5900000000001 271.69C321.12 271.91 321.5900000000001 271.99 322.0900000000001 271.99C324.0000000000001 271.99 325.5600000000001 270.6 326.0900000000001 270.07C326.7100000000001 269.45 328.6500000000001 267.24 327.7800000000001 264.82L244 83.33zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="location-slash"
+      unicode="&#xF603;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM320 352C408.2200000000001 352 480 280.2200000000001 480 192C480 172.08 475.9 153.21 469.22 135.6L495.3800000000001 115C503.72 133.97 509.41 154.39 511.2 175.99H568C572.42 175.99 576 179.57 576 183.99V199.99C576 204.41 572.42 207.99 568 207.99H511.19C503.48 301.24 429.24 375.48 336 383.19V440C336 444.42 332.42 448 328 448H312C307.58 448 304 444.42 304 440V383.19C266.51 380.0900000000001 232.4 365.86 204.14 344.3400000000001L229.9 324.05C255.59 341.64 286.59 352 320 352zM284.52 281.04L316.74 255.67C317.8400000000001 255.73 318.88 256 320 256C351.3 256 377.32 233.3700000000001 382.82 203.63L414.64 178.5700000000001C415.27 183 416 187.4 416 192C416 245.02 373.02 288 320 288C307.44 288 295.52 285.43 284.52 281.04zM355.48 102.96L323.26 128.3300000000001C322.16 128.2700000000001 321.12 128.0000000000001 320 128.0000000000001C288.7 128.0000000000001 262.68 150.6300000000001 257.18 180.3700000000001L225.36 205.4300000000001C224.73 201 224 196.6 224 192C224 138.98 266.98 96 320 96C332.56 96 344.48 98.57 355.48 102.96zM320 32C231.78 32 160 103.78 160 192C160 211.92 164.1 230.79 170.78 248.4L144.63 269C136.29 250.03 130.6 229.61 128.81 208.01H72C67.58 208.01 64 204.43 64 200.01V184.01C64 179.59 67.58 176.01 72 176.01H128.81C136.52 82.77 210.76 8.53 304 0.82V-56C304 -60.42 307.58 -64 312 -64H328C332.42 -64 336 -60.42 336 -56V0.81C373.49 3.91 407.6 18.14 435.86 39.66L410.1 59.9500000000001C384.4100000000001 42.36 353.4100000000001 32 320 32z" />
+    <glyph glyph-name="location"
+      unicode="&#xF601;"
+      horiz-adv-x="512" d=" M504 208H447.19C439.48 301.24 365.24 375.48 272 383.19V440C272 444.42 268.42 448 264 448H248C243.58 448 240 444.42 240 440V383.19C146.76 375.48 72.52 301.24 64.81 208H8C3.58 208 0 204.42 0 200V184C0 179.58 3.58 176 8 176H64.81C72.52 82.76 146.76 8.52 240 0.81V-56C240 -60.42 243.58 -64 248 -64H264C268.42 -64 272 -60.42 272 -56V0.81C365.24 8.52 439.48 82.76 447.19 176H504C508.42 176 512 179.58 512 184V200C512 204.42 508.42 208 504 208zM256 32C167.78 32 96 103.78 96 192S167.78 352 256 352S416 280.2200000000001 416 192S344.2200000000001 32 256 32zM256 288C202.98 288 160 245.02 160 192S202.98 96 256 96S352 138.98 352 192S309.02 288 256 288zM256 128C220.71 128 192 156.71 192 192S220.71 256 256 256S320 227.29 320 192S291.29 128 256 128z" />
+    <glyph glyph-name="lock-alt"
+      unicode="&#xF30D;"
+      horiz-adv-x="448" d=" M224 28C213 28 204 37 204 48V112C204 123 213 132 224 132S244 123 244 112V48C244 37 235 28 224 28zM448 176V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V176C0 202.5 21.5 224 48 224H64V288C64 376.4 136 448.3 224.5 448C312.9 447.7 384 374.9 384 286.5V224H400C426.5 224 448 202.5 448 176zM96 224H352V288C352 358.6 294.6 416 224 416S96 358.6 96 288V224zM416 -16V176C416 184.8 408.8 192 400 192H48C39.2 192 32 184.8 32 176V-16C32 -24.8 39.2 -32 48 -32H400C408.8 -32 416 -24.8 416 -16z" />
+    <glyph glyph-name="lock-open-alt"
+      unicode="&#xF3C2;"
+      horiz-adv-x="640" d=" M227 31C216 31 207 40 207 51V115C207 126 216 135 227 135S247 126 247 115V51C247 40 238 31 227 31zM480.5 448C392 448.3 320 376.4 320 288V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224H352V286.6C352 357.3 408.7 415.6 479.3 416C550.2 416.4 608 358.8 608 288V204C608 197.4 613.4 192 620 192H628C634.6 192 640 197.4 640 204V286.5C640 374.9 568.9 447.7 480.5 448zM400 192C408.8 192 416 184.8 416 176V-16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V176C32 184.8 39.2 192 48 192H400z" />
+    <glyph glyph-name="lock-open"
+      unicode="&#xF3C1;"
+      horiz-adv-x="640" d=" M480.5 448C392 448.3 320 376.4 320 288V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224H352V286.6C352 357.3 408.7 415.6 479.3 416C550.2 416.4 608 358.8 608 288V204C608 197.4 613.4 192 620 192H628C634.6 192 640 197.4 640 204V286.5C640 374.9 568.9 447.7 480.5 448zM400 192C408.8 192 416 184.8 416 176V-16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V176C32 184.8 39.2 192 48 192H400z" />
+    <glyph glyph-name="lock"
+      unicode="&#xF023;"
+      horiz-adv-x="448" d=" M400 224H384V286.5C384 374.9 312.9 447.7 224.5 448C136 448.3 64 376.4 64 288V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224zM96 288C96 358.6 153.4 416 224 416S352 358.6 352 288V224H96V288zM400 -32H48C39.2 -32 32 -24.8 32 -16V176C32 184.8 39.2 192 48 192H400C408.8 192 416 184.8 416 176V-16C416 -24.8 408.8 -32 400 -32z" />
+    <glyph glyph-name="long-arrow-alt-down"
+      unicode="&#xF309;"
+      horiz-adv-x="256" d=" M223.351 128H145V404C145 410.627 139.627 416 133 416H123C116.373 416 111 410.627 111 404V128H32.652C3.264 128 -10.616 93.409 9.421 73.373L105.373 -22.627C117.87 -35.123 138.13 -35.124 150.628 -22.627L246.583 73.373C266.56 93.35 252.85 128 223.351 128zM128 0L32 96H224L128 0z" />
+    <glyph glyph-name="long-arrow-alt-left"
+      unicode="&#xF30A;"
+      horiz-adv-x="448" d=" M160 96.649V175H436C442.627 175 448 180.373 448 187V197C448 203.627 442.627 209 436 209H160V287.348C160 316.736 125.409 330.616 105.373 310.579L9.373 214.627C-3.123 202.13 -3.124 181.87 9.373 169.372L105.373 73.417C125.35 53.44 160 67.15 160 96.649zM32 192L128 288V96L32 192z" />
+    <glyph glyph-name="long-arrow-alt-right"
+      unicode="&#xF30B;"
+      horiz-adv-x="448" d=" M288 287.351V209H12C5.373 209 0 203.627 0 197V187C0 180.373 5.373 175 12 175H288V96.652C288 67.264 322.591 53.384 342.627 73.421L438.627 169.373C451.123 181.87 451.124 202.13 438.627 214.628L342.627 310.583C322.65 330.56 288 316.85 288 287.351zM416 192L320 96V288L416 192z" />
+    <glyph glyph-name="long-arrow-alt-up"
+      unicode="&#xF30C;"
+      horiz-adv-x="256" d=" M32.649 256H111V-20C111 -26.627 116.373 -32 123 -32H133C139.627 -32 145 -26.627 145 -20V256H223.348C252.736 256 266.616 290.591 246.579 310.627L150.627 406.627C138.13 419.123 117.87 419.124 105.372 406.627L9.417 310.627C-10.56 290.65 3.15 256 32.649 256zM128 384L224 288H32L128 384z" />
+    <glyph glyph-name="long-arrow-down"
+      unicode="&#xF175;"
+      horiz-adv-x="256" d=" M252.485 104.97L245.415 112.0410000000001C240.729 116.727 233.1310000000001 116.727 228.444 112.0410000000001L145 28.113V404C145 410.627 139.627 416 133 416H123C116.373 416 111 410.627 111 404V28.113L27.556 112.041C22.87 116.727 15.272 116.727 10.585 112.041L3.515 104.97C-1.171 100.284 -1.171 92.686 3.515 88L119.515 -28.485C124.201 -33.171 131.799 -33.171 136.486 -28.485L252.486 88C257.172 92.686 257.172 100.284 252.485 104.97z" />
+    <glyph glyph-name="long-arrow-left"
+      unicode="&#xF177;"
+      horiz-adv-x="448" d=" M136.97 67.515L144.041 74.585C148.727 79.271 148.727 86.869 144.041 91.556L60.113 175H436C442.627 175 448 180.373 448 187V197C448 203.627 442.627 209 436 209H60.113L144.041 292.444C148.727 297.13 148.727 304.728 144.041 309.415L136.97 316.485C132.284 321.1710000000001 124.686 321.1710000000001 120 316.485L3.515 200.485C-1.171 195.799 -1.171 188.201 3.515 183.514L120 67.514C124.686 62.828 132.284 62.828 136.97 67.515z" />
+    <glyph glyph-name="long-arrow-right"
+      unicode="&#xF178;"
+      horiz-adv-x="448" d=" M311.03 316.485L303.959 309.415C299.273 304.7290000000001 299.273 297.1310000000001 303.959 292.444L387.887 209H12C5.373 209 0 203.627 0 197V187C0 180.373 5.373 175 12 175H387.887L303.959 91.556C299.273 86.87 299.273 79.272 303.959 74.585L311.0300000000001 67.515C315.716 62.829 323.314 62.829 328 67.515L444.485 183.515C449.171 188.201 449.171 195.799 444.485 200.486L328 316.485C323.314 321.1720000000001 315.716 321.1720000000001 311.03 316.485z" />
+    <glyph glyph-name="long-arrow-up"
+      unicode="&#xF176;"
+      horiz-adv-x="256" d=" M3.515 279.03L10.585 271.959C15.271 267.273 22.869 267.273 27.556 271.959L111 355.887V-20C111 -26.627 116.373 -32 123 -32H133C139.627 -32 145 -26.627 145 -20V355.887L228.444 271.959C233.13 267.273 240.728 267.273 245.415 271.959L252.485 279.03C257.171 283.716 257.171 291.314 252.485 296L136.485 412.485C131.799 417.171 124.201 417.171 119.514 412.485L3.515 296C-1.172 291.314 -1.172 283.716 3.515 279.03z" />
+    <glyph glyph-name="loveseat"
+      unicode="&#xF4CC;"
+      horiz-adv-x="512" d=" M448 254.1V287.8C448 340.9 405 384 352 384H160C107 384 64 340.9 64 287.8V254.1C27.5 246.6 0 214.3 0 175.5C0 150.4 12.1 126.7 32 111.7V32.1C32 14.4 46.3 0 64 0H128C145.3 0 159.3 14.7 159.8 32H352.2000000000001C352.7000000000001 14.7 366.7000000000001 0 384.0000000000001 0H448.0000000000001C465.7 0 480.0000000000001 14.4 480.0000000000001 32.1V111.7000000000001C499.9 126.8000000000001 512 150.4 512 175.5000000000001C512 214.2000000000001 484.5 246.6000000000001 448 254.1000000000001zM128 32.1H64V129.5C46.9 139.5 32 150.6 32 175.5C32 202 53.5 223.6 80 223.6H112C120.8 223.6 128 216.4 128 207.6V32.1zM352 64H160V159.5H352V64zM352 207.6V192H160V207.6C160 234.1 138.5 255.7 112 255.7H96V287.8C96 323.2 124.7 351.9 160 351.9H352C387.3 351.9 416 323.1 416 287.8V255.7H400C373.5 255.7 352 234.1 352 207.6zM448 129.5V32.1H384V207.6C384 216.4 391.2 223.6 400 223.6H432C458.5 223.6 480 202 480 175.5C480 151.6 466.1 140.1 448 129.5z" />
+    <glyph glyph-name="low-vision"
+      unicode="&#xF2A8;"
+      horiz-adv-x="576" d=" M569.348 216.37C512.998 312.01 407.86 376 288 376C251.697 376 216.74 370.123 184.07 359.278L121.889 443.087C117.889 448.478 110.277 449.606 104.886 445.606L98.379 440.778C92.988 436.778 91.86 429.165 95.86 423.774L152.786 347.048C91.489 319.406 40.334 273.553 6.637 216.369C-2.342 201.131 -2.082 182.42 6.641 167.63C37.246 115.687 82.252 73.093 136.178 45.003C29.589 188.732 39.873 174.276 34.215 183.876A16.006 16.006 0 0 0 34.215 200.123A287.0079999999999 287.0079999999999 0 0 0 51.144 225.614L204.72 18.61C219.72 14.7 235.14 11.83 250.9 10.07L72.243 250.876A293.367 293.367 0 0 0 105.692 281.478L308.14 8.61C320.56 9.35 332.8 10.79 344.82 12.88L131.942 299.798A293.06 293.06 0 0 0 139.536 304.351A292.057 292.057 0 0 0 172.36 320.664L454.111 -59.087C458.111 -64.4779999999999 465.723 -65.606 471.114 -61.606L477.621 -56.778C483.012 -52.778 484.14 -45.165 480.14 -39.774L423.223 36.94C484.5069999999999 64.569 535.6419999999999 110.431 569.347 167.63A47.961 47.961 0 0 1 569.348 216.37zM362.31 119.041L323.799 170.947C351.319 189.539 359.713 225.623 344.47 254.14V254.12C344.47 239.56 332.67 227.76 318.12 227.76C303.56 227.76 291.76 239.56 291.76 254.12C291.76 268.67 303.56 280.4700000000001 318.12 280.4700000000001H318.14C295.8619999999999 292.378 267.9479999999999 290.218 247.6019999999999 273.647L212.9019999999999 320.4170000000001C233.992 335.254 259.945 344 288 344C358.69 344 416 288.48 416 220C416 178.363 394.813 141.522 362.31 119.041zM541.78 183.88C509.877 129.732 461.211 87.639 403.647 63.325L381.407 93.3C455.6469999999999 145.448 469.6549999999999 246.821 414.12 316.009C468.4399999999999 290.5590000000001 512.7099999999999 249.459 541.78 200.119A15.958 15.958 0 0 0 541.78 183.8800000000001z" />
+    <glyph glyph-name="luchador"
+      unicode="&#xF455;"
+      horiz-adv-x="448" d=" M224 448C100.3 448 0 347.7 0 224V96C0 7.6 71.6 -64 160 -64H288C376.4 -64 448 7.6 448 96V224C448 347.7 347.7 448 224 448zM416 96C416 25.4 358.6 -32 288 -32H160C89.4 -32 32 25.4 32 96V224C32 329.9 118.1 416 224 416S416 329.9 416 224V96zM226.5 221.8C225.6 222.5 222.3 222.5 221.4 221.8C213.3 259.7 182 288 144 288H76C69.4 288 64 282.6 64 276V245.3C64 198.2 99.8 160 144 160H166.4C159 147.8 153.9 136.5 150.6 127.1C119.7 122.5 96 96.1 96 64C96 28.5 125.4 0 160.9 0H287C322.5 0 351.9 28.5 351.9 64C351.9 96.1 328.2 122.5 297.3 127.1C294 136.6 288.9 147.8 281.5 160H304C348.2 160 384 198.2 384 245.3V276C384 282.6 378.6 288 372 288H304C266.1 288 234.7 259.7 226.5 221.8zM262.7 128H185.3C192.1 142.8 203.8 161.4 224 181.3C244.2 161.4 255.9 142.8 262.7 128zM144 192C117.5 192 96 215.9 96 245.3V256H144C170.5 256 192 232.1 192 202.7V194C191.4 193.3 190.8 192.7 190.2 192H144zM320 64C320 46.4 305.6 32 288 32H160C142.4 32 128 46.4 128 64S142.4 96 160 96H288C305.6 96 320 81.6 320 64zM352 245.3C352 215.9 330.5 192 304 192H257.8C257.2 192.7 256.6 193.3 256 194V202.7C256 232.1 277.5 256 304 256H352V245.3z" />
+    <glyph glyph-name="luggage-cart"
+      unicode="&#xF59D;"
+      horiz-adv-x="640" d=" M224 96H544C561.67 96 576 110.33 576 128V320C576 337.67 561.67 352 544 352H480V400C480 426.51 458.51 448 432 448H336C309.49 448 288 426.51 288 400V352H224C206.33 352 192 337.67 192 320V128C192 110.33 206.33 96 224 96zM480 320H544V128H480V320zM320 400C320 408.8400000000001 327.1600000000001 416 336 416H432C440.84 416 448 408.8400000000001 448 400V352H320V400zM320 320H448V128H320V320zM224 320H288V128H224V320zM632 32H128V440C128 444.42 124.42 448 120 448H8C3.58 448 0 444.42 0 440V424C0 419.58 3.58 416 8 416H96V8C96 3.58 99.58 0 104 0H162.94C161.15 -5.03 160 -10.36 160 -16C160 -42.51 181.49 -64 208 -64S256 -42.51 256 -16C256 -10.36 254.85 -5.03 253.06 0H450.94C449.15 -5.03 448 -10.36 448 -16C448 -42.51 469.49 -64 496 -64S544 -42.51 544 -16C544 -10.36 542.85 -5.03 541.06 0H632C636.42 0 640 3.58 640 8V24C640 28.42 636.42 32 632 32zM208 -32C199.18 -32 192 -24.82 192 -16S199.18 0 208 0S224 -7.18 224 -16S216.82 -32 208 -32zM496 -32C487.18 -32 480 -24.82 480 -16S487.18 0 496 0S512 -7.18 512 -16S504.82 -32 496 -32z" />
+    <glyph glyph-name="lungs"
+      unicode="&#xF604;"
+      horiz-adv-x="640" d=" M636.11 57.85C614.4300000000001 139.15 580.03 217 534.03 288.87C511.89 323.44 497.93 352 453.92 352C415.2000000000001 352 383.8200000000001 322.58 383.8200000000001 286.29V210.93L336.0100000000001 242.78V440C336.0100000000001 444.42 332.4200000000001 448 328.0000000000001 448H311.9900000000001C307.5700000000001 448 303.9800000000001 444.42 303.9800000000001 440V242.78L256.1700000000001 210.93V286.29C256.1700000000001 322.5800000000001 224.7900000000001 352 186.0700000000001 352C142.0600000000001 352 128.1000000000001 323.44 105.9700000000001 288.87C59.9700000000001 217 25.5700000000001 139.15 3.8900000000001 57.85C1.3 48.16 0 38.21 0 28.21C0 -24.11 45.66 -64 98.13 -64C116.23 -64 122.6 -61.13 184.87 -44.45C227.08 -33.15 256.18 3.02 256.18 44.16V134.03L224.16 112.7000000000001V44.16C224.16 17.6900000000001 204.6 -6.04 176.59 -13.54C112.18 -30.79 110.55 -32 98.13 -32C61.68 -32 32.02 -4.99 32.02 28.21C32.02 35.41 32.97 42.61 34.83 49.6C55.68 127.78 88.69 202.47 132.95 271.61C160.77 315.55 165.09 319.99 186.08 319.99C207.08 319.99 224.16 304.87 224.16 286.28V189.5899999999999L125.65 123.9599999999999C121.97 121.5099999999999 120.98 116.5399999999999 123.43 112.8599999999999L132.31 99.5499999999999C134.76 95.8699999999999 139.73 94.8799999999999 143.41 97.3299999999999L320 214.99L496.59 97.34C500.27 94.89 505.24 95.8800000000001 507.6900000000001 99.5600000000001L516.57 112.8700000000001A8.006 8.006 0 0 1 514.35 123.9700000000001L415.8400000000001 189.6000000000001V286.2900000000001C415.8400000000001 304.8800000000001 432.92 320.0000000000001 453.92 320.0000000000001C474.91 320.0000000000001 479.23 315.5600000000001 507.05 271.6200000000001C551.3 202.4800000000001 584.32 127.7800000000001 605.1700000000001 49.6100000000001A83.248 83.248 0 0 0 607.98 28.2200000000001C607.98 -4.9799999999998 578.32 -31.9899999999998 541.87 -31.9899999999998C529.45 -31.9899999999998 527.82 -30.7799999999999 463.42 -13.5299999999999C435.4100000000001 -6.0299999999999 415.85 17.7000000000002 415.85 44.1700000000001V112.7L383.8300000000001 134.03V44.16C383.8300000000001 3.01 412.9300000000001 -33.15 455.14 -44.45C517.4100000000001 -61.13 523.7800000000001 -64 541.88 -64C594.35 -64 640.01 -24.11 640.01 28.21C640 38.21 638.7 48.16 636.11 57.85z" />
+    <glyph glyph-name="mace"
+      unicode="&#xF6F8;"
+      horiz-adv-x="512" d=" M501.02 249.08L429.65 263.37C419.88 316.13 377.85 357.2100000000001 324.72 365.9100000000001L308.95 437.1600000000001C305.74 451.68 297.68 451.6 294.77 437.02L280.48 365.63C227.84 355.82 186.86 313.88 178.12 260.88L106.8599999999999 245.11C92.34 241.9 92.42 233.84 106.9999999999999 230.93L178.37 216.64C180.0699999999999 207.47 183.05 198.83 186.59 190.47L4.69 8.57C-1.56 2.32 -1.56 -7.81 4.69 -14.06L49.95 -59.32C56.2 -65.5699999999999 66.33 -65.5699999999999 72.58 -59.32L254.58 122.7000000000001C263.62 118.9 273.01 115.78 282.96 114.1200000000001L298.74 42.84C301.95 28.3200000000001 310.01 28.4 312.92 42.98L327.21 114.34C380 124.04 421.13 166.0200000000001 429.89 219.1300000000001L501.15 234.9000000000001C515.68 238.1100000000001 515.59 246.1600000000001 501.02 249.0800000000001zM61.25 -25.37L38.62 -2.74L203.15 161.79C209.73 153.34 217.42 145.83 225.89 139.28L61.25 -25.37zM304 144C250.98 144 208 186.98 208 240S250.98 336 304 336S400 293.02 400 240S357.02 144 304 144zM304 288C277.53 288 256 266.4700000000001 256 240S277.53 192 304 192S352 213.53 352 240S330.4700000000001 288 304 288zM304 224C295.19 224 288 231.17 288 240S295.19 256 304 256S320 248.83 320 240S312.81 224 304 224z" />
+    <glyph glyph-name="magic"
+      unicode="&#xF0D0;"
+      horiz-adv-x="512" d=" M224 352L240 384L272 400L240 416L224 448L208 416L176 400L208 384L224 352zM80 288L106.66 341.33L160 368L106.66 394.67L80 448L53.34 394.67L0 368L53.34 341.33L80 288zM80 384C88.84 384 96 376.8400000000001 96 368S88.84 352 80 352S64 359.16 64 368S71.16 384 80 384zM432 160L405.34 106.67L352 80L405.3400000000001 53.33L432 0L458.66 53.33L512 80L458.66 106.67L432 160zM432 64C423.1600000000001 64 416 71.16 416 80S423.1600000000001 96 432 96S448 88.84 448 80S440.84 64 432 64zM502.63 370.04L434.04 438.63C427.79 444.88 419.6 448 411.4100000000001 448S395.0300000000001 444.88 388.7800000000001 438.63L9.37 59.21C-3.13 46.71 -3.13 26.45 9.37 13.96L77.96 -54.63C84.21 -60.88 92.4 -64 100.59 -64S116.97 -60.88 123.22 -54.63L502.63 324.7800000000001C515.12 337.2800000000001 515.12 357.54 502.63 370.04zM100.59 -32L32 36.59L290.38 294.99L358.98 226.39L100.59 -32zM381.61 249.02L313.01 317.62L411.38 416H411.41L480 347.41L381.61 249.02z" />
+    <glyph glyph-name="magnet"
+      unicode="&#xF076;"
+      horiz-adv-x="512" d=" M372 416C352.1 416 336 399.9 336 380V208C336 144 296 112 256.1 112C216.1 112 176 144 176 208V380C176 399.9 159.9 416 140 416H36.4C16.4 416 0.2 399.7 0.4 379.6C0.7 355.1 1 321.2 1.1 288H0V256H1.1C1 229.7 0.7 206 0 190.7C0 40 136.2 -56 256.8 -56C377.5 -56 512 40 512 190.7V380C512 399.9 495.9 416 476 416H372zM36.5 380H140V288H37.1C37 321.4 36.7 355.4 36.5 380zM476 189.9C475.9 159.5 469.4 130.6 456.6 104.1C444.7000000000001 79.2 427.6 56.9 405.8 37.8C385.2 19.6999999999999 360.6 4.9 334.6 -5.1C309.1 -14.9 282.2000000000001 -20.1 256.7000000000001 -20.1C231.2000000000001 -20.1 204.2000000000001 -14.9 178.5000000000001 -5.1C152.3000000000001 4.9 127.5000000000001 19.8 106.7000000000001 37.9C84.7000000000001 57.1 67.5000000000001 79.4 55.4000000000001 104.2C42.5000000000001 130.7 36.0000000000001 159.5 35.8000000000001 189.8C36.5000000000001 205.7 36.8000000000001 229.5 36.9000000000001 255.9H140V207.9C140 158.6999999999999 158.9 128.1999999999999 174.8 111.3C185.6 99.8 198.3 90.9 212.6 84.8C226.4000000000001 78.9 241.1 75.9 256.1 75.9S285.8 78.9 299.6 84.8C313.9000000000001 90.9 326.6 99.8 337.3 111.3C353.1 128.1999999999999 372 158.6999999999999 372 207.9V255.9H474.9C475 229.7 475.3 205.8 476 189.9zM372 288V380H475.5C475.2 355.4 474.9 321.4 474.9 288H372z" />
+    <glyph glyph-name="mail-bulk"
+      unicode="&#xF674;"
+      horiz-adv-x="640" d=" M592 352H240C213.53 352 192 330.4700000000001 192 304V288H224V304C224 312.8400000000001 231.16 320 240 320H592C600.84 320 608 312.8400000000001 608 304V80C608 71.16 600.84 64 592 64H416V32H592C618.47 32 640 53.53 640 80V304C640 330.4700000000001 618.47 352 592 352zM96 400C96 408.8400000000001 103.16 416 112 416H400C408.84 416 416 408.8400000000001 416 400V384H448V400C448 426.4700000000001 426.4700000000001 448 400 448H112C85.53 448 64 426.4700000000001 64 400V288H96V400zM560 192C568.84 192 576 199.16 576 208V272C576 280.8400000000001 568.84 288 560 288H496C487.16 288 480 280.8400000000001 480 272V208C480 199.16 487.16 192 496 192H560zM512 256H544V224H512V256zM336 256H48C21.53 256 0 234.47 0 208V-16C0 -42.47 21.53 -64 48 -64H336C362.4700000000001 -64 384 -42.47 384 -16V208C384 234.47 362.4700000000001 256 336 256zM352 -16C352 -24.84 344.84 -32 336 -32H48C39.16 -32 32 -24.84 32 -16V134.4C44.8 124.8 64 108.8 128 64C140.8 54.4 166.4 32 192 32S243.2 54.4 256 64C320 108.8 339.2 124.8 352 134.4V-16zM352 172.8C326.4 153.6 329.6 153.6 236.8 86.4C227.2 83.2 208 64 192 64S156.8 83.2 147.2 89.6C54.4 156.8 57.6 156.8 32 176V208C32 216.84 39.16 224 48 224H336C344.84 224 352 216.84 352 208V172.8z" />
+    <glyph glyph-name="male"
+      unicode="&#xF183;"
+      horiz-adv-x="256" d=" M198.746 307.726C209.582 322.353 216 340.44 216 360C216 408.523 176.523 448 128 448S40 408.523 40 360C40 340.44 46.418 322.353 57.254 307.726C28.585 297.522 8 270.127 8 238V133C8 108.26 25.041 87.424 48 81.613V-11C48 -40.224 71.776 -64 101 -64H155C184.224 -64 208 -40.224 208 -11V81.613C230.959 87.425 248 108.26 248 133V238C248 270.127 227.415 297.522 198.746 307.726zM128 416C158.928 416 184 390.928 184 360S158.928 304 128 304S72 329.072 72 360S97.072 416 128 416zM216 133C216 121.402 206.598 112 195 112H176V-11C176 -22.598 166.598 -32 155 -32H101C89.402 -32 80 -22.598 80 -11V112H61C49.402 112 40 121.402 40 133V238C40 261.1960000000001 58.804 280 82 280H91.36C114.071 269.557 140.95 269.106 164.64 280H174C197.196 280 216 261.1960000000001 216 238V133z" />
+    <glyph glyph-name="mandolin"
+      unicode="&#xF6F9;"
+      horiz-adv-x="512" d=" M160 160C124.65 160 96 131.35 96 96C96 60.68 124.63 32 160 32C195.35 32 224 60.65 224 96C224 131.32 195.37 160 160 160zM160 64C142.37 64 128 78.34 128 96C128 113.64 142.36 128 160 128C177.63 128 192 113.66 192 96C192 78.35 177.64 64 160 64zM502.63 393.37L457.37 438.63C451.13 444.88 442.94 448 434.75 448C426.56 448 418.37 444.88 412.12 438.63L344.24 370.75C335.9600000000001 362.4600000000001 333.7 350.86 336.39 340.28L281.69 285.58C270.15 286.99 258.65 288.01 247.33 288.01C190.87 288.01 137.7 271.7200000000001 94.52 240.38A561.095 561.095 0 0 1 27.36 183.07C-24.46 131.25 2.82 60.16 63.48 -0.5C124.15 -61.17 195.23 -88.45 247.06 -36.62A560.179 560.179 0 0 1 304.37 30.54C335.71 73.7 352 126.87 352 183.33C352 194.65 350.98 206.15 349.57 217.7L404.27 272.4C414.86 269.7 426.46 271.96 434.74 280.25L502.62 348.13C508.87 354.38 511.99 362.57 511.99 370.76C512 378.94 508.88 387.13 502.63 393.37zM278.4700000000001 49.31A531.222 531.222 0 0 0 224.43 -14.02C178.31 -60.14 112.33 -4.12 86.11 22.1S3.87 114.3 49.99 160.42A529.514 529.514 0 0 0 113.32 214.46C170.17 255.71 234.29 256.98 251.79 255.6600000000001L208.48 212.35C202.23 206.1 202.23 195.97 208.48 189.72L253.73 144.46C259.98 138.21 270.11 138.21 276.36 144.46L319.67 187.7700000000001C320.98 170.28 319.7200000000001 106.16 278.4700000000001 49.3100000000001zM480 370.7200000000001L412.12 302.87L394.4700000000001 307.37L265.04 178.41L242.4100000000001 201.04L371.36 330.47L366.86 348.12L434.7200000000001 416H434.75L480 370.75V370.7200000000001z" />
+    <glyph glyph-name="map-marked-alt"
+      unicode="&#xF5A0;"
+      horiz-adv-x="576" d=" M312 320C312 333.26 301.25 344 288 344S264 333.26 264 320C264 306.75 274.75 296 288 296S312 306.74 312 320zM560.02 288C558.06 288 556.04 287.63 554.06 286.8400000000001L384.01 224H384L373.73 227.62C397.0300000000001 262.48 416.01 298.82 416.01 324.95C416 392.91 358.69 448 288 448S160 392.91 160 324.95C160 313.15 164.02 299.2 170.39 284.31L20.12 232.04C7.97 227.19 0 215.42 0 202.33V-47.99C0 -57.17 7.53 -64 15.99 -64C17.95 -64 19.96 -63.63 21.95 -62.84L192 0L364 -60.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -60.86L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 281.17 568.47 288 560.02 288zM176 28.2L31.91 -25.05L30.63 201.82L176 252.39V28.2zM288 416C340.94 416 384 375.16 384 324.95C384 297.95 345.91 236.06 288 168.18C230.1 236.06 192 297.9500000000001 192 324.9500000000001C192 375.16 235.06 416 288 416zM368 -28.19L208 28.29V219.18C232.42 183.91 260.14 151.18 275.71 133.52C278.95 129.84 283.48 128 288 128S297.05 129.84 300.29 133.52C313.05 147.99 333.99 172.63 354.5700000000001 200.46L367.9900000000001 195.72V-28.1900000000001zM400 -28.39V195.79L544.09 249.05L545.37 22.18L400 -28.39z" />
+    <glyph glyph-name="map-marked"
+      unicode="&#xF59F;"
+      horiz-adv-x="576" d=" M560.02 288C558.06 288 556.04 287.63 554.06 286.8400000000001L384.01 224H384L373.73 227.62C397.0300000000001 262.48 416.01 298.82 416.01 324.95C416 392.91 358.69 448 288 448S160 392.91 160 324.95C160 313.15 164.02 299.2 170.39 284.31L20.12 232.04C7.97 227.19 0 215.42 0 202.33V-47.99C0 -57.17 7.53 -64 15.99 -64C17.95 -64 19.96 -63.63 21.95 -62.84L192 0L364 -60.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -60.86L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 281.17 568.47 288 560.02 288zM176 28.2L31.91 -25.05L30.63 201.82L176 252.39V28.2zM288 416C340.94 416 384 375.16 384 324.95C384 297.95 345.91 236.06 288 168.18C230.1 236.06 192 297.9500000000001 192 324.9500000000001C192 375.16 235.06 416 288 416zM368 -28.19L208 28.29V219.18C232.42 183.91 260.14 151.18 275.71 133.52C278.95 129.84 283.48 128 288 128S297.05 129.84 300.29 133.52C313.05 147.99 333.99 172.63 354.5700000000001 200.46L367.9900000000001 195.72V-28.1900000000001zM400 -28.39V195.79L544.09 249.05L545.37 22.18L400 -28.39z" />
+    <glyph glyph-name="map-marker-alt-slash"
+      unicode="&#xF605;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM320 416C408.2200000000001 416 480 344.2200000000001 480 256C480 221.33 475.29 201.91 445.19 154.53L470.51 134.59C503.87 186.75 512 212.76 512 256C512 361.6 425.6 448 320 448C258.28 448 203.27 418.35 168.08 372.73L193.44 352.76C222.71 390.94 268.29 416 320 416zM393.95 194.88C407.56 211.42 416 232.46 416 256C416 309.76 373.76 352 320 352C288.11 352 260.54 336.92 243.17 313.61L268.2800000000001 293.8400000000001C279.81 309.73 298.43 320 320 320C355.89 320 384 291.89 384 256C384 240.01 378.2 225.76 368.84 214.65L393.95 194.88zM372.48 48.69C356.9600000000001 26.68 339.39 1.78 320.01 -26C300.34 2.17 282.92 26.85 267.52 48.69C170.64 186.03 160 202.89 160 256C160 256.28 160.08 256.54 160.08 256.82L129.78 280.68C128.73 272.5800000000001 128 264.38 128 256C128 179.2 153.6 156.8 300.8 -54.4C305.6 -60.7999999999999 312.8 -64 320 -64S334.4 -60.8 339.2 -54.4C369.97 -10.25 395.16 25.29 416.18 55.16L391 74.99C385.19 66.71 379.07 58.03 372.48 48.69z" />
+    <glyph glyph-name="map-marker-alt"
+      unicode="&#xF3C5;"
+      horiz-adv-x="384" d=" M192 352C139.065 352 96 308.935 96 256S139.065 160 192 160S288 203.065 288 256S244.935 352 192 352zM192 192C156.71 192 128 220.71 128 256S156.71 320 192 320S256 291.29 256 256S227.29 192 192 192zM192 448C85.961 448 0 362.039 0 256C0 178.587 26.97 156.969 172.268 -53.67C181.802 -67.442 202.197 -67.444 211.733 -53.67C357.03 156.969 384 178.587 384 256C384 362.039 298.039 448 192 448zM192 -25.931C52.705 175.512 32 191.506 32 256C32 298.738 48.643 338.9170000000001 78.863 369.137S149.262 416 192 416S274.9170000000001 399.357 305.137 369.137S352 298.738 352 256C352 191.51 331.308 175.53 192 -25.931z" />
+    <glyph glyph-name="map-marker-check"
+      unicode="&#xF606;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM281.34 313.54A7.98 7.98 0 0 1 275.68 315.88C273.63 315.88 271.58 315.1 270.0199999999999 313.54L162.54 206.06L113.97 254.63A7.98 7.98 0 0 1 108.31 256.9700000000001C106.26 256.9700000000001 104.21 256.19 102.65 254.63L91.34 243.32C88.22 240.2 88.22 235.13 91.34 232.01L156.88 166.47C158.44 164.91 160.49 164.13 162.54 164.13S166.63 164.91 168.19 166.47L292.64 290.92C295.76 294.04 295.76 299.11 292.64 302.23L281.34 313.54z" />
+    <glyph glyph-name="map-marker-edit"
+      unicode="&#xF607;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM256.02 342.65C243.52 355.12 223.27 355.12 210.77 342.65L116.68 248.56C114.68 246.54 113.24 244.05 112.52 241.29L96.52 180.04C95.08 174.54 96.64 168.7 100.68 164.68C103.71 161.63 107.8 159.99 111.99 159.99C113.33 159.99 114.71 160.16 116.02 160.5099999999999L177.27 176.5099999999999C180.02 177.23 182.55 178.6599999999999 184.55 180.68L278.64 274.77C291.11 287.24 291.11 307.55 278.64 320.02L256.02 342.65zM165 206.39L134.38 198.39L142.38 229L233.41 320.03L256.03 297.41L165 206.39z" />
+    <glyph glyph-name="map-marker-exclamation"
+      unicode="&#xF608;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM183.52 208H200.49A8 8 0 0 1 208.47 215.5L215.47 327.5C215.76 332.11 212.1 336 207.49 336H176.52C171.91 336 168.25 332.11 168.54 327.5L175.54 215.5C175.79 211.29 179.29 208 183.52 208zM192 184C178.75 184 168 173.26 168 160C168 146.75 178.75 136 192 136S216 146.75 216 160C216 173.26 205.25 184 192 184z" />
+    <glyph glyph-name="map-marker-minus"
+      unicode="&#xF609;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM280 272H104C99.58 272 96 268.42 96 264V248C96 243.58 99.58 240 104 240H280C284.42 240 288 243.58 288 248V264C288 268.42 284.42 272 280 272z" />
+    <glyph glyph-name="map-marker-plus"
+      unicode="&#xF60A;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM280 272H208V344C208 348.42 204.42 352 200 352H184C179.58 352 176 348.42 176 344V272H104C99.58 272 96 268.42 96 264V248C96 243.58 99.58 240 104 240H176V168C176 163.58 179.58 160 184 160H200C204.42 160 208 163.58 208 168V240H280C284.42 240 288 243.58 288 248V264C288 268.42 284.42 272 280 272z" />
+    <glyph glyph-name="map-marker-question"
+      unicode="&#xF60B;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26.01C172.34 2.16 154.92 26.84 139.52 48.68C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26.01zM192 152C178.74 152 168 141.26 168 128C168 114.75 178.74 104 192 104S216 114.75 216 128C216 141.26 205.26 152 192 152zM192.68 352C151.59 352 117.66 320.88 113.18 280.99C112.64 276.2200000000001 116.38 272 121.18 272H137.31C141.26 272 144.6 274.9 145.16 278.81C148.47 302.07 168.52 320 192.68 320C223.87 320 240.68 295.27 240.68 272C240.68 251.38 219.84 239.47 185.52 222.31A15.995999999999999 15.995999999999999 0 0 1 176.68 208V184C176.68 179.58 180.26 176 184.68 176H200.68C205.1 176 208.68 179.58 208.68 184V198.14C240.34 214.23 272.68 233.7 272.68 272C272.68 311.33 242.74 352 192.68 352z" />
+    <glyph glyph-name="map-marker-slash"
+      unicode="&#xF60C;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM320 416C408.2200000000001 416 480 344.2200000000001 480 256C480 221.33 475.29 201.91 445.19 154.53L470.51 134.59C503.87 186.75 512 212.76 512 256C512 361.6 425.6 448 320 448C258.28 448 203.27 418.35 168.08 372.73L193.44 352.76C222.71 390.94 268.29 416 320 416zM372.48 48.69C356.9600000000001 26.68 339.39 1.78 320.01 -26C300.34 2.17 282.92 26.85 267.52 48.69C170.64 186.03 160 202.89 160 256C160 256.28 160.08 256.54 160.08 256.82L129.78 280.68C128.73 272.5800000000001 128 264.38 128 256C128 179.2 153.6 156.8 300.8 -54.4C305.6 -60.7999999999999 312.8 -64 320 -64S334.4 -60.8 339.2 -54.4C369.97 -10.25 395.16 25.29 416.18 55.16L391 74.99C385.19 66.71 379.07 58.03 372.48 48.69z" />
+    <glyph glyph-name="map-marker-smile"
+      unicode="&#xF60D;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.78 192.01 -26zM256 264C269.25 264 280 274.75 280 288C280 301.26 269.25 312 256 312S232 301.26 232 288C232 274.75 242.75 264 256 264zM267.84 210.66C249.03 188.62 221.41 176 192 176S134.97 188.62 116.16 210.64C110.44 217.37 100.32 218.08 93.63 212.42C86.88 206.67 86.1 196.58 91.85 189.86C116.72 160.72 153.22 144 192 144S267.28 160.72 292.16 189.88C297.91 196.6 297.1 206.71 290.38 212.44C283.72 218.16 273.59 217.38 267.84 210.66zM128 264C141.25 264 152 274.75 152 288C152 301.26 141.25 312 128 312S104 301.26 104 288C104 274.75 114.75 264 128 264z" />
+    <glyph glyph-name="map-marker-times"
+      unicode="&#xF60E;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192.01 -26C172.34 2.17 154.92 26.85 139.52 48.69C42.64 186.03 32 202.89 32 256C32 344.2200000000001 103.78 416 192 416S352 344.2200000000001 352 256C352 202.89 341.36 186.03 244.48 48.69C228.96 26.68 211.39 1.77 192.01 -26zM265.54 318.23L254.23 329.54C252.67 331.1 250.62 331.88 248.57 331.88S244.47 331.1 242.91 329.54L192 278.63L141.09 329.54C139.53 331.1 137.48 331.88 135.43 331.88S131.34 331.1 129.77 329.54L118.46 318.23C115.34 315.11 115.34 310.04 118.46 306.92L169.37 256L118.46 205.09C115.34 201.97 115.34 196.9 118.46 193.78L129.77 182.47C131.33 180.91 133.38 180.1300000000001 135.43 180.1300000000001S139.53 180.91 141.09 182.47L192 233.3700000000001L242.91 182.46C244.47 180.9 246.52 180.1200000000001 248.57 180.1200000000001S252.66 180.9 254.23 182.46L265.54 193.7700000000001C268.66 196.8900000000001 268.66 201.96 265.54 205.0800000000001L214.63 256L265.54 306.91A8.015 8.015 0 0 1 265.54 318.23z" />
+    <glyph glyph-name="map-marker"
+      unicode="&#xF041;"
+      horiz-adv-x="384" d=" M192 448C85.961 448 0 362.039 0 256C0 178.587 26.97 156.969 172.268 -53.67C181.802 -67.442 202.197 -67.444 211.733 -53.67C357.03 156.969 384 178.587 384 256C384 362.039 298.039 448 192 448zM192 -25.931C52.705 175.512 32 191.506 32 256C32 298.738 48.643 338.9170000000001 78.863 369.137S149.262 416 192 416S274.9170000000001 399.357 305.137 369.137S352 298.738 352 256C352 191.51 331.308 175.53 192 -25.931z" />
+    <glyph glyph-name="map-pin"
+      unicode="&#xF276;"
+      horiz-adv-x="288" d=" M144 448C64.47 448 0 383.53 0 304C0 229.95 56.1 169.67 128 161.61V-44.82L139.01 -61.33C141.39 -64.89 146.62 -64.89 148.99 -61.33L160 -44.82V161.61C231.9 169.66 288 229.95 288 304C288 383.53 223.53 448 144 448zM144 192C82.24 192 32 242.24 32 304S82.24 416 144 416S256 365.76 256 304S205.76 192 144 192zM144 384C99.88 384 64 348.11 64 304C64 295.16 71.16 288 80 288S96 295.16 96 304C96 330.4700000000001 117.53 352 144 352C152.84 352 160 359.16 160 368S152.84 384 144 384z" />
+    <glyph glyph-name="map-signs"
+      unicode="&#xF277;"
+      horiz-adv-x="512" d=" M441.37 256C449.86 256 457.99 260.2100000000001 464 267.7200000000001L507.31 321.86C513.56 329.67 513.56 342.33 507.31 350.15L464 404.29C458 411.79 449.86 416 441.37 416H272V440C272 444.42 268.42 448 264 448H248C243.58 448 240 444.42 240 440V416H56C42.75 416 32 402.57 32 386V286C32 269.43 42.75 256 56 256H240V224H70.63C62.14 224 54 219.79 48 212.29L4.69 158.14C-1.56 150.33 -1.56 137.67 4.69 129.85L48 75.72C54 68.22 62.14 64 70.63 64H240V-56C240 -60.42 243.58 -64 248 -64H264C268.42 -64 272 -60.42 272 -56V64H456C469.25 64 480 77.43 480 94V194C480 210.57 469.25 224 456 224H272V256H441.37zM447.75 96H72.75L34.35 144L72.8 192H447.99L447.75 96zM64.25 384H439.25L477.65 336L439.2 288H64.01L64.25 384z" />
+    <glyph glyph-name="map"
+      unicode="&#xF279;"
+      horiz-adv-x="576" d=" M560.02 416C558.06 416 556.04 415.63 554.06 414.8400000000001L384.01 352H384L212 412.7200000000001A64.252 64.252 0 0 1 191.76 416C185.07 416 178.39 414.95 171.95 412.86L20.12 360.05A32.006 32.006 0 0 1 0 330.3400000000001V-15.98C0 -25.17 7.53 -32 15.99 -32C17.95 -32 19.96 -31.63 21.95 -30.84L192 32L364 -28.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -28.86L555.88 23.95A31.996 31.996 0 0 1 576 53.66V399.98C576 409.17 568.47 416 560.02 416zM30.63 329.82L176 380.39V60.2L31.91 6.95L30.63 329.82zM208 60.29V380.2L368 323.7200000000001V3.8099999999999L208 60.29zM400 3.61V323.8L544.09 377.06L545.37 54.19L400 3.61z" />
+    <glyph glyph-name="marker"
+      unicode="&#xF5A1;"
+      horiz-adv-x="512" d=" M421.4 448C398.23 448 375.07 439.1600000000001 357.4 421.48L351.12 415.2L327.69 438.63C315.19 451.13 294.94 451.13 282.44 438.63L152.36 308.52C149.24 305.4 149.24 300.3300000000001 152.36 297.2100000000001L163.67 285.9C166.79 282.78 171.86 282.78 174.98 285.9L305.07 416L328.49 392.57L93.94 157.97A327.069 327.069 0 0 1 0.18 -37.12L0.15 -37.35C-1.45 -51.72 9.88 -64 23.94 -64C24.83 -64 25.72 -63.95 26.63 -63.85A326.972 326.972 0 0 1 221.93 29.95L485.4 293.4600000000001C542.54 350.62 501.35 448 421.4 448zM199.31 52.58C154.32 7.58 95.4 -21.83 33.24 -30.81C42.37 31.83 71.73 90.51 116.56 135.35L195.27 214.07L278.02 131.3L199.31 52.58zM462.77 316.09L300.64 153.93L217.89 236.7L380.02 398.86C391.07 409.91 405.77 416 421.4 416C453.72 416 479.92 389.8400000000001 479.92 357.4700000000001C479.91 341.8400000000001 473.83 327.14 462.77 316.0900000000001z" />
+    <glyph glyph-name="mars-double"
+      unicode="&#xF227;"
+      horiz-adv-x="512" d=" M288 240C288 274 276.2 305.2 256.5 329.9L320 393.4V348C320 341.4 325.4 336 332 336H340C346.6 336 352 341.4 352 348V436C352 442.6 346.6 448 340 448H252C245.4 448 240 442.6 240 436V428C240 421.4 245.4 416 252 416H297.4L233.9 352.5C209.2 372.2 178 384 144 384C64.5 384 0 319.5 0 240S64.5 96 144 96S288 160.5 288 240zM144 128C82.1 128 32 178 32 240C32 301.9 82 352 144 352C205.9 352 256 302 256 240C256 178.1 206 128 144 128zM512 276V188C512 181.4 506.6 176 500 176H492C485.4 176 480 181.4 480 188V233.4L416.5 169.9C436.2 145.2 448 114 448 80C448 0.5 383.5 -64 304 -64C229.6 -64 168.4 -7.6 160.8 64.8C171.5 65.8 182 67.8 192.4 70.8C197 13.3 245.1 -32 304 -32C366 -32 416 18.1 416 80C416 139 370.6 187 313.2 191.6C316.2 202 318.1 212.5 319.2 223.2C347.3 220.3 373 209.2 393.9 192.5L457.4 256H412C405.4 256 400 261.4000000000001 400 268V276C400 282.6 405.4 288 412 288H500C506.6 288 512 282.6 512 276z" />
+    <glyph glyph-name="mars-stroke-h"
+      unicode="&#xF22B;"
+      horiz-adv-x="480" d=" M474.9 200.5L412.7 262.7C408 267.4 400.4 267.4 395.7 262.7L390 257C385.3 252.3 385.3 244.7 390 240L422.1 207.9H352V251.9C352 258.5 346.6 263.9 340 263.9H332C325.4 263.9 320 258.5 320 251.9V207.9H287.1C283.6 239.3 269.9000000000001 269.7 245.8 293.7C189.6 349.9 98.4 349.9 42.2 293.7C-14 237.5 -14 146.3 42.2 90.1C98.4 33.9 189.6 33.9 245.8 90.1C269.8 114.1 283.6 144.6 287.1 175.9H320V131.9C320 125.3 325.4 119.9 332 119.9H340C346.6 119.9 352 125.3 352 131.9V175.9H422.2L390.1 143.8C385.4 139.1 385.4 131.5 390.1 126.8L395.8 121.1C400.5 116.4 408.1 116.4 412.8 121.1L474.9999999999999 183.3C479.6 188.2 479.6 195.8 474.8999999999999 200.5zM144 80C82.1 80 32 130 32 192C32 253.9 82 304 144 304C205.9 304 256 254 256 192C256 130.1 206 80 144 80z" />
+    <glyph glyph-name="mars-stroke-v"
+      unicode="&#xF22A;"
+      horiz-adv-x="288" d=" M245.8 213.8C221.8 237.8 191.3 251.6 160 255.1V288H204C210.6 288 216 293.4 216 300V308C216 314.6 210.6 320 204 320H160V390.2L192.1 358.1C196.8 353.4 204.4 353.4 209.1 358.1L214.8 363.8C219.5 368.5 219.5 376.1 214.8 380.8L152.5 442.9C147.8 447.6 140.2 447.6 135.5 442.9L73.3 380.7C68.6 376 68.6 368.4 73.3 363.7L79 358C83.7 353.3 91.3 353.3 96 358L128 390.2V320H84C77.4 320 72 314.6 72 308V300C72 293.4 77.4 288 84 288H128V255.1C96.6 251.6 66.2 237.9 42.2 213.8C-14 157.6 -14 66.4 42.2 10.2C98.4 -45.9999999999999 189.6 -45.9999999999999 245.8 10.2C302.1 66.4 302.1 157.6 245.8 213.8000000000001zM144 0C82.1 0 32 50 32 112C32 173.9 82 224 144 224C205.9 224 256 174 256 112C256 50.1 206 0 144 0z" />
+    <glyph glyph-name="mars-stroke"
+      unicode="&#xF229;"
+      horiz-adv-x="384" d=" M372 384H284C277.4 384 272 378.6 272 372V364C272 357.4 277.4 352 284 352H329.4L279.8 302.4L248.7 333.5C244 338.2 236.4 338.2 231.7 333.5L226 327.8C221.3 323.1 221.3 315.5 226 310.8L257.1 279.7000000000001L233.8 256.4C209.2 276.2 178 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 178 276.2 209.2 256.5 233.9L279.8 257.2000000000001L310.9000000000001 226.1C315.6 221.4 323.2000000000001 221.4 327.9000000000001 226.1L333.6 231.8C338.3 236.5 338.3 244.1 333.6 248.8L302.5 279.9L352.1 329.5V284C352.1 277.4 357.5 272 364.1 272H372.1C378.7000000000001 272 384.1 277.4 384.1 284V372C384 378.6 378.6 384 372 384zM144 32C82.1 32 32 82 32 144C32 205.9 82 256 144 256C205.9 256 256 206 256 144C256 82.1 206 32 144 32z" />
+    <glyph glyph-name="mars"
+      unicode="&#xF222;"
+      horiz-adv-x="384" d=" M372 384H284C277.4 384 272 378.6 272 372V364C272 357.4 277.4 352 284 352H329.4L233.9 256.5C209.2 276.2 178 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 178 276.2 209.2 256.5 233.9L352 329.4V284C352 277.4 357.4 272 364 272H372C378.6 272 384 277.4 384 284V372C384 378.6 378.6 384 372 384zM144 32C82.1 32 32 82 32 144C32 205.9 82 256 144 256C205.9 256 256 206 256 144C256 82.1 206 32 144 32z" />
+    <glyph glyph-name="mask"
+      unicode="&#xF6FA;"
+      horiz-adv-x="640" d=" M320.67 384C-121.93 384 -36.9 0 162.21 0C202.11 0 239.68 20.69 263.63 55.86L289.36 93.65C297.19 105.15 308.93 110.9 320.67 110.9C332.4100000000001 110.9 344.1600000000001 105.15 351.98 93.65L377.7100000000001 55.86C401.6600000000001 20.69 439.23 0 479.13 0C668.99 0 769.76 384 320.67 384zM479.13 34.91C449.52 34.91 421.21 50.52 403.41 76.67L377.68 114.46C364.12 134.3800000000001 343.3399999999999 145.8 320.68 145.8C298.01 145.8 277.24 134.38 263.68 114.46L237.95 76.67C220.15 50.52 191.84 34.91 162.22 34.91C84.32 34.91 32 107.46 32 175.23C32 206.27 42.25 251.2200000000001 91.07 289.1500000000001C141.55 328.37 220.94 349.0900000000001 320.67 349.0900000000001C420.73 349.0900000000001 500.02 328.8000000000001 549.98 290.4300000000001C597.93 253.59 608 209.38 608 178.79C608 110.74 555.08 34.91 479.13 34.91zM192 261.82C145.07 261.82 114.56 231.89 100.48 213.93C94.51 206.31 94.51 195.15 100.48 187.54C114.56 169.5800000000001 145.07 139.65 192 139.65S269.44 169.5800000000001 283.52 187.54C289.49 195.16 289.49 206.32 283.52 213.93C269.44 231.89 238.93 261.82 192 261.82zM192 174.55C165.17 174.55 145.46 188.35 133.18 200.73C145.46 213.11 165.18 226.9100000000001 192 226.9100000000001S238.54 213.11 250.82 200.73C238.54 188.35 218.83 174.55 192 174.55zM448 261.82C401.07 261.82 370.56 231.89 356.48 213.93C350.51 206.31 350.51 195.15 356.48 187.54C370.56 169.5800000000001 401.0700000000001 139.65 448 139.65S525.44 169.5800000000001 539.52 187.54C545.49 195.16 545.49 206.32 539.52 213.93C525.4399999999999 231.89 494.9299999999999 261.82 448 261.82zM448 174.55C421.17 174.55 401.46 188.35 389.18 200.73C401.46 213.11 421.18 226.9100000000001 448 226.9100000000001C474.83 226.9100000000001 494.54 213.11 506.82 200.73C494.54 188.35 474.83 174.55 448 174.55z" />
+    <glyph glyph-name="medal"
+      unicode="&#xF5A2;"
+      horiz-adv-x="576" d=" M332.37 172.59L312.62 212.64C303.18 231.45 272.7100000000001 231.5 263.3400000000001 212.56L243.6200000000001 172.59L199.56 166.15C189.12 164.65 180.62 157.48 177.34 147.45C174.09 137.43 176.75 126.62 184.31 119.28L216.22 88.19L208.66 44.27C204.75 21.53 228.9100000000001 4.77 248.5300000000001 15.3L288 36.03L327.44 15.3099999999999C346.79 5.18 371.31 21.1899999999999 367.35 44.2599999999999L359.79 88.18L391.7000000000001 119.2699999999999C399.2600000000001 126.6099999999999 401.9200000000001 137.43 398.6700000000001 147.44C395.3900000000001 157.4699999999999 386.8900000000001 164.63 376.4800000000001 166.1399999999999L332.3700000000001 172.5899999999999zM325.4100000000001 99.34L334.25 47.89L288 72.19L241.66 47.28L250.6 99.34L213.19 135.81L264.88 143.3399999999999L288 190.22L311.12 143.34L362.81 135.8100000000001L325.4100000000001 99.34zM559.97 448H402.12C390.88 448 380.46 442.1 374.68 432.46L288 288L201.32 432.46A31.997 31.997 0 0 1 173.88 448H16.03C3.08 448 -4.5 433.43 2.92 422.82L147.04 216.94C125.14 187.6 112 151.35 112 112C112 14.95 190.95 -64 288 -64S464 14.95 464 112C464 151.35 450.86 187.6 428.96 216.94L573.08 422.82C580.5 433.43 572.92 448 559.97 448zM46.76 416H173.88L252.81 284.45C220.86 277.94 192.16 262.61 169.03 241.32L46.76 416zM432 112C432 32.47 367.53 -32 288 -32S144 32.47 144 112S208.47 256 288 256S432 191.53 432 112zM406.9700000000001 241.32C383.8400000000001 262.61 355.1400000000001 277.94 323.1900000000001 284.45L402.12 416H529.24L406.9700000000001 241.32z" />
+    <glyph glyph-name="medkit"
+      unicode="&#xF0FA;"
+      horiz-adv-x="512" d=" M464 352H352V392C352 405.255 341.255 416 328 416H184C170.745 416 160 405.255 160 392V352H48C21.49 352 0 330.51 0 304V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V304C512 330.51 490.51 352 464 352zM192 384H320V352H192V384zM384 320V0H128V320H384zM32 16V304C32 312.822 39.178 320 48 320H96V0H48C39.178 0 32 7.178 32 16zM480 16C480 7.178 472.822 0 464 0H416V320H464C472.822 320 480 312.822 480 304V16zM352 176V144C352 137.373 346.627 132 340 132H284V76C284 69.373 278.627 64 272 64H240C233.373 64 228 69.373 228 76V132H172C165.373 132 160 137.373 160 144V176C160 182.627 165.373 188 172 188H228V244C228 250.627 233.373 256 240 256H272C278.627 256 284 250.627 284 244V188H340C346.627 188 352 182.627 352 176z" />
+    <glyph glyph-name="megaphone"
+      unicode="&#xF675;"
+      horiz-adv-x="576" d=" M568 416H552C547.58 416 544 412.42 544 408V388.67L32 268.2V280C32 284.42 28.42 288 24 288H8C3.58 288 0 284.42 0 280V104C0 99.58 3.58 96 8 96H24C28.42 96 32 99.58 32 104V115.8L162.58 85.08C161.02 78.28 160 71.28 160 64.0100000000001C160 10.9900000000001 202.98 -31.9899999999999 256 -31.9899999999999C301.13 -31.9899999999999 338.45 -0.6899999999999 348.64 41.3000000000001L544 -4.67V-24C544 -28.42 547.58 -32 552 -32H568C572.42 -32 576 -28.42 576 -24V408C576 412.42 572.42 416 568 416zM256 0C220.71 0 192 28.71 192 64C192 68.75 192.72 73.31 193.76 77.74L317.89 48.53C310.92 20.73 285.93 0 256 0zM32 148.67V235.33L544 355.8V28.2L32 148.67z" />
+    <glyph glyph-name="meh-blank"
+      unicode="&#xF5A4;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="meh-rolling-eyes"
+      unicode="&#xF5A5;"
+      horiz-adv-x="496" d=" M224 224C224 263.8 191.8 296 152 296S80 263.8 80 224S112.2 152 152 152S224 184.2 224 224zM152 184C129.9 184 112 201.9 112 224C112 237.6 119.3 249.1 129.7 256.3C128.7 253.7 128 251 128 248C128 234.7 138.7 224 152 224S176 234.7 176 248C176 250.9 175.3 253.7 174.3 256.3C184.7 249.1 192 237.6 192 224C192 201.9 174.1 184 152 184zM344 296C304.2 296 272 263.8 272 224S304.2 152 344 152S416 184.2 416 224S383.8 296 344 296zM344 184C321.9 184 304 201.9 304 224C304 237.6 311.3 249.1 321.7 256.3C320.7 253.7 320 251 320 248C320 234.7 330.7 224 344 224S368 234.7 368 248C368 250.9 367.3 253.7 366.3 256.3C376.7 249.1 384 237.6 384 224C384 201.9 366.1 184 344 184zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM312 80H184C175.2 80 168 72.8 168 64S175.2 48 184 48H312C320.8 48 328 55.2 328 64S320.8 80 312 80z" />
+    <glyph glyph-name="meh"
+      unicode="&#xF11A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM344 112H152C143.2 112 136 104.8 136 96S143.2 80 152 80H344C352.8 80 360 87.2 360 96S352.8 112 344 112z" />
+    <glyph glyph-name="memory"
+      unicode="&#xF538;"
+      horiz-adv-x="640" d=" M496 176H528V304H432V176H496zM464 272H496V208H464V272zM336 176H368V304H272V176H336zM304 272H336V208H304V272zM176 176H208V304H112V176H176zM144 272H176V208H144V272zM632 288H640V352C640 369.67 625.67 384 608 384H32C14.33 384 0 369.67 0 352V288H8C21.26 288 32 277.26 32 264C32 250.75 21.26 240 8 240H0V0H640V240H632C618.75 240 608 250.75 608 264C608 277.26 618.75 288 632 288zM608 32H528V48C528 56.84 520.84 64 512 64S496 56.84 496 48V32H400V48C400 56.84 392.84 64 384 64S368 56.84 368 48V32H272V48C272 56.84 264.84 64 256 64S240 56.84 240 48V32H144V48C144 56.84 136.84 64 128 64S112 56.84 112 48V32H32V96H608V32zM608 314.59C589.09 305.59 576 286.29 576 264S589.09 222.41 608 213.41V128H32V213.41C50.9 222.41 64 241.71 64 264S50.9 305.5900000000001 32 314.5900000000001V352H608V314.5900000000001z" />
+    <glyph glyph-name="menorah"
+      unicode="&#xF676;"
+      horiz-adv-x="640" d=" M608 448S576 401.67 576 384S590.33 352 608 352S640 366.33 640 384S608 448 608 448zM512 352C529.67 352 544 366.33 544 384S512 448 512 448S480 401.67 480 384S494.33 352 512 352zM416 352C433.67 352 448 366.33 448 384S416 448 416 448S384 401.67 384 384S398.33 352 416 352zM320 352C337.67 352 352 366.33 352 384S320 448 320 448S288 401.67 288 384S302.33 352 320 352zM224 352C241.67 352 256 366.33 256 384S224 448 224 448S192 401.67 192 384S206.33 352 224 352zM128 352C145.67 352 160 366.33 160 384S128 448 128 448S96 401.67 96 384S110.33 352 128 352zM64 384C64 401.67 32 448 32 448S0 401.67 0 384S14.33 352 32 352S64 366.33 64 384zM616 320H600C595.58 320 592 316.42 592 312V144C592 117.49 570.51 96 544 96H336V312C336 316.42 332.42 320 328 320H312C307.58 320 304 316.42 304 312V96H96C69.49 96 48 117.49 48 144V312C48 316.42 44.42 320 40 320H24C19.58 320 16 316.42 16 312V144C16 99.82 51.82 64 96 64H304V-32H104C99.58 -32 96 -35.58 96 -40V-56C96 -60.42 99.58 -64 104 -64H536C540.42 -64 544 -60.42 544 -56V-40C544 -35.58 540.42 -32 536 -32H336V64H544C588.18 64 624 99.82 624 144V312C624 316.42 620.42 320 616 320zM504 320C499.58 320 496 316.42 496 312V128H528V312C528 316.42 524.42 320 520 320H504zM120 320C115.58 320 112 316.42 112 312V128H144V312C144 316.42 140.42 320 136 320H120zM408 320C403.58 320 400 316.42 400 312V128H432V312C432 316.42 428.42 320 424 320H408zM216 320C211.58 320 208 316.42 208 312V128H240V312C240 316.42 236.42 320 232 320H216z" />
+    <glyph glyph-name="mercury"
+      unicode="&#xF223;"
+      horiz-adv-x="288" d=" M288 240C288 297 254.9 346.2 206.9 369.6C230.9 384.5 247.8 407.5 252.2 434.1C253.4 441.4 247.7 448 240.3 448H232.2C226.5000000000001 448 221.5 443.9 220.4 438.3C214.8 407.6 182.7 384 144 384S73.2 407.6 67.6 438.3C66.6 444 61.6 448 55.8 448H47.7C40.3 448 34.6 441.4 35.8 434.1C40.2 407.5 57.1 384.4 81.1 369.6C33.1 346.2 0 297 0 240C0 165.8 56.2 104.7 128.3 96.9C128.1 96 128 95.1 128 94.2V32H76C69.4 32 64 26.6 64 20V12C64 5.4 69.4 0 76 0H128V-52C128 -58.6 133.4 -64 140 -64H148C154.6 -64 160 -58.6 160 -52V0H212C218.6 0 224 5.4 224 12V20C224 26.6 218.6 32 212 32H160V94.2C160 95.1 159.9 96 159.7 96.9C231.8 104.7 288 165.8 288 240zM144 128C82.1 128 32 178 32 240C32 301.9 82 352 144 352C205.9 352 256 302 256 240C256 178.1 206 128 144 128z" />
+    <glyph glyph-name="meteor"
+      unicode="&#xF753;"
+      horiz-adv-x="512" d=" M223.9 111.9C215.1 111.9 207.9 104.7 207.9 95.9S215.1 79.9 223.9 79.9S239.9 87.1 239.9 95.9C239.9 104.8 232.8 111.9 223.9 111.9zM183.9 192C170.6 192 159.9 181.3 159.9 168S170.6 144 183.9 144S207.9 154.7 207.9 168C207.9 181.2 197.2 192 183.9 192zM504.8 440.8C498.4 447.2 489 449.6 480.3 447C448 437.2 371.4 413.4 312.9 388.1C312.1 391 311.2 393.6 310.5 396C307.8 404.9 301.3 412 292.8 415.6C284.2 419.2 274.6 418.8 266.4000000000001 414.4C223.2000000000001 391.9 116.4 333.2 58.1 274.9C-19.3 197.5 -19.3 71.4 58.1 -6C96.8 -44.7 147.7 -64.1 198.5 -64.1C249.4000000000001 -64.1 300.2000000000001 -44.7 339 -6C397.3 52.3 455.9 159.1 478.5 202.3C482.8 210.6 483.2 220.2 479.7 228.7C476.1 237.2 469 243.7 460.1 246.4C457.7 247.1 455.1 247.9 452.2 248.8C477.2 307 501.2 383.8 511 416.2000000000001C513.6 425 511.2 434.4000000000001 504.8 440.8zM415.5 245.5L407.6 228.6L425.6 223.4C435.3 220.6 444 218 450 217.2C428.2 175.3 371.4 71.8 316.3 16.7C251.4 -48.1999999999999 145.6 -48.3 80.7 16.7S15.8 187.4 80.7 252.3000000000001C135.8 307.4000000000001 239.3 364.2000000000001 279.9 386.5C281.9 379.9000000000001 284.5 371.2000000000001 287.3 361.5L292.5 343.5L309.3999999999999 351.4000000000001C360.7999999999999 375.5 435.7 399.7000000000001 476.0999999999999 412.1C463.7999999999999 371.7000000000001 439.3999999999999 296.5000000000001 415.4999999999999 245.5000000000001zM199.9 264C129.3 264 71.9 206.6 71.9 136S129.3 8 199.9 8S327.9 65.4 327.9 136C328 206.5 270.5 264 199.9 264zM199.9 39.9C147 39.9 103.9 83 103.9 135.9S147 231.9 199.9 231.9S295.9 188.8 295.9 135.9C296 83 252.9 39.9 199.9 39.9z" />
+    <glyph glyph-name="microchip"
+      unicode="&#xF2DB;"
+      horiz-adv-x="512" d=" M368 448H144C117.49 448 96 426.51 96 400V-16C96 -42.51 117.49 -64 144 -64H368C394.51 -64 416 -42.51 416 -16V400C416 426.51 394.51 448 368 448zM384 -16C384 -24.822 376.822 -32 368 -32H144C135.178 -32 128 -24.822 128 -16V400C128 408.822 135.178 416 144 416H368C376.822 416 384 408.822 384 400V-16zM512 342V330A6 6 0 0 0 506 324H488V318A6 6 0 0 0 482 312H440V360H482A6 6 0 0 0 488 354V348H506A6 6 0 0 0 512 342zM512 246V234A6 6 0 0 0 506 228H488V222A6 6 0 0 0 482 216H440V264H482A6 6 0 0 0 488 258V252H506A6 6 0 0 0 512 246zM512 150V138A6 6 0 0 0 506 132H488V126A6 6 0 0 0 482 120H440V168H482A6 6 0 0 0 488 162V156H506A6 6 0 0 0 512 150zM512 54V42A6 6 0 0 0 506 36H488V30A6 6 0 0 0 482 24H440V72H482A6 6 0 0 0 488 66V60H506A6 6 0 0 0 512 54zM30 72H72V24H30A6 6 0 0 0 24 30V36H6A6 6 0 0 0 0 42V54A6 6 0 0 0 6 60H24V66A6 6 0 0 0 30 72zM30 168H72V120H30A6 6 0 0 0 24 126V132H6A6 6 0 0 0 0 138V150A6 6 0 0 0 6 156H24V162A6 6 0 0 0 30 168zM30 264H72V216H30A6 6 0 0 0 24 222V228H6A6 6 0 0 0 0 234V246A6 6 0 0 0 6 252H24V258A6 6 0 0 0 30 264zM30 360H72V312H30A6 6 0 0 0 24 318V324H6A6 6 0 0 0 0 330V342A6 6 0 0 0 6 348H24V354A6 6 0 0 0 30 360z" />
+    <glyph glyph-name="microphone-alt-slash"
+      unicode="&#xF539;"
+      horiz-adv-x="640" d=" M480 192V248C480 252.42 476.42 256 472 256H456C451.58 256 448 252.42 448 248V192C448 179.67 445.69 167.99 442.42 156.71L469.45 135.42C476.16 153.03 480 172.05 480 192zM256 352C256 387.29 284.71 416 320 416S384 387.29 384 352H328C323.58 352 320 348.42 320 344V328C320 323.58 323.58 320 328 320H384V288H328C323.58 288 320 284.42 320 280V264C320 259.5800000000001 323.58 256 328 256H384V224H356.96L414.65 178.58C415.27 183 416 187.4 416 192V352C416 405.02 373.02 448 320 448S224 405.02 224 352V328.7L256 303.5V352zM320 96C332.56 96 344.48 98.57 355.48 102.96L323.26 128.33C322.16 128.27 321.12 128 320 128C288.7 128 262.68 150.63 257.18 180.37L224 206.49V192C224 138.98 266.98 96 320 96zM408 -32H336V33.01C363.2 35.73 388.1 45.73 409.5900000000001 60.35L383.1900000000001 81.14C362.1500000000001 69.1 337.5800000000001 62.54 311.2800000000001 64.29C243.3 68.82 192 128.39 192 196.51V231.69L163.5 254.14C161.5 252.68 160 250.66 160 248V197.66C160 114.27 221.64 41.54 304 33.23V-32H232C227.58 -32 224 -35.58 224 -40V-56C224 -60.42 227.58 -64 232 -64H408C412.42 -64 416 -60.42 416 -56V-40C416 -35.58 412.42 -32 408 -32zM637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25z" />
+    <glyph glyph-name="microphone-alt"
+      unicode="&#xF3C9;"
+      horiz-adv-x="320" d=" M160 96C213.02 96 256 138.98 256 192V352C256 405.02 213.02 448 160 448S64 405.02 64 352V192C64 138.98 106.98 96 160 96zM96 352C96 387.29 124.71 416 160 416S224 387.29 224 352H168C163.58 352 160 348.42 160 344V328C160 323.58 163.58 320 168 320H224V288H168C163.58 288 160 284.42 160 280V264C160 259.5800000000001 163.58 256 168 256H224V224H168C163.58 224 160 220.42 160 216V200C160 195.58 163.58 192 168 192H224C224 156.71 195.29 128 160 128S96 156.71 96 192V352zM312 256H296C291.58 256 288 252.42 288 248V192C288 118.54 225.8 59.32 151.27 64.29C83.3 68.82 32 128.39 32 196.51V248C32 252.42 28.42 256 24 256H8C3.58 256 0 252.42 0 248V197.66C0 114.27 61.64 41.54 144 33.23V-32H72C67.58 -32 64 -35.58 64 -40V-56C64 -60.42 67.58 -64 72 -64H248C252.42 -64 256 -60.42 256 -56V-40C256 -35.58 252.42 -32 248 -32H176V33.01C256.71 41.1 320 109.2 320 192V248C320 252.42 316.42 256 312 256z" />
+    <glyph glyph-name="microphone-slash"
+      unicode="&#xF131;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM480 192V248C480 252.42 476.42 256 472 256H456C451.58 256 448 252.42 448 248V192C448 179.67 445.69 167.99 442.42 156.71L469.45 135.42C476.16 153.03 480 172.05 480 192zM256 352C256 387.29 284.71 416 320 416S384 387.29 384 352V202.71L414.65 178.58C415.27 183 416 187.4 416 192V352C416 405.02 373.02 448 320 448S224 405.02 224 352V328.7L256 303.5V352zM320 96C332.56 96 344.48 98.57 355.48 102.96L323.26 128.33C322.16 128.27 321.12 128 320 128C288.7 128 262.68 150.63 257.18 180.37L224 206.49V192C224 138.98 266.98 96 320 96zM408 -32H336V33.01C363.2 35.73 388.1 45.72 409.5900000000001 60.35L383.1900000000001 81.14C362.1500000000001 69.1 337.5800000000001 62.54 311.2800000000001 64.29C243.3 68.82 192 128.39 192 196.51V231.69L163.5 254.14C161.5 252.68 160 250.66 160 248V197.66C160 114.27 221.65 41.54 304 33.23V-32H232C227.58 -32 224 -35.58 224 -40V-56C224 -60.42 227.58 -64 232 -64H408C412.42 -64 416 -60.42 416 -56V-40C416 -35.58 412.42 -32 408 -32z" />
+    <glyph glyph-name="microphone"
+      unicode="&#xF130;"
+      horiz-adv-x="320" d=" M160 96C213.02 96 256 138.98 256 192V352C256 405.02 213.02 448 160 448S64 405.02 64 352V192C64 138.98 106.98 96 160 96zM96 352C96 387.29 124.71 416 160 416S224 387.29 224 352V192C224 156.71 195.29 128 160 128S96 156.71 96 192V352zM312 256H296C291.58 256 288 252.42 288 248V192C288 118.54 225.8 59.32 151.27 64.29C83.3 68.82 32 128.39 32 196.51V248C32 252.42 28.42 256 24 256H8C3.58 256 0 252.42 0 248V197.66C0 114.27 61.65 41.54 144 33.23V-32H72C67.58 -32 64 -35.58 64 -40V-56C64 -60.42 67.58 -64 72 -64H248C252.42 -64 256 -60.42 256 -56V-40C256 -35.58 252.42 -32 248 -32H176V33.01C256.71 41.1 320 109.2 320 192V248C320 252.42 316.42 256 312 256z" />
+    <glyph glyph-name="microscope"
+      unicode="&#xF610;"
+      horiz-adv-x="512" d=" M456 32H415.01C454.22 61.19 480 107.48 480 160C480 248.22 408.2200000000001 320 320 320V384C320 401.67 305.67 416 288 416V432C288 440.84 280.84 448 272 448H176C167.16 448 160 440.84 160 432V416C142.33 416 128 401.67 128 384V160C128 142.33 142.33 128 160 128V80C160 71.16 167.16 64 176 64H272C280.84 64 288 71.16 288 80V128C305.67 128 320 142.33 320 160V288C390.5900000000001 288 448 230.58 448 160S390.5900000000001 32 320 32H56C25.12 32 0 6.88 0 -24C0 -46.06 17.94 -64 40 -64H472C494.06 -64 512 -46.06 512 -24C512 6.88 486.88 32 456 32zM256 96H192V128H256V96zM288 160H160V384H192V416H256V384H288V160zM472 -32H40C35.58 -32 32 -28.42 32 -24C32 -10.74 42.75 0 56 0H456C469.25 0 480 -10.74 480 -24C480 -28.42 476.42 -32 472 -32z" />
+    <glyph glyph-name="mind-share"
+      unicode="&#xF677;"
+      horiz-adv-x="640" d=" M288.06 175.41V242.5600000000001C299.02 233.5800000000001 312.13 227.1100000000001 326.56 224.17C331.55 223.15 336.24 226.99 336.24 232.06V248.24C336.24 251.81 333.88 255.02 330.4100000000001 255.9C306.12 262.06 288.06 283.85 288.06 309.94V372C288.06 396.27 307.88 416 332.2200000000001 416C362.9600000000001 416 372.0800000000001 393.48 377.98 370.53L390.7100000000001 370.8H391.1200000000001C417.0000000000001 370.8 436.6000000000001 351.14 436.6000000000001 327C436.6000000000001 320.8 434.9000000000001 315.0800000000001 432.4000000000001 304.19C454.7600000000001 295.05 473.2200000000001 283.51 479.3800000000001 261.31C482.1300000000001 262.98 484.6000000000001 265.02 487.6400000000001 266.28A60.73 60.73 0 0 0 498.7200000000001 269.68C502.4500000000001 270.49 506.2300000000001 270.88 510.0500000000001 271.01C501.6000000000001 297.1 481.8200000000001 315.37 468.5900000000001 323.0300000000001C471.2600000000001 360.6900000000001 442.7300000000001 397.35 401.9100000000001 402.42C389.96 429.77 362.8 448 332.2200000000001 448C307.63 448 285.96 436.15 272 418.1C258.04 436.15 236.37 448 211.78 448C181.2 448 154.04 429.77 142.08 402.42C101.26 397.35 72.73 360.69 75.4 323.03C54.42 310.87 16.84 272.18 34.34 217.72C12.89 200.58 0 174.56 0 147C0 114.27 17.41 84.62 45.26 68.47C42.98 20.29 81.95 -20.22 130.2 -18.98C144.44 -46.36 172.79 -63.9999999999999 204.25 -63.9999999999999C223.4 -63.9999999999999 240.74 -57.16 254.82 -46.3099999999999C248.55 -37.61 243 -28.4499999999999 238.59 -18.6999999999999C229.44 -26.8699999999999 217.48 -31.9999999999999 204.25 -31.9999999999999C172.36 -31.9999999999999 160.02 -10.1899999999999 151.15 16.2C134.86 13.46 132.86 13.0000000000001 128.97 13.0000000000001C100.46 13.0000000000001 77.28 36.1100000000001 77.28 64.5000000000001C77.28 70.71 78.14 73.64 80.95 87.47C55.51 97.97 32.11 111.68 32.11 147C32.11 180.86 55.12 193.95 75.02 205.34C62.42 231.05 62.22 234.54 62.22 244.5C62.22 278.41 84.12 292.9600000000001 111.59 304.19C109.08 315.0900000000001 107.39 320.8 107.39 327C107.39 351.14 126.99 370.8 152.87 370.8H153.28L166.01 370.53C171.92 393.48 181.04 416 211.78 416C236.12 416 255.94 396.27 255.94 372V309.93C255.94 283.8400000000001 237.88 262.05 213.59 255.89C210.12 255.01 207.76 251.8 207.76 248.23V232.05C207.76 226.98 212.45 223.14 217.44 224.16C231.87 227.1 244.98 233.57 255.94 242.55V143.5800000000001C265.05 155.6800000000001 275.9700000000001 166.29 288.06 175.41zM630.28 134.75L534.25 229.95C525.03 239.14 511.84 241.68 499.94 236.73C487.82 231.68 480 219.76 480 206.37V175.18H382.76C376.67 175.24 370.79 175.15 364.7 174.23C310.94 166.36 267.18 123.66 257.97 70.29C257.93 70.05 257.83 69.83 257.79 69.58C249.38 19.28 271.04 -31.28 312.98 -59.22C317.79 -62.42 323.2 -64.02 328.54 -64.02C347.22 -64.02 361.17 -45.15 354.82 -26.41C350.51 -13.66 349.88 13.21 362.26 30.48C370.32 41.7 382.64 47.17 399.95 47.17H480V16C480 2.61 487.81 -9.31 499.94 -14.36C511.82 -19.33 525 -16.74 534.25 -7.58L630.28 87.61C636.53 93.84 640 102.1999999999999 640 111.16S636.56 128.5 630.28 134.75zM512 16V79.19H399.95C365.14 79.19 346.11 62.85 336.26 49.14C319.29 25.47 317.98 -5.27 321.76 -25.81C296.23 -4.01 283.64 30.21 289.35 64.33C296.04 104.49 328.9100000000001 136.66 369.35 142.58C373.7800000000001 143.25 378.0800000000001 143.19 384.04 143.19H512L511.72 207.24L607.7 112.07L512 16z" />
+    <glyph glyph-name="minus-circle"
+      unicode="&#xF056;"
+      horiz-adv-x="512" d=" M140 174C133.4 174 128 179.4 128 186V198C128 204.6 133.4 210 140 210H372C378.6 210 384 204.6 384 198V186C384 179.4 378.6 174 372 174H140zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM472 192C472 311.9 374.7 408 256 408C136.1 408 40 310.7 40 192C40 72.1 137.3 -24 256 -24C375.9 -24 472 73.3 472 192z" />
+    <glyph glyph-name="minus-hexagon"
+      unicode="&#xF307;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM525.8 183.9L413.8 -8.1C410.9 -13 405.6 -16 400 -16H176C170.3 -16 165 -13 162.2 -8.1L50.2 183.9C47.3 188.9 47.3 195.1 50.2 200L162.2 392C165 397 170.3 400 176 400H400C405.7 400 411 397 413.8 392.1L525.8 200.1C528.6999999999999 195.1 528.6999999999999 188.9 525.8 183.9zM172 174C165.4 174 160 179.4 160 186V198C160 204.6 165.4 210 172 210H404C410.6 210 416 204.6 416 198V186C416 179.4 410.6 174 404 174H172z" />
+    <glyph glyph-name="minus-octagon"
+      unicode="&#xF308;"
+      horiz-adv-x="512" d=" M361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512.1 276.2 507 288.4 498 297.4L361.5 433.9zM480 120.5C480 116.2 478.3 112.2 475.3 109.2L338.9 -27.3C335.9 -30.3 331.9 -32 327.6 -32H184.5C180.2 -32 176.2 -30.3 173.2 -27.3L36.7 109.1C33.7 112.1 32 116.1 32 120.4V263.5C32 267.8 33.7 271.8 36.7 274.8L173.1 411.3C176.1 414.3 180.1 416 184.4 416H327.5C331.8 416 335.8 414.3 338.8 411.3L475.3 274.8C478.3 271.8 480 267.8 480 263.5V120.5zM140 174C133.4 174 128 179.4 128 186V198C128 204.6 133.4 210 140 210H372C378.6 210 384 204.6 384 198V186C384 179.4 378.6 174 372 174H140z" />
+    <glyph glyph-name="minus-square"
+      unicode="&#xF146;"
+      horiz-adv-x="448" d=" M400 384C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM340 174C346.6 174 352 179.4 352 186V198C352 204.6 346.6 210 340 210H108C101.4 210 96 204.6 96 198V186C96 179.4 101.4 174 108 174H340z" />
+    <glyph glyph-name="minus"
+      unicode="&#xF068;"
+      horiz-adv-x="384" d=" M376 216H8C3.58 216 0 212.42 0 208V176C0 171.58 3.58 168 8 168H376C380.42 168 384 171.58 384 176V208C384 212.42 380.42 216 376 216z" />
+    <glyph glyph-name="mistletoe"
+      unicode="&#xF7B4;"
+      horiz-adv-x="576" d=" M542.1 250.6C513.1 279.6 437.7000000000001 291.9 398.2000000000001 296.4L304 390.6V440C304 444.4 300.4 448 296 448H280C275.6 448 272 444.4 272 440V390.6L177.8 296.4C138.3 291.8 62.9 279.5 33.9 250.6C-6.1 210.6 -11.5 151.2000000000001 21.8 117.9C36.5 103.2 56.3 96 77.2 96C103.8 96 132.2 107.5 154.6 129.9C169.5 144.8 179.9 171.9 187.2 200.1C192.8 195.2 199.9 192 208 192C225.7 192 240.0000000000001 206.3 240.0000000000001 224S225.7 256 208 256C204.4 256 201.1 255 197.8000000000001 253.9C198.9 261.2 199.7000000000001 267.8 200.4 273.8L272 345.4V174.9C244.7 144.5 192 80.4 192 38.5C192 -18.1 235 -63.9 288 -63.9S384 -18.1 384 38.5C384 80.4 331.3 144.5 304 174.9V345.4L375.6 273.8C380.2000000000001 234.3 392.5 158.9 421.4000000000001 129.9C443.8 107.5 472.2 96 498.8000000000001 96C519.7 96 539.5000000000001 103.2 554.2 117.8C587.5 151.2 582.1 210.6 542.1 250.6zM132 152.5C116.4 136.9 96.4 128 77.2 128C68 128 54.8 130.2 44.5 140.5C24 160.9 29.6 201 56.5 228C73 244.5 122.7 256.7 166.9 263C160.8 218.8 148.6 169.1 132 152.5zM352 38.4C352 -0.4 323.3 -32 288 -32S224 -0.4 224 38.4C224 61.9 256.9 108.8 288 144.8C319.1 108.8 352 61.9999999999999 352 38.4zM531.5 140.5C521.2 130.2 508 128 498.8 128C479.6 128 459.6 136.9 444 152.5C427.5 169 415.3 218.7 409 262.9C453.2 256.7000000000001 502.8 244.5 519.4 227.9C546.4 201 552 160.9 531.5 140.5zM384 384C401.7 384 416 398.3 416 416S401.7 448 384 448S352 433.7 352 416S366.3 384 384 384z" />
+    <glyph glyph-name="mitten"
+      unicode="&#xF7B5;"
+      horiz-adv-x="448" d=" M420.9 250.4C407.4 261.8 390.3 268 372.7 268C350.8 268 330.2 258.5 315.8 241.9L295.4000000000001 330.9C279.7 399.9 219.8 448 149.8 448C138.5 448 127.1 446.7 116 444.1C35.6 425.4 -14.7 344.1 3.8 263L48.4 68C48.8 66.1 49.5 64.3 50 62.4C40.6 59.3 32 50.6 32 40V-40C32 -53.3 42.7 -64 55.8 -64H358.9000000000001C372.0000000000001 -64 384.1 -53.3 384.1 -40V40C384.1 51.4 374.7000000000001 60.4 364.2000000000001 62.9L430.6 143.3C457.2 175.5 452.8 223.5 420.9000000000001 250.4zM352 -32H64V32H352V-32zM406.2 163.8L323.7 64H82.9C81.7 67.7 80.2 71.4 79.3 75.3L34.7 270.3C20.1 334.2 59.7 398.2 123.1 413C131.9 415 140.8 416.1 149.7 416.1C204.9 416.1 252.1 378.2 264.5 323.8L292 203.4L299.2 172L319.7 196.8L339.1 220.3C347.4 230.4 359.6 236.1 372.6 236.1C382.8 236.1 392.6 232.5000000000001 400.5 225.9000000000001C419.1 210.3000000000001 421.6 182.5000000000001 406.2 163.8z" />
+    <glyph glyph-name="mobile-alt"
+      unicode="&#xF3CD;"
+      horiz-adv-x="320" d=" M192 32C192 14.3 177.7 0 160 0S128 14.3 128 32S142.3 64 160 64S192 49.7 192 32zM224 352H96V112H224V352M244 384C250.6 384 256 378.6 256 372V92C256 85.4 250.6 80 244 80H76C69.4 80 64 85.4 64 92V372C64 378.6 69.4 384 76 384H244zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM288 400C288 408.8 280.8 416 272 416H48C39.2 416 32 408.8 32 400V-16C32 -24.8 39.2 -32 48 -32H272C280.8 -32 288 -24.8 288 -16V400z" />
+    <glyph glyph-name="mobile-android-alt"
+      unicode="&#xF3CF;"
+      horiz-adv-x="320" d=" M224 352V112H96V352H224M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM48 -32C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H272C280.8 416 288 408.8 288 400V-16C288 -24.8 280.8 -32 272 -32H48zM244 384H76C69.4 384 64 378.6 64 372V92C64 85.4 69.4 80 76 80H244C250.6 80 256 85.4 256 92V372C256 378.6 250.6 384 244 384zM196 32H124C117.4 32 112 26.6 112 20V12C112 5.4 117.4 0 124 0H196C202.6 0 208 5.4 208 12V20C208 26.6 202.6 32 196 32z" />
+    <glyph glyph-name="mobile-android"
+      unicode="&#xF3CE;"
+      horiz-adv-x="320" d=" M196 0H124C117.4 0 112 5.4 112 12V20C112 26.6 117.4 32 124 32H196C202.6 32 208 26.6 208 20V12C208 5.4 202.6 0 196 0zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM288 400C288 408.8 280.8 416 272 416H48C39.2 416 32 408.8 32 400V-16C32 -24.8 39.2 -32 48 -32H272C280.8 -32 288 -24.8 288 -16V400z" />
+    <glyph glyph-name="mobile"
+      unicode="&#xF10B;"
+      horiz-adv-x="320" d=" M192 32C192 14.3 177.7 0 160 0S128 14.3 128 32S142.3 64 160 64S192 49.7 192 32zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM288 400C288 408.8 280.8 416 272 416H48C39.2 416 32 408.8 32 400V-16C32 -24.8 39.2 -32 48 -32H272C280.8 -32 288 -24.8 288 -16V400z" />
+    <glyph glyph-name="money-bill-alt"
+      unicode="&#xF3D1;"
+      horiz-adv-x="640" d=" M608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM32 352H96C96 316.7 67.28 288 32 288V352zM608 128C555.06 128 512 84.94 512 32H544C544 67.3 572.72 96 608 96V32H32V96C67.28 96 96 67.3 96 32H128C128 84.94 84.94 128 32 128V256C84.94 256 128 299.06 128 352H512C512 299.06 555.06 256 608 256V128zM608 288C572.72 288 544 316.7 544 352H608V288zM320 320C258.14 320 208 262.7 208 192C208 121.32 258.14 64 320 64C381.83 64 432 121.29 432 192C432 262.7 381.86 320 320 320zM320 96C275.89 96 240 139.07 240 192C240 244.94 275.89 288 320 288S400 244.94 400 192C400 139.07 364.11 96 320 96zM352 160H336V248C336 252.42 332.42 256 328 256H314.42C309.68 256 305.05 254.6 301.11 251.97L285.7800000000001 241.75A7.993999999999999 7.993999999999999 0 0 1 283.56 230.66L292.44 217.35A7.993999999999999 7.993999999999999 0 0 1 303.53 215.13L304 215.44V160H288C283.58 160 280 156.42 280 152V136C280 131.58 283.58 128 288 128H352C356.42 128 360 131.58 360 136V152C360 156.42 356.42 160 352 160z" />
+    <glyph glyph-name="money-bill-wave-alt"
+      unicode="&#xF53B;"
+      horiz-adv-x="640" d=" M320 304C266.98 304 224 253.86 224 192C224 130.15 266.98 80 320 80C373 80 416 130.13 416 192C416 253.86 373.02 304 320 304zM320 112C284.71 112 256 147.89 256 192S284.71 272 320 272S384 236.11 384 192S355.29 112 320 112zM621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C70.34 353.66 46.9 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5800000000001 30.35 504.75 30.35C569.66 30.35 593.09 15 607.75 15C624.96 15 640 28.32 640 46.81V364.07C640 376.71 632.77 388.67 621.16 393.54zM598.4699999999999 49.54C581.5299999999999 54.33 553.1899999999999 62.34 504.7499999999999 62.34C439.1799999999999 62.34 374.5999999999999 46.0000000000001 312.1499999999999 30.1900000000001C250.7999999999999 14.6600000000001 192.8499999999999 -0.0099999999999 135.2499999999999 -0.0099999999999C97.2899999999999 -0.0099999999999 63.2599999999999 6.52 31.9999999999999 19.9200000000001L31.5099999999999 337.0200000000001C33.0599999999999 336.8400000000001 37.7599999999999 335.5100000000001 41.5299999999999 334.4500000000001C58.4599999999999 329.6600000000001 86.8099999999999 321.6500000000001 135.2399999999999 321.6500000000001C200.8099999999998 321.6500000000001 265.3799999999998 338.0000000000001 327.8299999999998 353.8000000000001C389.2 369.3400000000001 447.15 384 504.75 384C542.72 384 576.75 377.46 608 364.07L608.49 46.97C606.94 47.15 602.24 48.48 598.47 49.54z" />
+    <glyph glyph-name="money-bill-wave"
+      unicode="&#xF53A;"
+      horiz-adv-x="640" d=" M320 304C266.98 304 224 253.86 224 192C224 130.15 266.98 80 320 80C373 80 416 130.13 416 192C416 253.86 373.02 304 320 304zM320 112C284.71 112 256 147.89 256 192S284.71 272 320 272S384 236.11 384 192S355.29 112 320 112zM621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C70.34 353.66 46.9 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5800000000001 30.35 504.75 30.35C569.66 30.35 593.09 15 607.75 15C624.96 15 640 28.32 640 46.81V364.07C640 376.71 632.77 388.67 621.16 393.54zM32.9499999999999 336.74C53.1699999999999 330.32 73.9799999999999 326.2100000000001 95.6199999999999 323.85C93.6499999999999 290.44 66.3899999999999 263.81 32.7299999999999 263.42L32.9499999999999 336.74zM32 19.93L32.13 62.47C65.71 62.4 93.01 36.16 95.51 3.04C73.06 6.08 51.88 11.49 32 19.93zM607.05 47.26C586.89 53.66 566.15 57.77 544.5799999999999 60.13C547.4699999999999 92.63 574.27 118.27 607.27 118.65L607.05 47.26zM607.3599999999999 150.8C557.3599999999999 150.46 516.7699999999999 111.48 512.7799999999999 62.2000000000001C442.0499999999999 63.6300000000001 375.5999999999999 46.3800000000001 312.1799999999999 30.33C237.1099999999999 11.33 185.6399999999998 -0.8799999999999 127.7699999999999 0.46C126.5399999999998 52.48 84.2899999999999 94.47 32.2199999999998 94.59L32.6299999999998 231.26C83.2799999999998 231.6 124.3499999999999 271.5800000000001 127.4099999999999 321.7800000000001C197.9399999999998 320.37 264.4299999999999 337.61 327.8099999999999 353.6500000000001C402.6 372.5900000000001 454.3 384.87 512.03 383.54C512.2099999999999 330.61 555.04 287.6 607.77 287.4700000000001L607.36 150.8000000000001zM607.8699999999999 319.6C573.6299999999999 319.67 545.8299999999999 346.9400000000001 544.2899999999998 380.98C566.8199999999998 377.9500000000001 588.0699999999998 372.5300000000001 607.9999999999999 364.0700000000001L607.8699999999999 319.6z" />
+    <glyph glyph-name="money-bill"
+      unicode="&#xF0D6;"
+      horiz-adv-x="640" d=" M608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM32 352H96C96 316.7 67.28 288 32 288V352zM608 128C555.06 128 512 84.94 512 32H544C544 67.3 572.72 96 608 96V32H32V96C67.28 96 96 67.3 96 32H128C128 84.94 84.94 128 32 128V256C84.94 256 128 299.06 128 352H512C512 299.06 555.06 256 608 256V128zM608 288C572.72 288 544 316.7 544 352H608V288zM320 304C266.98 304 224 253.86 224 192C224 130.15 266.98 80 320 80C373 80 416 130.13 416 192C416 253.86 373.02 304 320 304zM320 112C284.71 112 256 147.89 256 192S284.71 272 320 272S384 236.11 384 192S355.29 112 320 112z" />
+    <glyph glyph-name="money-check-alt"
+      unicode="&#xF53D;"
+      horiz-adv-x="640" d=" M608 416H32C14.33 416 0 401.67 0 384V0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V384C640 401.67 625.67 416 608 416zM608 0H32V384H608V0zM296 128H376C380.42 128 384 131.58 384 136V152C384 156.42 380.42 160 376 160H296C291.58 160 288 156.42 288 152V136C288 131.58 291.58 128 296 128zM536 160H456C451.58 160 448 156.42 448 152V136C448 131.58 451.58 128 456 128H536C540.42 128 544 131.58 544 136V152C544 156.42 540.42 160 536 160zM296 224H536C540.42 224 544 227.58 544 232V248C544 252.42 540.42 256 536 256H296C291.58 256 288 252.42 288 248V232C288 227.58 291.58 224 296 224zM134.72 190.28L176.91 178.84C181.1 177.7 184 174.29 184 170.54C184 165.74 179.5 161.84 173.94 161.84H147.6C143.45 161.84 139.37 162.88 135.83 164.79C132.75 166.46 128.99 166.16 126.59 163.61L114.52 150.88C111.41 147.6 111.92 142.24 115.65 139.69C123.95 134.04 133.71 130.81 144 130.17V120C144 115.58 147.58 112 152 112H168C172.42 112 176 115.58 176 120V130.25C198.18 131.35 216 148.82 216 170.55C216 188.72 203.38 204.83 185.28 209.72L143.09 221.16C138.9 222.3 136 225.7100000000001 136 229.4600000000001C136 234.2600000000001 140.5 238.1600000000001 146.06 238.1600000000001H172.4C176.55 238.1600000000001 180.63 237.1200000000001 184.17 235.2100000000001C187.25 233.5500000000001 191.01 233.8400000000001 193.41 236.3900000000001L205.48 249.1200000000001C208.59 252.4000000000001 208.08 257.7600000000001 204.35 260.3100000000001C196.05 265.9600000000001 186.29 269.1900000000001 176 269.8300000000001V280C176 284.42 172.42 288 168 288H152C147.58 288 144 284.42 144 280V269.75C121.82 268.65 104 251.18 104 229.45C104 211.28 116.62 195.17 134.72 190.28z" />
+    <glyph glyph-name="money-check"
+      unicode="&#xF53C;"
+      horiz-adv-x="640" d=" M624 416H16C7.16 416 0 408.8400000000001 0 400V0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V400C640 408.8400000000001 632.84 416 624 416zM608 0H32V288H608V0zM608 320H32V384H608V320zM104 64H248C252.42 64 256 67.58 256 72V88C256 92.42 252.42 96 248 96H104C99.58 96 96 92.42 96 88V72C96 67.58 99.58 64 104 64zM392 64H536C540.42 64 544 67.58 544 72V88C544 92.42 540.42 96 536 96H392C387.58 96 384 92.42 384 88V72C384 67.58 387.58 64 392 64zM104 160H312C316.42 160 320 163.58 320 168V184C320 188.42 316.42 192 312 192H104C99.58 192 96 188.42 96 184V168C96 163.58 99.58 160 104 160zM400 160H528C536.84 160 544 167.16 544 176V240C544 248.84 536.84 256 528 256H400C391.1600000000001 256 384 248.84 384 240V176C384 167.16 391.1600000000001 160 400 160zM416 224H512V192H416V224z" />
+    <glyph glyph-name="monitor-heart-rate"
+      unicode="&#xF611;"
+      horiz-adv-x="576" d=" M544 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H544C561.67 -64 576 -49.67 576 -32V416C576 433.67 561.67 448 544 448zM544 -32H32V176H166.12L209.68 88.84C212.4 83.39 217.96 80.0000000000001 223.99 80.0000000000001C224.37 80.0000000000001 224.74 80.02 225.11 80.0500000000001C231.58 80.5000000000001 237.11 84.8000000000001 239.17 90.9400000000001L288 237.41L304.81 186.96C306.99 180.42 313.11 176.01 320 176.01H472C476.42 176.01 480 179.59 480 184.01V200.01C480 204.43 476.42 208.01 472 208.01H331.53L303.19 293.07C298.81 306.13 277.19 306.13 272.81 293.07L221.03 137.7L190.31 199.15A15.995999999999999 15.995999999999999 0 0 1 176 207.99H32V416H544V-32z" />
+    <glyph glyph-name="monkey"
+      unicode="&#xF6FB;"
+      horiz-adv-x="640" d=" M576 256C611.35 256 640 284.65 640 320C640 361.85 604.63 384 576 384H570.12C556.9 421.2 521.74 448 480 448S403.1 421.2 389.88 384H384C355.78 384 320 362.07 320 320C320 284.65 348.65 256 384 256H389.88C391.02 252.8 192 229.12 192 32V0C192 -11.71 195.39 -22.55 200.9 -32H176C149.53 -32 128 -10.47 128 16V256C128 291.3 99.28 320 64 320S0 291.3 0 256V208C0 199.16 7.16 192 16 192S32 199.16 32 208V256C32 273.64 46.34 288 64 288S96 273.64 96 256V16C96 -28.11 131.88 -64 176 -64H416C433.67 -64 448 -49.67 448 -32C448 -5.5 431.81 17.3 408.79 27L481.27 81.79L512 -10.36V-32C512 -49.67 526.33 -64 544 -64H576C593.67 -64 608 -49.67 608 -32V-5.2C608 3.42 606.62 11.95 603.89 20.13L538.47 212.34C552.87 223.49 563.9100000000001 238.5 570.12 255.99H576zM576 352C590.22 352 608 340.95 608 320C608 302.36 593.64 288 576 288V352zM384 288C366.36 288 352 302.36 352 320C352 340.8400000000001 369.57 352 384 352V288zM573.53 10.02C575.16 5.12 576 -0.02 576 -5.19V-32H544V-5.17L497.54 134.2L320 0H384C401.6600000000001 0 416 -14.36 416 -32H256C238.33 -32 224 -17.67 224 0V32C224 135.74 306.3400000000001 220.04 409.2 223.66C426.76 204.34 451.84 192 480 192C490.48 192 500.38 194.1 509.82 197.2L573.53 10.02zM544 288C544 252.71 515.29 224 480 224S416 252.71 416 288V352C416 387.29 444.71 416 480 416S544 387.29 544 352V288zM448 352C439.1600000000001 352 432 344.8400000000001 432 336S439.1600000000001 320 448 320S464 327.16 464 336S456.84 352 448 352zM512 352C503.16 352 496 344.8400000000001 496 336S503.16 320 512 320S528 327.16 528 336S520.84 352 512 352z" />
+    <glyph glyph-name="monument"
+      unicode="&#xF5A6;"
+      horiz-adv-x="384" d=" M368 32H320L289.14 347.26A31.97 31.97 0 0 1 279.93 366.7L203.31 443.31C200.19 446.44 196.09 448 192 448S183.81 446.44 180.69 443.31L104.08 366.7A31.97 31.97 0 0 1 94.87 347.26L64 32H16C7.16 32 0 24.84 0 16V-48C0 -56.84 7.16 -64 16 -64H368C376.84 -64 384 -56.84 384 -48V16C384 24.84 376.84 32 368 32zM126.71 344.08L192.01 409.38L257.3 344.15L287.85 32H96.15L126.71 344.08zM352 -32H32V0H352V-32zM232 192H152C147.6 192 144 188.4 144 184V168C144 163.6 147.6 160 152 160H232C236.4 160 240 163.6 240 168V184C240 188.4 236.4 192 232 192z" />
+    <glyph glyph-name="moon-cloud"
+      unicode="&#xF754;"
+      horiz-adv-x="576" d=" M320 147.2C320 192.6 283.4 229.6 238.2 230.4C222.1 264.5 187.4 288 148 288C106.3 288 70.4 262.8 55.5 225.5C23 214.1 0 183.4 0 147.2C0 101.3 37.3 64 83.2 64H236.8C282.7 64 320 101.3 320 147.2zM236.8 96H83.2C54.9 96 32 118.9 32 147.2C32 174.7 53.8 197 81 198.2C85.9 230.9 113.9 256 148 256C183.8 256 212.8 228.2 215.5 193.1C222 196.2 229.1 198.4 236.8 198.4C265.1 198.4 288 175.5 288 147.2S265.1 96 236.8 96zM573.6 96.8C569.5 105.4 561.2 110.7 551.8000000000001 110.7C550.3000000000001 110.7 548.8000000000001 110.6 547.2 110.3C539.5 108.8 531.7 108.1 524 108.1C457 108.1 402.5 162.8 402.5 230.0000000000001C402.5 273.7000000000001 426.1 314.3 464.1 336C473 341.1 477.7 351 476 361.1C474.3 371.3 466.6 379 456.5 380.9000000000001C445 383 433.2 384.1 421.5 384.1C344.9 384.1 278.8 338.8 248.1 273.6C251.6 269.5 254.9 265.1 257.9 260.6C263.8 259.5 269.5 257.8 275 255.8C299.7 312.2 356 352 421.5 352C424.5 352 427.4 351.9 430.4 351.8C393 322.9 370.5 277.9 370.5 229.9C370.5 145 439.4 76 524 76C526.6 76 529.2 76.1 531.8 76.2C502.2 47.9 463 32 421.5 32C383.1 32 348.3 46.2 320.7 68.9C313.1 60.8 304.4 54 294.8 48.3C328.6 18.4 372.9 0.1 421.5 0.1C479.6 0.1 533.9 25.9999999999999 570.5 71.1999999999999C576.5 78.3999999999999 577.7 88.3 573.6 96.8z" />
+    <glyph glyph-name="moon-stars"
+      unicode="&#xF755;"
+      horiz-adv-x="512" d=" M333.9 21.8C333.3 21.8 332.7 21.7 332.1 21.6C322.5 19.8 312.9 18.9 303.5 18.9C222.1999999999999 18.9 153.5 85 153.5 169.3000000000001C153.5 223.5000000000001 182.5 273.3000000000001 229.6 300.1000000000001C236.9 304.2000000000001 235 315.2000000000001 226.8 316.8000000000001C215.1999999999999 318.9000000000001 203.4999999999999 320.0000000000001 191.7999999999999 320.0000000000001C85.9 320 0 234.1 0 128C0 22 85.8 -64 191.8 -64C251 -64 305 -37.1 340.8 7.1C345.7 13.1 341.1 21.8 333.9000000000001 21.8zM191.8 -32C103.7 -32 32 39.8 32 128C32 206.5 88.8 272 163.4 285.5C136.8 253.3 121.6 212.3 121.6 169.3C121.6 79.5 186.7 4.6 272.1 -10.4C248.1 -24.4 220.5 -32 191.8 -32zM503.2 254.3L454.6 278.6L430.3 327.2000000000001C424.9 338 407.1 338 401.7 327.2000000000001L377.3999999999999 278.6L328.7999999999999 254.3C323.3999999999999 251.6 319.9999999999999 246.1 319.9999999999999 240S323.3999999999999 228.4 328.7999999999999 225.7L377.3999999999999 201.4L401.7 152.8C404.3999999999999 147.4 409.8999999999999 144 416 144S427.6 147.3999999999999 430.3 152.8L454.6 201.4L503.2 225.7C508.6 228.4 512 233.9 512 240S508.6 251.6 503.2 254.3zM435.5 227.6C432.4 226.1 429.9 223.5 428.3 220.4L416 195.8L403.7 220.5C402.1 223.6 399.6 226.1 396.5 227.7L371.8 240L396.5 252.4C399.6 253.9 402.1 256.5 403.7 259.6L416 284.3L428.3 259.6C429.9000000000001 256.5 432.4000000000001 254 435.5 252.4L460.2 240L435.5 227.6zM304 352L320 384L352 400L320 416L304 448L288 416L256 400L288 384L304 352z" />
+    <glyph glyph-name="moon"
+      unicode="&#xF186;"
+      horiz-adv-x="512" d=" M448.964 82.383C348.188 63.191 255.14 140.235 255.14 242.581C255.14 301.474 286.701 355.413 337.714 384.443C363.544 399.143 357.0470000000001 438.302 327.699 443.723A258.114 258.114 0 0 1 280.947 448C139.613 448 24.947 333.454 24.947 192C24.947 50.666 139.494 -64 280.947 -64C359.878 -64 432.026 -28.076 479.797 30.783C498.643 54.003 478.091 87.932 448.9640000000001 82.383zM280.947 -32C157.235 -32 56.947 68.288 56.947 192S157.235 416 280.947 416C294.931 416 308.612 414.706 321.887 412.255C262.915 378.695 223.14 315.286 223.14 242.581C223.14 119.975 334.753 28.058 454.95 50.949C413.881 0.347 351.1960000000001 -32 280.947 -32z" />
+    <glyph glyph-name="mortar-pestle"
+      unicode="&#xF5A7;"
+      horiz-adv-x="512" d=" M504 256H390.63L497.36 362.73C521.47 386.8400000000001 514.87 427.48 484.38 442.73A49.95700000000001 49.95700000000001 0 0 1 462.05 448C451.43 448 440.89 444.62 432.07 438.01L189.39 256H8C3.58 256 0 252.42 0 248V232C0 227.58 3.58 224 8 224H32V192C32 110.58 82.76 41.17 154.29 13.25C141.53 -3.53 132.59 -23.38 129.37 -45.19C127.92 -55.02 135.35 -64 145.29 -64H366.71C376.65 -64 384.08 -55.03 382.63 -45.19C379.42 -23.38 370.48 -3.52 357.71 13.25C429.24 41.17 480 110.58 480 192V224H504C508.42 224 512 227.58 512 232V248C512 252.42 508.42 256 504 256zM451.26 412.41C468.84 425.59 490.47 401.1 474.73 385.36L345.38 256H242.72L451.26 412.41zM448 192C448 125.69 407.99 67.23 346.08 43.06L306.57 27.64L332.25 -6.12C338.33 -14.12 343.12 -22.87 346.44 -32H165.57C168.89 -22.87 173.67 -14.12 179.76 -6.12L205.44 27.64L165.93 43.06C104.01 67.23 64 125.69 64 192V224H448V192z" />
+    <glyph glyph-name="mosque"
+      unicode="&#xF678;"
+      horiz-adv-x="640" d=" M240 64C210.47 64 192 38.94 192 14.11V-56C192 -60.42 195.58 -64 200 -64H216C220.42 -64 224 -60.42 224 -56V16C224 24.83 231.19 32 240 32S256 24.83 256 16V-56C256 -60.42 259.58 -64 264 -64H280C284.42 -64 288 -60.42 288 -56V16C288 42.47 266.4700000000001 64 240 64zM592 192H585.83C589.6 200.64 592 209.59 592 218.91C592 272.8400000000001 548.48 314.37 501.26 343.57C459.48 369.41 426.39 395.99 384 448C341.75 396.15 309.39 369.95 266.74 343.57C219.52 314.37 176 272.84 176 218.91C176 209.59 178.4 200.64 182.17 192H176C170.36 192 165.03 190.85 160 189.05V328C160 408 80 448 80 448S0 408 0 328V-64H32V256H128V-56C128 -60.42 131.58 -64 136 -64H152C156.42 -64 160 -60.42 160 -56V144C160 152.84 167.16 160 176 160H592C600.84 160 608 152.84 608 144V-56C608 -60.42 611.58 -64 616 -64H632C636.42 -64 640 -60.42 640 -56V144C640 170.51 618.51 192 592 192zM128 288H32V328C32 368.6 61.55 396.62 80 410.15C98.45 396.62 128 368.6 128 328V288zM549.0699999999999 192H218.93C211.67 201.22 208 210.24 208 218.91C208 251.94 232.56 284.18 281 314.75C321.99 340.61 355.89 368.2 384 398.61C412.11 368.2 446.02 340.61 487 314.75C535.44 284.19 560 251.94 560 218.91C560 210.24 556.33 201.22 549.07 192zM384 128C322.98 97.49 320 51.8 320 38.11V-56C320 -60.42 323.58 -64 328 -64H344C348.42 -64 352 -60.42 352 -56V38.11C352 65.3 372.69 83.44 384 91.33C395.31 83.4400000000001 416 65.3000000000001 416 38.11V-56C416 -60.42 419.58 -64 424 -64H440C444.42 -64 448 -60.42 448 -56V38.11C448 51.82 445.02 97.49 384 128zM528 64C498.47 64 480 38.94 480 14.11V-56C480 -60.42 483.58 -64 488 -64H504C508.42 -64 512 -60.42 512 -56V16C512 24.83 519.19 32 528 32S544 24.83 544 16V-56C544 -60.42 547.58 -64 552 -64H568C572.42 -64 576 -60.42 576 -56V16C576 42.47 554.47 64 528 64z" />
+    <glyph glyph-name="motorcycle"
+      unicode="&#xF21C;"
+      horiz-adv-x="640" d=" M512.238 256C494.2950000000001 256.033 477.2130000000001 252.369 461.7040000000001 245.734L435.799 288H520C533.255 288 544 298.745 544 312V360C544 373.255 533.255 384 520 384H460A24.002000000000002 24.002000000000002 0 0 1 440.8 374.4L408.9070000000001 331.876L381.6420000000001 376.361A16.005 16.005 0 0 1 368 384H292C285.373 384 280 378.627 280 372V364C280 357.373 285.373 352 292 352H359.04L398.266 288H217.584C200.905 307.064 175.79 320 128 320H80.452C71.836 320 64.423 313.379 64.019 304.773C63.586 295.584 70.907 288 80 288H128C152.268 288 168.146 279.761 179.566 268.049L169.202 249.206A127.70000000000002 127.70000000000002 0 0 1 129.479 255.992C58.709 256.798 0.272 199.276 0.001 128.501C-0.27 57.578 57.141 0 128 0C187.641 0 237.745 40.795 251.956 96H336.7320000000001C346.1160000000001 96 353.5130000000001 104.057 352.668 113.438C347.545 170.228 372.855 224.243 417.299 256.949L434.09 229.554C403.461 206.021 383.776 168.95 384.004 127.287C384.384 57.649 441.198 0.627 510.8339999999999 0.006C581.414 -0.623 638.9459999999999 55.877 639.987 126.063C641.039 197.075 583.2579999999999 255.871 512.2379999999999 256zM462 356H516V316H432L462 356zM128 32C75.065 32 32 75.065 32 128S75.065 224 128 224A95.68699999999998 95.68699999999998 0 0 0 153.45 220.564L97.98 119.711C92.126 109.067 99.838 96 112 96H218.499C205.291 58.753 169.718 32 128 32zM320 128H139.061L209.46 256H368.927C337.778 221.135 320 175.638 320 128zM508.206 32.074C458.384 34.004 418.007 74.379 416.074 124.201C414.86 155.495 428.716 183.668 450.953 202.037L508.449 108.229C511.912 102.578 519.301 100.8050000000001 524.951 104.2690000000001L531.772 108.4500000000001C537.422 111.9130000000001 539.195 119.3010000000001 535.7320000000001 124.9520000000001L478.6810000000001 218.0350000000001A95.57 95.57 0 0 0 512 224C564.935 224 608 180.935 608 128C608 73.806 562.861 29.957 508.206 32.074z" />
+    <glyph glyph-name="mountain"
+      unicode="&#xF6FC;"
+      horiz-adv-x="640" d=" M634.92 -14.7L346.92 433.3C341.03 442.46 330.89 448 320 448S298.9700000000001 442.46 293.08 433.3L5.08 -14.7A32.001 32.001 0 0 1 3.91 -47.34A32.004 32.004 0 0 1 32 -64H608C619.71 -64 630.48 -57.61 636.09 -47.33A31.982999999999997 31.982999999999997 0 0 1 634.9200000000001 -14.7zM320 416L422.86 256H313.38L256 198.62L209.86 244.67L320 416zM32 -32L192.19 217.19L256 153.38L326.62 224H443.42L608 -32H32z" />
+    <glyph glyph-name="mountains"
+      unicode="&#xF6FD;"
+      horiz-adv-x="640" d=" M635.73 41.09L441.6900000000001 338.69C435.9 347.56 425.95 352 416 352C406.05 352 396.1 347.56 390.31 338.69L338.31 258.93L267.52 369.48C261.32 379.16 250.66 384 240 384S218.68 379.16 212.48 369.48L4.58 44.82C-7.99 25.19 6.81 0 30.92 0H611.14C633.64 0 647.46 23.09 635.73 41.09zM33.71 30.98L239.03 351.83C239.11 351.87 239.47 352 240 352L240.57 352.2200000000001L445.63 32L33.71 30.98zM479.65 32C479.26 36.33 478.07 40.7 475.4299999999999 44.82L357.24 229.38L416 319.49L603.45 32H479.65z" />
+    <glyph glyph-name="mouse-pointer"
+      unicode="&#xF245;"
+      horiz-adv-x="320" d=" M154.149 -40.438L112.234 61.427L65.446 8.627C42.432 -17.345 0 -0.788 0 34.5V409.439C0 444.153 41.401 461.114 64.794 436.029L309.5470000000001 173.59C332.2440000000001 149.255 315.6210000000001 108.5 282.3520000000001 108.5H216.6420000000001L259.451 4.463C267.6 -15.344 258.416 -38.0480000000001 238.9770000000001 -46.147L202.977 -61.148C183.941 -69.076 162.1690000000001 -59.931 154.149 -40.438zM122.309 121.044L183.744 -28.263C184.926 -31.14 187.861 -32.781 190.67 -31.61L226.669 -16.61C229.783 -15.312 231.273 -11.155 229.857 -7.714L168.872 140.5H282.351C287.36 140.5 289.971 147.66 286.144 151.766L41.392 414.205C37.785 418.068 32 415.121 32 409.439V34.5C32 28.725 37.935 25.83 41.497 29.85L122.309 121.0440000000001z" />
+    <glyph glyph-name="mug-hot"
+      unicode="&#xF7B6;"
+      horiz-adv-x="512" d=" M416 255.9H32C14.3 255.9 0 241.6 0 223.9V32C0 -21 43 -64 96 -64H288C341 -64 384 -21 384 32V64H416C468.9 64 512 107 512 160S468.9 255.9 416 255.9zM352 32C352 -3.3 323.3 -32 288 -32H96C60.7 -32 32 -3.3 32 32V223.9H352V32zM416 96H384V224H416C451.3 224 480 195.3 480 160S451.3 96 416 96zM191.3 369.5C208.6 352.3 221.7 328.8 223.5 296.1C223.7 291.8 227.2 288.3 231.5 288.3H247.5C252 288.3 255.7 292 255.5 296.5C253.4 338.6 236.2 369.8 213.9 392C195.5 410.7 192.8 430.2 192 440.9C191.7 445 188.1 448 184 448L168 447.9C163.3 447.9 159.8 443.9 160.1 439.2C161 424.3 165.3 395.6 191.3 369.5zM95.7 369.5C113 352.3 126.1 328.8 127.9 296.1C128.1 291.8 131.6 288.3 135.9 288.3H151.9C156.4 288.3 160.1 292 159.9 296.5C157.8000000000001 338.6 140.6 369.8 118.3000000000001 392C100 410.7 97.3 430.2 96.5 440.9C96.2 445 92.6 448 88.4 448L72.4 447.9C67.7 447.9 64.2 443.9 64.5 439.2C65.5 424.3 69.7 395.6 95.7 369.5z" />
+    <glyph glyph-name="mug-marshmallows"
+      unicode="&#xF7B7;"
+      horiz-adv-x="512" d=" M416 288H352C364.5 300.5 364.5 320.8 352 333.3L278.6 406.7C272.4000000000001 412.9 264.2000000000001 416.1 256 416.1S239.6 413 233.4 406.7L206.7 380C202.2 382.4 197.4 384 192 384H64C46.3 384 32 369.7 32 352V288C14.3 288 0 273.7 0 256V64C0 11 43 -32 96 -32H288C341 -32 384 11 384 64V96H416C468.9 96 512 139.1 512 192S468.9 288 416 288zM256 384L329.4 310.6L306.7 288H205.3L182.7 310.6L256 384zM64 352H178.7L160 333.3C147.5 320.8 147.5 300.5 160 288H64V352zM352 64C352 28.7 323.3 0 288 0H96C60.7 0 32 28.7 32 64V256H96V176C96 167.2 103.2 160 112 160S128 167.2 128 176V256H352V64zM416 128H384V256H416C451.3 256 480 227.3 480 192S451.3 128 416 128z" />
+    <glyph glyph-name="music"
+      unicode="&#xF001;"
+      horiz-adv-x="512" d=" M512 415.99C512 434.26 497.68 448 481.45 448C478.41 448 475.3 447.52 472.2 446.49L181.42 350.49C168.71 346.29 160 334 160 320V75.24C142.99 88.01 120.7 96 96 96C42.98 96 0 60.18 0 16S42.98 -64 96 -64S192 -28.18 192 16V192L480 288V139.24C462.99 152.01 440.7 160 416 160C362.98 160 320 124.18 320 80S362.98 0 416 0S512 35.82 512 80C512 80.03 511.99 80.05 511.99 80.08L512 415.99zM96 -32C61.31 -32 32 -10.02 32 16S61.31 64 96 64S160 42.02 160 16S130.69 -32 96 -32zM480 321.73L192 225.73V320H191.45V320.11L480 415.37V321.73zM416 32C381.31 32 352 53.98 352 80S381.31 128 416 128S480 106.02 480 80S450.69 32 416 32z" />
+    <glyph glyph-name="narwhal"
+      unicode="&#xF6FE;"
+      horiz-adv-x="640" d=" M594.39 223.56L639.29 415.4600000000001C642.01 426.9600000000001 636.6999999999999 438.9600000000001 626.29 444.7100000000001C620.0999999999999 448.08 612.91 448.93 606.0999999999999 446.93C599.3199999999999 444.95 593.6899999999999 440.45 590.3499999999999 434.31L491.1599999999999 254.62C296.64 240.28 223.11 32 179.87 32C168.91 32 160 40.92 160 51.88V160L207.37 184.9C217.76 190.83 223.99 200.83 223.99 211.52V303.97C223.99 313.38 214.98 320 205.27 320C201.8 320 198.24 319.15 194.97 317.29L112 269.87L29.02 317.29C25.75 319.1600000000001 22.19 320 18.72 320C9.01 320 0 313.39 0 303.9700000000001V211.52C0 200.82 6.24 190.83 16.62 184.9L64 160V51.88C64 -12.12 115.88 -63.99 179.87 -63.99H560C604.18 -63.99 640 -28.17 640 16.01V127.46C640 166.57 621.32 200.32 594.39 223.56zM599.04 383.82L565.93 242.45C553.6999999999999 248.51 540.8199999999999 252.51 527.56 254.35L599.04 383.82zM608 16C608 -10.47 586.47 -32 560 -32H179.87C133.63 -32 96 5.63 96 51.87V179.33L32 213.17V278.73L112 233.02L192 278.73V212.97L128 179.33V51.87C128 23.27 151.27 0 179.87 0C209.67 0 229.82 25.95 260.32 65.23C309.4100000000001 128.45 383.6 224 512 224C557.41 224 608 184.35 608 127.46V16zM432 96C423.1600000000001 96 416 88.84 416 80S423.1600000000001 64 432 64S448 71.16 448 80S440.84 96 432 96z" />
+    <glyph glyph-name="network-wired"
+      unicode="&#xF6FF;"
+      horiz-adv-x="640" d=" M632 208H336V288H416C433.67 288 448 302.3300000000001 448 320V416C448 433.67 433.67 448 416 448H224C206.33 448 192 433.67 192 416V320C192 302.33 206.33 288 224 288H304V208H8C3.58 208 0 204.42 0 200V184C0 179.58 3.58 176 8 176H128V96H64C46.33 96 32 81.67 32 64V-32C32 -49.67 46.33 -64 64 -64H224C241.67 -64 256 -49.67 256 -32V64C256 81.67 241.67 96 224 96H160V176H480V96H416C398.33 96 384 81.67 384 64V-32C384 -49.67 398.33 -64 416 -64H576C593.67 -64 608 -49.67 608 -32V64C608 81.67 593.67 96 576 96H512V176H632C636.42 176 640 179.58 640 184V200C640 204.42 636.42 208 632 208zM224 64V-32H64V64H224zM224 320V416H416V320H224zM576 64V-32H416V64H576z" />
+    <glyph glyph-name="neuter"
+      unicode="&#xF22C;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 197.9 56 136.8 128 128.9V-20C128 -26.6 133.4 -32 140 -32H148C154.6 -32 160 -26.6 160 -20V128.9C232 136.8 288 197.9 288 272zM144 160C82.1 160 32 210 32 272C32 333.9 82 384 144 384C205.9 384 256 334 256 272C256 210.1 206 160 144 160z" />
+    <glyph glyph-name="newspaper"
+      unicode="&#xF1EA;"
+      horiz-adv-x="576" d=" M552 384H88C74.766 384 64 373.233 64 360V352H24C10.745 352 0 341.255 0 328V48C0 21.49 21.49 0 48 0H552C565.233 0 576 10.767 576 24V360C576 373.233 565.233 384 552 384zM32 48V320H64V48C64 39.178 56.822 32 48 32S32 39.178 32 48zM544 32H93.258A47.897 47.897 0 0 1 96 48V352H544V32zM140 128H308C314.627 128 320 133.373 320 140V308C320 314.627 314.627 320 308 320H140C133.373 320 128 314.627 128 308V140C128 133.373 133.373 128 140 128zM160 288H288V160H160V288zM128 76V84C128 90.627 133.373 96 140 96H308C314.627 96 320 90.627 320 84V76C320 69.373 314.627 64 308 64H140C133.373 64 128 69.373 128 76zM352 76V84C352 90.627 357.373 96 364 96H500C506.627 96 512 90.627 512 84V76C512 69.373 506.627 64 500 64H364C357.373 64 352 69.373 352 76zM352 140V148C352 154.627 357.373 160 364 160H500C506.627 160 512 154.627 512 148V140C512 133.373 506.627 128 500 128H364C357.373 128 352 133.373 352 140zM352 268V276C352 282.627 357.373 288 364 288H500C506.627 288 512 282.627 512 276V268C512 261.373 506.627 256 500 256H364C357.373 256 352 261.373 352 268zM352 204V212C352 218.627 357.373 224 364 224H500C506.627 224 512 218.627 512 212V204C512 197.373 506.627 192 500 192H364C357.373 192 352 197.373 352 204z" />
+    <glyph glyph-name="not-equal"
+      unicode="&#xF53E;"
+      horiz-adv-x="384" d=" M376 288H321.94L360.5 326.56L381.6600000000001 347.7200000000001C384.7800000000001 350.8400000000001 384.7800000000001 355.91 381.6600000000001 359.03L359.0300000000001 381.66C355.9100000000001 384.78 350.8400000000001 384.78 347.7200000000001 381.66L254.06 288H8C3.58 288 0 284.42 0 280V248C0 243.58 3.58 240 8 240H206.06L110.06 144H8C3.58 144 0 140.42 0 136V104C0 99.58 3.58 96 8 96H62.06L2.34 36.29C-0.78 33.17 -0.78 28.1 2.34 24.98L24.97 2.35C28.09 -0.77 33.16 -0.77 36.28 2.35L129.94 96H376C380.42 96 384 99.58 384 104V136C384 140.42 380.42 144 376 144H177.94L273.94 240H376C380.42 240 384 243.58 384 248V280C384 284.42 380.42 288 376 288z" />
+    <glyph glyph-name="notes-medical"
+      unicode="&#xF481;"
+      horiz-adv-x="384" d=" M336 384H247.4C247.8 386.6 248 389.3 248 392C248 422.9 222.9 448 192 448S136 422.9 136 392C136 389.3 136.2 386.6 136.6 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 416C205.3 416 216 405.3 216 392S205.3 368 192 368S168 378.7 168 392S178.7 416 192 416zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V336C32 344.8 39.2 352 48 352H96V332C96 325.4 101.4 320 108 320H276C282.6 320 288 325.4 288 332V352H336C344.8 352 352 344.8 352 336V-16zM280 160H224V216C224 220.4 220.4 224 216 224H168C163.6 224 160 220.4 160 216V160H104C99.6 160 96 156.4 96 152V104C96 99.6 99.6 96 104 96H160V40C160 35.6 163.6 32 168 32H216C220.4 32 224 35.6 224 40V96H280C284.4 96 288 99.6 288 104V152C288 156.4 284.4 160 280 160z" />
+    <glyph glyph-name="object-group"
+      unicode="&#xF247;"
+      horiz-adv-x="512" d=" M404 256H320V308C320 314.627 314.627 320 308 320H108C101.373 320 96 314.627 96 308V140C96 133.373 101.373 128 108 128H192V76C192 69.373 197.373 64 204 64H404C410.627 64 416 69.373 416 76V244C416 250.627 410.627 256 404 256zM128 288H288V160H128V288zM384 96H224V128H308C314.627 128 320 133.373 320 140V224H384V96zM500 320C506.627 320 512 325.373 512 332V404C512 410.627 506.627 416 500 416H428C421.373 416 416 410.627 416 404V384H96V404C96 410.627 90.627 416 84 416H12C5.373 416 0 410.627 0 404V332C0 325.373 5.373 320 12 320H32V64H12C5.373 64 0 58.627 0 52V-20C0 -26.627 5.373 -32 12 -32H84C90.627 -32 96 -26.627 96 -20V0H416V-20C416 -26.627 421.373 -32 428 -32H500C506.627 -32 512 -26.627 512 -20V52C512 58.627 506.627 64 500 64H480V320H500zM448 64H428C421.373 64 416 58.627 416 52V32H96V52C96 58.627 90.627 64 84 64H64V320H84C90.627 320 96 325.373 96 332V352H416V332C416 325.373 421.373 320 428 320H448V64zM64 384V352H32V384H64M480 384V352H448V384H480M64 32V0H32V32H64M480 32V0H448V32H480" />
+    <glyph glyph-name="object-ungroup"
+      unicode="&#xF248;"
+      horiz-adv-x="576" d=" M564 224C570.627 224 576 229.373 576 236V308C576 314.627 570.627 320 564 320H492C485.373 320 480 314.627 480 308V288H384V320H404C410.627 320 416 325.373 416 332V404C416 410.627 410.627 416 404 416H332C325.373 416 320 410.627 320 404V384H96V404C96 410.627 90.627 416 84 416H12C5.373 416 0 410.627 0 404V332C0 325.373 5.373 320 12 320H32V160H12C5.373 160 0 154.627 0 148V76C0 69.373 5.373 64 12 64H84C90.627 64 96 69.373 96 76V96H192V64H172C165.373 64 160 58.627 160 52V-20C160 -26.627 165.373 -32 172 -32H244C250.627 -32 256 -26.627 256 -20V0H480V-20C480 -26.627 485.373 -32 492 -32H564C570.627 -32 576 -26.627 576 -20V52C576 58.627 570.627 64 564 64H544V224H564zM384 128V96H352V128H384zM352 384H384V352H352V384zM32 384H64V352H32V384zM64 96H32V128H64V96zM84 160H64V320H84C90.627 320 96 325.373 96 332V352H320V332C320 325.373 325.373 320 332 320H352V160H332C325.373 160 320 154.627 320 148V128H96V148C96 154.627 90.627 160 84 160zM224 0H192V32H224V0zM480 52V32H256V52C256 58.627 250.627 64 244 64H224V96H320V76C320 69.373 325.373 64 332 64H404C410.627 64 416 69.373 416 76V148C416 154.627 410.627 160 404 160H384V256H480V236C480 229.373 485.373 224 492 224H512V64H492C485.373 64 480 58.627 480 52zM544 0H512V32H544V0zM512 256V288H544V256H512z" />
+    <glyph glyph-name="octagon"
+      unicode="&#xF306;"
+      horiz-adv-x="512" d=" M361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512.1 276.2 507 288.4 498 297.4L361.5 433.9zM480 120.5C480 116.2 478.3 112.2 475.3 109.2L338.9 -27.3C335.9 -30.3 331.9 -32 327.6 -32H184.5C180.2 -32 176.2 -30.3 173.2 -27.3L36.7 109.1C33.7 112.1 32 116.1 32 120.4V263.5C32 267.8 33.7 271.8 36.7 274.8L173.1 411.3C176.1 414.3 180.1 416 184.4 416H327.5C331.8 416 335.8 414.3 338.8 411.3L475.3 274.8C478.3 271.8 480 267.8 480 263.5V120.5z" />
+    <glyph glyph-name="oil-can"
+      unicode="&#xF613;"
+      horiz-adv-x="640" d=" M629.8 287.69L416 224L365.51 249.24A64.07 64.07 0 0 1 336.89 256H272V320H344C348.42 320 352 323.58 352 328V344C352 348.42 348.42 352 344 352H168C163.58 352 160 348.42 160 344V328C160 323.58 163.58 320 168 320H240V256H176V256.02L37.72 281.16C16.54 285.02 0 268.0800000000001 0 249.67V154.72C0 139.26 11.06 126 26.28 123.24L96 110.56V64C96 46.33 110.33 32 128 32H402.63C411.18 32 419.38 35.42 425.39 41.51L637.65 256.26C639.15 257.76 639.99 259.8 639.99 261.92V280C640 285.74 634.51 289.03 629.8 287.69zM96 143.09L32 154.73L32.04 249.67L96 238.04V143.09zM402.63 64H128V224H336.89C341.86 224 346.76 222.84 351.2 220.62L407.35 192.55C410.99 190.73 415.18 190.37 419.07 191.53L574.42 237.8100000000001L402.63 64zM578.84 153.09C568.38 137.94 544 100.47 544 80.02C544 53.55 565.53 32.02 592 32.02S640 53.55 640 80.02C640 100.47 615.62 137.94 605.16 153.1C599.2199999999999 161.75 584.78 161.75 578.8399999999999 153.09zM592 64.02C583.19 64.02 576 71.19 576 80C576.12 84.89 582.78 98.83 592 114.34C601.22 98.8200000000001 607.88 84.89 608 80.0100000000001C608 71.1900000000001 600.81 64.02 592 64.02z" />
+    <glyph glyph-name="oil-temp"
+      unicode="&#xF614;"
+      horiz-adv-x="640" d=" M8 64H32C70.62 64 104.72 76.19 128 95.84C151.28 76.18 185.38 64 224 64C226.45 64 228.69 64.46 231.1 64.56C223.76 74.21 218.11 85.04 214.2 96.78C193.15 98.62 176.82 105.68 167.92 113.9C159.02 122.11 148.26 128 136.15 128H119.85C107.74 128 96.98 122.11 88.08 113.9C77.8 104.42 58.04 96 32 96H8C3.58 96 0 92.42 0 88V72C0 67.58 3.58 64 8 64zM632 96H608C581.96 96 562.2 104.42 551.91 113.9C543.01 122.11 532.25 128 520.14 128H503.84C491.73 128 480.97 122.11 472.07 113.9C463.17 105.69 446.84 98.62 425.79 96.78C421.88 85.03 416.22 74.21 408.89 64.56C411.3 64.4599999999999 413.54 63.9999999999999 415.99 63.9999999999999C454.61 63.9999999999999 488.71 76.1899999999999 511.99 95.8399999999999C535.27 76.1799999999999 569.37 63.9999999999999 607.99 63.9999999999999H631.99C636.41 63.9999999999999 639.99 67.5799999999999 639.99 71.9999999999999V87.9999999999999C640 92.42 636.42 95.9999999999999 632 95.9999999999999zM320 47.98C364.12 47.98 400 83.87 400 128C400 166.63 372.48 198.95 336 206.38V288H408C412.42 288 416 291.5800000000001 416 296V312C416 316.42 412.42 320 408 320H336V352H408C412.42 352 416 355.58 416 360V376C416 380.42 412.42 384 408 384H336V416H408C412.42 416 416 419.58 416 424V440C416 444.42 412.42 448 408 448H328C314.8 448 304 437.2 304 424V206.38C267.52 198.95 240 166.63 240 128C240 83.88 275.88 47.98 320 47.98zM320 176C346.4700000000001 176 368 154.47 368 128S346.4700000000001 79.98 320 79.98S272 101.53 272 128S293.53 176 320 176zM632 -32H608C581.96 -32 562.2 -23.58 551.91 -14.1C543.01 -5.89 532.25 0 520.14 0H503.84C491.73 0 480.97 -5.89 472.07 -14.1C461.8 -23.58 442.04 -32 416 -32S370.2 -23.58 359.91 -14.1C351.01 -5.89 340.25 0 328.14 0H311.84C299.73 0 288.97 -5.89 280.07 -14.1C269.8 -23.58 250.04 -32 224 -32S178.2 -23.58 167.91 -14.1C159.01 -5.89 148.25 0 136.14 0H119.84C107.73 0 96.97 -5.89 88.07 -14.1C77.8 -23.58 58.04 -32 32 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H32C70.62 -64 104.72 -51.81 128 -32.16C151.28 -51.82 185.38 -64 224 -64S296.7200000000001 -51.81 320 -32.16C343.28 -51.82 377.38 -64 416 -64S488.72 -51.81 512 -32.16C535.28 -51.82 569.38 -64 608 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32z" />
+    <glyph glyph-name="om"
+      unicode="&#xF679;"
+      horiz-adv-x="448" d=" M296.62 355.06C300.7 350.99 307.3 350.99 311.38 355.06L332.94 376.62A10.43 10.43 0 0 1 332.94 391.38L311.38 412.94A10.43 10.43 0 0 1 296.62 412.94L275.06 391.38A10.43 10.43 0 0 1 275.06 376.62L296.62 355.06zM310.56 288C367.15 288 380.4 302.42 382.48 305.31A8.073 8.073 0 0 1 384 310.03V336C384 342.58 376.65 346.29 371.5 342.46C351.45 327.6 329.56 320.06 306.44 320.06C266.75 320.06 236.85 342.2 236.55 342.43C229.56 347.68 220.4 339.06 225.32 331.56C226.49 329.78 254.5300000000001 288 310.56 288zM355.1 239.53C335.13 237.43 316.81 227.44 302.61 213.24L280.5800000000001 191.21A51.918000000000006 51.918000000000006 0 0 0 243.8800000000001 176.0100000000001H171.3200000000001C188.5500000000001 196.6900000000001 197.0600000000001 224.8800000000001 188.8500000000001 255.4300000000001C180.2300000000001 287.5400000000001 153.1000000000001 312.7500000000001 120.3600000000001 318.5600000000001C89.1700000000001 324.0900000000001 59.1800000000001 313.5800000000001 38.9700000000001 291.3100000000001C35.9000000000001 287.9300000000001 36.6800000000001 282.5300000000001 40.3300000000001 279.7800000000001L53.1900000000001 270.1100000000001C56.5600000000001 267.5800000000001 61.1000000000001 268.2800000000001 64.0500000000001 271.3000000000001C76.7200000000001 284.2500000000001 94.8500000000001 290.3400000000001 113.7100000000001 287.2100000000001C135.2800000000001 283.6300000000001 153.3700000000001 266.8200000000001 158.3900000000001 245.5400000000001C167.06 208.82 139.29 176 104 176L72.01 175.83C66.05 175.8 62.2 169.52 64.86 164.19L72.9 148.1C74.17 145.5700000000001 76.7 144.05 79.49 143.8200000000001L116.79 143.9900000000001C154.38 143.9900000000001 188.01 116.5800000000001 191.65 79.1700000000001C195.83 36.27 162.06 0 120 0H112C54.42 0 22.54 30.88 8.87 51.13C6.16 55.15 0.01 53.04 0 48.35C-0.04 29.95 27.36 -32 115.44 -32C173.64 -32 224.98 15.6 223.98 73.79C223.51 101.05 212.38 125.69 194.74 144H243.87C266.12 144 287.4600000000001 152.84 303.19 168.57L326.33 191.72C333.61 199 342.64 204.62 352.71 206.78C386.25 213.98 415.99 188.47 415.99 156.13V72C415.99 49.91 398.08 32 375.99 32H351.99C331.31 32 319.39 44.97 311.44 54.47C308.94 57.46 303.99 55.7600000000001 303.99 51.91V32.61S301.5900000000001 -0.01 351.99 -0.01H375.99C415.76 -0.01 447.99 32.23 447.99 71.99V156.11C448 205.35 405.38 244.81 355.1 239.5300000000001z" />
+    <glyph glyph-name="omega"
+      unicode="&#xF67A;"
+      horiz-adv-x="448" d=" M448 192C448 324.2100000000001 333.46 429.67 198.2 414.55C96.64 403.2100000000001 14.1 321.55 1.72 220.12C-9.65 126.92 36.42 43.59 109.06 0H8C3.58 0 0 -3.58 0 -8V-24C0 -28.42 3.58 -32 8 -32H152C156.42 -32 160 -28.42 160 -24V0.31C160 6.88 155.9 12.6 149.84 15.14C77.6 45.53 27.63 118.7 32.3 202.87C37.7 300.2100000000001 118.61 379.87 216.02 383.8400000000001C325.51 388.3 416 300.52 416 192C416 112.44 367.27 44.21 298.16 15.14C292.1 12.59 288 6.88 288 0.31V-24C288 -28.42 291.58 -32 296 -32H440C444.42 -32 448 -28.42 448 -24V-8C448 -3.58 444.42 0 440 0H338.94C404.19 39.15 448 110.37 448 192z" />
+    <glyph glyph-name="ornament"
+      unicode="&#xF7B8;"
+      horiz-adv-x="384" d=" M288 294.1V352C288 369.7 273.7 384 256 384H237.1C238.9 389 240 394.4 240 400C240 426.5 218.5 448 192 448S144 426.5 144 400C144 394.4 145.2 389 146.9 384H128C110.3 384 96 369.7 96 352V294.1C38.7 260.9 0 199 0 128C0 22 86 -64 192 -64S384 22 384 128C384 199 345.3 260.9 288 294.1zM176 400C176 408.8 183.2 416 192 416S208 408.8 208 400S200.8 384 192 384S176 391.2 176 400zM128 352H256V308.8C236 315.9 214.5 320 192 320S148 315.9 128 308.8V352zM192 288C244.1 288 289.9 262.6 319.2 224H64.8C94.1 262.6 139.9 288 192 288zM192 -32C139.9 -32 94.1 -6.6 64.8 32H319.2C289.9 -6.6 244.1 -32 192 -32zM338.4 64H45.6C36.9 83.6 32 105.2 32 128S36.9 172.4 45.6 192H338.5C347.1 172.4 352.1 150.8 352.1 128S347.1 83.6 338.4000000000001 64z" />
+    <glyph glyph-name="otter"
+      unicode="&#xF700;"
+      horiz-adv-x="640" d=" M512 392C503.16 392 496 384.8400000000001 496 376S503.17 360 512 360C520.84 360 528 367.16 528 376S520.84 392 512 392zM592 416H574.86L561.6 429.26C549.52 441.34 533.44 448 516.35 448H495.86C484.74 448 473.76 445.09 464.11 439.57L310.86 352H288C182.13 352 96 265.87 96 160V158.86C41.79 151.07 0 104.33 0 48C0 -13.76 50.24 -64 112 -64H256C282.4700000000001 -64 304 -42.47 304 -16S282.4700000000001 32 256 32H112C103.18 32 96 39.18 96 48S103.18 64 112 64H320C337.67 64 352 78.33 352 96C352 119 339.81 139.2 321.55 150.48L370.1600000000001 176.3300000000001L417.48 81.6900000000001A32 32 0 0 1 446.1 64H544C561.67 64 576 78.33 576 96C576 131.29 547.29 160 512 160H485.67L454.96 221.42L499.78 245.26C512.99 252.29 529.04 256 544 256C596.93 256 640 299.06 640 352V368C640 394.4700000000001 618.47 416 592 416zM544 288C523.74 288 502.64 283.03 484.75 273.51L480.56 271.28L497.46 293.24C506.5 305 520.72 312 535.5 312H593.59C581.86 297.48 564.12 288 544 288zM607.19 344H535.5C510.84 344 487.16 332.33 472.09 312.77L412.3800000000001 235.0300000000001L465.89 128H512C529.66 128 544 113.64 544 96H446.11L384.11 219.99L211.13 128H288C305.6600000000001 128 320 113.64 320 96H112C85.53 96 64 74.47 64 48S85.53 0 112 0H256C264.84 0 272 -7.16 272 -16S264.84 -32 256 -32H112C67.88 -32 32 3.89 32 48S67.88 128 112 128H128V160C128 248.37 199.63 320 288 320H319.36L479.98 411.79A32.048 32.048 0 0 0 495.86 416H516.35C524.9 416 532.9300000000001 412.67 538.97 406.63L561.6 384H592C600.84 384 608 376.8400000000001 608 368C608 368 607.53 346.65 607.19 344z" />
+    <glyph glyph-name="outdent"
+      unicode="&#xF03B;"
+      horiz-adv-x="448" d=" M0 372V396A6 6 0 0 0 6 402H442A6 6 0 0 0 448 396V372A6 6 0 0 0 442 366H6A6 6 0 0 0 0 372zM198 238H442A6 6 0 0 1 448 244V268A6 6 0 0 1 442 274H198A6 6 0 0 1 192 268V244A6 6 0 0 1 198 238zM6 -18H442A6 6 0 0 1 448 -12V12A6 6 0 0 1 442 18H6A6 6 0 0 1 0 12V-12A6 6 0 0 1 6 -18zM198 110H442A6 6 0 0 1 448 116V140A6 6 0 0 1 442 146H198A6 6 0 0 1 192 140V116A6 6 0 0 1 198 110zM128 287.987V96.015C128 81.745 110.717 74.669 100.687 84.702L4.687 180.688C-1.562 186.936 -1.562 197.067 4.687 203.315L100.687 299.302C110.705 309.318 128 302.281 128 287.987zM96 134.627V249.373L38.627 192L96 134.627z" />
+    <glyph glyph-name="paint-brush-alt"
+      unicode="&#xF5A9;"
+      horiz-adv-x="512" d=" M489.17 303.95C547.44 367.98 483.28 448 418.52 448C395.13 448 371.65 437.56 353.84 412.15L187.9 163.99C142.77 161.09 101.8 143.9 78.56 82.65C75.91 75.66 69.56 71.43 62.15 71.43C49.66 71.43 11.01 102.56 0 110.0799999999999C0 17.42 42.67 -64 144 -64C285.2100000000001 -64 289.89 53.04 286.91 81.49L286.93 81.51L489.17 303.95zM230.96 -1.18C212.54 -21.63 183.28 -32 144 -32C81.92 -32 53.85 5.47 41.43 44.29C48.98 40.97 55.58 39.43 62.15 39.43C82.96 39.43 101.15 51.95 108.48 71.3C115.34 89.39 126.11 127.96 197.79 132.56L254.68 82C257.64 53.79 250.6 20.63 230.96 -1.18zM270.36 110.85L220.5 155.17L380.05 393.78C390.38 408.53 403.33 416 418.52 416C441.42 416 466.08 399.29 475.88 377.12C483.82 359.16 480.33 341.78 465.49 325.48L270.36 110.85z" />
+    <glyph glyph-name="paint-brush"
+      unicode="&#xF1FC;"
+      horiz-adv-x="512" d=" M455.59 448C439.78 448 424.97 441.01 413.66 430.85C195.73 236.18 169.77 231.5 179.98 166.01C138.46 161.05 101.39 141.96 79.66 84.69C76.98 77.61 70.54 73.31 63.02 73.31C50.35 73.31 11.17 104.87 0 112.5C0 18.55 43.26 -64 146 -64C263.18 -64 298.7200000000001 23.75 291.06 81.89C347.96 88.9 388.2100000000001 144.4 497.51 348.38C505.2 363.35 512 379.52 512 396.3400000000001C512 426.48 484.89 448 455.59 448zM236.52 2.45C216.47 -20.41 186.02 -32 146 -32C82.22 -32 53.71 6.83 41.25 46.69C49.27 43.04 56.23 41.3 63.02 41.3C83.94 41.3 102.22 53.88 109.58 73.33C116.23 90.85 125.63 127.28 193.34 135.3700000000001L258.42 84.7500000000001C262.45 54.0700000000001 257.17 26.0000000000001 236.52 2.45zM469.31 363.5C350.91 142.54 325.62 118.39 275.23 112.19L213.23 160.41C204.43 216.84 198.43 195.69 435.05 407.05C441.38 412.74 448.86 416 455.59 416C467.38 416 480 408.1 480 396.3400000000001C480 385.76 474.46 373.55 469.31 363.5z" />
+    <glyph glyph-name="paint-roller"
+      unicode="&#xF5AA;"
+      horiz-adv-x="512" d=" M464 384H416V400C416 426.51 394.51 448 368 448H48C21.49 448 0 426.51 0 400V336C0 309.49 21.49 288 48 288H368C394.51 288 416 309.49 416 336V352H464C472.81 352 480 344.83 480 336V240C480 231.17 472.81 224 464 224H256C229.53 224 208 202.47 208 176V128H192C174.33 128 160 113.67 160 96V-32C160 -49.67 174.33 -64 192 -64H256C273.67 -64 288 -49.67 288 -32V96C288 113.67 273.67 128 256 128H240V176C240 184.83 247.19 192 256 192H464C490.47 192 512 213.53 512 240V336C512 362.4700000000001 490.47 384 464 384zM384 384V336C384 327.18 376.82 320 368 320H48C39.18 320 32 327.18 32 336V400C32 408.82 39.18 416 48 416H368C376.82 416 384 408.82 384 400V384zM256 -32H192V96H256V-32z" />
+    <glyph glyph-name="palette"
+      unicode="&#xF53F;"
+      horiz-adv-x="512" d=" M112 184C98.7 184 88 173.3 88 160S98.7 136 112 136S136 146.7 136 160S125.3 184 112 184zM144 296C130.7 296 120 285.3 120 272S130.7 248 144 248S168 258.7 168 272S157.3 296 144 296zM256 448C239.1 448 221.8 446.4 204.3 443C104.9 423.6 24.8 343.7 5.2 244.6C-29.4 69.5 116.4 -64 239.5 -64C247.8 -64 256 -63.4 264.1 -62.1C305.3 -55.7 325.5 -7.5 306.6 29.6C283.5 74.9999999999999 316.5 128 367.5 128H447.2C483 128 512 157.6 512.1 193.3C511.6 334.1 397.1 448 256 448zM447.1 160H367.4000000000001C332.1 160 300 142.1 281.7000000000001 112.2C263.5000000000001 82.5 262.1 46.2 278.0000000000001 15C282.9000000000001 5.4 282.8000000000001 -6.6 277.9000000000001 -16.3C275.5000000000001 -20.9 270.0000000000001 -28.9 259.2000000000001 -30.6C252.9000000000001 -31.6 246.3000000000001 -32.1 239.5000000000001 -32.1C184.9000000000001 -32.1 125.4000000000001 -0.8 84.0000000000001 49.5C40.0000000000001 103.1 23.1000000000001 170.1 36.6000000000001 238.2C53.7000000000001 324.8 123.6000000000001 394.4 210.5000000000001 411.4C225.7000000000001 414.4 241.0000000000001 415.9 256.0000000000001 415.9C379.1 415.9 479.6 316 480.0000000000001 193.3C480.0000000000001 175 465.2 160 447.1000000000001 160zM368 312C354.7 312 344 301.3 344 288S354.7 264 368 264S392 274.7 392 288S381.3 312 368 312zM240 360C226.7 360 216 349.3 216 336S226.7 312 240 312S264 322.7 264 336S253.3 360 240 360z" />
+    <glyph glyph-name="pallet-alt"
+      unicode="&#xF483;"
+      horiz-adv-x="640" d=" M112 160H528C536.8 160 544 167.2 544 176V368C544 376.8 536.8 384 528 384H352V432C352 440.8 344.8 448 336 448H112C103.2 448 96 440.8 96 432V176C96 167.2 103.2 160 112 160zM352 352H512V192H352V352zM128 416H320V192H128V416zM632 96C636.4 96 640 99.6 640 104V120C640 124.4 636.4 128 632 128H8C3.6 128 0 124.4 0 120V104C0 99.6 3.6 96 8 96H64V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32H576V96H632zM160 -32H96V96H160V-32zM448 -32H192V96H448V-32zM544 -32H480V96H544V-32z" />
+    <glyph glyph-name="pallet"
+      unicode="&#xF482;"
+      horiz-adv-x="640" d=" M144 160H496C504.8 160 512 167.2 512 176V432C512 440.8 504.8 448 496 448H144C135.2 448 128 440.8 128 432V176C128 167.2 135.2 160 144 160zM288 416H352V339.8L320 355.8L288 339.8V416zM160 416H256V288L320 320L384 288V416H480V192H160V416zM632 96C636.4 96 640 99.6 640 104V120C640 124.4 636.4 128 632 128H8C3.6 128 0 124.4 0 120V104C0 99.6 3.6 96 8 96H64V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32H576V96H632zM160 -32H96V96H160V-32zM448 -32H192V96H448V-32zM544 -32H480V96H544V-32z" />
+    <glyph glyph-name="paper-plane"
+      unicode="&#xF1D8;"
+      horiz-adv-x="512" d=" M464 443.7L16 185.3C-7 172 -4.7 138.1 19.8 128L160 70V-32C160 -62.2 197.8 -75.2999999999999 216.7 -52.3L277.4 21.5L403.8 -30.7C422.9 -38.6 444.5 -26.5 447.6 -6L511.6 411.1C515.7 437.8 487 457 464 443.7zM192 -32V56.8L246.5 34.3L192 -32zM416 -1.1L209.8 84.1L409.3 319.9C414.1 325.5 406.4000000000001 333.1 400.8 328.3L145.5 110.7L32 157.5L480 416L416 -1.1z" />
+    <glyph glyph-name="paperclip"
+      unicode="&#xF0C6;"
+      horiz-adv-x="512" d=" M149.106 -64C116.03 -64 82.953 -51.41 57.773 -26.229C7.409 24.132 7.409 106.076 57.771 156.436L319.842 418.502C359.173 457.833 423.17 457.833 462.502 418.502C501.833 379.17 501.833 315.175 462.502 275.8450000000001L239.872 53.219C211.575 24.918 165.525 24.916 137.222 53.219C108.922 81.52 108.922 127.568 137.222 155.868L307.5229999999999 326.166C312.2089999999999 330.852 319.8069999999999 330.852 324.493 326.166L330.154 320.505C334.8399999999999 315.819 334.8399999999999 308.221 330.154 303.534L159.8539999999999 133.237C144.0329999999999 117.416 144.0329999999999 91.674 159.8549999999999 75.852C175.6759999999999 60.032 201.4189999999999 60.032 217.2399999999999 75.852L439.8699999999999 298.478C466.7209999999999 325.329 466.7209999999999 369.019 439.8699999999999 395.872C413.0149999999999 422.723 369.3259999999999 422.721 342.4749999999999 395.872L80.404 133.804C42.522 95.922 42.522 34.285 80.404 -3.597C118.288 -41.4780000000001 179.927 -41.479 217.808 -3.598L435.551 214.141C440.237 218.827 447.835 218.827 452.521 214.141L458.182 208.48C462.8679999999999 203.794 462.8679999999999 196.196 458.182 191.509L240.44 -26.229C215.26 -51.41 182.183 -64 149.106 -64z" />
+    <glyph glyph-name="parachute-box"
+      unicode="&#xF4CD;"
+      horiz-adv-x="512" d=" M511.9 243.8C499.2 367.1 368.8 448 256 448S12.8 367.1 0.1 243.8C-1 233.1 6.9 224 16.1 224H48.6L160 102.6V-32C160 -49.7 174.3 -64 192 -64H320C337.7 -64 352 -49.7 352 -32V102.6L463.3 224H495.8C505.1 224 513 233.1 511.9 243.8zM256 416C307.8 416 368 352 368 256H144C144 352 204.2 416 256 416zM34.3 256C47.7 321.1 101 371.2 163.4 396.9C133.3 364.2 112 315.9 112 256.8V256H34.3zM180.1 128L92 224H240V128H180.1zM320 -24C320 -28.4 316.4 -32 312 -32H200C195.6 -32 192 -28.4 192 -24V88C192 92.4 195.6 96 200 96H312C316.4 96 320 92.4 320 88V-24zM331.9 128H272V224H419.9L331.9 128zM400 256V256.8C400 315.9 378.7 364.1 348.6 396.9C410.9000000000001 371.2 464.3 321.1 477.7 256H400z" />
+    <glyph glyph-name="paragraph"
+      unicode="&#xF1DD;"
+      horiz-adv-x="384" d=" M372 416H159.529C72.194 416 0.245 345.784 0.001 258.449C-0.243 171.123 70.729 100 158 100V-20C158 -26.627 163.373 -32 170 -32H182C188.627 -32 194 -26.627 194 -20V380H254V-20C254 -26.627 259.373 -32 266 -32H278C284.627 -32 290 -26.627 290 -20V380H372C378.627 380 384 385.373 384 392V404C384 410.627 378.627 416 372 416zM158 136C90.729 136 36 190.729 36 258S90.729 380 158 380V136z" />
+    <glyph glyph-name="parking-circle-slash"
+      unicode="&#xF616;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192C32 236.65 45.62 278.17 68.92 312.65L407.06 46.38C367.54 3.25 310.96 -24 248 -24zM200 250.17V288.0800000000001H272C302.88 288.0800000000001 328 262.9600000000001 328 232.08C328 207.53 312.01 186.85 289.98 179.31L200 250.17zM317.54 157.62C345.1600000000001 174.37 363.01 205.52 359.5700000000001 240.87C355.1200000000001 286.5900000000001 314.0300000000001 320.0900000000001 268.0900000000001 320.0900000000001H176C171.58 320.0900000000001 168 316.51 168 312.0900000000001V275.37L88.94 337.63C128.46 380.75 185.04 408 248 408C367.1 408 464 311.1 464 192C464 147.35 450.38 105.83 427.08 71.36L317.54 157.62zM168 72.09C168 67.67 171.58 64.09 176 64.09H192C196.42 64.09 200 67.67 200 72.09V144.09H231.25L168 193.89V72.09z" />
+    <glyph glyph-name="parking-circle"
+      unicode="&#xF615;"
+      horiz-adv-x="496" d=" M268.1 320.0900000000001H176C171.58 320.0900000000001 168 316.51 168 312.0900000000001V72.09C168 67.67 171.58 64.09 176 64.09H192C196.42 64.09 200 67.67 200 72.09V144.09H272C323.43 144.09 364.68 188.41 359.57 240.8700000000001C355.12 286.5800000000001 314.03 320.0900000000001 268.1 320.0900000000001zM272 176.09H200V288.0900000000001H272C302.88 288.0900000000001 328 262.9700000000001 328 232.0900000000001S302.88 176.09 272 176.09zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24z" />
+    <glyph glyph-name="parking-slash"
+      unicode="&#xF617;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM413.83 179.21C426.69 196.13 433.92 217.55 431.66 240.86C427.21 286.58 386.12 320.08 340.18 320.08H248.08C244.82 320.08 242.56 317.85 241.31 315.05L275.57 288.08H344.08C374.95 288.08 400.08 262.96 400.08 232.08C400.08 219.59 395.83 208.17 388.89 198.84L413.83 179.21zM496.01 384.01C504.81 384.01 512.01 376.81 512.01 368.01V101.91L544 76.72V368.01C544 394.51 522.5 416 496.01 416H144.08C135.66 416 127.86 413.64 120.98 409.83L153.77 384.01H496.01zM144.08 0.08C135.28 0.08 128.08 7.28 128.08 16.08V282.02L96.09 307.2200000000001V16.08C96.09 -10.41 117.59 -31.91 144.08 -31.91H496.01C504.38 -31.91 512.14 -29.57 518.99 -25.8L486.12 0.08H144.08zM264.0900000000001 64.09C268.5100000000001 64.09 272.0900000000001 67.67 272.0900000000001 72.09V144.09H303.2500000000001L240.0900000000001 193.82V72.09C240.0900000000001 67.67 243.6700000000001 64.09 248.0900000000001 64.09H264.0900000000001z" />
+    <glyph glyph-name="parking"
+      unicode="&#xF540;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM244.1 320.1H152C147.6 320.1 144 316.5 144 312.1V72.1C144 67.7000000000001 147.6 64.1 152 64.1H168C172.4 64.1 176 67.7000000000001 176 72.1V144.1H248C299.4 144.1 340.7 188.4 335.6 240.9000000000001C331.2000000000001 286.6 290.1 320.1 244.1 320.1zM248 176H176V288H248C278.9 288 304 262.9 304 232S278.9 176 248 176z" />
+    <glyph glyph-name="passport"
+      unicode="&#xF5AB;"
+      horiz-adv-x="448" d=" M416 448H64C28.65 448 0 419.35 0 384V0C0 -35.35 28.65 -64 64 -64H416C433.67 -64 448 -49.67 448 -32V416C448 433.67 433.67 448 416 448zM416 -32H64C46.36 -32 32 -17.64 32 0V384C32 401.64 46.36 416 64 416H416V-32zM112 32H336C344.8 32 352 39.2 352 48S344.8 64 336 64H112C103.2 64 96 56.8 96 48S103.2 32 112 32zM224 128C294.69 128 352 185.31 352 256S294.69 384 224 384S96 326.69 96 256S153.31 128 224 128zM318.38 272H279.29C277.8 299.03 272.75 323.35 265.08 342.41C292.79 329.17 313.1 303.2200000000001 318.38 272zM279.29 240H318.38C313.09 208.78 292.79 182.83 265.08 169.59C272.76 188.65 277.8 212.97 279.29 240.0000000000001zM224 350.69C231.69 343.24 244.77 316.27 247.43 272H200.56C203.23 316.26 216.31 343.24 224 350.69zM247.43 240C244.77 195.74 231.69 168.76 224 161.31C216.31 168.76 203.23 195.73 200.57 240H247.43zM182.92 342.41C175.24 323.35 170.2 299.03 168.71 272H129.62C134.9 303.2200000000001 155.21 329.17 182.92 342.41zM168.71 240C170.2 212.97 175.25 188.65 182.92 169.59C155.21 182.8300000000001 134.9 208.78 129.62 240.0000000000001H168.71z" />
+    <glyph glyph-name="pastafarianism"
+      unicode="&#xF67B;"
+      horiz-adv-x="640" d=" M629.28 92.86C599.35 103.83 576.6899999999999 89.08 558.53 77.25C541.56 66.25 531.3299999999999 60.3 518.23 65.05C505.13 69.85 501.62 80.88 496.62 99.94C493.27 112.65 489.39 127.29 479.77 139.19C487.28 148.36 493.24 157.09 497.98 164.84C507.72 153.58 520.74 144 540.16 144C570.1899999999999 144 585.04 166.84 595.87 183.52C606.95 200.55 612.87 208 623.36 208C632.5600000000001 208 640 215.16 640 224S632.56 240 623.36 240C593.33 240 578.48 217.16 567.65 200.48C556.5699999999999 183.4499999999999 550.65 176 540.16 176C494.08 176 519.48 238.88 421.05 294.33L442.18 336.5899999999999C444.12 336.39 446 335.9999999999999 448 335.9999999999999C478.9299999999999 335.9999999999999 503.9999999999999 361.07 503.9999999999999 391.9999999999999S478.93 448 448 448S392 422.93 392 392C392 374.58 400.12 359.2200000000001 412.58 348.95L392.02 307.8400000000001C371.26 315.3400000000001 347.38 320 320 320S268.74 315.3400000000001 247.97 307.8400000000001L227.41 348.95C239.88 359.2200000000001 248 374.58 248 392C248 422.93 222.93 448 192 448S136 422.93 136 392S161.07 336 192 336C193.99 336 195.88 336.38 197.82 336.5900000000001L218.95 294.3300000000001C120.52 238.88 145.92 176 99.84 176C89.34 176 83.43 183.45 72.35 200.48C61.52 217.16 46.67 240 16.64 240C7.44 240 0 232.84 0 224S7.44 208 16.64 208C27.14 208 33.05 200.55 44.13 183.52C54.96 166.84 69.81 144 99.84 144C119.26 144 132.28 153.58 142.02 164.84C146.76 157.09 152.72 148.36 160.23 139.19C150.61 127.29 146.73 112.65 143.38 99.94C138.37 80.88 134.86 69.85 121.77 65.05C108.67 60.3 98.44 66.25 81.47 77.25C63.3 89.08 40.65 103.83 10.72 92.86C2.11 89.72 -2.18 80.47 1.1 72.2C4.35 63.93 13.97 59.79 22.55 62.95C35.65 67.78 45.89 61.78 62.85 50.75C76.53 41.84 92.75 31.3 112.71 31.3C119.24 31.3 126.23 32.44 133.61 35.14C163.54 46.11 170.27 71.59 175.66 92.06C178.17 101.63 180.31 109.17 183.48 114.91C202.87 97.55 228.1900000000001 81.7600000000001 260.11 72.5C247.6600000000001 22.48 223.7 -30.34 192 -30.34C183.16 -30.34 176 -37.87 176 -47.17C176 -56.47 183.16 -64 192 -64C252.44 -64 281.31 24.06 291.63 65.86C300.67 64.72 310.06 64 320 64S339.33 64.73 348.37 65.86C358.69 24.06 387.56 -64 448 -64C456.84 -64 464 -56.47 464 -47.17C464 -37.87 456.84 -30.34 448 -30.34C416.3 -30.34 392.3400000000001 22.48 379.89 72.51C411.81 81.77 437.13 97.55 456.52 114.92C459.68 109.17 461.82 101.64 464.34 92.0699999999999C469.73 71.5999999999999 476.46 46.12 506.39 35.1499999999999C513.77 32.4499999999999 520.76 31.3099999999999 527.29 31.3099999999999C547.25 31.3099999999999 563.4599999999999 41.86 577.15 50.7599999999999C594.11 61.7899999999999 604.35 67.79 617.4499999999999 62.9599999999999C626.03 59.7999999999999 635.65 63.9399999999999 638.9 72.2099999999999C642.18 80.4699999999999 637.89 89.7199999999999 629.28 92.8599999999999zM448 416C461.23 416 472 405.23 472 392S461.23 368 448 368S424 378.77 424 392S434.77 416 448 416zM192 368C178.77 368 168 378.77 168 392S178.77 416 192 416S216 405.23 216 392S205.23 368 192 368zM320 96C222.96 96 177.61 164.26 163.19 192.01C177.55 219.64 222.88 288 320 288S462.45 219.64 476.81 192.01C462.39 164.26 417.04 96 320 96z" />
+    <glyph glyph-name="paste"
+      unicode="&#xF0EA;"
+      horiz-adv-x="448" d=" M433.941 254.059L382.059 305.9410000000001A48 48 0 0 1 348.118 320H320V368C320 394.51 298.51 416 272 416H205.248C198.643 434.623 180.858 448 160 448S121.357 434.623 114.752 416H48C21.49 416 0 394.51 0 368V80C0 53.49 21.49 32 48 32H128V-16C128 -42.51 149.49 -64 176 -64H400C426.51 -64 448 -42.51 448 -16V220.118A48 48 0 0 1 433.941 254.059zM411.314 231.432A15.888 15.888 0 0 0 415.509 224H352V287.509A15.879999999999999 15.879999999999999 0 0 0 359.431 283.314L411.314 231.432zM160 418C169.941 418 178 409.9410000000001 178 400S169.941 382 160 382S142 390.059 142 400S150.059 418 160 418zM48 64C39.178 64 32 71.178 32 80V368C32 376.822 39.178 384 48 384H114.752C121.357 365.377 139.141 352 160 352S198.643 365.377 205.248 384H272C280.822 384 288 376.822 288 368V320H176C149.49 320 128 298.51 128 272V64H48zM400 -32H176C167.178 -32 160 -24.822 160 -16V272C160 280.822 167.178 288 176 288H320V216C320 202.8 330.8 192 344 192H416V-16C416 -24.822 408.822 -32 400 -32z" />
+    <glyph glyph-name="pause-circle"
+      unicode="&#xF28B;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM208 288V96M198 288H218C221.3 288 224 285.3 224 282V102C224 98.7 221.3 96 218 96H198C194.7 96 192 98.7 192 102V282C192 285.3 194.7 288 198 288zM294 288H314C317.3 288 320 285.3 320 282V102C320 98.7 317.3 96 314 96H294C290.7 96 288 98.7 288 102V282C288 285.3 290.7 288 294 288z" />
+    <glyph glyph-name="pause"
+      unicode="&#xF04C;"
+      horiz-adv-x="448" d=" M48 -31H144C170.5 -31 192 -9.5 192 17V369C192 395.5 170.5 417 144 417H48C21.5 417 0 395.5 0 369V17C0 -9.5 21.5 -31 48 -31zM32 369C32 377.8 39.2 385 48 385H144C152.8 385 160 377.8 160 369V17C160 8.2 152.8 1 144 1H48C39.2 1 32 8.2 32 17V369zM304 -31H400C426.5 -31 448 -9.5 448 17V369C448 395.5 426.5 417 400 417H304C277.5 417 256 395.5 256 369V17C256 -9.5 277.5 -31 304 -31zM288 369C288 377.8 295.2 385 304 385H400C408.8 385 416 377.8 416 369V17C416 8.2 408.8 1 400 1H304C295.2 1 288 8.2 288 17V369z" />
+    <glyph glyph-name="paw-alt"
+      unicode="&#xF701;"
+      horiz-adv-x="448" d=" M367.31 147.22C341.02 162.06 320.17 208.63 300.14 245.05C284.4100000000001 273.69 254.21 288 224 288S163.59 273.69 147.85 245.05C127.56 208.09 107.73 162.49 80.68 147.22C51.63 130.82 32 99.82 32 64.05C32 11.04 74.98 -31.93 128 -31.93C129.31 -31.97 130.6 -32 131.87 -32C180.75 -32 200.79 0.06 224 0.06S267.25 -32 316.13 -32C317.4 -32 318.69 -31.98 320 -31.93C373.02 -31.93 416 11.04 416 64.05C416 99.82 396.37 130.82 367.31 147.22zM318.92 0.0500000000001L316.13 1e-13C296.01 1e-13 283.09 7.7200000000001 269.4 15.89C256.69 23.47 242.3 32.0600000000001 224.01 32.0600000000001S191.32 23.4700000000001 178.62 15.89C164.93 7.72 152 0 131.88 0L128.01 0.07C92.72 0.07 64.01 28.77 64.01 64.05C64.01 86.87 76.43 108.07 96.43 119.36C126.89 136.56 146.46 173.84 165.39 209.89C168.91 216.6 172.41 223.26 175.91 229.64C184.97 246.15 202.95 256 224 256S263.03 246.15 272.1 229.64C275.4100000000001 223.62 278.74 217.32 282.12 210.93C301.52 174.24 321.58 136.3 351.58 119.36C371.58 108.07 384 86.87 384 64.05C384 28.77 355.29 0.07 318.92 0.05zM112 248C112 278.93 86.93 304 56 304S0 278.93 0 248S25.07 192 56 192S112 217.07 112 248zM32 248C32 261.23 42.77 272 56 272S80 261.23 80 248S69.23 224 56 224S32 234.77 32 248zM392 304C361.07 304 336 278.93 336 248S361.07 192 392 192S448 217.07 448 248S422.93 304 392 304zM392 224C378.77 224 368 234.77 368 248S378.77 272 392 272S416 261.23 416 248S405.23 224 392 224zM296 304C326.93 304 352 329.07 352 360S326.93 416 296 416S240 390.93 240 360S265.07 304 296 304zM296 384C309.23 384 320 373.23 320 360S309.23 336 296 336S272 346.77 272 360S282.77 384 296 384zM152 304C182.93 304 208 329.07 208 360S182.93 416 152 416S96 390.93 96 360S121.07 304 152 304zM152 384C165.23 384 176 373.23 176 360S165.23 336 152 336S128 346.77 128 360S138.77 384 152 384z" />
+    <glyph glyph-name="paw-claws"
+      unicode="&#xF702;"
+      horiz-adv-x="512" d=" M318.55 225.39C358.7100000000001 214.83 388.1 260.25 396.01 289.26C404.45 320.2 399.02 350.31 384 368.01L320 448V373.04C304.06 361.78 290.51 342.67 283.98 318.75C272.1400000000001 275.33 287.62 233.53 318.55 225.39zM314.85 310.32C333.0700000000001 377.11 381.4400000000001 357.4 365.1400000000001 297.67C346.9500000000001 230.96 298.5500000000001 250.55 314.85 310.32zM493.5 257.63L448 320V253.06C428.17 246.51 410.49 228.63 403.28 204.6C392.88 169.95 408.05 136.22 437.17 129.26C467.6299999999999 121.97 498.8099999999999 146.37 508.72 179.39C517.5699999999999 208.9 507.17 238.89 493.4999999999999 257.63zM478.07 188.6C465.35 146.25 421.18 152.9500000000001 433.92 195.41C446.61 237.67 490.83 231.13 478.07 188.6zM256 192C176.59 192 64.01 69.24 64.01 -8.25C64.01 -43.16 90.82 -64 135.75 -64C184.59 -64 216.84 -38.92 256.01 -38.92C295.52 -38.92 327.85 -64 376.27 -64C421.2 -64 448.01 -43.15 448.01 -8.25C447.99 69.24 335.4100000000001 192 256 192zM376.26 -32C355.96 -32 338.45 -26.23 319.92 -20.12C300.24 -13.63 279.9 -6.93 256.01 -6.93C232.36 -6.93 212.16 -13.6 192.62 -20.05C173.98 -26.2 156.37 -32.01 135.75 -32.01C96.01 -32.01 96.01 -14.13 96.01 -8.26C96.01 54.65 196.19 160 256 160S415.99 54.65 415.99 -8.25C415.99 -14.12 415.99 -32 376.26 -32zM108.73 204.61C101.52 228.64 83.84 246.52 64.01 253.07V320L18.5 257.63C4.81 238.87 -5.57 208.89 3.29 179.39C13.29 146.09 44.65 122.04 74.84 129.26C103.95 136.23 119.13 169.96 108.73 204.61zM33.94 188.6C21.1 231.3700000000001 65.45 237.4700000000001 78.09 195.41C90.89 152.72 46.59 146.46 33.94 188.6zM193.45 225.39C224.39 233.5300000000001 239.87 275.3300000000001 228.03 318.75C221.5 342.67 207.96 361.79 192.01 373.04V448L128 368.01C112.98 350.31 107.55 320.19 115.99 289.26C123.64 261.21 153.07 214.76 193.45 225.39zM197.15 310.3200000000001C213.35 250.93 165.15 230.5800000000001 146.85 297.67C130.66 357.06 178.85 377.42 197.15 310.3200000000001z" />
+    <glyph glyph-name="paw"
+      unicode="&#xF1B0;"
+      horiz-adv-x="512" d=" M256 224C176.59 224 64 101.24 64 23.75C64 -11.15 90.81 -32 135.74 -32C184.58 -32 216.83 -6.92 256 -6.92C295.51 -6.92 327.85 -32 376.26 -32C421.19 -32 448 -11.15 448 23.75C448 101.24 335.4100000000001 224 256 224zM376.26 0C355.96 0 338.45 5.77 319.91 11.88C300.23 18.37 279.89 25.07 256 25.07C232.35 25.07 212.15 18.4 192.61 11.95C173.97 5.8 156.36 -0.01 135.74 -0.01C96 0 96 17.88 96 23.75C96 86.65 196.19 192 256 192S416 86.65 416 23.75C416 17.88 416 0 376.26 0zM474.83 286.73C471.26 287.5900000000001 467.63 288 464.02 288C438.17 288 412.4 267 403.28 236.61C392.88 201.96 408.05 168.23 437.17 161.27C440.75 160.41 444.37 160 447.98 160C473.83 160 499.6 181 508.72 211.39C519.12 246.04 503.95 279.77 474.83 286.73zM478.07 220.59C472.7 202.7 458.55 192 447.98 192C446.82 192 445.69 192.13 444.61 192.39C440.9100000000001 193.27 437.89 195.71 435.63 199.64C431.5 206.82 430.87 217.19 433.93 227.4C439.3 245.3 453.45 256 464.03 256C465.1900000000001 256 466.3200000000001 255.87 467.4 255.61C471.1 254.73 474.1200000000001 252.28 476.3800000000001 248.36C480.5000000000001 241.18 481.14 230.81 478.0700000000001 220.59zM318.56 257.3900000000001C322.11 256.4600000000001 325.71 256.0100000000001 329.32 256.0100000000001C357.16 256.0100000000001 385.54 282.8300000000001 396.02 321.2600000000001C407.86 364.6800000000001 392.38 406.4700000000001 361.44 414.6200000000001A41.92 41.92 0 0 1 350.68 416.0100000000001C322.8400000000001 416.0100000000001 294.4600000000001 389.1900000000001 283.98 350.7500000000001C272.1400000000001 307.3300000000001 287.62 265.5300000000001 318.56 257.3900000000001zM314.85 342.3200000000001C322.27 369.52 340.43 384 350.68 384C351.5900000000001 384 352.45 383.89 353.29 383.67C357.42 382.58 360.4100000000001 378.67 362.19 375.58C367.27 366.78 370.71 350.1 365.14 329.67C357.72 302.48 339.57 288 329.31 288C328.4 288 327.54 288.11 326.69 288.3300000000001C322.57 289.4100000000001 319.57 293.3200000000001 317.79 296.4100000000001C312.7200000000001 305.2200000000001 309.2800000000001 321.8900000000001 314.85 342.3200000000001zM182.68 256C186.29 256 189.89 256.45 193.44 257.38C224.38 265.52 239.86 307.32 228.02 350.74C217.54 389.18 189.16 416 161.32 416C157.71 416 154.11 415.55 150.56 414.61C119.62 406.4700000000001 104.14 364.67 115.98 321.25C126.46 282.82 154.85 256 182.68 256zM149.8 375.58C151.58 378.67 154.58 382.58 158.7 383.67C159.55 383.89 160.4 384 161.31 384C171.57 384 189.72 369.52 197.1400000000001 342.32C202.71 321.89 199.2700000000001 305.21 194.1900000000001 296.41C192.4100000000001 293.32 189.4200000000001 289.41 185.2900000000001 288.33C184.4400000000001 288.11 183.5900000000001 288 182.68 288C172.4200000000001 288 154.2700000000001 302.48 146.85 329.68C141.28 350.1 144.72 366.78 149.8 375.58zM74.84 161.27C103.96 168.23 119.13 201.96 108.72 236.61C99.6 267 73.83 288 47.98 288C44.36 288 40.74 287.5900000000001 37.17 286.73C8.05 279.77 -7.12 246.04 3.28 211.39C12.4 181 38.18 160 64.02 160C67.64 160 71.26 160.41 74.84 161.27zM33.93 220.6C30.87 230.81 31.5 241.19 35.63 248.36C37.89 252.29 40.91 254.73 44.61 255.61C45.69 255.87 46.82 256 47.98 256C58.55 256 72.7 245.3 78.07 227.41C81.13 217.2 80.5 206.82 76.37 199.64C74.11 195.71 71.09 193.27 67.39 192.39C66.29 192.13 65.19 192 64.02 192C53.45 192 39.3 202.6999999999999 33.93 220.5999999999999z" />
+    <glyph glyph-name="peace"
+      unicode="&#xF67C;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM464 192C464 146.76 449.96 104.77 426.1 70.03L264 199.7V407.19C375.63 398.95 464 305.7 464 192zM232 407.19V199.7L69.9 70.03C46.04 104.77 32 146.76 32 192C32 305.7 120.37 398.95 232 407.19zM90.05 45.15L232 158.7V-23.19C176.07 -19.06 126.1 6.4 90.05 45.15zM264 -23.19V158.7L405.95 45.15C369.9 6.4 319.93 -19.06 264 -23.19z" />
+    <glyph glyph-name="pegasus"
+      unicode="&#xF703;"
+      horiz-adv-x="576" d=" M575.95 361.73C575.94 371.35 572.2800000000001 377.65 566.8100000000001 384.29C572.2 393.74 575.19 404.61 575.19 416C575.19 433.67 560.86 448 543.19 448H432C362.82 448 306.62 392.74 304.41 324.0800000000001C268.72 333.29 241.3 358.79 222.91 400.68C218.91 409.8400000000001 209.85 415.8400000000001 199.88 415.99C189.35 415.79 181.04 410.63 176.75 401.6C165.63 378.06 160 352.92 160 326.91C160 251.53 216.56 183.31 292.87 165.01C297.29 163.95 301.73 166.97 302.57 171.44L305.54 187.14C306.3400000000001 191.36 303.61 195.31 299.44 196.34C237.69 211.53 192 266.4 192 326.91C192 343.2200000000001 194.72 359.1 200.06 374.29C229.38 317.77 276.1 288 335.94 288L336 320C336 373.02 378.98 416 432 416H543.19C543.19 402.71 535.08 391.33 523.5600000000001 386.5L543.95 361.7200000000001L544 267.8400000000001A16 16 0 0 0 533.17 252.69L507.65 243.98C498.3 240.79 491.5 246.75 489.17 250.25L464 288L416 304V203.79C416 177.12 403.36 153.62 384 138.1900000000001V-32H320V122.2L183.57 152.52L151.45 63.05L175.53 -32H118L96.87 55.86A31.697999999999997 31.697999999999997 0 0 0 97.24 72.04L124.87 165.4500000000001C107.45 177.63 96 197.76 96 220.63C96 247.83 112.21 271.12 135.41 281.76C132.22 292.12 130.19 302.77 129.23 313.68A100.202 100.202 0 0 1 78.66 271.86C35.11 271.13 0 235.72 0 192V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V192C32 213.5 46.23 231.48 65.71 237.59C64.75 232.05 64 226.44 64 220.63C64 196.43 72.9 173.3 88.53 155.39L66.56 81.11C63.44 70.34 63.18 59.08 65.76 48.37L86.89 -39.49C90.34 -53.86 103.2 -64 118 -64H175.53C196.48 -64 211.65 -44.25 206.55 -24.14L184.87 61.43L204.16 115.16L288 96.53V-32C288 -49.67 302.33 -64 320 -64H384C401.67 -64 416 -49.67 416 -32V124.19C436.5 145.7 448 173.94 448 203.79V254.31L462.55 232.49C481.66 203.82 512.53 211.82 518 213.69L543.52 222.4C562.96 229.03 576.02 247.3 576.01 267.85L575.95 361.73zM496.01 352C496.01 360.8400000000001 488.85 368 480.01 368S464.01 360.8400000000001 464.01 352S471.17 336 480.01 336S496.01 343.16 496.01 352z" />
+    <glyph glyph-name="pen-alt"
+      unicode="&#xF305;"
+      horiz-adv-x="512" d=" M493.25 391.74L455.74 429.25C443.24 441.75 426.86 448 410.49 448C394.11 448 377.73 441.75 365.24 429.26L297.36 361.38L274.74 384C262.24 396.5 241.98 396.5 229.49 384L99.37 253.88C96.25 250.76 96.25 245.69 99.37 242.57L110.68 231.26C113.8 228.14 118.87 228.14 121.99 231.26L252.1 361.37L274.72 338.75L93.95 157.97A327.038 327.038 0 0 1 0.17 -37.12L0.14 -37.35C-1.45 -51.72 9.88 -64 23.95 -64C29.68 -64 135.01 -57.01 221.98 29.95L493.26 301.23C518.25 326.23 518.25 366.75 493.25 391.74zM199.35 52.58C154.35 7.58 95.42 -21.83 33.25 -30.81C42.38 31.83 71.75 90.51 116.59 135.35L297.36 316.12L297.37 316.11L297.38 316.12L380.14 233.36L199.35 52.58zM470.63 323.86L402.75 255.98L319.98 338.75L387.86 406.63C400.36 419.13 420.6 419.14 433.11 406.63L470.62 369.12C483.13 356.62 483.14 336.38 470.63 323.86z" />
+    <glyph glyph-name="pen-fancy"
+      unicode="&#xF5AC;"
+      horiz-adv-x="512" d=" M424.86 448C401.4000000000001 448 378.01 438.36 361.1500000000001 419.28L169.93 208L84.1 179.38A34.005 34.005 0 0 1 62.6 157.88L0 -30L33.99 -64L221.78 -1.38A34.005 34.005 0 0 1 243.28 20.12L271.88 106L483.07 297.3C544.5 351.62 500.08 448 424.86 448zM212.93 30.25C212.73 29.66 67.51 -19.09 67.51 -19.09L136.14 49.5699999999999C138.7 48.9099999999999 141.17 47.9999999999999 143.94 47.9999999999999C161.61 47.9999999999999 175.93 62.3299999999999 175.93 79.9999999999999S161.6100000000001 111.9999999999999 143.94 111.9999999999999S111.95 97.67 111.95 79.9999999999999C111.95 77.23 112.86 74.7599999999999 113.52 72.1999999999999L44.88 3.5299999999999S93.6 148.82 94.2 149.02L182.74 178.55L242.43 118.84L212.93 30.25zM461.6 321.03L264.26 142.26L206.17 200.37L385.11 398.08A53.057 53.057 0 0 0 424.86 416C453.96 416 480.73 390.45 479.77 359.39C479.32 344.61 472.96 331.08 461.6 321.03z" />
+    <glyph glyph-name="pen-nib"
+      unicode="&#xF5AD;"
+      horiz-adv-x="512" d=" M493.87 352.4L416.4 429.87C404.32 441.96 388.48 448 372.64 448C356.8 448 340.96 441.96 328.88 429.87L236.43 337.42L136.6 309.2100000000001A64.003 64.003 0 0 1 93.29 267.86L0 -12L52 -64L331.86 29.29A64.003 64.003 0 0 1 373.2100000000001 72.6L401.42 172.43L493.87 264.88C518.04 289.05 518.04 328.23 493.87 352.4zM342.42 81.3A31.985 31.985 0 0 0 321.74 59.64L60.64 -27.39L59.94 -26.69L175.7 89.07C185.22 83.45 196.17 80 208 80C243.28 80 272 108.7 272 144S243.28 208 208 208S144 179.3 144 144C144 132.17 147.45 121.21 153.07 111.69L37.32 -4.06L36.61 -3.36L123.64 257.74A31.986 31.986 0 0 0 145.3 278.42L245.13 306.63L246.38 306.99L370.98 182.3900000000001L370.63 181.1400000000001L342.42 81.3000000000001zM176 144C176 161.64 190.34 176 208 176S240 161.64 240 144S225.66 112 208 112S176 126.36 176 144zM471.25 287.51L391.19 207.45L271.44 327.18L351.51 407.24C363.18 418.91 382.09 418.93 393.78 407.24L471.25 329.77C482.9 318.12 482.9 299.16 471.25 287.51z" />
+    <glyph glyph-name="pen-square"
+      unicode="&#xF14B;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM348.9 340.3C333.3 355.9 308 355.9 292.3 340.3L72 120L64.1 48.6C63 39 71.1 31 80.7 32L152 40L372.3 260.3C387.9000000000001 275.9 387.9000000000001 301.2000000000001 372.3 316.9L348.9000000000001 340.3zM137.3 70.6L98.2 66.3L102.5 105.4L265.2 268.1L299.9 233.4000000000001L137.3 70.6zM349.7000000000001 282.9000000000001L322.7000000000001 255.9000000000001L288.0000000000001 290.6L315.0000000000001 317.6C318.1000000000001 320.7000000000001 323.2000000000001 320.7000000000001 326.3000000000001 317.6L349.7000000000001 294.2000000000001C352.8000000000001 291.1 352.8000000000001 286 349.7000000000001 282.9z" />
+    <glyph glyph-name="pen"
+      unicode="&#xF304;"
+      horiz-adv-x="512" d=" M493.25 391.74L455.74 429.25C443.25 441.75 426.87 448 410.49 448S377.73 441.75 365.23 429.26L12.85 76.88L0.15 -37.34C-1.45 -51.72 9.88 -64 23.95 -64C24.84 -64 25.73 -63.95 26.64 -63.85L140.78 -51.24L493.26 301.24C518.25 326.23 518.25 366.75 493.25 391.74zM126.09 -20.68L33.06 -30.99L43.42 62.18L307.31 326.07L390.08 243.3L126.09 -20.68zM470.63 323.86L412.7 265.93L329.93 348.7L387.86 406.63C393.9000000000001 412.67 401.94 416 410.49 416C419.04 416 427.07 412.67 433.12 406.63L470.63 369.12C483.1 356.64 483.1 336.3400000000001 470.63 323.86z" />
+    <glyph glyph-name="pencil-alt"
+      unicode="&#xF303;"
+      horiz-adv-x="512" d=" M493.255 391.764L455.765 429.254C430.772 454.247 390.25 454.248 365.255 429.254L12.838 76.838L0.151 -37.346C-1.547 -52.632 11.371 -65.549 26.655 -63.85L140.839 -51.163L493.256 301.254C518.2479999999999 326.248 518.2479999999999 366.771 493.255 391.764zM164.686 100.687C170.935 94.438 181.065 94.439 187.313 100.687L368 281.373L398.0590000000001 251.314L174 27.255V62H126V110H91.255L315.314 334.059L345.373 304L164.686 123.313C158.437 117.065 158.437 106.935 164.686 100.687zM126.147 -20.598L67.152 -27.153L36.847 3.152L43.402 62.1470000000001L63.255 82H98V34H146V-0.745L126.147 -20.598zM470.627 323.8820000000001L420.6860000000001 273.9410000000001L337.9410000000001 356.6860000000001L387.8820000000001 406.6270000000001C400.3870000000001 419.1320000000001 420.6300000000001 419.1340000000001 433.1370000000001 406.6270000000001L470.6270000000001 369.1370000000001C483.133 356.6310000000001 483.1340000000001 336.3900000000001 470.6270000000001 323.8820000000001z" />
+    <glyph glyph-name="pencil-paintbrush"
+      unicode="&#xF618;"
+      horiz-adv-x="512" d=" M433.43 82.65C412.87 136.84 378.42 156.48 339.5 162.31L497.93 320.76C516.69 339.5199999999999 516.6800000000001 369.93 497.93 388.69L452.68 433.94C443.3 443.31 431 448 418.71 448S394.12 443.31 384.74 433.93L240.22 289.43L158.15 412.15C140.34 437.56 116.87 448 93.48 448C28.72 448 -35.44 367.98 22.83 303.95L133.26 182.49L19.09 68.34L0.35 -39.11C-2.37 -54.74 11.57 -66.01 24.94 -63.67L132.38 -44.83L226.09 48.89C232.1 3.98 260.26 -64 368 -64C469.33 -64 512 17.42 512 110.07C500.99 102.55 462.34 71.42 449.85 71.42C442.43 71.42 436.0800000000001 75.66 433.43 82.65zM407.36 411.3C411.45 415.39 425.9700000000001 415.39 430.06 411.3L475.31 366.06C481.56 359.81 481.56 349.64 475.31 343.39L429.28 297.36L361.34 365.3L407.36 411.3zM46.51 325.48C31.67 341.79 28.18 359.16 36.12 377.12C45.92 399.29 70.58 416 93.48 416C108.68 416 121.62 408.53 131.95 393.78L217.15 266.36L155.92 205.14L46.51 325.48zM116.89 -15.06L34.5 -29.5L48.88 52.87L338.71 342.67L406.65 274.73L116.89 -15.06zM368 -32C328.7200000000001 -32 299.46 -21.63 281.04 -1.18C261.8300000000001 20.15 254.83 52.3 257.3 80.1L274.17 96.97L314.2000000000001 132.5600000000001C385.8900000000001 127.9500000000001 396.6500000000001 89.39 403.5100000000001 71.3000000000001C410.8400000000001 51.95 429.0300000000001 39.4300000000001 449.8400000000001 39.4300000000001C456.41 39.4300000000001 463.01 40.9800000000001 470.5600000000001 44.2900000000001C458.15 5.47 430.08 -32 368 -32z" />
+    <glyph glyph-name="pencil-ruler"
+      unicode="&#xF5AE;"
+      horiz-adv-x="512" d=" M502.71 79.86L379.88 202.69L429.28 252.09L497.9299999999999 320.75C516.6899999999999 339.51 516.68 369.92 497.9299999999999 388.68L452.6799999999999 433.93C443.3 443.31 431 448 418.71 448S394.12 443.31 384.74 433.93L316.0900000000001 365.29L266.6900000000001 315.89L143.87 438.71C137.68 444.9 129.56 448 121.44 448S105.21 444.9 99.01 438.71L9.31 349C-3.07 336.61 -3.08 316.53 9.31 304.14L132.11 181.34L19.1 68.34L0.34 -39.11C-2.38 -54.74 11.56 -66.01 24.93 -63.67L132.37 -44.83L245.31 68.1299999999999L368.14 -54.7A31.621 31.621 0 0 1 390.56 -63.99C398.68 -63.99 406.8 -60.89 412.99 -54.7L502.71 35C515.1 47.39 515.1 67.47 502.71 79.86zM407.36 411.3C411.45 415.39 425.9600000000001 415.39 430.05 411.3L475.3 366.06C481.55 359.81 481.55 349.64 475.3 343.39L429.27 297.36L361.33 365.3L407.36 411.3zM31.93 326.37L121.44 415.89L177.39 360L138.36 320.9700000000001C135.24 317.85 135.24 312.78 138.36 309.66L149.67 298.35C152.79 295.23 157.86 295.23 160.98 298.35L200.02 337.39L244.12 293.34L154.62 203.85L31.93 326.37zM116.89 -15.06L34.5 -29.51L48.87 52.86L338.7 342.6600000000001L406.64 274.7200000000001L116.89 -15.0599999999999zM390.77 -32.08L267.91 90.72L357.38 180.2000000000001L401.5 136.1300000000001L362.35 96.97C359.23 93.85 359.23 88.78 362.35 85.66L373.6600000000001 74.35C376.7800000000001 71.23 381.85 71.23 384.9700000000001 74.35L424.1400000000001 113.5200000000001L480.08 57.64L390.7700000000001 -32.0799999999999z" />
+    <glyph glyph-name="pencil"
+      unicode="&#xF040;"
+      horiz-adv-x="512" d=" M493.255 391.764L455.765 429.254C430.772 454.247 390.25 454.248 365.255 429.254L12.838 76.838L0.151 -37.346C-1.547 -52.632 11.371 -65.549 26.655 -63.85L140.839 -51.163L493.256 301.254C518.2479999999999 326.248 518.2479999999999 366.771 493.255 391.764zM398.059 251.314L174 27.255V62H126V110H91.255L315.314 334.059L398.059 251.314zM126.147 -20.598L67.152 -27.153L36.847 3.152L43.402 62.147L63.255 82H98V34H146V-0.745L126.147 -20.598zM470.627 323.882L420.6860000000001 273.9410000000001L337.9410000000001 356.6860000000001L387.8820000000001 406.627C400.3870000000001 419.132 420.6300000000001 419.134 433.1370000000001 406.627L470.6270000000001 369.137C483.133 356.631 483.1340000000001 336.39 470.6270000000001 323.882z" />
+    <glyph glyph-name="pennant"
+      unicode="&#xF456;"
+      horiz-adv-x="576" d=" M552 256.7C522 250.5 436.4 244.2 291.3 320.3C204.3 366 133.2 372.1 81.3 365.5C90.3 374.3 96 386.5 96 400C96 426.5 74.5 448 48 448S0 426.5 0 400C0 379.2 13.4 361.6 32 354.9V-56C32 -60.4 35.6 -64 40 -64H56C60.4 -64 64 -60.4 64 -56V23.6C104.2 50.8 166 80 243.5 83.8C272.2 85.2 319.5 89.6 381.4 102.6C385.8 103.5 490.8 126.4 571.4 224.3C583.1999999999999 238.6 570.6999999999999 260.5 552 256.7000000000001zM48 416C56.8 416 64 408.8 64 400S56.8 384 48 384S32 391.2 32 400S39.2 416 48 416zM374.9 133.9C315 121.4 269.5 117.1 241.9 115.7C157.1 111.5 96.6 80.6 64 61.5V330.3C111.2 340.9 183.5 340.8 276.4 292C395.3 229.6 478.7 219.6 525.9 221.6C456.4 151.9 375.8 134.1 374.9 133.9z" />
+    <glyph glyph-name="people-carry"
+      unicode="&#xF4CE;"
+      horiz-adv-x="640" d=" M635.9 3.6L583.6999999999999 120.9C603.0999999999999 142.9 608.6999999999999 169.1 603.0999999999999 193.3000000000001L584.6999999999999 273.5000000000001C579.6999999999999 295.2000000000001 565.4 313.5000000000001 546.3 324.6C570.8 348.6 574.6999999999999 385.0000000000001 557.6999999999999 413.2000000000001C542.8 437.8 517.7 448 496 448C462.8 448 434.1 425.5 426.1 393.2C422.6 379.1 419.9000000000001 341.1 455.4 316.8C438.1 303.6 424.6 286.3 416.0000000000001 266.3V288C416.0000000000001 296.8 408.8000000000001 304 400.0000000000001 304H240C231.2 304 224 296.8 224 288V266.2C215.5 286.2 202 303.5 184.6 316.7C220 341 217.4 378.9 213.9 393.1C206 425.5 177.2 448 144 448C122.2 448 97.2 437.7 82.4 413.3C65.4 385.2 69.2 348.8 93.8 324.7C74.7 313.5 60.4 295.3 55.4 273.6L37 193.4C31.5 169.3 36.8 143.1 56.4 121L4.1 3.6C-6.6 -20.5 4.3 -49 28.4 -59.7C57.4 -72.5 83.3 -54.5 91.8 -35.4L121.5 31.3L128.4 -22C129.5 -30.6 141.4 -68.1 181.7 -63.5C208.4 -60 227 -35.9 223.7 -9.7L213.2 71.8C211.6 84.5 206.2 96.4 197.7 106L156.5 152.6L160.7 169.5C165.3 163.5 170.9 158.1 177.4 153.4C179.1 152.2 174.7 155 225.1 123C227.3 116.8 233.1 112.2 240 112.2H400C407 112.2 412.8 116.7 414.9 123C465.3 155.1 461 152.2 462.6 153.4C469.1 158.2 474.7 163.6 479.3 169.5L483.4999999999999 152.6L442.3999999999999 106C433.8999999999999 96.4 428.5 84.5 426.8999999999999 71.8L416.3999999999999 -9.7C413 -35.9 431.5999999999999 -60 458.3999999999999 -63.5C498.8999999999999 -68.1 510.4999999999999 -30.8 511.6999999999999 -22L518.5999999999999 31.3L548.3 -35.4C556.8 -54.5 582.6999999999999 -72.5 611.6999999999999 -59.7C635.6999999999999 -48.9 646.5999999999999 -20.5 635.9 3.6zM457.2 385.6C461.6 403.8 478 416 496 416C520.4 416 541.4 393.2 534.9 366.5C530.3 348.2 514 336 496 336C471.6 336 450.6 358.9 457.2 385.6zM384 272.1V217L358.2 200.6C339 188.4 331.6 164.7 338.9 144.1H301.2C308.5 164.7000000000001 301 188.3 281.9 200.6L256 216.9V272H384zM144 416C162 416 178.3 403.8 182.8 385.6C189.5 358.4 168 336 144 336C126 336 109.7 348.2 105.2 366.4C98.5 393.6 120 416 144 416zM62.6 -22.4C59 -30.5 49.6 -34.1 41.5 -30.5C33.4 -26.9 29.8 -17.5 33.4 -9.4L79.6 94.5L102.9 68.1L62.6 -22.4zM178.4 203.2L167.1 237C164.8 243.9 161.1 249.8 157.8 254.2C155.1 257.8 149.5 256.6 148.4 252.3L121.3 144L173.7 84.7C177.9 79.9 180.6 73.9 181.5 67.6L192 -13.9C193.1 -22.5000000000001 187.1 -30.7 178.5 -31.8C164.4 -33.6 160.6 -20.8 160.3 -18L151.1 53.8C150.3 60.1 147.6 66.1 143.3 70.9L79.1 143.6C68.8 155.2000000000001 64.8 171.1 68.3 186.2000000000001L86.7 266.4000000000001C90.2 281.4000000000001 100.7 294.1 114.9 300.2000000000001C137.9 310.1 156 298.1 156.6 297.8000000000001C176 286.4000000000001 190.5 268.4000000000001 197.6 247.1L209.3 212.2C211.1 209.9 212.8 207.7 214.6 205.4L264.8 173.6C272.2 168.9 274.5 159 269.7 151.5C264.7 143.7 254.7 142.1 247.6 146.6L196.5 179.1C187.4 185.7000000000001 181.5 193.8 178.4 203.2zM496.9 71C492.7 66.2 490 60.3 489.1 53.9L479.9 -17.9C479.5 -20.7 475.7 -33.5000000000001 461.7 -31.7C453.1 -30.6 447.1 -22.5000000000001 448.2 -13.8000000000001L458.7 67.6999999999999C459.5 73.9999999999999 462.2 79.9999999999999 466.5 84.8L518.9 144.1L491.8 252.3C490.6999999999999 256.7 485.1 257.8 482.4 254.2C479.1 249.8 475.4 243.9 473.1 237L461.8 203.2C458.6999999999999 193.8 452.8 185.7 443.9 179.1L392.8 146.6C385.8 142.2 375.7 143.6 370.7 151.5C366 159 368.2 168.8 375.5999999999999 173.6L425.7999999999999 205.4C427.5999999999999 207.7 429.2999999999999 209.9 431.0999999999999 212.2L442.7999999999999 247.1C449.8999999999999 268.4 464.3999999999999 286.4 483.7999999999999 297.8C484.2999999999999 298.1 502.4999999999999 310.1 525.4999999999999 300.2000000000001C539.6999999999999 294.1 550.2999999999998 281.4 553.6999999999999 266.4000000000001L572.0999999999999 186.2000000000001C575.5999999999999 171.1 571.4999999999999 155.3000000000001 561.3 143.6L496.9 71zM598.5 -30.5C590.4 -34.1 581 -30.5 577.4 -22.4L537.1 68.2000000000001L560.4 94.6L606.6 -9.3C610.2 -17.4 606.6 -26.9 598.5 -30.4999999999999z" />
+    <glyph glyph-name="percent"
+      unicode="&#xF295;"
+      horiz-adv-x="384" d=" M96 224C149 224 192 267 192 320S149 416 96 416S0 373 0 320S43 224 96 224zM96 380C129.1 380 156 353.1 156 320S129.1 260 96 260S36 286.9 36 320S62.9 380 96 380zM288 160C235 160 192 117 192 64S235 -32 288 -32S384 11 384 64S341 160 288 160zM288 4C254.9 4 228 30.9 228 64S254.9 124 288 124S348 97.1 348 64S321.1 4 288 4zM347.8 416H378C383 416 385.8 410.3 382.8 406.4L41 -29.6C39.9 -31.1 38.1 -32 36.2 -32H6C1 -32 -1.8 -26.3 1.2 -22.4L343 413.6C344.1 415.1 345.9 416 347.8 416z" />
+    <glyph glyph-name="percentage"
+      unicode="&#xF541;"
+      horiz-adv-x="320" d=" M317.6600000000001 315.7200000000001C320.7800000000001 318.8400000000001 320.7800000000001 323.91 317.6600000000001 327.03L295.0300000000001 349.66C291.9100000000001 352.78 286.8400000000001 352.78 283.7200000000001 349.66L2.34 68.29C-0.78 65.17 -0.78 60.1 2.34 56.98L24.97 34.35C28.09 31.23 33.16 31.23 36.28 34.35L296.5 294.56L317.6600000000001 315.7200000000001zM64 224C80.38 224 96.76 230.25 109.25 242.74C134.24 267.73 134.24 308.26 109.25 333.25C96.76 345.75 80.38 352 64 352S31.24 345.75 18.74 333.25C-6.25 308.26 -6.25 267.73 18.74 242.74C31.24 230.25 47.62 224 64 224zM41.38 310.63C47.42 316.67 55.45 320 64 320S80.58 316.67 86.63 310.63C99.11 298.15 99.1 277.85 86.63 265.38C80.59 259.3300000000001 72.55 256 64 256C55.45 256 47.42 259.3300000000001 41.38 265.37C28.9 277.85 28.9 298.15 41.38 310.63zM256 160C239.62 160 223.24 153.75 210.74 141.25C185.75 116.26 185.75 75.73 210.74 50.74C223.24 38.25 239.62 32 256 32S288.76 38.25 301.25 50.74C326.24 75.73 326.24 116.26 301.25 141.25C288.76 153.75 272.38 160 256 160zM278.63 73.37C272.59 67.33 264.55 64 256 64C247.45 64 239.42 67.33 233.38 73.37C220.9 85.85 220.9 106.15 233.38 118.63C239.42 124.67 247.46 128 256 128C264.55 128 272.58 124.67 278.63 118.63C291.11 106.15 291.1 85.85 278.63 73.37z" />
+    <glyph glyph-name="person-booth"
+      unicode="&#xF756;"
+      horiz-adv-x="576" d=" M224.1 -56C224.1 -60.4 227.7 -64 232.1 -64H248.1C252.5 -64 256.1 -60.4 256.1 -56V128H224.1V-56zM544 448H256.1C238.4000000000001 448 224.1 433.7 224.1 416V288H256.1V416L335.3 210.9C329.9000000000001 189.7 311.8 117.7 311.8 93.8C311.8 59.7 339.5 32 373.5 32C385.8 32 397.5 35.9 407.5 42.6C416.7 36 427.9 32 440 32C455.7 32 469.8 38.5 480 48.9C490.2 38.5 504.3 32 520 32C528.6 32 536.7 34.1 544 37.6V-56C544 -60.4 547.6 -64 552 -64H568C572.4 -64 576 -60.4 576 -56V416C576 433.7 561.7 448 544 448zM373.5 64C357.1 64 343.8 77.4 343.8 93.8C343.8 110.7 358.4000000000001 172.7000000000001 367.6 207.8C368.4000000000001 211 368.3 214.5 367.1 217.6L290.9 416H384.1V88C384.1 81 385.5 74.4 387.9 68.3C383.4 65.7 378.7 64 373.5 64zM464 88C464 74.7 453.3 64 440 64S416 74.7 416 88V416H464V88zM544 88C544 74.7 533.3 64 520 64C506.8 64 496 74.7 496 88V416H544V88zM240.1 256H195.8L155.3 296.6C146.8 305.1 136.7 311.2 125.7 315.1C146.1 327.8 159.8 350.3 159.8 376C159.8 415.7 127.5 448 87.8 448S15.8 415.7 15.8 376C15.8 349.8 30 327 51 314.4C40.8 310.4 31.4 304.5 23.4 296.5C8.3 281.4 0 261.2 0.1 239.8L0.2 144L0 -15.9C0 -42.4 21.5 -63.9 47.9 -64C73.4 -64 94.3 -44.1 95.9 -19C97.5 -44.1 118.3 -64 143.8 -64C170.3 -64 191.8 -42.5 191.8 -16V40.5C191.8 77.3 178.3 83.7 143.8 117.4V173.2C154.9 164.8 168.6 160.1 182.6 160.1H240.2C266.7000000000001 160.1 288.2000000000001 181.6 288.2000000000001 208.1S266.6 256 240.1 256zM47.8 376C47.8 398.1 65.7 416 87.8 416S127.8 398.1 127.8 376S109.9 336 87.8 336S47.8 353.9 47.8 376zM240.1 192H182.5C174.1 192 165.9 195.4 159.9 201.4L111.7 249.6V103.9C153.8000000000001 62.7000000000001 159.7000000000001 61.8 159.7000000000001 40.5000000000001V-16C159.7000000000001 -24.8 152.5000000000001 -32 143.7000000000001 -32S127.7000000000001 -24.8 127.7000000000001 -16C127.7000000000001 62.2 143.2000000000001 29.8 64.1000000000001 105.9L64 -16C64 -24.8 56.8 -32 48 -32S32 -24.8 32 -16L32.2 144L32 239.9C32 266.1 53.2 288 80 288H98.7C111.5 288 123.6 283 132.6 273.9L182.5 224H240.1C248.9 224 256.1 216.8 256.1 208S249.0000000000001 192 240.1 192z" />
+    <glyph glyph-name="person-carry"
+      unicode="&#xF4CF;"
+      horiz-adv-x="384" d=" M368 352H208C199.2 352 192 344.8 192 336V259.9L139.3 312.6C136.9 315 134.2 316.8 131.6 318.9000000000001C159.7 340.4000000000001 163 372.4000000000001 157.9 393.3000000000001C150 425.5 121.2 448 88 448C41.7 448 6.8 404.5 18.1 358.8C21.5 345 28.8 333.2 38.5 324C15.6 309.9 0 284.6 0 256V-16C0 -42.5 21.5 -64 48 -64S96 -42.5 96 -16V50L99.6 46.9L112.7 -24.6C117.1 -48.4 140.5 -68.4 168.7 -63.1C194.4 -58.4 212 -33.6 207.1 -7.3L193 69.3C189.6 87.6 180 104.4 165.8 116.4L128 148.9V188.1L156.1 160H368C376.8 160 384 167.1999999999999 384 176V336C384 344.8 376.8 352 368 352zM88 416C106 416 122.3 403.8 126.8 385.5C133.5 358.4 112 336 88 336C70 336 53.7 348.2 49.2 366.5C42.5 393.6 64 416 88 416zM64 -16C64 -24.8 56.8 -32 48 -32S32 -24.8 32 -16V104.8L64 77.4V-16zM169.4 192L109.7 251.7C108.1 253.3 106.1 254.1 104.1 254.1C100 254.1 96 250.9 96 246.1V134.2L145.2 92.1C153.8 84.8 159.6 74.6 161.7 63.4999999999999L175.8 -13.1C177.4 -21.8 171.6 -30.1 163 -31.7C162 -31.9 161 -32.0000000000001 160.1 -32.0000000000001C152.5 -32.0000000000001 145.8 -26.6000000000001 144.4 -18.9L130.3 57.6C129.6 61.4999999999999 127.5 65.1 124.5 67.7L48.9 132.4C38.1 141.7 32 154.9 32 169V256C32 281.6 52.3 303.2 77.9 304H80C95.4 304 107.8 298.9 116.7 289.9L182.6 224H224C232.8 224 240 216.8 240 208S232.8 192 224 192H169.4zM352 192H269.1C270.9000000000001 197 272 202.4 272 208C272 234.5 250.5 256 224 256V320H352V192z" />
+    <glyph glyph-name="person-dolly-empty"
+      unicode="&#xF4D1;"
+      horiz-adv-x="512" d=" M507.6 56.2C506.5 60.5 502.1 63 497.8 61.9L348 21.8C339.1 46.4 315.7 64.1 288 64.1C286.5 64.1 285.1 63.8 283.6 63.7000000000001L254.7 171.5000000000001C265.2000000000001 180.3000000000001 272 193.4000000000001 272 208.1000000000001C272 231.7000000000001 254.8 251.3000000000001 232.3 255.3000000000001L207.2 346.2000000000001C206.1 350.5000000000001 201.7 353.0000000000001 197.4 351.9000000000001L181.9 347.8000000000001C177.6 346.7000000000001 175.1 342.3000000000001 176.2 338.0000000000001L198.8 256.2000000000001H195.8L139.2 312.8000000000001C136.8 315.2000000000001 134.1 317.0000000000001 131.5 319.1000000000002C138.6 324.5000000000001 144.7 331.1000000000002 149.5 339.0000000000001C159.5 355.4000000000001 162.4 374.8000000000002 157.8000000000001 393.5000000000001C150 425.5 121.2 448 88 448C66.3 448 41.2 437.7 26.4 413.3C16.4 396.9 13.5 377.5 18.1 358.8C21.5 345 28.8 333.2 38.5 324C15.6 309.9 0 284.6 0 256V-16C0 -42.5 21.5 -64 48 -64S96 -42.5 96 -16V50L99.6 46.9L112.7 -24.6C117.1 -48.4 140.5 -68.4 168.7 -63.1C181.2 -60.8 192.1 -53.7 199.4 -43.2C206.7 -32.6 209.4 -19.9 207.1 -7.3000000000001L193 69.3C189.6 87.6 180 104.4 165.8 116.4L128 148.9V188.1L156.1 160H224C224.2 160 224.4 160.1 224.6 160.1L253.1 53.6C235.6 42.2 224 22.5 224 0C224 -35.3 252.7 -64 288 -64C319.7 -64 345.8 -40.9 350.9 -10.6L506.1 31C510.4 32.1 512.9 36.5 511.8 40.8L507.6 56.2zM88 416C106 416 122.3 403.8 126.8 385.5C133.5 358.4 112 336 88 336C70 336 53.7 348.2 49.2 366.5C42.5 393.6 64 416 88 416zM64 -16C64 -24.8 56.8 -32 48 -32S32 -24.8 32 -16V104.8L64 77.4V-16zM169.4 192L109.7 251.7C108.1 253.3 106.1 254.1 104.1 254.1C100 254.1 96 250.9 96 246.1V134.2L145.2 92.1C153.8 84.8 159.6 74.6 161.7 63.4999999999999L175.8 -13.1C177.4 -21.8 171.6 -30.1 163 -31.7C162 -31.9 161 -32.0000000000001 160.1 -32.0000000000001C152.5 -32.0000000000001 145.8 -26.6000000000001 144.4 -18.9L130.3 57.6C129.6 61.4999999999999 127.5 65.1 124.5 67.7L48.9 132.4C38.1 141.7 32 154.9 32 169V256C32 281.6 52.3 303.2 77.9 304H80C95.4 304 107.8 298.9 116.7 289.9L182.6 224H224C232.8 224 240 216.8 240 208S232.8 192 224 192H169.4zM288 -32C270.4 -32 256 -17.6 256 0S270.4 32 288 32S320 17.6 320 0S305.6 -32 288 -32z" />
+    <glyph glyph-name="person-dolly"
+      unicode="&#xF4D0;"
+      horiz-adv-x="512" d=" M507.6 56.2C506.5 60.5 502.1 63 497.8 61.9L477.5 56.5L436.8 208.3C432.2 225.4 414.7 235.5 397.6 230.9L270.5 196.9C271.4 200.5 272 204.2 272 208.1C272 231.7 254.8 251.3 232.3 255.3L208 346.1C206.9 350.4 202.5 352.9 198.2 351.8L182.7 347.7C178.4 346.6 175.9 342.2 177 337.9L198.8 256.1H195.8L139.2 312.7000000000001C136.8 315.1 134.1 316.9 131.5 319C138.6 324.4000000000001 144.7 331 149.5 338.9000000000001C159.5 355.3000000000001 162.4 374.7000000000001 157.8000000000001 393.4000000000001C150 425.5 121.2 448 88 448C66.3 448 41.2 437.7 26.4 413.3C16.4 396.9 13.5 377.5 18.1 358.8C21.5 345 28.8 333.2 38.5 324C15.6 309.9 0 284.6 0 256V-16C0 -42.5 21.5 -64 48 -64S96 -42.5 96 -16V50L99.6 46.9L112.7 -24.6C117.1 -48.4 140.5 -68.4 168.7 -63.1C181.2 -60.8 192.1 -53.7 199.4 -43.2C206.7 -32.6 209.4 -19.9 207.1 -7.3000000000001L193 69.3C189.6 87.6 180 104.4 165.8 116.4L128 148.9V188.1L156.1 160H224C224.2 160 224.4 160.1 224.6 160.1L253.1 53.6C235.6 42.2 224 22.5 224 0C224 -35.3 252.7 -64 288 -64C319.7 -64 345.8 -40.9 350.9 -10.6L506.1 31C510.4 32.1 512.9 36.5 511.8 40.8L507.6 56.2zM88 416C106 416 122.3 403.8 126.8 385.5C133.5 358.4 112 336 88 336C70 336 53.7 348.2 49.2 366.5C42.5 393.6 64 416 88 416zM64 -16C64 -24.8 56.8 -32 48 -32S32 -24.8 32 -16V104.8L64 77.4V-16zM169.4 192L109.7 251.7C108.1 253.3 106.1 254.1 104.1 254.1C100 254.1 96 250.9 96 246.1V134.2L145.2 92.1C153.8 84.8 159.6 74.6 161.7 63.4999999999999L175.8 -13.1C177.4 -21.8 171.6 -30.1 163 -31.7C162 -31.9 161 -32.0000000000001 160.1 -32.0000000000001C152.5 -32.0000000000001 145.8 -26.6000000000001 144.4 -18.9L130.3 57.6C129.6 61.4999999999999 127.5 65.1 124.5 67.7L48.9 132.4C38.1 141.7 32 154.9 32 169V256C32 281.6 52.3 303.2 77.9 304H80C95.4 304 107.8 298.9 116.7 289.9L182.6 224H224C232.8 224 240 216.8 240 208S232.8 192 224 192H169.4zM288 -32C270.4 -32 256 -17.6 256 0S270.4 32 288 32S320 17.6 320 0S305.6 -32 288 -32zM348 21.8C339.1 46.4 315.7 64.1 288 64.1C286.5 64.1 285.1 63.8 283.6 63.7000000000001L257.7000000000001 160.3000000000001L405.9 200L446.6 48.2L348 21.8z" />
+    <glyph glyph-name="person-sign"
+      unicode="&#xF757;"
+      horiz-adv-x="512" d=" M501.5 381.4L429.8 407.5L439.3 430.7C441 434.8 439.1 439.5 435 441.2L420.2 447.4C416.1 449.1 411.4 447.2 409.7 443.1L399.7 418.4L321.1 447C312.2000000000001 450.2 303.1 444.3 300.6 437.4L264.1 337C261.1 328.7 265.3 319.5 273.7000000000001 316.5L347.3000000000001 289.7L324.8000000000001 234.3C321.1000000000001 236.1 317.5000000000001 238.2 313.3000000000001 239.1L253.6 251L243.5 267.1C231.6 286.1 214.7 300.6 195.1 309.6C207.9 322.6 215.8 340.4 215.8 360C215.8 399.7 183.5 432 143.8 432S72 399.7 72 360C72 339.2 81 320.6 95.1 307.4C72.3 296.1 53.2 277.7000000000001 41.3 253.9L5 181.5C-6.8 157.8 2.8 128.9 26.5 117.1C27.2 116.8 53 103 77.5 122.1L49.1 -5.6C43.4 -31.4 59.7 -57.1 85.5 -62.9C89.1 -63.7 92.5 -64 95.9 -64C118.2 -64 137.9 -48.2 142.7 -26.4L159.9 51.1L175.8 31.2V-16C175.8 -42.5 197.3 -64 223.8 -64S271.8 -42.5 271.8 -16V36.8C271.8 54.9 265.6 72.6 254.3 86.8L207.8 144.9V165.2000000000001C214.1 162.0000000000001 220.9 159.7000000000001 227.9 158.3000000000001L288.7 146.1000000000001L288.3999999999999 145.3000000000001C286.7 141.2000000000001 288.5999999999999 136.5000000000001 292.7 134.8000000000001L307.5 128.6000000000001C311.6 126.9000000000001 316.3 128.8000000000001 318 132.9000000000001L324.7 149.5000000000001C337.7 155.9000000000001 347.8 167.6000000000001 350.8999999999999 182.6000000000001C352.7 191.4000000000002 351.7999999999999 200.4000000000002 348.7999999999999 208.6000000000001L377.3999999999999 278.8000000000002L453.9999999999999 250.9000000000001C462.8999999999999 247.6000000000001 471.9999999999999 253.7000000000002 474.4999999999999 260.5000000000001L511 360.9C514.1 369.2 509.8 378.3 501.5 381.4zM143.9 400C166 400 183.9 382.1 183.9 360S166 320 143.9 320S103.9 337.9 103.9 360S121.8 400 143.9 400zM301.1 176.3H300.7000000000001L234.3000000000001 189.6C221.4 192.2 210 200.1 203 211.2C188.4 234.5000000000001 186.7 239.2 175.9 246.8V133.6L229.4000000000001 66.7000000000001C236.2000000000001 58.2000000000001 239.9000000000001 47.6 239.9000000000001 36.7V-16C239.9000000000001 -24.8 232.7000000000001 -32 223.9 -32S207.9 -24.8 207.9 -16V36.8C207.9 40.4 206.7000000000001 44 204.4 46.8L152.2 112H140.7L111.5 -19.5C109.8 -27.2 101.9 -33.7 92.4 -31.7C83.8 -29.8 78.3 -21.2 80.2 -12.6L111.8 129.7000000000001V242C106.5 237.3 101.7 232 98.4 225.3L62.2 152.8C59.1 146.6 50.1 140.9 40.7 145.6C32.8 149.6 29.6 159.2000000000001 33.5 167.1L69.7 239.6C84.6 269.4000000000001 114.6 288 147.9 288C175.9 288 201.4 273.8000000000001 216.2 250.1L229.9 228.2C232.2 224.5 236 221.9 240.3 221L306.7 207.7C308.9 207.3 310.9 206.4 312.6 205.2L301.1 176.3zM449.9000000000001 286.4L299.6 341.1L325.2000000000001 411.5L475.5000000000001 356.8L449.9000000000001 286.4z" />
+    <glyph glyph-name="phone-office"
+      unicode="&#xF67D;"
+      horiz-adv-x="576" d=" M352 128H320C302.34 128 288 113.64 288 96V64C288 46.36 302.34 32 320 32H352C369.6600000000001 32 384 46.36 384 64V96C384 113.64 369.6600000000001 128 352 128zM352 64H320V96H352V64zM352 256H320C302.34 256 288 241.64 288 224V192C288 174.36 302.34 160 320 160H352C369.6600000000001 160 384 174.36 384 192V224C384 241.64 369.6600000000001 256 352 256zM352 192H320V224H352V192zM480 128H448C430.34 128 416 113.64 416 96V64C416 46.36 430.34 32 448 32H480C497.66 32 512 46.36 512 64V96C512 113.64 497.66 128 480 128zM480 64H448V96H480V64zM480 256H448C430.34 256 416 241.64 416 224V192C416 174.36 430.34 160 448 160H480C497.66 160 512 174.36 512 192V224C512 241.64 497.66 256 480 256zM480 192H448V224H480V192zM512 416H237.06C230.45 434.6 212.87 448 192 448H128C107.13 448 89.55 434.6 82.94 416H64C28.65 416 0 387.35 0 352V0C0 -35.35 28.65 -64 64 -64H512C547.35 -64 576 -35.35 576 0V352C576 387.35 547.35 416 512 416zM320 384H480V320H320V384zM112 400C112 408.82 119.18 416 128 416H192C200.82 416 208 408.82 208 400V64C208 55.18 200.82 48 192 48H128C119.18 48 112 55.18 112 64V400zM544 0C544 -17.64 529.64 -32 512 -32H64C46.36 -32 32 -17.64 32 0V352C32 369.64 46.36 384 64 384H80V64C80 37.49 101.49 16 128 16H192C218.51 16 240 37.49 240 64V384H288V320C288 302.36 302.34 288 320 288H480C497.66 288 512 302.36 512 320V384C529.64 384 544 369.64 544 352V0z" />
+    <glyph glyph-name="phone-plus"
+      unicode="&#xF4D2;"
+      horiz-adv-x="512" d=" M8 320H96V232C96 227.6 99.6 224 104 224H120C124.4 224 128 227.6 128 232V320H216C220.4 320 224 323.6 224 328V344C224 348.4 220.4 352 216 352H128V440C128 444.4 124.4 448 120 448H104C99.6 448 96 444.4 96 440V352H8C3.6 352 0 348.4 0 344V328C0 323.6 3.6 320 8 320zM487.8 423.9L387 447.2C372.3 450.6 357.2 443 351.2 429.1L304.7 320.6C299.2 307.9 302.9 292.9 313.6 284.1L367.5 240C333.5 170.8 277.2 114.4 207.9 80.4L163.8 134.3C155 145 140 148.6999999999999 127.3 143.1999999999999L18.9 96.7C5 90.7 -2.6 75.7 0.8 60.9L24 -39.9C27.3 -54 39.9 -64 54.5 -64C306.7 -64 512 140.2 512 393.5C512 408.1 502 420.7 487.8 423.9zM55.1 -32L32.1 67.6L139.5 113.6L199 40.8C302.6 89.4 358.7 145.7000000000001 407.1 248.9L334.3 308.4L380.3 415.8L479.9 392.8C479.7 158.3 289.6 -31.7 55.1 -32z" />
+    <glyph glyph-name="phone-slash"
+      unicode="&#xF3DD;"
+      horiz-adv-x="640" d=" M637 -37.2L462.6 100.1L441.4000000000001 116.8L406.0000000000001 144.6L388.6000000000001 158.3L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L358.7 141.1L369.6 132.5L438.6 78.1999999999999L445 73.1999999999999L617 -62.3000000000001C620.4 -65.1 625.5 -64.5000000000001 628.2 -61.1000000000001L638.2 -48.6000000000001C641 -45.0000000000001 640.4000000000001 -40.0000000000001 637 -37.2000000000001zM431.6 240C422.8 222.2 412.6 205.3 401 189.3L425.6 169.9C442 193 457 218.8000000000001 471.2 248.9000000000001L398.4000000000001 308.4000000000001L444.4000000000001 415.8000000000001L544 392.8000000000001C543.9 298.8000000000001 512.9 212.2000000000001 461.2 141.8000000000001L486.3 122.0000000000001C542.4 198.1 576 291.6 576 393.5C576 408.1 566 420.7 551.8 423.9L451 447.2C436.3 450.6 421.2 443 415.2 429.1L368.7 320.6C363.2 307.9 366.9 292.9 377.6 284.1L431.6 240zM119.1 -32L96.1 67.6L203.5 113.6L263 40.8C301.1 58.7 332.6 77.6 359.8 99.5L334 119.9C314.8 104.8 294.1 91.4 272 80.5L227.9 134.4C219.1 145.1 204.1 148.8 191.4 143.3L82.9 96.7C69 90.7 61.4 75.7 64.8 61L88 -39.7C91.3 -54 103.8 -63.9 118.4 -63.9C234.5 -63.9 340.4 -20.2 421.2000000000001 51.2L395.7000000000001 71.2000000000001C321.5 7.1 224.9 -31.9 119.1 -32z" />
+    <glyph glyph-name="phone-square"
+      unicode="&#xF098;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM361.133 337.745L302.634 351.238A29.473 29.473 0 0 1 268.886 334.115L241.885 271.12C236.739 259.108 240.207 244.941 250.32 236.669L274.449 216.927A192.006 192.006 0 0 0 199.073 141.552L179.333 165.679C171.06 175.7940000000001 156.893 179.261 144.88 174.114L81.888 147.1160000000001C68.7499999999999 141.4860000000001 61.548 127.292 64.763 113.3680000000001L78.257 54.8670000000001C81.363 41.403 93.184 32 107 32C260.033 32 384 155.819 384 309C384 322.818 374.597 334.639 361.133 337.745zM108.987 64.008L96.408 118.526L155.756 143.961L190.357 101.673C252.25 130.708 284.542 162.1569999999999 314.33 225.644L272.04 260.246L297.476 319.594L351.9939999999999 307.015C350.9369999999999 173.3109999999999 242.9359999999999 65.0659999999999 108.9869999999999 64.0079999999999z" />
+    <glyph glyph-name="phone-volume"
+      unicode="&#xF2A0;"
+      horiz-adv-x="448" d=" M189.135 103.06C183.664 116.706 169.599 125.208 154.945 123.755L111.762 119.447C97.308 166.656 97.308 217.342 111.763 264.552L154.944 260.2440000000001C169.606 258.781 183.661 267.2920000000001 189.134 280.939L221.613 361.947C227.597 376.871 222.023 393.888 208.361 402.407L143.401 442.915C130.188 451.154 113.269 449.228 102.256 438.239C-34.229 302.072 -33.94 81.632 102.256 -54.241C113.278 -65.2370000000001 130.199 -67.149 143.402 -58.916L208.36 -18.409C222.022 -9.8890000000001 227.596 7.127 221.612 22.0509999999999L189.135 103.06zM191.362 8.722L126.404 -31.784A1.186 1.186 0 0 0 124.931 -31.617C0.981 92.046 1.1 292.073 124.931 415.617A1.204 1.204 0 0 0 126.403 415.785L191.361 375.278C191.85 374.972 192.05 374.364 191.836 373.83L159.357 292.824A1.2 1.2 0 0 0 158.133 292.082L89.771 298.9020000000001C61.148 219.871 62.232 161.132 89.771 85.0990000000001L158.134 91.919A1.1890000000000003 1.1890000000000003 0 0 0 159.357 91.179L191.836 10.171A1.185 1.185 0 0 0 191.362 8.722zM292.249 355.109L286.274 349.383C282.363 345.635 281.481 339.761 284.013 334.973A32.063 32.063 0 0 0 284.013 305.028C281.48 300.24 282.363 294.366 286.274 290.618L292.249 284.892C297.86 279.515 307.0170000000001 280.781 310.9670000000001 287.473C322.7990000000001 307.52 322.7990000000001 332.481 310.9670000000001 352.528C307.0170000000001 359.2200000000001 297.8590000000001 360.486 292.249 355.109zM385.361 444.647L379.563 439.09C375.003 434.719 374.586 427.561 378.633 422.711C428.32 363.173 428.279 276.778 378.633 217.289C374.586 212.439 375.002 205.281 379.563 200.91L385.361 195.353C390.383 190.54 398.439 190.959 402.913 196.286C463.053 267.89 463.005 372.168 402.913 443.714C398.439 449.041 390.3830000000001 449.46 385.361 444.647zM339.161 400.077L333.343 394.498C328.9430000000001 390.279 328.3450000000001 383.403 332.058 378.567C358.594 344.003 358.592 295.995 332.058 261.433C328.345 256.597 328.943 249.722 333.343 245.502L339.161 239.923C344.32 234.976 352.627 235.586 357.017 241.227C393.067 287.549 393.125 352.376 357.017 398.773C352.627 404.414 344.32 405.024 339.161 400.077z" />
+    <glyph glyph-name="phone"
+      unicode="&#xF095;"
+      horiz-adv-x="512" d=" M487.8 423.9L387 447.2C372.3 450.6 357.2 443 351.2 429.1L304.7 320.6C299.2 307.9 302.9 292.9 313.6 284.1L367.5 240C333.5 170.8 277.2 114.4 207.9 80.4L163.8 134.3C155 145 140 148.6999999999999 127.3 143.1999999999999L18.9 96.7C5 90.7 -2.6 75.7 0.8 61L24 -39.7C27.3 -54 39.9 -64 54.5 -64C306.7 -64 512 140.2 512 393.5C512 408.1 502 420.7 487.8 423.9zM55.1 -32L32.1 67.6L139.5 113.6L199 40.8C302.6 89.4 358.7 145.7000000000001 407.1 248.9L334.3 308.4L380.3 415.8L479.9 392.8C479.7 158.3 289.6 -31.7 55.1 -32z" />
+    <glyph glyph-name="pi"
+      unicode="&#xF67E;"
+      horiz-adv-x="448" d=" M444.79 62.4L431.9700000000001 72A7.997 7.997 0 0 1 420.7700000000001 70.39L400.0200000000001 42.67C395 35.98 387 32 378.6600000000001 32C363.9700000000001 32 352 43.97 352 58.67V320H440C444.42 320 448 323.58 448 328V344C448 348.42 444.42 352 440 352H27.33C23.09 352 19.02 350.31 16.02 347.31L2.36 333.66C-2.68 328.62 0.89 320 8.02 320H128V188.54C128 155.55 118.73 123.23 101.25 95.26L54.67 20.73A8 8 0 0 1 57.21 9.71L70.77 1.23A8.006 8.006 0 0 1 81.8 3.77L128.4 78.34A207.92700000000002 207.92700000000002 0 0 1 160 188.53V320H320V61.13C320 40.5 329.6 20.4 347.02 9.34C374.59 -8.16 408.17 0.26 425.63 23.46L446.41 51.19C449.05 54.74 448.33 59.75 444.79 62.4z" />
+    <glyph glyph-name="pie"
+      unicode="&#xF705;"
+      horiz-adv-x="576" d=" M528.5 219.77C490.59 318.3300000000001 394.94 384 288 384C181.03 384 85.41 318.3300000000001 47.53 219.77C5.03 218.13 0 182.36 0 173.86C0 148.58 20.72 128 46.22 128C48.94 128 50.99 128.6 53.54 128.76L85.97 31.44C92.28 12.64 109.81 0 129.63 0H446.38C466.19 0 483.72 12.64 490.04 31.45L522.4699999999999 128.76C525.0099999999999 128.59 527.0699999999999 128 529.79 128C555.29 128 576.01 148.58 576.01 173.86C576 182.63 570.86 218 528.5 219.77zM459.66 41.59A13.997 13.997 0 0 0 446.38 32.0000000000001H129.62C123.59 32.0000000000001 118.24 35.8600000000001 116.34 41.58L85.08 135.3700000000001C97.95 140.4700000000001 107.54 147.0800000000001 114.28 152.0600000000001C123.37 158.8000000000001 126.88 161.4900000000001 139.69 152.0000000000001C151.81 143.03 172.16 128.0000000000001 207.63 128.0000000000001C243.19 128.0000000000001 263.4700000000001 143.0600000000001 275.63 152.0800000000001C284.7 158.79 288.14 161.48 300.85 152.03C313 143.05 333.31 128 368.78 128C404.31 128 424.59 143.06 436.72 152.06C447.6 160.13 450.84 160.26 461.84 152.08C468.53 147.12 478.08 140.51 490.92 135.39L459.66 41.59zM529.78 160C504.84 160 491.59 169.84 480.87 177.81C451.16 199.81 430.81 187.5 417.65 177.75C407 169.84 393.75 160 368.78 160C343.87 160 330.56 169.84 319.84 177.77C288.02 201.45 266.33 185.02 256.53 177.75C245.87 169.84 232.62 160 207.62 160C182.68 160 169.37 169.84 158.65 177.77C151.87 182.8 128.94 202.78 95.18 177.74C84.5 169.84 71.19 160 46.22 160C38.38 160 32 166.22 32 173.86C32 181.5200000000001 38.38 187.74 46.22 187.74C51.61 187.74 57.3 187.26 72.97 195.91C126.23 349.86 271.7200000000001 352 288 352C303.99 352 449.7200000000001 349.96 503 196.05C518.75 187.14 523.57 187.74 529.78 187.74C537.62 187.74 544 181.52 544 173.86C544 166.22 537.62 160 529.78 160zM199.16 302.31C191.25 306.19 181.69 303.06 177.69 295.15L161.69 263.15C157.75 255.24 160.94 245.63 168.85 241.68C178.39 236.98 187.21 242.64 190.32 248.84L206.32 280.8400000000001C210.25 288.75 207.06 298.36 199.16 302.31zM398.31 295.16C394.34 303.07 384.7800000000001 306.2200000000001 376.8400000000001 302.32C368.93 298.37 365.7500000000001 288.76 369.68 280.85L385.68 248.85C388.7800000000001 242.68 397.61 236.99 407.15 241.69C415.06 245.64 418.24 255.25 414.31 263.16L398.31 295.16zM288 304C279.1600000000001 304 272 296.8400000000001 272 288V256C272 247.16 279.1600000000001 240 288 240S304 247.16 304 256V288C304 296.8400000000001 296.84 304 288 304z" />
+    <glyph glyph-name="pig"
+      unicode="&#xF706;"
+      horiz-adv-x="576" d=" M560 256H530.5C519.4 281.3 501.8 302.9 480 319.4V384H464C417.32 384 380.85 356.78 374.61 352H223.99C182.67 352 141.42 334.67 112.25 306.08C89.82 284.21 73.69 255.93 67.18 224H55.98C41.18 224 29.48 237.5 32.48 252.8C34.68 264.2000000000001 45.38 272 56.98 272H57.98C61.28 272 63.98 274.7 63.98 278V298C63.98 301.3 61.28 304 57.98 304C29.48 304 4.08 283.6 0.48 255.4C-3.92 221.2 22.68 192 55.98 192H63.98C63.98 139.8 89.38 93.9 127.98 64.7V-16C127.98 -24.8 135.18 -32 143.98 -32H255.98C264.7800000000001 -32 271.98 -24.8 271.98 -16V32H335.98V-16C335.98 -24.8 343.18 -32 351.98 -32H463.98C472.78 -32 479.98 -24.8 479.98 -16V64.9C491.68 73.9 502.38 84.2 511.28 96H560C568.8 96 576 103.2 576 112V240C576 248.8 568.8 256 560 256zM544 128H495.3C478.3 105.6 478.3 103.9 448 80.7V0H368V64H239.99V0H159.99V80.7C95.09 129.7 95.99 174.2 95.99 192C95.99 262.6 153.39 320 224 320H385.7100000000001C402.61 333.5 418.9100000000001 346.5 448.0100000000001 350.8V303.5C487.71 273.4 492.01 264.2 509.6100000000001 224H544V128zM431.99 224C423.19 224 415.99 216.8 415.99 208S423.19 192 431.99 192S447.99 199.2 447.99 208S440.8 224 431.99 224z" />
+    <glyph glyph-name="piggy-bank"
+      unicode="&#xF4D3;"
+      horiz-adv-x="576" d=" M432 192C423.2 192 416 184.8 416 176S423.2 160 432 160S448 167.2 448 176S440.8 192 432 192zM560 224H530.5C519.4 249.3 501.8 270.9 480 287.4V352H464C433.7 352 406.2 341.9 383.1 325.8C383.5 329.2 384 332.5 384 336C384 397.9 333.9 448 272 448S160 397.9 160 336C160 326.3 161.6 317.1 164 308.1C115 288.3 78 245 67.2 192H56C41.2 192 29.5 205.5 32.5 220.8C34.7 232.2 45.4 240 57 240H58C61.3 240 64 242.7 64 246V266C64 269.3 61.3 272 58 272C29.5 272 4.1 251.6 0.5 223.4C-3.9 189.2 22.7 160 56 160H64C64 107.8 89.4 61.9 128 32.7V-48C128 -56.8 135.2 -64 144 -64H256C264.8 -64 272 -56.8 272 -48V0H336V-48C336 -56.8 343.2 -64 352 -64H464C472.8 -64 480 -56.8 480 -48V32.9C491.7 41.9 502.4 52.2 511.3 64H560C568.8 64 576 71.2 576 80V208C576 216.8 568.8 224 560 224zM272 416C316.2 416 352 380.2 352 336C352 330.5 351.4 325.2 350.4 320H224C213.9 320 204.1 318.8 194.5 317C192.9 323.1 192 329.4 192 336C192 380.2 227.8 416 272 416zM544 96H495.3C478.3 73.6 478.3 71.9 448 48.7V-32H368V32H240V-32H160V48.7C95.1 97.7 96 142.2 96 160C96 230.6 153.4 288 224 288H385.7C402.6 301.5 418.9 314.5 448 318.8V271.5C487.7 241.4 492 232.2 509.6 192H544V96z" />
+    <glyph glyph-name="pills"
+      unicode="&#xF484;"
+      horiz-adv-x="576" d=" M112 416C50.2 416 0 365.8 0 304V80C0 18.2 50.2 -32 112 -32S224 18.2 224 80V304C224 365.8 173.8 416 112 416zM192 80C192 35.9 156.1 0 112 0S32 35.9 32 80V160H192V80zM192 192H32V304C32 348.1 67.9 384 112 384S192 348.1 192 304V192zM416 288C327.6 288 256 216.4 256 128S327.6 -32 416 -32S576 39.6 576 128S504.4 288 416 288zM416 0C345.3 0 288 57.3 288 128C288 157.6 298.4 184.4 315.3 206.1L494.2 27.2C472.4 10.4 445.6 0 416 0zM516.7 49.9L337.9 228.7C359.6 245.5 386.4 256 416 256C486.7 256 544 198.7 544 128C544 98.4 533.6 71.6 516.7 49.9z" />
+    <glyph glyph-name="place-of-worship"
+      unicode="&#xF67F;"
+      horiz-adv-x="576" d=" M558.57 92.01L448 144.74V173.88C448 185.12 442.1 195.53 432.4700000000001 201.32L384 230.4V345.37C384 353.86 380.63 362 374.62 368L299.31 443.31C296.19 446.44 292.09 448 288 448S279.81 446.44 276.69 443.31L201.37 368C195.37 362 192 353.86 192 345.38V230.4L143.53 201.32A31.988 31.988 0 0 1 128 173.88V144.73L17.43 92.01C6.96 87.01 0 74.11 0 59.68V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56C32 -56 31.65 63.22 32 64L128 109.29V-56C128 -60.42 131.58 -64 136 -64H152C156.42 -64 160 -60.42 160 -56V173.88L224 212.28V345.37L288 409.37L352 345.37V212.28L416 173.88V-56C416 -60.42 419.58 -64 424 -64H440C444.42 -64 448 -60.42 448 -56V109.29L544 64C544.35 63.22 544 -56 544 -56C544 -60.42 547.58 -64 552 -64H568C572.42 -64 576 -60.42 576 -56V59.68C576 74.11 569.04 87.01 558.57 92.01zM281.71 127.7C248.43 124.53 224 94.68 224 61.25V-56C224 -60.42 227.58 -64 232 -64H248C252.42 -64 256 -60.42 256 -56V62.2C256 78.15 266.86 92.96 282.59 95.56C302.61 98.85 320 83.42 320 64V-56C320 -60.42 323.58 -64 328 -64H344C348.42 -64 352 -60.42 352 -56V64C352 101.42 319.88 131.34 281.71 127.7z" />
+    <glyph glyph-name="plane-alt"
+      unicode="&#xF3DE;"
+      horiz-adv-x="576" d=" M462.5 255.681H353.904L320.209 320.011C326.739 320.124 331.999 325.444 331.999 332.001V372C331.999 378.627 326.6260000000001 384 319.999 384H286.692L260.394 434.208C255.257 443.142 245.982 448 236.714 448H182.539C164.99 448 152.066 431.687 155.976 414.669L183.965 254.55C163.269 253.493 143.135 251.723 125.243 249.381L93.256 306.822L92.997 307.269C88.101 315.43 79.147 320.499 69.631 320.499H29.723C12.51 320.499 -0.367 304.75 3.002 287.905L16.412 220.853C5.51 212.447 0 202.775 0 191.999C0 181.2240000000001 5.51 171.552 16.412 163.1450000000001L3.002 96.096C-0.373 79.219 12.544 63.499 29.724 63.501L69.635 63.502C79.151 63.504 88.102 68.574 92.997 76.732L125.242 134.619C143.134 132.277 163.267 130.507 183.965 129.45L155.976 -30.669C152.064 -47.694 164.999 -64 182.539 -64H236.714C245.717 -64 254.726 -59.488 260.17 -50.628L286.689 0H320C326.627 0 332 5.373 332 12V52C332 58.558 326.738 63.878 320.207 63.99L353.904 128.322L462.5 128.32C510.864 128.32 576 144.682 576 192C576 239.602 510.228 255.681 462.5 255.681zM462.5 160.32L334.059 160.321L233.849 -32H188.228L221.816 160.14C176.481 161.492 154.646 162.372 108.038 169.496L66.833 95.502L35.518 95.501L55 191.999L35.517 288.5H66.832L108.038 214.504C154.928 221.672 176.897 222.521 221.815 223.86L188.228 416H233.849L334.0590000000001 223.681H462.5C495.013 223.681 544 212.981 544 192C544 168.797 487.848 160.32 462.5 160.32z" />
+    <glyph glyph-name="plane-arrival"
+      unicode="&#xF5AF;"
+      horiz-adv-x="640" d=" M632 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM580.44 145.46C560.98 165.67 534.5100000000001 180.8100000000001 503.89 189.23L406.9500000000001 215.91L310.5 401.17C308.31 405.4 306.35 409.75 304.32 414.06C301.18 420.7 295.35 425.73 288.27 427.68C269.1 432.95 216.78 448 216.78 448C216.5 448 206.01 448.48 198.09 439.35C192.68 433.1 190.72 422.94 193 415L235.32 263.15L148.03 287.17L121.15 354.9600000000001C118.23 362.43 111.97 368.14 104.4 370.2200000000001C59.87 382.4700000000001 61.43 382.36 57 382.36C43.45 382.36 32.23 371.02 32 357.07L32.29 249.85C32.54 238.31 37.5 227.3 45.91 219.64L139.23 136.47C147.65 128.8 157.85 123.16 168.72 120.17L464.67 38.72C480.8799999999999 34.26 496.99 31.99 512.55 31.99C526.3399999999999 31.99 539.6999999999999 33.78 552.26 37.3199999999999C583.13 46.0099999999999 601.4 60.4699999999999 606.5699999999999 80.3199999999999C611.7399999999999 100.17 602.9599999999999 122.0799999999999 580.4399999999999 145.4599999999999zM575.58 88.39C573.57 80.67 561.9100000000001 73.29 543.57 68.1300000000001C512.72 59.4500000000001 483.5400000000001 66.72 473.15 69.58L177.2 151.03C171.17 152.69 165.48 155.84 160.77 160.13L67.45 243.3C65.52 245.06 64.34 247.76 64.28 250.53L64.18 348.1L92.53 340.3L124.07 260.58L281.92 217.14L227.41 411.79L276.21 397.81L384.97 188.78L495.41 158.38C520.49 151.48 541.92 139.34 557.4 123.27C571.04 109.09 577.68 96.39 575.5799999999999 88.39z" />
+    <glyph glyph-name="plane-departure"
+      unicode="&#xF5B0;"
+      horiz-adv-x="641.13" d=" M80.67 76.72C88.29 68.64 99.07 64 110.26 64L237.55 64.17C248.78 64.19 260.01 66.82 270.05 71.78L553.6500000000001 212.09C582.8800000000001 226.5500000000001 606.5600000000001 246.67 622.1300000000001 270.2700000000001C640.1100000000001 297.5400000000001 644.5500000000001 320.5500000000001 635.3100000000001 338.6700000000001C623.7 361.5300000000001 593.24 369.4300000000001 562.48 369.4300000000001C536.48 369.4300000000001 509.94 362.8200000000001 483.59 349.7900000000001L390.7100000000001 303.8400000000001L181.6400000000001 380.3300000000001A25.757 25.757 0 0 1 168.34 384C164.38 384 160.41 383.0700000000001 156.87 381.3200000000001L92.8 349.62C84.33 345.43 79.89 337.77 78.9 330.3C77.66 320.99 82.37 311.88 90.37 306.9600000000001L227.14 222.9L143.04 181.29L76.13 214.17C65.87 219.21 56.68 215.84 53.25 214.14L14.13 194.79C7.04 191.28 2.08 184.87 0.52 177.2C-1.04 169.53 1.03 161.73 6.2 155.79L80.67 76.72zM64.72 184.13L143.08 145.62L293.28 219.93L118.76 326.77L168.13 351.19L392.61 269.07L497.79 321.11C519.68 331.94 541.4499999999999 337.43 562.49 337.43C578.82 337.43 601.88 333.83 606.8 324.15C610.2199999999999 317.44 605.9599999999999 303.89 595.42 287.89C582.9699999999999 269.02 563.62 252.72 539.4699999999999 240.77L255.8699999999999 100.46C250.2099999999999 97.66 243.8599999999999 96.18 237.5199999999999 96.17L110.2599999999999 95.9999999999999C107.8899999999999 95.9999999999999 105.5299999999999 96.9999999999999 103.9599999999999 98.66L36.5499999999999 170.19L64.7199999999999 184.13zM633.13 -32H9.13C4.71 -32 1.13 -35.58 1.13 -40V-56C1.13 -60.42 4.71 -64 9.13 -64H633.13C637.55 -64 641.13 -60.42 641.13 -56V-40C641.13 -35.58 637.55 -32 633.13 -32z" />
+    <glyph glyph-name="plane"
+      unicode="&#xF072;"
+      horiz-adv-x="576" d=" M480 256H365.71L260.61 439.94A16.014 16.014 0 0 1 246.71 448H158.35C147.72 448 140.05 437.83 142.97 427.61L192 256H128L84.8 313.6C81.78 317.63 77.03 320 72 320H16.01C5.6 320 -2.04 310.2200000000001 0.49 300.12L32 192L0.49 83.88C-2.04 73.78 5.6 64 16.01 64H72C77.04 64 81.78 66.37 84.8 70.4L128 128H192L142.97 -43.6C140.05 -53.82 147.72 -64 158.35 -64H246.71C252.45 -64 257.75 -60.92 260.6 -55.94L365.71 128H480C515.35 128 576 156.65 576 192S515.35 256 480 256zM480 160H347.14L237.43 -32H179.57L234.43 160H112L64 96H37.35L65.33 192L37.33 288H64L112 224H234.42L179.57 416H237.44L347.15 224H480C506.24 224 542.61 202.25 544 192.09C542.61 181.75 506.24 160 480 160z" />
+    <glyph glyph-name="play-circle"
+      unicode="&#xF144;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM371.7 210L195.7 317C179.9 325.8 160 314.5 160 296V88C160 69.6 179.8 58.2 195.7 67L371.7 168C388.1 177.1 388.1 200.8 371.7 210zM192 112.2V271.1C192 275.8 197.1 278.7 201.1 276.2L335.6 194.5C339.5 192.1 339.4000000000001 186.4 335.5 184.2L201 107C197 104.7 192 107.6 192 112.2z" />
+    <glyph glyph-name="play"
+      unicode="&#xF04B;"
+      horiz-adv-x="448" d=" M424.4 233.3L72.4 441.4C43.8 458.3 0 441.9 0 400.1V-16C0 -53.5 40.7 -76.1 72.4 -57.3L424.4 150.7C455.8 169.2 455.9 214.8 424.4 233.3zM408.2 178.2L56.2 -29.8C45.6 -35.9 32 -28.6 32 -16V400.1C32 416.4 48.4 418.5 56.1 413.9L408.1 205.8C418.6 199.6 418.6 184.4 408.2000000000001 178.2z" />
+    <glyph glyph-name="plug"
+      unicode="&#xF1E6;"
+      horiz-adv-x="384" d=" M360 288H24C10.745 288 0 277.255 0 264V216C0 202.745 10.745 192 24 192H32C32 109.035 95.147 40.822 176 32.794V-64H208V32.794C288.853 40.822 352 109.035 352 192H360C373.255 192 384 202.745 384 216V264C384 277.255 373.255 288 360 288zM352 224H320V192C320 121.26 262.751 64 192 64C121.26 64 64 121.249 64 192V224H32V256H352V224zM272 304V432C272 440.837 279.163 448 288 448S304 440.837 304 432V304H272zM80 304V432C80 440.837 87.163 448 96 448S112 440.837 112 432V304H80z" />
+    <glyph glyph-name="plus-circle"
+      unicode="&#xF055;"
+      horiz-adv-x="512" d=" M384 198V186C384 179.4 378.6 174 372 174H274V76C274 69.4 268.6 64 262 64H250C243.4 64 238 69.4 238 76V174H140C133.4 174 128 179.4 128 186V198C128 204.6 133.4 210 140 210H238V308C238 314.6 243.4 320 250 320H262C268.6 320 274 314.6 274 308V210H372C378.6 210 384 204.6 384 198zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM472 192C472 311.9 374.7 408 256 408C136.1 408 40 310.7 40 192C40 72.1 137.3 -24 256 -24C375.9 -24 472 73.3 472 192z" />
+    <glyph glyph-name="plus-hexagon"
+      unicode="&#xF300;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM525.8 183.9L413.8 -8.1C410.9 -13 405.6 -16 400 -16H176C170.3 -16 165 -13 162.2 -8.1L50.2 183.9C47.3 188.9 47.3 195.1 50.2 200L162.2 392C165 397 170.3 400 176 400H400C405.7 400 411 397 413.8 392.1L525.8 200.1C528.6999999999999 195.1 528.6999999999999 188.9 525.8 183.9zM416 198V186C416 179.4 410.6 174 404 174H306V76C306 69.4 300.6 64 294 64H282C275.4 64 270 69.4 270 76V174H172C165.4 174 160 179.4 160 186V198C160 204.6 165.4 210 172 210H270V308C270 314.6 275.4 320 282 320H294C300.6 320 306 314.6 306 308V210H404C410.6 210 416 204.6 416 198z" />
+    <glyph glyph-name="plus-octagon"
+      unicode="&#xF301;"
+      horiz-adv-x="512" d=" M361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512.1 276.2 507 288.4 498 297.4L361.5 433.9zM480 120.5C480 116.2 478.3 112.2 475.3 109.2L338.9 -27.3C335.9 -30.3 331.9 -32 327.6 -32H184.5C180.2 -32 176.2 -30.3 173.2 -27.3L36.7 109.1C33.7 112.1 32 116.1 32 120.4V263.5C32 267.8 33.7 271.8 36.7 274.8L173.1 411.3C176.1 414.3 180.1 416 184.4 416H327.5C331.8 416 335.8 414.3 338.8 411.3L475.3 274.8C478.3 271.8 480 267.8 480 263.5V120.5zM384 198V186C384 179.4 378.6 174 372 174H274V76C274 69.4 268.6 64 262 64H250C243.4 64 238 69.4 238 76V174H140C133.4 174 128 179.4 128 186V198C128 204.6 133.4 210 140 210H238V308C238 314.6 243.4 320 250 320H262C268.6 320 274 314.6 274 308V210H372C378.6 210 384 204.6 384 198z" />
+    <glyph glyph-name="plus-square"
+      unicode="&#xF0FE;"
+      horiz-adv-x="448" d=" M400 384C408.8 384 416 376.8 416 368V16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM340 210H242V308C242 314.6 236.6 320 230 320H218C211.4 320 206 314.6 206 308V210H108C101.4 210 96 204.6 96 198V186C96 179.4 101.4 174 108 174H206V76C206 69.4 211.4 64 218 64H230C236.6 64 242 69.4 242 76V174H340C346.6 174 352 179.4 352 186V198C352 204.6 346.6 210 340 210z" />
+    <glyph glyph-name="plus"
+      unicode="&#xF067;"
+      horiz-adv-x="384" d=" M376 216H216V376C216 380.42 212.42 384 208 384H176C171.58 384 168 380.42 168 376V216H8C3.58 216 0 212.42 0 208V176C0 171.58 3.58 168 8 168H168V8C168 3.58 171.58 0 176 0H208C212.42 0 216 3.58 216 8V168H376C380.42 168 384 171.58 384 176V208C384 212.42 380.42 216 376 216z" />
+    <glyph glyph-name="podcast"
+      unicode="&#xF2CE;"
+      horiz-adv-x="448" d=" M326.011 134.634A81.65799999999999 81.65799999999999 0 0 1 314.884 150.781C313.029 152.881 312.971 155.996 314.62 158.262C328.06 176.736 336 199.457 336 224C336 287.221 283.347 338.375 219.59 335.915C161.858 333.687 114.9 287.1910000000001 112.132 229.482C110.854 202.846 118.944 178.105 133.38 158.262C135.028 155.996 134.972 152.881 133.117 150.781A81.609 81.609 0 0 1 121.991 134.636C119.988 130.8200000000001 114.741 130.214 112.03 133.564C92.009 158.3 80 189.772 80 224C80 303.795 145.238 368.6380000000001 225.178 367.995C302.761 367.371 366.368 304.5950000000001 367.968 227.026C368.698 191.668 356.606 159.1 336.04 133.649C333.302 130.261 328.036 130.776 326.011 134.634zM224 448C100.206 448 0 347.815 0 224C0 141.997 43.765 71.447 107.599 32.515C111.923 29.878 117.374 33.445 116.677 38.46C115.433 47.404 114.365 56.201 113.566 64.498A6.025 6.025 0 0 1 111.105 68.789C62.893 103.953 31.61 161.001 32.004 225.198C32.64 328.835 116.352 413.823 219.968 415.958C327.674 418.178 416 331.21 416 224C416 160.292 384.808 103.735 336.896 68.79A6.027000000000001 6.027000000000001 0 0 1 334.4340000000001 64.498C333.6350000000001 56.201 332.5680000000001 47.406 331.324 38.463C330.6260000000001 33.448 336.077 29.879 340.399 32.516C403.6070000000001 71.078 448 141.25 448 224C448 347.796 347.814 448 224 448zM288 92.25C288 59.301 275.129 -11.929 267.429 -40.563C262.286 -59.573 242.858 -64 224 -64C205.143 -64 185.714 -59.573 180.572 -40.562C172.927 -12.134 160 59.102 160 92.25C160 127.406 191.142 136 224 136C256.858 136 288 127.406 288 92.25zM256 92.25C256 108.567 192 108.55 192 92.25C192 64.573 203.48 -1.555 211.01 -30.497C217.048 -32.514 230.958 -32.513 236.991 -30.497C244.513 -1.601 256 64.563 256 92.25zM288 224C288 188.654 259.346 160 224 160S160 188.654 160 224S188.654 288 224 288S288 259.346 288 224zM256 224C256 241.645 241.645 256 224 256S192 241.645 192 224S206.355 192 224 192S256 206.355 256 224z" />
+    <glyph glyph-name="podium-star"
+      unicode="&#xF758;"
+      horiz-adv-x="448" d=" M440 288H96V304C96 343.8 125.2 376.6 163.3 382.7C170.3 364.8 187.6 352 208 352H272C298.5 352 320 373.5 320 400S298.5 448 272 448H208C186.6 448 168.7 433.9 162.5 414.6C107.2 407.9 64 361.1 64 304V288H8C3.6 288 0 284.4 0 280V264C0 259.6 3.6 256 8 256H64.1V254.2L96 -32H40C35.6 -32 32 -35.6 32 -40V-56C32 -60.4 35.6 -64 40 -64H408C412.4 -64 416 -60.4 416 -56V-40C416 -35.6 412.4 -32 408 -32H352.1L384 256H440C444.4 256 448 259.6 448 264V280C448 284.4 444.4 288 440 288zM208 416H272C280.8 416 288 408.8 288 400S280.8 384 272 384H208C199.2 384 192 391.2 192 400S199.2 416 208 416zM320 -32H127.9V-30.2L96 256H351.9L320 -32zM164.1 101.9L158.5 69.2C156.9 59.7 160.7 50.3 168.6 44.7C173 41.5 178.1 39.9 183.2 39.9C187.2 39.9 191.1 40.9 194.8 42.8L224.1 58.1999999999999L253.3 42.8C261.7 38.4 271.8 38.9999999999999 279.6 44.6999999999999C287.4 50.3 291.2 59.6999999999999 289.6 69.1999999999999L284 101.8L307.7 124.9C314.5999999999999 131.6 317 141.4 314 150.6C311 159.7 303.3 166.2 293.8 167.6L261.1 172.4L246.5 202.1C242.3 210.7 233.7 216 224.1 216C214.5 216 205.9 210.7 201.7 202.1L187 172.4L154.3 167.6C144.8 166.2 137.1 159.7 134.1 150.6S133.6 131.6 140.4 125L164.1 101.8999999999999zM208.2 143.2L224 175.2L239.8 143.2L275.1 138L249.5000000000001 113L255.5000000000001 77.8L224 94.5L192.4 77.9L198.4 113.1L172.8000000000001 138.1L208.2000000000001 143.2z" />
+    <glyph glyph-name="podium"
+      unicode="&#xF680;"
+      horiz-adv-x="448" d=" M440 288H96V304C96 343.77 125.25 376.6 163.34 382.7200000000001C170.29 364.78 187.6 352 208 352H272C298.51 352 320 373.49 320 400S298.51 448 272 448H208C186.63 448 168.73 433.94 162.52 414.64C107.17 407.88 64 361.13 64 304V288H8C3.58 288 0 284.42 0 280V264C0 259.5800000000001 3.58 256 8 256H64.09L64.1 254.23L96 -32H40C35.58 -32 32 -35.58 32 -40V-56C32 -60.42 35.58 -64 40 -64H408C412.42 -64 416 -60.42 416 -56V-40C416 -35.58 412.42 -32 408 -32H352.1L384 256H440C444.42 256 448 259.5800000000001 448 264V280C448 284.42 444.42 288 440 288zM208 416H272C280.82 416 288 408.82 288 400S280.82 384 272 384H208C199.18 384 192 391.18 192 400S199.18 416 208 416zM320 -32H127.91L127.9 -30.23L96 256H351.9L320 -32z" />
+    <glyph glyph-name="poll-h"
+      unicode="&#xF682;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM48 0C39.18 0 32 7.18 32 16V368C32 376.82 39.18 384 48 384H400C408.82 384 416 376.82 416 368V16C416 7.18 408.82 0 400 0H48zM256 280V296C256 300.42 252.42 304 248 304H104C99.58 304 96 300.42 96 296V280C96 275.5800000000001 99.58 272 104 272H248C252.42 272 256 275.5800000000001 256 280zM352 184V200C352 204.42 348.42 208 344 208H104C99.58 208 96 204.42 96 200V184C96 179.58 99.58 176 104 176H344C348.42 176 352 179.58 352 184zM192 88V104C192 108.42 188.42 112 184 112H104C99.58 112 96 108.42 96 104V88C96 83.58 99.58 80 104 80H184C188.42 80 192 83.58 192 88z" />
+    <glyph glyph-name="poll-people"
+      unicode="&#xF759;"
+      horiz-adv-x="640" d=" M145.8 56.3C154.6 67.3 160 81 160 96C160 131.3 131.3 160 96 160S32 131.3 32 96C32 80.9 37.5 67.2 46.2 56.3C19 43.5 0 16 0 -16V-33.6C0 -50.4 13.6 -64 30.4 -64H161.6C178.4 -64 192 -50.4 192 -33.6V-16C192 16 173 43.5 145.8 56.3zM96 128C113.7 128 128 113.6 128 96S113.7 64 96 64S64 78.4 64 96S78.3 128 96 128zM32 -33.6V-16C32 10.5 53.5 32 80 32H112C138.5 32 160 10.5 160 -16L161.6 -32L32 -33.6zM145.8 344.3C154.6 355.3 160 369 160 384C160 419.3 131.3 448 96 448S32 419.3 32 384C32 368.9 37.5 355.2 46.2 344.3C19 331.5 0 304 0 272V254.4C0 237.6 13.6 224 30.4 224H161.6C178.4 224 192 237.6 192 254.4V272C192 304 173 331.5 145.8 344.3zM96 416C113.7 416 128 401.6 128 384S113.7 352 96 352S64 366.4 64 384S78.3 416 96 416zM32 254.4V272C32 298.5 53.5 320 80 320H112C138.5 320 160 298.5 160 272L161.6 256L32 254.4zM616 416H248C234.7 416 224 405.3 224 392V280C224 266.7 234.7 256 248 256H616C629.3 256 640 266.7 640 280V392C640 405.3 629.3 416 616 416zM480 288H256V384H480V288zM608 288H512V384H608V288zM616 128H248C234.7 128 224 117.3 224 104V-8C224 -21.3 234.7 -32 248 -32H616C629.3 -32 640 -21.3 640 -8V104C640 117.3 629.3 128 616 128zM320 0H256V96H320V0zM608 0H352V96H608V0z" />
+    <glyph glyph-name="poll"
+      unicode="&#xF681;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.18 408.82 0 400 0H48C39.18 0 32 7.18 32 16V368C32 376.82 39.18 384 48 384H400C408.82 384 416 376.82 416 368V16zM136 224H120C115.58 224 112 220.42 112 216V72C112 67.58 115.58 64 120 64H136C140.42 64 144 67.58 144 72V216C144 220.42 140.42 224 136 224zM232 320H216C211.58 320 208 316.42 208 312V72C208 67.58 211.58 64 216 64H232C236.42 64 240 67.58 240 72V312C240 316.42 236.42 320 232 320zM328 160H312C307.58 160 304 156.42 304 152V72C304 67.58 307.58 64 312 64H328C332.42 64 336 67.58 336 72V152C336 156.42 332.42 160 328 160z" />
+    <glyph glyph-name="poo-storm"
+      unicode="&#xF75A;"
+      horiz-adv-x="448" d=" M351.9 239.2zM320 144H260.5L271.5 188.1C272.7 192.9 271.6 197.9 268.6 201.8S260.9000000000001 208 256 208H176C168.7 208 162.2 203 160.5 195.9L128.5 67.9C126 57.7 133.7 48 144 48H205.6L192.2 -45.7C190.6 -56.8 199.9 -63.9 208 -63.9C216.5 -63.9 220.7 -57.7 221.6 -56.2999999999999C225 -50.9999999999999 333.5 119.5000000000001 333.5 119.5000000000001C340.3 130.2000000000001 332.5 144.0000000000001 320 144.0000000000001zM234.3 22.8L239.9 61.7C240.6 66.3 239.2 70.9 236.1 74.4C233.1 77.9 228.6 79.9 224 79.9H164.5L188.5 175.9H235.5L224.5 131.8C222 121.6 229.7 111.9 240 111.9H290.8C266.7 74 248.2 45 234.3 22.8zM392.9 250.2C393 252.1 393.1 254.0000000000001 393.1 256C393.1 292 370.3 322.8 338.2 335.3V336C338.3 397.8 287 448 224 448C217.5 448 211.6 447.2 206.2 446.4C195.1 444.7 185.7 437.3 181.5 427S178.7 404.8 185.3 395.8C188.4 391.7 192 384.9 192 376.1C192 357 175.6 341.4 155.4 341.4H141.7C93.8 341.4 54.8 303.1 54.8 256.1C54.8 254.2 54.9 252.3 55 250.3C22.4 233.8 0 200.4 0 162.7C0 109.8 42.7 66.9 96 64.5C96 68.2 96.5 72 97.4 75.7L102.5 96.1H100.6C62.9 96 32 126 32 162.7C32 197.5 59.9 226 95 228.8C90 236.8 86.8 246 86.8 256C86.8 285.5 111.4 309.3 141.7 309.3H155.4C193.3 309.3 224 339.1 224 376C224 390.5 219.1 403.8 211.1 414.7C215.3 415.3 219.6 416 224 416C269.4 416 306.3 380.2 306.3 336C306.3 326.6 304.3 317.7 301.3 309.3H306.3C336.6 309.3 361.2 285.4 361.2 256C361.2 245.9 358 236.8 353 228.8C388.1 226 416 197.5 416 162.6999999999999C416 129.3 390.3 101.6999999999999 357.1 96.9999999999999C353.1 90.6999999999999 345.6 78.8999999999999 336.1 63.9999999999999H347.4C402.9 63.9999999999999 448 108.3 448 162.6999999999999C448 200.3999999999999 425.6 233.8 392.9 250.2z" />
+    <glyph glyph-name="poo"
+      unicode="&#xF2FE;"
+      horiz-adv-x="512" d=" M343.7 80H168.3C162.5 80 158.5 74.3 160.5 69C171 41.1 218.9 16 256 16S341 41.1 351.5 69C353.5 74.3 349.5 80 343.7 80zM192 128C209.7 128 224 142.3 224 160S209.7 192 192 192S160 177.7 160 160S174.3 128 192 128zM320 192C302.3 192 288 177.7 288 160S302.3 128 320 128S352 142.3 352 160S337.7 192 320 192zM476.2 105.3C481.3 117 484 129.8 484 143C484 182.2 460.1 215.9 426.2 230.4C427.4 236.1 428 242 428 248C428 285.2 404.7 317.2 372 330V332C372 396 320 448 256 448C249.2 448 243.3 447.1 237.8 446.3C226.8 444.6 217.6 437.3 213.3 427C209 416.8 210.4 405 216.8 396C220.1 391.4 224 383.9 224 374C224 353 207 336 186 336H172C123.5 336 84 296.5 84 248C84 242.1 84.6 236.2 85.8 230.4C51.9 215.9 28 182.2 28 143C28 129.8 30.7 117 35.8 105.3C13.8 87.9 0 61 0 31C0 -21.4 42.6 -64 95 -64H417C469.4 -64 512 -21.4 512 31C512 61 498.2 87.9 476.2 105.3zM417 -32H95C60.2 -32 32 -3.8 32 31C32 62.4 55 88.2 85.1 93C69.9 104.5 60 122.5 60 143C60 177.8 88.2 206 123 206H135.3C123.6 216.3 116 231.2 116 248C116 278.9 141.1 304 172 304H186C224.7 304 256 335.3 256 374C256 389.2 251 403.2 242.8 414.7C247.1 415.4 251.5 416 256 416C302.4 416 340 378.4 340 332C340 322.1 338 312.8 334.9 304H340C370.9 304 396 278.9 396 248C396 231.2 388.4 216.3 376.7 206H389C423.8 206 452 177.8 452 143C452 122.5 442.1 104.5 426.9 93C456.9 88.2 480 62.4 480 31C480 -3.8 451.8 -32 417 -32z" />
+    <glyph glyph-name="poop"
+      unicode="&#xF619;"
+      horiz-adv-x="512" d=" M476.17 105.29C481.28 117 484 129.78 484 143C484 182.19 460.14 215.92 426.19 230.42A86.68 86.68 0 0 1 428 248C428 285.25 404.74 317.16 371.98 329.99C371.99 330.66 372 331.33 372 332C372 395.96 319.96 448 256 448C249.21 448 243.27 447.15 237.76 446.27A31.995 31.995 0 0 1 213.25 426.99A32.005 32.005 0 0 1 216.78 396.01C220.08 391.42 224 383.88 224 374C224 353.05 206.95 336 186 336H172C123.48 336 84 296.52 84 248C84 242.05 84.62 236.16 85.81 230.42C51.86 215.92 28 182.19 28 143C28 129.78 30.71 117.01 35.83 105.29C13.77 87.86 0 60.96 0 31C0 -21.38 42.62 -64 95 -64H417C469.38 -64 512 -21.38 512 31C512 60.96 498.23 87.86 476.17 105.29zM417 -32H95C60.21 -32 32 -3.79 32 31C32 62.39 55.02 88.21 85.06 93C69.93 104.51 60 122.52 60 143C60 177.79 88.21 206 123 206H135.31C123.57 216.26 116 231.18 116 248C116 278.93 141.07 304 172 304H186C224.66 304 256 335.3400000000001 256 374C256 389.21 251.02 403.19 242.78 414.67C247.12 415.36 251.47 416 256 416C302.39 416 340 378.39 340 332C340 322.13 337.98 312.8 334.86 304H340C370.93 304 396 278.93 396 248C396 231.18 388.43 216.26 376.69 206H389C423.79 206 452 177.79 452 143C452 122.52 442.07 104.51 426.94 93C456.98 88.21 480 62.39 480 31C480 -3.79 451.79 -32 417 -32z" />
+    <glyph glyph-name="portrait"
+      unicode="&#xF3E0;"
+      horiz-adv-x="384" d=" M320 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM352 0C352 -17.6 337.6 -32 320 -32H64C46.4 -32 32 -17.6 32 0V384C32 401.6 46.4 416 64 416H320C337.6 416 352 401.6 352 384V0zM192 160C236.2 160 272 195.8 272 240S236.2 320 192 320S112 284.2 112 240S147.8 160 192 160zM192 288C218.5 288 240 266.5 240 240S218.5 192 192 192S144 213.5 144 240S165.5 288 192 288zM238.8 144C219.3 144 214.4 137 192 137S164.7 144 145.2 144C124 144 103.4 134.6 91.4 116.6C84.2 105.9 80 93 80 79.1V40C80 35.6 83.6 32 88 32H104C108.4 32 112 35.6 112 40V79.1C112 93.1 121 112 145.2 112C157.6 112 166 105 192 105C217.9 105 226.3 112 238.8 112C263.1 112 272 93.1 272 79.1V40C272 35.6 275.6 32 280 32H296C300.4 32 304 35.6 304 40V79.1C304 93 299.8 105.9 292.6 116.6C280.5 134.6 259.9000000000001 144 238.8 144z" />
+    <glyph glyph-name="pound-sign"
+      unicode="&#xF154;"
+      horiz-adv-x="320" d=" M308 80H291.899C285.272 80 279.899 74.627 279.899 68V5.594H97.556V160H204C210.627 160 216 165.373 216 172V180C216 186.627 210.627 192 204 192H97.556V297.577C97.556 339.558 128.258 375.899 183.396 375.899C211.298 375.899 234.788 363.548 246.8160000000001 355.7680000000001C251.927 352.462 258.7090000000001 353.555 262.569 358.262L273.2340000000001 371.2680000000001C277.7220000000001 376.742 276.5170000000001 384.873 270.651 388.836C255.331 399.186 224.167 416 183.396 416C107.58 416 53.695 365.874 53.695 300.084V192H20C13.373 192 8 186.627 8 180V172C8 165.373 13.373 160 20 160H53.695V4.968H12C5.373 4.968 0 -0.405 0 -7.032V-20C0 -26.627 5.373 -32 12 -32H308C314.627 -32 320 -26.627 320 -20V68C320 74.627 314.627 80 308 80z" />
+    <glyph glyph-name="power-off"
+      unicode="&#xF011;"
+      horiz-adv-x="512" d=" M388.5 401.7C457.9 357.7 504 280.2 504 192C504 55.2 393.2 -55.7 256.5 -56C120 -56.3 8.2 55 8 191.6C7.9 280 54 357.7 123.5 401.7C129.3 405.4 137 403.5 140.4 397.5L144.3 390.5C147.4 384.9 145.6 377.9 140.2 374.5C79.9 336 40 268.4 40 192C40 72.1 137.3 -24 256 -24C375.9 -24 472 73.3 472 192C472 269 431.9 336.2 371.7 374.4C366.3 377.8 364.5 384.9 367.6 390.4L371.5 397.4C374.8999999999999 403.5 382.7 405.3 388.5 401.7zM272 172V436C272 442.6 266.6 448 260 448H252C245.4 448 240 442.6 240 436V172C240 165.4 245.4 160 252 160H260C266.6 160 272 165.4 272 172z" />
+    <glyph glyph-name="pray"
+      unicode="&#xF683;"
+      horiz-adv-x="384" d=" M240 304C279.7 304 312 336.3 312 376S279.7 448 240 448S168 415.7 168 376S200.3 304 240 304zM240 416C262.05 416 280 398.05 280 376S262.05 336 240 336S200 353.95 200 376S217.95 416 240 416zM219.25 121.11C239.74 96.7 274.3 100.98 289.81 118.06L369.94 206.06C388.68 224.81 388.68 255.2 369.94 273.94C351.19 292.69 320.8 292.69 302.06 273.94L259.75 224.25L228.44 259.41C213.2 277.57 190.46 288 166.06 288C127.53 288 104.21 263.76 94.89 246.47L45.51 154.43C22.5 111.5 31.8 62.23 66.94 32H48C21.53 32 0 10.47 0 -16S21.53 -64 48 -64H250.03C270.87 -64 289.4 -50.71 296.13 -30.93C302.6 -11.91 296.64 8.18 280.95 20.26L178.2 95.21L202.69 140.83L219.25 121.11zM136.81 85.78L261.42 -5.1C272.5200000000001 -13.64 264.7200000000001 -31.9999999999999 250.02 -31.9999999999999H48C39.19 -31.9999999999999 32 -24.8299999999999 32 -15.9999999999999S39.19 1e-13 48 1e-13H186.25L96.22 50.02C64.22 70.46 56.5 107.1900000000001 73.72 139.3000000000001L123.06 231.2800000000001C136.77 256.7100000000001 179.61 267.8200000000001 203.94 238.8300000000001L258.28 174.1600000000001L324.68 251.3200000000001C330.93 257.5700000000001 341.06 257.5700000000001 347.31 251.3200000000001S353.56 234.9400000000001 347.31 228.6900000000001L266.12 139.5800000000001C258.4599999999999 133.2400000000001 248.51 136.0300000000001 243.74 141.7000000000001L196.8 197.5400000000001L136.81 85.7800000000001z" />
+    <glyph glyph-name="praying-hands"
+      unicode="&#xF684;"
+      horiz-adv-x="640" d=" M502.58 107.77L629.64 67.78C634.78 66.2 639.99 70.04 639.99 75.43V92.17C639.99 95.68 637.7 98.78 634.34 99.8199999999999L512 138.36V204.87C512 227.15 506.19 249.04 495.13 268.38L408.65 419.74C398.71 437.17 380.07 448 359.99 448C345.2 448 330.73 441.99 320 431.06C309.27 441.99 294.8 448 280.01 448C259.93 448 241.29 437.17 231.35 419.74L144.86 268.37A128.015 128.015 0 0 1 128 204.86V138.35L5.65 99.82A8.011 8.011 0 0 1 0 92.17V75.43C0 70.05 5.21 66.2 10.35 67.78L137.41 107.77C150.83 111.9 159.99 124.3100000000001 159.99 138.35V204.86C159.99 221.57 164.35 237.99 172.64 252.49L259.1500000000001 403.89C266.0800000000001 416.05 280.99 419.05 291.9000000000001 412.8300000000001C303.4000000000001 406.25 307.4000000000001 391.5800000000001 300.8400000000001 380.0800000000001L236.6500000000001 267.75A96.02199999999999 96.02199999999999 0 0 1 224 220.12V135.99C224 131.57 227.58 127.99 232 127.99H248C252.42 127.99 256 131.57 256 135.99V199.99C256 213.24 266.75 223.99 280 223.99S304 213.24 304 199.99V113.91C304 78.05 280.13 46.5700000000001 245.61 36.88L5.84 -31.68A8.008 8.008 0 0 1 0 -39.38V-56C0 -61.3 5.06 -65.13 10.16 -63.7L254.25 6.07C282.6600000000001 14.04 305.65 32.7 320 56.8C334.35 32.71 357.3400000000001 14.04 385.75 6.07L629.84 -63.7C634.94 -65.13 640 -61.3 640 -56V-39.38C640 -35.79 637.61 -32.65 634.16 -31.68L394.39 36.88C359.86 46.57 336 78.05 336 113.91V199.99C336 213.24 346.75 223.99 360 223.99S384 213.24 384 199.99V135.99C384 131.5699999999999 387.58 127.99 392 127.99H408C412.42 127.99 416 131.5699999999999 416 135.99V220.12C416 236.83 411.64 253.25 403.35 267.75L339.1600000000001 380.08C332.6 391.58 336.6 406.25 348.1 412.83C359.0700000000001 419.09 373.9700000000001 415.9700000000001 380.85 403.89L467.36 252.49A95.994 95.994 0 0 0 480.01 204.86V138.35C480 124.31 489.16 111.91 502.58 107.77zM374.27 254.15C367.92 255.83 361.13 256.41 354.11 255.69C340.45 254.29 328.74 247.47 320 237.74C311.2699999999999 247.47 299.55 254.29 285.89 255.69C278.88 256.41 272.0899999999999 255.83 265.7299999999999 254.15L320 349.11L374.27 254.15z" />
+    <glyph glyph-name="prescription-bottle-alt"
+      unicode="&#xF486;"
+      horiz-adv-x="384" d=" M104 128H160V72C160 67.6 163.6 64 168 64H216C220.4 64 224 67.6 224 72V128H280C284.4 128 288 131.6 288 136V184C288 188.4 284.4 192 280 192H224V248C224 252.4 220.4 256 216 256H168C163.6 256 160 252.4 160 248V192H104C99.6 192 96 188.4 96 184V136C96 131.6 99.6 128 104 128zM360 448H24C10.8 448 0 437.2 0 424V344C0 330.8 10.8 320 24 320H32V-32C32 -49.6 46.4 -64 64 -64H320C337.6 -64 352 -49.6 352 -32V320H360C373.2 320 384 330.8 384 344V424C384 437.2 373.2 448 360 448zM320 -32H64V320H320V-32zM352 352H32V416H352V352z" />
+    <glyph glyph-name="prescription-bottle"
+      unicode="&#xF485;"
+      horiz-adv-x="384" d=" M360 448H24C10.8 448 0 437.2 0 424V344C0 330.8 10.8 320 24 320H32V-32C32 -49.6 46.4 -64 64 -64H320C337.6 -64 352 -49.6 352 -32V320H360C373.2 320 384 330.8 384 344V424C384 437.2 373.2 448 360 448zM320 -32H64V32H152C156.4 32 160 35.6 160 40V56C160 60.4 156.4 64 152 64H64V128H152C156.4 128 160 131.6 160 136V152C160 156.4 156.4 160 152 160H64V224H152C156.4 224 160 227.6 160 232V248C160 252.4 156.4 256 152 256H64V320H320V-32zM352 352H32V416H352V352z" />
+    <glyph glyph-name="prescription"
+      unicode="&#xF5B1;"
+      horiz-adv-x="384" d=" M278.63 96L381.66 199.03C384.78 202.15 384.78 207.22 381.66 210.34L370.35 221.65C367.23 224.77 362.16 224.77 359.04 221.65L256 118.63L150.63 224H160C213.02 224 256 266.98 256 320S213.02 416 160 416H8C3.58 416 0 412.42 0 408V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V224H105.37L233.37 96L130.34 -7.03C127.22 -10.15 127.22 -15.22 130.34 -18.34L141.65 -29.65C144.77 -32.77 149.84 -32.77 152.96 -29.65L256 73.37L359.03 -29.66C362.15 -32.78 367.22 -32.78 370.34 -29.66L381.65 -18.35C384.77 -15.23 384.77 -10.16 381.65 -7.04L278.63 96zM32 256V384H160C195.29 384 224 355.29 224 320S195.29 256 160 256H32z" />
+    <glyph glyph-name="presentation"
+      unicode="&#xF685;"
+      horiz-adv-x="576" d=" M568 448H8C3.58 448 0 444.4100000000001 0 439.98V423.94C0 419.51 3.58 415.92 8 415.92H32V128.1400000000001C32 110.4500000000001 46.34 96.0500000000001 64 96.0500000000001H272V46.9200000000001L186.34 -38.9699999999999C183.22 -42.0999999999999 183.22 -47.1799999999999 186.34 -50.3099999999999L197.65 -61.6499999999999A7.985 7.985 0 0 1 208.96 -61.6499999999999L288 17.59L367.03 -61.65A7.985 7.985 0 0 1 378.34 -61.65L389.65 -50.3100000000001C392.77 -47.1800000000001 392.77 -42.1000000000001 389.65 -38.9700000000001L304 46.92V96.05H512C529.66 96.05 544 110.45 544 128.14V415.91H568C572.42 415.91 576 419.5 576 423.93V439.98C576 444.4100000000001 572.42 448 568 448zM512 128H64V416H512V128z" />
+    <glyph glyph-name="print-slash"
+      unicode="&#xF686;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM192.12 416H352V352C352 334.33 366.33 320 384 320H448V256H316.32L356.96 224H496C522.47 224 544 202.47 544 176V96H519.51L560.12 64.02C568.9 64.09 576 71.2 576 80V176C576 220.18 540.18 256 496 256H480V338.75C480 347.24 476.63 355.37 470.63 361.38L393.37 438.63C387.37 444.63 379.23 448 370.74 448H190.48C173.64 448 160 433.67 160 416V379.1L192.08 353.84L192.12 416zM384 402.75L434.75 352H384V402.75zM448 -32H192V64H404.95L364.31 96H96V176C96 202.47 117.53 224 144 224H201.77L160 256.89V256H144C99.82 256 64 220.18 64 176V80C64 71.16 71.16 64 80 64H160V-48C160 -56.84 167.16 -64 176 -64H464C472.84 -64 480 -56.84 480 -48V4.9L448 30.1V-32zM440 160C440 159.41 440.29 158.92 440.33 158.35L467.75 136.7600000000001C479.15 138.62 488 148.08 488 160C488 173.26 477.25 184 464 184S440 173.26 440 160z" />
+    <glyph glyph-name="print"
+      unicode="&#xF02F;"
+      horiz-adv-x="512" d=" M432 256H416V338.75C416 347.24 412.63 355.37 406.63 361.38L329.37 438.63C323.37 444.63 315.23 448 306.74 448H126.48C109.64 448 96 433.67 96 416V256H80C35.82 256 0 220.18 0 176V80C0 71.16 7.16 64 16 64H96V-48C96 -56.84 103.16 -64 112 -64H400C408.84 -64 416 -56.84 416 -48V64H496C504.84 64 512 71.16 512 80V176C512 220.18 476.18 256 432 256zM320 402.75L370.75 352H320V402.75zM128.12 416H288V352C288 334.33 302.33 320 320 320H384V256H128.02L128.12 416zM384 -32H128V64H384V-32zM480 96H32V176C32 202.47 53.53 224 80 224H432C458.47 224 480 202.47 480 176V96zM400 184C386.75 184 376 173.26 376 160C376 146.75 386.75 136 400 136S424 146.75 424 160C424 173.26 413.25 184 400 184z" />
+    <glyph glyph-name="procedures"
+      unicode="&#xF487;"
+      horiz-adv-x="640" d=" M144 64C188.1 64 224 99.9 224 144S188.1 224 144 224S64 188.1 64 144S99.9 64 144 64zM144 192C170.5 192 192 170.5 192 144S170.5 96 144 96S96 117.5 96 144S117.5 192 144 192zM528 224H272C263.2 224 256 216.8 256 208V32H32V312C32 316.4 28.4 320 24 320H8C3.6 320 0 316.4 0 312V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V0H608V-56C608 -60.4 611.6 -64 616 -64H632C636.4 -64 640 -60.4 640 -56V112C640 173.9 589.9 224 528 224zM608 32H288V192H528C572.2 192 608 156.2 608 112V32zM136 352H262.1L289.7000000000001 296.8C295.6 285 312.4000000000001 285 318.3000000000001 296.8L368 396.2L390.1 352H512C520.8 352 528 359.2 528 368S520.8 384 512 384H409.9L382.3 439.2C376.4 451 359.6 451 353.7 439.2L304 339.8L284.1 379.6C282.7000000000001 382.3 280 384 276.9000000000001 384H136C131.6 384 128 380.4 128 376V360C128 355.6 131.6 352 136 352z" />
+    <glyph glyph-name="project-diagram"
+      unicode="&#xF542;"
+      horiz-adv-x="640" d=" M592 448H496C469.49 448 448 426.51 448 400V368H192V400C192 426.51 170.51 448 144 448H48C21.49 448 0 426.51 0 400V304C0 277.49 21.49 256 48 256H142.86L231.62 105.79C226.85 98.33 223.99 89.52 223.99 79.9999999999999V-16.0000000000001C223.99 -42.51 245.48 -64 271.99 -64H367.99C394.5 -64 415.99 -42.51 415.99 -16V80C415.99 106.51 394.5 128 367.99 128H271.99C266.79 128 261.88 126.96 257.19 125.43L173.76 266.61C184.8 275.41 192 288.8 192 304V336H448V304C448 277.49 469.49 256 496 256H592C618.51 256 640 277.49 640 304V400C640 426.51 618.51 448 592 448zM32 304V400C32 408.82 39.18 416 48 416H144C152.82 416 160 408.82 160 400V304C160 295.18 152.82 288 144 288H48C39.18 288 32 295.18 32 304zM368 96C376.82 96 384 88.82 384 80V-16C384 -24.82 376.82 -32 368 -32H272C263.18 -32 256 -24.82 256 -16V80C256 88.82 263.18 96 272 96H368zM608 304C608 295.18 600.82 288 592 288H496C487.18 288 480 295.18 480 304V400C480 408.82 487.18 416 496 416H592C600.82 416 608 408.82 608 400V304z" />
+    <glyph glyph-name="pumpkin"
+      unicode="&#xF707;"
+      horiz-adv-x="576" d=" M494.75 337.48C460.24 370.04 409.33 376.67 368 357.1V396.2C368 408.4 361.2200000000001 419.37 350.31 424.82L310.69 444.64C302.72 448.61 293.31 449.09 285.03 445.9100000000001C276.72 442.75 270.03 436.19 266.69 427.88L237.99 356.13C233.21 353.69 228.59 350.94 224.25 347.75C180.84 378.04 120.47 374.51 81.25 337.49C28.84 288.0800000000001 0 222.22 0 152.05C0 81.89 28.84 16.05 81.25 -33.35C120.44 -70.33 180.78 -73.95 224.25 -43.63C252.04 -64.08 286.62 -64 288 -64C294.57 -64 325.2 -63.17 351.75 -43.63C371.25 -57.22 394.13 -63.99 416.9700000000001 -63.99C445.0900000000001 -63.99 473.13 -53.76 494.75 -33.36C547.16 16.04 576 81.89 576 152.06S547.16 288.0800000000001 494.75 337.48zM288 -31.9C166.91 -31.9 163.74 336 288 336C409.2200000000001 336 412.21 -31.9 288 -31.9zM296.4100000000001 416.0100000000001L336 396.2V357.0900000000001C317.79 365.87 297.05 369.08 276.83 367.1L296.41 416.01zM103.19 -10.08C57.28 33.21 32 90.79 32 152.06S57.28 270.91 103.19 314.2100000000001C130.99 340.42 175.21 342.55 206.16 320.89C177.54 279.64 163.95 216.65 163.95 153.66C163.95 100.87 173.14 50.99 189.83 13.1900000000001C195 1.4800000000001 200.72 -7.9499999999999 206.61 -16.4399999999999C175.67 -38.41 131.15 -36.4299999999999 103.19 -10.0799999999999zM472.81 -10.08C445.06 -36.23 400.99 -38.39 370.07 -16.94C398.58 24.37 412.04 87.43 412.04 150.3300000000001C412.04 214.5600000000001 398.34 278.7600000000001 369.48 320.6400000000001C400.4 342.5500000000001 444.85 340.5700000000001 472.8099999999999 314.2000000000001C518.72 270.91 544 213.33 544 152.06S518.72 33.21 472.81 -10.08z" />
+    <glyph glyph-name="puzzle-piece"
+      unicode="&#xF12E;"
+      horiz-adv-x="576" d=" M506.584 192C454.277 192 434.572 145.487 419.3210000000001 164.494C399.1960000000001 189.576 417.293 271.7270000000001 422.7960000000001 296.4360000000001C388.5670000000001 290.0650000000001 285.5530000000001 272.1620000000001 258.9600000000001 294.2580000000001C242.3410000000001 308.0680000000001 290.273 337.754 290.273 380.701C290.272 421.975 256.447 448 214.842 448C171.283 448 130.05 422.391 130.05 379.176C130.05 326.156 175.948 307.5710000000001 154.401 290.57C125.985 268.154 35.346 287.476 0 295.959V-49.354C33.315 -57.366 70.681 -64.0029999999999 106.163 -64C148.443 -64 192 -52.161 192 -9.875C192 19.469 160 30.957 160 64C160 88.437 182.534 96 206.978 96C245.675 96 256 75.886 256 64C256 35.217 221.728 27.652 221.728 -12.58C221.728 -26.328 226.741 -38.025 236.226 -46.408C271.379 -77.477 342.943 -52.727 423.3110000000001 -52.693C422.353 -49.267 396.504 34.031 415.6090000000001 59.2139999999999C432.324 81.237 464.187 30.108 508.129 30.108C550.227 30.107 576 70.384 576 112C576 154.835 549.773 192 506.584 192zM508.128 62.107C478.126 62.107 466.764 96 426.615 96C373.049 96 371.774 31.021 382.343 -21.816C345.947 -25.24 275.318 -38.2500000000001 257.4170000000001 -22.43C237.293 -4.645 288 19.721 288 64C288 101.683 254.683 128 206.978 128C131.997 128 104.093 68.171 150.811 5.963C155.537 -0.33 160 -6.2740000000001 160 -9.8750000000001C160 -43.5650000000001 65.995 -30.5040000000001 32 -23.8000000000001V256.029C95.255 244.372 192 237.893 192 302.534C192 331.101 162.05 345.516 162.05 379.176C162.05 403.854 190.265 416 214.842 416C234.877 416 258.272 406.756 258.272 380.702C258.272 351.276 224 339.95 224 300.092C224 242.264 324.8450000000001 249.161 382.2200000000001 256.999C374.142 202.706 373.959 128 429.086 128C458.229 128 472.76 160 506.584 160C531.543 160 544 136.699 544 112C544 77.587 523.023 62.107 508.128 62.107z" />
+    <glyph glyph-name="qrcode"
+      unicode="&#xF029;"
+      horiz-adv-x="448" d=" M0 224H192V416H0V224zM32 384H160V256H32V384zM256 416V224H448V416H256zM416 256H288V384H416V256zM0 -32H192V160H0V-32zM32 128H160V0H32V128zM64 352H128V288H64V352zM384 288H320V352H384V288zM64 96H128V32H64V96zM416 160H448V32H320V64H288V-32H256V160H352V128H416V160zM416 0H448V-32H416V0zM352 0H384V-32H352V0z" />
+    <glyph glyph-name="question-circle"
+      unicode="&#xF059;"
+      horiz-adv-x="512" d=" M256 108C240.536 108 228 95.464 228 80S240.536 52 256 52S284 64.536 284 80S271.464 108 256 108zM263.67 132H247.67C241.043 132 235.67 137.373 235.67 144V144.381C235.67 214.724 313.11 208 313.11 251.789C313.11 271.805 295.349 292 255.67 292C226.526 292 211.405 282.351 196.459 263.308C192.551 258.328 185.405 257.313 180.211 260.932L167.077 270.082C161.452 274.001 160.217 281.853 164.432 287.259C185.658 314.486 210.842 332 255.67 332C307.99 332 353.11 302.249 353.11 251.789C353.11 184.375 275.67 187.94 275.67 144.381V144C275.67 137.373 270.2970000000001 132 263.67 132zM256 408C374.621 408 472 311.925 472 192C472 72.709 375.39 -24 256 -24C136.756 -24 40 72.562 40 192C40 311.203 136.602 408 256 408M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440z" />
+    <glyph glyph-name="question-square"
+      unicode="&#xF2FD;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM224 108C208.536 108 196 95.464 196 80S208.536 52 224 52S252 64.536 252 80S239.464 108 224 108zM231.67 132H215.67C209.043 132 203.67 137.373 203.67 144V144.381C203.67 214.724 281.11 208 281.11 251.789C281.11 271.805 263.349 292 223.67 292C194.526 292 179.405 282.351 164.459 263.308C160.551 258.328 153.405 257.313 148.211 260.932L135.077 270.082C129.452 274.001 128.217 281.853 132.432 287.259C153.658 314.486 178.842 332 223.67 332C275.99 332 321.11 302.249 321.11 251.789C321.11 184.375 243.67 187.94 243.67 144.381V144C243.67 137.373 238.2970000000001 132 231.67 132z" />
+    <glyph glyph-name="question"
+      unicode="&#xF128;"
+      horiz-adv-x="384" d=" M200.343 448C124.032 448 69.761 416.401 28.195 354.698C13.982 333.599 18.737 305.024 39.02 289.644L81.054 257.772C101.763 242.069 131.4 245.607 147.733 266.282C169.206 293.463 176.104 298.242 193.865 298.242C204.083 298.242 219.154 291.243 219.154 280C219.154 254.269 109.854 259.256 109.854 157.749V144C109.854 127.993 117.737 113.801 129.817 105.076C109.139 87.453 96 61.234 96 32C96 -20.935 139.065 -64 192 -64S288 -20.935 288 32C288 61.234 274.861 87.453 254.183 105.076C266.263 113.802 274.146 127.9930000000001 274.146 144V148.705C299.5320000000001 167.695 378.432 193.209 378.432 288.128C378.432 379.207 288.351 448 200.343 448zM192 -32C156.71 -32 128 -3.29 128 32S156.71 96 192 96S256 67.29 256 32S227.29 -32 192 -32zM242.146 154.406V144C242.146 135.163 234.983 128 226.146 128H157.854C149.018 128 141.854 135.163 141.854 144V157.749C141.854 244.531 251.154 215.075 251.154 280C251.154 312 219.475 330.242 193.865 330.242C160.082 330.242 144.698 314.062 122.623 286.1190000000001C117.22 279.279 107.339 278 100.388 283.271L58.354 315.1430000000001C51.597 320.2670000000001 49.997 329.7870000000001 54.734 336.8200000000001C88.876 387.501 132.358 416 200.343 416C271.006 416 346.432 360.842 346.432 288.128C346.432 191.573 242.146 190.087 242.146 154.406z" />
+    <glyph glyph-name="quidditch"
+      unicode="&#xF458;"
+      horiz-adv-x="640" d=" M638.3 432.5L628.3 445C625.5 448.5 620.5 449 617.0999999999999 446.3L372.8999999999999 253.3L327.5 310.4C322.5 316.7000000000001 312.8999999999999 316.4 308.3 309.9L259.7 241.3C231.2 241 152.5 236.3 101.6999999999999 195.9C38.8 145.9 0 -63.4 0 -63.4C15.4 -64.1 215.1 -70.1999999999999 275.6 -22.1C326.5 18.4 348.9000000000001 94.1 355.6 121.7000000000001L433.1 153.0000000000001C440.5 156.0000000000001 443 165.3000000000001 438 171.6000000000001L392.8 228.3000000000001L637 421.2C640.4 424 641 429 638.3 432.5zM255.7 2.4C229 -18.8 146.3 -32 39.8 -32H39.2C43.3 -14.2 48.2 4.8 53.6 23.9L122.4 78.6C127.4 82.4999999999999 123.6 90.4999999999999 117.4 89.2L71.4 79.5C86.4 121.1 103.7 156.8 121.5 171C155.1 197.7 211.2 208.2 255.4 209.4L323.2 124.3C316.1 96.6 296.1 34.5 255.7 2.4zM342.8 151.2L285.9 222.7L314.3 263.2C316.6 266.5 321.4 266.6 323.9 263.5L391.5 178.6C394 175.4 392.8 170.7000000000001 389 169.3L342.8 151.2zM496 96.5C451.9 96.5 416 60.7 416 16.6S451.9 -64 496 -64S576 -27.5 576 16.6S540.2 96.5 496 96.5zM496 -31.4C469.5 -31.4 448 -9.9 448 16.6S469.5 64.6 496 64.6S544 43.1 544 16.6S522.5 -31.4 496 -31.4z" />
+    <glyph glyph-name="quote-left"
+      unicode="&#xF10D;"
+      horiz-adv-x="512" d=" M448 224H384V248C384 278.9 409.1 304 440 304H456C478.1 304 496 321.9 496 344V376C496 398.1 478.1 416 456 416H440C347.4 416 272 340.6 272 248V32C272 -3.3 300.7 -32 336 -32H448C483.3 -32 512 -3.3 512 32V160C512 195.3 483.3 224 448 224zM480 32C480 14.3 465.7 0 448 0H336C318.3 0 304 14.3 304 32V248C304 323.1 364.9 384 440 384H456C460.4 384 464 380.4 464 376V344C464 339.6 460.4 336 456 336H440C391.4 336 352 296.6 352 248V192H448C465.7 192 480 177.7 480 160V32zM176 224H112V248C112 278.9 137.1 304 168 304H184C206.1 304 224 321.9 224 344V376C224 398.1 206.1 416 184 416H168C75.4 416 0 340.6 0 248V32C0 -3.3 28.7 -32 64 -32H176C211.3 -32 240 -3.3 240 32V160C240 195.3 211.3 224 176 224zM208 32C208 14.3 193.7 0 176 0H64C46.3 0 32 14.3 32 32V248C32 323.1 92.9 384 168 384H184C188.4 384 192 380.4 192 376V344C192 339.6 188.4 336 184 336H168C119.4 336 80 296.6 80 248V192H176C193.7 192 208 177.7 208 160V32z" />
+    <glyph glyph-name="quote-right"
+      unicode="&#xF10E;"
+      horiz-adv-x="512" d=" M176 416H64C28.7 416 0 387.3 0 352V224C0 188.7 28.7 160 64 160H128V136C128 105.1 102.9 80 72 80H56C33.9 80 16 62.1 16 40V8C16 -14.1 33.9 -32 56 -32H72C164.6 -32 240 43.4 240 136V352C240 387.3 211.3 416 176 416zM208 136C208 60.9 147.1 0 72 0H56C51.6 0 48 3.6 48 8V40C48 44.4 51.6 48 56 48H72C120.6 48 160 87.4 160 136V192H64C46.3 192 32 206.3 32 224V352C32 369.7 46.3 384 64 384H176C193.7 384 208 369.7 208 352V136zM448 416H336C300.7 416 272 387.3 272 352V224C272 188.7 300.7 160 336 160H400V136C400 105.1 374.9 80 344 80H328C305.9 80 288 62.1 288 40V8C288 -14.1 305.9 -32 328 -32H344C436.6 -32 512 43.4 512 136V352C512 387.3 483.3 416 448 416zM480 136C480 60.9 419.1 0 344 0H328C323.6 0 320 3.6 320 8V40C320 44.4 323.6 48 328 48H344C392.6 48 432 87.4 432 136V192H336C318.3 192 304 206.3 304 224V352C304 369.7 318.3 384 336 384H448C465.7 384 480 369.7 480 352V136z" />
+    <glyph glyph-name="quran"
+      unicode="&#xF687;"
+      horiz-adv-x="448" d=" M246.25 109.62C261.28 109.62 276.2200000000001 112.34 290.28 117.59A18.75 18.75 0 0 1 303.06 135.3900000000001C303.06 145.73 294.62 154.16 284.25 154.16L280.13 153.96C234.44 153.96 197.25 191.1300000000001 197.25 236.8200000000001S234.44 319.6800000000001 280.0899999999999 319.6800000000001L284.25 319.4800000000001C293.19 319.4800000000001 300.91 325.8200000000001 302.63 334.5400000000001C304.4699999999999 343.6600000000001 299.51 352.6200000000001 290.85 355.8200000000001C276.35 361.2600000000001 261.35 364.0100000000001 246.26 364.0100000000001C176.14 364.0100000000001 119.07 306.9500000000001 119.07 236.8200000000001S176.12 109.6200000000001 246.25 109.6200000000001zM246.25 340C248.09 340 249.91 339.95 251.75 339.8400000000001C206.56 327.39 173.25 285.9 173.25 236.81C173.25 187.7 206.53 146.23 251.75 133.78C193.03 130.12 143.06 178.08 143.06 236.81C143.06 293.7 189.34 340 246.25 340zM448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64zM292.7200000000001 292.73L282.56 272.15L259.8400000000001 268.85C253.8100000000001 267.99 248.7800000000001 263.76 246.9000000000001 257.96S246.5900000000001 245.8 250.9600000000001 241.55L267.4300000000001 225.52L263.5200000000001 202.9C262.4900000000001 196.9 264.9600000000001 190.84 269.9000000000001 187.24C274.8400000000001 183.66 281.4000000000001 183.19 286.7800000000001 186.04L307.0600000000001 196.73L327.3400000000001 186.04A16.055 16.055 0 0 1 344.2200000000001 187.25C349.1600000000001 190.8399999999999 351.6300000000001 196.91 350.6 202.91L346.69 225.53L363.16 241.56C367.54 245.81 369.1 252.17 367.22 257.9699999999999S360.31 268 354.28 268.86L331.56 272.16L321.3999999999999 292.74C316.0299999999999 303.67 298.0899999999999 303.67 292.7199999999999 292.73zM316.9400000000001 253.32L339.0600000000001 250.12L323.0300000000001 234.52L326.8100000000001 212.5L307.0600000000001 222.91L287.3100000000001 212.5L291.0900000000001 234.52L275.0600000000001 250.12L297.1800000000001 253.32L307.0600000000001 273.35L316.9400000000001 253.32z" />
+    <glyph glyph-name="rabbit-fast"
+      unicode="&#xF709;"
+      horiz-adv-x="640" d=" M511.99 224.01C503.15 224.01 495.99 216.85 495.99 208.01S503.15 192.01 511.99 192.01S527.99 199.17 527.99 208.01C527.99 216.84 520.83 224.01 511.99 224.01zM602.88 256.79C602.27 257.2200000000001 544.36 292.78 544.36 292.78C541.82 294.35 534.63 297.85 526.01 300.3A261.57 261.57 0 0 1 521.12 322.32C515.23 344.29 492.45 415.99 446.6 416H446.5900000000001C408.6300000000001 416 402.3900000000001 374.1600000000001 402.1 372.67C370.01 389.82 346.6400000000001 385.82 332.4000000000001 371.5800000000001C323.6900000000001 362.87 311.85 343.23 328.04 308.3C296.9500000000001 324.68 266.49 336 239.98 336C194.25 336 153.7 317.67 122.09 283.5700000000001C108.58 296.7100000000001 90.85 304 71.97 304C52.74 304 34.65 296.51 21.06 282.91C-7.01 254.84 -7.01 209.16 21.06 181.09C34.66 167.49 52.74 160 71.98 160C84.71 160 96.78 163.57 107.49 169.8C111.08 163.47 115.18 157.35 120.32 151.78L174.36 93.24L149.35 79.72A47.925 47.925 0 0 1 127.97 39.78V16.05C127.97 -1.25 136.91 -16.78 151.88 -25.46C159.41 -29.82 167.69 -32.01 175.98 -32.01C184.14 -32.01 192.32 -29.89 199.79 -25.62L254.98 5.91L280.4700000000001 -21.7A32.008 32.008 0 0 1 303.99 -31.9900000000001H464C481.68 -31.9900000000001 496 -17.6600000000001 496 0.0099999999999C496 35.3 467.29 64.0099999999999 432 64.0099999999999H384L454.4 96.0099999999999H551.36C600.24 96.0099999999999 640.01 135.7799999999999 640.01 184.66C640 213.22 626.12 240.19 602.88 256.79zM96.26 201.07C71.73 181.91 49.38 198.03 43.68 203.72C28.06 219.34 28.06 244.67 43.68 260.29C59.29 275.9 84.63 275.92 100.25 260.29C101.56 258.98 102.46 257.46 103.5 256.02C95.69 238.59 93.16 219.53 96.26 201.07zM183.91 2.17C173.38 -3.92 159.97 3.6899999999999 159.97 16.0599999999999V39.79C159.97 45.15 162.63 50.1299999999999 165.81 52.34L196.74 69L232.7 30.04L183.91 2.17zM551.35 128.01H447.99L383.99 101.34V103.6C383.99 153.35 350.5800000000001 197.63 302.77 211.28L260.39 223.39C239.93 229.19 231.3 198.42 251.58 192.61L293.96 180.5C328.15 170.75 352 139.13 352 103.6V32.01H432C449.6600000000001 32.01 464 17.65 464 0.01H303.98L143.83 173.49C121.47 197.71 121.17 234.86 143.02 259.55C163.17 282.31 194.35 304 239.98 304C297.31 304 392.7200000000001 228.78 447.99 192.01C447.99 223.17 447.4600000000001 222.78 451.53 235.02C436.2200000000001 238.55 413.7800000000001 252.88 392.36 274.3C361.43 305.22 344.7200000000001 338.65 355.0300000000001 348.95C365.7700000000001 359.69 400.17 341.15 429.6900000000001 311.62C432.9400000000001 308.37 435.9400000000001 305.0800000000001 438.8700000000001 301.81C427.2400000000001 346.32 430.7900000000001 384 446.5900000000001 384C460.5300000000001 384 479.5100000000001 353.95 490.2000000000001 314.03C494.3000000000001 298.75 496.5600000000001 284.17 497.1800000000001 271.54C511.3500000000001 272.55 521.9500000000002 268.31 527.6200000000001 265.51L584.2700000000001 230.76A56.632 56.632 0 0 0 607.9900000000001 184.66C608.0000000000001 153.37 582.6300000000001 128.01 551.3500000000001 128.01z" />
+    <glyph glyph-name="rabbit"
+      unicode="&#xF708;"
+      horiz-adv-x="512" d=" M505.92 -2.8A33.63 33.63 0 0 1 503.83 0.16L389.44 144H391.36C440.25 144 480.02 183.77 480.02 232.65C480.02 261.2100000000001 466.14 288.18 442.9 304.79C442.29 305.2200000000001 441.67 305.64 441.03 306.0300000000001L416.34 321.1800000000001C416.61 322.1500000000001 416.88 323.12 417.14 324.0900000000001C431.04 376.01 431.09 435.46 389.5 446.6C386.03 447.53 382.45 448 378.84 448C361.27 448 347.12 437.65 336 423.52C324.88 437.65 310.74 447.99 293.17 448H293.1500000000001C289.55 448 285.9600000000001 447.53 282.5000000000001 446.6C240.9000000000001 435.46 240.9500000000001 376.01 254.8600000000001 324.08C257.1600000000001 315.5 259.8900000000001 307.1 263.0300000000001 298.9700000000001C260.3400000000001 292.44 258.4000000000001 285.54 257.2200000000001 278.3400000000001C256.4000000000001 273.3 255.9800000000001 268.14 255.9800000000001 263V221.33C188.6600000000001 209.99 133.2600000000001 163.41 109.1100000000001 101.36C98.03 108.2 85.33 112 71.97 112C52.74 112 34.65 104.51 21.05 90.91C-7.02 62.84 -7.02 17.16 21.05 -10.91C34.65 -24.51 52.74 -32 71.97 -32C82.29 -32 91.96 -29.14 101.09 -25.04C110.86 -47.92 133.57 -64 159.98 -64H320C337.68 -64 352 -49.67 352 -32C352 -8.75 339.54 11.64 320.94 22.85L336.75 32.73L401.86 -47.44C409.37 -57.86 421.3 -64 434.2800000000001 -64H472C486.54 -64 499.94 -56.1 506.99 -43.39C514.04 -30.68 513.62 -15.12 505.92 -2.8zM95.97 32V8.97C88.84 3.42 80.56 0 71.97 0C61.73 0 51.49 3.91 43.68 11.72C28.06 27.34 28.06 52.67 43.68 68.29C51.5 76.1 61.73 80 71.97 80C81.97 80 91.92 76.14 99.66 68.68C97.34 56.79 95.97 44.56 95.97 32zM472 -32H434.28C431.52 -32 428.96 -30.58 427.49 -28.24L343.76 74.85L223.99 0H288C305.6600000000001 0 320 -14.36 320 -32H159.98C142.3 -32 127.98 -17.67 127.98 0V32C127.98 120.37 199.62 192 288 192V263.01C288 266.48 288.28 269.88 288.82 273.2C290.35 282.55 293.75 290.69 298.43 297.5C293.6600000000001 307.69 289.27 319.4 285.79 332.37C274.4700000000001 374.62 276.7100000000001 411.92 290.79 415.69C291.56 415.9 292.35 416 293.1600000000001 416C306.7800000000001 416 325.1900000000001 387.2 336 348.6C346.82 387.2 365.2200000000001 416 378.84 416C379.65 416 380.44 415.9 381.21 415.69C395.29 411.92 397.53 374.61 386.21 332.37C383.8 323.37 380.91 315.03 377.8 307.26L424.28 278.75A56.632 56.632 0 0 0 448 232.65C448 201.36 422.63 176 391.3400000000001 176H352V139.66L478.78 -19.76C482.11 -25.09 478.28 -32 472 -32zM368 256C368 264.8400000000001 360.84 272 352 272S336 264.8400000000001 336 256S343.1600000000001 240 352 240S368 247.16 368 256z" />
+    <glyph glyph-name="racquet"
+      unicode="&#xF45A;"
+      horiz-adv-x="640" d=" M615.5 388.4C560.6 465.9 433.3 467.2 332.7 396C275.5 355.5 238.3 300 226.2 245.4C215.5 197.2 191.6 153.7 160.1 116.2000000000001C142.2 126.2000000000001 127.9 116.0000000000001 126.2 114.8000000000001L13.6 36C-0.8 25.9 -4.4 6 5.8 -8.5L35.2 -50.4C45.1 -64.5 64.9 -68.6 79.7 -58.2L192.3 20.6C201.8 27.3 206 38.2 205.3 49C241.3 62.7 279.1 70.7 317.6 70.7C349.2 70.7 429.9 48.9 529.0999999999999 119.1C630.8999999999999 191.3 669.6999999999999 311.9 615.4999999999999 388.4zM61.3 -32L31.9 9.8L144.5 88.6L173.9 46.7L61.3 -32zM191.3 77.6L181.6 91.5C200.3 113.2 216.4 136.4 229.0000000000001 161.1C240.0000000000001 128 258.1 111.3 273.4000000000001 99.6C245.8000000000001 95.7000000000001 218.2000000000001 88.1 191.3000000000001 77.6zM510.5 145.2000000000001C424.9 84.6 316.5 82.8000000000001 272.2 145.3000000000001C228.3 207.3000000000001 263.7 308.0000000000001 351.2 370.0000000000001C435.9 430.0000000000001 544.8 433.1000000000001 589.5 370.0000000000001C631.5 310.6 600.6 208.9000000000001 510.5 145.2000000000001z" />
+    <glyph glyph-name="radiation-alt"
+      unicode="&#xF7BA;"
+      horiz-adv-x="496" d=" M279 192C279 209.1 265.1 223 248 223S217 209.1 217 192S230.9 161 248 161S279 174.9 279 192zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM426.7 200.2C422.3 204.8 416.1 207.5 409.7 207.5H309.9C311.1 202.5 312 197.4 312 192C312 163.6 293.3 139.7 267.6 131.4L320.3 47.1C323.7 41.7 329.3 37.9 335.5 36.6C337 36.3 338.6 36.1 340.2 36.1C344.9 36.1 349.5 37.4999999999999 353.4 40.2C401.3 73.4 430.3 125.5 433.1 183.1C433.4 189.4 431.1 195.6 426.7 200.2zM342.5 71.9L312 120.7C327.9 134.9 338.8 154.1 342.5 175.5H400.3C396 134.6 375.4000000000001 97.7 342.5 71.9zM184 192C184 197.4 184.9 202.5 186.1 207.5H86.3C79.9 207.5 73.7 204.8 69.3 200.2S62.6 189.4 62.9 183.1C65.7 125.6 94.7 73.5 142.6 40.1999999999999C146.5 37.4999999999999 151.1 36.0999999999999 155.8 36.0999999999999C157.3 36.0999999999999 158.9 36.2999999999999 160.5 36.5999999999999C166.8 37.8999999999999 172.3 41.6999999999999 175.7 47.0999999999999L228.4 131.3999999999999C202.7 139.6999999999999 184 163.5 184 192zM153.5 71.9C120.7 97.6 100 134.6 95.6 175.4H153.4C157.1 154 168 134.8 183.9 120.6L153.5 71.9zM202 236.4C213.6 248.5 229.9 256 248 256S282.4 248.4 294 236.3L346.5 320.4C349.9 325.8 351 332.5 349.4 338.6C347.9 344.7 343.8 350 338.4 353.1C310.6 369 279.3 376.8 248 376.8C216.7 376.8 185.4 368.9 157.5 353.1C152.1 350 148.1 344.8 146.6 338.7C145 332.5 146.1 325.9 149.4 320.5L202 236.4zM248 344.8C271.1 344.8 293.9 339.6 314.5 329.6L284.1 281C272.8 285.6 260.6 288 248.0000000000001 288C235.4000000000001 288 223.2 285.6 211.9 281L181.5 329.6C202 339.6 224.9 344.8 248.0000000000001 344.8z" />
+    <glyph glyph-name="radiation"
+      unicode="&#xF7B9;"
+      horiz-adv-x="496" d=" M248 256C212.7 256 184 227.3 184 192S212.7 128 248 128S312 156.7 312 192S283.3 256 248 256zM248 160C230.4 160 216 174.4 216 192S230.4 224 248 224S280 209.6 280 192S265.6 160 248 160zM196.8 273.2C211.7 282.4 229.2 288 248 288S284.3 282.4 299.2 273.2L362.1 373C372.3 389.2 366.3 411.2 348.6 418.9C317.9 432.4 283.9 440 248 440S178.1 432.4 147.3 418.9C129.7 411.2 123.6 389.2 133.8 373L196.8 273.2zM248 408C278.4 408 307.8 401.8 334.8 389.9L286.9000000000001 313.9C274.3 317.9 261.2000000000001 320 248.1 320C234.8 320 221.7 317.9 209.1 313.9L160.5 389.7C188.2 401.8 217.6 408 248 408zM463.4 192H344.9C344.9 157.7 326.6 127.8 299.2 110.8L362 11.2C368.2 1.4 379 -4.1 389.8 -4.1C396.9000000000001 -4.1 404 -1.8 409.9000000000001 3.2C455.1 41.2 486.6 94.9 495.6 155.7000000000001C498.5 174.9 483 192.0000000000001 463.4 192.0000000000001zM389.5 28.2L341.6 104C356.8 119.7 367.6 139 373.1 160H463.4L463.7 160.4C456.1 108.8 429.5000000000001 61.7 389.5000000000001 28.2zM151.1 192H32.6C13 192 -2.5 174.9 0.3 155.7C9.3 94.8 40.8 41.2 86 3.2C91.9 -1.7 99 -4.1 106.1 -4.1C116.9 -4.1 127.7 1.3 133.9 11.2L196.7 110.8C169.4 127.8 151.1 157.6999999999999 151.1 192zM107 27.6C66.5 61.7 40 108.8 32.6 160H122.9C128.4 138.9 139.3 119.7 154.5 103.9L107 27.6z" />
+    <glyph glyph-name="rainbow"
+      unicode="&#xF75B;"
+      horiz-adv-x="576" d=" M288 223.6C235.1 223.5 192 181 192 128.1V-24C192 -28.4 195.6 -32 200 -32H216C220.4 -32 224 -28.4 224 -24V128.1C224 163.4 252.8 191.7000000000001 288 191.8C323.2 191.8 352 163.4 352 128.1V-24C352 -28.4 355.6 -32 360 -32H376C380.4 -32 384 -28.4 384 -24V128.1C384 181.1 340.9 223.6 288 223.6zM288 416C129.2 416 0 287 0 128.1V-24C0 -28.4 3.6 -32 8 -32H24C28.4 -32 32 -28.4 32 -24V128.1C32 269.4 146.9 383.9 288 384C429.1 384 544 269.4 544 128.1V-24C544 -28.4 547.6 -32 552 -32H568C572.4 -32 576 -28.4 576 -24V128.1C576 287 446.8 416 288 416zM288 320.2C182.1 320.2 96 234.1 96 128.2V-24C96 -28.4 99.6 -32 104 -32H120C124.4 -32 128 -28.4 128 -24V128.1C128 216.4 199.8 288 288 288S448 216.4 448 128.1V-24C448 -28.4 451.6 -32 456 -32H472C476.4 -32 480 -28.4 480 -24V128.1C480 234.1 393.9 320.1 288 320.2000000000001z" />
+    <glyph glyph-name="raindrops"
+      unicode="&#xF75C;"
+      horiz-adv-x="448" d=" M406.6 195.3C388.2000000000001 221 367.4000000000001 250.3 354 294.7000000000001C349.7 309.7000000000001 336.2 319.8 320.4 320C306 320.3 290.8 310 286.2 294.8C272.8 250.5 252 221.2 233.6 195.3C212.3 165.3 192.1 136.9 192.1 95.3C192.1 25.1 249.5 -32 320.1 -32S448.1 25.1 448.1 95.3C448 137.1 427.9000000000001 165.4 406.6 195.3zM320 0C267.1 0 224 42.7 224 95.3C224 126.7 239.7 148.8 259.6 176.8C278.4000000000001 203.3 301.8 236.2 316.7000000000001 285.5C316.9000000000001 286.3 317.5000000000001 288 319.9000000000001 288C321.2000000000001 287.5 322.7000000000001 287.3 323.1 285.9L323.2000000000001 285.6C338.2000000000001 236.1 361.6 203.2 380.4000000000001 176.8C401.0000000000001 147.9 415.9000000000001 127 415.9000000000001 95.4C416.0000000000001 42.7 372.9000000000001 0 320 0zM240 306.1C240 327.5 230.2 341.9000000000001 220.8 355.9000000000001C212.9 367.5 204.8 379.5 199.4 398.1C196.5 408.7000000000001 187.2 415.9000000000001 176.3 416C163.9 416.1 155.8 409 152.7 398.2000000000001C147.4 379.6 139.2 367.5 131.3 355.9000000000001C121.8 341.9000000000001 112 327.4000000000001 112 306.1C112 269.7000000000001 140.7 240.0000000000001 176 240.0000000000001S240 269.7000000000001 240 306.1zM176 272C158.3 272 144 287.3 144 306.1C144 317.1 148.7 324.6 157.8 338C163.5 346.5 170.2 356.3 176 369.2C181.8 356.3 188.5 346.4 194.3 338C203.3 324.7 208 317.3 208 306.2C208 287.3 193.7 272 176 272zM87.4 222.1C84.5 232.7 75.2 239.9 64.3 240C54.2 238.8 43.8 233 40.7 222.2C35.4 203.6 27.2 191.5 19.3 179.9C9.8 165.9 0 151.4 0 130.1C0 93.7 28.7 64 64 64S128 93.7 128 130.1C128 151.5 118.2 165.9 108.8 179.9C100.9 191.5000000000001 92.8 203.5 87.4 222.1zM64 96C46.3 96 32 111.3 32 130.1C32 141.1 36.7 148.6 45.8 162C51.5 170.5 58.2 180.3 64 193.2C69.8 180.3 76.5 170.4 82.3 162C91.3 148.7 96 141.3 96 130.2C96 111.3 81.7 96 64 96z" />
+    <glyph glyph-name="ram"
+      unicode="&#xF70A;"
+      horiz-adv-x="640" d=" M496 352C487.16 352 480 344.8400000000001 480 336S487.16 320 496 320S512 327.16 512 336S504.84 352 496 352zM613.31 340.39L576 358.73V368C576 394.4700000000001 554.47 416 528 416H444.08C421.67 435.81 392.6 448 360.94 448C305.69 448 260.78 404.96 256.78 350.71C243.61 352.6 229.88 350.66 218.41 343.92C200.1 354.81 175.32 354.37 157.25 342.92C144.97 349.58 130.69 351.62 116.37 348.59C99.34 344.75 84.96 333.62 76.75 318.43C59.81 317.55 43.69 309.32 32.63 295.31C21.82 281.36 17.57 263.45 20.51 246.36C7.62 234.91 0 218.19 0 200.31C0 182.4 7.5 165.72 20.19 154.31C17.13 137.01 21.44 119.04 32.31 105.33C43.09 91.31 59.09 83.03 76.09 82.17C80.92 73.0699999999999 88.08 65.6899999999999 96.5 60.1899999999999C96.64 56.23 96.83 52.2599999999999 97.76 48.3799999999999L118.88 -39.4800000000001C122.34 -53.86 135.21 -64 150 -64H207.53C228.48 -64 243.65 -44.24 238.55 -24.14L218.26 55.93A57.85399999999999 57.85399999999999 0 0 1 247.5600000000001 48C258.18 48 268.4400000000001 50.84 277.4700000000001 56.17C286.6300000000001 50.86 298.0900000000001 47.61 309.31 48.15C312.98 48.27 316.48 49.15 320 49.92V-32C320 -49.67 334.33 -64 352 -64H416C433.67 -64 448 -49.67 448 -32V91.17C453.69 94.8 459.01 99.15 463.38 104.68C474.19 118.63 478.44 136.54 475.5 153.63C488.38 165.08 496 181.8 496 199.68C496 208.22 494.19 216.45 491.03 223.99H583.66C598.5699999999999 223.99 612.4699999999999 232.02 619.9399999999999 245.01C637.91 276.5600000000001 639.9999999999999 290.0900000000001 639.9999999999999 297.5300000000001C639.9999999999999 315.88 629.7799999999999 332.3000000000001 613.3099999999998 340.3900000000001zM150 -32L130.18 50.44C139.32 50.63 148.33 52.78 156.56 57.16C165.59 51.37 176.35 48.39 187.2 48.24L207.53 -32H150zM416 -32H352V52.09C360.85 49.8 370.2200000000001 49.37 379.62 51.41C394.75 54.8200000000001 407.51 64.19 416 76.83V-32zM592.16 260.92C590.41 257.8400000000001 587.2199999999999 256 583.66 256H444.55C444.49 252.4400000000001 444.0300000000001 248.82 442.6 245.1900000000001L437.44 232.17L449.6600000000001 225.33C468.27 214.89 469.3 185.27 449.35 174.05L437.13 167.21L442.29 154.1900000000001C450.8 132.8100000000001 433.24 110.15 411.7000000000001 113.8900000000001L397.54 116.41L393.5100000000001 102.6300000000001C388.0300000000001 83.8000000000001 364.9200000000001 74.59 348.6700000000001 88.96L337.2300000000001 99.1L326.5700000000001 88.15C317.8900000000001 79.21 300.9300000000001 75.85 288.4500000000001 87.7000000000001L277.3900000000001 98.23L266.3600000000001 87.65C256.0500000000001 77.73 239.1100000000001 77.74 229.2000000000001 87.49L218.1400000000001 98.41L206.9200000000001 87.64C196.3300000000001 77.5500000000001 178.8000000000001 77.92 168.9200000000001 88.1100000000001L158.4800000000001 98.9400000000001L147.0400000000001 89.1700000000001C129.6000000000001 74.3400000000001 107.1300000000001 84.8900000000001 101.9800000000001 103.1200000000001L98 117.08L83.75 114.52C62.55 110.72 44.86 133.21 53.41 154.82L58.57 167.84L46.35 174.68C27.74 185.12 26.71 214.74 46.66 225.96L58.88 232.8L53.72 245.82C45.16 267.33 62.91 289.86 84.31 286.12L98.47 283.5999999999999L102.5 297.38C108.04 316.4 131.25 325.28 147.34 311.05L158.78 300.9099999999999L169.44 311.8599999999999C179.35 322.0899999999999 197.06 322.4399999999999 207 312.5499999999999L218.09 301.58L229.34 312.3499999999999C237.76 320.44 250.5 321.5399999999999 260.62 316.3599999999999C271.9700000000001 281.3999999999999 304.4600000000001 255.8999999999999 343.1600000000001 255.8999999999999C383.1400000000001 255.8999999999999 415.6600000000001 288.2899999999999 416 328.1999999999999V329.5299999999999C415.6600000000001 358.4799999999999 395.3 382.7099999999999 368.1 388.8499999999999C367.98 388.8799999999999 365.4100000000001 389.4499999999999 363.8400000000001 389.6899999999999C358.85 390.4699999999999 354.2500000000001 386.8199999999999 354.2500000000001 381.7699999999999V365.5C354.2500000000001 361.82 356.7500000000001 358.56 360.3500000000001 357.81C360.3900000000001 357.8 360.4200000000001 357.81 360.4600000000001 357.81C360.4700000000001 357.81 360.4600000000001 357.77 360.4700000000001 357.76C373.9100000000001 355 384.0600000000001 343.07 384.0600000000001 328.81C384.0600000000001 306.25 365.7200000000001 287.89 343.1500000000001 287.89C312.7400000000001 287.89 287.9900000000001 312.64 287.9900000000001 343.05C288 383.28 320.7200000000001 416 360.94 416C388.78 416 414.23 403.66 431.82 384H528C536.81 384 544 376.83 544 368V338.83L599.19 311.67C604.6300000000001 309 608 303.58 608 297.53C608 294.25 604.66 282.83 592.16 260.92z" />
+    <glyph glyph-name="ramp-loading"
+      unicode="&#xF4D4;"
+      horiz-adv-x="384" d=" M384 96V416C384 433.7 369.7 448 352 448H32C14.3 448 0 433.7 0 416V96C0 78.3 14.3 64 32 64H38.9L3.2 -19.4C-5.9 -40.5 9.6 -64 32.6 -64H351.5C374.5 -64 390 -40.5 380.9 -19.4L345.1 64H352C369.7 64 384 78.3 384 96zM351.4 -32H32.6L101.2 128H282.9L351.4 -32zM331.4 96L312.3 140.6C307.3 152.4 295.7 160 282.9 160H101.1C88.3 160 76.7 152.4 71.7 140.6L52.6 96H32V416H352V96H331.4z" />
+    <glyph glyph-name="random"
+      unicode="&#xF074;"
+      horiz-adv-x="512" d=" M0 320V328C0 334.6 5.4 340 12 340H117.8C121.1 340 124.3 338.6 126.6 336.1L216.3 239.1L194.5 215.5L109 308H12C5.4 308 0 313.4 0 320zM502.6 41.4L438.6 -22.6C418.5 -42.7 384 -28.4 384 0V44H358.3C355 44 351.8 45.4 349.5 47.9L259.8 144.9L281.6 168.5L367 76H384V128C384 156.5 418.5 170.7 438.6 150.6L502.6 86.6C515.1 74.1 515.1 53.9 502.6 41.4zM482.8 66.8L418.8 130.8C416.3 133.3 412 131.5 412 128V-1e-13C412 -3.6000000000001 416.3 -5.4 418.8 -2.8000000000001L482.8 61.1999999999999C484.4 62.6999999999999 484.4 65.3 482.8 66.8zM502.6 297.4L438.6 233.4C418.5 213.3 384 227.6 384 256V308H367L126.6 47.9C124.3 45.4 121.1 44 117.8 44H12C5.4 44 0 49.4 0 56V64C0 70.6 5.4 76 12 76H109L349.4 336.1C351.7 338.6 354.9 340 358.2 340H384V384C384 412.5 418.5 426.7 438.6 406.6L502.6 342.6C515.1 330.1 515.1 309.9 502.6 297.4zM482.8 322.8L418.8 386.8C416.3 389.3 412 387.5 412 384V256C412 252.4 416.3 250.6 418.8 253.2L482.8 317.2C484.4 318.7 484.4 321.3 482.8 322.8z" />
+    <glyph glyph-name="receipt"
+      unicode="&#xF543;"
+      horiz-adv-x="448" d=" M344 208H104C99.6 208 96 204.4 96 200V184C96 179.6 99.6 176 104 176H344C348.4 176 352 179.6 352 184V200C352 204.4 348.4 208 344 208zM344 112H104C99.6 112 96 108.4 96 104V88C96 83.6 99.6 80 104 80H344C348.4 80 352 83.6 352 88V104C352 108.4 348.4 112 344 112zM418.1 448C412.3 448 406.3 446.2 400.8 442.3L357.3 411L318.7 438.8C310.3 444.8 300.5 447.9 290.6 447.9C280.8 447.9 271 444.9 262.6 438.8L224 411L185.4 438.8C177 444.8 167.1 447.9 157.3 447.9S137.7 444.9 129.3 438.8L90.7 411L47.2 442.3C41.8 446.2 35.8 448 29.9 448C14.4 447.9 0 435.7 0 418.1V-34.2C0 -51.5 14.3 -64 29.9 -64C35.7 -64 41.7 -62.2 47.2 -58.3L90.7 -27L129.3 -54.8C137.7 -60.8 147.5 -63.9 157.4 -63.9C167.2 -63.9 177 -60.9 185.4 -54.8L224 -27L262.6 -54.8C271 -60.8 280.9000000000001 -63.9 290.7000000000001 -63.9S310.3000000000001 -60.9 318.7000000000001 -54.8L357.3000000000001 -27L400.8000000000001 -58.3C406.2000000000001 -62.2 412.2000000000001 -64 418.1000000000001 -64C433.6000000000001 -64 447.9000000000001 -51.8 447.9000000000001 -34.2V418.1C448 435.5 433.7 448 418.1 448zM416 -29.8L376 -1L357.3 12.5L338.6 -1L300 -28.8C297.2 -30.8 294 -31.8 290.7 -31.8C287.3 -31.8 284.1 -30.7 281.3 -28.7L242.7 -1L224 12.5L205.3 -1L166.7 -28.8C163.9 -30.8 160.7 -31.8 157.3 -31.8C153.9 -31.8 150.7 -30.7 147.9 -28.7L109.3 -1L90.6 12.5L72 -1L32 -30.4V413.8L72 385L90.7 371.5L109.4 385L148 412.8C150.8 414.8 154 415.8 157.3 415.8C160.7 415.8 163.9 414.7 166.7 412.7L205.3 385L224 371.5L242.7 385L281.3 412.8C284.1 414.8 287.3 415.8 290.7 415.8C294.1 415.8 297.3 414.7 300.1 412.7L338.7 385L357.4 371.5L376 385L416 413.8V-29.8zM344 304H104C99.6 304 96 300.4 96 296V280C96 275.6 99.6 272 104 272H344C348.4 272 352 275.6 352 280V296C352 300.4 348.4 304 344 304z" />
+    <glyph glyph-name="rectangle-landscape"
+      unicode="&#xF2FA;"
+      horiz-adv-x="512" d=" M464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM480 48C480 39.2 472.8 32 464 32H48C39.2 32 32 39.2 32 48V336C32 344.8 39.2 352 48 352H464C472.8 352 480 344.8 480 336V48z" />
+    <glyph glyph-name="rectangle-portrait"
+      unicode="&#xF2FB;"
+      horiz-adv-x="384" d=" M384 -16V400C384 426.5 362.5 448 336 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16zM48 -32C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H336C344.8 416 352 408.8 352 400V-16C352 -24.8 344.8 -32 336 -32H48z" />
+    <glyph glyph-name="rectangle-wide"
+      unicode="&#xF2FC;"
+      horiz-adv-x="640" d=" M592 352H48C21.5 352 0 330.5 0 304V80C0 53.5 21.5 32 48 32H592C618.5 32 640 53.5 640 80V304C640 330.5 618.5 352 592 352zM608 80C608 71.2 600.8 64 592 64H48C39.2 64 32 71.2 32 80V304C32 312.8 39.2 320 48 320H592C600.8 320 608 312.8 608 304V80z" />
+    <glyph glyph-name="recycle"
+      unicode="&#xF1B8;"
+      horiz-adv-x="512" d=" M201.728 385.951L158.343 316.492C154.832 310.87 147.427 309.16 141.806 312.673L135.025 316.91C129.406 320.421 127.696 327.822 131.206 333.443L174.593 402.923C212.168 463.043 299.856 463.007 337.409 402.923L383.626 328.908L395.663 381.048C397.154 387.506 403.597 391.532 410.055 390.041L417.849 388.242C424.307 386.751 428.3329999999999 380.308 426.842 373.85L405.209 280.148C403.718 273.6900000000001 397.2749999999999 269.664 390.817 271.1550000000001L297.115 292.788C290.657 294.2790000000001 286.631 300.7220000000001 288.122 307.1800000000001L289.921 314.9740000000001C291.4119999999999 321.432 297.855 325.4580000000001 304.313 323.9670000000001L356.515 311.9150000000001L310.264 385.9620000000001C285.262 425.9680000000001 226.797 426.0610000000001 201.728 385.951zM497.288 146.88L444.349 231.66C440.838 237.283 433.433 238.994 427.811 235.481L421.044 231.253C415.424 227.741 413.715 220.34 417.225 214.719L470.191 129.921C496.796 87.353 466.137 32.001 415.919 32.001H310.627L348.485 69.859C353.171 74.545 353.171 82.143 348.485 86.829L342.829 92.485C338.1430000000001 97.1709999999999 330.545 97.1709999999999 325.8590000000001 92.485L257.8590000000001 24.485C253.1730000000001 19.799 253.1730000000001 12.201 257.8590000000001 7.514L325.8590000000001 -60.486C330.545 -65.172 338.1430000000001 -65.172 342.8290000000001 -60.486L348.4850000000001 -54.8290000000001C353.1710000000001 -50.1430000000001 353.1710000000001 -42.5450000000001 348.4850000000001 -37.8580000000001L310.627 0H415.88C491.154 0 537.215 82.997 497.288 146.88zM41.813 129.931L97.616 219.27L109.66 167.104C111.151 160.646 117.594 156.62 124.052 158.111L131.846 159.91C138.304 161.401 142.33 167.844 140.839 174.302L119.206 268.004C117.715 274.462 111.272 278.488 104.814 276.997L11.112 255.364C4.654 253.873 0.628 247.43 2.119 240.972L3.918 233.178C5.409 226.72 11.852 222.6939999999999 18.31 224.185L70.503 236.235L14.707 146.88C-25.188 83.048 20.781 0 96.115 0H196C202.627 0 208 5.373 208 12V20C208 26.627 202.627 32 196 32H96.078C45.879 32 15.191 87.335 41.813 129.931z" />
+    <glyph glyph-name="redo-alt"
+      unicode="&#xF2F9;"
+      horiz-adv-x="512" d=" M512 415.985V288C512 270.327 497.673 256 480 256H352.032C323.55 256 309.305 290.528 329.405 310.627L383.022 364.251C346.671 391.128 302.514 406 256 406C137.589 406 42 310.026 42 192C42 73.585 137.978 -22 256 -22C309.682 -22 360.151 -2.203 399.108 32.884C403.836 37.142 411.081 36.919 415.58 32.42L422.659 25.341C427.531 20.469 427.29 12.526 422.177 7.908C378.202 -31.813 319.926 -56 256 -56C119.189 -56 8.252 54.781 8 191.533C7.749 328.173 119.183 439.904 255.822 440C312.843 440.04 365.367 420.823 407.278 388.511L457.373 438.612C477.436 458.676 512 444.46 512 415.985zM480 416L352 288H480V416" />
+    <glyph glyph-name="redo"
+      unicode="&#xF01E;"
+      horiz-adv-x="512" d=" M492 440H482C475.373 440 470 434.627 470 428V317.375C426.804 390.953 346.761 440.2850000000001 255.207 439.999C118.82 439.572 7.787 327.991 8 191.604C8.214 54.819 119.166 -56 256 -56C319.926 -56 378.202 -31.813 422.178 7.908C427.291 12.526 427.532 20.469 422.6600000000001 25.341L415.591 32.41C411.088 36.913 403.842 37.124 399.1090000000001 32.864C361.218 -1.238 311.065 -22 256 -22C138.256 -22 42 73.331 42 192C42 309.7440000000001 137.331 406 256 406C338.862 406 410.737 358.923 446.289 290H332C325.373 290 320 284.627 320 278V268C320 261.373 325.373 256 332 256H492C498.627 256 504 261.373 504 268V428C504 434.627 498.627 440 492 440z" />
+    <glyph glyph-name="registered"
+      unicode="&#xF25D;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM472 192C472 73.337 375.945 -24 256 -24C137.337 -24 40 72.055 40 192C40 310.663 136.055 408 256 408C374.663 408 472 311.945 472 192zM359.387 73.707C302.75 178.467 307.592 169.626 305.706 172.754C332.819 184.653 349.824 212.186 349.824 245.579C349.824 303.5130000000001 313.0300000000001 325.777 255.907 325.777H184.821C178.204 325.777 172.821 320.394 172.821 313.777V68C172.821 61.383 178.204 56 184.821 56H201.7290000000001C208.346 56 213.7290000000001 61.383 213.7290000000001 68V162.854H264.8400000000001L318.8440000000001 62.322A11.983 11.983 0 0 1 329.4140000000001 56.001H348.8300000000001C357.9300000000001 56 363.7080000000001 65.718 359.3870000000001 73.707zM266.016 201.235H213.73V287.396H256.991C277.707 287.396 308.194 286.304 308.194 244.8570000000001C308.193 217.543 292.426 201.235 266.016 201.235z" />
+    <glyph glyph-name="repeat-1-alt"
+      unicode="&#xF366;"
+      horiz-adv-x="512" d=" M54.027 120.287C40.129 140.758 32 165.447 32 192C32 262.579 89.421 320 160 320H320V256.031C320 226.792 356.192 212.854 375.785 234.624L447.785 314.592C458.737 326.761 458.7379999999999 345.236 447.785 357.406L375.785 437.38C356.226 459.114 320 445.262 320 415.974V352H160C71.775 352 0 280.225 0 192C0 158.087 10.612 126.609 28.683 100.701C33.11 94.353 42.289 93.765 47.468 99.516L52.956 105.612C56.623 109.685 57.105 115.752 54.027 120.287zM352 416L424 336L352 256V416zM483.317 283.299C478.89 289.6470000000001 469.711 290.235 464.532 284.4840000000001L459.044 278.3880000000001C455.377 274.315 454.895 268.248 457.973 263.713C471.871 243.242 480 218.553 480 192C480 121.421 422.579 64 352 64H192V127.969C192 157.208 155.808 171.146 136.215 149.376L64.215 69.407C53.263 57.238 53.262 38.763 64.215 26.593L136.215 -53.381C155.774 -75.1130000000001 192 -61.264 192 -31.974V32H352C440.225 32 512 103.775 512 192C512 225.913 501.388 257.391 483.317 283.299zM160 -32L88 48L160 128V-32zM229.495 145.007C229.495 151.451 232.896 154.854 239.342 154.854H256.707V208.202C256.707 213.036 256.886 218.049 256.886 218.049H256.527S254.737 214.11 252.589 212.32L250.978 210.888C246.323 206.59 241.489 206.771 237.192 211.425L232.538 216.438C228.063 221.092 228.241 225.925 232.896 230.401L255.096 251.168C258.855 254.569 262.257 256.001 267.269 256.001H277.474C283.918 256.001 287.32 252.601 287.32 246.155V154.854H304.864C311.308 154.854 314.711 151.452 314.711 145.007V137.845C314.711 131.4020000000001 311.309 127.999 304.864 127.999H239.342C232.897 127.999 229.495 131.401 229.495 137.845V145.007z" />
+    <glyph glyph-name="repeat-1"
+      unicode="&#xF365;"
+      horiz-adv-x="512" d=" M512 192C512 103.775 440.225 32 352 32H110.628L178.829 -36.201C183.515 -40.887 183.515 -48.485 178.829 -53.172L173.173 -58.828C168.487 -63.514 160.889 -63.514 156.202 -58.828L57.859 39.515C53.173 44.201 53.173 51.799 57.859 56.486L156.202 154.829C160.888 159.515 168.486 159.515 173.173 154.829L178.829 149.173C183.515 144.487 183.515 136.889 178.829 132.202L110.628 64H352C422.579 64 480 121.421 480 192C480 220.555 470.597 246.952 454.729 268.2680000000001C451.162 273.06 451.611 279.73 455.835 283.954L461.54 289.659C466.7 294.819 475.218 294.206 479.6229999999999 288.3880000000001C499.935 261.562 512 228.165 512 192zM57.271 115.732C41.403 137.048 32 163.445 32 192C32 262.579 89.421 320 160 320H401.372L333.1710000000001 251.799C328.4850000000001 247.113 328.4850000000001 239.515 333.1710000000001 234.828L338.8270000000001 229.172C343.5130000000001 224.486 351.1110000000001 224.486 355.7980000000001 229.172L454.1410000000001 327.515C458.8270000000001 332.201 458.8270000000001 339.799 454.1410000000001 344.486L355.799 442.828C351.113 447.514 343.515 447.514 338.828 442.828L333.172 437.1720000000001C328.486 432.486 328.486 424.888 333.172 420.201L401.372 352H160C71.775 352 0 280.225 0 192C0 155.835 12.065 122.438 32.376 95.613C36.781 89.795 45.299 89.181 50.459 94.342L56.164 100.047C60.389 104.271 60.838 110.9399999999999 57.271 115.732zM229.495 145.007C229.495 151.451 232.896 154.854 239.342 154.854H256.707V208.202C256.707 213.036 256.886 218.049 256.886 218.049H256.527S254.737 214.11 252.589 212.32L250.978 210.888C246.323 206.59 241.489 206.771 237.192 211.425L232.538 216.438C228.063 221.092 228.241 225.925 232.896 230.401L255.096 251.168C258.855 254.569 262.257 256.001 267.269 256.001H277.474C283.918 256.001 287.32 252.601 287.32 246.155V154.854H304.864C311.308 154.854 314.711 151.452 314.711 145.007V137.845C314.711 131.401 311.309 127.999 304.864 127.999H239.342C232.897 127.999 229.495 131.401 229.495 137.845V145.007z" />
+    <glyph glyph-name="repeat-alt"
+      unicode="&#xF364;"
+      horiz-adv-x="512" d=" M54.027 120.287C40.129 140.758 32 165.447 32 192C32 262.579 89.421 320 160 320H320V256.031C320 226.792 356.192 212.854 375.785 234.624L447.785 314.592C458.737 326.761 458.7379999999999 345.236 447.785 357.406L375.785 437.38C356.226 459.114 320 445.262 320 415.974V352H160C71.775 352 0 280.225 0 192C0 158.087 10.612 126.609 28.683 100.701C33.11 94.353 42.289 93.765 47.468 99.516L52.956 105.612C56.623 109.685 57.105 115.752 54.027 120.287zM352 416L424 336L352 256V416zM483.317 283.299C478.89 289.6470000000001 469.711 290.235 464.532 284.4840000000001L459.044 278.3880000000001C455.377 274.315 454.895 268.248 457.973 263.713C471.871 243.242 480 218.553 480 192C480 121.421 422.579 64 352 64H192V127.969C192 157.208 155.808 171.146 136.215 149.376L64.215 69.407C53.263 57.238 53.262 38.763 64.215 26.593L136.215 -53.381C155.774 -75.1130000000001 192 -61.264 192 -31.974V32H352C440.225 32 512 103.775 512 192C512 225.913 501.388 257.391 483.317 283.299zM160 -32L88 48L160 128V-32z" />
+    <glyph glyph-name="repeat"
+      unicode="&#xF363;"
+      horiz-adv-x="512" d=" M512 192C512 103.775 440.225 32 352 32H110.628L178.829 -36.201C183.515 -40.887 183.515 -48.485 178.829 -53.172L173.173 -58.828C168.487 -63.514 160.889 -63.514 156.202 -58.828L57.859 39.515C53.173 44.201 53.173 51.799 57.859 56.486L156.202 154.829C160.888 159.515 168.486 159.515 173.173 154.829L178.829 149.173C183.515 144.487 183.515 136.889 178.829 132.202L110.628 64H352C422.579 64 480 121.421 480 192C480 220.555 470.597 246.952 454.729 268.2680000000001C451.162 273.06 451.611 279.73 455.835 283.954L461.54 289.659C466.7 294.819 475.218 294.206 479.6229999999999 288.3880000000001C499.935 261.562 512 228.165 512 192zM57.271 115.732C41.403 137.048 32 163.445 32 192C32 262.579 89.421 320 160 320H401.372L333.1710000000001 251.799C328.4850000000001 247.113 328.4850000000001 239.515 333.1710000000001 234.828L338.8270000000001 229.172C343.5130000000001 224.486 351.1110000000001 224.486 355.7980000000001 229.172L454.1410000000001 327.515C458.8270000000001 332.201 458.8270000000001 339.799 454.1410000000001 344.486L355.799 442.828C351.113 447.514 343.515 447.514 338.828 442.828L333.172 437.1720000000001C328.486 432.486 328.486 424.888 333.172 420.201L401.372 352H160C71.775 352 0 280.225 0 192C0 155.835 12.065 122.438 32.376 95.613C36.781 89.795 45.299 89.181 50.459 94.342L56.164 100.047C60.389 104.271 60.838 110.9399999999999 57.271 115.732z" />
+    <glyph glyph-name="reply-all"
+      unicode="&#xF122;"
+      horiz-adv-x="576" d=" M105.368 201.369L265.37 41.389C285.39 21.379 320 35.409 320 64.019V135.169C441.58 130.809 468.9 106.939 441.2 8.749C432.85 -20.841 466.7 -43.461 490.89 -25.761C542.46 11.949 576 65.229 576 130.209C576 283.1089999999999 435.5 307.439 320 311.279V383.969C320 412.559 285.41 426.639 265.37 406.599L105.368 246.629C92.877 234.129 92.877 213.869 105.368 201.369zM128 223.999L288 383.999V279.899C418.165 278.554 544 261.634 544 130.209C544 65.109 503.51 23.049 472 -0.001C512.979 145.266 433.671 166.573 288 167.899V63.999L128 223.999zM9.372 246.627L169.372 406.601C182.839 420.068 202.867 418.107 214.561 406.706L32 223.999L214.564 41.287C202.865 29.884 182.826 27.9400000000001 169.373 41.393L9.373 201.3710000000001C-3.124 213.869 -3.124 234.1300000000001 9.372 246.6270000000001z" />
+    <glyph glyph-name="reply"
+      unicode="&#xF3E5;"
+      horiz-adv-x="576" d=" M11.093 196.35L187.091 12.35C211.81 -13.494 256 3.761 256 40V127.84C410.425 126.028 475.063 111.112 437.19 -23.251C428.849 -52.769 462.637 -75.4829999999999 486.87 -57.761C520.16 -33.421 576 21.83 576 116.81C576 287.897 421.452 317.8450000000001 256 319.8300000000001V407.984C256 444.254 211.784 461.45 187.09 435.634L11.093 251.65C-3.698 236.18 -3.698 211.82 11.093 196.35zM34.22 229.53L210.22 413.53C215.149 418.69 224 415.262 224 408V288C381.1140000000001 288 544 276.82 544 116.81C544 42.41 504 -5.36 467.98 -31.7C519.313 150.293 395.396 160 224 160V40C224 32.74 215.153 29.31 210.22 34.47L34.22 218.47A7.978 7.978 0 0 0 34.22 229.5300000000001z" />
+    <glyph glyph-name="republican"
+      unicode="&#xF75E;"
+      horiz-adv-x="640" d=" M173 287.8L145.6 291.8L133.4 316.6C131.2 321 124.9 321.1 122.7 316.6L110.5 291.8L83.1 287.8C78.2 287.1 76.2 281 79.8 277.6L99.6 258.3L94.8 231C94 226.1 99.1 222.4 103.5 224.7L128 237.6L152.5 224.7C156.8 222.4 162 226.1 161.2 231L156.5 258.3L176.3 277.6C179.8 281.1 177.9 287.1 173 287.8zM301 287.8L273.6 291.8L261.4000000000001 316.6C259.2000000000001 321 252.9000000000001 321.1 250.7000000000001 316.6L238.5000000000001 291.8L211.1000000000001 287.8C206.2000000000001 287.1 204.2000000000001 281 207.8000000000001 277.6L227.6000000000001 258.3L222.9000000000001 231C222.1000000000001 226.1 227.2000000000001 222.4 231.6000000000001 224.7L256.1 237.6L280.6 224.7C284.9000000000001 222.4 290.1 226.1 289.3 231L284.6 258.3L304.4000000000001 277.6C307.8 281.1 305.9000000000001 287.1 301.0000000000001 287.8zM608 192H576C558.3 192 544 177.7 544 160V80C544 71.2 536.8 64 528 64S512 71.2 512 80V256C512 344.4 440.4 416 352 416H160C71.6 416 0 344.4 0 256V16C0 -10.5 21.5 -32 48 -32H112C138.5 -32 160 -10.5 160 16V64H288V16C288 -10.5 309.5 -32 336 -32H400C422.3 -32 440.9 -16.7 446.3 3.9C470.7 -22.3 507.2 -37.2 547.2 -30.4C601.8000000000001 -21.2 640.1 29.2 640.1 84.6V160C640 177.7 625.7 192 608 192zM32 256C32 326.6 89.4 384 160 384H352C422.6 384 480 326.6 480 256V192H32V256zM608 80C608 35.9 572.1 0 528 0S448 35.9 448 80V96H416V16C416 7.2 408.8 0 400 0H336C327.2 0 320 7.2 320 16V96H128V16C128 7.2 120.8 0 112 0H48C39.2 0 32 7.2 32 16V160H480V80C480 53.5 501.5 32 528 32S576 53.5 576 80V160H608V80zM429 287.8L401.6 291.8L389.4000000000001 316.6C387.2000000000001 321 380.9000000000001 321.1 378.7000000000001 316.6L366.5000000000001 291.8L339.1000000000001 287.8C334.2000000000001 287.1 332.2000000000001 281 335.8000000000001 277.6L355.6000000000001 258.3L350.9000000000001 231C350.1000000000001 226.1 355.2000000000001 222.4 359.6000000000001 224.7L384.1000000000001 237.6L408.6000000000001 224.7C412.9000000000001 222.4 418.1000000000001 226.1 417.3000000000001 231L412.6000000000001 258.3L432.4000000000001 277.6C435.8000000000001 281.1 433.9000000000001 287.1 429.0000000000001 287.8z" />
+    <glyph glyph-name="restroom"
+      unicode="&#xF7BD;"
+      horiz-adv-x="640" d=" M328 448H312C307.6 448 304 444.4 304 440V-56C304 -60.4 307.6 -64 312 -64H328C332.4 -64 336 -60.4 336 -56V440C336 444.4 332.4 448 328 448zM128 288C172.2 288 208 323.8 208 368S172.2 448 128 448S48 412.2 48 368S83.8 288 128 288zM128 416C154.5 416 176 394.5 176 368S154.5 320 128 320S80 341.5 80 368S101.5 416 128 416zM160 272H96C51.8 272 16 236.2 16 192V90.7C16 76 27.9 64 42.7 64H56V-32C56 -49.7 70.3 -64 88 -64H168C185.7 -64 200 -49.7 200 -32V64H213.3C228 64 240 75.9 240 90.7V192C240 236.2 204.2 272 160 272zM208 96H168V-32H88V96H48V192C48 218.5 69.5 240 96 240H160C186.5 240 208 218.5 208 192V96zM512 288C556.2 288 592 323.8 592 368S556.2 448 512 448S432 412.2 432 368S467.8 288 512 288zM512 416C538.5 416 560 394.5 560 368S538.5 320 512 320S464 341.5 464 368S485.5 416 512 416zM638.1 89L593.2 210.4C583.1 246.7 549.7 272 512 272S440.9 246.7 430.8 210.4L385.9 89C382.4 79.6 383.7 69 389.5 60.7C395.3 52.4 404.7 47.5 414.8 47.5H440V-32.1C440 -49.7 454.3 -64 471.9 -64H552C569.6 -64 583.9 -49.7 583.9 -32.1V47.5H609.1C619.2 47.5 628.6 52.4 634.4 60.7C640.1999999999999 69 641.6 79.6 638.1 89zM552 79.5L552.1 -32H471.9L472.0000000000001 79.5H416.0000000000001L461.3000000000001 200.5C468.0000000000001 224.3 488.7 240 512.1 240S556.2 224.3 562.9 200.5L608.1999999999999 79.5H552z" />
+    <glyph glyph-name="retweet-alt"
+      unicode="&#xF361;"
+      horiz-adv-x="640" d=" M607.974 128H544V328C544 341.255 533.255 352 520 352H252.024C241.026 352 235.822 338.438 243.996 331.081L252.885 323.081A12 12 0 0 1 260.913 320H512V128H448.032C418.793 128 404.855 91.808 426.625 72.215L506.594 0.215C518.763 -10.737 537.2379999999999 -10.7379999999999 549.408 0.215L629.3820000000001 72.215C651.113 91.774 637.264 128 607.974 128zM528 24L448 96H608L528 24zM396.003 52.92L387.114 60.92A12 12 0 0 1 379.086 64H128V256H191.968C221.207 256 235.145 292.192 213.375 311.785L133.4070000000001 383.785C121.2380000000001 394.737 102.763 394.738 90.5930000000001 383.785L10.619 311.785C-11.114 292.226 2.738 256 32.026 256H96V56C96 42.745 106.745 32 120 32H387.976C398.974 32 404.178 45.562 396.003 52.92zM32 288L112 360L192 288H32z" />
+    <glyph glyph-name="retweet"
+      unicode="&#xF079;"
+      horiz-adv-x="640" d=" M634.828 84.201L536.485 -14.142C531.799 -18.828 524.201 -18.828 519.514 -14.142L421.171 84.201C416.485 88.887 416.485 96.485 421.171 101.172L426.827 106.828C431.513 111.514 439.111 111.514 443.798 106.828L512 38.628V320H260.024A11.996 11.996 0 0 0 251.539 323.515L243.539 331.515C235.979 339.075 241.333 352 252.024 352H520C533.255 352 544 341.255 544 328V38.628L612.201 106.829C616.8870000000001 111.5149999999999 624.485 111.5149999999999 629.172 106.829L634.828 101.173C639.514 96.4859999999999 639.514 88.8879999999999 634.828 84.201zM388.461 60.485A12.002 12.002 0 0 1 379.976 64H128V345.372L196.201 277.1720000000001C200.887 272.486 208.485 272.486 213.171 277.1720000000001L218.828 282.829C223.514 287.515 223.515 295.113 218.828 299.8L120.485 398.1430000000001C115.799 402.829 108.201 402.829 103.514 398.1430000000001L5.172 299.799C0.486 295.113 0.486 287.514 5.172 282.828L10.829 277.171C15.515 272.485 23.113 272.485 27.799 277.171L96 345.372V56C96 42.745 106.745 32 120 32H387.976C398.667 32 404.021 44.926 396.461 52.485L388.461 60.485z" />
+    <glyph glyph-name="ribbon"
+      unicode="&#xF4D6;"
+      horiz-adv-x="448" d=" M439.5 40.3L323.7 162.1L366.1 207.5C399.5 243.2000000000001 403.5 294.8 376.3 339L336.8 403.1C331.3 412.1 324 419.4000000000001 315.3 425C299.1 435.5 270.2 448 224 448C177.9 448 148.9 435.5 132.8 425.1C124 419.5 116.8 412 111.3 403L69.1 334.5C44 293.8 49.2 242.7 82.1 207.5L126.3 160.2L8.4 40.1C-6.5 24 0.3 1.3 13.5 -7.1L80.4 -58.6C96.9 -69.2999999999999 114.2 -62.2 122.3 -53.6L224 55.4L325.7 -53.6C341.3 -70.2999999999999 361.4 -62.6 368.7 -57.9L433.5 -7.9C449.8 2.8 453.2 25.5 439.5 40.3zM328.4 355.7L349 322.3C368.7 290.3 366.3 254.7 342.7 229.4L301.6 185.4L246.8 243L298.8 299.3C314.8 314.8 323.5 336.3 328.4 355.7zM224.8 266.2L179.7 313.6C206.4 321.6 241.9 321.6 268.6 313.6L224.8 266.2zM150.2 398.2C162.7 406.4 185.7 416 224 416S285.3 406.3 297.9 398.2C299.8 397 300.9 395 302.5 393.5C301.5 379.8 298 358.2 289 340.2C270.4 347.9 248.8 352 224 352C199.2 352 177.5 347.9 158.8 340.1C149.1 359.5 146.3 383.1 145.5 394.7C147 396 148.5 397.2 150.2 398.2zM98.9 -32.5L31.6 18L148.1 136.8L202.2 78.8L98.9 -32.5zM349.1 -31.7L105.4 229.4C82.5 253.9 78.8 289.4 96.3 317.8L119.5 355.4C124.4 336.2 133.2 314.9 148.8 299.8L415 18.2L349.1 -31.7z" />
+    <glyph glyph-name="ring"
+      unicode="&#xF70B;"
+      horiz-adv-x="512" d=" M256 384C87.93 384 0 319.61 0 256V141.87C0 63.52 114.62 0 256 0S512 63.52 512 141.87V256C512 319.61 424.07 384 256 384zM480 141.87C480 89.9 388.01 32 256 32S32 89.9 32 141.87V191.99C71.33 155.37 146.55 128 256 128S440.67 155.37 480 191.99V141.87zM89.32 192.03C130.3 211.63 189.74 224 256 224S381.7 211.63 422.68 192.03C381.67 172.41 322.29 160 256 160S130.33 172.41 89.32 192.03zM454.2 211.34C411.3 237.8 345.06 256 256 256S100.7 237.8 57.8 211.34C41.39 224.68 32 239.86 32 256C32 309.02 132.29 352 256 352S480 309.02 480 256C480 239.86 470.61 224.68 454.2 211.34z" />
+    <glyph glyph-name="road"
+      unicode="&#xF018;"
+      horiz-adv-x="576" d=" M279.4700000000001 256H296.5300000000001C302.3400000000001 256 306.8800000000001 262.17 306.2600000000001 269.26L302.5100000000001 312.84C302.1600000000001 316.91 299.3600000000001 320 296.0200000000001 320H279.9700000000001C276.6300000000001 320 273.8300000000001 316.91 273.48 312.84L269.73 269.26C269.12 262.17 273.6600000000001 256 279.4700000000001 256zM273.4500000000001 144H302.5500000000001C310.3000000000001 144 316.3400000000001 152.23 315.5300000000001 161.68L311.4000000000001 209.68C310.7000000000001 217.82 305.1000000000001 224 298.4200000000001 224H277.5900000000001C270.9100000000001 224 265.3100000000001 217.82 264.6100000000001 209.68L260.4800000000001 161.68C259.6600000000001 152.23 265.7000000000001 144 273.4500000000001 144zM284.1100000000001 352H291.9000000000001C295.7800000000001 352 298.8000000000001 356.12 298.3900000000001 360.8400000000001L297.0100000000001 376.8400000000001C296.6600000000001 380.91 293.8600000000002 384 290.5200000000001 384H285.4900000000001C282.1500000000002 384 279.3500000000002 380.91 279.0000000000001 376.8400000000001L277.6200000000001 360.8400000000001C277.2100000000001 356.12 280.2300000000002 352 284.1100000000002 352zM308.0600000000001 112H267.9400000000001C261.2600000000001 112 255.6600000000001 105.82 254.9600000000001 97.68L248.0700000000001 17.68C247.2600000000001 8.23 253.3000000000001 0 261.0500000000001 0H314.9400000000001C322.6900000000001 0 328.7300000000001 8.23 327.9200000000001 17.68L321.0300000000001 97.68C320.3400000000001 105.82 314.7400000000001 112 308.0600000000001 112zM157.35 384A7.990000000000001 7.990000000000001 0 0 1 149.97 379.08L1.25 22.15C-3.14 11.62 4.6 0 16.02 0H44.02C51.13 0 57.39 4.69 59.38 11.52L165.03 373.76C166.52 378.88 162.68 384 157.35 384zM574.75 22.15L426.04 379.08A8 8 0 0 1 418.6600000000001 384C413.3300000000001 384 409.49 378.88 410.98 373.76L516.63 11.52A15.995999999999999 15.995999999999999 0 0 1 531.99 0H559.99C571.4 0 579.15 11.62 574.75 22.15z" />
+    <glyph glyph-name="robot"
+      unicode="&#xF544;"
+      horiz-adv-x="576" d=" M160 32H224V64H160V32zM192 224C174.3 224 160 209.7 160 192S174.3 160 192 160S224 174.3 224 192S209.7 224 192 224zM384 224C366.3 224 352 209.7 352 192S366.3 160 384 160S416 174.3 416 192S401.7 224 384 224zM544 224H512V256C512 309 469 352 416 352H304V432C304 440.8 296.8 448 288 448S272 440.8 272 432V352H160C107 352 64 309 64 256V224H32C14.3 224 0 209.7 0 192V64C0 46.3 14.3 32 32 32H64V0C64 -35.3 92.7 -64 128 -64H448C483.3 -64 512 -35.3 512 0V32H544C561.7 32 576 46.3 576 64V192C576 209.7 561.7 224 544 224zM64 64H32V192H64V64zM480 0C480 -17.6 465.6 -32 448 -32H128C110.4 -32 96 -17.6 96 0V256C96 291.3 124.7 320 160 320H416C451.3 320 480 291.3 480 256V0zM544 64H512V192H544V64zM352 32H416V64H352V32zM256 32H320V64H256V32z" />
+    <glyph glyph-name="rocket"
+      unicode="&#xF135;"
+      horiz-adv-x="511.9" d=" M501.8 428.9C500.7 433.3 497.3 436.7 493 437.7C453.7 447.3 442.5 448 408 448C339.4 448 279.9 403.1 234.2 352H106.7C95.3 352 84.8 346 79.1 336.1L4.4 208.1C-8 186.8 7.4 160 32 160H114.7C106.1 140.9 100.4 126.5 96.1 115.4C94.4 111 95.4 105.9 98.8 102.6L166.5 34.9C169.9 31.5 174.9 30.5 179.3 32.2C190.5 36.5 204.8 42.2 223.9 50.8V-32C223.9 -56.7 250.7 -72.1 272 -59.6L400 15.1C409.8 20.8 415.9 31.4 415.9 42.7V170.2C467 215.9 511.9 275.4 511.9 344C512 378.5 511.3 389.8 501.8 428.9zM32 192L106.7 320H207.8C175.3 277.4 149.2 231.7 129.7 192H32zM256 -32V65.7C295.7 85.2 341.4 111.2 384 143.8V42.6999999999999L256 -32zM179.9 66.7L130.8 115.8C177.6 232.1 283.8 416 408.1 416C432.8 416 445.4000000000001 416 473.6 409.5C480 381.3 480 368.8 480 344C480 219.7 295.9 113.5 179.9 66.7zM368 360C337.1 360 312 334.9 312 304S337.1 248 368 248S424 273.1 424 304S398.9 360 368 360zM368 280C354.8 280 344 290.8 344 304S354.8 328 368 328S392 317.2 392 304S381.2 280 368 280z" />
+    <glyph glyph-name="route-highway"
+      unicode="&#xF61A;"
+      horiz-adv-x="448" d=" M428.4 178.79C397.92 224.21 416.6 283.26 441.4 334.1900000000001C445.36 342.3200000000001 444.74 351.9400000000001 439.53 359.3200000000001L398.36 417.68C393.8 424.1500000000001 386.56 427.8200000000001 379.08 427.8200000000001C376.3399999999999 427.8200000000001 373.56 427.3300000000001 370.87 426.3C355.5 420.42 338.2 417.4100000000001 320.61 417.4100000000001C291.1 417.4100000000001 260.8 425.88 237.45 443.5200000000001C233.48 446.5 228.74 448 224 448S214.52 446.5 210.56 443.51C187.21 425.87 156.9 417.4 127.39 417.4C109.8 417.4 92.5 420.41 77.14 426.29A22.929 22.929 0 0 1 68.93 427.81C61.45 427.81 54.21 424.14 49.65 417.68L8.47 359.31C3.26 351.93 2.64 342.32 6.6 334.18C31.4 283.26 50.07 224.21 19.6 178.78C-18.34 122.26 1.05 39.35 58.41 12.75L223.97 -64L389.5900000000001 12.76C446.9600000000001 39.36 466.34 122.27 428.4000000000001 178.79zM72.17 394.0900000000001C89.34 388.39 108.29 385.4 127.39 385.4C163.02 385.4 197.03 395.44 224 413.78C250.97 395.43 284.9700000000001 385.4 320.61 385.4C339.7200000000001 385.4 358.67 388.39 375.8400000000001 394.0900000000001L410.8400000000001 344.4700000000001C402.8100000000001 327.69 394.8300000000001 308.38 388.98 287.99H59.03C53.17 308.37 45.2 327.69 37.17 344.4700000000001L72.17 394.09zM412.61 88.0600000000001C406.61 66.6200000000001 393.32 49.7600000000001 376.14 41.7900000000001L223.98 -28.7299999999999L71.88 41.7900000000001C54.69 49.7600000000001 41.4 66.6200000000001 35.4 88.0600000000001C28.37 113.1800000000001 32.4 140.4300000000001 46.18 160.9500000000001C66.43 191.1300000000001 70.25 224.18 66.05 255.9900000000001H381.9700000000001C377.7600000000001 224.1800000000001 381.5900000000001 191.1300000000001 401.8400000000001 160.9400000000001C415.61 140.4300000000001 419.6300000000001 113.1800000000001 412.61 88.0600000000001z" />
+    <glyph glyph-name="route-interstate"
+      unicode="&#xF61B;"
+      horiz-adv-x="480" d=" M464.83 392.86C461.76 402.81 453.17 409.53 443.89 409.53C442.16 409.53 440.4 409.3 438.65 408.81C420.42 403.69 400.91 400.85 380.55 400.85C331.43 400.85 286.94 416.92 254.38 442.96C250.18 446.32 245.09 448 240 448S229.82 446.32 225.62 442.9700000000001C193.06 416.93 148.57 400.86 99.45 400.86C79.09 400.86 59.58 403.7 41.35 408.82C39.6 409.31 37.84 409.54 36.11 409.54C26.83 409.54 18.24 402.81 15.17 392.87C-21.83 272.89 -6.68 37.66 240 -64C486.68 37.66 501.83 272.89 464.83 392.86zM43.37 375.27C61.66 371.02 80.48 368.86 99.45 368.86C151.55 368.86 201.16 384.7200000000001 240 413.65C278.83 384.7200000000001 328.45 368.86 380.55 368.86C399.51 368.86 418.32 371.01 436.6 375.26C441.23 358.0800000000001 447.5200000000001 326.98 447.88 288H32.07C32.23 319.56 36.24 349.38 43.37 375.27zM240.01 -29.18C97.11 34.74 42.04 151.48 33.32 256H446.65C444.51 228.82 439.36 199.18 428.57 168.05C397.73 79.14 334.33 12.84 240.01 -29.1799999999999z" />
+    <glyph glyph-name="route"
+      unicode="&#xF4D7;"
+      horiz-adv-x="512" d=" M432 96H320C293.5 96 272 117.5 272 144S293.5 192 320 192H416S512 299 512 352S469 448 416 448S320 405 320 352C320 317.4 360.9 259.8 389.3 224H320C275.9 224 240 188.1 240 144S275.9 64 320 64H432C458.5 64 480 42.5 480 16S458.5 -32 432 -32H122.7C151.1 3.8 192 61.4 192 96C192 149 149 192 96 192S0 149 0 96S96 -64 96 -64H432C476.1 -64 512 -28.1 512 16S476.1 96 432 96zM352 352C352 387.3 380.7 416 416 416S480 387.3 480 352C480 331.6 449.9 284 416 241.6C382 284.2 352 332.2 352 352zM32 96C32 131.3 60.7 160 96 160S160 131.3 160 96C160 75.6 129.9 28 96 -14.4C62 28.2 32 76.2000000000001 32 96zM96 112C74.8 112 74.9 80 96 80C117.2 80 117.1 112 96 112zM416 368C394.8 368 394.9 336 416 336C437.2 336 437.1 368 416 368z" />
+    <glyph glyph-name="rss-square"
+      unicode="&#xF143;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM144 128C152.822 128 160 120.823 160 112S152.822 96 144 96S128 103.177 128 112S135.178 128 144 128M144 160C117.49 160 96 138.51 96 112S117.49 64 144 64S192 85.49 192 112S170.51 160 144 160zM339.981 64H331.962C325.593 64 320.284 68.969 319.969 75.33C314.293 190.165 222.241 282.289 107.33 287.969C100.968 288.283 96 293.592 96 299.962V307.981C96 314.807 101.683 320.312 108.502 319.987C240.117 313.708 345.705 208.176 351.987 76.502C352.312 69.6829999999999 346.807 63.9999999999999 339.981 63.9999999999999zM267.975 64H259.93C253.632 64 248.4 68.859 247.944 75.14C242.481 150.374 182.193 210.504 107.12 215.945C100.846 216.399 96 221.64 96 227.93V235.975C96 242.978 101.957 248.457 108.943 247.97C200.34 241.603 273.603 168.341 279.97 76.943C280.457 69.957 274.978 64 267.975 64z" />
+    <glyph glyph-name="rss"
+      unicode="&#xF09E;"
+      horiz-adv-x="448" d=" M80 96C106.467 96 128 74.467 128 48S106.467 0 80 0S32 21.533 32 48S53.533 96 80 96M80 128C35.817 128 0 92.183 0 48S35.817 -32 80 -32S160 3.817 160 48S124.183 128 80 128zM447.996 -19.615C441.548 218.233 249.936 409.549 12.386 415.995C5.609 416.179 0 410.771 0 403.993V395.987C0 389.505 5.146 384.171 11.626 383.993C232.436 377.943 409.945 200.08 415.993 -20.374C416.171 -26.854 421.505 -32 427.987 -32H435.994C442.772 -32 448.179 -26.391 447.996 -19.615zM303.751 -19.565C297.404 138.567 170.544 265.4050000000001 12.435 271.751C5.643 272.024 0 266.55 0 259.753V251.748C0 245.289 5.114 240.028 11.567 239.759C152.701 233.868 265.868 120.68 271.759 -20.433C272.028 -26.886 277.29 -32 283.748 -32H291.753C298.551 -32 304.024 -26.357 303.751 -19.565z" />
+    <glyph glyph-name="ruble-sign"
+      unicode="&#xF158;"
+      horiz-adv-x="384" d=" M245.712 160.191C326.008 160.191 384 210.514 384 288.994C384 366.875 326.009 416 245.712 416H108C101.373 416 96 410.627 96 404V200H12C5.373 200 0 194.627 0 188V172C0 165.373 5.373 160 12 160H96V102H12C5.373 102 0 96.627 0 90V76C0 69.373 5.373 64 12 64H96V-20C96 -26.627 101.373 -32 108 -32H127.971C134.598 -32 139.971 -26.627 139.971 -20V64H308C314.627 64 320 69.373 320 76V90C320 96.627 314.627 102 308 102H139.971V160.191H245.712zM139.971 376.406H244.614C303.88 376.406 342.754 344.427 342.754 289.1910000000001C342.754 233.373 303.8810000000001 200.231 243.9770000000001 200.231H139.971V376.406z" />
+    <glyph glyph-name="ruler-combined"
+      unicode="&#xF546;"
+      horiz-adv-x="512" d=" M480 128H192V416C192 433.67 177.67 448 160 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H480C497.67 -64 512 -49.67 512 -32V96C512 113.67 497.67 128 480 128zM32 416H160V352H104C99.58 352 96 348.42 96 344V328C96 323.58 99.58 320 104 320H160V272H104C99.58 272 96 268.42 96 264V248C96 243.58 99.58 240 104 240H160V192H104C99.58 192 96 188.42 96 184V168C96 163.58 99.58 160 104 160H160V118.62L32 -9.38V416zM480 -32H54.62L182.62 96H224V40C224 35.58 227.58 32 232 32H248C252.42 32 256 35.58 256 40V96H304V40C304 35.58 307.58 32 312 32H328C332.42 32 336 35.58 336 40V96H384V40C384 35.58 387.58 32 392 32H408C412.42 32 416 35.58 416 40V96H480V-32z" />
+    <glyph glyph-name="ruler-horizontal"
+      unicode="&#xF547;"
+      horiz-adv-x="640" d=" M608 320H32C14.33 320 0 305.67 0 288V96C0 78.33 14.33 64 32 64H608C625.67 64 640 78.33 640 96V288C640 305.67 625.67 320 608 320zM608 96H32V288H112V232C112 227.58 115.58 224 120 224H136C140.42 224 144 227.58 144 232V288H208V232C208 227.58 211.58 224 216 224H232C236.42 224 240 227.58 240 232V288H304V232C304 227.58 307.58 224 312 224H328C332.42 224 336 227.58 336 232V288H400V232C400 227.58 403.58 224 408 224H424C428.42 224 432 227.58 432 232V288H496V232C496 227.58 499.58 224 504 224H520C524.42 224 528 227.58 528 232V288H608V96z" />
+    <glyph glyph-name="ruler-triangle"
+      unicode="&#xF61C;"
+      horiz-adv-x="512" d=" M501.65 -4.08L59.91 437.65C52.76 444.8 43.97 448 35.35 448C17.31 448 0 433.99 0 412.83V-28.9C0 -48.29 15.71 -64 35.1 -64H476.83C508.1 -64 523.76 -26.2 501.65 -4.08zM479.69 -30.09C478.9 -32 477.65 -32 476.83 -32H35.1C33.39 -32 32 -30.61 32 -28.9V412.83C32 415.96 35.21 416 35.36 416C35.84 416 36.39 415.92 37.29 415.02L111.08 341.23L94.11 324.26C90.99 321.14 90.99 316.07 94.11 312.95L105.43 301.64A7.98 7.98 0 0 1 111.09 299.3C113.14 299.3 115.18 300.08 116.75 301.64L133.72 318.61L178.98 273.35L162.01 256.38C158.89 253.26 158.89 248.19 162.01 245.07L173.32 233.76A7.98 7.98 0 0 1 178.98 231.42C181.03 231.42 183.08 232.2 184.64 233.76L201.61 250.73L246.87 205.47L229.9 188.5C226.78 185.38 226.78 180.31 229.9 177.19L241.21 165.88A7.98 7.98 0 0 1 246.87 163.54C248.92 163.54 250.97 164.32 252.53 165.88L269.5 182.85L314.75 137.6L297.78 120.63C294.66 117.51 294.66 112.44 297.78 109.32L309.09 98.01C310.65 96.45 312.7 95.67 314.75 95.67S318.84 96.45 320.4100000000001 98.01L337.38 114.98L382.63 69.73L365.66 52.76C362.54 49.64 362.54 44.57 365.66 41.45L376.97 30.14C378.53 28.58 380.58 27.8 382.63 27.8S386.72 28.58 388.29 30.14L405.26 47.11L479.05 -26.68C479.6 -27.29 480.49 -28.18 479.69 -30.09zM123.31 219.32C118.75 223.88 111.81 225.27 105.87 222.79A15.999 15.999 0 0 1 96 208.01V48.01C96 39.17 103.16 32.01 112 32.01H272C278.4700000000001 32.01 284.31 35.9 286.78 41.89A16.048 16.048 0 0 1 283.31 59.33L123.31 219.32zM128 64.01V169.38L233.37 64H128z" />
+    <glyph glyph-name="ruler-vertical"
+      unicode="&#xF548;"
+      horiz-adv-x="256" d=" M224 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H224C241.67 -64 256 -49.67 256 -32V416C256 433.67 241.67 448 224 448zM32 -32V416H224V352H168C163.58 352 160 348.42 160 344V328C160 323.58 163.58 320 168 320H224V256H168C163.58 256 160 252.42 160 248V232C160 227.58 163.58 224 168 224H224V160H168C163.58 160 160 156.42 160 152V136C160 131.58 163.58 128 168 128H224V64H168C163.58 64 160 60.42 160 56V40C160 35.58 163.58 32 168 32H224V-32H32z" />
+    <glyph glyph-name="ruler"
+      unicode="&#xF545;"
+      horiz-adv-x="640" d=" M635.7 282.2L556.1 420.1C550.2 430.3 539.5 436 528.5 436C523.1 436 517.6 434.6 512.6 431.7L15.9 145.2C0.7 136.5 -4.5 117 4.3 101.8L83.9 -36C89.8 -46.2 100.5 -51.9 111.5 -51.9C116.9 -51.9 122.4 -50.5 127.4 -47.6L624 238.9C639.3 247.5 644.5 267 635.7 282.2zM111.5 -20.2L31.9 117.7L100.9 157.5L144.7 81.7C146.9 77.9 151.8 76.6 155.6 78.8L169.4 86.8C173.2 89 174.5 93.9 172.3 97.7L128.5 173.5L183.7 205.3L211.6 157.1C213.8 153.3 218.7 152 222.5 154.2000000000001L236.3 162.2000000000001C240.1 164.4 241.4 169.3000000000001 239.2 173.1L211.3 221.3L266.5 253.1L310.3 177.3C312.5 173.5 317.4000000000001 172.2 321.2 174.4L335 182.4C338.8 184.6 340.1 189.5000000000001 337.9 193.3000000000001L294 268.9L349.2 300.7000000000001L377.1 252.5C379.3 248.7 384.2 247.4 388 249.6L401.8 257.6C405.6 259.8 406.9 264.7 404.7 268.5L376.8 316.7L432 348.5L475.8 272.7C478 268.9 482.9 267.6 486.7 269.8L500.5 277.8C504.3 280 505.6 284.9 503.4 288.7L459.6 364.5L528.5999999999999 404.3L608.1999999999999 266.5L111.4999999999999 -20.2z" />
+    <glyph glyph-name="running"
+      unicode="&#xF70C;"
+      horiz-adv-x="448" d=" M396 232H381.4700000000001L372.43 259.12C364.32 283.43 348.25 303.12 327.93 317.16C347 330.0900000000001 360 351.27 360 376C360 415.7 327.7 448 288 448S216 415.7 216 376C216 367.66 217.56 359.7200000000001 220.2 352.28C211.58 354.26 202.83 355.5 194.07 355.5C173.52 355.5 153.27 349.9700000000001 135.43 339.5L89.24 315.43C64.7 300.69 56.7 268.7 71.4 244.12C80.79 228.5 97.88 218.85 116.03 218.85C125.01 218.85 133.85 221.18 141.68 225.61L160.63 235.46L101.75 104H52C23.33 104 0 80.67 0 52S23.33 0 52 0H114.91C148.56 0 178.86 19.99 192.11 50.92L211.43 90.66L255.13 71.03L235.49 2.29C227.62 -25.29 243.64 -54.13 271.2 -62C276 -63.34 280.75 -64 285.51 -64C308.58 -64 329.13 -48.5 335.49 -26.31L359.89 59.09C367 83.9500000000001 361.91 110.0100000000001 347.88 130.21C354.08 128.7600000000001 360.51 128.0000000000001 367.08 128.0000000000001H396C424.67 128.0000000000001 448 151.3300000000001 448 180.0000000000001S424.67 232.0000000000001 396 232.0000000000001zM288 416C310.09 416 328 398.0900000000001 328 376S310.09 336 288 336S248 353.91 248 376S265.9100000000001 416 288 416zM162.69 63.52A51.915 51.915 0 0 0 114.91 32H52C40.95 32 32 40.95 32 52S40.95 72 52 72H114.91C119.71 72 124.03 74.86 125.94 79.28L152.66 136.16C159.56 123.44 169.73 112.59 182.64 104.73L162.69 63.52zM396 160H367.06A51.93999999999999 51.93999999999999 0 0 0 317.73 195.55L304.1400000000001 236.35C301.3100000000001 244.8100000000001 295.9300000000001 251.7800000000001 289.1400000000001 257.0200000000001L247.6700000000001 153.3300000000001L300.4500000000001 129.61C323.8600000000001 119.06 336.1700000000001 92.52 329.1200000000001 67.88L304.7300000000001 -17.5C302.2100000000001 -26.28 294.2100000000001 -32 285.5100000000001 -32C283.6800000000001 -32 281.8400000000001 -31.75 279.9900000000001 -31.23C269.3800000000001 -28.2 263.2200000000002 -17.12 266.2600000000001 -6.5L290.6500000000001 78.88C292.2900000000001 84.57 289.4300000000001 90.69 284.0300000000001 93.13C284.0300000000001 93.13 198.2100000000001 132.17 195.3200000000001 134.29C177.5200000000001 147.38 169.9000000000001 170.77 176.8100000000001 192.17L214.5600000000001 279.74S197.6600000000001 283.51 194.0600000000001 283.51C186.1800000000001 283.51 178.4700000000001 281.37 171.5600000000001 277.2L126.3100000000001 253.68A20.137 20.137 0 0 0 116.0200000000001 250.84C109.2200000000001 250.84 102.6100000000001 254.3 98.8600000000001 260.54C93.1900000000001 270.0199999999999 96.2500000000001 282.31 105.7200000000001 287.9899999999999L150.9800000000001 311.51C164.2200000000002 319.44 179.0400000000001 323.5 194.0800000000001 323.5C200.9100000000002 323.5 207.8000000000001 322.6599999999999 214.5900000000001 320.9699999999999L282.7800000000001 303.92C310.7800000000001 296.94 332.9500000000001 276.3999999999999 342.0900000000001 249L355.6800000000001 208.1999999999999C357.3200000000001 203.2899999999999 361.9000000000001 200 367.0700000000001 200H396C407.05 200 416 191.05 416 180S407.05 160 396 160z" />
+    <glyph glyph-name="rupee-sign"
+      unicode="&#xF156;"
+      horiz-adv-x="320" d=" M320 388V404C320 410.627 314.627 416 308 416H12C5.373 416 0 410.627 0 404V388C0 381.373 5.373 376 12 376H84.614C131.707 376 165.92 355.879 177.99 320H12C5.373 320 0 314.627 0 308V292C0 285.373 5.373 280 12 280H182.387C178.344 229.893 140.538 200.446 83.977 200.446H12C5.373 200.446 0 195.073 0 188.446V172.639C0 169.654 1.113 166.776 3.121 164.567L178.253 -28.072A11.998 11.998 0 0 1 187.132 -32H208.716C219.115 -32 224.592 -19.674 217.621 -11.957L62.306 160H85.713C162.932 160 219.512 206.579 223.737 280H308C314.627 280 320 285.373 320 292V308C320 314.627 314.627 320 308 320H220.662C215.702 342.088 205.375 360.969 190.844 376H308C314.627 376 320 381.373 320 388z" />
+    <glyph glyph-name="rv"
+      unicode="&#xF7BE;"
+      horiz-adv-x="640" d=" M304 320H112C103.2 320 96 312.8 96 304V208C96 199.2 103.2 192 112 192H304C312.8 192 320 199.2 320 208V304C320 312.8 312.8 320 304 320zM288 224H128V288H288V224zM576.1 256H600C622.1 256 640 273.9 640 296C640 362.3 586.3 416 520 416H384V432C384 440.8 376.8 448 368 448H240C231.2 448 224 440.8 224 432V416H64C28.7 416 0 387.3 0 352V154.5C0 137.5 6.7 121.3 18.7 109.3L88.4 39.6C91.2 36.8 94.5 35 98.1 33.7C96.8 28 96 22.1 96 16C96 -28.2 131.8 -64 176 -64S256 -28.2 256 16C256 21.5 255.4 26.8 254.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H608C625.6 32 640 46.4 640 64V165.6C640 182.6 633.3 198.8 621.3 210.8L576.1 256zM594.8000000000001 192H416V256H517.5C526.1 256 534.2 252.6 540.3 246.6L594.8 192zM176 -32C149.5 -32 128 -10.5 128 16S149.5 64 176 64S224 42.5 224 16S202.5 -32 176 -32zM384 64H239.6C225 83.3 202 96 176 96S127 83.3 112.4 64H109.3L41.4 131.9C35.4 137.9 32 146 32 154.5V352C32 369.7 46.3 384 64 384H520C568.5 384 608 344.5 608 296C608 291.6 604.4 288 600 288H384V64zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32zM608 64H559.6C545 83.3 522 96 496 96S447 83.3 432.4 64H416V160H608V64z" />
+    <glyph glyph-name="sad-cry"
+      unicode="&#xF5B3;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM376 18.4V176C376 184.8 368.8 192 360 192S344 184.8 344 176V-1.2C315 -15.7 282.5 -24 248 -24S181 -15.7 152 -1.2V176C152 184.8 144.8 192 136 192S120 184.8 120 176V18.4C66.7 57.8 32 120.8 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192C464 120.8 429.3 57.8 376 18.4zM205.8 213.5C210.2 215.9 212.7 220.9 211.9 225.9C207.9 251.1 177.7 268 152.1 268S96.2 251.1 92.3 225.9C91.5 220.9 94 215.9 98.4 213.5C102.8 211.1 108.3 211.7 112.1 215.1L121.6 223.6C136.4 236.8 167.8 236.8 182.6 223.6L192.1 215.1C194.6 212.8 200 210.3 205.8 213.5zM344 268C318.3 268 288.1 251.1 284.2 225.9C283.4 220.9 285.9 215.9 290.3 213.5C294.7 211.1 300.2 211.7 304 215.1L313.5 223.6C328.3 236.8 359.7 236.8 374.5 223.6L384 215.1C386.5 212.9 392 210.4 397.7 213.5C402.1 215.9 404.6 220.9 403.8 225.9C399.9000000000001 251.1 369.7 268 344 268zM248 160C217.1 160 192 131.3 192 96S217.1 32 248 32S304 60.7 304 96S278.9 160 248 160zM248 64C235 64 224 78.7 224 96S235 128 248 128S272 113.3 272 96S261 64 248 64z" />
+    <glyph glyph-name="sad-tear"
+      unicode="&#xF5B4;"
+      horiz-adv-x="496" d=" M168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 128C236.8 128 226 126.3 215.3 123.9C208.1 136.5 199.2 150.4 187.2 166.3C178.2 178.4 157.8 178.3 148.8 166.3C119.1 126.6999999999999 104 97.3 104 78.9999999999999C104 44.3 132.7 15.9999999999999 168 15.9999999999999S232 44.3 232 78.9999999999999C232 83.3999999999999 231 88.4999999999999 229.3 94.1C235.4 95.3 241.6 95.9999999999999 248 95.9999999999999C282.9 95.9999999999999 315.8 80.6 338.2 53.8C343.5 47.4 353.6 45.8 360.7 51.8C367.5 57.4999999999999 368.4 67.6 362.7 74.3C334.2 108.4 292.4 128 248 128zM168 48C150.3 48 136 61.9 136 79C136 86.7 146 107.8 168 138.5C190 107.8 200 86.7 200 79C200 61.9 185.7 48 168 48z" />
+    <glyph glyph-name="satellite-dish"
+      unicode="&#xF7C0;"
+      horiz-adv-x="512" d=" M212.6 126L248.2 161.6C250.8 160.9 253.2 160 256 160C273.7 160 288 174.3 288 192S273.7 224 256 224S224 209.7 224 192C224 189.2 224.9 186.8 225.6 184.2L190 148.6L56 282.6C52.4 286.2000000000001 47.6 288 42.9 288C36.8 288 30.8 285 27.7 279.1C-19.7 190.9 -6.2 78.6 68.2 4.2C113.7 -41.3 173.3 -63.9999999999999 232.8 -63.9999999999999C270.8 -63.9999999999999 308.8 -54.8 343.1 -36.3C353.5 -30.6999999999999 354.9000000000001 -16.3 346.6 -7.9L212.6 126zM232.8 -32C179.2 -32 128.7 -11.1 90.8 26.8C33.3 84.3 16.7 171.9 47.4 246L310 -16.6A201.43 201.43 0 0 0 232.8 -32zM200.2 352C195.7 352.2 192 348.4 192 343.9V327.9C192 323.6 195.5 320.1 199.8 319.9C299.7000000000001 315.9 380.4 235.7 384 135.9C384.2 131.6 387.6 128.1 392 128.1H407.8C412.3 128.1 416 131.8 415.9000000000001 136.3C411.7000000000001 253.3 317.2000000000001 347.7 200.2000000000001 352zM200.2 448C195.7 448.1 192 444.4 192 439.9V424C192 419.6 195.5 416.2 199.9 416.1C352.7 412.3 475.9 288.8 480 136C480.1 131.6 483.6 128.1 487.9 128.1H503.9C508.4 128.1 512.1 131.8 512 136.3C507.7 306.2 370.2 443.7 200.2 448z" />
+    <glyph glyph-name="satellite"
+      unicode="&#xF7BF;"
+      horiz-adv-x="512" d=" M431.8 253.9L502.6 324.7C515.1 337.2 515.1 357.5 502.6 370L433.9 438.6C427.7 444.9 419.5 448 411.3 448S394.9000000000001 444.9 388.7 438.6L317.9 367.8L247.1 438.7C240.8 444.9 232.7 448 224.5 448C216.3 448 208.2 444.9 202 438.7L105.3 342C92.9 329.6 92.9 309.4 105.3 296.9L150.6 251.6C136.7 254.4000000000001 122.5 255.9000000000001 108.3 255.9000000000001C73.8 255.9000000000001 39.2 247.5000000000001 8 230.7000000000001C-1.4 225.6000000000001 -2.7 212.5000000000001 4.9 204.9L125.6 84.2000000000001L87.7 46.3000000000001C85.2 47.0000000000001 82.7 47.9000000000001 79.9 47.9000000000001C62.2 47.9000000000001 47.9 33.6000000000001 47.9 15.9000000000001S62.2 -16.0999999999999 79.9 -16.0999999999999S111.9 -1.7999999999999 111.9 15.9000000000001C111.9 18.7000000000001 111 21.2000000000001 110.3 23.7000000000001L148.1 61.5000000000001L269 -59.1C272.3 -62.4 276.7 -64 280.9 -64C286.5 -64 291.9 -61.3 294.8 -55.9C318.6 -11.6 324.9 39.2 314.9 87.4L360.9 41.4C367.1 35.2 375.3 32.1 383.4 32.1C391.6 32.1 399.7 35.2 405.9 41.4L502.6 138.1C515 150.5 515 170.7000000000001 502.6 183.2000000000001L431.8 253.9000000000001zM411.3 416L480 347.3L287.9 155.2C279.4 168.9 269.9 182.1 258 194C246.2 205.8 233.2 215.8 219.5 224.2L411.3 416zM224.5 415.9L295.3 345.2L198.7 248.6L128 319.4L224.5 415.9zM275.9 -20.7L43.3 211.9C63.9 219.9 86 224 108.3 224C156.3 224 201.4 205.3 235.3 171.4C285.7 121 301.1 44.7 275.9000000000001 -20.7zM383.6 64L312.7000000000001 134.8L409.3000000000001 231.4L480.1000000000001 160.7L383.6000000000001 64z" />
+    <glyph glyph-name="save"
+      unicode="&#xF0C7;"
+      horiz-adv-x="448" d=" M433.941 318.059L350.059 401.9410000000001A48 48 0 0 1 316.118 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V284.118A48 48 0 0 1 433.941 318.059zM288 384V288H96V384H288zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H64V280C64 266.745 74.745 256 88 256H296C309.255 256 320 266.745 320 280V383.509A15.888 15.888 0 0 0 327.432 379.314L411.314 295.432A15.895 15.895 0 0 0 416 284.118V16zM224 216C175.477 216 136 176.523 136 128S175.477 40 224 40S312 79.477 312 128S272.523 216 224 216zM224 72C193.121 72 168 97.121 168 128S193.121 184 224 184S280 158.879 280 128S254.879 72 224 72z" />
+    <glyph glyph-name="scalpel-path"
+      unicode="&#xF61E;"
+      horiz-adv-x="640" d=" M344 -32H264C259.58 -32 256 -35.58 256 -40V-56C256 -60.42 259.58 -64 264 -64H344C348.42 -64 352 -60.42 352 -56V-40C352 -35.58 348.42 -32 344 -32zM488 -32H408C403.58 -32 400 -35.58 400 -40V-56C400 -60.42 403.58 -64 408 -64H488C492.42 -64 496 -60.42 496 -56V-40C496 -35.58 492.42 -32 488 -32zM632 -32H552C547.58 -32 544 -35.58 544 -40V-56C544 -60.42 547.58 -64 552 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM511.45 434.83C498.87 443.81 484.31 448 469.7 448C446.64 448 423.43 437.56 407.57 419.03L183.68 157.4C177.89 150.63 178.78 142.06 183.18 135.83L0 -64H0.38C101.75 -64 198.76 -29.88 273.34 30.68C273.57 30.87 273.8 31.05 274.03 31.24C304.42 56.14 321.19 91.2 326.25 127.99H343.82C354.23 127.99 364.12 132.54 370.9 140.46L525.37 320.9500000000001C554.67 355.1800000000001 548.96 408.0800000000001 511.45 434.8300000000001zM253.17 55.53C203.68 15.34 143.91 -11.99 79.71 -24.4L219.41 128H294.62C289.68 99.21 275.29 73.65 253.17 55.53zM501.05 341.76L346.58 161.27C345.89 160.46 344.88 159.99 343.81 159.99H228.02L431.88 398.2200000000001C441.4100000000001 409.36 455.54 416 469.7 416C478.24 416 486.24 413.5 492.87 408.78C503.41 401.26 510.09 390.03 511.66 377.16C513.22 364.37 509.36 351.46 501.05 341.76z" />
+    <glyph glyph-name="scalpel"
+      unicode="&#xF61D;"
+      horiz-adv-x="544" d=" M511.45 434.83C498.87 443.81 484.31 448 469.7 448C446.64 448 423.43 437.56 407.57 419.03L183.68 157.4C177.89 150.63 178.78 142.06 183.18 135.83L0 -64H0.37C101.74 -64 198.74 -29.88 273.33 30.68C273.56 30.87 273.79 31.05 274.02 31.24C304.41 56.14 321.18 91.2 326.24 127.99H343.81C354.2200000000001 127.99 364.11 132.54 370.89 140.46L525.36 320.9500000000001C554.67 355.1800000000001 548.96 408.0800000000001 511.45 434.8300000000001zM253.17 55.53C203.68 15.34 143.91 -11.99 79.71 -24.4L219.41 128H294.62C289.68 99.21 275.29 73.65 253.17 55.53zM501.05 341.76L346.58 161.27C345.89 160.46 344.88 159.99 343.81 159.99H228.02L431.88 398.2200000000001C441.4100000000001 409.36 455.54 416 469.7 416C478.24 416 486.24 413.5 492.87 408.78C503.41 401.26 510.09 390.03 511.66 377.16C513.22 364.37 509.36 351.46 501.05 341.76z" />
+    <glyph glyph-name="scanner-keyboard"
+      unicode="&#xF489;"
+      horiz-adv-x="576" d=" M400 352H16C7.2 352 0 344.8 0 336V166.6C0 162.4 1.7 158.3 4.7 155.3L32 128V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V128L411.3 155.3C414.3 158.3 416 162.4 416 166.6V336C416 344.8 408.8 352 400 352zM384 173.3L352 141.3V-16C352 -24.8 344.8 -32 336 -32H80C71.2 -32 64 -24.8 64 -16V141.3L54.6 150.7L32 173.3V320H384V173.3zM96 192H320C328.8 192 336 199.2 336 208V272C336 280.8 328.8 288 320 288H96C87.2 288 80 280.8 80 272V208C80 199.2 87.2 192 96 192zM112 256H304V224H112V256zM184 128H104C99.6 128 96 124.4 96 120V104C96 99.6 99.6 96 104 96H184C188.4 96 192 99.6 192 104V120C192 124.4 188.4 128 184 128zM312 128H232C227.6 128 224 124.4 224 120V104C224 99.6 227.6 96 232 96H312C316.4 96 320 99.6 320 104V120C320 124.4 316.4 128 312 128zM184 64H104C99.6 64 96 60.4 96 56V40C96 35.6 99.6 32 104 32H184C188.4 32 192 35.6 192 40V56C192 60.4 188.4 64 184 64zM312 64H232C227.6 64 224 60.4 224 56V40C224 35.6 227.6 32 232 32H312C316.4 32 320 35.6 320 40V56C320 60.4 316.4 64 312 64zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V384H256V440zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V384H320V440zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448zM408 448H360C355.6 448 352 444.4 352 440V384H416V440C416 444.4 412.4 448 408 448z" />
+    <glyph glyph-name="scanner-touchscreen"
+      unicode="&#xF48A;"
+      horiz-adv-x="576" d=" M400 352H16C7.2 352 0 344.8 0 336V166.6C0 162.4 1.7 158.3 4.7 155.3L32 128V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V128L411.3 155.3C414.3 158.3 416 162.4 416 166.6V336C416 344.8 408.8 352 400 352zM384 173.3L352 141.3V-16C352 -24.8 344.8 -32 336 -32H80C71.2 -32 64 -24.8 64 -16V141.3L54.6 150.7L32 173.3V320H384V173.3zM112 0H304C312.8 0 320 7.2 320 16V272C320 280.8 312.8 288 304 288H112C103.2 288 96 280.8 96 272V16C96 7.2 103.2 0 112 0zM128 256H288V32H128V256zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V384H320V440zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V384H256V440zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448zM408 448H360C355.6 448 352 444.4 352 440V384H416V440C416 444.4 412.4 448 408 448z" />
+    <glyph glyph-name="scanner"
+      unicode="&#xF488;"
+      horiz-adv-x="640" d=" M368 384H112C50.1 384 0 333.9 0 272C0 221.7 33.3 179.7 78.9 165.5L6.4 40C-6.9 17 1 -12.3 24 -25.6L79.4 -57.6C87 -62 95.2 -64 103.4 -64C120 -64 136.1 -55.4 145 -40L205 64H272C298.5 64 320 85.5 320 112V160H368C376.8 160 384 167.2 384 176V368C384 376.8 376.8 384 368 384zM117.3 -24C114.4 -29 109.2 -32 103.4 -32C100.6 -32 97.9 -31.3 95.4 -29.8L40 2.2C35 5.1 33.2 9.5 32.5 11.9S31.2 19 34.1 24L112.6 160H223.4L117.3 -24zM288 112C288 103.2 280.8 96 272 96H223.5L260.5 160H288V112zM352 192H112C67.9 192 32 227.9 32 272S67.9 352 112 352H352V192zM632 0H456C451.6 0 448 -3.6 448 -8V-56C448 -60.4 451.6 -64 456 -64H632C636.4 -64 640 -60.4 640 -56V-8C640 -3.6 636.4 0 632 0zM632 384H456C451.6 384 448 380.4 448 376V328C448 323.6 451.6 320 456 320H632C636.4 320 640 323.6 640 328V376C640 380.4 636.4 384 632 384zM632 96H456C451.6 96 448 92.4 448 88V72C448 67.6 451.6 64 456 64H632C636.4 64 640 67.6 640 72V88C640 92.4 636.4 96 632 96zM632 288H456C451.6 288 448 284.4 448 280V232C448 227.6 451.6 224 456 224H632C636.4 224 640 227.6 640 232V280C640 284.4 636.4 288 632 288zM632 448H456C451.6 448 448 444.4 448 440V424C448 419.6 451.6 416 456 416H632C636.4 416 640 419.6 640 424V440C640 444.4 636.4 448 632 448zM632 160H456C451.6 160 448 156.4 448 152V136C448 131.6 451.6 128 456 128H632C636.4 128 640 131.6 640 136V152C640 156.4 636.4 160 632 160z" />
+    <glyph glyph-name="scarecrow"
+      unicode="&#xF70D;"
+      horiz-adv-x="448" d=" M256 328C264.84 328 272 335.16 272 344S264.84 360 256 360S240 352.8400000000001 240 344S247.16 328 256 328zM192 344C200.84 344 208 351.16 208 360S200.84 376 192 376S176 368.8400000000001 176 360S183.16 344 192 344zM445.66 261.66L419.31 288L437.65 306.3400000000001C442.69 311.38 439.12 320 431.99 320H320V352C320 405.02 277.02 448 224 448S128 405.02 128 352V320H16C8.87 320 5.3 311.38 10.34 306.3400000000001L28.69 288L2.34 261.66C-0.78 258.54 -0.78 253.47 2.34 250.35L28.69 224L10.35 205.66C5.3 200.62 8.87 192 16 192H122.13L96.23 50.66C94.11 37.93 107.33 27.8 119.17 33.72L151.88 57.97C160.99 64.72 168.92 59.2499999999999 176.01 55.47V-48C176.01 -56.84 183.17 -64 192.01 -64H256.01C264.85 -64 272.01 -56.84 272.01 -48V55.47C279.61 59.52 287.11 64.67 296.14 57.97L328.85 33.72C340.77 27.76 353.9 38 351.79 50.66L325.87 192H432C439.13 192 442.7 200.62 437.6600000000001 205.66L419.31 224L445.65 250.34A8.006 8.006 0 0 1 445.66 261.66zM160 352C160 387.29 188.71 416 224 416S288 387.29 288 352V320C288 302.36 273.64 288 256 288H192C174.36 288 160 302.36 160 320V352zM240 -32H208V38.4C217.24 33.48 219.24 31.9 224 31.9C228.66 31.9 230.52 33.35 240 38.4V-32zM374.06 224H287.4600000000001L312.8900000000001 85.28C305.0600000000001 90.42 296.0300000000001 93.12 286.5900000000001 93.12C278.74 93.12 270.93 91.17 264.0100000000001 87.47L224 66.14L183.99 87.48A48.23 48.23 0 0 1 161.41 93.1299999999999C151.97 93.1299999999999 142.94 90.43 135.11 85.29L160.53 224H73.94L41.94 256L73.94 288H136.87C147.96 268.95 168.36 256 191.99 256H255.99C279.62 256 300.0300000000001 268.95 311.11 288H374.05L406.05 256L374.06 224z" />
+    <glyph glyph-name="scarf"
+      unicode="&#xF7C1;"
+      horiz-adv-x="512" d=" M509.7 52.3L440.9 120.9L366.5 195L390.6 219.7C439.2000000000001 273.4 403.6 333 402.1 335.5L358.5 408.6C354.2 415.8 348.6 421.9 341.7 426.6C320.1 441.1 288.3 448 256.6 448H255.4000000000001C223.7000000000001 448 191.8000000000001 441.1 170.2000000000001 426.5C163.3000000000001 421.8 157.7000000000001 415.7 153.4 408.5L109.8 335.4C108.3 332.9 72.7000000000001 273.3 121.3000000000001 219.6L145.4 194.9L71.1 120.7000000000001L2.3 52.3000000000001C-0.8 49.2 -0.8 44.1000000000001 2.3 41.0000000000001L13.6 29.7C16.7 26.6 21.8 26.6 24.9 29.7L93.7000000000001 98.3000000000001L116.3000000000001 75.7000000000001L47.5 7.1C44.4 4 44.4 -1.1 47.5 -4.2L58.8 -15.5C61.9 -18.6 67 -18.6 70.1 -15.5L138.9 53.1L161.4 30.6L92.7 -39.1C89.6 -42.2 89.6 -47.3 92.7 -50.4L104 -61.7C107.1 -64.7999999999999 112.2 -64.7999999999999 115.3 -61.7L256 82L396.5 -61.7C399.6 -64.7999999999999 404.7 -64.7999999999999 407.8 -61.7L419.1 -50.4C422.2000000000001 -47.3 422.2000000000001 -42.2 419.1 -39.1L350.4000000000001 30.6L372.9000000000001 53.1L441.7000000000001 -15.5C444.8000000000001 -18.6 449.9000000000001 -18.6 453.0000000000001 -15.5L464.3000000000001 -4.2C467.4000000000001 -1.1 467.4000000000001 4 464.3000000000001 7.1L395.5000000000001 75.7000000000001L418.1000000000001 98.3000000000001L486.9000000000001 29.7C490.0000000000001 26.6 495.1000000000001 26.6 498.2000000000001 29.7L509.5000000000001 41.0000000000001C512.8000000000001 44.1000000000001 512.8000000000001 49.1000000000001 509.7000000000001 52.3000000000001zM184 53.4L116.5 120.8L167.9 172.1L233.9 104.6L184 53.4zM328 53.4L145.1 241.2C113.2 276.4 134.7 314.8 137.4 319.1L181 392.1C192 410.6 233.3 416 255.4 416H256.6C278.7000000000001 416 320 410.6 331.1 392.2L374.7000000000001 319.2C377.3000000000001 314.9 398.8000000000001 276.5 367.0000000000001 241.3L344.0000000000001 217.7L278.7000000000001 282.9L320.5000000000001 324.6C328.7000000000001 332.8 331.8000000000001 344.8 328.7000000000001 356C325.5000000000001 367.2 316.5000000000001 375.7 305.2000000000001 378.4C287.3000000000001 382.6 271.0000000000001 383.7 256.1 383.6C241.3 383.6 225 382.6 207 378.4C195.7 375.8 186.7 367.2 183.5 356C180.3000000000001 344.8 183.4 332.8 191.7 324.6L395.6 120.9L328 53.4zM214.2 347.1C225.6 349.8 240 351.6 256 351.7C272 351.7 286.4 349.8 297.8 347.1L256 305.4L214.2 347.1z" />
+    <glyph glyph-name="school"
+      unicode="&#xF549;"
+      horiz-adv-x="640" d=" M352 256H336V288C336 292.42 332.42 296 328 296H312C307.58 296 304 292.42 304 288V232C304 227.58 307.58 224 312 224H352C356.42 224 360 227.58 360 232V248C360 252.42 356.42 256 352 256zM368 128H272C245.49 128 224 106.51 224 80V-56C224 -60.42 227.58 -64 232 -64H248C252.42 -64 256 -60.42 256 -56V80C256 88.84 263.1600000000001 96 272 96H368C376.84 96 384 88.84 384 80V-56C384 -60.42 387.58 -64 392 -64H408C412.42 -64 416 -60.42 416 -56V80C416 106.51 394.51 128 368 128zM608 256H512V309.3400000000001C512 320.04 506.65 330.03 497.75 335.9600000000001L337.75 442.63C332.38 446.21 326.19 448 320 448S307.62 446.21 302.25 442.63L142.25 335.96A32.02 32.02 0 0 1 128 309.3300000000001V256H32C14.33 256 0 241.67 0 224V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V224H128V-56C128 -60.42 131.58 -64 136 -64H152C156.42 -64 160 -60.42 160 -56V309.3300000000001L320 416L480 309.33V-56C480 -60.42 483.58 -64 488 -64H504C508.42 -64 512 -60.42 512 -56V224H608V-56C608 -60.42 611.58 -64 616 -64H632C636.42 -64 640 -60.42 640 -56V224C640 241.67 625.67 256 608 256zM320 352C267.06 352 224 308.94 224 256S267.06 160 320 160S416 203.06 416 256S372.94 352 320 352zM320 192C284.7200000000001 192 256 220.7 256 256S284.7200000000001 320 320 320S384 291.3 384 256S355.28 192 320 192z" />
+    <glyph glyph-name="screwdriver"
+      unicode="&#xF54A;"
+      horiz-adv-x="512" d=" M416 256L512 384L448 448L320 352V278.62L221.51 180.13C209.27 187.98 195.27 191.99 181.24 191.99C162.11 191.99 142.98 184.69 128.38 170.1L10.95 52.67C-3.65 38.07 -3.65 14.4 10.95 -0.2L63.81 -53.06C71.11 -60.36 80.68 -64.01 90.24 -64.01C99.81 -64.01 109.37 -60.36 116.67 -53.06L234.1 64.37C259.4 89.67 262.69 128.57 244.13 157.5L342.63 256H416zM352 336L445 405.75L469.75 381L400 288H352V336zM211.41 87.08L93.98 -30.36A5.192 5.192 0 0 0 90.24 -31.91C89.24 -31.91 87.78 -31.64 86.5 -30.36L33.65 22.5A5.3 5.3 0 0 0 33.65 29.98L151.08 147.41C159.14 155.47 169.85 159.91 181.25 159.91C192.65 159.91 203.36 155.47 211.42 147.41C228.04 130.78 228.04 103.71 211.41 87.08z" />
+    <glyph glyph-name="scroll-old"
+      unicode="&#xF70F;"
+      horiz-adv-x="640" d=" M616 96H544V169.38L521.38 192L544 214.62V297.37L521.38 320L543.63 342.28L542.66 350.05C535.59 405.89 488.03 448 432 448H80C35.88 448 0 412.11 0 368V280C0 266.77 10.78 256 24 256H128V214.62L150.62 192L128 169.38V36.57C128 -14.71 165.84 -58.66 214.16 -63.51C215.66 -63.66 217.16 -63.65 218.66 -63.74V-64H530.66C590.94 -64 640 -14.95 640 45.33V72C640 85.23 629.22 96 616 96zM128 288H32V368C32 394.4700000000001 53.53 416 80 416S128 394.4700000000001 128 368V288zM160 36.56V156.12L195.88 192L160 227.88V368C160 386 154.03 402.62 143.97 416H432C469.41 416 501.56 389.61 509.59 353.5L476.12 320L512 284.12V227.87L476.12 192L512 156.12V96H438.62L416 73.38L393.38 96H320C302.34 96 288 81.64 288 64V32C288 13.95 280.31 -3.34 266.94 -15.47C253.35 -27.77 235.82 -33.56 217.35 -31.67C185.19 -28.45 160 1.52 160 36.56zM608 45.33C608 2.69 573.31 -32 530.66 -32H294.83C310.65 -14.45 320 8.18 320 32V64H380.12L416 28.12L451.88 64H608V45.33z" />
+    <glyph glyph-name="scroll"
+      unicode="&#xF70E;"
+      horiz-adv-x="640" d=" M608 96H544V336C544 397.75 493.75 448 432 448H80C35.88 448 0 412.11 0 368V288C0 270.36 14.34 256 32 256H128V32C128 -19.11 168.25 -60.62 218.66 -63.46V-64H530.66C590.94 -64 640 -14.95 640 45.33V64C640 81.64 625.66 96 608 96zM128 288H32V368C32 394.4700000000001 53.53 416 80 416S128 394.4700000000001 128 368V288zM288 32C288 -3.3 259.28 -32 224 -32S160 -3.3 160 32V368C160 386 154.03 402.62 143.97 416H432C476.12 416 512 380.11 512 336V96H320C302.34 96 288 81.64 288 64V32zM608 45.33C608 2.69 573.31 -32 530.66 -32H295.03C310.38 -14.98 320 7.32 320 32V64H608V45.33z" />
+    <glyph glyph-name="scrubber"
+      unicode="&#xF2F8;"
+      horiz-adv-x="496" d=" M248 408C367.3 408 464 311.4 464 192C464 72.7 367.4 -24 248 -24C128.7 -24 32 72.6 32 192C32 311.3 128.6 408 248 408M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 224C265.6 224 280 209.6 280 192S265.6 160 248 160S216 174.4 216 192S230.4 224 248 224M248 256C212.7 256 184 227.3 184 192S212.7 128 248 128S312 156.7 312 192S283.3 256 248 256z" />
+    <glyph glyph-name="scythe"
+      unicode="&#xF710;"
+      horiz-adv-x="512" d=" M511.54 287.7200000000001C500.73 343.16 445.48 448 313.94 448C221.91 448 143.69 383.77 123.69 291.8C117.46 263.13 116.39 227.04 122.12 193.88L72.57 144.34C66.32 138.09 66.32 127.96 72.57 121.71L83.88 110.4L4.68 31.2C-1.57 24.95 -1.57 14.82 4.68 8.57L72.56 -59.31C75.69 -62.43 79.78 -64 83.87 -64C87.96 -64 92.06 -62.44 95.18 -59.31L174.38 19.89L185.69 8.58C188.82 5.46 192.91 3.89 197 3.89C201.09 3.89 205.19 5.45 208.31 8.58L253.56 53.84C259.81 60.09 259.81 70.22 253.56 76.47L250.41 79.62L277.69 106.8899999999999C283.57 112.75 283.97 122.1399999999999 278.63 128.4799999999999C258 153.0599999999999 249.35 184.3199999999999 254.29 216.5599999999999C259.51 250.7899999999999 279.38 281.2299999999999 308.82 300.0599999999999C344.73 323.0899999999999 391.98 324.7199999999999 429.2 304.1099999999999C445.42 295.1399999999999 458.98 283.33 469.51 269.0499999999999C476.07 260.1299999999999 487.64 256.9699999999999 497.82 261.4399999999999C508.07 265.9099999999999 513.7 276.7199999999999 511.54 287.7199999999999zM197.03 42.51L174.4 65.14L151.77 42.51L83.88 -25.37L38.62 19.88L106.5 87.76L129.13 110.38L106.51 133.01L129.14 155.64L219.65 65.13L197.03 42.51zM444.73 332.09C397.48 358.28 337.38 356.28 291.6 327C254.4100000000001 303.2 229.29 264.7 222.66 221.38C217.1 184.9 225.1 149.3 245.2500000000001 119.66L227.8100000000001 102.23L161.03 169.02C146.92 202.38 147.6 251.17 154.94 284.99C171.72 362.12 237.1 416 313.94 416C401.07 416 448.38 361.53 469.01 315.67C461.54 321.7800000000001 453.45 327.27 444.73 332.0900000000001z" />
+    <glyph glyph-name="sd-card"
+      unicode="&#xF7C2;"
+      horiz-adv-x="384" d=" M320 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM352 0C352 -17.6 337.6 -32 320 -32H64C46.4 -32 32 -17.6 32 0V306.7L141.3 416H320C337.6 416 352 401.6 352 384V0zM288 288H320V384H288V288zM224 288H256V384H224V288zM160 288H192V384H160V288z" />
+    <glyph glyph-name="search-dollar"
+      unicode="&#xF688;"
+      horiz-adv-x="512" d=" M235.09 248.58L190.09 262.0800000000001C184.93 263.63 181.32 268.86 181.32 274.81C181.32 282.0800000000001 186.62 288 193.12 288H221.23C225.79 288 230.1900000000001 286.7100000000001 234.05 284.28C237.29 282.25 241.4100000000001 282.37 244.18 285.01L255.93 296.2200000000001C259.46 299.5900000000001 259.26 305.43 255.36 308.36C246.26 315.1900000000001 235.2800000000001 319.13 223.99 319.7100000000001V336C223.99 340.42 220.41 344 215.99 344H199.99C195.57 344 191.99 340.42 191.99 336V319.88C168.37 319.25 149.32 299.33 149.32 274.81C149.32 254.84 162.3 237 180.9 231.42L225.9 217.92C231.06 216.37 234.67 211.14 234.67 205.19C234.67 197.92 229.37 192 222.87 192H194.76C190.2 192 185.8 193.29 181.94 195.72C178.7 197.75 174.58 197.63 171.81 194.9900000000001L160.06 183.78C156.53 180.41 156.73 174.5700000000001 160.63 171.6400000000001C169.73 164.8100000000001 180.71 160.8700000000001 192 160.29V144C192 139.58 195.58 136 200 136H216C220.42 136 224 139.58 224 144V160.12C247.62 160.75 266.67 180.66 266.67 205.19C266.67 225.16 253.6900000000001 243 235.0900000000001 248.58zM508.47 -33.58L379.48 95.42C377.18 97.72 374.18 98.92 370.98 98.92H360.68C394.98 136.02 415.98 185.52 415.98 240.01C415.98 354.9 322.88 448 207.99 448S0 354.9 0 240.01C0 125.12 93.1 32.02 207.99 32.02C262.49 32.02 311.98 53.02 349.0800000000001 87.22V77.02C349.0800000000001 73.82 350.3800000000001 70.82 352.5800000000001 68.52L481.5700000000001 -60.47C486.27 -65.1700000000001 493.8700000000001 -65.1700000000001 498.5700000000001 -60.47L508.47 -50.57C513.1800000000001 -45.88 513.1800000000001 -38.28 508.47 -33.58zM207.99 64.02C110.7 64.02 32 142.71 32 240.01C32 337.31 110.7 416 207.99 416S383.98 337.3 383.98 240.01C383.98 142.71 305.29 64.02 207.99 64.02z" />
+    <glyph glyph-name="search-location"
+      unicode="&#xF689;"
+      horiz-adv-x="512" d=" M208 352C158.47 352 118.19 311.7 118.19 262.17C118.19 227.51 156.53 174.97 188.72 136.97C193.53 131.2700000000001 200.56 128 208 128S222.47 131.27 227.31 136.97C259.4700000000001 174.97 297.81 227.5200000000001 297.81 262.17C297.81 311.7 257.53 352 208 352zM208 163.77C172.69 206.47 150.19 244.66 150.19 262.18C150.19 294.07 176.13 320.01 208 320.01S265.81 294.07 265.81 262.18C265.81 244.66 243.31 206.47 208 163.77zM208 288C194.75 288 184 277.26 184 264C184 250.75 194.75 240 208 240S232 250.75 232 264C232 277.26 221.25 288 208 288zM508.47 -33.58L379.48 95.42C377.18 97.72 374.18 98.92 370.98 98.92H360.68C394.98 136.0200000000001 415.98 185.52 415.98 240.01C415.98 354.9 322.88 448 207.99 448S0 354.9 0 240.01C0 125.12 93.1 32.02 207.99 32.02C262.49 32.02 311.98 53.02 349.0800000000001 87.22V77.02C349.0800000000001 73.82 350.3800000000001 70.82 352.5800000000001 68.52L481.5700000000001 -60.47C486.27 -65.1700000000001 493.8700000000001 -65.1700000000001 498.5700000000001 -60.47L508.47 -50.57C513.1800000000001 -45.88 513.1800000000001 -38.28 508.47 -33.58zM207.99 64.02C110.7 64.02 32 142.71 32 240.01C32 337.31 110.7 416 207.99 416S383.98 337.3 383.98 240.01C383.98 142.71 305.29 64.02 207.99 64.02z" />
+    <glyph glyph-name="search-minus"
+      unicode="&#xF010;"
+      horiz-adv-x="512" d=" M307.8 224.2H107.8C101.2 224.2 95.8 229.6 95.8 236.2V244.2C95.8 250.8 101.2 256.2 107.8 256.2H307.8C314.4000000000001 256.2 319.8 250.8 319.8 244.2V236.2C319.8 229.6 314.4000000000001 224.2 307.8 224.2zM508.3 -49L497 -60.3C492.3 -65 484.7 -65 480 -60.3L351 68.7C348.7 71 347.5 74 347.5 77.2V85.7C310.6 52.3 261.7 32 208 32C93.8 32 1.5 123.1 0 237.3C-1.5 354.3 93.7 449.5 210.7 448C324.9 446.5 416 354.2 416 240C416 186.3 395.7 137.4 362.3 100.5H370.8C374 100.5 377 99.2 379.3 97L508.3 -32C513 -36.7 513 -44.3 508.3 -49zM384 240C384 337.3 305.3 416 208 416S32 337.3 32 240S110.7 64 208 64S384 142.7 384 240z" />
+    <glyph glyph-name="search-plus"
+      unicode="&#xF00E;"
+      horiz-adv-x="512" d=" M319.8 244V236C319.8 229.4 314.4000000000001 224 307.8 224H223.8V140C223.8 133.4 218.4 128 211.8 128H203.8C197.2 128 191.8 133.4 191.8 140V224H107.8C101.2 224 95.8 229.4 95.8 236V244C95.8 250.6 101.2 256 107.8 256H191.8V340C191.8 346.6 197.2 352 203.8 352H211.8C218.4 352 223.8 346.6 223.8 340V256H307.8C314.4000000000001 256 319.8 250.6 319.8 244zM508.3 -49L497 -60.3C492.3 -65 484.7 -65 480 -60.3L351 68.7C348.7 71 347.5 74 347.5 77.2V85.7C310.6 52.3 261.7 32 208 32C93.8 32 1.5 123.1 0 237.3C-1.5 354.3 93.7 449.5 210.7 448C324.9 446.5 416 354.2 416 240C416 186.3 395.7 137.4 362.3 100.5H370.8C374 100.5 377 99.2 379.3 97L508.3 -32C513 -36.7 513 -44.3 508.3 -49zM384 240C384 337.3 305.3 416 208 416S32 337.3 32 240S110.7 64 208 64S384 142.7 384 240z" />
+    <glyph glyph-name="search"
+      unicode="&#xF002;"
+      horiz-adv-x="512" d=" M508.5 -33.6L379.5 95.4C377.2 97.7 374.2 98.9 371 98.9H360.7C395 136 416 185.5 416 240C416 354.9 322.9 448 208 448S0 354.9 0 240S93.1 32 208 32C262.5 32 312 53 349.1 87.2V77C349.1 73.8 350.4000000000001 70.8 352.6 68.5L481.6 -60.5C486.3 -65.2 493.9 -65.2 498.6 -60.5L508.5 -50.6C513.2 -45.9 513.2 -38.3 508.5 -33.6zM208 64C110.7 64 32 142.7 32 240S110.7 416 208 416S384 337.3 384 240S305.3 64 208 64z" />
+    <glyph glyph-name="seedling"
+      unicode="&#xF4D8;"
+      horiz-adv-x="512" d=" M442.7 416C346.8 416 266.3 336.6 245.5 230.3C210.5 302.9 144.8 352 69.3 352H0V336C0 203.7 90.9 96 202.7 96H240V-24C240 -28.4 243.6 -32 248 -32H264C268.4 -32 272 -28.4 272 -24V160H309.3C421.1 160 512 267.7 512 400V416H442.7zM202.7 128C113 128 39.2 212.8 32.5 320H69.3C159 320 232.7 235.2 239.5 128H202.7zM309.3 192H272.5C279.2 299.2 353 384 442.7 384H479.5C472.8 276.8 399 192 309.3 192z" />
+    <glyph glyph-name="server"
+      unicode="&#xF233;"
+      horiz-adv-x="512" d=" M376 192C376 205.255 386.745 216 400 216S424 205.255 424 192S413.255 168 400 168S376 178.745 376 192zM336 168C349.255 168 360 178.745 360 192S349.255 216 336 216S312 205.255 312 192S322.745 168 336 168zM512 296C512 283.704 507.371 272.493 499.768 264C507.371 255.507 512 244.296 512 232V152C512 139.704 507.371 128.493 499.768 120C507.371 111.507 512 100.296 512 88V8C512 -18.51 490.51 -40 464 -40H48C21.49 -40 0 -18.51 0 8V88C0 100.296 4.629 111.507 12.232 120C4.629 128.493 0 139.704 0 152V232C0 244.296 4.629 255.507 12.232 264C4.629 272.493 0 283.704 0 296V376C0 402.51 21.49 424 48 424H464C490.51 424 512 402.51 512 376V296zM32 296C32 287.178 39.178 280 48 280H464C472.822 280 480 287.178 480 296V376C480 384.822 472.822 392 464 392H48C39.178 392 32 384.822 32 376V296zM464 248H48C39.178 248 32 240.822 32 232V152C32 143.178 39.178 136 48 136H464C472.822 136 480 143.178 480 152V232C480 240.822 472.822 248 464 248zM480 88C480 96.822 472.822 104 464 104H48C39.178 104 32 96.822 32 88V8C32 -0.822 39.178 -8 48 -8H464C472.822 -8 480 -0.822 480 8V88zM400 312C413.255 312 424 322.745 424 336S413.255 360 400 360S376 349.255 376 336S386.745 312 400 312zM336 312C349.255 312 360 322.745 360 336S349.255 360 336 360S312 349.255 312 336S322.745 312 336 312zM400 72C386.745 72 376 61.255 376 48S386.745 24 400 24S424 34.745 424 48S413.255 72 400 72zM336 72C322.745 72 312 61.255 312 48S322.745 24 336 24S360 34.745 360 48S349.255 72 336 72z" />
+    <glyph glyph-name="shapes"
+      unicode="&#xF61F;"
+      horiz-adv-x="512" d=" M480 160H320C302.33 160 288 145.67 288 128V-32C288 -49.67 302.33 -64 320 -64H480C497.67 -64 512 -49.67 512 -32V128C512 145.67 497.67 160 480 160zM480 -32H320V128H480V-32zM128 192C57.31 192 0 134.69 0 64S57.31 -64 128 -64S256 -6.69 256 64S198.69 192 128 192zM128 -32C75.07 -32 32 11.07 32 64C32 116.94 75.07 160 128 160C180.94 160 224 116.94 224 64C224 11.07 180.94 -32 128 -32zM506.98 246.86L400.07 429.71C392.95 441.9 380.4700000000001 448 368 448S343.05 441.9 335.93 429.71L229.02 246.86C214.76 222.48 232.58 192 261.0900000000001 192H474.91C503.42 192 521.24 222.48 506.98 246.86zM479.38 226.4700000000001C478.44 224.8300000000001 476.93 224 474.91 224H261.09C259.07 224 257.56 224.8300000000001 256.62 226.4700000000001C255.41 228.5900000000001 256.2699999999999 230.07 256.64 230.7L363.55 413.56C364.5 415.18 365.99 416 368 416S371.5 415.18 372.45 413.56L479.36 230.7C479.73 230.07 480.6 228.59 479.38 226.47z" />
+    <glyph glyph-name="share-all"
+      unicode="&#xF367;"
+      horiz-adv-x="576" d=" M470.632 246.629L310.63 406.6C290.59 426.64 256 412.56 256 383.9700000000001V311.28C140.5 307.44 0 283.11 0 130.21C0 65.23 33.54 11.95 85.11 -25.76C109.3 -43.46 143.15 -20.84 134.8 8.75C107.1 106.94 134.42 130.81 256 135.17V64.02C256 35.41 290.61 21.38 310.63 41.39L470.632 201.37C483.123 213.869 483.123 234.129 470.632 246.629zM288 63.999V167.899C142.329 166.573 63.021 145.266 104 -0.001C72.49 23.049 32 65.109 32 130.2090000000001C32 261.6340000000001 157.835 278.5540000000001 288 279.8990000000001V383.999L448 223.9990000000001L288 63.999zM566.6279999999999 201.372L406.628 41.394C393.1739999999999 27.94 373.1359999999999 29.885 361.4369999999999 41.288L544 223.999L361.438 406.706C373.133 418.1070000000001 393.161 420.068 406.627 406.601L566.627 246.627C579.1239999999999 234.13 579.1239999999999 213.869 566.6279999999999 201.372z" />
+    <glyph glyph-name="share-alt-square"
+      unicode="&#xF1E1;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM416 16C416 7.178 408.822 0 400 0H48C39.178 0 32 7.178 32 16V368C32 376.822 39.178 384 48 384H400C408.822 384 416 376.822 416 368V16zM344 112C344 81.072 318.928 56 288 56S232 81.072 232 112C232 115.305 232.303 118.538 232.852 121.686L179.243 148.491C169.618 140.684 157.358 136 144 136C113.072 136 88 161.072 88 192S113.072 248 144 248C157.358 248 169.618 243.316 179.243 235.51L232.852 262.315A56.291999999999994 56.291999999999994 0 0 0 232 272C232 302.928 257.072 328 288 328S344 302.928 344 272S318.928 216 288 216C271.8930000000001 216 257.385 222.81 247.168 233.696L197.424 208.824A56.21699999999999 56.21699999999999 0 0 0 197.424 175.177L247.168 150.305C257.385 161.19 271.893 168 288 168C318.928 168 344 142.928 344 112zM288 296C274.766 296 264 285.2340000000001 264 272S274.766 248 288 248S312 258.766 312 272S301.234 296 288 296M144 216C130.766 216 120 205.234 120 192S130.766 168 144 168S168 178.766 168 192S157.234 216 144 216M288 136C274.766 136 264 125.234 264 112S274.766 88 288 88S312 98.766 312 112S301.234 136 288 136" />
+    <glyph glyph-name="share-alt"
+      unicode="&#xF1E0;"
+      horiz-adv-x="448" d=" M448 32C448 -21.019 405.019 -64 352 -64S256 -21.019 256 32C256 44.965 258.576 57.327 263.235 68.61L167.785 128.267C150.199 108.475 124.558 96 96 96C42.981 96 0 138.981 0 192S42.981 288 96 288C124.558 288 150.199 275.525 167.784 255.733L263.234 315.39C258.576 326.673 256 339.035 256 352C256 405.019 298.981 448 352 448S448 405.019 448 352S405.019 256 352 256C323.442 256 297.801 268.475 280.216 288.267L184.765 228.611C194.426 205.215 194.406 178.741 184.765 155.391L280.216 95.735C297.801 115.525 323.442 128 352 128C405.019 128 448 85.019 448 32zM352 416C316.71 416 288 387.29 288 352S316.71 288 352 288S416 316.7100000000001 416 352S387.29 416 352 416M96 256C60.71 256 32 227.29 32 192S60.71 128 96 128S160 156.71 160 192S131.29 256 96 256M352 96C316.71 96 288 67.29 288 32S316.71 -32 352 -32S416 -3.29 416 32S387.29 96 352 96" />
+    <glyph glyph-name="share-square"
+      unicode="&#xF14D;"
+      horiz-adv-x="576" d=" M566.633 278.63L406.63 438.608C386.626 458.612 352 444.605 352 415.978V343.44C210.132 339.526 88 304.545 88 161.7C88 76.96 137.78 27.958 167.45 6.238C191.646 -11.457 225.483 11.155 217.15 40.748C188.286 143.157 225.497 163.926 352 167.46V96C352 67.345 386.654 53.394 406.63 73.37L566.633 233.37C579.1220000000001 245.87 579.1220000000001 266.13 566.633 278.63zM384 96V199.96C242.282 199.183 143.238 184.93 186.35 32C154.91 55 120 96.72 120 161.7C120 295.737 251.645 311.087 384 311.96V416L544 256L384 96zM421.0950000000001 43.814C423.3110000000001 45.396 425.3930000000001 47.137 427.8300000000001 49.398C435.5100000000001 56.526 448.0000000000001 51.09 448.0000000000001 40.611V-16C448.0000000000001 -42.51 426.5100000000001 -64 400.0000000000001 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H220.146C226.758 384 232.1 378.588 231.998 371.9600000000001C231.914 366.514 227.953 361.873 222.667 360.564C213.205 358.221 204.202 355.5900000000001 195.593 352.65C194.343 352.223 193.038 352 191.717 352H48C39.163 352 32 344.837 32 336V-16C32 -24.837 39.163 -32 48 -32H400C408.837 -32 416 -24.837 416 -16V34.002C416 37.907 417.916 41.545 421.0950000000001 43.814z" />
+    <glyph glyph-name="share"
+      unicode="&#xF064;"
+      horiz-adv-x="576" d=" M564.907 251.65L388.9100000000001 435.634C364.216 461.45 320 444.254 320 407.984V319.8300000000001C154.548 317.8450000000001 0 287.897 0 116.81C0 21.83 55.84 -33.421 89.13 -57.761C113.363 -75.4829999999999 147.151 -52.7689999999999 138.81 -23.251C100.937 111.113 165.575 126.028 320 127.84V40C320 3.761 364.19 -13.494 388.91 12.35L564.9079999999999 196.35C579.6979999999999 211.82 579.6979999999999 236.18 564.9069999999999 251.6500000000001zM541.7800000000001 218.47L365.7800000000001 34.47C360.8470000000001 29.31 352.0000000000001 32.74 352.0000000000001 40V160C180.6040000000001 160 56.6870000000001 150.293 108.0200000000001 -31.7C72 -5.36 32 42.41 32 116.81C32 276.82 194.886 288 352 288V408C352 415.262 360.851 418.69 365.78 413.53L541.78 229.53A7.978 7.978 0 0 0 541.78 218.47z" />
+    <glyph glyph-name="sheep"
+      unicode="&#xF711;"
+      horiz-adv-x="640" d=" M496 352C487.16 352 480 344.8400000000001 480 336S487.16 320 496 320S512 327.16 512 336S504.84 352 496 352zM613.31 340.39L576 358.73V368C576 394.4700000000001 554.47 416 528 416H477.25C470.66 434.62 452.88 448 432 448C405.53 448 384 426.4700000000001 384 400V346.99C382.76 347.35 381.62 347.9600000000001 380.34 348.24C366.31 351.62 351.96 349.5800000000001 339.4 342.8300000000001C330.37 348.5300000000001 319.68 351.7200000000001 307.87 352C297.0900000000001 352 286.93 349.2200000000001 277.96 343.88C259.96 354.4700000000001 236.34 354.4600000000001 218.4 343.93C200.09 354.82 175.31 354.38 157.24 342.93C144.96 349.5900000000001 130.68 351.63 116.36 348.6C99.33 344.76 84.95 333.63 76.74 318.44C59.8 317.56 43.68 309.33 32.62 295.32C21.81 281.37 17.56 263.46 20.5 246.37C7.62 234.91 0 218.19 0 200.31C0 182.4 7.5 165.72 20.19 154.31C17.13 137.01 21.44 119.04 32.31 105.33C43.09 91.31 59.09 83.03 76.09 82.17C80.92 73.0699999999999 88.08 65.6899999999999 96.5 60.1899999999999C96.64 56.23 96.83 52.2599999999999 97.76 48.3799999999999L118.88 -39.4800000000001C122.34 -53.86 135.21 -64 150 -64H207.53C228.48 -64 243.65 -44.24 238.55 -24.14L218.26 55.93A57.85399999999999 57.85399999999999 0 0 1 247.5600000000001 48C258.18 48 268.4400000000001 50.84 277.4700000000001 56.17C286.6300000000001 50.86 298.0900000000001 47.61 309.31 48.15C312.98 48.27 316.48 49.15 320 49.92V-32C320 -49.67 334.33 -64 352 -64H416C433.67 -64 448 -49.67 448 -32V91.17C453.69 94.8 459.01 99.15 463.38 104.68C474.19 118.63 478.44 136.54 475.5 153.63C488.38 165.08 496 181.8 496 199.68C496 208.22 494.19 216.45 491.03 223.99H583.66C598.5699999999999 223.99 612.4699999999999 232.02 619.9399999999999 245.01C637.91 276.5600000000001 639.9999999999999 290.0900000000001 639.9999999999999 297.5300000000001C639.9999999999999 315.88 629.7799999999999 332.3000000000001 613.3099999999998 340.3900000000001zM150 -32L130.18 50.44C139.32 50.63 148.33 52.78 156.56 57.16C165.59 51.37 176.35 48.39 187.2 48.24L207.53 -32H150zM416 -32H352V52.09C360.85 49.8 370.2200000000001 49.37 379.62 51.41C394.75 54.8200000000001 407.51 64.19 416 76.83V-32zM449.3400000000001 174.05L437.12 167.21L442.2800000000001 154.1900000000001C450.79 132.8100000000001 433.23 110.15 411.6900000000001 113.8900000000001L397.5300000000001 116.41L393.5000000000001 102.6300000000001C388.0200000000001 83.8000000000001 364.9100000000001 74.59 348.6600000000001 88.96L337.2200000000001 99.1L326.5600000000001 88.15C317.8800000000001 79.21 300.9200000000001 75.85 288.4400000000001 87.7000000000001L277.3800000000001 98.23L266.3500000000001 87.65C256.0400000000001 77.73 239.1000000000001 77.74 229.1900000000001 87.49L218.1300000000001 98.41L206.9100000000001 87.64C196.3200000000001 77.5500000000001 178.7900000000001 77.92 168.9100000000001 88.1100000000001L158.4700000000001 98.9400000000001L147.0300000000001 89.1700000000001C129.6000000000001 74.3400000000001 107.1200000000001 84.8900000000001 101.9700000000001 103.1200000000001L98 117.08L83.75 114.52C62.55 110.72 44.86 133.21 53.41 154.82L58.57 167.84L46.35 174.68C27.74 185.12 26.71 214.74 46.66 225.96L58.88 232.8L53.72 245.82C45.16 267.33 62.91 289.86 84.31 286.12L98.47 283.5999999999999L102.5 297.38C108.04 316.4 131.25 325.28 147.34 311.05L158.78 300.9099999999999L169.44 311.8599999999999C179.35 322.0899999999999 197.06 322.4399999999999 207 312.5499999999999L218.09 301.58L229.34 312.3499999999999C239.62 322.2299999999999 256.5900000000001 322.2399999999999 267 312.33L278.06 301.7699999999999L289.12 312.3599999999999C299.61 322.4099999999999 316.7200000000001 322.57 327.0900000000001 311.8799999999999L337.5300000000001 301.08L348.9700000000001 310.83C366.37 325.7 388.88 315.0899999999999 394.0300000000001 296.8799999999999L398.0000000000001 282.93L412.2500000000001 285.4899999999999C433.4900000000001 289.3399999999999 451.1200000000001 266.7399999999999 442.5900000000001 245.19L437.43 232.17L449.6500000000001 225.33C468.27 214.8899999999999 469.29 185.2599999999999 449.3400000000001 174.05zM592.1600000000001 260.92C590.4100000000001 257.8400000000001 587.22 256 583.6600000000001 256H476.55C476.69 269.9300000000001 472.41 283.67 463.69 294.67C452.91 308.6900000000001 436.91 316.9700000000001 419.91 317.8300000000001C418.81 319.9100000000001 417.32 321.7000000000001 416 323.62V400C416 408.83 423.19 416 432 416S448 408.83 448 400V384H528C536.81 384 544 376.83 544 368V338.83L599.19 311.67C604.6300000000001 309 608 303.58 608 297.53C608 294.25 604.66 282.83 592.16 260.92z" />
+    <glyph glyph-name="shekel-sign"
+      unicode="&#xF20B;"
+      horiz-adv-x="384" d=" M224 296V88C224 83.58 227.58 80 232 80H264C268.42 80 272 83.58 272 88V296C272 362.28 218.27 416 152 416H16C7.16 416 0 408.8400000000001 0 400V-24C0 -28.42 3.58 -32 8 -32H40C44.42 -32 48 -28.42 48 -24V368H152C191.76 368 224 335.77 224 296zM376 416H344C339.58 416 336 412.42 336 408V88C336 48.24 303.76 16 264 16H160V296C160 300.42 156.42 304 152 304H120C115.58 304 112 300.42 112 296V-16C112 -24.84 119.16 -32 128 -32H264C330.27 -32 384 21.73 384 88V408C384 412.42 380.42 416 376 416z" />
+    <glyph glyph-name="shield-alt"
+      unicode="&#xF3ED;"
+      horiz-adv-x="512" d=" M256 37.045V348.001L113.316 288.549C123.437 168.402 190.389 73.507 256 37.045zM224 103.809C187.587 143.7050000000001 158.168 201.655 147.927 268.3040000000001L224 300.001V103.809zM466.461 364.308L274.461 444.308A47.99600000000001 47.99600000000001 0 0 1 237.538 444.308L45.538 364.308A48 48 0 0 1 16 320C16 121.513 130.495 -15.713 237.539 -60.308A48 48 0 0 1 274.462 -60.308C360.066 -24.645 496 98.718 496 320A48 48 0 0 1 466.461 364.308zM262.154 -30.768A16.64 16.64 0 0 0 249.844 -30.767C152 8 48 144 48 320C48 326.48 51.865 332.277 57.846 334.769L249.846 414.769A15.99 15.99 0 0 0 262.154 414.769L454.154 334.769A15.956999999999999 15.956999999999999 0 0 0 464 320C464 144 360 8 262.154 -30.768z" />
+    <glyph glyph-name="shield-check"
+      unicode="&#xF2F7;"
+      horiz-adv-x="512" d=" M466.461 364.308L274.461 444.308A47.99600000000001 47.99600000000001 0 0 1 237.538 444.308L45.538 364.308A48 48 0 0 1 16 320C16 121.513 130.495 -15.713 237.539 -60.308A48 48 0 0 1 274.462 -60.308C360.066 -24.645 496 98.718 496 320A48 48 0 0 1 466.461 364.308zM262.154 -30.768A16.64 16.64 0 0 0 249.844 -30.767C152 8 48 144 48 320C48 326.48 51.865 332.277 57.846 334.769L249.846 414.769A15.99 15.99 0 0 0 262.154 414.769L454.154 334.769A15.956999999999999 15.956999999999999 0 0 0 464 320C464 144 360 8 262.154 -30.768zM406.809 268.737L226.329 89.705C221.624 85.0380000000001 214.026 85.068 209.359 89.773L123.481 176.345C118.814 181.05 118.844 188.648 123.549 193.315L132.069 201.766C136.774 206.433 144.372 206.403 149.039 201.698L218.015 132.165L381.456 294.295C386.161 298.962 393.759 298.932 398.4260000000001 294.227L406.8770000000001 285.707C411.5450000000001 281.002 411.5140000000001 273.404 406.8090000000001 268.737z" />
+    <glyph glyph-name="shield-cross"
+      unicode="&#xF712;"
+      horiz-adv-x="448" d=" M420.43 364.31L241.23 444.31C235.72 446.77 229.86 448 224 448S212.28 446.77 206.77 444.31L27.57 364.31C10.88 356.86 0 339.38 0 320C0 121.51 106.86 -15.71 206.77 -60.31C212.28 -62.77 218.14 -64 224 -64S235.72 -62.77 241.23 -60.31C321.13 -24.64 448 98.72 448 320C448 339.38 437.12 356.86 420.43 364.31zM32 320C32 326.7200000000001 35.46 332.79 40.62 335.0900000000001L176 395.53V304H32.53C32.36 309.3400000000001 32 314.56 32 320zM176 -4.7C120.23 37.17 68.46 110.43 45.13 208H176V-4.7zM272 -4.14V208H403.28C378.36 102.82 321.12 33.54 272 -4.14zM409.58 240H240V-25.19C235.91 -27.41 231.93 -29.42 228.19 -31.09C226.62 -31.79 223.5 -32.73 219.82 -31.09C215.9 -29.34 211.95 -27.21 208.01 -25.13V240H38.69A478.05000000000007 478.05000000000007 0 0 0 34.54 272H208V409.81L219.81 415.08C223.49 416.7200000000001 226.6 415.79 228.18 415.08L240 409.81V272H413.54C412.52 261.05 411.25 250.33 409.58 240zM415.42 304H272V395.53L407.39 335.0900000000001C412.54 332.79 416 326.73 416 320C416 314.5 415.58 309.36 415.42 304z" />
+    <glyph glyph-name="shield"
+      unicode="&#xF132;"
+      horiz-adv-x="512" d=" M466.5 364.3L274.5 444.3A48.15 48.15 0 0 1 237.6 444.3L45.6 364.3C27.7 356.9 16 339.4 16 320C16 121.5 130.5 -15.7 237.5 -60.3C249.3 -65.2 262.6 -65.2 274.4 -60.3C360.1 -24.6 496 98.7 496 320C496 339.4 484.3 356.9 466.5 364.3zM262.2 -30.8C258.3 -32.4 253.9 -32.4 249.9 -30.8C152 8 48 144 48 320C48 326.5 51.9 332.3 57.8 334.8L249.8 414.8C253.6 416.4 258.1 416.5 262.1 414.8L454.1 334.8C460.1 332.3 463.9 326.5 463.9 320C464.0000000000001 144 360 8 262.2000000000001 -30.8z" />
+    <glyph glyph-name="ship"
+      unicode="&#xF21A;"
+      horiz-adv-x="640" d=" M480 81.923L565.182 160.006C583.245 176.563 577.522 204.448 556.605 213.412L480 246.244V368C480 376.837 472.837 384 464 384H416V424C416 437.255 405.255 448 392 448H248C234.745 448 224 437.255 224 424V384H176C167.163 384 160 376.837 160 368V246.244L83.945 213.649C61.461 204.013 57.572 175.815 74.377 160.411L160 81.923C160 45.833 109.048 -32 12 -32C5.373 -32 0 -37.373 0 -44V-52C0 -58.627 5.373 -64 12 -64C77.489 -64 129.316 -35.016 162.756 9.148C173.036 -32.79 210.938 -64 256 -64H384C429.062 -64 466.964 -32.79 477.244 9.148C510.878 -35.273 562.822 -64 628 -64C634.627 -64 640 -58.627 640 -52V-44C640 -37.373 634.627 -32 628 -32C534.377 -32 480 42.786 480 81.923zM256 416H384V384H256V416zM192 352H448V259.958L332.605 309.413A31.999000000000002 31.999000000000002 0 0 1 307.394 309.413L192 259.958V352zM448 96V32C448 -3.346 419.346 -32 384 -32H256C220.654 -32 192 -3.346 192 32V96L96 184L320 280L544 184L448 96z" />
+    <glyph glyph-name="shipping-fast"
+      unicode="&#xF48B;"
+      horiz-adv-x="640" d=" M280 256C284.4 256 288 259.6 288 264V280C288 284.4 284.4 288 280 288H40C35.6 288 32 284.4 32 280V264C32 259.6 35.6 256 40 256H280zM632 64H608V172.1C608 188.9 601.2 205.4 589.2 217.3L505.3000000000001 301.2000000000001C493.5000000000001 313.2000000000001 477.0000000000001 320 460.1000000000001 320H416V369.4C416 395.1 393.8 416 366.6 416H113.4C86.2 416 64 395.1 64 369.4V352H8C3.6 352 0 348.4 0 344V328C0 323.6 3.6 320 8 320H248C252.4 320 256 323.6 256 328V344C256 348.4 252.4 352 248 352H96V369.4C96 377.5 103.8 384 113.4 384H366.6C376.2000000000001 384 384 377.5 384 369.4V64H207.6C193 83.3 170 96 144 96C125.9 96 109.4 89.8 96 79.6V160H64V16C64 -28.2 99.8 -64 144 -64S224 -28.2 224 16C224 21.5 223.4 26.8 222.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H632C636.4 32 640 35.6 640 40V56C640 60.4 636.4 64 632 64zM144 -32C117.5 -32 96 -10.5 96 16S117.5 64 144 64S192 42.5 192 16S170.5 -32 144 -32zM416 288H460.1C468.5 288 476.8 284.6 482.7 278.6L566.6 194.7C567.4 193.9 567.7 192.8 568.4 191.9H416V288zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32zM576 64H559.6C545 83.3 522 96 496 96S447 83.3 432.4 64H416V160H576V64zM256 200V216C256 220.4 252.4 224 248 224H8C3.6 224 0 220.4 0 216V200C0 195.6 3.6 192 8 192H248C252.4 192 256 195.6 256 200z" />
+    <glyph glyph-name="shipping-timed"
+      unicode="&#xF48C;"
+      horiz-adv-x="640" d=" M208 352C141.8 352 88 298.2 88 232S141.8 112 208 112S328 165.8 328 232S274.2 352 208 352zM208 144C159.5 144 120 183.5 120 232S159.5 320 208 320S296 280.5 296 232S256.5 144 208 144zM248 224H224V280C224 284.4 220.4 288 216 288H200C195.6 288 192 284.4 192 280V200C192 195.6 195.6 192 200 192H248C252.4 192 256 195.6 256 200V216C256 220.4 252.4 224 248 224zM632 64H608V172.1C608 188.9 601.2 205.4 589.2 217.3L505.3000000000001 301.2000000000001C493.5000000000001 313.2000000000001 477.0000000000001 320 460.1000000000001 320H416V369.4C416 395.1 393.8 416 366.6 416H49.4C22.2 416 0 395.1 0 369.4V78.6C0 52.9 22.2 32 49.4 32H65.6C64.5 26.8 64 21.5 64 16C64 -28.2 99.8 -64 144 -64S224 -28.2 224 16C224 21.5 223.4 26.8 222.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H632C636.4 32 640 35.6 640 40V56C640 60.4 636.4 64 632 64zM144 -32C117.5 -32 96 -10.5 96 16S117.5 64 144 64S192 42.5 192 16S170.5 -32 144 -32zM384 64H207.6C193 83.3 170 96 144 96S95 83.3 80.4 64H49.4C39.8 64 32 70.5 32 78.6V369.4C32 377.5 39.8 384 49.4 384H366.6C376.2 384 384 377.5 384 369.4V64zM416 288H460.1C468.5 288 476.8 284.6 482.7 278.6L566.6 194.7C567.4 193.9 567.7 192.8 568.4 191.9H416V288zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32zM576 64H559.6C545 83.3 522 96 496 96S447 83.3 432.4 64H416V160H576V64z" />
+    <glyph glyph-name="shoe-prints"
+      unicode="&#xF54B;"
+      horiz-adv-x="640" d=" M337.46 176C302.55 176 261.3 161.94 232.73 141.71C207.94 124.16 188.21 107.42 128 107.42H64C28.65 107.42 0 76.72 0 38.85S28.65 -32 64 -32H128L185.53 -46.82C217.42 -56.3 250.17 -64 293.3 -64C403.84 -64 512 -8.84 512 73.14C512 141.71 427.82 176 337.46 176zM112 0H64C46.95 0 32 18.16 32 38.86C32 59.03 46.36 75.43 64 75.43H112V0zM193.51 -15.84L144 -3.08V76.03C199.33 78.98 224.75 96.6900000000001 247.08 112.65C338.33 177.62 480 131.27 480 73.14C480 10.99 358.51 -64.78 193.51 -15.84zM421.29 448C377.87 448 345.12 440.2200000000001 313.5200000000001 430.83L256 416H192C156.65 416 128 383.02 128 345.14C128 307.27 156.65 276.57 192 276.57H256C316.2 276.57 335.94 259.8400000000001 360.73 242.28C389.3 222.06 430.54 208 465.46 208C555.82 208 640 242.29 640 310.86C640 392.16 533.12 448 421.29 448zM240 308.57H192C174.36 308.57 160 324.9700000000001 160 345.14C160 365.8400000000001 174.95 384 192 384H240V308.57zM465.46 240C437.88 240 403.22 251.41 379.22 268.4C355.51 285.29 330.46 304.85 272 307.9600000000001V387.08L322.65 400.15C352.05 408.9 381.7200000000001 416 421.29 416C473.38 416 608 389.98 608 310.86C608 264.3400000000001 536.29 240 465.46 240z" />
+    <glyph glyph-name="shopping-bag"
+      unicode="&#xF290;"
+      horiz-adv-x="448" d=" M352 320C352 390.579 294.579 448 224 448C153.42 448 96 390.579 96 320H0V16C0 -28.183 35.817 -64 80 -64H368C412.183 -64 448 -28.183 448 16V320H352zM224 416C276.935 416 320 372.935 320 320H128C128 372.935 171.065 416 224 416zM416 16C416 -10.467 394.467 -32 368 -32H80C53.533 -32 32 -10.467 32 16V288H96V240C96 231.163 103.164 224 112 224S128 231.163 128 240V288H320V240C320 231.163 327.163 224 336 224S352 231.163 352 240V288H416V16z" />
+    <glyph glyph-name="shopping-basket"
+      unicode="&#xF291;"
+      horiz-adv-x="576" d=" M564 256H487.125L347.893 410.703C341.983 417.271 331.866 417.804 325.297 411.892S318.196 395.8640000000001 324.108 389.296L444.075 256H131.925L251.893 389.2970000000001C257.805 395.864 257.272 405.982 250.704 411.8930000000001C244.135 417.805 234.018 417.273 228.108 410.704L88.875 256H12C5.373 256 0 250.627 0 244V236C0 229.373 5.373 224 12 224H28.444L58.25 9.397C61.546 -14.334 81.836 -32 105.794 -32H470.206C494.164 -32 514.454 -14.334 517.75 9.397L547.556 224H564C570.627 224 576 229.373 576 236V244C576 250.627 570.627 256 564 256zM486.054 13.799C484.961 5.932 478.148 0 470.206 0H105.794C97.852 0 91.039 5.932 89.946 13.799L60.752 224H515.249L486.054 13.799zM304 168V56C304 47.163 296.837 40 288 40C279.164 40 272 47.163 272 56V168C272 176.837 279.164 184 288 184C296.837 184 304 176.837 304 168zM416 168V56C416 47.163 408.837 40 400 40S384 47.163 384 56V168C384 176.837 391.163 184 400 184S416 176.837 416 168zM192 168V56C192 47.163 184.836 40 176 40S160 47.163 160 56V168C160 176.837 167.164 184 176 184S192 176.837 192 168z" />
+    <glyph glyph-name="shopping-cart"
+      unicode="&#xF07A;"
+      horiz-adv-x="576" d=" M551.991 384H129.28L120.951 428.423C118.822 439.774 108.911 448 97.362 448H12C5.373 448 0 442.627 0 436V428C0 421.373 5.373 416 12 416H90.72L160.647 43.054C150.305 31.686 144 16.58 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64C499.3469999999999 -64 528.001 -35.346 528.001 0C528.001 17.993 520.566 34.24 508.613 45.868C506.022 56.109 496.76 64 485.328 64H189.28L177.28 128H508.6609999999999C520.029 128 529.838 135.976 532.1569999999999 147.105L575.4879999999999 355.105C578.592 370.009 567.215 384 551.991 384zM240 0C240 -17.645 225.645 -32 208 -32S176 -17.645 176 0S190.355 32 208 32S240 17.645 240 0zM464 -32C446.355 -32 432 -17.645 432 0S446.355 32 464 32S496 17.645 496 0S481.645 -32 464 -32zM502.156 160H171.28L135.28 352H542.156L502.1559999999999 160z" />
+    <glyph glyph-name="shovel-snow"
+      unicode="&#xF7C3;"
+      horiz-adv-x="512" d=" M180.7 203.3L100.7 123.3C94.5 117.1 94.5 106.9 100.7 100.7C103.8 97.6 107.9 96 112 96C116.1 96 120.2 97.6 123.3 100.7L203.3 180.7C209.5 186.9 209.5 197.1 203.3 203.3C197.1 209.6 186.9 209.6 180.7 203.3zM164.7 36.7C167.8 33.6 171.9 32.0000000000001 176 32.0000000000001S184.2 33.6000000000001 187.3 36.7L267.3 116.7000000000001C273.5 122.9 273.5 133.1 267.3 139.3000000000001C261.1 145.6000000000001 250.9 145.6000000000001 244.7 139.3000000000001L164.7 59.3000000000001C158.4 53.1000000000001 158.4 42.9000000000001 164.7 36.7zM502.6 382.1L446.1 438.6C439.8 444.9 431.6 448 423.4 448S407 444.9 400.8 438.6L383.8 421.6C359.6 397.4 356.4000000000001 360.3 373.8 332.5L267.6 226.2L220.4 273.4C210.7000000000001 283.1 197.9 288 185.1 288C174.4 288 163.6 284.6 154.6 277.6L19.4 173.1C-4.4 154.7000000000001 -6.7 119.6 14.6 98.3L162.3 -49.4C172.1 -59.2 184.9 -64 197.6 -64C212.4 -64 227.2 -57.4 237.1 -44.6L341.6 90.6C357 110.4999999999999 355.2 138.7 337.4 156.4L290.2 203.6L396.5 309.9C408.2 302.6 421.4 298.8 434.7 298.8C453.1 298.8 471.6 305.8 485.6 319.9L502.6 336.9C515.0999999999999 349.3 515.0999999999999 369.6 502.6 382.1zM314.7 133.8C321.1 127.4 321.7 117.3 316.2 110.2L211.8 -25C208.4 -29.4 203.2 -32 197.6 -32C194.8 -32 189.5 -31.3 184.9 -26.7L37.3 120.9C32.3 125.9 31.9 131.7 32.1 134.7C32.3 137.7 33.4 143.4 39 147.7L174.2 252.2C178.2 255.3 182.4 255.9 185.1 255.9C189.9 255.9 194.4 254 197.8 250.6L314.7 133.8zM463 342.5C455.4 334.9 445.4 330.8 434.7 330.8S414 335 406.4 342.5C398.8 350.1 394.7 360.1 394.7 370.8S398.9 391.5 406.4 399.1L423.3 416.1L480 359.4L463 342.5z" />
+    <glyph glyph-name="shovel"
+      unicode="&#xF713;"
+      horiz-adv-x="512" d=" M501.55 361.88L425.88 437.55C418.9100000000001 444.52 409.76 448 400.6 448S382.3 444.52 375.3300000000001 437.55L346.1300000000001 408.36C329.21 391.43 320 368.76 320 345.32C320 320.81 329.79 303.51 335.96 294.58L208.67 167.3L152.1 223.87C145.85 230.12 137.66 233.24 129.47 233.24S113.09 230.12 106.84 223.87L38.96 155.99C-11.02 106 -6.29 -25.03 16.34 -47.66C26.21 -57.53 56.73 -64 92.14 -64C137.89 -64 191.81 -53.21 219.99 -25.03L287.87 42.85C300.37 55.35 300.37 75.61 287.87 88.1L231.3 144.67L358.5800000000001 271.9500000000001C367.5000000000001 265.79 384.8400000000001 255.99 409.3400000000001 255.99C432.7500000000001 255.99 455.4300000000001 265.2100000000001 472.35 282.12L501.54 311.32C515.48 325.27 515.48 347.94 501.55 361.88zM197.36 -2.41C160.69 -39.07 63 -35.13 39.2 -24.67C28.56 -2.55 25.61 97.37 61.6 133.36L129.45 201.24H129.48L265.24 65.47L197.36 -2.41zM478.92 333.96L449.73 304.77C396.94 251.98 315.63 332.61 368.7700000000001 385.73L397.9700000000001 414.93C399.42 416.38 401.81 416.38 403.2600000000001 414.93L478.9300000000001 339.25C480.3700000000001 337.8 480.3700000000001 335.41 478.9200000000001 333.96z" />
+    <glyph glyph-name="shower"
+      unicode="&#xF2CC;"
+      horiz-adv-x="512" d=" M384 240C384 231.163 376.837 224 368 224S352 231.163 352 240S359.163 256 368 256S384 248.837 384 240zM432 256C423.163 256 416 248.837 416 240S423.163 224 432 224S448 231.163 448 240S440.837 256 432 256zM496 256C487.163 256 480 248.837 480 240S487.163 224 496 224S512 231.163 512 240S504.837 256 496 256zM336 224C327.163 224 320 216.837 320 208S327.163 192 336 192S352 199.163 352 208S344.837 224 336 224zM400 224C391.163 224 384 216.837 384 208S391.163 192 400 192S416 199.163 416 208S408.837 224 400 224zM464 224C455.163 224 448 216.837 448 208S455.163 192 464 192S480 199.163 480 208S472.837 224 464 224zM304 192C295.163 192 288 184.837 288 176S295.163 160 304 160S320 167.163 320 176S312.837 192 304 192zM368 192C359.163 192 352 184.837 352 176S359.163 160 368 160S384 167.163 384 176S376.837 192 368 192zM432 192C423.163 192 416 184.837 416 176S423.163 160 432 160S448 167.163 448 176S440.837 192 432 192zM336 160C327.163 160 320 152.837 320 144S327.163 128 336 128S352 135.163 352 144S344.837 160 336 160zM400 160C391.163 160 384 152.837 384 144S391.163 128 400 128S416 135.163 416 144S408.837 160 400 160zM304 128C295.163 128 288 120.837 288 112S295.163 96 304 96S320 103.163 320 112S312.837 128 304 128zM368 128C359.163 128 352 120.837 352 112S359.163 96 368 96S384 103.163 384 112S376.837 128 368 128zM336 96C327.163 96 320 88.837 320 80S327.163 64 336 64S352 71.163 352 80S344.837 96 336 96zM304 64C295.163 64 288 56.837 288 48S295.163 32 304 32S320 39.163 320 48S312.837 64 304 64zM381.175 354.825L386.825 349.175C391.511 344.489 391.511 336.891 386.825 332.204L211.795 157.175C207.109 152.489 199.511 152.489 194.824 157.175L189.175 162.8249999999999C184.489 167.5109999999999 184.489 175.1089999999999 189.175 179.7959999999999L197.63 188.2509999999999C174.168 209.009 160 239.061 160 272C160 304.627 173.781 334.056 196.73 354.95C179.044 373.102 154.26 384.3 126.906 383.9940000000001C74.131 383.403 32 339.658 32 286.879V-32H0V286.564C0 357.601 58.124 416.628 129.159 415.995C166.655 415.661 200.349 399.122 223.58 373.06C267.224 394.004 321.76 384.784 355.75 346.37L364.205 354.825C368.891 359.511 376.489 359.511 381.175 354.825zM333.06 323.68C303.296 359.144 248.766 361.906 215.43 328.57C215.33 328.4700000000001 215.23 328.37 215.13 328.26C181.956 294.752 185.134 240.474 220.32 210.94L333.06 323.68z" />
+    <glyph glyph-name="shredder"
+      unicode="&#xF68A;"
+      horiz-adv-x="512" d=" M432 256H416V338.75C416 347.24 412.63 355.37 406.63 361.38L329.37 438.63C323.37 444.63 315.23 448 306.74 448H126.48C109.64 448 96 433.67 96 416V256H80C35.82 256 0 220.18 0 176V80C0 71.16 7.16 64 16 64H496C504.84 64 512 71.16 512 80V176C512 220.18 476.18 256 432 256zM320 402.75L370.75 352H320V402.75zM128.12 416H288V352C288 334.33 302.33 320 320 320H384V256H128.02L128.12 416zM480 96H32V176C32 202.47 53.53 224 80 224H432C458.47 224 480 202.47 480 176V96zM400 184C386.75 184 376 173.26 376 160C376 146.75 386.75 136 400 136S424 146.75 424 160C424 173.26 413.25 184 400 184zM48 -56C48 -60.42 51.58 -64 56 -64H72C76.42 -64 80 -60.42 80 -56V32H48V-56zM144 -56C144 -60.42 147.58 -64 152 -64H168C172.42 -64 176 -60.42 176 -56V32H144V-56zM240 -56C240 -60.42 243.58 -64 248 -64H264C268.42 -64 272 -60.42 272 -56V32H240V-56zM336 -56C336 -60.42 339.58 -64 344 -64H360C364.42 -64 368 -60.42 368 -56V32H336V-56zM432 -56C432 -60.42 435.58 -64 440 -64H456C460.42 -64 464 -60.42 464 -56V32H432V-56z" />
+    <glyph glyph-name="shuttle-van"
+      unicode="&#xF5B6;"
+      horiz-adv-x="640" d=" M625.17 209.8L499.19 360.9700000000001A64.006 64.006 0 0 1 450.02 384H48C21.49 384 0 362.51 0 336V64C0 46.33 14.33 32 32 32H65.62C73.05 -4.47 105.37 -32 144 -32S214.95 -4.47 222.38 32H417.62C425.05 -4.47 457.37 -32 496 -32S566.95 -4.47 574.38 32H608C625.67 32 640 46.33 640 64V168.83C640 183.8 634.75 198.3 625.17 209.8zM352 352H450.02C459.55 352 468.5 347.8 474.6 340.49L571.68 224H352V352zM192 352H320V224H192V352zM32 336C32 344.82 39.18 352 48 352H160V224H32V336zM144 0C117.49 0 96 21.49 96 48S117.49 96 144 96S192 74.51 192 48S170.51 0 144 0zM496 0C469.49 0 448 21.49 448 48S469.49 96 496 96S544 74.51 544 48S522.51 0 496 0zM608 64H574.38C566.95 100.47 534.63 128 496 128S425.05 100.47 417.62 64H222.38C214.95 100.47 182.63 128 144 128S73.05 100.47 65.62 64H32V192H598.35L600.58 189.32A32.093 32.093 0 0 0 608 168.83V64z" />
+    <glyph glyph-name="shuttlecock"
+      unicode="&#xF45B;"
+      horiz-adv-x="512" d=" M480 256H418.4L428.8 328.6C431.8 349.4 414.3 367.7 392.6 364.8L320 354.4V416C320 433.7 305.7 448 288 448H244.9C232.7 448 221.4 440.9 216.1 429.9L98.1 184.1L31.1 117.1C-10.3 75.7 -10.3 8.5 31.1 -32.9C51.8 -53.6 78.9 -64 106.1 -64C133.2 -64 160.4 -53.6 181.1 -32.9L248.1 34.1L493.9 152.1C504.9 157.4 512 168.7000000000001 512 180.9V224C512 241.7 497.7 256 480 256zM397.1 333.1L385.7000000000001 252.9L294 230L316.9 321.7L397.1 333.1zM244.9 416H288V345.7L185.6 292.4L244.9 416zM279.9 305.4L257.6 216.2L169.8 128.4L127.4 170.8L162.6 244.3L279.9 305.4zM32 42C32 60.6 39 78 51.5 91.6L155.7 -12.6C142 -25 124.6 -32 106 -32C65.1 -32 32 1.1 32 42zM178.5 9.8L73.8 114.5L106 146.7L210.7 42L178.5 9.8zM234.8 63.3L192.4 105.7L280.2 193.5L369.4 215.8L308.3 98.5L234.8 63.3zM480 181L356.4 121.6L409.7 224H480V181z" />
+    <glyph glyph-name="sigma"
+      unicode="&#xF68B;"
+      horiz-adv-x="320" d=" M296 288H312C316.42 288 320 291.5800000000001 320 296V352C320 369.67 305.68 384 288.01 384H33.39C22.2 384 11.2 378.88 5.19 369.44C-2.5 357.36 -1.57 342.57 7.99 330.94L138.09 192L7.3 52.27C-1.51 41.5 -2.52 26.58 5.23 14.49C11.3 5.04 22.38 0 33.61 0H288.01C305.68 0 320 14.33 320 32V88C320 92.42 316.42 96 312 96H296C291.58 96 288 92.42 288 88V32L31.35 31.19L161.42 170.11C172.95 182.39 172.95 201.61 161.45 213.88L32.05 352H288.01V296C288.01 291.5800000000001 291.59 288 296 288z" />
+    <glyph glyph-name="sign-in-alt"
+      unicode="&#xF2F6;"
+      horiz-adv-x="512" d=" M32 230.9C32 239.7 39.2 246.9 48 246.9H192V340.8C192 347.9 200.6 351.5 205.6 346.5L347.2 203.4C353.5 197.1 353.5 187.0000000000001 347.2 180.7000000000001L205.6 37.6C200.6 32.6 192 36.1 192 43.3V137.2000000000001H48C39.2 137.2000000000001 32 144.4 32 153.2000000000001V230.9000000000001M0 230.9000000000001V153.2000000000001C0 126.7000000000001 21.5 105.2000000000001 48 105.2000000000001H160V43.3000000000001C160 7.8000000000001 203 -10.1999999999999 228.2 15.0000000000001L369.9 158.0000000000001C388.7 176.8000000000001 388.7 207.2000000000001 369.9 226.0000000000001L228.2 369.1C203.1 394.2 160 376.4 160 340.8V278.9H48C21.5 278.9 0 257.3 0 230.9zM512 48V336C512 362.5 490.5 384 464 384H332C325.4 384 320 378.6 320 372V364C320 357.4 325.4 352 332 352H464C472.8 352 480 344.8 480 336V48C480 39.2 472.8 32 464 32H332C325.4 32 320 26.6 320 20V12C320 5.4 325.4 0 332 0H464C490.5 0 512 21.5 512 48z" />
+    <glyph glyph-name="sign-in"
+      unicode="&#xF090;"
+      horiz-adv-x="512" d=" M184 364.5L348.5 200.5C353.2 195.8 353.2 188.2 348.5 183.5L184 19.5C179.3 14.8 171.7 14.8 167 19.5L159.9 26.6C155.2 31.3 155.2 38.9 159.9 43.6L291.9 175H12C5.4 175 0 180.4 0 187V197C0 203.6 5.4 209 12 209H291.9L160 340.4C155.3 345.1 155.3 352.7 160 357.4L167.1 364.5C171.7 369.2 179.3 369.2 184 364.5zM512 48V336C512 362.5 490.5 384 464 384H332C325.4 384 320 378.6 320 372V364C320 357.4 325.4 352 332 352H464C472.8 352 480 344.8 480 336V48C480 39.2 472.8 32 464 32H332C325.4 32 320 26.6 320 20V12C320 5.4 325.4 0 332 0H464C490.5 0 512 21.5 512 48z" />
+    <glyph glyph-name="sign-language"
+      unicode="&#xF2A7;"
+      horiz-adv-x="448" d=" M447.971 192.609L443.504 330.769C441.9340000000001 379.272 378.4020000000001 397.5850000000001 352.144 355.73L296.225 428.621C286.778 440.936 272.495 447.999 257.039 448C241.109 448.001 226.948 440.375 218.032 428.794C182.039 445.682 141.266 415.009 148.605 374.505C118.48 361.457 109.566 323.348 129.241 297.701L134.057 291.424C108.324 276.6720000000001 100.948 241.863 119.523 217.651L127.941 206.678H75.021C42.294 206.678 19.0389999999999 175.43 27.0879999999999 144.329C11.542 136.356 0.374 120.102 0.01 100.779C-0.361 81.125 10.678 64.288 26.56 55.833C17.936 23.385 42.861 -7.0360000000001 74.888 -7.0360000000001H82.134C77.853 -37.01 100.941 -64 131.143 -64H227.035C238.34 -64 249.652 -62.667 260.655 -60.04L332.505 -42.881C357.073 -37.014 374.531 -14.844 374.531 10.708V105.94L427.077 147.469C440.725 158.256 448.536 175.131 447.971 192.609zM113.637 -14.461C113.546 -9.69 115.373 -5.151 118.782 -1.679C122.239 1.845 126.808 3.7859999999999 131.647 3.7859999999999H187.266A8 8 0 0 1 195.266 11.7859999999999V16.9639999999999A8 8 0 0 1 187.266 24.9639999999999H74.887C51.464 24.9639999999999 50.85 60.7499999999999 74.383 60.7499999999999H187.266A8 8 0 0 1 195.266 68.7499999999999V73.9289999999999A8 8 0 0 1 187.266 81.9289999999999H50.014C26.588 81.9289999999999 25.98 117.714 49.51 117.714H187.266A8 8 0 0 1 195.266 125.714V130.8929999999999A8 8 0 0 1 187.266 138.8929999999999H75.525C52.096 138.8929999999999 51.492 174.6789999999999 75.021 174.6789999999999H225.526C233.211 174.6789999999999 236.485 184.5329999999999 230.277 189.1159999999999L202.522 209.6019999999999C183.387 223.7259999999999 204.561 252.2459999999999 223.029 238.61L333.1740000000001 157.305C339.033 152.98 342.5310000000001 145.993 342.5310000000001 138.614V10.71C342.5310000000001 -0.061 335.3510000000001 -9.3 325.0720000000001 -11.755L253.2220000000001 -28.914A112.86 112.86 0 0 0 227.0350000000001 -31.999H131.1420000000001C121.6720000000001 -31.9999999999999 113.8190000000001 -24.133 113.6370000000001 -14.461zM172.782 258.803L180.36 248.925C168.789 233.508 169.698 212.287 181.405 197.929H174.984L144.912 237.129C130.356 256.0990000000001 158.354 277.611 172.782 258.803zM346.876 176.042L236.732 257.346C225.098 265.932 209.891 267.4740000000001 196.972 261.986L154.628 317.1810000000001C140.22 335.963 167.297 358.6720000000001 181.88 339.6600000000001L251.233 249.259A7.995 7.995 0 0 1 256.593 246.1900000000001A7.982999999999999 7.982999999999999 0 0 1 262.541 247.8520000000001L266.566 251.034A8.001 8.001 0 0 1 267.953 262.18L183.63 372.096C169.219 390.884 196.302 413.584 210.881 394.577L295.515 284.256A7.995 7.995 0 0 1 300.875 281.187A7.982999999999999 7.982999999999999 0 0 1 306.823 282.8490000000001L310.848 286.031A8.001 8.001 0 0 1 312.235 297.177L243.584 386.664C229.188 405.432 256.226 428.189 270.8349999999999 409.1450000000001L363.3019999999999 288.6130000000001A8.001 8.001 0 0 1 377.6459999999999 293.7410000000001L376.5199999999999 328.5540000000001C375.736 352.7650000000001 410.769 352.9440000000001 411.5199999999999 329.7360000000001L415.988 191.576C416.2269999999999 184.199 412.955 177.097 407.235 172.576L365.661 139.718C365.32 154.057 358.353 167.569 346.8759999999999 176.042z" />
+    <glyph glyph-name="sign-out-alt"
+      unicode="&#xF2F5;"
+      horiz-adv-x="512" d=" M160 230.9C160 239.7 167.2 246.9 176 246.9H320V340.8C320 347.9 328.6 351.5 333.6 346.5L475.2 203.4C481.5000000000001 197.1 481.5000000000001 187.0000000000001 475.2 180.7000000000001L333.6 37.6C328.6 32.6 320 36.1 320 43.3V137.2000000000001H176C167.2 137.2000000000001 160 144.4 160 153.2000000000001V230.9000000000001M128 230.9000000000001V153.2000000000001C128 126.7000000000001 149.5 105.2000000000001 176 105.2000000000001H288V43.3000000000001C288 7.8000000000001 331 -10.1999999999999 356.2 15.0000000000001L497.9 158.0000000000001C516.6999999999999 176.8000000000001 516.6999999999999 207.2000000000001 497.9 226.0000000000001L356.2 369.1C331.1 394.2 288 376.4 288 340.8V278.9H176C149.5 278.9 128 257.3 128 230.9zM0 336V48C0 21.5 21.5 0 48 0H180C186.6 0 192 5.4 192 12V20C192 26.6 186.6 32 180 32H48C39.2 32 32 39.2 32 48V336C32 344.8 39.2 352 48 352H180C186.6 352 192 357.4 192 364V372C192 378.6 186.6 384 180 384H48C21.5 384 0 362.5 0 336z" />
+    <glyph glyph-name="sign-out"
+      unicode="&#xF08B;"
+      horiz-adv-x="512" d=" M48 384H180C186.6 384 192 378.6 192 372V364C192 357.4 186.6 352 180 352H48C39.2 352 32 344.8 32 336V48C32 39.2 39.2 32 48 32H180C186.6 32 192 26.6 192 20V12C192 5.4 186.6 0 180 0H48C21.5 0 0 21.5 0 48V336C0 362.5 21.5 384 48 384zM327 364.5L319.9 357.4C315.2 352.7 315.2 345.1 319.9 340.4L451.9 209H172C165.4 209 160 203.6 160 197V187C160 180.4 165.4 175 172 175H451.9L320 43.6C315.3 38.9 315.3 31.3 320 26.6L327.1 19.5C331.8 14.8 339.4000000000001 14.8 344.1 19.5L508.6 183.5C513.3000000000001 188.2 513.3000000000001 195.8 508.6 200.5L344 364.5C339.3 369.2 331.7 369.2 327 364.5z" />
+    <glyph glyph-name="sign"
+      unicode="&#xF4D9;"
+      horiz-adv-x="512" d=" M504 384H96V440C96 444.4 92.4 448 88 448H72C67.6 448 64 444.4 64 440V384H8C3.6 384 0 380.4 0 376V360C0 355.6 3.6 352 8 352H64V-56C64 -60.4 67.6 -64 72 -64H88C92.4 -64 96 -60.4 96 -56V352H192V304H176C158.3 304 144 289.7 144 272V96C144 78.3 158.3 64 176 64H464C481.7 64 496 78.3 496 96V272C496 289.7 481.7 304 464 304H448V352H504C508.4 352 512 355.6 512 360V376C512 380.4 508.4 384 504 384zM464 96H176V272H464V96zM416 304H224V352H416V304z" />
+    <glyph glyph-name="signal-1"
+      unicode="&#xF68C;"
+      horiz-adv-x="640" d=" M80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64z" />
+    <glyph glyph-name="signal-2"
+      unicode="&#xF68D;"
+      horiz-adv-x="640" d=" M208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64z" />
+    <glyph glyph-name="signal-3"
+      unicode="&#xF68E;"
+      horiz-adv-x="640" d=" M208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64zM336 256H304C299.58 256 296 252.42 296 248V-56C296 -60.42 299.58 -64 304 -64H336C340.42 -64 344 -60.42 344 -56V248C344 252.42 340.42 256 336 256z" />
+    <glyph glyph-name="signal-4"
+      unicode="&#xF68F;"
+      horiz-adv-x="640" d=" M208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64zM336 256H304C299.58 256 296 252.42 296 248V-56C296 -60.42 299.58 -64 304 -64H336C340.42 -64 344 -60.42 344 -56V248C344 252.42 340.42 256 336 256zM464 352H432C427.58 352 424 348.42 424 344V-56C424 -60.42 427.58 -64 432 -64H464C468.42 -64 472 -60.42 472 -56V344C472 348.42 468.42 352 464 352z" />
+    <glyph glyph-name="signal-alt-1"
+      unicode="&#xF691;"
+      horiz-adv-x="640" d=" M96 32V-32H64V32H96M96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64z" />
+    <glyph glyph-name="signal-alt-2"
+      unicode="&#xF692;"
+      horiz-adv-x="640" d=" M256 160V-32H224V160H256M96 32V-32H64V32H96M256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192zM96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64z" />
+    <glyph glyph-name="signal-alt-3"
+      unicode="&#xF693;"
+      horiz-adv-x="640" d=" M416 288V-32H384V288H416M256 160V-32H224V160H256M96 32V-32H64V32H96M416 320H384C366.33 320 352 305.67 352 288V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V288C448 305.67 433.67 320 416 320zM256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192zM96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64z" />
+    <glyph glyph-name="signal-alt-slash"
+      unicode="&#xF694;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM544 416H576V51.52L608 26.32V416C608 433.67 593.67 448 576 448H544C526.33 448 512 433.67 512 416V101.91L544 76.71V416zM384 288H416V177.51L448 152.31V288C448 305.67 433.67 320 416 320H384C366.33 320 352 305.67 352 288V227.91L384 202.71V288zM96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64zM96 -32H64V32H96V-32zM224 192C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V156.09L242.4 192H224zM256 -32H224V160H256V-32zM416 -32H384V80.5L352 105.7V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V30.1L416 55.3V-32z" />
+    <glyph glyph-name="signal-alt"
+      unicode="&#xF690;"
+      horiz-adv-x="640" d=" M576 416V-32H544V416H576M416 288V-32H384V288H416M256 160V-32H224V160H256M96 32V-32H64V32H96M576 448H544C526.33 448 512 433.67 512 416V-32C512 -49.67 526.33 -64 544 -64H576C593.67 -64 608 -49.67 608 -32V416C608 433.67 593.67 448 576 448zM416 320H384C366.33 320 352 305.67 352 288V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V288C448 305.67 433.67 320 416 320zM256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192zM96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64z" />
+    <glyph glyph-name="signal-slash"
+      unicode="&#xF695;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM472 344C472 348.42 468.42 352 464 352H432C427.58 352 424 348.42 424 344V171.21L472 133.41V344zM600 440C600 444.42 596.42 448 592 448H560C555.58 448 552 444.42 552 440V70.41L600 32.61V440zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64zM296 -56C296 -60.42 299.58 -64 304 -64H336C340.42 -64 344 -60.42 344 -56V112L296 149.8V-56zM424 -56C424 -60.42 427.58 -64 432 -64H464C468.42 -64 472 -60.42 472 -56V11.2L424 49V-56zM208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160z" />
+    <glyph glyph-name="signal"
+      unicode="&#xF012;"
+      horiz-adv-x="640" d=" M208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64zM336 256H304C299.58 256 296 252.42 296 248V-56C296 -60.42 299.58 -64 304 -64H336C340.42 -64 344 -60.42 344 -56V248C344 252.42 340.42 256 336 256zM464 352H432C427.58 352 424 348.42 424 344V-56C424 -60.42 427.58 -64 432 -64H464C468.42 -64 472 -60.42 472 -56V344C472 348.42 468.42 352 464 352zM592 448H560C555.58 448 552 444.42 552 440V-56C552 -60.42 555.58 -64 560 -64H592C596.42 -64 600 -60.42 600 -56V440C600 444.42 596.42 448 592 448z" />
+    <glyph glyph-name="signature"
+      unicode="&#xF5B7;"
+      horiz-adv-x="640" d=" M630.1 241.2C597.4 232.8 553 210.4 521.4 191.6C506.7 182.8 491.5 173.7 479.9 168.2C448.6 153 421.6 140 395.8 140C382.9 140 372.8 144.3 365.9 152.7C354.6 166.5 354.6 188 358 216C361.3 242.9 358.6 263.8 350.4 273.3C346 278.3 340.4 280.2000000000001 331.7 279.6C307 278 257 237.2 169.6 147.1L115.2 91.1L185.2 278.7000000000001C197 310.3 188.8 344.8 164.3 366.5C145 383.7 112 393.7 77.3 370L3.5 320.2C0 317.9 -1 313.2 1 309.6L10.2 293.4C12.5 289.3 17.8 288.1 21.7 290.7000000000001L97.5 342C104.1 346.5 111.5 348.8 118.9 348.8C128 348.8 136.5 345.4 143.7 339C156.9 327.3 161.3 308.8 155 291.9L55.2 24.3C53.3 19.1 54.2 11.7 57.4 6.6C59.8 2.9 64 0.5 68.7 0C73.6 -0.3 78.4 1.4 81.7 4.9C125 51.2 239.5 169.6 298 219.6L318.4 237C321.8 239.9 326.9 237.3 326.6 232.9L324.5 205C322.5 177.7 322.1 149.1 341.3 126.4C353.7 111.9 372 104.5 395.9 104.5C428.6 104.5 460 119.6 493.2 135.6C503.4 140.5 518.1 149.7000000000001 532.4 158.6C563.3 177.9 604.6999999999999 199.1 634.1999999999999 206.3C637.6999999999999 207.2 640.0999999999999 210.3 640.0999999999999 213.9V231.2C639.9999999999999 238.6 635.0999999999999 242.4 630.0999999999999 241.2z" />
+    <glyph glyph-name="sim-card"
+      unicode="&#xF7C4;"
+      horiz-adv-x="384" d=" M272 256H112C85.5 256 64 234.5 64 208V48C64 21.5 85.5 0 112 0H272C298.5 0 320 21.5 320 48V208C320 234.5 298.5 256 272 256zM168 224H216V184H168V224zM96 208C96 216.8 103.2 224 112 224H136V184H96V208zM136 32H112C103.2 32 96 39.2 96 48V72H136V32zM216 32H168V72H216V32zM288 48C288 39.2 280.8 32 272 32H248V72H288V48zM288 104H96V152H288V104zM288 184H248V224H272C280.8 224 288 216.8 288 208V184zM320 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM352 0C352 -17.6 337.6 -32 320 -32H64C46.4 -32 32 -17.6 32 0V306.7L141.3 416H320C337.6 416 352 401.6 352 384V0z" />
+    <glyph glyph-name="sitemap"
+      unicode="&#xF0E8;"
+      horiz-adv-x="640" d=" M608 96H576V193.59C576 210.36 562.38 224 545.59 224H336V288H384C401.67 288 416 302.3300000000001 416 320V416C416 433.67 401.67 448 384 448H256C238.33 448 224 433.67 224 416V320C224 302.33 238.33 288 256 288H304V224H94.41C77.62 224 64 210.36 64 193.59V96H32C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H128C145.67 -64 160 -49.67 160 -32V64C160 81.67 145.67 96 128 96H96V192H304V96H272C254.33 96 240 81.67 240 64V-32C240 -49.67 254.33 -64 272 -64H368C385.67 -64 400 -49.67 400 -32V64C400 81.67 385.67 96 368 96H336V192H544V96H512C494.33 96 480 81.67 480 64V-32C480 -49.67 494.33 -64 512 -64H608C625.67 -64 640 -49.67 640 -32V64C640 81.67 625.67 96 608 96zM128 64V-32H32V64H128zM368 64V-32H272V64H368zM256 320V416H384V320H256zM608 -32H512V64H608V-32z" />
+    <glyph glyph-name="skating"
+      unicode="&#xF7C5;"
+      horiz-adv-x="448" d=" M384 448C348.7 448 320 419.3 320 384C320 371.3 323.8 359.5 330.3 349.5C324.9000000000001 351 319.2 352 313.4000000000001 352H144C117.5 352 96 330.5 96 304S117.5 256 144 256H192.5A80.063 80.063 0 0 1 175.1 209.3C174.9 204.8 175.3 200.2 175.9 195.8L84.9 104.8C75.8 95.7 70.8 83.7 70.8 70.9S75.8 46.0000000000001 84.9 37.0000000000001C103.6 18.2 134 18.2 152.8 37.0000000000001L232 116.2000000000001L272 76.2000000000001V32C272 5.5 293.5 -16 320 -16S368 5.5 368 32V89.4C368 106.3 361.2 122.8 349.2 134.7L299.9 184L358.6 242.7C377 261.1 382.4 288.4 372.5 312.4C370.8999999999999 316.2 368.5 319.4 366.3 322.7C372 321.1 377.8 319.9 384 319.9C419.3 319.9 448 348.6 448 383.9S419.3 448 384 448zM130.2 59.5C124 53.3 113.8 53.2 107.6 59.5C101.4 65.7 101.4 75.9 107.6 82.1L188.4 162.9C195.1 152.6 193.7 154.5000000000001 209.5 138.7000000000001L130.2 59.5000000000001zM336 265.4L254.6 184L326.6 112C332.6 106 336 97.8 336 89.4V32C336 23.2 328.8 16 320 16S304 23.2 304 32V89.4L221.1 172.3L220.8 172.6C220.7 172.7 220.7 172.7 220.6 172.7C220.4 172.9 220.4 173.1 220.2 173.3C198.8 195.9 205.6 227.2 223.7 242.7L277.5 288.1H144C135.2 288.1 128 295.3 128 304.1S135.2 320.1 144 320.1H313.4C341.9 320 356.1 285.5 336 265.4000000000001zM384 352C366.3 352 352 366.4 352 384S366.3 416 384 416S416 401.6 416 384S401.7 352 384 352zM117.8 -8.6C111.6 -14.8 101.4 -14.8 95.2 -8.6L27.3 59.3C21.1 65.4999999999999 10.9 65.4999999999999 4.7 59.3S-1.5 42.9 4.7 36.6999999999999L72.6 -31.2C81.9 -40.6 94.3 -45.2 106.5 -45.2S131.1 -40.5000000000001 140.4 -31.2C146.6 -25.0000000000001 146.6 -14.8000000000001 140.4 -8.6S124.1 -2.3 117.8 -8.6zM400 0C391.2 0 384 -7.2 384 -16S376.8 -32 368 -32H272C263.2 -32 256 -39.2 256 -48S263.2 -64 272 -64H368C394.5 -64 416 -42.5 416 -16C416 -7.2 408.8 0 400 0z" />
+    <glyph glyph-name="skeleton"
+      unicode="&#xF620;"
+      horiz-adv-x="512" d=" M504 288H272V352H440C444.42 352 448 355.58 448 360V376C448 380.42 444.42 384 440 384H272V440C272 444.42 268.42 448 264 448H248C243.58 448 240 444.42 240 440V384H72C67.58 384 64 380.42 64 376V360C64 355.58 67.58 352 72 352H240V288H8C3.58 288 0 284.42 0 280V264C0 259.5800000000001 3.58 256 8 256H240V192H72C67.58 192 64 188.42 64 184V168C64 163.58 67.58 160 72 160H240V96H112C67.82 96 32 60.18 32 16S67.82 -64 112 -64S192 -28.18 192 16C192 34.1 185.77 50.6 175.64 64H336.36C326.23 50.6 320 34.1 320 16C320 -28.18 355.82 -64 400 -64S480 -28.18 480 16S444.18 96 400 96H272V160H440C444.42 160 448 163.58 448 168V184C448 188.42 444.42 192 440 192H272V256H504C508.42 256 512 259.5800000000001 512 264V280C512 284.42 508.42 288 504 288zM160 16C160 -10.47 138.47 -32 112 -32S64 -10.47 64 16S85.53 64 112 64S160 42.47 160 16zM448 16C448 -10.47 426.4700000000001 -32 400 -32S352 -10.47 352 16S373.53 64 400 64S448 42.47 448 16z" />
+    <glyph glyph-name="ski-jump"
+      unicode="&#xF7C7;"
+      horiz-adv-x="512" d=" M510.8 256.5C509.3 265.2 500.7 271 492.4 269.6C483.7 268.1 477.8 259.9 479.3 251.1C483.1 228.5 472.3 205.6 453 194.6L201.1 65.1L247.9 179L364.6 269.8C377.1 279.5 386.1 299.1 383 320.1C419 319.4 448 348.6 448 384C448 419.3 419.3 448 384 448S320 419.3 320 384C320 378.4 320.9 373.1 322.3 368H160C133.5 368 112 346.5 112 320S133.5 272 160 272H199.8C166.1 235.1 162.1 226.5 136.1 161C128.9 142.9 119.8 120.1 107.6 90.3C102.7 78.5 102.7 65.4 107.7 53.6C112.2 42.7 120.7 34.4 131.3 29.3L8.7 -33.7C0.8 -37.7 -2.3 -47.4 1.8 -55.2C4.6 -60.7 10.2 -63.9 16 -63.9C18.5 -63.9 21 -63.2999999999999 23.3 -62.1L468.2 166.7000000000001C499.7 184.5000000000001 516.9 220.7000000000001 510.8 256.5000000000001zM384 416C401.7 416 416 401.6 416 384S401.7 352 384 352S352 366.4 352 384S366.4 416 384 416zM137.2 78.1C207.2 248.3 174.1 194.1 272.4 304H160C151.2 304 144 311.2000000000001 144 320S151.2 336 160 336H328C349.4 336 360.1 310.1 345 295L223.1 200.2000000000001C222.3 199.4 220.9 197.4 220 195.2000000000001L166.7 65.9C163.4 57.8 154.2 53.8 145.8 57.2000000000001C137.8 60.6 133.9 69.9 137.2 78.1z" />
+    <glyph glyph-name="ski-lift"
+      unicode="&#xF7C8;"
+      horiz-adv-x="512" d=" M496 151.7C487.2 151.7 480 144.5 480 135.7C480 117.4 468.5 100.8 451.3 94.5L322.6 46.9C330.9000000000001 55.5 336 67.2 336 80V200C336 214.6 329.5 228.2 318.2 237.3C308.6 245.2 293.7 250.5 277.6 246.8L201.3 230.4L174.3 276.7C167.4 290.7 155.1 300.9 140.9 306.2C152.6 318 160 334.1 160 352C160 387.3 131.3 416 96 416S32 387.3 32 352C32 323.7 50.5 300 76 291.5C70.8 286 66.5 279.6 63.6 272.5C56.6 255.1 58.7 235.2 66 222.3L109.2 146.1C118 128.7000000000001 139 115.5 162.7 121.2000000000001L239.9 139.6V79.9C239.9 55.0000000000001 259.1 34.6 283.4 32.4L106.3 -33C98 -36.1 93.8 -45.3 96.8 -53.6C98.7 -58.7 106.4 -67.1 117.3 -63.1L462.2 64.3C491.9 75.3 511.8 103.9 511.8 135.5C512 144.6 504.8 151.6999999999999 496 151.6999999999999zM64 352C64 369.6 78.3 384 96 384S128 369.6 128 352S113.7 320 96 320S64 334.4 64 352zM304 80.1C304 71.3 296.8 64.1 288 64.1S272 71.3 272 80.1V180.2L155.3 152.4C148.9 150.9 141 153.5 137.5 161.1L93.7 238.2C87 253 94 270.5 109.1 276.6C131.3 285.5 143.9 266 145.7 261.9L185.1 194.5L284.5 215.8C294 218 303.8 210.6 303.8 200.2V80.1zM256 448H224V264L256 272V448zM181.1 64.9C189.5 67.7 194 76.7 191.2 85.1C188.4 93.4999999999999 179.3 97.9999999999999 171 95.2C137.6 84.1 101 99.6 85.8 131.4L30.4 246.9C26.6 254.9 17 258.2000000000001 9.1 254.4C1.1 250.6 -2.2 241 1.6 233.1L56.8 117.6C74.1 81.4 110.6 59.6 148.9 59.6C159.6 59.7000000000001 170.5 61.3 181.1 64.9z" />
+    <glyph glyph-name="skiing-nordic"
+      unicode="&#xF7CA;"
+      horiz-adv-x="576" d=" M560 16C551.2 16 544 8.8 544 0C544 -17.6 529.7 -32 512 -32H441.3L467 148C484 155.4 496 172.3 496 192C496 218.5 474.5 240 448 240H413.9L392.2 284.3C384.4 300.2000000000001 373 313.9 359.3 324.5C383.2 333.8 400 357 400 384C400 419.3 371.3 448 336 448S272 419.3 272 384C272 374 274.3 364.5 278.4 356.1L248.8 364.9C215.8 372.8 181.4 365.6 154.4 344.9L114.8 314.5C104.6 306.7 98.1 295.4 96.4 282.7C94.7 270 98.1 257.4 105.9 247.2C109.5 242.4 114 238.7 118.8 235.7L65.3 -32H16C7.2 -32 0 -39.2 0 -48S7.2 -64 16 -64H512C547.3 -64 576 -35.3 576 0C576 8.8 568.8 16 560 16zM237.6 93.6L182.5 -22.8C173.5 -41.6999999999999 144.4 -28.4999999999999 153.6 -9.1L210.8 111.6C219.1 103.8 224.2 101.5 237.6 93.6zM265.3 77.2000000000001L297.2 58.4L274.2 -1.6C271.1 -11.7 271.5 -22.2 275 -31.9999999999999H213.6L265.3 77.2000000000001zM368.7000000000001 127.7000000000001L319.3000000000001 156.9L332.1000000000001 189.0000000000001L336.5000000000001 179.9C347.2000000000001 158.1 369.7000000000001 144.0000000000001 394.0000000000001 144.0000000000001H434.1000000000001L409 -32H365.1C365.2000000000001 -31.7 365.4000000000001 -31.4 365.5 -31.1L397.6 55.2C405.4000000000001 82.9 393.6 112.7 368.7000000000001 127.7zM336 416C353.7 416 368 401.6 368 384S353.7 352 336 352S304 366.4 304 384S318.3 416 336 416zM134.3 289.1L173.9 319.5C193.2 334.2 217.8 339.4 240.5 334L312.2 312.7C334.1 307.1 353.3 291.2 363.5 270.2L394 208H448C469.2 208 469.2 176 448 176H394C381.9 176 370.6 183 365.2 193.9L329.1 267.7L279.3 143.2L352.3 100.2C364.8 92.7 370.7 77.7 367.2 65.1L335.3 -20.8000000000001C328.9 -41.5000000000001 298.9 -30.7 304.5 -12.2L336.8 72.1999999999999L240.1 129.1999999999999C219.4 141.3999999999999 210.9 167.3 220.4 189.3999999999999L264.9 293.3C230.2 303.5999999999999 230.2 304.0999999999999 222.7 304.0999999999999C212.5 304.0999999999999 201.9 300.5 193.4 294L153.7 263.5999999999999C136.7 250.7 117.7 276.4 134.3 289.0999999999999zM150.1 229C158.2 230 166.2 233 173.2 238.3L212.9 268.7000000000001C215.6 270.8 218.7000000000001 271.8 221 272.2000000000001L190.9 202.1C182.5 182.5 182.8000000000001 161.2000000000001 189.9 142.4L124.6 4.5C119.1 -7.1 118.5000000000001 -20 122.8000000000001 -32.1H97.9L150.1 229z" />
+    <glyph glyph-name="skiing"
+      unicode="&#xF7C9;"
+      horiz-adv-x="512" d=" M507.3 -17.7C501.1 -11.4 490.9 -11.4 484.7 -17.7C470.3 -32.2 448.1 -36.1 430.5 -28L300.4 41.7C304.8 44.9 308.8 48.7 311.9 53.3L312.4 54.1L312.9 54.9L353.2 123.3000000000001C369.5 148.5000000000001 366 182.0000000000001 344.7 203.3000000000001L295.2 252.8000000000001L426.5 181C460.1 164.3 484.6 190 490.9 202.4C502.7 226.1 493.1 255 469.4 266.8L423.3 290L413.2 320.2C414.2 320.2 415.1 319.9 416 319.9C451.3 319.9 480 348.6 480 383.9S451.3 448 416 448C381.7 448 353.8 420.8 352.3 386.9C337.3 390.7 320.9000000000001 391.3 302.7 384L219.3 350.6C214.2 348.6 209.6 345.7 205.1 342.8L165.1 365.7C166.2 380.9 158.4 395.9 144 403.3L132.9 381.5L98.3 388.5C93 389.6 89.8 382.9 93.8 379.4L119.9 356.5C120 356.4 120 356.3 120 356.2L108.5 333.8C122.2 326.8 138 329 149.5 337.6L182 319C176.8 310.9 172.5 302.1 170.5 292.3C165.1 265.9 173.2 238.7 192.3 219.7L259.2000000000001 152.8L231.4000000000001 105.6C226.8000000000001 98.4 224.6 90.4 224.2000000000001 82.5L23.6 190.1C15.9 194.2 6.1 191.4 1.9 183.6C-2.3 175.8 0.7 166.1 8.4 161.9L416.2 -56.6C427 -61.6 438.5 -63.9999999999999 449.9 -63.9999999999999C471 -63.9999999999999 491.8 -55.8 507.2 -40.3C513.6 -34.1 513.6 -23.9 507.3 -17.6999999999999zM416 416C433.7 416 448 401.6 448 384S433.7 352 416 352S384 366.4 384 384S398.3 416 416 416zM314.6 354.2C347.4000000000001 367.3 372 342.6 377.9000000000001 324.8L397.1 267.3L455.2 238.3C474.2 228.8 459.8000000000001 200.3 440.9000000000001 209.7L412.6 223.8L372.8 246.6C370.2 249.7 368.1 253.2 366.8 257.2000000000001L348.7 311.6L298.6 289.2000000000001L238.4 323.7000000000001L314.6 354.2000000000001zM258.7000000000001 88.8L299.4000000000001 157.9L215 242.4C203.6 253.8 198.7 270.1 201.9 286C203.2000000000001 292.4 206 298.1 209.6 303.3L262.3 273.1L239.6 263L322 180.6C332.8 169.8 334.4 152.8 326 140.2000000000001L285.3 71.1C273.4000000000001 53.4 247 71.3 258.7 88.8z" />
+    <glyph glyph-name="skull-crossbones"
+      unicode="&#xF714;"
+      horiz-adv-x="448" d=" M264 288C277.24 288 288 298.76 288 312S277.24 336 264 336S240 325.24 240 312S250.76 288 264 288zM184 288C197.24 288 208 298.76 208 312S197.24 336 184 336S160 325.24 160 312S170.76 288 184 288zM135.03 220.07L128.62 189.83C125.41 174.68 135.12 160.01 148.35 160.01H299.65C312.88 160.01 322.59 174.68 319.38 189.83L312.97 220.07C346.25 243.51 368 279.3300000000001 368 320C368 390.69 303.53 448 224 448S80 390.69 80 320C80 279.33 101.75 243.51 135.03 220.07zM224 416C285.76 416 336 372.94 336 320C336 291.68 320.89 264.79 294.54 246.23L277.29 234.08L281.6600000000001 213.44L286.2000000000001 192.01H161.79L166.33 213.44L170.7 234.08L153.45 246.23C127.11 264.79 112 291.68 112 320C112 372.94 162.24 416 224 416zM269.12 32L443.15 97.94C447.21 99.68 449.09 104.39 447.35 108.45L441.04 123.16A7.996000000000001 7.996000000000001 0 0 1 430.54 127.36L224 49.09L17.47 127.35A7.996000000000001 7.996000000000001 0 0 1 6.97 123.15L0.66 108.44C-1.08 104.38 0.8 99.67 4.86 97.93L178.88 32L4.85 -33.94C0.79 -35.68 -1.09 -40.39 0.65 -44.45L6.96 -59.15A7.996000000000001 7.996000000000001 0 0 1 17.46 -63.35L224 14.91L430.53 -63.35A7.996000000000001 7.996000000000001 0 0 1 441.03 -59.15L447.34 -44.45C449.08 -40.39 447.2 -35.68 443.14 -33.94L269.12 32z" />
+    <glyph glyph-name="skull"
+      unicode="&#xF54C;"
+      horiz-adv-x="512" d=" M352 264C312.2 264 280 231.8 280 192S312.2 120 352 120S424 152.2 424 192S391.8 264 352 264zM352 152C329.9 152 312 169.9 312 192S329.9 232 352 232S392 214.1 392 192S374.1 152 352 152zM160 264C120.2 264 88 231.8 88 192S120.2 120 160 120S232 152.2 232 192S199.8 264 160 264zM160 152C137.9 152 120 169.9 120 192S137.9 232 160 232S200 214.1 200 192S182.1 152 160 152zM256 448C114.6 448 0 347.7 0 224C0 153.9 36.9 91.4 94.5 50.3C104.2 43.4 109.7 32.2 108 20.4L100.9 -0.9C90.6 -32 113.8 -64 146.5 -64H365.5C398.2 -64 421.4 -32 411.1 -0.9L404 20.4C402.3 32.1 407.8 43.4 417.5 50.3C475.1 91.4 512 153.9 512 224C512 347.7 397.4 448 256 448zM398.9 76.4C379.2 62.4 369 39.2 372.3 16L372.7 13.2L373.5999999999999 10.4L380.7 -10.9C382.8999999999999 -17.7 380.3 -22.8 378.5 -25.3C376.7 -27.8 372.7 -31.9 365.5 -31.9H320V24.1C320 28.4999999999999 316.4 32.1 312 32.1H296C291.6 32.1 288 28.4999999999999 288 24.1V-31.9H224V24.1C224 28.4999999999999 220.4 32.1 216 32.1H200C195.6 32.1 192 28.4999999999999 192 24.1V-31.9H146.5C139.4 -31.9 135.3 -27.7 133.5 -25.3C131.7 -22.8 129 -17.6 131.3 -10.9L138.4 10.4L139.3 13.2L139.7 16C143 39.2 132.8 62.4 113.1 76.4C61.5 113.1 32 166.9 32 224C32 329.9 132.5 416 256 416S480 329.9 480 224C480 166.9 450.5 113.1 398.9 76.4z" />
+    <glyph glyph-name="slash"
+      unicode="&#xF715;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617 -62.25C620.45 -65.01 625.48 -64.45 628.25 -61L638.25 -48.49A7.995 7.995 0 0 1 637 -37.25z" />
+    <glyph glyph-name="sledding"
+      unicode="&#xF7CB;"
+      horiz-adv-x="512" d=" M507.3 14.9C501.1 21.2 490.9 21.2 484.7 14.9C469.6 -0.2 446.5 -4.3 427.7 4.3L367.1 35.6C377.4 44.4 384 57.3 384 71.9V159.9C384 186.4 362.5 207.9 336 207.9H323.8999999999999L342.5999999999999 226.6C360.3999999999999 244.4 365.7 270.6 357.0999999999999 294C365.2999999999999 290.2 374.3999999999999 287.9 383.9999999999999 287.9C419.2999999999999 287.9 447.9999999999999 316.6 447.9999999999999 351.9S419.2999999999999 415.9 383.9999999999999 415.9S319.9999999999999 387.2 319.9999999999999 351.9C319.9999999999999 343.9 321.6999999999999 336.3 324.2999999999999 329.2C315.8999999999999 333.1 306.9999999999999 335.9 297.2999999999999 335.9H160C133.5 335.9 112 314.4 112 287.9S133.5 239.9 160 239.9H188.1L169.4 221.2C151 202.8 145.6 175.4 155.5 151.4C156.9 148 159.2 145.2 161.1 142.1L23.4 213.4C15.7 217.4 5.9 214.4 1.8 206.5C-2.3 198.7 0.8 189 8.7 184.9L413.7 -24.4C424.8 -29.5000000000001 436.7 -32.0000000000001 448.4 -32.0000000000001C470.1 -32.0000000000001 491.5 -23.6000000000001 507.3 -7.7C513.5999999999999 -1.4 513.5999999999999 8.6999999999999 507.3 14.9zM384 384C401.7 384 416 369.6 416 352S401.7 320 384 320S352 334.4 352 352S366.3 384 384 384zM192 198.6L265.4 272H160C151.2 272 144 279.2 144 288S151.2 304 160 304H297.4C310.4 304 322 296.2 327 284.2S329.2 258.5 320.1 249.3L246.6 176H336C344.8 176 352 168.8 352 160V72C352 63.2 344.8 56 336 56S320 63.2 320 72V144H214.6C186.1 144 171.8 178.4 192 198.6zM288 112V76.6L219.5 112H288z" />
+    <glyph glyph-name="sleigh"
+      unicode="&#xF7CC;"
+      horiz-adv-x="640" d=" M615.8 83.1L601.5 94.3C598.1 97.1 593 96.5 590.3 93.1L580.3 80.6C577.5 77.2000000000001 578.0999999999999 72.1 581.5 69.4L595 58.9C601.3 53.8 606.1 46.8 607.5 38.9C611.3 18.3 595.4 0.2 575.4 0.2H448V64.2000000000001H458C523.1 64.2000000000001 576 117.1 576 182.2000000000001V319.5H600C604.4 319.5 608 323.1 608 327.5V343.5C608 347.9 604.4 351.5 600 351.5H480C462.3 351.5 448 337.2 448 319.5V271C448 242.9 418.6 231.8 405.9 228.3C357.8 215 268.9 232.1 221.7 311.4C169.5 399.3 122 416 52.7 416H8C3.6 416 0 412.4 0 408V392C0 387.6 3.6 384 8 384H32V216C32 152 71.9 97.4 128 75V0H40C35.6 0 32 -3.6 32 -8V-24C32 -28.4 35.6 -32 40 -32H572C607.5 -32 638 -4.7 639.9 28.8C641.1 50 632.3 69.8 615.8 83.1zM64 216V383.6C117.4 381.8 152.2 365.7 194.3 295.1C236.5 223.9 309.8 192 372 192C387 192 401.3 193.8 414.4 197.5C455.5 208.8 480 236.3 480 271V319.5H544V182C544 134.6 505.4 96 458 96H184C117.8 96 64 149.8 64 216zM160 0V66.4C167.9 65.1 175.8 64 184 64H416V0H160z" />
+    <glyph glyph-name="sliders-h-square"
+      unicode="&#xF3F0;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM324 288H224V328C224 341.2 213.2 352 200 352H152C138.8 352 128 341.2 128 328V288H92C85.4 288 80 282.6 80 276V268C80 261.4 85.4 256 92 256H128V216C128 202.8 138.8 192 152 192H200C213.2 192 224 202.8 224 216V256H324C330.6 256 336 261.4 336 268V276C336 282.6 330.6 288 324 288zM192 224H160V320H192V224zM340 128H320V168C320 181.2 309.2 192 296 192H248C234.8 192 224 181.2 224 168V128H108C101.4 128 96 122.6 96 116V108C96 101.4 101.4 96 108 96H224V56C224 42.8 234.8 32 248 32H296C309.2 32 320 42.8 320 56V96H340C346.6 96 352 101.4 352 108V116C352 122.6 346.6 128 340 128zM288 64H256V160H288V64z" />
+    <glyph glyph-name="sliders-h"
+      unicode="&#xF1DE;"
+      horiz-adv-x="512" d=" M504 64H192V104C192 117.3 181.3 128 168 128H120C106.7 128 96 117.3 96 104V64H8C3.6 64 0 60.4 0 56V40C0 35.6 3.6 32 8 32H96V-8C96 -21.3 106.7 -32 120 -32H168C181.3 -32 192 -21.3 192 -8V32H504C508.4 32 512 35.6 512 40V56C512 60.4 508.4 64 504 64zM160 0H128V96H160V0zM504 352H256V392C256 405.3 245.3 416 232 416H184C170.7 416 160 405.3 160 392V352H8C3.6 352 0 348.4 0 344V328C0 323.6 3.6 320 8 320H160V280C160 266.7 170.7 256 184 256H232C245.3 256 256 266.7 256 280V320H504C508.4 320 512 323.6 512 328V344C512 348.4 508.4 352 504 352zM224 288H192V384H224V288zM504 208H416V248C416 261.3 405.3 272 392 272H344C330.7 272 320 261.3 320 248V208H8C3.6 208 0 204.4 0 200V184C0 179.6 3.6 176 8 176H320V136C320 122.7 330.7 112 344 112H392C405.3 112 416 122.7 416 136V176H504C508.4 176 512 179.6 512 184V200C512 204.4 508.4 208 504 208zM384 144H352V240H384V144z" />
+    <glyph glyph-name="sliders-v-square"
+      unicode="&#xF3F2;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM200 288H160V320C160 326.6 154.6 332 148 332H140C133.4 332 128 326.6 128 320V288H88C74.8 288 64 277.2 64 264V216C64 202.8 74.8 192 88 192H128V76C128 69.4 133.4 64 140 64H148C154.6 64 160 69.4 160 76V192H200C213.2 192 224 202.8 224 216V264C224 277.2 213.2 288 200 288zM192 224H96V256H192V224zM360 192H320V320C320 326.6 314.6 332 308 332H300C293.4 332 288 326.6 288 320V192H248C234.8 192 224 181.2 224 168V120C224 106.8 234.8 96 248 96H288V76C288 69.4 293.4 64 300 64H308C314.6 64 320 69.4 320 76V96H360C373.2 96 384 106.8 384 120V168C384 181.2 373.2 192 360 192zM352 128H256V160H352V128z" />
+    <glyph glyph-name="sliders-v"
+      unicode="&#xF3F1;"
+      horiz-adv-x="448" d=" M160 280V328C160 341.3 149.3 352 136 352H96V440C96 444.4 92.4 448 88 448H72C67.6 448 64 444.4 64 440V352H24C10.7 352 0 341.3 0 328V280C0 266.7 10.7 256 24 256H64V-56C64 -60.4 67.6 -64 72 -64H88C92.4 -64 96 -60.4 96 -56V256H136C149.3 256 160 266.7 160 280zM128 288H32V320H128V288zM280 128H240V440C240 444.4 236.4 448 232 448H216C211.6 448 208 444.4 208 440V128H168C154.7 128 144 117.3 144 104V56C144 42.7 154.7 32 168 32H208V-56C208 -60.4 211.6 -64 216 -64H232C236.4 -64 240 -60.4 240 -56V32H280C293.3 32 304 42.7 304 56V104C304 117.3 293.3 128 280 128zM272 64H176V96H272V64zM424 288H384V440C384 444.4 380.4 448 376 448H360C355.6 448 352 444.4 352 440V288H312C298.7 288 288 277.3 288 264V216C288 202.7 298.7 192 312 192H352V-56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V192H424C437.3 192 448 202.7 448 216V264C448 277.3 437.3 288 424 288zM416 224H320V256H416V224z" />
+    <glyph glyph-name="smile-beam"
+      unicode="&#xF5B8;"
+      horiz-adv-x="496" d=" M168 242.6C180.3 242.6 191.8 234.7 199.5 221L209 204C211.1 200.3 215.2 199.3 218.3 200.3C221.9 201.4 224.3 204.8 224 208.6C220.7 250.7 191.8 280 168 280S115.3 250.7 112 208.6C111.7 204.9 114.1 201.4 117.7 200.3C121.1 199.2 125.1 200.8 127 204L136.5 221C144.2 234.8 155.7 242.6 168 242.6zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM328 280C304.2 280 275.3 250.7 272 208.6C271.7 204.9 274.1 201.4 277.7 200.3C281.1 199.2 285.1 200.8 287 204L296.5 221C304.2 234.7 315.7 242.6 328 242.6S351.8 234.7 359.5 221L369 204C371.1 200.3 375.2 199.3 378.3 200.3C381.9000000000001 201.4 384.3 204.8 384 208.6C380.7 250.7 351.8 280 328 280zM338.2 122.2C315.8 95.4 282.9 80 248 80S180.2 95.4 157.8 122.2C152.1 129 142 129.9 135.3 124.2C128.5 118.5 127.6 108.5 133.3 101.7C161.7 67.6 203.6 48 248 48S334.3 67.6 362.8 101.8C368.5 108.6 367.6 118.7 360.8 124.3C353.9000000000001 129.9 343.9000000000001 129 338.2 122.2z" />
+    <glyph glyph-name="smile-plus"
+      unicode="&#xF5B9;"
+      horiz-adv-x="640" d=" M208 352C93.1 352 0 258.9 0 144S93.1 -64 208 -64S416 29.1 416 144S322.9 352 208 352zM208 -32C111 -32 32 47 32 144S111 320 208 320S384 241 384 144S305 -32 208 -32zM283.8 98.7C265 76.6 237.4 64 208 64S151 76.6 132.2 98.6C126.5 105.3 116.3 106.1 109.7 100.4C102.9 94.6 102.2 84.6 107.9 77.8C132.7 48.7 169.2 32 208 32S283.3 48.7 308.2 77.9C314 84.6 313.1 94.7 306.4 100.5C299.8 106.1 289.6 105.4 283.8 98.7zM144 168C157.3 168 168 178.7 168 192S157.3 216 144 216S120 205.3 120 192S130.7 168 144 168zM272 168C285.3 168 296 178.7 296 192S285.3 216 272 216S248 205.3 248 192S258.7 168 272 168zM632 352H544V440C544 444.4 540.4 448 536 448H520C515.6 448 512 444.4 512 440V352H424C419.6 352 416 348.4 416 344V328C416 323.6 419.6 320 424 320H512V232C512 227.6 515.6 224 520 224H536C540.4 224 544 227.6 544 232V320H632C636.4 320 640 323.6 640 328V344C640 348.4 636.4 352 632 352z" />
+    <glyph glyph-name="smile-wink"
+      unicode="&#xF4DA;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM400.7 39.3C380.9 19.5 357.7 3.9 332 -7C305.4 -18.3 277.1 -24 247.9 -24S190.4 -18.3 163.8 -7C138.1 3.9 115 19.5 95.1 39.3C75.3 59.1 59.7 82.3 48.8 108C37.5 134.6 31.8 162.9 31.8 192.1S37.5 249.6 48.8 276.2C59.7 301.9 75.3 325 95.1 344.9C114.9 364.7 138.1 380.3 163.8 391.2C190.4 402.5 218.7 408.2 247.9 408.2S305.4 402.5 332 391.2C357.7 380.3 380.8 364.7 400.7 344.9C420.5 325.1 436.1 301.9 447 276.2C458.3 249.6 464 221.3 464 192.1S458.3 134.6 447 108C436.2 82.2 420.6 59.1 400.7 39.3zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 268C302.3 268 272.1 251.1 268.1 225.9C266.4000000000001 214.7 279.6 207.7 287.9000000000001 215.1L297.4000000000001 223.6C312.2000000000001 236.8 343.6 236.8 358.4000000000001 223.6L367.9000000000001 215.1C376.4000000000001 207.7 389.5000000000001 214.8 387.7000000000001 225.9C383.9000000000001 251.1 353.7000000000001 268 328.0000000000001 268zM338.2 122.2C315.8 95.4 282.9 80 248 80S180.2 95.4 157.8 122.2C144.3 138.4 119.6 118 133.2 101.7C161.7 67.6 203.5 48 248 48S334.3 67.6 362.8 101.8C376.3 118 351.7 138.5 338.2 122.2z" />
+    <glyph glyph-name="smile"
+      unicode="&#xF118;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM338.2 122.2C315.8 95.4 282.9 80 248 80S180.2 95.4 157.8 122.2C152.1 129 142 129.9 135.3 124.2C128.5 118.5 127.6 108.5 133.3 101.7C161.7 67.6 203.6 48 248 48S334.3 67.6 362.8 101.8C368.5 108.6 367.6 118.7 360.8 124.3C354 129.9 343.9000000000001 129 338.2 122.2zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208z" />
+    <glyph glyph-name="smog"
+      unicode="&#xF75F;"
+      horiz-adv-x="640" d=" M179.2 160H284.4C308.7 139.3 339 128 371.2 128C403.4 128 433.7 139.3 458 160H486.4C553.5 160 608 213.4 608 279.1S553.4 398.2 486.4 398.2C477.2 398.2 468 397.1 459 395C431.4 428.2 389.9 448 345.6 448C315.4000000000001 448 286.7000000000001 439.1 262.4000000000001 422.6C238.1 439.1 209.4 448 179.2 448C98 448 32 383.4 32 304S98 160 179.2 160zM179.2 416C212 416 241.4 402.5 262.4 381.1C283.4 402.5 312.8 416 345.6 416C389.5 416 427.2 391.9 446.6 356.8C458.6 362.6 471.9999999999999 366.2 486.4 366.2C535.9 366.2 576 327.2 576 279.1S535.9 192 486.4 192H445.3C426.6 172.4 400.4 160 371.2 160S315.8 172.4 297.0999999999999 192H179.2C115.6 192 64 242.1 64 304S115.6 416 179.2 416zM632 64H72C67.6 64 64 60.4 64 56V40C64 35.6 67.6 32 72 32H632C636.4 32 640 35.6 640 40V56C640 60.4 636.4 64 632 64zM568 -32H232C227.6 -32 224 -35.6 224 -40V-56C224 -60.4 227.6 -64 232 -64H568C572.4 -64 576 -60.4 576 -56V-40C576 -35.6 572.4 -32 568 -32zM152 -32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H152C156.4 -64 160 -60.4 160 -56V-40C160 -35.6 156.4 -32 152 -32z" />
+    <glyph glyph-name="smoke"
+      unicode="&#xF760;"
+      horiz-adv-x="640" d=" M640 208C640 287.4 575.4 352 496 352C475.5 352 455.7 347.3 437.4 339C412.2 384.7 363.8 416 308 416C287.5 416 267.4 411.5 248.1 402.8C220.8 431.7 183.6 448 144 448C64.6 448 0 383.4 0 304C0 263.2 17.3 226.7 44.7 200.6C17.1 172.5 0 134.1 0 91.7C0 5.8 69.8 -64 155.7 -64H517.2C584.9000000000001 -64 640 -8.9 640 58.8C640 85.7 631 110.5 616.3 130.7000000000001C630.9 153.1 640 179.3000000000001 640 208.0000000000001zM608 208C608 188.4 602.6 170.1 593.6 154.2C572.6 171.1 546.2 181.7 517.1 181.7C494 181.7 472 175.2 452.4 162.9C426.1 195.5 386.9000000000001 214.6 344.5 214.6C319 214.6 294.4 207.5 272.5 194.1C264.3 203.4 255.1 211.6 245.1 218.7C258 258.9 295.4 288.2 339.8 288.2C356.8 288.2 373.3 283.7 389 274.7L400.8 268L409.4000000000001 278.5C431.0000000000001 305 462.5000000000001 320.2 495.9 320.2C557.8 320 608 269.8 608 208zM32 304C32 365.8 82.2 416 144 416C178.1 416 210 400.3 231.6 372.9L240 362.2L251.9 368.8C269.9 378.8 288.8 383.9 308 383.9C352.3 383.9 390.5 358.8 409.9 322.1C404.2 317.7 398.5 313.4 393.4 308.1C376.3 315.9 358.4 319.9 340 319.9C283.6 319.9 236 284.1 217.2 234.3C198 242.7 177.1 247.3 155.7 247.3C123.7 247.3 94 237.6 69.3 221C46.5 241.5 32 271 32 304zM517.2 -32H155.7C87.5 -32 32 23.5 32 91.7S87.5 215.4 155.7 215.4C195.5 215.4 233.2 195.8 256.4 163.1L266.1 149.5L279.3 159.6999999999999C298.6 174.6999999999999 321.2 182.5999999999999 344.7 182.5999999999999C381.5999999999999 182.5999999999999 415.5 163.6999999999999 435.3999999999999 131.9999999999999L445.2 116.3999999999999L459.3 128.1999999999999C476.1 142.2999999999999 496.1999999999999 149.7999999999999 517.3 149.7999999999999C567.4 149.7999999999999 608.0999999999999 109.0999999999999 608.0999999999999 58.9999999999999S567.1999999999999 -32.0000000000001 517.1999999999999 -32.0000000000001z" />
+    <glyph glyph-name="smoking-ban"
+      unicode="&#xF54D;"
+      horiz-adv-x="512" d=" M256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM256 -32C132.5 -32 32 68.5 32 192C32 248 52.8 299.2 86.9 338.5L402.5 22.9C363.2 -11.2 312 -32 256 -32zM278.6 192H384V160H310.6L278.6 192zM425.1 45.5L342.6 128H400C408.8 128 416 135.2 416 144V208C416 216.8 408.8 224 400 224H246.6L109.5 361.1C148.8 395.2 200 416 256 416C379.5 416 480 315.5 480 192C480 136 459.2 84.8 425.1 45.5zM112 128H252.1L220.1 160H128V192H188.1L156.1 224H112C103.2 224 96 216.8 96 208V144C96 135.2 103.2 128 112 128zM352 320C336.4 320 323.4 331.2 320.6 345.9C319.9000000000001 349.5 316.6 352 312.9000000000001 352H296.7000000000001C291.7000000000001 352 288.0000000000001 347.5 288.7000000000001 342.6C293.3000000000001 311.7 319.9000000000001 288 352.0000000000001 288C367.6000000000001 288 380.6000000000001 276.8 383.4000000000001 262.1C384.1 258.5 387.4000000000001 256 391.1 256H407.3C412.3 256 416 260.5 415.3 265.4C410.8 296.3 384.1 320 352 320z" />
+    <glyph glyph-name="smoking"
+      unicode="&#xF48D;"
+      horiz-adv-x="640" d=" M632 96H616C611.6 96 608 92.4 608 88V-56C608 -60.4 611.6 -64 616 -64H632C636.4 -64 640 -60.4 640 -56V88C640 92.4 636.4 96 632 96zM568 96H552C547.6 96 544 92.4 544 88V-56C544 -60.4 547.6 -64 552 -64H568C572.4 -64 576 -60.4 576 -56V88C576 92.4 572.4 96 568 96zM488 96H48C21.5 96 0 74.5 0 48V-16C0 -42.5 21.5 -64 48 -64H488C501.2 -64 512 -53.2 512 -40V72C512 85.2 501.2 96 488 96zM192 -32H48C39.2 -32 32 -24.8 32 -16V48C32 56.8 39.2 64 48 64H192V-32zM480 -32H224V64H480V-32zM556.4 354.5C548.9 359.5 544 367.7 544 376.7V440C544 444.4 540.4 448 536 448H520C515.6 448 512 444.4 512 440V377.7C512 357.5 522.3 338.9 539 327.7C582.2 298.7 608 250.4 608 198.3V168C608 163.6 611.6 160 616 160H632C636.4 160 640 163.6 640 168V198.3C640 261.2000000000001 608.8 319.6 556.4 354.5zM519.6999999999999 302.1C494.1 318.7 480 348.5 480 379V440C480 444.4 476.4 448 472 448H456C451.6 448 448 444.4 448 440V373C448 332.7 470.2 297 503.6 274.4C528.9 257.3 544 228.9 544 198.3V168C544 163.6 547.6 160 552 160H568C572.4 160 576 163.6 576 168V198.3C576 240.3 554.9 279.2000000000001 519.7 302.1z" />
+    <glyph glyph-name="sms"
+      unicode="&#xF7CD;"
+      horiz-adv-x="512" d=" M304 272H288C281.9 272 276.4 268.6 273.7 263.2L256 227.8L238.3 263.2000000000001C235.6 268.6 230.1 272 224 272H208C199.2 272 192 264.8000000000001 192 256V152C192 147.6 195.6 144 200 144H216C220.4 144 224 147.6 224 152V220.2L248.8 164.4C251.7 158.5 260.2 158.5 263.1 164.4L287.9000000000001 220.2V152C287.9000000000001 147.6 291.5000000000001 144 295.9000000000001 144H311.9000000000001C316.3 144 319.9000000000001 147.6 319.9000000000001 152V256C320.0000000000001 264.8 312.8 272 304.0000000000001 272zM135.4 229.5C134 230.7 133.3 232 133.3 233.3C133.3 236.4 137.8 239.9 143.7 239.9H156C160.4 239.9 164 243.5 164 247.9V263.9C164 268.3 160.4 271.9 156 271.9H143.8C120.4 271.9 101.4 254.6 101.4 233.3C101.4 222.6 106.3 212.4 114.7 205.2L136.6 186.4C138 185.2000000000001 138.7 183.9 138.7 182.6C138.7 179.5 134.2 176 128.3 176H116C111.6 176 108 172.4 108 168V152C108 147.6 111.6 144 116 144H128.3C151.7 144 170.7 161.3 170.7 182.6C170.7 193.3 165.8 203.5 157.4 210.7L135.4 229.5000000000001zM375.4 229.5C374 230.7 373.3 232 373.3 233.3C373.3 236.4 377.8 239.9 383.7 239.9H396C400.4 239.9 404 243.5 404 247.9V263.9C404 268.3 400.4 271.9 396 271.9H383.7C360.3 271.9 341.3 254.6 341.3 233.3C341.3 222.6 346.2 212.4 354.6 205.2L376.5 186.4C377.9 185.2000000000001 378.6 183.9 378.6 182.6C378.6 179.5 374.1 176 368.2000000000001 176H356C351.6 176 348 172.4 348 168V152C348 147.6 351.6 144 356 144H368.3C391.7 144 410.7 161.3 410.7 182.6C410.7 193.3 405.8 203.5 397.4 210.7L375.4 229.5000000000001zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5C5.7 -26.3 14.3 -32 23.9 -32C85.4 -32 133.9 -6.3 163 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 32C227.7 32 199.7 36.3 172.8 44.8L157.6 49.6L144.6 40.4C121.6 24.1 86.1 5.1 42 0.8C54 15.9 71.8 41.2 82.8 70.4L89.9 89.1L76.2 103.7C47.4 134.3 32.1 170.4 32.1 208C32.1 305 132.6 384 256.1 384S480.1 305 480.1 208S379.5 32 256 32z" />
+    <glyph glyph-name="snake"
+      unicode="&#xF716;"
+      horiz-adv-x="640" d=" M528 200C519.16 200 512 192.84 512 184S519.16 168 528 168S544 175.16 544 184S536.84 200 528 200zM528 216C536.84 216 544 223.16 544 232S536.84 248 528 248S512 240.84 512 232S519.16 216 528 216zM618.96 269.03L571.09 286.55C524.4100000000001 303.68 523.52 304.01 513.19 304.01C484.8800000000001 304.01 460.0000000000001 285.74 451.52 259.5900000000001L450.2200000000001 255.1700000000001C394.94 248.35 352 201.09 352 144V72C352 49.94 334.06 32 312 32S272 49.94 272 72V312C272 386.99 210.99 448 136 448S0 386.99 0 312V88.47C0 44.87 5.42 3.99 17.06 -40.16C20.76 -54.21 33.47 -64 48 -64S75.24 -54.21 78.94 -40.16C90.58 3.99 96 44.86 96 88.47V312C96 334.06 113.94 352 136 352S176 334.06 176 312V72C176 -2.99 237.01 -64 312 -64S448 -2.99 448 72V144C448 148.12 449.57 151.89 452.14 154.73C461.57 129.1400000000001 485.73 112 512.02 112H512.11C523.53 112 524.54 112.37 571.1800000000001 129.48L618.96 146.97C631.59 151.5800000000001 640 163.59 640 177.03V238.9600000000001C640 252.4100000000001 631.59 264.4200000000001 618.96 269.0300000000001zM608 177.03C519.97 144.92 519.23 143.99 513.19 143.99H512.0100000000001C498.5700000000001 143.99 486.2200000000001 153.16 481.9600000000001 166.28L474.3800000000001 191.99V192H464C437.53 192 416 170.47 416 144V72C416 14.66 369.3400000000001 -32 312 -32S208 14.66 208 72V312C208 351.7 175.69 384 136 384S64 351.7 64 312V88.47C64 46.45 58.63 8.33 48 -32C37.37 8.33 32 46.46 32 88.47V312C32 369.3400000000001 78.66 416 136 416S240 369.3400000000001 240 312V72C240 32.3 272.31 0 312 0S384 32.3 384 72V144C384 188.11 419.88 224 464 224H474.39L481.97 249.71C486.23 262.8300000000001 498.58 272 512.02 272H513.1999999999999C519.2299999999999 272 519.9799999999999 271.07 608.01 238.96V177.03z" />
+    <glyph glyph-name="snow-blowing"
+      unicode="&#xF761;"
+      horiz-adv-x="640" d=" M351 332.2L343.4 345.4C341.3 349 336.7 350.3 333 348.2L292.4 324.7L300.4 354.6C301.5 358.7 299.1 362.8 295 363.9L280.3 367.8C276.2 368.9 272.1 366.5 271 362.4L255.1 303.1L192 266.8V345.4L237.7 391C240.8 394.1 240.8 399.2 237.7 402.3L226.4 413.6C223.3 416.7 218.2 416.7 215.1 413.6L192.1 390.6V440C192.1 444.4 188.5 448 184.1 448H168.1C163.7 448 160.1 444.4 160.1 440V390.6L137.1 413.6C134 416.7 128.9 416.7 125.8 413.6L114.5 402.3C111.4 399.2 111.4 394.1 114.5 391L160.2 345.3V266.7L97.1 303.1L81 362.5C79.9 366.6 75.7 369 71.7 367.9L57 363.9C52.9 362.8 50.5 358.6 51.6 354.6L59.6 324.7000000000001L19 348.2C15.4 350.3 10.7 349.1 8.6 345.4L1 332.2C-1.1 328.6 0.1 323.9 3.8 321.8L44.4 298.3L14.5 290.3C10.4 289.2000000000001 8 285 9.1 281L13 266.3C14.1 262.2000000000001 18.3 259.8 22.3 260.9L81.6 276.8L145.5 239.9L81.6 203L22.4 219C18.3 220.1 14.2 217.7 13.1 213.6L9.2 198.9C8.1 194.8 10.5 190.7 14.6 189.6L44.5 181.6L3.8 158.1C0.2 156 -1.1 151.4 1 147.7L8.6 134.5C10.7 130.9 15.3 129.6 19 131.7L59.6 155.2L51.6 125.3C50.5 121.2 52.9 117.1 57 116L71.7 112.1C75.8 111 79.9 113.4 81 117.5L96.9 176.8L160 213.2V134.6L114.3 89C111.2 85.9 111.2 80.8 114.3 77.7L125.6 66.4C128.7 63.3 133.8 63.3 136.9 66.4L159.9 89.4V40C159.9 35.6 163.5 32 167.9 32H183.9C188.3 32 191.9 35.6 191.9 40V89.4L214.9 66.4C218 63.3 223.1 63.3 226.2 66.4L237.5000000000001 77.7C240.6 80.8 240.6 85.9 237.5000000000001 89L192 134.6V213.2L255.1 176.8L271 117.5C272.1 113.4 276.3 111 280.3 112.1L295 116C299.1 117.1 301.5 121.3 300.4 125.3L292.4 155.2L333 131.7C336.6 129.6 341.3 130.8 343.4 134.5L351 147.7C353.1 151.3 351.9 156 348.2 158.1L307.6 181.6L337.5 189.6C341.6 190.7 344 194.9 342.8999999999999 198.9L339 213.6C337.8999999999999 217.7 333.7 220.1 329.7 219L270.3999999999999 203.1L206.3999999999999 240L270.2999999999999 276.9L329.5999999999999 261C333.7 259.9 337.7999999999999 262.3 338.8999999999999 266.4L342.7999999999999 281.1C343.8999999999999 285.2 341.4999999999999 289.3 337.3999999999999 290.4L307.5 298.4L348.1 321.9C351.8 324 353.1 328.6 351 332.2zM392 160H544C603.8 160 650.8 214.6 637.8 276.7C630.1999999999999 313 600.9 342.3 564.5999999999999 349.9C505.4999999999999 362.2 453.0999999999999 320.1 448.2999999999999 264.5C447.8999999999999 259.9 451.7999999999999 256.1 456.2999999999999 256.1H472.4999999999999C476.6999999999999 256.1 479.8999999999999 259.4 480.3999999999999 263.5C484.5999999999999 300.1 519.8999999999999 327.3 559.0999999999999 318.3C582.1999999999999 313 600.8999999999999 294.2000000000001 606.3 271.1C615.9 229.3 584.1999999999999 192 544 192H392C387.6 192 384 188.4 384 184V168C384 163.6 387.6 160 392 160zM539.7 128H376C371.6 128 368 124.4 368 120V104C368 99.6 371.6 96 376 96H540.8C574.1999999999999 96 604.0999999999999 71.6 607.3 38.4C611 0.3 581 -32 543.6 -32C510.8 -32 483.7 -7.2 480 24.5C479.5 28.7 476.3 31.9 472.1 31.9H456C451.4 31.9 447.6 28 448 23.5C452.3 -25.6 493.5 -64.1 543.6 -64.1C597.6 -64.1 641.2 -19.5 639.6 34.8C638.1 87.4999999999999 592.2 128 539.7 128z" />
+    <glyph glyph-name="snowboarding"
+      unicode="&#xF7CE;"
+      horiz-adv-x="512" d=" M492.8 270.4L425.4 321C456.2 325.6 480 352 480 384C480 419.3 451.3 448 416 448S352 419.3 352 384C352 377.4 353.3 371.1 355.2 365C353.4 365.7 351.7 366.6 349.9 367.2L302.3 382.6L283 421.5C274.8 437.8 258.3 448 240 448C232.7 448 225.3 446.3 218.7 443C194.9 431.1 185.3 402.2 197.1 378.6L222.5 327.8C225.1 322.6 228.3 317.9 232.1 313.7L220.3 307.8C193 294.2 176 266.7 176 236.2V194.6L112.8 173.5C87.7 165.2 74.1 138 82.4 112.8C86.7 99.9 96.3 90.3 108.1 84.8L56.8 103.5C45.1 107.8 35.8 116.3 30.5 127.6C26.7 135.6 17.2 139 9.2 135.3S-2.3 122 1.5 114C10.4 95 26.1 80.6 45.8 73.4L410.6 -59.4C419.4000000000001 -62.6 428.5 -64.2 437.5 -64.2C448.8 -64.2 460.1 -61.7 470.7 -56.8000000000001C478.7 -53.1000000000001 482.2 -43.6000000000001 478.5 -35.6000000000001S465.2 -24.2000000000001 457.2 -27.9000000000001C445.9 -33.1000000000001 433.3 -33.7000000000001 421.5 -29.4000000000001L336.9 1.3999999999999C355.3 5.0999999999999 370.7 18.7999999999999 374.8 37.6999999999999L396.7 139.6999999999999C401.8999999999999 164.0999999999999 392.3 189.5 372.2 204.5999999999999L341.1 227L371.8 241.2L435.2 193.6C443.6 187.3 453.5 184 464 184C479 184 493.4 191.2 502.4 203.2C518.3 224.4 514 254.6 492.8 270.4zM416 416C433.7 416 448 401.6 448 384S433.7 352 416 352S384 366.4 384 384S398.4 416 416 416zM291.3 18.3L116.6 81.9C119.2 81.3 129.1 77.9 143.2 82.6L228.3 110.9C250.5 118.3 266.5 136.9 270.9000000000001 159.2000000000001L298.6 139.5000000000001L281.2000000000001 58.1C276.0000000000001 34.4 288.7000000000001 21.5 291.3000000000001 18.3zM476.8 222.4C471.5 215.3 461.5 213.9 454.4 219.2L375.7000000000001 278.2000000000001L277.6 233L353.2000000000001 179.2C363.5000000000001 171.5 368.2000000000001 158.8 365.6 146.7L343.8 44.7C341.8 35.4 332.7 30.7 324.8 32.4C316.1 34.2 310.6 42.7 312.5 51.4L334.3 153.4L240.1 220.4V171.6C240.1 157.8 231.3 145.6 218.2 141.2C126.2 110.5 131.7 112 128.1 112C121.4 112 115.2 116.2 112.9 122.9C110.1 131.3 114.7 140.4 123 143.1L208.1 171.5V236.2C208.1 254.5 218.3 270.8999999999999 234.6 279.0999999999999L305.6 314.5999999999999L268.5 327C260.9 329.5 254.7 334.9 251.2 342.0999999999999L225.8 392.8999999999999C221.9 400.8 225 410.3999999999999 233 414.3999999999999C242.4 419.0999999999999 251.3 413.5999999999999 254.5 407.2L279.9 356.3999999999999L340 337C353.1 332.7 365.3 326.3 376.3 318L473.8 244.9C480.7 239.5 482.1 229.5 476.8 222.4z" />
+    <glyph glyph-name="snowflake"
+      unicode="&#xF2DC;"
+      horiz-adv-x="448" d=" M388.1 114.5L440.8 128.8C445 129.9 447.5 134.3 446.4000000000001 138.6L442.3 154.1C441.2 158.4 436.8 160.9 432.6 159.8L349.4000000000001 137.2L255.6 192L349.4000000000001 246.8L432.6 224.2C436.8 223.1 441.2000000000001 225.6 442.3 229.9L446.4000000000001 245.4C447.5000000000001 249.7 445.0000000000001 254.1 440.8 255.2L388.1 269.5L444 302.2000000000001C447.8 304.4000000000001 449.1 309.3000000000001 446.9 313.1L439 327C436.8 330.8 432 332.1 428.2 329.9L372.3 297.2L386.4000000000001 350.5C387.5000000000001 354.8 385.0000000000001 359.2 380.8 360.3L365.5 364.4C361.3 365.5 356.9 363 355.8 358.7L333.5 274.5L239.7 219.7V329.4L300.7 391C303.8 394.1 303.8 399.2 300.7 402.3L289.5 413.6C286.4 416.7 281.4 416.7 278.3 413.6L239.7 374.6V440C239.7 444.4 236.2 448 231.8 448H216C211.6 448 208.1 444.4 208.1 440V374.6L169.5 413.6C166.4 416.7 161.4 416.7 158.3 413.6L147.1 402.3C144 399.2 144 394.1 147.1 391L208 329.3V219.6L114.2 274.4L92.1 358.8C91 363.1 86.6 365.6 82.4 364.5L67.1 360.4C62.9 359.3 60.4 354.9 61.5 350.6L75.6 297.3L19.7 330C15.9 332.2 11.1 330.9 8.9 327.1L1 313.2C-1.2 309.4 0.1 304.5 3.9 302.3L59.8 269.6L7.2 255.2C3 254.1 0.5 249.7 1.6 245.4L5.7 229.9C6.8 225.6 11.2 223.0999999999999 15.4 224.2L98.6 246.8L192.4 192L98.6 137.1999999999999L15.4 159.8C11.2 160.9 6.8 158.4 5.7 154.1L1.6 138.6C0.5 134.3 3 129.9 7.2 128.8L59.9 114.5L4 81.9C0.2 79.7 -1.1 74.8 1.1 71L9 57.1C11.2 53.3 16 52 19.8 54.2L75.7 86.9L61.6 33.6C60.5 29.3 63 24.9 67.2 23.8L82.5 19.7C86.7 18.6 91.1 21.1 92.2 25.4L114.5 109.6L208.3 164.4V54.7L147.3 -7C144.2 -10.1 144.2 -15.2 147.3 -18.3L158.5 -29.6C161.6 -32.7 166.6 -32.7 169.7 -29.6L208.3 9.4V-56C208.3 -60.4 211.8 -64 216.2 -64H232C236.4 -64 239.9 -60.4 239.9 -56V9.4L278.5 -29.6C281.6 -32.7 286.6 -32.7 289.7 -29.6L300.9 -18.3C304 -15.2 304 -10.1 300.9 -7L240 54.7V164.3L333.8 109.5L356.1 25.3C357.2000000000001 21 361.6 18.5 365.8 19.6L381.1 23.7C385.3 24.8000000000001 387.8 29.2 386.7000000000001 33.5000000000001L372.6 86.8000000000001L428.5 54.1000000000001C432.3 51.9000000000001 437.1 53.2000000000001 439.3 57.0000000000001L447.2 70.9C449.4 74.7000000000001 448.1 79.6 444.3 81.8L388.1 114.5z" />
+    <glyph glyph-name="snowflakes"
+      unicode="&#xF7CF;"
+      horiz-adv-x="640" d=" M527.9 328C527.9 323.6 531.5 320 535.9 320H551.9C556.3 320 559.9 323.6 559.9 328V356.4L587.9 340.3C591.6999999999999 338.1 596.6 339.4 598.8 343.2000000000001L606.8 357.1C609 360.9000000000001 607.6999999999999 365.8 603.9 368L576 384L603.9 400C607.6999999999999 402.2 609 407.1 606.8 410.9L598.8 424.8C596.5999999999999 428.6 591.6999999999999 429.9 587.9 427.7L559.9 411.6V440C559.9 444.4 556.3 448 551.9 448H535.9C531.5 448 527.9 444.4 527.9 440V411.6L499.9 427.7C496.1 429.9 491.2 428.6 489 424.8L481 410.9C478.8 407.1 480.1 402.2 483.9 400L511.8 384L483.9 368C480.1 365.8 478.8 360.9 481 357.1L489 343.2C491.2 339.4 496.1 338.1 499.9 340.3L527.9 356.4V328zM608.1 192L636 208C639.8 210.2 641.1 215.1 638.9 218.9L630.9 232.8C628.6999999999999 236.6 623.8 237.9 620 235.7L592 219.6V248C592 252.4 588.4 256 584 256H568C563.6 256 560 252.4 560 248V219.6L532 235.7C528.2 237.9 523.3 236.6 521.1 232.8L513.1 218.9C510.9 215.1 512.2 210.2 516 208L543.9 192L516 176C512.2 173.8 510.9 168.9 513.1 165.1L521.1 151.2000000000001C523.3000000000001 147.4 528.2 146.1 532 148.3000000000001L560 164.4000000000001V136C560 131.6 563.6 128 568 128H584C588.4 128 592 131.6 592 136V164.4L620 148.3C623.8 146.1 628.7 147.4 630.9 151.1999999999999L638.9 165.0999999999999C641.1 168.8999999999999 639.8 173.7999999999999 636 175.9999999999999L608.1 191.9999999999999zM387.9000000000001 114.5L440.6 128.8C444.8 129.9 447.3 134.3 446.2000000000001 138.6L442.1 154.1C441 158.4 436.6 160.9 432.4000000000001 159.8L349.3000000000001 137.2L255.5000000000001 192L349.2000000000001 246.8L432.3000000000001 224.2C436.5000000000001 223.1 440.9000000000001 225.6 442.0000000000001 229.9L446.1000000000001 245.4C447.2000000000001 249.7 444.7000000000001 254.1 440.5000000000001 255.2L387.8000000000001 269.5L443.7000000000001 302.2000000000001C447.5000000000001 304.4000000000001 448.8000000000001 309.3000000000001 446.6 313.1L438.7000000000001 327.0000000000001C436.5000000000001 330.8000000000001 431.7000000000001 332.1 427.9000000000001 329.9000000000001L372 297.2L386.1 350.5C387.2000000000001 354.8 384.7000000000001 359.2 380.5 360.3L365.2 364.4C361 365.5 356.6 363 355.5 358.7L333.2 274.5L239.5 219.7V329.4L300.5 391C303.6 394.1 303.6 399.2 300.5 402.3L289.3 413.6C286.2 416.7 281.2 416.7 278.1 413.6L239.5000000000001 374.6V440C239.5000000000001 444.4 236.0000000000001 448 231.6 448H215.8C211.4 448 207.9 444.4 207.9 440V374.6L169.3 413.6C166.2 416.7 161.2 416.7 158.1 413.6L146.9 402.3C143.8000000000001 399.2 143.8000000000001 394.1 146.9 391L207.8000000000001 329.3V219.6L114.1 274.4L92.1 358.8C91 363.1 86.6 365.6 82.4 364.5L67.1 360.4C62.9 359.3 60.4 354.9 61.5 350.6L75.6 297.3L19.8 330C16 332.2 11.2 330.9 9 327.1L1.1 313.2C-1.1 309.4 0.2 304.5 4 302.3L59.9 269.6L7.3 255.2C3.1 254.1 0.6 249.7 1.7 245.4L5.8 229.9C6.9 225.6 11.3 223.0999999999999 15.5 224.2L98.6 246.8L192.3 192L98.6 137.1999999999999L15.5 159.8C11.3 160.9 6.9 158.4 5.8 154.1L1.7 138.6C0.6 134.3 3.1 129.9 7.3 128.8L60 114.5L4.1 81.9C0.3 79.7 -1 74.8 1.2 71L9.1 57.1C11.3 53.3 16.1 52 19.9 54.2L75.8 86.9L61.7 33.6C60.6 29.3 63.1 24.9 67.3 23.8L82.6 19.7C86.8 18.6 91.2 21.1 92.3 25.4L114.6 109.6L208.3 164.4V54.7L147.3 -7C144.2 -10.1 144.2 -15.2 147.3 -18.3L158.5 -29.6C161.6 -32.7 166.6 -32.7 169.7 -29.6L208.3 9.4V-56C208.3 -60.4 211.8 -64 216.2 -64H232C236.4 -64 239.9 -60.4 239.9 -56V9.4L278.5 -29.6C281.6 -32.7 286.6 -32.7 289.7 -29.6L300.9 -18.3C304 -15.2 304 -10.1 300.9 -7L240 54.7V164.3L333.7 109.5L356 25.3C357.1 21 361.5 18.5 365.7 19.6L381 23.7C385.2 24.8000000000001 387.7 29.2 386.6 33.5000000000001L372.5 86.8000000000001L428.4 54.1000000000001C432.2 51.9000000000001 437 53.2000000000001 439.2 57.0000000000001L447.1 70.9C449.3 74.7000000000001 448 79.6 444.2 81.8L387.9 114.5z" />
+    <glyph glyph-name="snowman"
+      unicode="&#xF7D0;"
+      horiz-adv-x="512" d=" M256 112C247.2 112 240 104.8 240 96S247.2 80 256 80S272 87.2 272 96S264.8 112 256 112zM224 376C215.2 376 208 368.8 208 360S215.2 344 224 344S240 351.2 240 360S232.8 376 224 376zM511.3 300.5L505 315.2C503.3 319.3 498.6 321.1 494.5 319.4L448 299.4V344C448 348.4 444.4 352 440 352H424C419.6 352 416 348.4 416 344V285.7L362.6 262.8C358 271.4 352.8 279.7 346.2000000000001 287C356.6 303.7 362.0000000000001 322.4 362.0000000000001 342C362 400.5 314.4 448 256 448S150 400.5 150 342C150 322.5 155.4 303.7 165.8 287C159.2 279.6 154 271.4 149.4 262.8L96 285.7V344C96 348.4 92.4 352 88 352H72C67.6 352 64 348.4 64 344V299.4L17.5 319.3C13.4 321 8.7 319.2000000000001 7 315.1L0.7 300.4C-1 296.3 0.8 291.6 4.9 289.9L138.2 232.8C136.3 224.4 135 215.8 135 207C135 199.8 135.8000000000001 192.5 137.4 184.6C111.6 155.6 97.5 118.6 97.5 79.5C97.5 25.3 125.1 -24.5 171.3 -53.9C181.8 -60.5 194.9 -64 209.2 -64H302.2000000000001C318.0000000000001 -64 333.2000000000001 -59.2 346.2000000000001 -50.2C398.0000000000001 -14.3 423.1 46.6 411.8000000000001 108.9C406.7000000000001 137 393.9000000000001 163 374.6000000000001 184.7C376.2000000000001 192.6 377.0000000000001 199.8 377.0000000000001 207C377.0000000000001 215.8 375.7000000000001 224.4 373.8000000000001 232.8L507.1000000000001 289.9C511.2000000000001 291.7000000000001 513.1000000000001 296.4 511.3000000000001 300.5zM380.3 103.2C389.3 53.4 369.3 4.7 327.9000000000001 -23.9C320.3 -29.2 311.3 -32 302.1 -32H209.1C203.4 -32 195.1 -31.1 188.3 -26.8C151.4 -3.4 129.4 36.4 129.4 79.5C129.4 92.8 128.9 131.1 172.7 175.2C166.9 196.7 166.9 200.7 166.9 207C166.9 232.5 177.6 256 197.1 273.3L208.6 283.5L198.9 295.4C187.7 309 181.9 325.1 181.9 342C181.9 382.8 215.1 416 255.9 416S329.9 382.8 329.9 342C329.9 325.1 324 309 312.9 295.4L303.2 283.5L314.7 273.3C334.2 256 345 232.5 345 207C345 200.4 344.7 195.9 339.2 175.3C376.3 138.2 379.1 110.1 380.3 103.2000000000001zM256 176C247.2 176 240 168.8 240 160S247.2 144 256 144S272 151.2 272 160S264.8 176 256 176zM288 376C279.2 376 272 368.8 272 360S279.2 344 288 344S304 351.2 304 360S296.8 376 288 376zM256 240C247.2 240 240 232.8 240 224S247.2 208 256 208S272 215.2 272 224S264.8 240 256 240zM256 336C247.2 336 240 328.8 240 320S256 288 256 288S272 311.2 272 320S264.8 336 256 336z" />
+    <glyph glyph-name="snowmobile"
+      unicode="&#xF7D1;"
+      horiz-adv-x="640" d=" M639.2 -18.7L632 -4.4C630 -0.4 625.2 1.2 621.3 -0.8L563.5999999999999 -26.9C559.6999999999999 -28.9 555.4999999999999 -30.1 551.1999999999999 -30.9L496 42.7L568.9 91.3C573.4 94.3 576 99.3 576 104.6V183C576 188.6 573.1 193.8 568.2 196.7L430.1 279.6L382.3 375.2C378.3 383.1 368.8 386.3 360.8 382.4C352.9000000000001 378.4 349.7 368.8 353.6 360.9L400.4000000000001 267.3L383.5000000000001 244.7C381.1000000000001 268.9 360.8000000000001 288 336.0000000000001 288H297.2000000000001L256.1 321.8C256 321.9 255.8 322 255.7 322.1C283.4000000000001 329.1 304.1 354.1 304.1 383.9C304.1 419.2 275.4000000000001 447.9 240.1 447.9S176.1 419.2 176.1 383.9C176.1 368.3 181.9 354.2 191.2 343.1C181.1 341.9 147.6 336.1 129.3 299.7L104 249.4C92.7 226.7 92.6 200.7 103.9 178.1C107.3 171.3 111.7 165.4 116.6 160H112C99.9 160 88.8 153.2 83.4 142.3L51.4 78.3C48.7 72.9 47.7 67.2 48.1 61.7C20.5 54.6 0 29.8 0 0C0 -35.3 28.7 -64 64 -64H256C291.3 -64 320 -35.3 320 0C320 11.7 316.6 22.5 311.1 32H464L512 -32H424C419.6 -32 416 -35.6 416 -40V-56C416 -60.4 419.6 -64 424 -64H542.2C554.6 -64 566.8000000000001 -61.1 577.9000000000001 -55.6L635.6000000000001 -29.5C639.5000000000001 -27.5 641.1000000000001 -22.7 639.2000000000002 -18.7zM240 416C257.7 416 272 401.6 272 384S257.7 352 240 352S208 366.4 208 384S222.3 416 240 416zM132.7 235.1L157.9 285.5C164.9 299.4 177.7 308.9 193.1 311.4C197.8 312.2000000000001 217.8 314.9 234.8 298L281.4 259.7C284.2 257.4 287.9 256.1 291.6 256.1H336C344.8 256.1 352 248.9 352 240.1S344.8 224.1 336 224.1H291.5C280.4 224.1 269.6 228 261 235L218 270.3L181 196.3L257.5 182C284.1 177 292.9 143.3 272.1 126L202.2 67.7C195.1 61.8 185.1 63.2 179.7 69.7C174 76.5 174.9 86.6 181.7 92.2L251.6 150.4L166.7 166.3C151.8 169.1 139.3 178.5 132.5 192.1C125.8 205.9 125.9 221.5 132.7 235.1zM344.7 192.9L329.6 172.8C325.7 167.6 320.1 164.4 314.1 162.4C314 162.7 313.3 176.9 300.5 192H336C339 192 341.8 192.4 344.7 192.9zM228.9 219.9H228.7V220L228.9 219.9zM112 128H174.6L161.3 116.9C145.5 103.7 140.5 82.4 147 64H80L112 128zM256 -32H64C46.3 -32 32 -17.7 32 0S46.3 32 64 32H256C273.7 32 288 17.7 288 0S273.7 -32 256 -32zM247.8 64L292.7 101.4C301.7 108.9 308 118.5 311.7 128.9C328.8 131 344.8 139.6 355.2 153.6L424.3 245.7L544 173.9V113.1L470.3 64H247.8z" />
+    <glyph glyph-name="snowplow"
+      unicode="&#xF7D2;"
+      horiz-adv-x="640" d=" M360 72C346.7 72 336 61.3 336 48S346.7 24 360 24S384 34.7 384 48S373.3 72 360 72zM572.4 24.6C563.4 33.6 558.3 45.8 558.3 58.6V197.6C558.3 210.3 563.4 222.6 572.4 231.6L637.6 295.2000000000001C640.7 298.3 640.7 303.4 637.6 306.5L626.3000000000001 317.8000000000001C623.2 320.9000000000001 618.1 320.9000000000001 615.0000000000001 317.8000000000001L549.7000000000002 254.2000000000001C534.7000000000002 239.2000000000001 526.3000000000002 218.8000000000001 526.3000000000002 197.6000000000001V144H430.2000000000002V210.9C430.2000000000002 219.6 428.4000000000002 228.1 425.0000000000002 236.1L346.7 418.9C339.1 436.6 321.8 448 302.5 448H158.2C131.7 448 110.2 426.5 110.2 400V320H94.2C67.7 320 46.2 298.5 46.2 272V138.3C18.3 117.9 0 85.2 0 48C0 -13.9 50.1 -64 112 -64H368C429.9 -64 480 -13.9 480 48C480 71.8 472.4 93.8 459.7 112H526.3V58.5C526.3 37.3 534.6999999999999 16.9 549.6999999999999 1.9L614.9 -61.7C618 -64.8000000000001 623.1 -64.8000000000001 626.1999999999999 -61.7L637.4999999999999 -50.4C640.5999999999999 -47.3 640.5999999999999 -42.2 637.4999999999999 -39.1L572.3999999999999 24.6zM142.2 320V400C142.2 408.8 149.4 416 158.2 416H302.5C309 416 314.8 412.2 317.3 406.3L395.4 224H214.2L142.2 319.7V320zM78.2 272C78.2 280.8 85.4 288 94.2 288H126L193.4 198.4C196.4 194.4 201.2 192 206.2 192H398.2000000000001V155.4C388.5000000000001 158.1 378.5000000000001 160 368.0000000000001 160H112C100.1 160 88.9 157.7 78.2 154.2V272zM368 -32H112C67.9 -32 32 3.9 32 48S67.9 128 112 128H368C412.1 128 448 92.1 448 48S412.1 -32 368 -32zM120 72C106.7 72 96 61.3 96 48S106.7 24 120 24S144 34.7 144 48S133.3 72 120 72zM200 72C186.7 72 176 61.3 176 48S186.7 24 200 24S224 34.7 224 48S213.3 72 200 72zM280 72C266.7 72 256 61.3 256 48S266.7 24 280 24S304 34.7 304 48S293.3 72 280 72z" />
+    <glyph glyph-name="socks"
+      unicode="&#xF696;"
+      horiz-adv-x="512" d=" M448 448H352.17C340.3 448 329.3300000000001 444.57 319.8 438.96C310.43 444.51 299.71 448 288 448H192.17C156.85 448 128.21 419.54 128.17 384.2200000000001C128.1 310.73 128 200 128 200L48.23 140.61C2.26 106.12 -14.59 42.12 14.17 -7.64C35.46 -44.47 73.8 -64 112.09 -64C135.47 -64 159.06 -56.7 179.18 -41.59L192.94 -31.27C214.41 -52.73 243.07 -63.99 272.08 -63.99C295.46 -63.99 319.05 -56.69 339.17 -41.58L460.78 49.62A128.006 128.006 0 0 1 511.99 152.02V384C512 419.35 483.35 448 448 448zM352.17 416H448C465.64 416 480 401.64 480 384V352H320.14L320.17 384.18C320.19 401.73 334.55 416 352.17 416zM192.17 416H288C290.9100000000001 416 293.68 415.53 296.31 414.76C291.29 405.66 288.18 395.36 288.17 384.2200000000001L288.14 352H160.14L160.17 384.18C160.19 401.73 174.55 416 192.17 416zM173.85 -5.6L159.97 -16C146.03 -26.46 129.47 -32 112.09 -32C83.11 -32 56.48 -16.91 41.87 8.38C22.09 42.59 33.32 89.43 67.43 115.02L159.98 184L160.11 320H288.11C288.05 259.37 288 200 288 200L208.84 140.61C163.47 106.58 146.66 43.86 173.85 -5.6zM480 152.01C480 121.95 465.64 93.24 441.6 75.21L319.9700000000001 -16C306.0300000000001 -26.46 289.4700000000001 -32 272.0900000000001 -32C243.1100000000001 -32 217.09 -16.91 202.47 8.38C182.69 42.59 193.92 89.43 228.0300000000001 115.02L319.98 184L320.11 320H480V152.01z" />
+    <glyph glyph-name="solar-panel"
+      unicode="&#xF5BA;"
+      horiz-adv-x="640" d=" M586.22 421.26C583.65 436.69 570.3 448 554.66 448H85.34C69.7 448 56.35 436.69 53.78 421.26L0.45 101.26C-2.81 81.76 12.23 64 32.01 64H224V-32H184C179.58 -32 176 -35.58 176 -40V-56C176 -60.42 179.58 -64 184 -64H456C460.42 -64 464 -60.42 464 -56V-40C464 -35.58 460.42 -32 456 -32H416V64H607.99C627.76 64 642.8 81.76 639.55 101.26L586.2199999999999 421.26zM578.66 272H440.06L425.66 416H554.66L578.66 272zM407.93 272H232.07L246.47 416H393.54L407.93 272zM85.34 416H214.34L199.94 272H61.34L85.34 416zM56.01 240H196.74L182.34 96H32.01L56.01 240zM384 -32H256V64H384V-32zM214.48 96L228.88 240H411.13L425.53 96H214.48zM457.65 96L443.25 240H583.99L607.99 96H457.65z" />
+    <glyph glyph-name="sort-alpha-down"
+      unicode="&#xF15D;"
+      horiz-adv-x="448" d=" M204.485 56L120.485 -28.485C115.799 -33.171 108.201 -33.171 103.514 -28.485L19.514 56C14.828 60.686 14.828 68.284 19.514 72.97L26.584 80.0410000000001C31.27 84.727 38.868 84.727 43.555 80.0410000000001L95 28.113V404C95 410.627 100.373 416 107 416H117C123.627 416 129 410.627 129 404V28.113L180.444 80.041C185.13 84.727 192.728 84.727 197.415 80.041L204.485 72.97C209.172 68.284 209.172 60.686 204.485 56zM304.9770000000001 276.355H366.524L382.024 232.038A12 12 0 0 1 393.351 224H404.903C413.213 224 419.0080000000001 232.243 416.194 240.062L355.7530000000001 408.062A11.999000000000002 11.999000000000002 0 0 1 344.462 416H327.538A11.999000000000002 11.999000000000002 0 0 1 316.247 408.062L255.806 240.062C252.993 232.242 258.7870000000001 224 267.0970000000001 224H278.3680000000001C283.4880000000001 224 288.0440000000001 227.248 289.7120000000001 232.088L304.9770000000001 276.355zM315.1550000000001 307.4220000000001L333.2260000000001 358.665C334.0790000000001 361.225 335.0020000000001 364.291 335.8940000000001 367.408C336.7650000000001 364.274 337.6750000000001 361.189 338.5380000000001 358.602L356.3590000000001 307.4220000000001H315.1550000000001zM311.673 0.08C316.468 6.124 310.4940000000001 -2.246 404.5900000000001 133.6410000000001A12.011000000000001 12.011000000000001 0 0 1 406.7260000000001 140.4760000000001V148C406.7260000000001 154.627 401.3530000000001 160 394.7260000000001 160H280.8860000000001C274.2590000000001 160 268.8860000000001 154.627 268.8860000000001 148V139.932C268.8860000000001 133.288 274.2790000000001 127.901 280.9230000000001 127.901C362.7840000000001 127.9 357.1610000000001 127.89 359.1610000000001 127.927C356.1880000000001 124.109 363.7250000000001 135.036 266.3850000000001 -5.376A12.022 12.022 0 0 1 264.2430000000001 -12.223V-20C264.2430000000001 -26.627 269.6160000000001 -32 276.2430000000001 -32H395.7570000000001C402.3840000000001 -32 407.7570000000001 -26.627 407.7570000000001 -20V-11.901C407.7570000000001 -5.274 402.3840000000001 0.099 395.7570000000001 0.099C308.2300000000001 0.1 313.7870000000001 0.109 311.6730000000001 0.08z" />
+    <glyph glyph-name="sort-alpha-up"
+      unicode="&#xF15E;"
+      horiz-adv-x="448" d=" M19.515 328L103.515 412.485C108.201 417.171 115.799 417.171 120.486 412.485L204.486 328C209.172 323.314 209.172 315.716 204.486 311.03L197.416 303.959C192.73 299.273 185.132 299.273 180.445 303.959L129 355.887V-20C129 -26.627 123.627 -32 117 -32H107C100.373 -32 95 -26.627 95 -20V355.887L43.556 303.959C38.87 299.273 31.272 299.273 26.585 303.959L19.515 311.03C14.828 315.716 14.828 323.314 19.515 328zM304.977 276.355H366.524L382.024 232.038A12 12 0 0 1 393.351 224H404.903C413.213 224 419.0080000000001 232.243 416.194 240.062L355.7530000000001 408.062A11.999000000000002 11.999000000000002 0 0 1 344.462 416H327.538A11.999000000000002 11.999000000000002 0 0 1 316.247 408.062L255.806 240.062C252.993 232.242 258.7870000000001 224 267.0970000000001 224H278.3680000000001C283.4880000000001 224 288.0440000000001 227.248 289.7120000000001 232.088L304.9770000000001 276.355zM315.155 307.4220000000001L333.226 358.665C334.079 361.225 335.002 364.291 335.894 367.408C336.765 364.274 337.675 361.189 338.538 358.602L356.3590000000001 307.4220000000001H315.1550000000001zM311.673 0.08C316.468 6.124 310.494 -2.246 404.5899999999999 133.6410000000001A12.011000000000001 12.011000000000001 0 0 1 406.726 140.4760000000001V148C406.726 154.627 401.353 160 394.726 160H280.886C274.259 160 268.886 154.627 268.886 148V139.932C268.886 133.288 274.279 127.901 280.923 127.901C362.784 127.9 357.161 127.89 359.161 127.927C356.188 124.109 363.725 135.036 266.385 -5.376A12.022 12.022 0 0 1 264.243 -12.223V-20C264.243 -26.627 269.616 -32 276.243 -32H395.757C402.384 -32 407.757 -26.627 407.757 -20V-11.901C407.757 -5.274 402.384 0.099 395.757 0.099C308.23 0.1 313.7869999999999 0.109 311.673 0.08z" />
+    <glyph glyph-name="sort-amount-down"
+      unicode="&#xF160;"
+      horiz-adv-x="512" d=" M204.485 56L120.485 -28.485C115.799 -33.171 108.201 -33.171 103.514 -28.485L19.514 56C14.828 60.686 14.828 68.284 19.514 72.97L26.584 80.0410000000001C31.27 84.727 38.868 84.727 43.555 80.0410000000001L95 28.113V404C95 410.627 100.373 416 107 416H117C123.627 416 129 410.627 129 404V28.113L180.444 80.041C185.13 84.727 192.728 84.727 197.415 80.041L204.485 72.97C209.172 68.284 209.172 60.686 204.485 56zM384 140V148C384 154.627 378.627 160 372 160H268C261.373 160 256 154.627 256 148V140C256 133.373 261.373 128 268 128H372C378.627 128 384 133.373 384 140zM448 236V244C448 250.627 442.627 256 436 256H268C261.373 256 256 250.627 256 244V236C256 229.373 261.373 224 268 224H436C442.627 224 448 229.373 448 236zM512 332V340C512 346.627 506.627 352 500 352H268C261.373 352 256 346.627 256 340V332C256 325.373 261.373 320 268 320H500C506.627 320 512 325.373 512 332zM320 44V52C320 58.627 314.627 64 308 64H268C261.373 64 256 58.627 256 52V44C256 37.373 261.373 32 268 32H308C314.627 32 320 37.373 320 44z" />
+    <glyph glyph-name="sort-amount-up"
+      unicode="&#xF161;"
+      horiz-adv-x="512" d=" M19.515 328L103.515 412.485C108.201 417.171 115.799 417.171 120.486 412.485L204.486 328C209.172 323.314 209.172 315.716 204.486 311.03L197.416 303.959C192.73 299.273 185.132 299.273 180.445 303.959L129 355.887V-20C129 -26.627 123.627 -32 117 -32H107C100.373 -32 95 -26.627 95 -20V355.887L43.556 303.959C38.87 299.273 31.272 299.273 26.585 303.959L19.515 311.03C14.828 315.716 14.828 323.314 19.515 328zM384 140V148C384 154.627 378.627 160 372 160H268C261.373 160 256 154.627 256 148V140C256 133.373 261.373 128 268 128H372C378.627 128 384 133.373 384 140zM448 236V244C448 250.627 442.627 256 436 256H268C261.373 256 256 250.627 256 244V236C256 229.373 261.373 224 268 224H436C442.627 224 448 229.373 448 236zM512 332V340C512 346.627 506.627 352 500 352H268C261.373 352 256 346.627 256 340V332C256 325.373 261.373 320 268 320H500C506.627 320 512 325.373 512 332zM320 44V52C320 58.627 314.627 64 308 64H268C261.373 64 256 58.627 256 52V44C256 37.373 261.373 32 268 32H308C314.627 32 320 37.373 320 44z" />
+    <glyph glyph-name="sort-down"
+      unicode="&#xF0DD;"
+      horiz-adv-x="320" d=" M287.968 160H32.038C3.613 160 -10.729 125.512 9.411 105.373L137.373 -22.627C149.869 -35.123 170.131 -35.124 182.628 -22.627L310.596 105.373C330.695 125.472 316.45 160 287.968 160zM160 0L32 128H288L160 0z" />
+    <glyph glyph-name="sort-numeric-down"
+      unicode="&#xF162;"
+      horiz-adv-x="448" d=" M204.485 56L120.485 -28.485C115.799 -33.171 108.201 -33.171 103.514 -28.485L19.514 56C14.828 60.686 14.828 68.284 19.514 72.97L26.584 80.0410000000001C31.27 84.727 38.868 84.727 43.555 80.0410000000001L95 28.113V404C95 410.627 100.373 416 107 416H117C123.627 416 129 410.627 129 404V28.113L180.444 80.041C185.13 84.727 192.728 84.727 197.415 80.041L204.485 72.97C209.172 68.284 209.172 60.686 204.485 56zM343.749 359.758C343.7460000000001 358.8210000000001 343.747 260.763 343.747 259.14H315.56C308.933 259.14 303.56 253.767 303.56 247.14V236C303.56 229.373 308.933 224 315.56 224H412C418.627 224 424 229.373 424 236V247.141C424 253.768 418.627 259.141 412 259.141H384.331V404C384.331 410.627 378.9580000000001 416 372.331 416H354.312A12 12 0 0 1 345.999 412.654L307.95 376.101C303.19 371.528 303.017 363.968 307.563 359.182L316.231 350.058C320.79 345.259 328.376 345.0590000000001 333.183 349.61C343.211 359.1040000000001 342.523 358.447 343.749 359.7580000000001zM432 73.065C432 16.376 399.805 -35 341.806 -35C331.605 -35 321.049 -33.478 310.83 -29.91C304.633 -27.747 301.396 -20.926 303.523 -14.717L307.947 -1.8050000000001C310.0729999999999 4.3999999999999 316.792 7.7529999999999 323.023 5.7049999999999C351.09 -3.5200000000001 374.331 8.1949999999999 384.169 39.9739999999999C345.208 18.4639999999999 290.458 44.069 290.458 96.891C290.458 134.579 319.101 163 357.085 163C397.229 163 432 131.025 432 73.065zM389.389 87.568C389.389 104.662 374.98 125.309 357.0850000000001 125.309C342.7920000000001 125.309 332.8110000000001 113.624 332.8110000000001 96.8919999999999C332.8110000000001 78.7729999999999 344.403 67.9549999999999 363.819 67.9549999999999C378.397 67.954 389.389 76.3869999999999 389.389 87.5679999999999z" />
+    <glyph glyph-name="sort-numeric-up"
+      unicode="&#xF163;"
+      horiz-adv-x="448" d=" M19.515 328L103.515 412.485C108.201 417.171 115.799 417.171 120.486 412.485L204.486 328C209.172 323.314 209.172 315.716 204.486 311.03L197.416 303.959C192.73 299.273 185.132 299.273 180.445 303.959L129 355.887V-20C129 -26.627 123.627 -32 117 -32H107C100.373 -32 95 -26.627 95 -20V355.887L43.556 303.959C38.87 299.273 31.272 299.273 26.585 303.959L19.515 311.03C14.828 315.716 14.828 323.314 19.515 328zM343.749 359.758C343.746 358.8210000000001 343.747 260.763 343.747 259.14H315.56C308.933 259.14 303.56 253.767 303.56 247.14V236C303.56 229.373 308.933 224 315.56 224H412C418.627 224 424 229.373 424 236V247.141C424 253.768 418.627 259.141 412 259.141H384.331V404C384.331 410.627 378.9580000000001 416 372.331 416H354.312A12 12 0 0 1 345.999 412.654L307.95 376.101C303.19 371.528 303.017 363.968 307.563 359.182L316.231 350.058C320.79 345.259 328.376 345.0590000000001 333.183 349.61C343.211 359.1040000000001 342.523 358.447 343.749 359.7580000000001zM432 73.065C432 16.376 399.805 -35 341.806 -35C331.605 -35 321.049 -33.478 310.83 -29.91C304.633 -27.747 301.396 -20.926 303.523 -14.717L307.947 -1.8050000000001C310.0729999999999 4.3999999999999 316.792 7.7529999999999 323.023 5.7049999999999C351.09 -3.5200000000001 374.331 8.1949999999999 384.169 39.9739999999999C345.208 18.4639999999999 290.458 44.069 290.458 96.891C290.458 134.579 319.101 163 357.085 163C397.229 163 432 131.025 432 73.065zM389.389 87.568C389.389 104.662 374.98 125.309 357.0850000000001 125.309C342.7920000000001 125.309 332.8110000000001 113.624 332.8110000000001 96.8919999999999C332.8110000000001 78.7729999999999 344.403 67.9549999999999 363.819 67.9549999999999C378.397 67.954 389.389 76.3869999999999 389.389 87.5679999999999z" />
+    <glyph glyph-name="sort-up"
+      unicode="&#xF0DE;"
+      horiz-adv-x="320" d=" M32.032 224H287.962C316.387 224 330.729 258.488 310.589 278.627L182.627 406.627C170.131 419.123 149.869 419.124 137.372 406.627L9.404 278.627C-10.695 258.528 3.55 224 32.032 224zM160 384L288 256H32L160 384z" />
+    <glyph glyph-name="sort"
+      unicode="&#xF0DC;"
+      horiz-adv-x="320" d=" M288 160H32C3.6 160 -10.8 125.5 9.4 105.4L137.4 -22.6C149.9 -35.1 170.2 -35.1 182.7 -22.6L310.7 105.4C330.7 125.5 316.4 160 288 160zM160 0L32 128H288L160 0zM32 224H288C316.4 224 330.8 258.5 310.6 278.6L182.6 406.6C170.1 419.1 149.8 419.1 137.3 406.6L9.3 278.6C-10.7 258.5 3.6 224 32 224zM160 384L288 256H32L160 384z" />
+    <glyph glyph-name="spa"
+      unicode="&#xF5BB;"
+      horiz-adv-x="576" d=" M568.28 255.92H568.24C545.6 255.82 476.24 251.63 409.39 213.57C389.96 295.15 349.03 367.45 296.87 412.86C294.4700000000001 414.95 291.24 416 288.02 416S281.58 414.96 279.17 412.86C227 367.45 186.05 295.15 166.6 213.56C99.76 251.63 30.4 255.81 7.75 255.92H7.71C3.32 255.92 -0.05 252.51 -0.01 248.1C0.22 220.16 7.13 121.9 88.76 48.69C146.99 -8.04 219.83 -26.11 265.7200000000001 -31.77C265.73 -32.07 310.24 -32.07 310.24 -31.77C356.13 -26.11 428.9700000000001 -8.04 487.2 48.69C568.84 121.89 575.74 220.16 575.97 248.1C576.0400000000001 252.51 572.6800000000001 255.92 568.28 255.92zM110.13 72.53C54.91 122.05 38.52 184.81 33.81 222.45C74.65 218.35 144.72 203.14 200.25 149.01C225.62 126.29 244.65 99.05 258.42 65.73C266.92 45.16 271.99 24.43 271.99 -0.09C229.22 1.06 157.41 26.51 110.13 72.53zM221.59 172.87C213.08 181.17 204.14 188.29 195.13 195.02C210.26 266.6 243.84 333.17 288.03 377.35C332.2 333.18 365.77 266.61 380.88 195.03C371.86 188.3 362.93 181.18 354.41 172.8800000000001C321.29 143.2300000000001 301.05 109.5400000000001 288 77.97C274.95 109.54 254.71 143.23 221.59 172.87zM464.9 71.63C420.29 28.17 348.77 1.12 304 -0.08C304 24.23 308.98 44.95 317.57 65.74C331.34 99.07 350.37 126.31 376.74 149.96C431.52 203.3800000000001 501.45 218.42 542.1800000000001 222.48C537.44 184.8 520.8900000000001 121.86 464.9000000000001 71.63z" />
+    <glyph glyph-name="space-shuttle"
+      unicode="&#xF197;"
+      horiz-adv-x="640" d=" M448 280C208 280 240 416 96.003 416H80C53.49 416 32 387.346 32 352V288C8.803 288 0 277.968 0 264V120C0 106.017 8.819 96 32 96V32C32 -3.346 53.49 -32 80 -32H96.003C240 -32 208 104 448 104C554.039 104 640 143.399 640 192S554.039 280 448 280zM296 280H166.495C154.522 285.241 141.481 288 128 288V380.817C187.971 367.591 219.668 299.083 296 280zM127.046 128H64V176H112C129.673 176 144 183.163 144 192S129.673 208 112 208H64V256H128C163.629 256 192.458 226.886 191.994 191.15C191.538 155.979 162.219 128 127.046 128zM64 352C64 371.851 74.359 384 80 384H96V288H64V352zM64 32V96H96V0H80C74.359 0 64 12.149 64 32zM128 3.183V96.012C141.196 96.138 154.009 98.881 165.816 104.001H296C219.673 84.918 187.976 16.41 128 3.183zM448 136H205.781C230.497 169.856 229.604 215.277 205.996 248H448C489.469 248 536 248 576 224V160C536 136 489.55 136 448 136zM488.014 152C483.588 152 480 155.582 480 160V224C480 228.418 483.588 232 488.014 232C520.0120000000001 232 519.979 152 488.014 152z" />
+    <glyph glyph-name="spade"
+      unicode="&#xF2F4;"
+      horiz-adv-x="512" d=" M471.4 247.7C456.1 261.6 327 390.3 278.6 438.7C266.1 451.2 245.9000000000001 451.2 233.4000000000001 438.7C185 390.3 55.9 261.7 40.6 247.7C15.1 224.5 0 191.6 0 156C0 87.6 55.6 32 124 32C159.5 32 176 40 200 64C200 40 190.3 36.4 169.8 10.6C145.9 -19.5 167.4 -64 205.8 -64H306.1C344.6 -64 366.1 -19.5 342.1 10.6C323.1 34.7 312 40 312 64C336 40 360.9 32 388 32C456.4 32 512 87.6 512 156C512 191.7 496.8 224.5 471.4 247.7zM385.5 64C344.5 64.4 330.9 75.3 298.3 109.2C294.6 113.1 288 110.4 288 105V80C288 39.4 288 27.4 317.1 -9.3C324.4000000000001 -18.5 317.8 -32 306.1 -32H205.8C194.1 -32 187.5 -18.5 194.8 -9.3C224 27.4 224 39.4 224 80V105C224 110.4 217.4 113.1 213.7 109.2C181.4 75.5 167.8 64.5 126.6 64C74.8 63.5 31.6 105 32.1 156.8C32.3 182.8 43.5 206.9 62.2 224C81.3 241.5 256 416 256 416S430.7 241.5 449.9 224C468.9 206.7 479.8 182.4 480 156.7C480.4 104.9 437.3 63.5 385.5 64z" />
+    <glyph glyph-name="spider-black-widow"
+      unicode="&#xF718;"
+      horiz-adv-x="576" d=" M574.66 95.53L519.8499999999999 177.75A32.02 32.02 0 0 1 493.22 192H379.54L469.63 222.03A32.03 32.03 0 0 1 486.14 234.64L542.67 319.42C545.13 323.1 544.13 328.06 540.4499999999999 330.52L527.14 339.39A7.991999999999999 7.991999999999999 0 0 1 516.05 337.17L461.05 254.67A7.996000000000001 7.996000000000001 0 0 0 456.92 251.52L373.79 223.81L426.9 330.05C432.65 341.49 433.59 354.52 429.52 366.71L404.23 442.53C402.8300000000001 446.7200000000001 398.3 448.99 394.11 447.59L378.9100000000001 442.52C374.7200000000001 441.12 372.4500000000001 436.59 373.85 432.4L399.13 356.57C400.51 352.52 400.19 348.18 398.25 344.37L361.73 271.31L357.62 291.85C355.44 302.82 340.26 352 288 352C235.74 352 220.56 302.82 218.37 291.85L214.26 271.31L177.74 344.37A15.653 15.653 0 0 0 176.86 356.57L202.14 432.4C203.54 436.5900000000001 201.27 441.12 197.08 442.52L181.88 447.59C177.69 448.99 173.16 446.7200000000001 171.76 442.53L146.48 366.7C142.42 354.51 143.35 341.48 149.1 330.04L202.21 223.8L119.08 251.51A7.996000000000001 7.996000000000001 0 0 0 114.95 254.6600000000001L59.95 337.1600000000001A7.993999999999999 7.993999999999999 0 0 1 48.86 339.38L35.55 330.51C31.87 328.06 30.88 323.0900000000001 33.33 319.4100000000001L89.86 234.63A32.03 32.03 0 0 1 106.37 222.0200000000001L196.46 192H82.78A32.02 32.02 0 0 1 56.15 177.75L1.34 95.53A7.991999999999999 7.991999999999999 0 0 1 3.56 84.44L16.87 75.56A7.991999999999999 7.991999999999999 0 0 1 27.96 77.78L80.4 156.4400000000001A7.982 7.982 0 0 0 87.06 160.0000000000001H189.13L119.31 48.2800000000001A47.883 47.883 0 0 1 112 22.8300000000001V-56C112 -60.42 115.58 -64 120 -64H136C140.42 -64 144 -60.42 144 -56V25.1C144 26.6 144.42 28.0700000000001 145.22 29.34L192.15 104.4400000000001C192.14 103.4400000000001 192 102.4400000000001 192 101.4400000000001C192 48.36 232.76 0 288 0S384 48.36 384 101.43C384 102.43 383.86 103.43 383.85 104.43L430.7800000000001 29.33A8.04 8.04 0 0 0 432.0000000000001 25.09V-56C432.0000000000001 -60.42 435.5800000000001 -64 440.0000000000001 -64H456.0000000000001C460.4200000000001 -64 464.0000000000001 -60.42 464.0000000000001 -56V22.83C464.0000000000001 31.85 461.4700000000001 40.66 456.6900000000001 48.28L386.87 160H488.94C491.61 160 494.11 158.66 495.6 156.44L548.04 77.78A7.993999999999999 7.993999999999999 0 0 1 559.13 75.56L572.4399999999999 84.4399999999999C576.1099999999999 86.8899999999999 577.1099999999999 91.86 574.66 95.5299999999999zM288 32C248.47 32 224 68.04 224 101.43C224 138.19 227.66 175.11 234.87 211.15L249.75 285.57C250.45 289.1 257.51 320 288 320C318.49 320 325.55 289.1 326.25 285.57L341.13 211.15A560.68 560.68 0 0 0 352 101.43C352 68.04 327.53 32 288 32zM320 176H256C249.41 176 245.64 168.47 249.6 163.2L276 128L249.6 92.8C245.64 87.53 249.41 80 256 80H320C326.59 80 330.36 87.53 326.4 92.8L300 128L326.4 163.2C330.36 168.47 326.59 176 320 176z" />
+    <glyph glyph-name="spider-web"
+      unicode="&#xF719;"
+      horiz-adv-x="576" d=" M571.62 202.98C509.87 268.37 464.12 349.07 439.4 436.35C437.03 444.68 428.56 449.65 420.09 447.51C333.65 425.73 242.34 425.73 155.91 447.51C147.41 449.62 138.97 444.68 136.6 436.35C111.88 349.07 66.13 268.37 4.38 202.98C-1.46 196.82 -1.46 187.17 4.38 181.01C66.13 115.62 111.88 34.92 136.6 -52.36C138.97 -60.67 147.41 -65.59 155.91 -63.52C242.35 -41.74 333.66 -41.74 420.0900000000001 -63.52C421.4000000000001 -63.85 422.7100000000001 -64 424.0000000000001 -64C431.0000000000001 -64 437.4100000000001 -59.39 439.4100000000001 -52.36C464.1300000000001 34.92 509.8800000000001 115.62 571.6300000000001 181.01C577.4600000000002 187.17 577.4600000000002 196.82 571.6200000000001 202.98zM525.39 207.99H455.55C424.08 243.39 400.41 285.86 386.32 331.77L420.74 392.01C444.48 324.81 479.98 262.3400000000001 525.39 207.99zM260.42 207.99H161.72A366.476 366.476 0 0 1 210.69 295.01L260.42 207.99zM236.57 314.27C270.66 309.01 305.34 309.01 339.43 314.27L288 224.27L236.57 314.27zM260.42 175.99L210.69 88.97A366.476 366.476 0 0 1 161.72 175.99H260.42zM288 159.72L339.43 69.71C322.39 72.34 305.23 74.09 288 74.09S253.61 72.34 236.57 69.71L288 159.72zM315.58 175.99H414.27A366.824 366.824 0 0 1 365.3 88.97L315.58 175.99zM315.58 207.99L365.31 295.01C377.64 263.79 394.14 234.5 414.28 207.99H315.58zM394.01 409.78L360.3 350.79C312.92 339.2 263.0900000000001 339.2 215.71 350.79L182 409.78A573.332 573.332 0 0 1 394.01 409.78zM155.26 392.01L189.68 331.77C175.58 285.85 151.91 243.39 120.45 207.99H50.61C96.02 262.3400000000001 131.52 324.81 155.26 392.01zM50.61 175.99H120.45C151.92 140.59 175.59 98.12 189.68 52.21L155.26 -8.03C131.52 59.17 96.02 121.65 50.61 175.99zM182 -25.79L215.71 33.2C263.0900000000001 44.79 312.92 44.79 360.3 33.2L394 -25.79C359 -19.2 323.56 -15.18 288 -15.18S216.99 -19.2 182 -25.79zM420.74 -8.02L386.32 52.22C400.42 98.14 424.09 140.6 455.55 176H525.39C479.98 121.65 444.48 59.17 420.74 -8.02z" />
+    <glyph glyph-name="spider"
+      unicode="&#xF717;"
+      horiz-adv-x="576" d=" M574.66 95.53L519.8499999999999 177.75A32.02 32.02 0 0 1 493.22 192H379.54L469.63 222.03A32.03 32.03 0 0 1 486.14 234.64L542.67 319.42C545.13 323.1 544.13 328.06 540.4499999999999 330.52L527.14 339.39A7.991999999999999 7.991999999999999 0 0 1 516.05 337.17L461.05 254.67A7.996000000000001 7.996000000000001 0 0 0 456.92 251.52L373.79 223.81L426.9 330.05C432.65 341.49 433.59 354.52 429.52 366.71L404.23 442.53C402.8300000000001 446.7200000000001 398.3 448.99 394.11 447.59L378.9100000000001 442.52C374.7200000000001 441.12 372.4500000000001 436.59 373.85 432.4L399.13 356.57C400.51 352.52 400.19 348.18 398.25 344.37L361.73 271.31L357.62 291.85C355.44 302.82 340.26 352 288 352C235.74 352 220.56 302.82 218.37 291.85L214.26 271.31L177.74 344.37A15.653 15.653 0 0 0 176.86 356.57L202.14 432.4C203.54 436.5900000000001 201.27 441.12 197.08 442.52L181.88 447.59C177.69 448.99 173.16 446.7200000000001 171.76 442.53L146.48 366.7C142.42 354.51 143.35 341.48 149.1 330.04L202.21 223.8L119.08 251.51A7.996000000000001 7.996000000000001 0 0 0 114.95 254.6600000000001L59.95 337.1600000000001A7.993999999999999 7.993999999999999 0 0 1 48.86 339.38L35.55 330.51C31.87 328.06 30.88 323.0900000000001 33.33 319.4100000000001L89.86 234.63A32.03 32.03 0 0 1 106.37 222.0200000000001L196.46 192H82.78A32.02 32.02 0 0 1 56.15 177.75L1.34 95.53A7.991999999999999 7.991999999999999 0 0 1 3.56 84.44L16.87 75.56A7.991999999999999 7.991999999999999 0 0 1 27.96 77.78L80.4 156.4400000000001A7.982 7.982 0 0 0 87.06 160.0000000000001H189.13L119.31 48.2800000000001A47.883 47.883 0 0 1 112 22.8300000000001V-56C112 -60.42 115.58 -64 120 -64H136C140.42 -64 144 -60.42 144 -56V25.1C144 26.6 144.42 28.0700000000001 145.22 29.34L192.15 104.4400000000001C192.14 103.4400000000001 192 102.4400000000001 192 101.4400000000001C192 48.36 232.76 0 288 0S384 48.36 384 101.43C384 102.43 383.86 103.43 383.85 104.43L430.7800000000001 29.33A8.04 8.04 0 0 0 432.0000000000001 25.09V-56C432.0000000000001 -60.42 435.5800000000001 -64 440.0000000000001 -64H456.0000000000001C460.4200000000001 -64 464.0000000000001 -60.42 464.0000000000001 -56V22.83C464.0000000000001 31.85 461.4700000000001 40.66 456.6900000000001 48.28L386.87 160H488.94C491.61 160 494.11 158.66 495.6 156.44L548.04 77.78A7.993999999999999 7.993999999999999 0 0 1 559.13 75.56L572.4399999999999 84.4399999999999C576.1099999999999 86.8899999999999 577.1099999999999 91.86 574.66 95.5299999999999zM288 32C248.47 32 224 68.04 224 101.43C224 138.19 227.66 175.11 234.87 211.15L249.75 285.57C250.45 289.1 257.51 320 288 320C318.49 320 325.55 289.1 326.25 285.57L341.13 211.15A560.68 560.68 0 0 0 352 101.43C352 68.04 327.53 32 288 32z" />
+    <glyph glyph-name="spinner-third"
+      unicode="&#xF3F4;"
+      horiz-adv-x="512" d=" M460.115 74.154L453.174 78.162C447.6280000000001 81.364 445.61 88.339 448.5130000000001 94.048C481.484 158.886 479.6800000000001 236.779 443.098 300.002C406.594 363.358 339.98 403.8780000000001 267.298 407.703C260.952 408.037 256 413.324 256 419.679V427.691C256 434.5950000000001 261.808 440.028 268.703 439.673C352.255 435.367 428.86 388.812 470.809 316.003C512.8779999999999 243.3 514.8919999999999 153.681 476.843 79.165C473.703 73.016 466.093 70.703 460.115 74.1539999999999z" />
+    <glyph glyph-name="spinner"
+      unicode="&#xF110;"
+      horiz-adv-x="512" d=" M288 416C288 398.327 273.673 384 256 384S224 398.327 224 416S238.327 448 256 448S288 433.673 288 416zM256 0C238.327 0 224 -14.327 224 -32S238.327 -64 256 -64S288 -49.673 288 -32S273.673 0 256 0zM512 192C512 209.673 497.673 224 480 224S448 209.673 448 192S462.327 160 480 160S512 174.327 512 192zM64 192C64 209.673 49.673 224 32 224S0 209.673 0 192S14.327 160 32 160S64 174.327 64 192zM97.608 65.608C79.935 65.608 65.608 51.281 65.608 33.608S79.935 1.608 97.608 1.608S129.608 15.935 129.608 33.608S115.281 65.608 97.608 65.608zM414.392 65.608C396.719 65.608 382.392 51.281 382.392 33.608S396.719 1.608 414.392 1.608S446.392 15.935 446.392 33.608S432.065 65.608 414.392 65.608zM97.608 382.392C79.935 382.392 65.608 368.065 65.608 350.392C65.608 332.719 79.935 318.392 97.608 318.392S129.608 332.719 129.608 350.392C129.608 368.065 115.281 382.392 97.608 382.392z" />
+    <glyph glyph-name="splotch"
+      unicode="&#xF5BC;"
+      horiz-adv-x="512" d=" M463.94 262.92L401.03 284.23C388.06 288.64 378.53 297.81 375.62 308.76L360.62 364.9C354.37 388.28 335.12 406.31 309.0899999999999 413.13C280.25 420.71 250.1499999999999 412.96 230.6199999999999 392.96L187.3699999999999 348.68C178.2099999999999 339.3 163.8099999999999 334.3 149.2399999999999 335.52L81.7999999999999 340.74C50.3899999999999 343.15 21.3599999999999 328.6 7.6399999999999 303.69C-4.0500000000001 282.52 -2.2700000000001 258.08 12.3899999999999 238.33L48.5199999999999 189.64C55.3299999999999 180.48 56.3999999999999 169.58 51.4299999999999 159.73L24.7699999999999 106.81C14.0799999999999 85.5899999999999 16.5199999999999 61.54 31.2699999999999 42.48C49.1499999999999 19.42 80.4899999999999 8.85 111.3299999999999 15.4499999999999L176.92 29.62C191.3 32.7099999999999 206.48 29.73 217.48 21.54L268.42 -16.3800000000001C282.3 -26.71 299.45 -32.02 316.83 -32.02C328.64 -32.02 340.55 -29.57 351.55 -24.55C374.99 -13.88 390.05 6.43 391.86 29.79L396.27 87.24C397.08 98.1299999999999 404.55 108.16 416.27 114.1L474.36 143.58C499.3 156.19 513.64 179.8 511.83 205.16C510.0000000000001 231.41 491.6300000000001 253.52 463.9400000000001 262.92zM459.91 172.14L401.8200000000001 142.66C380.0400000000001 131.64 366.0400000000001 111.83 364.35 89.6899999999999L359.94 32.2499999999999C358.69 15.5899999999999 344.4100000000001 7.36 338.31 4.5899999999999C321.53 -3.0200000000001 301.62 -1.1800000000001 287.56 9.2899999999999L236.62 47.2099999999999C222.96 57.3799999999999 205.68 62.8199999999999 188.09 62.8199999999999C182.09 62.8199999999999 176.09 62.1999999999999 170.18 60.9099999999999L104.59 46.7399999999999C81.65 41.7599999999999 64.43 51.9299999999999 56.59 62.0799999999999C52.4 67.4899999999999 46.4 78.6299999999999 53.34 92.4199999999999L80 145.33C90.47 166.08 88.31 189.78 74.22 208.74L38.09 257.41C28.37 270.49 32.4 282.33 35.65 288.24C43.37 302.2099999999999 60.9 310.12 79.34 308.85L146.75 303.63C171.09 301.79 194.53 310.24 210.25 326.33L253.5 370.6C264.88 382.24 283.56 386.79 300.9700000000001 382.19C315.7200000000001 378.33 326.4700000000001 368.78 329.6900000000001 356.66L344.6900000000001 300.52C350.4100000000001 279.19 367.6300000000001 261.79 390.7800000000001 253.93L453.6200000000001 232.62C469.1500000000001 227.35 479.0000000000001 216.26 479.9300000000001 202.93C480.8200000000001 190.45 473.3500000000001 178.95 459.9100000000001 172.14z" />
+    <glyph glyph-name="spray-can"
+      unicode="&#xF5BD;"
+      horiz-adv-x="512" d=" M224 320V416C224 433.67 209.67 448 192 448H128C110.33 448 96 433.67 96 416V320C42.98 320 0 277.02 0 224V-32C0 -49.67 14.33 -64 32 -64H288C305.67 -64 320 -49.67 320 -32V224C320 277.02 277.02 320 224 320zM128 416H192V320H128V416zM288 -32H32V224C32 259.29 60.71 288 96 288H224C259.29 288 288 259.29 288 224V-32zM160 208C115.82 208 80 172.18 80 128S115.82 48 160 48S240 83.82 240 128S204.18 208 160 208zM160 80C133.53 80 112 101.53 112 128S133.53 176 160 176S208 154.47 208 128S186.47 80 160 80zM488 368C501.25 368 512 378.75 512 392C512 405.26 501.25 416 488 416S464 405.26 464 392C464 378.75 474.75 368 488 368zM488 320C474.75 320 464 309.26 464 296C464 282.75 474.75 272 488 272S512 282.75 512 296C512 309.26 501.25 320 488 320zM392 416C378.75 416 368 405.26 368 392C368 378.75 378.75 368 392 368S416 378.75 416 392C416 405.26 405.25 416 392 416zM392 320C378.75 320 368 309.26 368 296C368 282.75 378.75 272 392 272S416 282.75 416 296C416 309.26 405.25 320 392 320zM296 416C282.75 416 272 405.26 272 392C272 378.75 282.75 368 296 368S320 378.75 320 392C320 405.26 309.25 416 296 416zM488 224C474.75 224 464 213.26 464 200C464 186.75 474.75 176 488 176S512 186.75 512 200C512 213.26 501.25 224 488 224z" />
+    <glyph glyph-name="square-full"
+      unicode="&#xF45C;"
+      horiz-adv-x="512" d=" M480 416V-32H32V416H480M512 448H0V-64H512V448z" />
+    <glyph glyph-name="square-root-alt"
+      unicode="&#xF698;"
+      horiz-adv-x="512" d=" M509.16 199.03L454.12 144L509.15 88.97C512.27 85.85 512.27 80.78 509.15 77.66L497.84 66.35C494.72 63.23 489.65 63.23 486.53 66.35L431.5 121.38L376.4700000000001 66.35C373.35 63.23 368.2800000000001 63.23 365.1600000000001 66.35L353.85 77.66C350.73 80.78 350.73 85.85 353.85 88.97L408.88 144L353.85 199.03C350.73 202.15 350.73 207.22 353.85 210.34L365.1600000000001 221.65C368.2800000000001 224.77 373.35 224.77 376.4700000000001 221.65L431.5 166.62L486.53 221.65C489.65 224.77 494.72 224.77 497.84 221.65L509.15 210.34C512.28 207.22 512.28 202.16 509.16 199.03zM211.97 -3.31L313.09 372.17C314.93 379.14 321.31 384 328.53 384H504C508.42 384 512 387.58 512 392V408C512 412.42 508.42 416 504 416H328.53C306.84 416 287.78 401.39 282.19 380.4700000000001L181.09 5.02C179.56 -0.46 170.75 -1.23 168.43 3.93L87.12 180.13C79.28 197.06 62.16 208 43.53 208H8C3.58 208 0 204.42 0 200V184C0 179.58 3.58 176 8 176H43.53C49.77 176 55.45 172.37 58.06 166.7L138.98 -8.63C143.24 -17.87 150.62 -25.67 160.13 -29.29C182.94 -37.99 206.17 -24.78 211.97 -3.31z" />
+    <glyph glyph-name="square-root"
+      unicode="&#xF697;"
+      horiz-adv-x="512" d=" M160.13 -29.29C150.62 -25.67 143.25 -17.86 138.98 -8.63L58.06 166.7C55.44 172.37 49.77 176 43.53 176H8C3.58 176 0 179.58 0 184V200C0 204.42 3.58 208 8 208H43.53C62.15 208 79.28 197.06 87.12 180.12L168.43 3.92C170.74 -1.24 179.55 -0.47 181.09 5.01L282.19 380.47C287.78 401.39 306.84 416 328.53 416H504C508.42 416 512 412.42 512 408V392C512 387.58 508.42 384 504 384H328.53C321.31 384 314.94 379.14 313.09 372.17L211.97 -3.31C206.17 -24.78 182.94 -37.99 160.13 -29.29z" />
+    <glyph glyph-name="square"
+      unicode="&#xF0C8;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16z" />
+    <glyph glyph-name="squirrel"
+      unicode="&#xF71A;"
+      horiz-adv-x="512" d=" M400 288C408.84 288 416 295.16 416 304S408.84 320 400 320S384 312.8400000000001 384 304S391.1600000000001 288 400 288zM463.74 29.81C473.95 46.31 480 63.64 480 80C480 114.12 451.12 150.66 403.2200000000001 158.47L413.1300000000001 208H463.85C492.66 208 512.01 230.0500000000001 512.01 262.86C512.01 322.67 469.39 374.0300000000001 415.85 382.7000000000001V416H399.85C349.7200000000001 416 315.76 374.92 294.48 335.94C270.98 396.79 207.09 448 144 448C64.59 448 0 383.41 0 304C0 232.94 51.75 173.73 119.53 162.0800000000001L105.81 133.67C99.31 116.48 96 99.09 96 81.98C96 1.48 161.47 -64 241.97 -64H480C497.68 -64 512 -49.67 512 -32C512 -2.17 491.4 22.74 463.74 29.81zM241.97 -32C179.12 -32 128 19.14 128 81.98C128 95.2000000000001 130.59 108.78 135.19 121.03L169.5 192H147.92C91 192 40.21 232.79 32.95 289.24C24.17 357.54 77.4 416 144 416C206.22 416 272 350.2 272 288L212.3 141.54C210.6 137.46 212.53 132.78 216.61 131.08L231.4 124.92C235.48 123.22 240.16 125.15 241.86 129.23L318.32 312.84C329.76 335.72 352.29 371.93 383.85 381.57V352H399.85C442.54 352 480.01 310.3400000000001 480.01 262.86C480.01 254.33 477.92 240 463.85 240H386.88L364.47 128H384C423.53 128 448 103.08 448 80C448 65.14 439.57 47.61 425.74 32H392C387.58 32 384 28.42 384 24V8C384 3.58 387.58 0 392 0H448C465.66 0 480 -14.36 480 -32H241.97z" />
+    <glyph glyph-name="staff"
+      unicode="&#xF71B;"
+      horiz-adv-x="512" d=" M432 448H355.77C325.47 448 297.77 430.88 284.22 403.78L268.22 371.78C264.27 363.88 267.47 354.27 275.37 350.32L332.62 321.69C334.92 320.54 337.36 320 339.76 320C345.63 320 351.2799999999999 323.24 354.08 328.85L365.67 352H416V276.2L258.7100000000001 231.26A176.122 176.122 0 0 1 182.6 186.48L156.12 160H112C103.16 160 96 152.84 96 144V99.88L7.03 10.9C-2.34 1.53 -2.34 -13.67 7.03 -23.04L40.96 -56.97C45.65 -61.66 51.79 -64 57.93 -64S70.21 -61.66 74.9 -56.97L250.45 118.58A80.111 80.111 0 0 0 285.07 138.95L369.89 163.19L402.14 144.57C404.66 143.11 407.41 142.42 410.12 142.42C415.65 142.42 421.0300000000001 145.29 423.99 150.42L443.5 184.22L453.96 187.21C488.3 197.0200000000001 511.98 228.4200000000001 511.98 264.1300000000001V368C512 412.18 476.18 448 432 448zM480 264.14C480 242.82 465.68 223.84 445.19 217.99L434.73 215L422.2800000000001 211.44L415.81 200.23L404.3 180.29L385.9000000000001 190.9L374.1500000000001 197.68L361.11 193.95L276.29 169.71A112.273 112.273 0 0 1 227.83 141.19L57.93 -28.69L35.31 -6.07L118.62 77.25L127.99 86.62V128H169.37L178.74 137.37L205.22 163.85A144.372 144.372 0 0 0 267.49 200.49L424.78 245.43L447.99 252.06V384H345.88L337.04 366.31L332.62 357.4600000000001L304 371.78L312.84 389.4700000000001C321.02 405.83 337.4700000000001 416 355.77 416H432C458.47 416 480 394.4700000000001 480 368V264.14z" />
+    <glyph glyph-name="stamp"
+      unicode="&#xF5BF;"
+      horiz-adv-x="512" d=" M416 192H349.44C333.18 192 320 205.18 320 221.44V230.9C320 258.27 328.88 284.32 341.46 308.63C350.57 326.24 354.36 347.01 350.51 369.05C343.74 407.83 312.04 439.75 273.25 446.5C267.4100000000001 447.51 261.65 448 256 448C202.98 448 160 405.02 160 352C160 337.8400000000001 163.12 324.4600000000001 168.68 312.43C182.02 283.57 192 253.29 192 221.5V221.44C192 205.18 178.82 192 162.56 192H96C42.98 192 0 149.02 0 96V64C0 46.33 14.33 32 32 32V-32C32 -49.67 46.33 -64 64 -64H448C465.67 -64 480 -49.67 480 -32V32C497.67 32 512 46.33 512 64V96C512 149.02 469.02 192 416 192zM448 -32H64V32H448V-32zM480 64H32V96C32 131.29 60.71 160 96 160H162.56C196.44 160 224 187.56 224 221.5C224 253.92 215.65 287.08 197.73 325.85C193.93 334.08 192 342.88 192 352C192 387.29 220.71 416 256 416C259.88 416 263.83 415.65 267.76 414.9700000000001C293 410.58 314.55 388.95 318.98 363.55C321.43 349.51 319.37 335.6 313.0300000000001 323.3400000000001C296.19 290.77 288 260.53 288 230.9V221.44C288 187.56 315.56 160 349.44 160H416C451.29 160 480 131.29 480 96V64z" />
+    <glyph glyph-name="star-and-crescent"
+      unicode="&#xF699;"
+      horiz-adv-x="512" d=" M340.4700000000001 -18.36C339.0200000000001 -18.36 333.5800000000001 -18.82 331.29 -18.82C215.04 -18.82 120.47 75.75 120.47 192S215.04 402.82 331.29 402.82C333.61 402.82 338.99 402.36 340.4700000000001 402.36C347.6 402.36 353.8 407.39 355.2200000000001 414.43C356.68 421.68 352.67 428.92 345.75 431.52C316.58 442.46 286.39 448 256 448C114.84 448 0 333.16 0 192S114.84 -64 256 -64C286.23 -64 316.28 -58.51 345.32 -47.68C351.28 -45.66 355.6 -40.04 355.6 -33.42C355.6 -25.33 349.21 -18.36 340.47 -18.36zM32 192C32 308.55 121.46 404.5900000000001 235.33 415.05C149.02 377.78 88.47 291.8300000000001 88.47 192C88.47 92.17 149.02 6.22 235.34 -31.05C121.47 -20.59 32 75.45 32 192zM503.46 234.14L427.08 245.24L392.92 314.45C391.09 318.15 387.54 320 383.99 320S376.89 318.15 375.06 314.45L340.9 245.24L264.52 234.14C256.35 232.96 253.09 222.92 259 217.15L314.27 163.28L301.22 87.21C300.11 80.77 305.23 75.55 311.03 75.55C312.56 75.55 314.14 75.91 315.67 76.72L384 112.63L452.31 76.72C453.84 75.92 455.42 75.55 456.95 75.55C462.75 75.55 467.87 80.78 466.76 87.21L453.71 163.28L508.98 217.15C514.89 222.9200000000001 511.6299999999999 232.9600000000001 503.46 234.1400000000001zM431.38 186.2L419.33 174.46L422.17 157.88L427.67 125.83L398.89 140.96L384 148.79L369.11 140.96L340.3300000000001 125.83L345.8300000000001 157.88L348.67 174.46L336.62 186.2L313.3400000000001 208.9L345.5200000000001 213.58L362.17 216L369.62 231.09L384 260.24L398.39 231.08L405.84 215.99L422.49 213.57L454.67 208.89L431.38 186.2z" />
+    <glyph glyph-name="star-christmas"
+      unicode="&#xF7D4;"
+      horiz-adv-x="512" d=" M493.7 215.6L353.5 250.6L420.4 333.9C425.6 340.4 425.1 349.4 419.3 355.2C413.4 361 404.5 361.5 398 356.3L314.5999999999999 289.6L279.5999999999999 429.6C273.4999999999999 453.9999999999999 238.5999999999999 453.9999999999999 232.3999999999999 429.6L197.3999999999999 289.4L114.0999999999999 356.4C107.5999999999999 361.6 98.5999999999999 361.2 92.7999999999999 355.3C86.9999999999999 349.5 86.4999999999999 340.5 91.6999999999999 333.9L158.3999999999999 250.5L18.3999999999999 215.5C7.5 212.8 0 203.3 0 192C0 181.8 6.5 171.3 18.4 168.4L158.6 133.4L91.7 50.1C86.5 43.6 87 34.6 92.8 28.8C98.4 23.3 107.3 22.3 114.1 27.6999999999999L197.5 94.3999999999999L232.5 -45.6000000000001C235.5 -57.5000000000001 245.8 -64.0000000000001 256.1 -64.0000000000001C260.6 -64.0000000000001 275.5 -61.9000000000001 279.7000000000001 -45.6000000000001L314.7000000000001 94.5999999999999L398.0000000000001 27.5999999999999C404.9000000000001 22.0999999999999 413.8000000000001 23.1999999999999 419.3000000000001 28.6999999999999C425.1000000000001 34.4999999999999 425.6000000000001 43.4999999999999 420.4000000000001 49.9999999999999L353.7000000000001 133.3999999999999L493.6000000000001 168.3999999999999C505.3000000000001 171.2999999999999 512.1000000000001 181.4999999999999 512.1000000000001 191.9999999999999C512.0000000000001 202.2999999999999 505.5000000000001 212.5999999999999 493.7000000000002 215.5999999999999zM296 152L256 -8L216 152L56 192L216 232L256 392L296 232L456 192L296 152z" />
+    <glyph glyph-name="star-exclamation"
+      unicode="&#xF2F3;"
+      horiz-adv-x="576" d=" M260.2 289.7C260 293.1 262.7 296 266.2 296H309.8C313.2 296 316 293.1 315.8 289.7L308.5 157.7C308.3 154.5 305.7 152 302.5 152H273.6C270.4000000000001 152 267.8 154.5 267.6 157.7L260.2000000000001 289.7zM288 128C270.3 128 256 113.7 256 96S270.3 64 288 64S320 78.3 320 96S305.7 128 288 128zM545.9 222L440.1 119L465.1 -26.5C469.6 -52.7 442 -72.5 418.7000000000001 -60.2L288 8.4L157.3 -60.3C133.9 -72.6 106.4 -52.7 110.9 -26.6L135.9 118.9L30.1 222C11.1 240.5 21.6 272.8 47.8 276.6L194 297.8L259.3 430.2000000000001C271.1 454 305 453.9 316.7 430.2000000000001L382 297.8L528.1 276.6C554.3000000000001 272.8 564.8000000000001 240.5000000000001 545.9 222zM523.5 244.9L360.8 268.6L288 416L215.2 268.6L52.5 244.9L170.2 130.1L142.4 -31.9L288 44.6L433.5 -31.9L405.7 130.1L523.5 244.9000000000001z" />
+    <glyph glyph-name="star-half-alt"
+      unicode="&#xF5C0;"
+      horiz-adv-x="536" d=" M417.28 289.78L362.16 297.81L337.52 347.65L308.78 333.49L340.88 268.55L412.66 258.11L417.28 289.7800000000001zM404.41 22.6900000000001L413.85 -31.9299999999999L364.85 -6.23L349.95 -34.54L398.97 -60.26C403.67 -62.71 408.65 -63.96 413.76 -63.96C423.11 -63.96 432.36 -59.63 438.47 -52.4C443.34 -46.6799999999999 445.91 -39.6799999999999 445.91 -32.1799999999999L436.02 28.1L404.41 22.69zM275.3 40.42C270.8 42.77 265.39 43.21 260.5300000000001 40.67L122.15 -31.95L150.0500000000001 130.0800000000001L32.07 244.86L195.11 268.56L267.9100000000001 416C267.94 416 267.9600000000001 416.02 267.99 416.02V416L288.45 374.61L317.19 388.77L296.73 430.18C291.28 441.17 280.24 448 267.9100000000001 448C255.4600000000001 448 244.76 441.34 239.23 430.19L173.82 297.81L27.4 276.52C15.3 274.74 5.4 266.4 1.58 254.71C-2.21 243.04 0.91 230.46 9.7 221.93L115.6 118.93L90.54 -26.57C88.94 -36.02 91.42 -45.21 97.51 -52.41C103.63 -59.66 112.85 -63.9899999999999 122.18 -63.9899999999999C127.28 -63.9899999999999 132.26 -62.7399999999999 137.04 -60.2399999999999L267.99 8.46L317.31 -17.41L332.21 10.9L275.44 40.6800000000001L275.3 40.4200000000001zM534.37 254.7C530.6 266.37 520.69 274.73 508.52 276.51L453.57 284.51L448.94 252.85L503.89 244.83L464.22 206.24L486.61 183.33L526.2199999999999 221.86C532.5299999999999 227.94 536.0099999999999 236.03 536.0099999999999 244.66C535.9999999999999 248.08 535.4399999999998 251.48 534.3699999999999 254.7zM385.92 130.08L398.2100000000001 58.72L429.8 64.13L420.36 118.93L460.25 157.73L437.86 180.6400000000001L385.92 130.0800000000001z" />
+    <glyph glyph-name="star-half"
+      unicode="&#xF089;"
+      horiz-adv-x="576" d=" M288 44.6L142.5 -31.9L170.3 130.1L52.5 244.9L215.2 268.5L288 416V448C276.6 448 265.2 442.1 259.3 430.2L194 297.8L47.9 276.6C21.7 272.8 11.2 240.5 30.2 222L135.9 119L110.9 -26.5C106.4 -52.6 133.9 -72.5 157.3 -60.2L288 8.4V44.6z" />
+    <glyph glyph-name="star-of-david"
+      unicode="&#xF69A;"
+      horiz-adv-x="464" d=" M405.68 192L458.89 281.39C473.3 305.6 455.48 336 426.88 336H319.96L264.01 429.98C256.86 441.99 244.43 448 232 448S207.14 441.99 199.99 429.98L144.04 336H37.11C8.51 336 -9.31 305.6 5.1 281.39L58.32 192L5.1 102.61C-9.31 78.4 8.51 48 37.11 48H144.04L199.99 -45.98C207.14 -57.99 219.57 -64 232 -64S256.86 -57.99 264.01 -45.98L319.96 48H426.89C455.49 48 473.31 78.4 458.9 102.61L405.68 192zM426.89 304C428.99 304 430.52 303.17 431.45 301.54C432.53 299.65 431.77 298.38 431.41 297.76L387.07 223.28L339.01 304H426.89zM368.44 192L301.77 80H162.23L95.56 192L162.23 304H301.77L368.44 192zM227.49 413.62C228.43 415.2 229.95 416 232 416S235.57 415.2 236.51 413.62L282.7200000000001 336H181.28L227.49 413.62zM32.6 297.76C32.23 298.37 31.48 299.64 32.55 301.54C33.48 303.18 35.01 304 37.11 304H124.99L76.94 223.28L32.6 297.76zM37.11 80C35.01 80 33.48 80.83 32.55 82.46C31.47 84.35 32.23 85.63 32.59 86.24L76.93 160.72L124.99 80H37.11zM236.51 -29.61C235.57 -31.19 234.05 -32 232 -32S228.43 -31.2 227.49 -29.62L181.28 48H282.7200000000001L236.51 -29.61zM431.45 82.46C430.52 80.83 428.99 80 426.89 80H339.01L387.06 160.72L431.4 86.24C431.76 85.63 432.52 84.36 431.45 82.46z" />
+    <glyph glyph-name="star-of-life"
+      unicode="&#xF621;"
+      horiz-adv-x="480" d=" M271.74 416V247.42L319.3400000000001 275.13L416.5200000000001 331.7L448.2600000000001 276.27L351.0800000000001 219.7L303.4700000000001 192L351.0700000000001 164.29L448.2500000000001 107.72L416.5100000000001 52.29L319.3300000000001 108.86L271.73 136.57V-32H208.26V136.58L160.66 108.87L63.48 52.3L31.74 107.73L128.92 164.3L176.52 192.01L128.92 219.72L31.74 276.29L63.48 331.7200000000001L160.66 275.1500000000001L208.26 247.4400000000001V416H271.74M271.74 448H208.27C190.74 448 176.53 433.67 176.53 416V302.85L79.35 359.43C74.35 362.3400000000001 68.89 363.7200000000001 63.51 363.7200000000001C52.54 363.7200000000001 41.88 357.98 36 347.7100000000001L4.26 292.29C-4.5 276.99 0.7 257.41 15.88 248.58L113.06 192L15.88 135.43C0.7 126.59 -4.5 107.02 4.26 91.72L36 36.29A31.68 31.68 0 0 1 63.52 20.28C68.9 20.28 74.36 21.66 79.36 24.5700000000001L176.54 81.14V-32C176.54 -49.67 190.75 -64 208.28 -64H271.75C289.28 -64 303.49 -49.67 303.49 -32V81.15L400.67 24.58C405.67 21.67 411.12 20.29 416.51 20.29A31.68 31.68 0 0 1 444.03 36.3L475.77 91.73C484.53 107.04 479.33 126.61 464.15 135.44L366.94 192L464.12 248.57C479.3 257.41 484.5 276.98 475.74 292.28L444 347.71A31.677000000000003 31.677000000000003 0 0 1 416.49 363.7200000000001C411.11 363.7200000000001 405.6500000000001 362.3400000000001 400.6500000000001 359.43L303.4700000000001 302.86V416C303.4700000000001 433.67 289.2600000000001 448 271.74 448z" />
+    <glyph glyph-name="star"
+      unicode="&#xF005;"
+      horiz-adv-x="576" d=" M528.1 276.5L382 297.8L316.7 430.2C305 453.8 271.1 454.1 259.3 430.2L194 297.8L47.9 276.5C21.7 272.7 11.2 240.4 30.2 221.9L135.9 118.9L110.9 -26.6C106.4 -52.9 134.1 -72.6 157.3 -60.3L288 8.4L418.7 -60.3C441.9 -72.5 469.6 -52.9 465.1 -26.6L440.1 118.9L545.8 221.9C564.8 240.4 554.3 272.7 528.0999999999999 276.5zM405.8 130.1L433.6 -31.9L288 44.5L142.5 -32L170.3 130L52.5 244.9L215.2 268.5L288 416L360.8 268.5L523.5 244.9L405.8 130.1z" />
+    <glyph glyph-name="stars"
+      unicode="&#xF762;"
+      horiz-adv-x="512" d=" M364.3 181.1L259.4 196.4L212.5 291.7000000000001C208.3 300.2000000000001 200.1 304.5000000000001 191.9 304.5000000000001C183.7 304.5000000000001 175.6 300.3000000000001 171.4 291.7000000000001L124.5 196.4L19.7 181.1C0.9 178.4 -6.6 155.1 7 141.8L82.9 67.7000000000001L64.9 -36.9999999999999C62.3 -51.9999999999999 74.2 -63.9999999999999 87.5 -63.9999999999999C91 -63.9999999999999 94.7 -63.1999999999999 98.2 -61.2999999999999L192 -11.9L285.8 -61.2999999999999C289.3 -63.1 292.9000000000001 -63.9999999999999 296.4000000000001 -63.9999999999999C309.7000000000001 -63.9999999999999 321.6 -51.9999999999999 319.1 -37.1L301.2000000000001 67.6L377.1 141.7000000000001C390.7000000000001 155.1 383.1 178.3000000000001 364.3 181.1zM278.8 90.6L266.8 78.8L269.6 62.2L284.4000000000001 -24.4L206.8000000000001 16.5L191.9 24.4L177 16.5L99.4 -24.4L114.2 62.2000000000001L117 78.8000000000001L105 90.6000000000001L42.3 152L129.1 164.7L145.7 167.1L153.1 182.2L192 261L230.8 182.2L238.2 167.1L254.8 164.7L341.6 152L278.8 90.6zM248.8 338.2000000000001L297.4000000000001 313.9L321.7000000000001 265.3C324.4000000000001 259.9 329.9000000000001 256.4 336.0000000000001 256.4S347.6000000000001 259.8 350.3000000000001 265.3L374.6000000000001 313.9L423.2000000000001 338.2C428.6000000000001 340.9 432.0000000000001 346.5 432.0000000000001 352.5S428.6000000000002 364.1 423.2000000000001 366.8L374.6000000000001 391.1L350.3000000000001 439.9C344.9000000000001 450.8 327.1000000000001 450.8 321.7000000000001 439.9L297.4000000000001 391.3L248.8 367C243.4 364.3 240 358.7 240 352.7S243.4 341 248.8 338.2zM316.5 365C319.6 366.5 322.1 369.1 323.7 372.2L336 396.9L348.3 372.2C349.9000000000001 369.1 352.4000000000001 366.6 355.5 365L380.2 352.6L355.5 340.2C352.4 338.7 349.9 336.1 348.3 333L336 308.3L323.7 333C322.1 336.1 319.6 338.6 316.5 340.2L291.8 352.6L316.5 365zM480 256.4L464 288.4L448 256.4L416 240.4L448 224.4L464 192.4L480 224.4L512 240.4L480 256.4z" />
+    <glyph glyph-name="steering-wheel"
+      unicode="&#xF622;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 408C367.1 408 463.99 311.11 464 192.02H358.38C350.94 228.48 318.64 256 280 256H216C177.36 256 145.06 228.48 137.62 192.02H32C32.01 311.11 128.9 408 248 408zM242.34 108.3L174.84 175.78C170.22 180.4 168.9 187.3800000000001 171.29 193.46C178.29 211.3200000000001 195.7 224 216 224H280C300.3 224 317.71 211.32 324.71 193.46C327.1 187.3700000000001 325.78 180.4 321.16 175.78L253.66 108.3A7.997 7.997 0 0 0 242.34 108.3zM34.64 160.02H145.36L232 73.39V-23.19C131.06 -15.73 49.4 61.26 34.64 160.02zM264 -23.19V73.39L350.64 160.02H461.36C446.6 61.26 364.94 -15.73 264 -23.19z" />
+    <glyph glyph-name="step-backward"
+      unicode="&#xF048;"
+      horiz-adv-x="448" d=" M76 -31H84C90.6 -31 96 -25.6 96 -19V171.3C97.1 170.1 98.2 168.9 99.5 167.9L331.5 -23.5C352.1 -40.7 384 -26.3 384 1.1V385C384 412.4 352.1 426.8 331.5 409.6L99.5 217C98.2 215.9 97.1 214.8 96 213.6V405C96 411.6 90.6 417 84 417H76C69.4 417 64 411.6 64 405V-19C64 -25.6 69.4 -31 76 -31zM116.5 192.4L351.8 384.8L351.9000000000001 384.9L352.0000000000001 385V1L351.9000000000001 1.1L351.7000000000001 1.2L116.5000000000001 192.4z" />
+    <glyph glyph-name="step-forward"
+      unicode="&#xF051;"
+      horiz-adv-x="448" d=" M372 417H364C357.4 417 352 411.6 352 405V214.7C350.9 215.9 349.8 217.1 348.5 218.1L116.5 409.5C95.9 426.7 64 412.4 64 385V1C64 -26.4 95.9 -40.8 116.5 -23.6L348.5 169C349.8 170.1 350.9 171.2 352 172.4V-19C352 -25.6 357.4 -31 364 -31H372C378.6 -31 384 -25.6 384 -19V405C384 411.6 378.6 417 372 417zM331.5 193.6L96.2 1.2L96.1 1.1L96 0.9999999999999V385L96.1 384.9L96.3 384.8L331.5 193.6z" />
+    <glyph glyph-name="stethoscope"
+      unicode="&#xF0F1;"
+      horiz-adv-x="512" d=" M430.1 351.5C386.5 350.5 351.4000000000001 314 352 270.4C352.5 232.2 379.8 200.5 416 193.2V87.6C416 21.7 358.6 -31.9 288 -31.9S160 21.7 160 87.6V96.5C231.9 104.5 288 165.6 288 239.6V422.2C288 427.7 284.3 432.5 278.9 433.8L223.5 447.6C217.1 449.2 210.6 445.3 208.9 438.9L207 431.1C205.4 424.7 209.3 418.2 215.7 416.5L256 406.5V240.7C256 178.9 206.5 127.8 144.7 127.5C82.6 127.1 32 177.5 32 239.5V406.5L72.2 416.6C78.6 418.2 82.5 424.7 80.9 431.2L79 438.9C77.4 445.3 70.9 449.2 64.4 447.6L9.1 433.8C3.7 432.5 0 427.7 0 422.2V239.6C0 165.6 56.1 104.5 128 96.5V87.6C128 4 199.8 -64 288 -64S448 4 448 87.5V193.1C484.5 200.5 512 232.8 512 271.5C512 316.4 475.1 352.6 430.1 351.5zM432 223.5C405.5 223.5 384 245 384 271.5S405.5 319.5 432 319.5S480 298 480 271.5S458.5 223.5 432 223.5zM455.5 271.5C455.5 258.5 445 248 432 248S408.5 258.5 408.5 271.5S419 295 432 295S455.5 284.5 455.5 271.5z" />
+    <glyph glyph-name="sticky-note"
+      unicode="&#xF249;"
+      horiz-adv-x="448" d=" M448 99.894V368C448 394.51 426.51 416 400 416H48C21.49 416 0 394.51 0 368V16.012C0 -10.498 21.49 -31.988 48 -31.988H316.118A48 48 0 0 1 350.059 -17.929L433.941 65.953A48 48 0 0 1 448 99.894zM327.431 4.698A15.890000000000002 15.890000000000002 0 0 0 320 0.503V96.012H415.509A15.879999999999999 15.879999999999999 0 0 0 411.314 88.581L327.4310000000001 4.698zM416 368V128.012H312C298.745 128.012 288 117.267 288 104.012V0.012H48C39.163 0.012 32 7.175 32 16.012V368C32 376.837 39.163 384 48 384H400C408.837 384 416 376.837 416 368z" />
+    <glyph glyph-name="stocking"
+      unicode="&#xF7D5;"
+      horiz-adv-x="384" d=" M352 448H96C78.3 448 64 433.7 64 416V352C64 334.3 78.3 320 96 320V196.5L57 170.5C-1.8 131.3 -17.7 51.8 21.5 -7C46.2 -44 86.7 -64 128.1 -64C152.5 -64 177.2 -57 199 -42.5L280.7 12C325.3 41.7 351.9 91.5 351.9 145.1V320C369.6 320 383.9 334.3 383.9 352V416C384 433.7 369.7 448 352 448zM320 145.1C320 102.2000000000001 298.7 62.4 263 38.6L181.2 -15.9C165.4 -26.5 147 -32 128.1 -32C95.9 -32 65.9 -16 48.1 10.8C33.9 32.1 28.8 57.7 33.8 82.9C38.8 108 53.3 129.7 74.7 143.9L113.7 169.9L127.9 179.4V320H319.9V145.1zM352 352H96V416H352V352z" />
+    <glyph glyph-name="stomach"
+      unicode="&#xF623;"
+      horiz-adv-x="512" d=" M401.07 349.73C342.35 360.33 289.25 332.77 261.1 288H240C195.82 288 160 323.82 160 368V440C160 444.42 156.42 448 152 448H136C131.58 448 128 444.42 128 440V368C128 306.14 178.14 256 240 256H246.7C242.75 243.27 240 230.01 240 216V160C240 115.82 204.18 80 160 80H112C50.14 80 0 29.86 0 -32V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V-32C32 0.35 51.31 28.29 79.01 40.88C90.14 45.94 103.37 42.93 112.41 34.69L174.72 -22.09C208 -49.11 249.94 -64 292.78 -64C413.6600000000001 -64 512 34.34 512 155.22V211.05C512 277.5 466.47 337.93 401.07 349.73zM376 320C433.3400000000001 320 480 273.3400000000001 480 216V155.22C480 143.15 478.75 131.37 476.55 119.93C445.2200000000001 104.9 408.36 112.09 383.7800000000001 138.83C354.12 171.07 311.5600000000001 182.72 272 171.74V216C272 273.3400000000001 318.66 320 376 320zM292.78 -32C257.25 -32 222.5 -19.66 195.59 2.16L145.31 48H160C213.87 48 258.94 86.26 269.58 137.01C300.42 150.69 336.19 143.32 360.22 117.17C382.69 92.73 412.6 79.92 442.97 79.92C450.46 79.92 457.94 81.16 465.38 82.73C436.99 15.39 370.32 -32 292.78 -32z" />
+    <glyph glyph-name="stop-circle"
+      unicode="&#xF28D;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24C137.3 -24 40 72.1 40 192zM336 288H176C167.2 288 160 280.8 160 272V112C160 103.2 167.2 96 176 96H336C344.8 96 352 103.2 352 112V272C352 280.8 344.8 288 336 288zM320 128H192V256H320V128z" />
+    <glyph glyph-name="stop"
+      unicode="&#xF04D;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16z" />
+    <glyph glyph-name="stopwatch"
+      unicode="&#xF2F2;"
+      horiz-adv-x="448" d=" M393.3 306.7L410.8 324.2C415.5 328.9 415.5 336.5 410.8 341.2L405.1 346.9C400.4000000000001 351.6 392.8 351.6 388.1 346.9L370.6 329.4C334.8 360.4 289.1 380.3 238.9000000000001 383.6V416H263.9000000000001C270.5000000000001 416 275.9000000000001 421.4 275.9000000000001 428V436C275.9000000000001 442.6 270.5000000000001 448 263.9000000000001 448H183.9C177.3000000000001 448 171.9 442.6 171.9 436V428C171.9 421.4 177.3000000000001 416 183.9 416H206.9V383.4C91.2 374.7 0 278 0 160C0 36.3 100.3 -64 224 -64S448 36.3 448 160C448 216.1 427.4 267.4 393.3 306.7zM224 -32C117.9 -32 32 53.9 32 160S117.9 352 224 352S416 266.1 416 160S330.1 -32 224 -32zM228 96H220C213.4 96 208 101.4 208 108V276C208 282.6 213.4 288 220 288H228C234.6 288 240 282.6 240 276V108C240 101.4 234.6 96 228 96z" />
+    <glyph glyph-name="store-alt"
+      unicode="&#xF54F;"
+      horiz-adv-x="640" d=" M635.7 271.9L544.3000000000001 431.9C538.6 441.8 528 448 516.5 448H123.5C112 448 101.4 441.8 95.7 431.9L4.3 271.9C-7.9 250.5 7.4 224 32 224H64V-30.5C64 -49 78.3 -64 96 -64H352C369.7 -64 384 -49 384 -30.5V224H544V-56C544 -60.4 547.6 -64 552 -64H568C572.4 -64 576 -60.4 576 -56V224H608C632.6 224 647.9 250.5 635.7 271.9zM352 -30.5C352 -31.4 351.7 -31.9 351.8 -32L96.6 -32.2S96 -31.7 96 -30.5V96H352V-30.5zM352 128H96V224H352V128zM32.1 256L123.5 416H516.5L608 256H32.1z" />
+    <glyph glyph-name="store"
+      unicode="&#xF54E;"
+      horiz-adv-x="616" d=" M602 329.4L537.1 433C531.3 442.3 521 448 510 448H106C95 448 84.7 442.3 78.9 433L14 329.4C-15.6 282.2 4 218.8 52 198.6V-28.8C52 -48.2 66.3 -64 84 -64H532C549.7 -64 564 -48.2 564 -28.8V198.6C612 218.8 631.6 282.2 602 329.4zM531.8 -32L85.1999999999999 -32.3C84.8999999999999 -32.1 83.9999999999999 -31 83.9999999999999 -28.8V192H86.4999999999999C116.0999999999999 192 142.2999999999999 205 160.2999999999999 225.1C178.2999999999999 205 204.5999999999999 192 234.0999999999999 192C263.7 192 289.8999999999999 205 307.8999999999999 225.1C325.8999999999999 205 352.2 192 381.7 192C411.3 192 437.5 205 455.4999999999999 225.1C473.6 205 499.8 192 529.4 192H531.9V128H84V96H532V-28.8C532 -30.8 531.2 -31.9 531.8 -32zM578.1999999999999 254.5C570.4 237.9 556.0999999999999 227 538.9 224.7C535.8 224.3 532.6999999999999 224.1 529.5 224.1C510.2 224.1 492.5 232.1 479.5 246.6L455.7 273L431.9 246.4C418.9 231.9 401.2 223.9 381.9 223.9S344.9 231.9 331.9 246.4L308 273L284.2 246.4C271.2 231.9 253.5 223.9 234.2 223.9S197.2 231.9 184.2 246.4L160.3 273L136.5 246.4C123.5 231.9 105.8 223.9 86.5 223.9C83.3 223.9 80.2 224.1 77.1 224.5C59.9 226.8 45.6 237.7 37.8 254.3C29.1 272.9 30.3 295.1 41.1 312.2000000000001L106 416H510L574.9 312.4C585.6999999999999 295.2000000000001 586.9 273.1 578.1999999999999 254.5z" />
+    <glyph glyph-name="stream"
+      unicode="&#xF550;"
+      horiz-adv-x="512" d=" M8 320H440C444.42 320 448 323.58 448 328V344C448 348.42 444.42 352 440 352H8C3.58 352 0 348.42 0 344V328C0 323.58 3.58 320 8 320zM504 208H72C67.58 208 64 204.42 64 200V184C64 179.58 67.58 176 72 176H504C508.42 176 512 179.58 512 184V200C512 204.42 508.42 208 504 208zM440 64H8C3.58 64 0 60.42 0 56V40C0 35.58 3.58 32 8 32H440C444.42 32 448 35.58 448 40V56C448 60.42 444.42 64 440 64z" />
+    <glyph glyph-name="street-view"
+      unicode="&#xF21D;"
+      horiz-adv-x="512" d=" M368 87.85V56.98C430.27 48.56 472 33.38 472 15.99C472 -10.52 375.29 -32.01 256 -32.01S40 -10.51 40 16C40 33.38 81.73 48.56 144 56.99V87.86C58.82 74.86 0 47.61 0 16C0 -28.18 114.62 -64 256 -64S512 -28.18 512 16C512 47.61 453.18 74.86 368 87.85zM176 128V48C176 21.53 197.53 0 224 0H288C314.4700000000001 0 336 21.53 336 48V128C362.4700000000001 128 384 149.53 384 176V240C384 274.53 361.89 303.75 331.18 314.93C339.14 328.16 344 343.46 344 360C344 408.52 304.52 448 256 448S168 408.52 168 360C168 343.4600000000001 172.86 328.16 180.82 314.93C150.11 303.75 128 274.53 128 240V176C128 149.53 149.53 128 176 128zM256 416C286.93 416 312 390.93 312 360S286.93 304 256 304S200 329.07 200 360S225.07 416 256 416zM160 240C160 265.76 180.44 286.68 205.93 287.79C220.17 277.89 237.38 272 256 272S291.83 277.89 306.07 287.79C331.56 286.68 352 265.76 352 240V176C352 167.17 344.81 160 336 160H304V48C304 39.17 296.81 32 288 32H224C215.19 32 208 39.17 208 48V160H176C167.19 160 160 167.17 160 176V240z" />
+    <glyph glyph-name="strikethrough"
+      unicode="&#xF0CC;"
+      horiz-adv-x="512" d=" M500 176H12C5.373 176 0 181.373 0 188V196C0 202.627 5.373 208 12 208H500C506.627 208 512 202.627 512 196V188C512 181.373 506.627 176 500 176zM300.754 160C334.858 142.312 358.9700000000001 119.016 358.9700000000001 76.99C358.9700000000001 19.333 313.0010000000001 -10.231 254.11 -10.231C211.066 -10.231 152.399 7.503 152.399 50.531V60C152.399 66.627 147.026 72 140.399 72H129.679C123.052 72 117.679 66.627 117.679 60V44.23C117.679 -15.852 194.244 -43.061 254.11 -43.061C332.7030000000001 -43.061 394.3210000000001 3.571 394.3210000000001 80.771C394.3210000000001 116.483 382.451 141.293 363.718 160H300.754zM163.367 224H237.7150000000001C194.358 241.896 161.85 261.601 161.85 308.203C161.85 361.0470000000001 205.49 387.233 257.891 387.233C289.899 387.233 348.261 374.635 348.261 342.853V332C348.261 325.373 353.634 320 360.261 320H370.9820000000001C377.6090000000001 320 382.9820000000001 325.373 382.9820000000001 332V351.673C382.9820000000001 396.094 318.5320000000001 420.064 257.891 420.064C185.365 420.064 126.499 378.839 126.499 305.053C126.499 266.839 141.312 242 163.367 224z" />
+    <glyph glyph-name="stroopwafel"
+      unicode="&#xF551;"
+      horiz-adv-x="512" d=" M256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM256 -32C132.49 -32 32 68.49 32 192S132.49 416 256 416S480 315.51 480 192S379.51 -32 256 -32zM414.39 192L442.67 220.28C445.79 223.4 445.79 228.47 442.67 231.59L431.36 242.9C428.24 246.02 423.17 246.02 420.05 242.9L391.77 214.62L346.51 259.87L369.14 282.5L386.11 265.53C389.23 262.41 394.3 262.41 397.42 265.53L408.73 276.8400000000001C411.85 279.9600000000001 411.85 285.03 408.73 288.15L391.76 305.12L397.42 310.78C400.54 313.9 400.54 318.9700000000001 397.42 322.0900000000001L386.11 333.4C382.99 336.52 377.92 336.52 374.8 333.4L369.14 327.74L352.17 344.7100000000001C349.05 347.8300000000001 343.98 347.8300000000001 340.86 344.7100000000001L329.55 333.4C326.43 330.28 326.43 325.2100000000001 329.55 322.0900000000001L346.52 305.12L323.89 282.49L278.63 327.74L306.92 356.02C310.04 359.14 310.04 364.2100000000001 306.92 367.3300000000001L295.6 378.68C292.48 381.8 287.4100000000001 381.8 284.29 378.68L256 350.39L227.71 378.68C224.59 381.8 219.52 381.8 216.4 378.68L205.09 367.37C201.97 364.25 201.97 359.18 205.09 356.06L233.38 327.78L188.13 282.53L165.5 305.16L182.47 322.13C185.59 325.25 185.59 330.32 182.47 333.44L171.16 344.75C168.04 347.87 162.97 347.87 159.85 344.75L142.88 327.78L137.22 333.44C134.1 336.56 129.03 336.56 125.91 333.44L114.6 322.13C111.48 319.01 111.48 313.94 114.6 310.82L120.26 305.16L103.29 288.19C100.17 285.07 100.17 280 103.29 276.88L114.6 265.57C117.72 262.45 122.79 262.45 125.91 265.57L142.88 282.54L165.51 259.91L120.26 214.66L91.97 242.94C88.85 246.06 83.78 246.06 80.66 242.94L69.32 231.6C66.2 228.48 66.2 223.41 69.32 220.29L97.61 192L69.32 163.71C66.2 160.59 66.2 155.52 69.32 152.4L80.63 141.09C83.75 137.97 88.82 137.97 91.94 141.09L120.23 169.37L165.48 124.12L142.85 101.49L125.88 118.46C122.76 121.5800000000001 117.69 121.5800000000001 114.57 118.46L103.26 107.15C100.14 104.03 100.14 98.96 103.26 95.84L120.23 78.87L114.57 73.21C111.45 70.09 111.45 65.02 114.57 61.9L125.88 50.59C129 47.47 134.07 47.47 137.19 50.59L142.85 56.25L159.82 39.28C162.94 36.16 168.01 36.16 171.13 39.28L182.44 50.59C185.56 53.71 185.56 58.78 182.44 61.9L165.47 78.87L188.1 101.5L233.36 56.24L205.07 27.95C201.95 24.83 201.95 19.76 205.07 16.64L216.38 5.33C219.5 2.21 224.57 2.21 227.69 5.33L256 33.61L284.29 5.32C287.4100000000001 2.2 292.48 2.2 295.6 5.32L306.9100000000001 16.63C310.0300000000001 19.75 310.0300000000001 24.82 306.9100000000001 27.94L278.62 56.23L323.88 101.49L346.51 78.86L329.54 61.89C326.42 58.77 326.42 53.7 329.54 50.58L340.85 39.27C343.97 36.15 349.04 36.15 352.16 39.27L369.13 56.24L374.79 50.58C377.9100000000001 47.46 382.98 47.46 386.1 50.58L397.4100000000001 61.89C400.5300000000001 65.01 400.5300000000001 70.08 397.4100000000001 73.2L391.75 78.86L408.7200000000001 95.83C411.8400000000001 98.9500000000001 411.8400000000001 104.02 408.7200000000001 107.14L397.4100000000001 118.4500000000001C394.29 121.5700000000001 389.2200000000001 121.5700000000001 386.1 118.4500000000001L369.13 101.48L346.5 124.11L391.75 169.36L420.04 141.0800000000001C423.1600000000001 137.96 428.23 137.96 431.35 141.0800000000001L442.6600000000001 152.3900000000001C445.7800000000001 155.5100000000001 445.7800000000001 160.5800000000001 442.6600000000001 163.7000000000001L414.39 192zM256 305.14L301.25 259.89L256 214.63L210.75 259.88L256 305.14zM142.86 192L188.11 237.26L233.37 192L188.11 146.74L142.86 192zM256 78.86L210.74 124.12L256 169.38L301.26 124.12L256 78.86zM323.88 146.75L278.63 192L323.89 237.25L369.14 192L323.88 146.75z" />
+    <glyph glyph-name="subscript"
+      unicode="&#xF12C;"
+      horiz-adv-x="512" d=" M276 160C282.627 160 288 154.627 288 148V140C288 133.373 282.627 128 276 128H225.165A12.002 12.002 0 0 0 214.924 133.745L153.733 233.925C148.58 241.368 143.999 250.529 143.999 250.529S140.564 241.941 134.839 233.352L74.218 133.76A12.002 12.002 0 0 0 63.967 128H12C5.373 128 0 133.373 0 140V148C0 154.627 5.373 160 12 160H48.098L121.959 277.439L54.397 384H12C5.373 384 0 389.373 0 396V404C0 410.627 5.373 416 12 416H70.264A12 12 0 0 0 80.516 410.237L134.839 320.954C139.42 313.51 144 304.3490000000001 144 304.3490000000001S148.008 312.937 153.161 321.526L208.61 410.3540000000001A12 12 0 0 0 218.789 416H276C282.627 416 288 410.627 288 404V396C288 389.373 282.627 384 276 384H236.472L168.336 277.439L243.342 160H276zM368.454 0.272C370.973 30.342 399.795 50.043 430.2340000000001 70.852C466.542 95.674 507.693 123.806 507.693 174.854C507.693 197.396 499.367 217.853 484.249 232.457C468.304 247.859 446.05 256 419.89 256C384.415 256 354.545 237.1 337.331 211.241C333.6760000000001 205.75 335.168 198.331 340.641 194.649L348.108 189.625C353.449 186.031 360.63 187.326 364.479 192.487C377.461 209.894 396.485 222.16 418.324 222.16C449.636 222.16 471.5049999999999 202.063 471.5049999999999 173.288C471.5049999999999 140.618 441.462 119.868 409.654 97.9C372.562 72.283 330.522 43.248 330.522 -10.381C330.522 -14.638 330.747 -18.231 331.0729999999999 -21.306C331.7179999999999 -27.396 336.8789999999999 -32.0000000000001 343.0039999999999 -32.0000000000001H500C506.627 -32.0000000000001 512 -26.6270000000001 512 -20.0000000000001V-11.7280000000001C512 -5.1010000000001 506.627 0.2719999999999 500 0.2719999999999H368.454z" />
+    <glyph glyph-name="subway"
+      unicode="&#xF239;"
+      horiz-adv-x="448" d=" M112 64C138.51 64 160 85.49 160 112S138.51 160 112 160S64 138.51 64 112S85.49 64 112 64zM112 128C120.823 128 128 120.823 128 112S120.823 96 112 96S96 103.177 96 112S103.177 128 112 128zM336 64C362.51 64 384 85.49 384 112S362.51 160 336 160S288 138.51 288 112S309.49 64 336 64zM336 128C344.823 128 352 120.823 352 112S344.823 96 336 96S320 103.177 320 112S327.177 128 336 128zM320 448H128C64 448 0 405.019 0 352V96C0 48.831 50.656 9.609 106.9 1.527L51.615 -53.758C47.835 -57.538 50.512 -64.0010000000001 55.858 -64.0010000000001H81.656C84.838 -64.0010000000001 87.891 -62.7370000000001 90.141 -60.4860000000001L150.627 0H297.372L357.858 -60.485A12.002 12.002 0 0 1 366.343 -64H392.141C397.4860000000001 -64 400.163 -57.537 396.384 -53.757L341.1 1.528C397.344 9.609 448 48.831 448 96V352C448 405.019 385 448 320 448zM32 320H208V224H32V320zM416 96C416 63.701 368.448 32 320 32H128C79.552 32 32 63.701 32 96V192H416V96zM416 224H240V320H416V224zM32 352C32 384.299 79.552 416 128 416H320C378.237 416 416 378.1190000000001 416 352H32z" />
+    <glyph glyph-name="suitcase-rolling"
+      unicode="&#xF5C1;"
+      horiz-adv-x="384" d=" M336 288H288V400C288 426.51 266.51 448 240 448H144C117.49 448 96 426.51 96 400V288H48C21.49 288 0 266.51 0 240V16C0 -10.51 21.49 -32 48 -32H64V-48C64 -56.84 71.16 -64 80 -64H112C120.84 -64 128 -56.84 128 -48V-32H256V-48C256 -56.84 263.1600000000001 -64 272 -64H304C312.84 -64 320 -56.84 320 -48V-32H336C362.51 -32 384 -10.51 384 16V240C384 266.51 362.51 288 336 288zM128 400C128 408.82 135.18 416 144 416H240C248.82 416 256 408.82 256 400V288H128V400zM352 16C352 7.18 344.82 0 336 0H48C39.18 0 32 7.18 32 16V240C32 248.82 39.18 256 48 256H336C344.82 256 352 248.82 352 240V16zM280 96H104C99.58 96 96 92.42 96 88V72C96 67.58 99.58 64 104 64H280C284.42 64 288 67.58 288 72V88C288 92.42 284.42 96 280 96zM280 192H104C99.58 192 96 188.42 96 184V168C96 163.58 99.58 160 104 160H280C284.42 160 288 163.58 288 168V184C288 188.42 284.42 192 280 192z" />
+    <glyph glyph-name="suitcase"
+      unicode="&#xF0F2;"
+      horiz-adv-x="512" d=" M464 320H352V368C352 394.4700000000001 330.4700000000001 416 304 416H208C181.53 416 160 394.4700000000001 160 368V320H48C21.5 320 0 298.5 0 272V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V272C512 298.5 490.5 320 464 320zM192 368C192 376.83 199.19 384 208 384H304C312.81 384 320 376.83 320 368V320H192V368zM96 0H48C39.2 0 32 7.2 32 16V272C32 280.8 39.2 288 48 288H96V0zM384 0H128V288H384V0zM480 16C480 7.2 472.8 0 464 0H416V288H464C472.8 288 480 280.8 480 272V16z" />
+    <glyph glyph-name="sun-cloud"
+      unicode="&#xF763;"
+      horiz-adv-x="640" d=" M558.2 262.4C542.1 296.5 507.4 320 468 320C426.3 320 390.4 294.8 375.5 257.5C343 246.1 320 215.4 320 179.2C320 133.3 357.3 96 403.2 96H556.8C602.6999999999999 96 640 133.3 640 179.2C640 224.6 603.4 261.6 558.2 262.4zM556.8 128H403.2C374.9 128 352 150.9 352 179.2C352 206.7 373.8 229 401 230.2C405.9 262.9 433.9 288 468 288C503.8 288 532.8 260.2 535.5 225.1C542 228.2 549.1 230.4 556.8 230.4C585.0999999999999 230.4 608 207.5 608 179.2S585.1 128 556.8 128zM403.2 64C402.5 64 401.8 64.2 401.0999999999999 64.2L405.3999999999999 42.6L320.5999999999999 59.4C313.9999999999999 60.7 307.7999999999999 58 304.2 52.6L256 -19.2L207.9 52.7C204.3 58.0000000000001 198 60.8000000000001 191.5 59.5000000000001L106.7 42.7L123.5 127.5000000000001C124.7 133.8000000000001 122.1 140.3000000000001 116.7 143.9L44.8 192L116.7 240.1C122.1 243.7 124.7 250.2 123.5 256.5L106.7 341.3L191.5 324.5C198 323.2 204.3 326 207.9 331.3L256 403.2L304.1 331.3C307.7000000000001 326 314 323.2 320.5 324.5L428.8 346C437.5 347.7 443.1 356.1 441.4000000000001 364.8C439.7000000000001 373.5 431.3 379.2 422.6 377.4L324.8 358L269.3 440.9C266.3 445.3 261.3 448 256 448S245.7 445.3 242.7 440.9L187.2 358L89.4 377.4C84.1 378.5 78.8 376.8 75 373S69.6 363.8 70.6 358.6L90 260.8L7.1 205.3C2.7 202.3 0 197.4 0 192S2.7 181.7 7.1 178.7L90 123.2L70.6 25.4C69.6 20.2 71.2 14.7 75 11C78.8 7.2 84.1 5.6 89.4 6.6L187.2 26L242.7 -56.9C245.7 -61.2999999999999 250.7 -64 256 -64S266.3 -61.3 269.3 -56.9L324.7 26L422.5 6.6C427.9 5.5 433.2 7.2 436.9 11C440.7 14.8 442.3 20.2 441.3 25.4L433.7 64H403.2zM256 268.3C277 268.3 296 259.8 309.8 246C316 254.7 323.4000000000001 262.4 331.8 269.1C312.3 288.3 285.5 300.2 256 300.2C196.3 300.2 147.7 251.6 147.7 191.9S196.3 83.7 256 83.7C278.8 83.7 300 90.9 317.5 103C310.4 111 304.4 119.9 299.7 129.6C287.3 120.9 272.3 115.7000000000001 256 115.7000000000001C213.9 115.7000000000001 179.7 149.9 179.7 192.0000000000001S213.9 268.3000000000001 256 268.3000000000001z" />
+    <glyph glyph-name="sun-dust"
+      unicode="&#xF764;"
+      horiz-adv-x="512" d=" M123.5 256.5L106.7 341.3L191.5 324.5C197.9 323.3 204.2 325.7 207.9 331.3L256 403.2L304.1 331.3C307.9000000000001 325.7 314.7000000000001 323 321.3 324.7L407 346.2C409.9 346.9 412.4 348.4 414.4 350.4C418.2 354.2 420 359.9 418.6 365.6C416.5 374.2 407.8 379.4 399.2 377.2L324.4 358.5L269.3 440.9C266.3 445.3 261.4 448 256 448C250.7 448 245.7 445.5 242.7 440.9L187.3 358L89.6 377.4H89.5C88.5 377.6 87.5 377.4 86.5 377.4C85.4 377.4 84.4 377.6 83.3 377.4C81.2 377 79.2 376.1 77.5 375C77 374.7 76.7 374.1 76.2 373.7C75.1 372.8 74 371.8 73.1 370.6C71.9 368.9 71.1 366.9 70.7 364.8C70.5 363.7000000000001 70.7 362.7000000000001 70.7 361.7000000000001S70.5 359.6 70.7 358.6V358.5L90 260.7L7.1 205.3C2.6 202.3 0 197.4 0 192C0 186.7 2.7 181.7 7.1 178.7L89.5 123.6L70.8 48.8C68.6 40.1999999999999 73.8 31.4999999999999 82.4 29.4C88.1 28 93.8 29.8 97.6 33.6C99.6 35.6 101.1 38.1 101.8 40.9999999999999L123.3 126.6999999999999C125 133.3 122.3 140.0999999999999 116.7 143.8999999999999L44.8 192L116.7 240.1C122.2 243.7 124.7 250.2 123.5 256.5zM306.9 253.7C310.2 251 314.9 250.9 317.9 254L329.2 265.3C332.4 268.5 332.4 273.9 329 276.9C285.1 314.8 218.4 312.9 176.8 271.2000000000001C135.1 229.5 133.2 162.9 171.1 119C174.1 115.5 179.5 115.5 182.7 118.8L194 130.1C197 133.1 197 137.8 194.3000000000001 141.1C168.3000000000001 172.5 170 219.2 199.4 248.6C228.8000000000001 278 275.6 279.6 306.9000000000001 253.7zM490.7 -21.3C478.9 -21.3 469.4 -30.9 469.4 -42.6C469.4 -54.4 478.9 -63.9 490.7 -63.9S512 -54.3 512 -42.6C512 -30.9 502.4 -21.3 490.7 -21.3zM490.7 149.3C478.9 149.3 469.4 139.6999999999999 469.4 128C469.4 116.1999999999999 478.9 106.6999999999999 490.7 106.6999999999999S512 116.3 512 128C512 139.8 502.4 149.3 490.7 149.3zM490.7 277.3C502.5 277.3 512 286.9 512 298.6C512 310.4 502.4 319.9 490.7 319.9C478.9 319.9 469.4 310.3 469.4 298.6C469.3 286.9 478.9 277.3 490.7 277.3zM149.3 -21.3C137.5 -21.3 128 -30.9 128 -42.6C128 -54.4 137.6 -63.9 149.3 -63.9C161.1 -63.9 170.6 -54.3 170.6 -42.6C170.7 -30.9 161.1 -21.3 149.3 -21.3zM234.7 64C222.9 64 213.4 54.4 213.4 42.7C213.4 30.9 222.9 21.4 234.7 21.4S256 31 256 42.7C256 54.4 246.4 64 234.7 64zM320 149.3C308.2 149.3 298.7 139.7 298.7 128C298.7 116.2 308.3 106.7 320 106.7S341.3 116.3 341.3 128C341.3 139.8 331.8 149.3 320 149.3zM405.3 234.7C393.5 234.7 384 225.1 384 213.4C384 201.6 393.6 192.1 405.3 192.1C417.1 192.1 426.6 201.7 426.6 213.4C426.7000000000001 225.1 417.1 234.7 405.3 234.7zM320 -21.3C308.2 -21.3 298.7 -30.9 298.7 -42.6C298.7 -54.4 308.3 -63.9 320 -63.9S341.3 -54.3 341.3 -42.6C341.3 -30.9 331.8 -21.3 320 -21.3zM405.3 64.0000000000001C393.5 64.0000000000001 384 54.4 384 42.7C384 30.9 393.6 21.4 405.3 21.4C417.1 21.4 426.6 31.0000000000001 426.6 42.7C426.7000000000001 54.4 417.1 64.0000000000001 405.3 64.0000000000001z" />
+    <glyph glyph-name="sun-haze"
+      unicode="&#xF765;"
+      horiz-adv-x="640" d=" M216 -32H72C67.6 -32 64 -35.6 64 -40V-56C64 -60.4 67.6 -64 72 -64H216C220.4 -64 224 -60.4 224 -56V-40C224 -35.6 220.4 -32 216 -32zM632 -32H296C291.6 -32 288 -35.6 288 -40V-56C288 -60.4 291.6 -64 296 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32zM576 24V40C576 44.4 572.4 48 568 48H8C3.6 48 0 44.4 0 40V24C0 19.6 3.6 16 8 16H568C572.4 16 576 19.6 576 24zM632 128.1H488C483.6 128.1 480 124.5 480 120.1V104.1C480 99.7000000000001 483.6 96.1 488 96.1H632C636.4 96.1 640 99.7000000000001 640 104.1V120.1C640 124.5 636.4 128.1 632 128.1zM72 96H408C412.4 96 416 99.6 416 104V120C416 124.4 412.4 128 408 128H72C67.6 128 64 124.4 64 120V104C64 99.6 67.6 96 72 96zM208.3 200.5C208 196 211.8 192.1 216.4 192.1H232.4C236.7 192.1 240 195.5 240.4 199.7C244.2 240.3 278.5 272.1 320 272.1S395.8 240.3 399.6 199.7C400 195.5 403.3 192.1 407.6 192.1H423.6C428.2000000000001 192.1 432 195.9 431.7000000000001 200.5C427.4000000000001 258.4 378.9000000000001 304.1 320.0000000000001 304.1S212.6000000000001 258.3 208.3000000000001 200.5zM96 192.1C98.8 192.1 101.7 192.8 104.2 194.4L180 239.8C185.8 243.3 188.8 250 187.5 256.6L170.7 341.5L255.5 324.7000000000001C262 323.4000000000001 268.3 326.1 271.9 331.5L320 403.3L368.1 331.4C371.7000000000001 326 378 323.3 384.5 324.6L469.3 341.4L452.5 256.5C451.2 249.9 454.2 243.1 460 239.7L535.8 194.3C538.4 192.8 541.1999999999999 192 544 192C549.4 192 554.7 194.8 557.7 199.8C562.3000000000001 207.4 559.8000000000001 217.2 552.2 221.7L486.1 261.3L505.4 358.6C506.4 363.8 504.8 369.2 501.0000000000001 373S491.9 378.5 486.6000000000001 377.4000000000001L388.8 358L333.4 440.9L333.3 441C332.7 441.9 331.9 442.4 331.2 443.1C330.3999999999999 443.9 329.8999999999999 444.8 328.8999999999999 445.4C327.0999999999999 446.6 325.0999999999999 447.4 323.0999999999999 447.8C322.4999999999999 447.9 321.8999999999999 447.8 321.2999999999999 447.8C319.8999999999999 447.9 318.3999999999999 448.1 316.9999999999999 447.8C314.9999999999999 447.4 312.9999999999999 446.6 311.1999999999999 445.4C310.2999999999999 444.8 309.6999999999999 443.9 308.9999999999999 443.2C308.2999999999999 442.5 307.3999999999999 441.9 306.7999999999999 441L306.6999999999999 440.9L251.2999999999999 358.1L153.4999999999999 377.5C148.1999999999999 378.6 142.8999999999999 376.9 139.0999999999999 373.1C135.2999999999999 369.3 133.6999999999999 363.9 134.6999999999999 358.7L153.9999999999999 261.4L87.8999999999999 221.8C80.2999999999999 217.3 77.7999999999999 207.4 82.3999999999999 199.9C85.2999999999999 194.8 90.5999999999999 192.1 95.9999999999999 192.1z" />
+    <glyph glyph-name="sun"
+      unicode="&#xF185;"
+      horiz-adv-x="512" d=" M256 304.3C194.2 304.3 144 254 144 192.2S194.2 80.1 256 80.1S368 130.4 368 192.2S317.8 304.3 256 304.3zM256 112.1C211.9 112.1 176 148 176 192.2S211.9 272.3 256 272.3S336 236.4 336 192.2S300.1 112.1 256 112.1zM512 192.2C512 197.5 509.3 202.5 504.9 205.5L422 261L441.4 358.9C442.4 364.1 440.8 369.6 437 373.3C433.2 377.1 427.9 378.8 422.6 377.7000000000001L324.8 358.3L269.3 441.3C263.3 450.2 248.7 450.2 242.7 441.3L187.2 358.3L89.4 377.8C84.1 378.9 78.8 377.2000000000001 75 373.4C71.2 369.6 69.6 364.2 70.6 359L90 261L7.1 205.5C2.7 202.5 0 197.5 0 192.2C0 186.9 2.7 181.9 7.1 178.9L90 123.4L70.6 25.5C69.6 20.3 71.2 14.8 75 11.1C78.8 7.3 84.1 5.6 89.4 6.7L187.2 26.1L242.7 -56.9C245.7 -61.4 250.7 -64 256 -64S266.3 -61.3 269.3 -56.9L324.8 26.1L422.6 6.7C428 5.5000000000001 433.3 7.3000000000001 437 11.1C440.8 14.9 442.4 20.3 441.4 25.5L422 123.4L504.9 178.9C509.3 181.9 512 186.9 512 192.2zM395.3 144.1C389.9000000000001 140.5 387.3 134 388.5 127.7000000000001L405.3 42.8000000000001L320.5 59.6000000000001C313.9 61.0000000000001 307.7 58.2000000000001 304.1 52.8000000000001L256 -19.1999999999999L207.9 52.7C204.9 57.2000000000001 199.9 59.8000000000001 194.6 59.8000000000001C193.6 59.8000000000001 192.5 59.7000000000001 191.5 59.5000000000001L106.7 42.7L123.5 127.6C124.7 133.9 122.1 140.4 116.7 144L44.8 192.1L116.7 240.3C122.1 243.9 124.7 250.4 123.5 256.7000000000001L106.7 341.6L191.5 324.8C198 323.5 204.3 326.2000000000001 207.9 331.6L256 403.6L304.1 331.6C307.7000000000001 326.2000000000001 314 323.5 320.5 324.8L405.3 341.6L388.5 256.7000000000001C387.3 250.4 389.9 243.9 395.3 240.3L467.2 192.1L395.3000000000001 144.1z" />
+    <glyph glyph-name="sunrise"
+      unicode="&#xF766;"
+      horiz-adv-x="576" d=" M95.8 0H134.3L90.3 66L176.3 83.2C182.6 84.5 187.6 89.4 188.9 95.8L206.1 181.8L279.1 133.1C284.5 129.5 291.5 129.5 296.9000000000001 133.1L369.9000000000001 181.8L387.1 95.8C388.3 89.5 393.3 84.5 399.7000000000001 83.2L485.7 66L441.7000000000001 0H480.2L525.7 68.1C528.7 72.5 529.2 78.2000000000001 527.2 83.1S520.8000000000001 91.6 515.5 92.7000000000001L416.5 112.5000000000001L396.7 211.5000000000001C395.7 216.7000000000001 392.1 221.1000000000001 387.1 223.2000000000001C382.1 225.3000000000001 376.5 224.7000000000001 372.1 221.7000000000001L288.1 165.7000000000001L204.1 221.7000000000001C199.7 224.6000000000001 194 225.2000000000001 189.1 223.2000000000001S180.6 216.8000000000001 179.5 211.5000000000001L159.7 112.5000000000001L60.7 92.7000000000001C55.5 91.7000000000001 51.1 88.1 49 83.1S47.5 72.5 50.5 68.1L95.8 0zM197.7 330.3C200.8 327.2000000000001 205.9 327.2000000000001 209 330.3L272 393.3V232C272 227.6 275.6 224 280 224H296C300.4 224 304 227.6 304 232V393.4L367 330.4C370.1 327.3 375.2 327.3 378.3 330.4L389.6 341.7C392.7000000000001 344.8 392.7000000000001 349.9 389.6 353L299.3 443.3C296.2 446.4 292.1 448 288 448S279.8 446.4 276.7 443.3L186.3 353C183.2 349.9 183.2 344.8 186.3 341.7L197.7 330.3zM568 -32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H568C572.4 -64 576 -60.4 576 -56V-40C576 -35.6 572.4 -32 568 -32zM287.8 96C231.5 96 185.3 54.1 177.4 0H209.4C216.8 36.5 249.1 64 287.8 64S358.7000000000001 36.5 366.2000000000001 0H398.2000000000001C390.4000000000001 54.1 344.1 96 287.8000000000001 96z" />
+    <glyph glyph-name="sunset"
+      unicode="&#xF767;"
+      horiz-adv-x="576" d=" M276.7 228.7C279.8 225.6 283.9 224 288 224S296.2 225.6 299.3 228.7L389.6 319C392.7000000000001 322.1 392.7000000000001 327.2 389.6 330.3L378.3 341.6C375.2 344.7 370.1 344.7 367 341.6L304 278.6V440C304 444.4 300.4 448 296 448H280C275.6 448 272 444.4 272 440V278.6L209 341.6C205.9 344.7 200.8 344.7 197.7 341.6L186.4 330.3C183.3 327.2 183.3 322.1 186.4 319L276.7 228.7zM95.8 0H134.3L90.3 66L176.3 83.2C182.6 84.5 187.6 89.4 188.9 95.8L206.1 181.8L279.1 133.1C284.5 129.5 291.5 129.5 296.9000000000001 133.1L369.9000000000001 181.8L387.1 95.8C388.3 89.5 393.3 84.5 399.7000000000001 83.2L485.7 66L441.7000000000001 0H480.2L525.7 68.1C528.7 72.5 529.2 78.2000000000001 527.2 83.1S520.8000000000001 91.6 515.5 92.7000000000001L416.5 112.5000000000001L396.7 211.5000000000001C395.7 216.7000000000001 392.1 221.1000000000001 387.1 223.2000000000001C382.1 225.3000000000001 376.5 224.7000000000001 372.1 221.7000000000001L288.1 165.7000000000001L204.1 221.7000000000001C199.7 224.6000000000001 194 225.2000000000001 189.1 223.2000000000001S180.6 216.8000000000001 179.5 211.5000000000001L159.7 112.5000000000001L60.7 92.7000000000001C55.5 91.7000000000001 51.1 88.1 49 83.1S47.5 72.5 50.5 68.1L95.8 0zM287.8 96C231.5 96 185.3 54.1 177.4 0H209.4C216.8 36.5 249.1 64 287.8 64S358.7000000000001 36.5 366.2000000000001 0H398.2000000000001C390.4000000000001 54.1 344.1 96 287.8000000000001 96zM568 -32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H568C572.4 -64 576 -60.4 576 -56V-40C576 -35.6 572.4 -32 568 -32z" />
+    <glyph glyph-name="superscript"
+      unicode="&#xF12B;"
+      horiz-adv-x="512" d=" M276 0C282.627 0 288 -5.373 288 -12V-20C288 -26.627 282.627 -32 276 -32H225.165A12.002 12.002 0 0 0 214.924 -26.255L153.733 73.925C148.58 81.368 143.999 90.529 143.999 90.529S140.564 81.941 134.839 73.352L74.218 -26.24A12.002 12.002 0 0 0 63.967 -32H12C5.373 -32 0 -26.627 0 -20V-12C0 -5.373 5.373 0 12 0H48.098L121.959 117.439L54.397 224H12C5.373 224 0 229.373 0 236V244C0 250.627 5.373 256 12 256H70.264A12 12 0 0 0 80.516 250.237L134.839 160.954C139.42 153.51 144 144.349 144 144.349S148.008 152.937 153.161 161.526L208.61 250.354A12 12 0 0 0 218.789 256H276C282.627 256 288 250.627 288 244V236C288 229.373 282.627 224 276 224H236.472L168.336 117.439L243.342 0H276zM368.454 160.272C370.973 190.342 399.795 210.043 430.2340000000001 230.852C466.542 255.674 507.693 283.807 507.693 334.854C507.693 357.396 499.367 377.853 484.249 392.457C468.304 407.859 446.05 416 419.89 416C384.415 416 354.545 397.1 337.331 371.241C333.6760000000001 365.75 335.168 358.331 340.641 354.649L348.108 349.625C353.449 346.031 360.63 347.326 364.479 352.487C377.461 369.894 396.485 382.16 418.324 382.16C449.636 382.16 471.5049999999999 362.063 471.5049999999999 333.288C471.5049999999999 300.618 441.462 279.868 409.654 257.9C372.562 232.283 330.522 203.248 330.522 149.619C330.522 145.362 330.747 141.769 331.0729999999999 138.694C331.7179999999999 132.604 336.8789999999999 128 343.0039999999999 128H500C506.627 128 512 133.3729999999999 512 140V148.2719999999999C512 154.899 506.627 160.2719999999999 500 160.2719999999999H368.454z" />
+    <glyph glyph-name="surprise"
+      unicode="&#xF5C2;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM248 160C212.7 160 184 131.3 184 96S212.7 32 248 32S312 60.7 312 96S283.3 160 248 160zM248 64C230.4 64 216 78.4 216 96S230.4 128 248 128S280 113.6 280 96S265.6 64 248 64zM200 240C200 257.7 185.7 272 168 272S136 257.7 136 240S150.3 208 168 208S200 222.3 200 240zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="swatchbook"
+      unicode="&#xF5C3;"
+      horiz-adv-x="512" d=" M96 16C104.84 16 112 23.16 112 32S104.84 48 96 48S80 40.84 80 32S87.16 16 96 16zM480 128H327.77L435.42 235.65C447.92 248.15 447.92 268.41 435.42 280.91L344.9 371.41C338.65 377.66 330.46 380.78 322.27 380.78S305.89 377.66 299.64 371.41L192 263.77V416C192 433.67 177.67 448 160 448H32C14.33 448 0 433.67 0 416V32C0 -21.02 42.98 -64 96 -64H480C497.67 -64 512 -49.67 512 -32V96C512 113.67 497.67 128 480 128zM160 32C160 -3.29 131.29 -32 96 -32S32 -3.29 32 32V160H160V32zM160 192H32V288H160V192zM160 320H32V416H160V320zM192 218.53L322.24 348.78H322.27L412.78 258.27L192 37.49V218.53zM480 -32H167.76L295.76 96H480V-32z" />
+    <glyph glyph-name="swimmer"
+      unicode="&#xF5C4;"
+      horiz-adv-x="640" d=" M128 160C181.02 160 224 202.98 224 256S181.02 352 128 352S32 309.02 32 256S74.98 160 128 160zM128 320C163.29 320 192 291.29 192 256S163.29 192 128 192S64 220.71 64 256S92.71 320 128 320zM189.61 105.42C192.34 102.9 200.06 98.73 212.17 96.92L254.4100000000001 157.21C269.8800000000001 179.33 287.1 199.94 305.17 219.73L459.72 112.73C470.83 120.72 482.8 125.5200000000001 495.16 127.1L327.4 243.25C350.64 266.16 375.53 287.44 402.31 306.56C413.28 314.39 427.22 317.25 440.78 314.3300000000001L541.16 296.25C549.75 294.7200000000001 558.16 300.44 559.75 309.16C561.31 317.86 555.53 326.19 546.84 327.75L446.9600000000001 345.7200000000001A80.012 80.012 0 0 1 383.6800000000001 332.6C323.1200000000001 289.35 270.8000000000001 236.51 228.1800000000001 175.57L182.8000000000001 110.76C185.0900000000001 109 187.4200000000001 107.44 189.6100000000001 105.42zM632 64H608C581.96 64 562.2 72.42 551.91 81.9C543.01 90.11 532.25 96 520.14 96H503.84C491.73 96 480.97 90.11 472.07 81.9C461.8 72.42 442.04 64 416 64S370.2 72.42 359.91 81.9C351.01 90.11 340.25 96 328.14 96H311.84C299.73 96 288.97 90.11 280.07 81.9C269.8 72.42 250.04 64 224 64S178.2 72.42 167.91 81.9C159.01 90.11 148.25 96 136.14 96H119.84C107.73 96 96.97 90.11 88.07 81.9C77.8 72.42 58.04 64 32 64H8C3.58 64 0 60.42 0 56V40C0 35.58 3.58 32 8 32H32C70.62 32 104.72 44.19 128 63.84C151.28 44.18 185.38 32 224 32S296.7200000000001 44.19 320 63.84C343.28 44.18 377.38 32 416 32S488.72 44.19 512 63.84C535.28 44.18 569.38 32 608 32H632C636.42 32 640 35.58 640 40V56C640 60.42 636.42 64 632 64z" />
+    <glyph glyph-name="swimming-pool"
+      unicode="&#xF5C5;"
+      horiz-adv-x="640" d=" M632 0H608C581.96 0 562.2 8.42 551.91 17.9C543.01 26.11 532.25 32 520.14 32H503.84C491.73 32 480.97 26.11 472.07 17.9C461.8 8.42 442.04 0 416 0S370.2 8.42 359.91 17.9C351.01 26.11 340.25 32 328.14 32H311.84C299.73 32 288.97 26.11 280.07 17.9C269.8 8.42 250.04 0 224 0S178.2 8.42 167.91 17.9C159.01 26.11 148.25 32 136.14 32H119.84C107.73 32 96.97 26.11 88.07 17.9C77.8 8.42 58.04 0 32 0H8C3.58 0 0 -3.58 0 -8V-24C0 -28.42 3.58 -32 8 -32H32C70.62 -32 104.72 -19.81 128 -0.16C151.28 -19.82 185.38 -32 224 -32S296.7200000000001 -19.81 320 -0.16C343.28 -19.82 377.38 -32 416 -32S488.72 -19.81 512 -0.16C535.28 -19.82 569.38 -32 608 -32H632C636.42 -32 640 -28.42 640 -24V-8C640 -3.58 636.42 0 632 0zM192 39.79V192H416V32C432.38 32 442.9700000000001 36.45 448 39.79V336C448 362.4700000000001 469.53 384 496 384S544 362.4700000000001 544 336V328C544 323.58 547.58 320 552 320H568C572.42 320 576 323.58 576 328V336C576 380.11 540.12 416 496 416S416 380.11 416 336V224H192V336C192 362.4700000000001 213.53 384 240 384S288 362.4700000000001 288 336V328C288 323.58 291.58 320 296 320H312C316.42 320 320 323.58 320 328V336C320 380.11 284.12 416 240 416S160 380.11 160 336V59.5C170.41 55.77 180.44 49.88 189.61 41.43C190.11 40.96 191.16 40.35 192 39.79z" />
+    <glyph glyph-name="sword"
+      unicode="&#xF71C;"
+      horiz-adv-x="512" d=" M496.04 448C495.28 448 494.51 447.95 493.73 447.83L400 432L165.26 197.26L126.11 236.41A15.886999999999999 15.886999999999999 0 0 1 114.8 241.09C110.71 241.09 106.61 239.53 103.49 236.41L68.7 201.61A16.005 16.005 0 0 1 66.7 181.42L112.6 112.58L72.81 72.79L56.05 81.17A13.82 13.82 0 0 1 49.84 82.64C46.23 82.64 42.68 81.2400000000001 40.01 78.5700000000001L4.07 42.64C-1.35 37.21 -1.35 28.42 4.07 23L87 -59.93C89.71 -62.64 93.27 -64 96.82 -64C100.37 -64 103.93 -62.64 106.64 -59.93L142.57 -24A13.888999999999998 13.888999999999998 0 0 1 145.17 -7.97L136.79 8.79L176.57 48.5699999999999L245.41 2.67C248.12 0.8699999999999 251.21 -0.01 254.28 -0.01C258.4100000000001 -0.01 262.51 1.5799999999999 265.6 4.68L300.4000000000001 39.47C306.6500000000001 45.72 306.6500000000001 55.85 300.4000000000001 62.1L261.2500000000001 101.2499999999999L496 336L511.83 429.73C513.23 439.51 505.57 448 496.04 448zM266.4700000000001 50.8L252.26 36.59L194.34 75.21L172.5100000000001 89.7600000000001L153.96 71.21L114.18 31.4300000000001L97.87 15.1200000000001L108.18 -5.5099999999999L110.72 -10.5999999999999L96.82 -24.4999999999999L39.5 32.8200000000001L53.4 46.7200000000001L58.48 44.1800000000001L79.11 33.8600000000001L95.42 50.1700000000001L135.21 89.9600000000001L153.7600000000001 108.5100000000001L139.21 130.3400000000001L100.59 188.2600000000001L114.8000000000001 202.4700000000001L266.4700000000001 50.8zM466.15 351.4L238.63 123.89L187.89 174.63L415.4 402.15L476.46 412.4700000000001L466.15 351.4z" />
+    <glyph glyph-name="swords"
+      unicode="&#xF71D;"
+      horiz-adv-x="512" d=" M507.3 4.68L451.42 60.56L486 118.09A16.007 16.007 0 0 1 484 138.28L449.2 173.08C442.99 179.29 432.85 179.36 426.57 173.08L398.74 145.24L112 431.99L18.27 447.82C7.06 449.45 -1.25 439.62 0.17 429.7200000000001L16 335.99L302.75 49.24L274.9100000000001 21.41C268.6600000000001 15.16 268.6600000000001 5.03 274.9100000000001 -1.22L309.7100000000001 -36.01C315.11 -41.41 323.5700000000001 -42.23 329.9000000000001 -38.01L387.42 -3.43L443.3 -59.31C449.55 -65.5599999999999 459.68 -65.5599999999999 465.93 -59.31L507.3 -17.94C513.55 -11.7 513.55 -1.56 507.3 4.68zM45.85 351.39L35.54 412.46L96.6 402.13L376.13 122.6L325.39 71.86L45.85 351.39zM454.62 -25.37L391.51 37.75L323.07 -4.11L308.86 10.1L437.9 139.13L452.11 124.92L410.26 56.48L473.3699999999999 -6.63L454.6199999999999 -25.37zM415.39 402.15L476.46 412.46L466.13 351.4L351.99 237.26L374.62 214.63L495.99 336L511.82 429.73C513.45 440.94 503.62 449.25 493.72 447.83L399.99 432L278.62 310.63L301.24 288L415.39 402.15zM237.07 21.42L209.23 49.25L233.35 73.37L210.73 96L186.61 71.88L135.87 122.62L160 146.75L137.37 169.38L113.24 145.25L85.41 173.09C79.16 179.34 69.03 179.34 62.78 173.09L27.99 138.29C22.59 132.89 21.77 124.43 25.99 118.1L60.57 60.58L4.68 4.69C-1.57 -1.56 -1.57 -11.69 4.68 -17.94L46.05 -59.31C52.3 -65.5599999999999 62.43 -65.5599999999999 68.68 -59.31L124.56 -3.43L182.09 -38.01A16.007 16.007 0 0 1 202.28 -36.01L237.08 -1.21C237.95 -0.34 238.42 0.75 239.05 1.76C238.57 4.4900000000001 238.24 7.26 238.24 10.09S238.58 15.7 239.05 18.4400000000001C238.42 19.45 237.95 20.5400000000001 237.07 21.4200000000001zM188.92 -4.1L120.48 37.7500000000001L57.37 -25.36L38.62 -6.61L101.74 56.5000000000001L59.88 124.9400000000001L74.09 139.15L203.13 10.1L188.92 -4.1z" />
+    <glyph glyph-name="synagogue"
+      unicode="&#xF69B;"
+      horiz-adv-x="640" d=" M406.38 297.23A13.18 13.18 0 0 1 394.82 304.07H357.67L331.17 345.79C326.29 353.45 313.73 353.46 308.86 345.81L282.35 304.08H245.2100000000001C240.4000000000001 304.08 235.9600000000001 301.46 233.6500000000001 297.24C231.3400000000001 293.05 231.5300000000001 287.94 234.0900000000001 283.93L251.82 256.02L234.0900000000001 228.11C231.5300000000001 224.08 231.3400000000001 218.97 233.6500000000001 214.78A13.18 13.18 0 0 1 245.2100000000001 207.94H282.36L308.86 166.22C311.3 162.39 315.45 160.1 320.0200000000001 160.1S328.7400000000001 162.38 331.1800000000001 166.21L357.6900000000001 207.94H394.8300000000001C399.6400000000001 207.94 404.0800000000001 210.56 406.3900000000001 214.78C408.7000000000001 218.97 408.5100000000001 224.08 405.9500000000001 228.09L388.2200000000001 256L405.9500000000001 283.91C408.5000000000001 287.94 408.6900000000001 293.05 406.3800000000001 297.23zM320 333.53L338.71 304.0800000000001H301.29L320 333.53zM250.38 288.08H272.17L261.2700000000001 270.93L250.3800000000001 288.08zM250.38 223.92L261.28 241.08L272.18 223.92H250.38zM320 178.47L301.29 207.92H338.7100000000001L320 178.47zM348.87 223.92H291.12L270.75 256L291.13 288.08H348.88L369.25 256L348.87 223.92zM389.62 223.92H367.83L378.73 241.07L389.62 223.92zM378.7200000000001 270.92L367.8200000000001 288.0800000000001H389.6200000000001L378.7200000000001 270.92zM313.71 127.7C280.43 124.53 256 94.68 256 61.25V-56C256 -60.42 259.58 -64 264 -64H280C284.42 -64 288 -60.42 288 -56V62.2C288 78.15 298.86 92.96 314.59 95.56C334.61 98.85 352 83.42 352 64V-56C352 -60.42 355.58 -64 360 -64H376C380.42 -64 384 -60.42 384 -56V64C384 101.42 351.88 131.34 313.71 127.7zM631.99 179.71L555.99 251.49C549.39 257.72 538.59 257.72 531.99 251.49L479.99 202.38V313.6C479.99 323.32 475.57 332.52 467.98 338.59L339.98 440.99C334.15 445.6600000000001 327.07 448 320 448S305.85 445.6600000000001 300.01 440.99L172.01 338.59A32.005 32.005 0 0 1 160 313.6V202.37L108 251.48C101.4 257.7100000000001 90.6 257.7100000000001 84 251.48L8 179.7C2.85 174.84 0 168.57 0 162.07V-56C0 -60.42 3.58 -64 8 -64H24C28.42 -64 32 -60.42 32 -56V158.36L96 218.81L160 158.36V-56C160 -60.42 163.58 -64 168 -64H184C188.42 -64 192 -60.42 192 -56V313.6L320 416L448 313.6V-56C448 -60.42 451.58 -64 456 -64H472C476.42 -64 480 -60.42 480 -56V158.36L544 218.81L608 158.36V-56C608 -60.42 611.58 -64 616 -64H632C636.42 -64 640 -60.42 640 -56V162.07C640 168.57 637.15 174.84 631.99 179.71z" />
+    <glyph glyph-name="sync-alt"
+      unicode="&#xF2F1;"
+      horiz-adv-x="512" d=" M457.373 438.613L407.278 388.511C365.411 420.789 312.953 440 256 440C123.228 440 14.824 335.6620000000001 8.31 204.507C7.971 197.689 13.475 192 20.301 192H30.316C36.668 192 41.963 196.949 42.293 203.293C48.159 316.087 141.389 406 256 406C303.554 406 347.487 390.488 383.02 364.25L329.405 310.628C309.305 290.528 323.55 256 352.032 256H480C497.673 256 512 270.327 512 288V415.985C512 444.46 477.436 458.676 457.373 438.613zM480 288H352L480 416V288zM491.699 192H481.685C475.332 192 470.038 187.051 469.708 180.707C463.84 67.797 370.504 -22 256 -22C208.475 -22 164.532 -6.491 128.984 19.757L182.596 73.373C202.695 93.473 188.451 128 159.969 128H32C14.327 128 0 113.673 0 96V-31.978C0 -60.592 34.615 -74.619 54.627 -54.605L104.719 -4.509C146.587 -36.788 199.046 -56 256 -56C388.773 -56 497.176 48.338 503.69 179.493C504.029 186.311 498.525 192 491.699 192zM32 -32V96H160L32 -32z" />
+    <glyph glyph-name="sync"
+      unicode="&#xF021;"
+      horiz-adv-x="512" d=" M492 440H482C475.373 440 470 434.627 470 428V317.373C426.929 390.739 347.224 440 256 440C123.228 440 14.824 335.6620000000001 8.31 204.507C7.971 197.689 13.475 192 20.301 192H30.317C36.67 192 41.963 196.949 42.294 203.293C48.157 315.784 141.097 406 256 406C338.862 406 410.737 358.923 446.289 290H332C325.373 290 320 284.627 320 278V268C320 261.373 325.373 256 332 256H492C498.627 256 504 261.373 504 268V428C504 434.627 498.627 440 492 440zM491.699 192H481.684C475.3320000000001 192 470.037 187.051 469.7070000000001 180.707C463.841 67.842 370.546 -22 256 -22C173.392 -22 101.328 24.952 65.701 94H180C186.627 94 192 99.373 192 106V116C192 122.627 186.627 128 180 128H20C13.373 128 8 122.627 8 116V-44C8 -50.627 13.373 -56 20 -56H30C36.627 -56 42 -50.627 42 -44V66.627C85.071 -6.739 164.777 -56 256 -56C388.773 -56 497.176 48.338 503.69 179.493C504.029 186.311 498.525 192 491.699 192z" />
+    <glyph glyph-name="syringe"
+      unicode="&#xF48E;"
+      horiz-adv-x="512" d=" M509.7 366.5L430.5 445.7C427.4 448.8 422.3 448.8 419.2 445.7L407.9 434.4C404.8 431.3 404.8 426.2 407.9 423.1L436.2 394.8L390.9 349.5L334.3 406.1L317.3 423.1C314.2 426.2 309.1 426.2 306 423.1L294.7 411.8C291.5999999999999 408.7 291.5999999999999 403.6 294.7 400.5L311.7 383.5L84.5 156.3C67.2 139 58.9 115.2 61.5 90.9L68.6 27.3L2.3 -39C-0.8 -42.1 -0.8 -47.2 2.3 -50.3L13.6 -61.6C16.7 -64.7 21.8 -64.7 24.9 -61.6L91.2 4.7L154.8 -2.4C178.7 -5.0000000000001 202.7 2.9999999999999 220.2 20.6L447.4 247.8L464.4 230.8C467.5 227.7 472.6 227.7 475.7 230.8L487 242C490.1 245.1 490.1 250.2 487 253.3L413.5 326.8L458.8 372.1L487.1 343.8C490.2 340.7000000000001 495.3 340.7000000000001 498.4 343.8L509.7 355.1C512.8000000000001 358.3 512.8000000000001 363.3 509.7 366.5zM424.8 270.3L197.7 43.1C187.3 32.7 173.1 27.7 158.5 29.3L100 35.8L93.5 94.3C91.9 108.9 96.9 123.2 107.3 133.5L130.8 157L170.4 117.4C173.5 114.3 178.6 114.3 181.7 117.4L193 128.7C196.1 131.8 196.1 136.9 193 140L153.4 179.6L198.7000000000001 224.9L238.3000000000001 185.3C241.4000000000001 182.2 246.5000000000001 182.2 249.6000000000001 185.3L260.9000000000001 196.6C264.0000000000001 199.7 264.0000000000001 204.8 260.9000000000001 207.9L221.3000000000001 247.5000000000001L266.6 292.8L306.2000000000001 253.2C309.3000000000001 250.1 314.4000000000001 250.1 317.5000000000001 253.2L328.8000000000001 264.5C331.9000000000001 267.6 331.9000000000001 272.7000000000001 328.8000000000001 275.8000000000001L289 315.6L334.3 360.9L424.8 270.3z" />
+    <glyph glyph-name="table-tennis"
+      unicode="&#xF45D;"
+      horiz-adv-x="512" d=" M482.8 122.8C529.9 205.9 519 313.4 448.3 384.2C407.2 425.3 352.6 448 294.5 448C188.7 448 141.5 384.9 75.2 318.5C26 269.2 26 188.9 75.2 139.5L95.4 119.2L11.8 46.6C-3.3 33.4 -3.9 10.3 10 -3.7L60.1 -53.8C77.6 -71.4 100.8 -63.2 110.4 -52L182.8 31.6C198.7 15.7 241.7 -39 315.3 -24.5C335.9000000000001 -48.5 366 -64 400 -64C461.8 -64 512 -13.8 512 48C512 76.8 500.7 102.9 482.8 122.8zM163.4 361.5C235.9 434.2 353.2000000000001 434.2 425.7000000000001 361.5C484.6 302.5 494.7 213.7 457.7 143.5C401.0000000000001 177.9 333.4000000000001 155.8 303.2000000000001 103.4L104.2000000000001 302.4L163.4 361.5zM181.2 78.6L82.8 -31.3L32.7 18.9L142.3 117.5L97.8 162.1C66.6 193.4 62.2 241.1 83.9 277.5L290.4 71C288.4 61.4 284.1 36.9 296.1 6.8C244.4 5.3 225.6 34.1 181.2 78.6zM400 -32C355.9 -32 320 3.9 320 48S355.9 128 400 128S480 92.1 480 48S444.1 -32 400 -32z" />
+    <glyph glyph-name="table"
+      unicode="&#xF0CE;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM160 0H48C39.163 0 32 7.163 32 16V96H160V0zM160 128H32V224H160V128zM160 256H32V352H160V256zM320 0H192V96H320V0zM320 128H192V224H320V128zM320 256H192V352H320V256zM480 96V16C480 7.163 472.837 0 464 0H352V96H480zM480 128H352V224H480V128zM480 256H352V352H480V256z" />
+    <glyph glyph-name="tablet-alt"
+      unicode="&#xF3FA;"
+      horiz-adv-x="448" d=" M352 352V96H96V352H352M372 384H76C69.4 384 64 378.6 64 372V76C64 69.4 69.4 64 76 64H372C378.6 64 384 69.4 384 76V372C384 378.6 378.6 384 372 384zM400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H400C408.8 416 416 408.8 416 400V-16zM224 48C206.3 48 192 33.7 192 16S206.3 -16 224 -16S256 -1.7 256 16S241.7 48 224 48z" />
+    <glyph glyph-name="tablet-android-alt"
+      unicode="&#xF3FC;"
+      horiz-adv-x="448" d=" M352 352V96H96V352H352M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM48 -32C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H400C408.8 416 416 408.8 416 400V-16C416 -24.8 408.8 -32 400 -32H48zM372 384H76C69.4 384 64 378.6 64 372V76C64 69.4 69.4 64 76 64H372C378.6 64 384 69.4 384 76V372C384 378.6 378.6 384 372 384zM276 32H172C165.4 32 160 26.6 160 20V12C160 5.4 165.4 0 172 0H276C282.6 0 288 5.4 288 12V20C288 26.6 282.6 32 276 32z" />
+    <glyph glyph-name="tablet-android"
+      unicode="&#xF3FB;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V400C32 408.8 39.2 416 48 416H400C408.8 416 416 408.8 416 400V-16zM276 0H172C165.4 0 160 5.4 160 12V20C160 26.6 165.4 32 172 32H276C282.6 32 288 26.6 288 20V12C288 5.4 282.6 0 276 0z" />
+    <glyph glyph-name="tablet-rugged"
+      unicode="&#xF48F;"
+      horiz-adv-x="448" d=" M439.2 283.6C444.6 286.3 448 291.8 448 297.9V374.1C448 380.2 444.6 385.7 439.2 388.4L416 400C416 426.5 394.5 448 368 448H80C53.5 448 32 426.5 32 400L8.8 388.4C3.4 385.7 0 380.2 0 374.1V297.9C0 291.8 3.4 286.3 8.8 283.6L32 272V256L8.8 244.4C3.4 241.7 0 236.2 0 230.1V153.9C0 147.8 3.4 142.3 8.8 139.6L32 128V112L8.8 100.4C3.4 97.7 0 92.2 0 86.1V9.9C0 3.8 3.4 -1.7 8.8 -4.4L32 -16C32 -42.5 53.5 -64 80 -64H368C394.5 -64 416 -42.5 416 -16L439.2 -4.4C444.6 -1.7 448 3.8 448 9.9V86.1C448 92.2000000000001 444.6 97.7000000000001 439.2 100.4L416 112V128L439.2 139.6C444.6 142.3 448 147.8 448 153.9V230.1C448 236.2 444.6 241.7 439.2 244.4000000000001L416 256V272L439.2 283.6zM401.7 227.4L416 220.2V163.8L401.7 156.6L384 147.8V92.2L401.7 83.4L416 76.2V19.8L401.7 12.6L384 3.8V-16C384 -24.8 376.8 -32 368 -32H80C71.2 -32 64 -24.8 64 -16V3.8L46.3 12.6L32 19.8V76.2L46.3 83.4L64 92.2V147.8L46.3 156.6L32 163.8V220.2L46.3 227.4L64 236.2V291.8L46.3 300.6L32 307.8V364.2L46.3 371.4L64 380.2V400C64 408.8 71.2 416 80 416H368C376.8 416 384 408.8 384 400V380.2L401.7 371.4L416 364.2V307.8L401.7 300.6L384 291.8V236.2L401.7 227.4zM336 384H112C103.2 384 96 376.8 96 368V16C96 7.2 103.2 0 112 0H336C344.8 0 352 7.2 352 16V368C352 376.8 344.8 384 336 384zM320 32H128V352H320V32z" />
+    <glyph glyph-name="tablet"
+      unicode="&#xF10A;"
+      horiz-adv-x="448" d=" M256 32C256 14.3 241.7 0 224 0S192 14.3 192 32C192 53.3 206.3 64 224 64S256 49.7 256 32zM448 400V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H400C426.5 448 448 426.5 448 400zM416 400C416 408.8 408.8 416 400 416H48C39.2 416 32 408.8 32 400V-16C32 -24.8 39.2 -32 48 -32H400C408.8 -32 416 -24.8 416 -16V400z" />
+    <glyph glyph-name="tablets"
+      unicode="&#xF490;"
+      horiz-adv-x="640" d=" M480 448C391.6 448 320 376.4 320 288S391.6 128 480 128S640 199.6 640 288S568.4 448 480 448zM480 160C409.3 160 352 217.3 352 288C352 317.6 362.4 344.4 379.3 366.1L558.2 187.2C536.4 170.4 509.6 160 480 160zM580.7 209.9L401.9 388.7C423.6 405.6 450.4 416 480 416C550.7 416 608 358.7 608 288C608 258.4 597.6 231.6 580.7 209.9zM160 256C71.6 256 0 184.4 0 96S71.6 -64 160 -64S320 7.6 320 96S248.4 256 160 256zM160 -32C94.8 -32 41.6 16.9 33.6 80H286.4C278.4 16.9 225.2 -32 160 -32zM33.6 112C41.6 175.1 94.8 224 160 224S278.4 175.1 286.4 112H33.6z" />
+    <glyph glyph-name="tachometer-alt-average"
+      unicode="&#xF624;"
+      horiz-adv-x="576" d=" M304 157.74V320C304 328.8400000000001 296.84 336 288 336S272 328.8400000000001 272 320V157.74C244.44 150.6 224 125.79 224 96C224 60.65 252.65 32 288 32S352 60.65 352 96C352 125.79 331.56 150.6 304 157.74zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64zM120 128C120 114.74 109.26 104 96 104S72 114.74 72 128S82.74 152 96 152S120 141.26 120 128zM176 264C176 250.74 165.26 240 152 240S128 250.74 128 264S138.74 288 152 288S176 277.26 176 264zM448 264C448 250.74 437.26 240 424 240S400 250.74 400 264S410.74 288 424 288S448 277.26 448 264zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0zM504 128C504 114.74 493.26 104 480 104S456 114.74 456 128S466.74 152 480 152S504 141.26 504 128z" />
+    <glyph glyph-name="tachometer-alt-fast"
+      unicode="&#xF625;"
+      horiz-adv-x="576" d=" M120 128C120 114.74 109.26 104 96 104S72 114.74 72 128S82.74 152 96 152S120 141.26 120 128zM288 296C301.26 296 312 306.74 312 320S301.26 344 288 344S264 333.26 264 320S274.74 296 288 296zM152 288C138.74 288 128 277.26 128 264S138.74 240 152 240S176 250.74 176 264S165.26 288 152 288zM434.06 276.44C440.94 270.88 442 260.8 436.44 253.94L339.3 133.94C347.18 123.3 352 110.26 352 96C352 60.65 323.35 32 288 32S224 60.65 224 96S252.65 160 288 160C297.4700000000001 160 306.38 157.82 314.4700000000001 154.12L411.5600000000001 274.06C417.1200000000001 280.94 427.1600000000001 281.98 434.0600000000001 276.44zM320 96C320 113.67 305.67 128 288 128S256 113.67 256 96S270.33 64 288 64S320 78.33 320 96zM480 152C466.74 152 456 141.26 456 128S466.74 104 480 104S504 114.74 504 128S493.26 152 480 152zM576 128C576 75.2 561.75 25.74 536.94 -16.8C531.33 -26.42 520.6400000000001 -32 509.5000000000001 -32H66.5000000000001C55.3600000000001 -32 44.6700000000001 -26.42 39.0600000000001 -16.8C14.25 25.74 0 75.2 0 128C0 287.06 128.94 416 288 416S576 287.06 576 128zM544 128C544 269.16 429.16 384 288 384S32 269.16 32 128C32 82.74 44 38.25 66.7 -0.68L509.5 0C532 38.25 544 82.74 544 128z" />
+    <glyph glyph-name="tachometer-alt-fastest"
+      unicode="&#xF626;"
+      horiz-adv-x="576" d=" M120 128C120 114.74 109.26 104 96 104S72 114.74 72 128S82.74 152 96 152S120 141.26 120 128zM288 296C301.26 296 312 306.74 312 320S301.26 344 288 344S264 333.26 264 320S274.74 296 288 296zM424 240C437.26 240 448 250.74 448 264S437.26 288 424 288S400 277.26 400 264S410.74 240 424 240zM495.78 130.62C497.25 121.9 491.34 113.67 482.6199999999999 112.21L351.42 90.34C348.53 57.7 321.4100000000001 32 288 32C252.65 32 224 60.65 224 96S252.65 160 288 160C314.09 160 336.44 144.34 346.41 121.95L477.38 143.78C485.91 145.27 494.31 139.34 495.78 130.62zM320 96C320 113.67 305.67 128 288 128S256 113.67 256 96S270.33 64 288 64S320 78.33 320 96zM152 288C138.74 288 128 277.26 128 264S138.74 240 152 240S176 250.74 176 264S165.26 288 152 288zM576 128C576 75.2 561.75 25.74 536.94 -16.8C531.33 -26.42 520.6400000000001 -32 509.5000000000001 -32H66.5000000000001C55.3600000000001 -32 44.6700000000001 -26.42 39.0600000000001 -16.8C14.25 25.74 0 75.2 0 128C0 287.06 128.94 416 288 416S576 287.06 576 128zM544 128C544 269.16 429.16 384 288 384S32 269.16 32 128C32 82.74 44 38.25 66.7 -0.68L509.5 0C532 38.25 544 82.74 544 128z" />
+    <glyph glyph-name="tachometer-alt-slow"
+      unicode="&#xF627;"
+      horiz-adv-x="576" d=" M120 128C120 114.74 109.26 104 96 104S72 114.74 72 128S82.74 152 96 152S120 141.26 120 128zM288 296C301.26 296 312 306.74 312 320S301.26 344 288 344S264 333.26 264 320S274.74 296 288 296zM352 96C352 60.65 323.35 32 288 32S224 60.65 224 96C224 110.26 228.82 123.3 236.71 133.94L139.57 253.94C134.01 260.8 135.07 270.88 141.95 276.44C148.83 281.99 158.92 280.94 164.45 274.06L261.54 154.12C269.63 157.81 278.54 160 288.01 160C323.35 160 352 131.35 352 96zM320 96C320 113.67 305.67 128 288 128S256 113.67 256 96S270.33 64 288 64S320 78.33 320 96zM576 128C576 75.2 561.75 25.74 536.94 -16.8C531.33 -26.42 520.6400000000001 -32 509.5000000000001 -32H66.5000000000001C55.3600000000001 -32 44.6700000000001 -26.42 39.0600000000001 -16.8C14.25 25.74 0 75.2 0 128C0 287.06 128.94 416 288 416S576 287.06 576 128zM544 128C544 269.16 429.16 384 288 384S32 269.16 32 128C32 82.74 44 38.25 66.7 -0.68L509.5 0C532 38.25 544 82.74 544 128zM424 288C410.74 288 400 277.26 400 264S410.74 240 424 240S448 250.74 448 264S437.26 288 424 288zM480 152C466.74 152 456 141.26 456 128S466.74 104 480 104S504 114.74 504 128S493.26 152 480 152z" />
+    <glyph glyph-name="tachometer-alt-slowest"
+      unicode="&#xF628;"
+      horiz-adv-x="576" d=" M128 264C128 277.26 138.74 288 152 288S176 277.26 176 264S165.26 240 152 240S128 250.74 128 264zM288 296C301.26 296 312 306.74 312 320S301.26 344 288 344S264 333.26 264 320S274.74 296 288 296zM576 128C576 75.2 561.75 25.74 536.94 -16.8C531.33 -26.42 520.6400000000001 -32 509.5000000000001 -32H66.5000000000001C55.3600000000001 -32 44.6700000000001 -26.42 39.0600000000001 -16.8C14.25 25.74 0 75.2 0 128C0 287.06 128.94 416 288 416S576 287.06 576 128zM544 128C544 269.16 429.16 384 288 384S32 269.16 32 128C32 82.74 44 38.25 66.7 -0.68L509.5 0C532 38.25 544 82.74 544 128zM352 96C352 60.65 323.35 32 288 32C254.59 32 227.47 57.7 224.57 90.35L93.37 112.22C84.65 113.67 78.75 121.91 80.21 130.6300000000001S90.09 145.2700000000001 98.62 143.7900000000001L229.59 121.9600000000001C239.56 144.34 261.9100000000001 160 288 160C323.35 160 352 131.35 352 96zM320 96C320 113.67 305.67 128 288 128S256 113.67 256 96S270.33 64 288 64S320 78.33 320 96zM480 152C466.74 152 456 141.26 456 128S466.74 104 480 104S504 114.74 504 128S493.26 152 480 152zM424 288C410.74 288 400 277.26 400 264S410.74 240 424 240S448 250.74 448 264S437.26 288 424 288z" />
+    <glyph glyph-name="tachometer-alt"
+      unicode="&#xF3FD;"
+      horiz-adv-x="576" d=" M288 296C301.26 296 312 306.74 312 320S301.26 344 288 344S264 333.26 264 320S274.74 296 288 296zM152 288C138.74 288 128 277.26 128 264S138.74 240 152 240S176 250.74 176 264S165.26 288 152 288zM424 288C410.74 288 400 277.26 400 264S410.74 240 424 240S448 250.74 448 264S437.26 288 424 288zM480 152C466.74 152 456 141.26 456 128S466.74 104 480 104S504 114.74 504 128S493.26 152 480 152zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0zM96 152C82.74 152 72 141.26 72 128S82.74 104 96 104S120 114.74 120 128S109.26 152 96 152zM365.2200000000001 319.12C357.0300000000001 321.9 347.7800000000001 317.57 344.8800000000001 309.23L293.0500000000001 159.49C291.3600000000001 159.62 289.7400000000001 160 288.0100000000001 160C252.6600000000001 160 224.0100000000001 131.35 224.0100000000001 96S252.6600000000001 32 288.0100000000001 32S352.0100000000001 60.65 352.0100000000001 96C352.0100000000001 118.25 340.6300000000001 137.82 323.3900000000001 149.29L375.1300000000001 298.77C378.0000000000001 307.11 373.5900000000001 316.23 365.2200000000001 319.12zM288 64C270.36 64 256 78.36 256 96S270.36 128 288 128S320 113.64 320 96S305.64 64 288 64z" />
+    <glyph glyph-name="tachometer-average"
+      unicode="&#xF629;"
+      horiz-adv-x="576" d=" M304 157.74V320C304 328.8400000000001 296.84 336 288 336S272 328.8400000000001 272 320V157.74C244.44 150.6 224 125.79 224 96C224 60.65 252.65 32 288 32S352 60.65 352 96C352 125.79 331.56 150.6 304 157.74zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0z" />
+    <glyph glyph-name="tachometer-fast"
+      unicode="&#xF62A;"
+      horiz-adv-x="576" d=" M411.56 274.06L314.4700000000001 154.12C306.3800000000001 157.81 297.4700000000001 160 288 160C252.65 160 224 131.35 224 96S252.65 32 288 32S352 60.65 352 96C352 110.26 347.18 123.3 339.29 133.94L436.43 253.94C441.99 260.8 440.93 270.88 434.05 276.44C427.1600000000001 281.98 417.12 280.94 411.56 274.06zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0z" />
+    <glyph glyph-name="tachometer-fastest"
+      unicode="&#xF62B;"
+      horiz-adv-x="576" d=" M477.38 143.78L346.41 121.95C336.44 144.34 314.09 160 288 160C252.65 160 224 131.35 224 96S252.65 32 288 32C321.41 32 348.53 57.7 351.43 90.35L482.63 112.22C491.35 113.67 497.25 121.91 495.79 130.6300000000001S485.91 145.2700000000001 477.38 143.78zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0z" />
+    <glyph glyph-name="tachometer-slow"
+      unicode="&#xF62C;"
+      horiz-adv-x="576" d=" M288 160C278.53 160 269.62 157.82 261.53 154.12L164.44 274.06C158.91 280.94 148.82 281.98 141.94 276.44C135.06 270.88 134 260.8 139.56 253.94L236.7 133.94C228.82 123.3 224 110.26 224 96C224 60.65 252.65 32 288 32S352 60.65 352 96S323.35 160 288 160zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0z" />
+    <glyph glyph-name="tachometer-slowest"
+      unicode="&#xF62D;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0zM288 160C261.9100000000001 160 239.56 144.34 229.59 121.95L98.62 143.78C90.09 145.26 81.68 139.34 80.21 130.62S84.65 113.67 93.37 112.2099999999999L224.57 90.3399999999999C227.47 57.7 254.59 32 288 32C323.35 32 352 60.65 352 96S323.35 160 288 160zM288 64C270.33 64 256 78.33 256 96S270.33 128 288 128S320 113.67 320 96S305.67 64 288 64z" />
+    <glyph glyph-name="tachometer"
+      unicode="&#xF0E4;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM509.5 0L66.7 -0.68C44 38.25 32 82.74 32 128C32 269.16 146.84 384 288 384S544 269.16 544 128C544 82.74 532 38.25 509.5 0zM365.2200000000001 319.12C357.0300000000001 321.9 347.7800000000001 317.57 344.8800000000001 309.23L293.0500000000001 159.49C291.3600000000001 159.62 289.7400000000001 160 288.0100000000001 160C252.6600000000001 160 224.0100000000001 131.35 224.0100000000001 96S252.6600000000001 32 288.0100000000001 32S352.0100000000001 60.65 352.0100000000001 96C352.0100000000001 118.25 340.6300000000001 137.82 323.3900000000001 149.29L375.1300000000001 298.77C378.0000000000001 307.11 373.5900000000001 316.23 365.2200000000001 319.12zM288 64C270.36 64 256 78.36 256 96S270.36 128 288 128S320 113.64 320 96S305.64 64 288 64z" />
+    <glyph glyph-name="tag"
+      unicode="&#xF02B;"
+      horiz-adv-x="512" d=" M497.941 222.059L286.0590000000001 433.941A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V195.882A48 48 0 0 1 14.059 161.941L225.941 -49.941C244.686 -68.6859999999999 275.078 -68.687 293.823 -49.941L497.941 154.177C516.6859999999999 172.922 516.6859999999999 203.314 497.941 222.059zM475.314 176.804L271.1960000000001 -27.314C264.9530000000001 -33.557 254.8210000000001 -33.567 248.569 -27.314L36.686 184.569A15.895 15.895 0 0 0 32 195.883V400C32 408.822 39.178 416 48 416H252.118C256.392 416 260.41 414.336 263.432 411.314L475.314 199.432C481.552 193.193 481.552 183.042 475.314 176.804zM144 324C155.028 324 164 315.028 164 304S155.028 284 144 284S124 292.972 124 304S132.972 324 144 324M144 352C117.49 352 96 330.51 96 304S117.49 256 144 256S192 277.49 192 304S170.51 352 144 352z" />
+    <glyph glyph-name="tags"
+      unicode="&#xF02C;"
+      horiz-adv-x="640" d=" M625.941 154.177L421.823 -49.941C403.077 -68.687 372.685 -68.6859999999999 353.941 -49.941L352.166 -48.166L374.793 -25.539L376.568 -27.314C382.821 -33.5669999999999 392.952 -33.557 399.195 -27.314L603.313 176.804C609.551 183.043 609.551 193.1930000000001 603.313 199.4310000000001L391.431 411.314A15.895 15.895 0 0 1 380.117 416H360.5680000000001L328.5680000000001 448H380.117A48 48 0 0 0 414.058 433.941L625.94 222.059C644.686 203.314 644.686 172.922 625.941 154.177zM252.118 416H48C39.178 416 32 408.822 32 400V195.882C32 191.608 33.664 187.59 36.686 184.568L248.568 -27.314C254.8210000000001 -33.567 264.952 -33.557 271.195 -27.314L475.313 176.804C481.551 183.043 481.551 193.193 475.313 199.431L263.431 411.314A15.895 15.895 0 0 1 252.118 416M252.118 448A48 48 0 0 0 286.059 433.941L497.941 222.059C516.6859999999999 203.314 516.6859999999999 172.922 497.941 154.177L293.823 -49.941C275.077 -68.687 244.685 -68.6859999999999 225.941 -49.941L14.059 161.941A48 48 0 0 0 0 195.882V400C0 426.51 21.49 448 48 448H252.118zM144 324C132.972 324 124 315.028 124 304S132.972 284 144 284S164 292.972 164 304S155.028 324 144 324M144 352C170.51 352 192 330.51 192 304S170.51 256 144 256S96 277.49 96 304S117.49 352 144 352z" />
+    <glyph glyph-name="tally"
+      unicode="&#xF69C;"
+      horiz-adv-x="640" d=" M634.79 298.42C633.4599999999999 302.63 628.9599999999999 304.96 624.75 303.63L528 273.51V408C528 412.42 524.42 416 520 416H504C499.58 416 496 412.42 496 408V263.55L400 233.67V408C400 412.42 396.42 416 392 416H376C371.58 416 368 412.42 368 408V223.7L272 193.82V408C272 412.42 268.42 416 264 416H248C243.58 416 240 412.42 240 408V183.85L144 153.97V408C144 412.42 140.42 416 136 416H120C115.58 416 112 412.42 112 408V144.01L5.58 110.88A8.005 8.005 0 0 1 0.37 100.84L5.21 85.59C6.54 81.38 11.04 79.05 15.25 80.38L112 110.49V-24C112 -28.42 115.58 -32 120 -32H136C140.42 -32 144 -28.42 144 -24V120.46L240 150.34V-24C240 -28.42 243.58 -32 248 -32H264C268.42 -32 272 -28.42 272 -24V160.3L368 190.18V-24C368 -28.42 371.58 -32 376 -32H392C396.42 -32 400 -28.42 400 -24V200.15L496 230.03V-24C496 -28.42 499.58 -32 504 -32H520C524.42 -32 528 -28.42 528 -24V239.99L634.42 273.12A8.005 8.005 0 0 1 639.63 283.16L634.79 298.42z" />
+    <glyph glyph-name="tape"
+      unicode="&#xF4DB;"
+      horiz-adv-x="640" d=" M632 0H338.9C404.2 39.2 448 110.4 448 192C448 315.7 347.7 416 224 416S0 315.7 0 192S100.3 -32 224 -32H632C636.4 -32 640 -28.4 640 -24V-8C640 -3.6 636.4 0 632 0zM32 192C32 297.9 118.1 384 224 384S416 297.9 416 192S329.9 0 224 0S32 86.1 32 192zM224 288C171 288 128 245 128 192S171 96 224 96S320 139 320 192S277 288 224 288zM224 128C188.7 128 160 156.7 160 192S188.7 256 224 256S288 227.3 288 192S259.3 128 224 128z" />
+    <glyph glyph-name="tasks"
+      unicode="&#xF0AE;"
+      horiz-adv-x="512" d=" M506 334H198C194.7 334 192 336.7 192 340V364C192 367.3 194.7 370 198 370H506C509.3 370 512 367.3 512 364V340C512 336.7 509.3 334 506 334zM512 180V204C512 207.3 509.3 210 506 210H198C194.7 210 192 207.3 192 204V180C192 176.7 194.7 174 198 174H506C509.3 174 512 176.7 512 180zM512 20V44C512 47.3 509.3 50 506 50H198C194.7 50 192 47.3 192 44V20C192 16.7 194.7 14 198 14H506C509.3 14 512 16.7 512 20zM68.4 72C48.5 72 32.4 55.9 32.4 36S48.5 0 68.4 0S104 16.1 104 36S88.3 72 68.4 72zM170.9 405.1L163.5 412.5C158.8 417.2 151.2 417.2 146.5 412.5L67.7 333.3L29.3 371.7C24.6 376.4 17 376.4 12.3 371.7L3.4 362.8C-1.3 358.1 -1.3 350.5 3.4 345.8L57.7 291.5C62.4 286.8 70 286.8 74.7 291.5L74.9 291.7L170.8 388C175.6 392.8 175.6 400.4 170.9 405.1zM171.3 245.1L163.9 252.5C159.2 257.2 151.6 257.2 146.9 252.5L68.1 173.3L29.7 211.7C25 216.4 17.4 216.4 12.7 211.7L4 202.8C-0.7 198.1 -0.7 190.5 4 185.8L58.3 131.5C63 126.8 70.6 126.8 75.3 131.5L75.1 131.7L171.4 228C176 232.8 176 240.4 171.3 245.1z" />
+    <glyph glyph-name="taxi"
+      unicode="&#xF1BA;"
+      horiz-adv-x="512" d=" M96 160C78.33 160 64 145.67 64 128S78.33 96 96 96S128 110.33 128 128S113.67 160 96 160zM416 160C398.33 160 384 145.67 384 128S398.33 96 416 96S448 110.33 448 128S433.67 160 416 160zM328 128H184C179.58 128 176 124.42 176 120V104C176 99.58 179.58 96 184 96H328C332.42 96 336 99.58 336 104V120C336 124.42 332.42 128 328 128zM447.11 218.4L433.79 287.19C426.53 324.75 393.5 352 355.25 352H352V384C352 401.67 337.67 416 320 416H192C174.33 416 160 401.67 160 384V352H156.75C118.5 352 85.47 324.75 78.22 287.2L64.9 218.4C27.23 205.42 0 170.07 0 128V96C0 72.37 12.95 51.96 32 40.88V0C32 -17.67 46.33 -32 64 -32H112C129.67 -32 144 -17.67 144 0V32H368V0C368 -17.67 382.33 -32 400 -32H448C465.67 -32 480 -17.67 480 0V40.88C499.05 51.97 512 72.37 512 96V128C512 170.07 484.77 205.42 447.11 218.4zM192 384H320V352H192V384zM109.66 281.12C114 303.66 133.81 320 156.75 320H355.25C378.19 320 398 303.66 402.3400000000001 281.11L413.4 224H98.6L109.66 281.12zM112 0H64V32H112V0zM448 0H400V32H448V0zM480 96C480 78.36 465.64 64 448 64H64C46.36 64 32 78.36 32 96V128C32 163.29 60.71 192 96 192H416C451.29 192 480 163.29 480 128V96z" />
+    <glyph glyph-name="teeth-open"
+      unicode="&#xF62F;"
+      horiz-adv-x="640" d=" M576 144H64C28.66 144 0 115.35 0 80V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V80C640 115.35 611.34 144 576 144zM464 80V98.67C464 106.03 469.97 112 477.33 112H530.66C538.02 112 543.99 106.03 543.99 98.67V77.34C543.99 55.2500000000001 526.08 37.34 503.99 37.34S463.99 55.2500000000001 463.99 77.34V80zM336 98.29C336 105.86 342.14 112 349.71 112H418.28C425.85 112 431.99 105.86 431.99 98.29V80C431.99 53.49 410.5 32 383.99 32S335.99 53.49 335.99 80V98.29zM208 98.29C208 105.86 214.14 112 221.71 112H290.28C297.85 112 303.99 105.86 303.99 98.29V80C303.99 53.49 282.5 32 255.99 32S207.99 53.49 207.99 80V98.29zM96 98.67C96 106.03 101.97 112 109.33 112H162.66C170.02 112 175.99 106.03 175.99 98.67V77.33C175.99 55.2400000000001 158.08 37.33 135.99 37.33S95.99 55.2400000000001 95.99 77.33V98.67zM608 32C608 -3.29 579.29 -32 544 -32H96C60.71 -32 32 -3.29 32 32V80C32 97.64 46.36 112 64 112H66.23C64.91 107.76 64 103.34 64 98.67V77.34C64 37.64 96.3 5.34 136 5.34C158.7 5.34 178.73 16.11 191.94 32.5700000000001C206.53 12.92 229.71 0 256 0C282.26 0 305.4 12.89 320 32.49C334.6 12.89 357.74 0 384 0C410.29 0 433.4700000000001 12.92 448.06 32.57C461.27 16.11 481.3 5.34 504 5.34C543.7 5.34 576 37.64 576 77.34V98.67C576 103.34 575.09 107.7599999999999 573.77 111.9999999999999H576C593.64 111.9999999999999 608 97.6399999999999 608 79.9999999999999V31.9999999999999zM544 448H96C42.98 448 0 405.02 0 352V272C0 236.65 28.66 208 64 208H576C611.34 208 640 236.65 640 272V352C640 405.02 597.02 448 544 448zM176 253.33C176 245.97 170.03 240 162.67 240H109.34C101.98 240 96.01 245.97 96.01 253.33V274.6600000000001C96.01 296.75 113.92 314.6600000000001 136.01 314.6600000000001S176.01 296.75 176.01 274.6600000000001V253.3300000000001zM304 253.71C304 246.14 297.86 240 290.29 240H221.72C214.15 240 208.01 246.14 208.01 253.71V297.14C208.01 323.6500000000001 229.5000000000001 345.14 256.01 345.14S304.01 323.6500000000001 304.01 297.14V253.71zM432 253.71C432 246.14 425.86 240 418.29 240H349.7200000000001C342.1500000000001 240 336.0100000000001 246.14 336.0100000000001 253.71V297.14C336.0100000000001 323.6500000000001 357.5000000000001 345.14 384.0100000000001 345.14S432.0100000000001 323.6500000000001 432.0100000000001 297.14V253.71zM544 253.33C544 245.97 538.03 240 530.67 240H477.34C469.98 240 464.01 245.97 464.01 253.33V274.6600000000001C464.01 296.75 481.92 314.6600000000001 504.01 314.6600000000001S544.01 296.75 544.01 274.6600000000001V253.3300000000001zM608 272C608 254.36 593.64 240 576 240H573.77C575.09 244.24 576 248.66 576 253.33V274.6600000000001C576 314.36 543.7 346.6600000000001 504 346.6600000000001C486.16 346.6600000000001 469.81 340.1400000000001 457.22 329.35C444.8 357.4700000000001 416.6600000000001 377.14 384 377.14C357.86 377.14 334.61 364.54 320 345.0900000000001C305.39 364.54 282.14 377.14 256 377.14C223.34 377.14 195.2 357.4700000000001 182.78 329.36C170.19 340.15 153.84 346.67 136 346.67C96.3 346.67 64 314.37 64 274.67V253.3400000000001C64 248.6700000000001 64.91 244.2500000000001 66.23 240.01H64C46.36 240.01 32 254.37 32 272.01V352C32 387.29 60.71 416 96 416H544C579.29 416 608 387.29 608 352V272z" />
+    <glyph glyph-name="teeth"
+      unicode="&#xF62E;"
+      horiz-adv-x="640" d=" M544 448H96C42.98 448 0 405.02 0 352V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V352C640 405.02 597.02 448 544 448zM608 32C608 -3.29 579.29 -32 544 -32H96C60.71 -32 32 -3.29 32 32V160H66.5C65.13 155.75 64 151.38 64 146.67V93.34C64 53.64 96.3 21.34 136 21.34C158.7 21.34 178.73 32.11 191.94 48.5700000000001C206.53 28.92 229.71 16 256 16C282.26 16 305.4 28.89 320 48.49C334.6 28.89 357.74 16 384 16C410.29 16 433.4700000000001 28.92 448.06 48.57C461.27 32.11 481.3 21.34 504 21.34C543.7 21.34 576 53.64 576 93.34V146.67C576 151.38 574.87 155.7599999999999 573.5 160H608V31.9999999999999zM109.33 160H162.66C170.02 160 175.99 154.03 175.99 146.67V93.33C175.99 71.2400000000001 158.08 53.33 135.99 53.33S95.99 71.2400000000001 95.99 93.33V146.66C96 154.03 101.97 160 109.33 160zM96 205.33V258.6600000000001C96 280.75 113.91 298.6600000000001 136 298.6600000000001S176 280.75 176 258.6600000000001V205.3300000000001C176 197.97 170.03 192 162.67 192H109.34C101.97 192 96 197.97 96 205.3300000000001zM221.71 160H290.28C297.85 160 303.99 153.86 303.99 146.29V96C303.99 69.49 282.5 48 255.99 48S207.99 69.49 207.99 96V146.29C208 153.86 214.14 160 221.71 160zM208 205.71V281.13C208 307.64 229.49 329.13 256 329.13S304 307.64 304 281.13V205.7C304 198.13 297.86 191.99 290.29 191.99H221.72C214.14 192 208 198.14 208 205.71zM349.71 160H418.28C425.85 160 431.99 153.86 431.99 146.29V96C431.99 69.49 410.5 48 383.99 48S335.99 69.49 335.99 96V146.29C336 153.86 342.14 160 349.71 160zM336 205.71V281.14C336 307.65 357.49 329.14 384 329.14S432 307.65 432 281.14V205.72C432 198.15 425.86 192.01 418.29 192.01H349.7200000000001C342.1400000000001 192 336 198.14 336 205.71zM544 205.33C544 197.97 538.03 192 530.67 192H477.34C469.98 192 464.01 197.97 464.01 205.33V258.6600000000001C464.01 280.75 481.92 298.6600000000001 504.01 298.6600000000001S544.01 280.75 544.01 258.6600000000001V205.3300000000001zM477.33 160H530.66C538.02 160 543.99 154.03 543.99 146.67V93.34C543.99 71.2500000000001 526.08 53.34 503.99 53.34S463.99 71.2500000000001 463.99 93.34V146.67C464 154.03 469.97 160 477.33 160zM608 192H573.5C574.87 196.25 576 200.62 576 205.33V258.6600000000001C576 298.36 543.7 330.6600000000001 504 330.6600000000001C486.1 330.6600000000001 469.9 323.85 457.29 313C444.94 341.2800000000001 416.7700000000001 361.1400000000001 384 361.1400000000001C357.74 361.1400000000001 334.6 348.25 320 328.6500000000001C305.4 348.25 282.26 361.1400000000001 256 361.1400000000001C223.22 361.1400000000001 195.05 341.2800000000001 182.71 313.0000000000001C170.1 323.85 153.91 330.6600000000001 136 330.6600000000001C96.3 330.6600000000001 64 298.3600000000001 64 258.6600000000001V205.3300000000001C64 200.62 65.13 196.2400000000001 66.5 192H32V352C32 387.29 60.71 416 96 416H544C579.29 416 608 387.29 608 352V192z" />
+    <glyph glyph-name="temperature-frigid"
+      unicode="&#xF768;"
+      horiz-adv-x="512" d=" M416 93.1V112C416 120.8 408.8 128 400 128S384 120.8 384 112V93.1C365.4 86.5 352 68.9 352 48C352 21.5 373.5 0 400 0S448 21.5 448 48C448 68.9 434.6 86.5 416 93.1zM480 126.1V368C480 412.1 444.1 448 400 448S320 412.1 320 368V126.1C299.7 105.3 288 77.2000000000001 288 48C288 -13.8 338.2 -64 400 -64S512 -13.8 512 48C512 77.2 500.3 105.4 480 126.1zM400 -32C355.9 -32 320 3.9 320 48C320 73.5 332.2 96.9 352 111.8V368C352 394.5 373.5 416 400 416S448 394.5 448 368V111.8C467.8 97 480 73.5 480 48C480 3.9 444.1 -32 400 -32zM277.1 122C280.5 127.6 283.9000000000001 133.1 288 138.2V152.4L222.9 192L288 231.5V268.6L208 220V313.3L253.7 359C256.8 362.1 256.8 367.2 253.7 370.3L242.4 381.6C239.3 384.7 234.2 384.7 231.1 381.6L208.1 358.6V408C208.1 412.4 204.5 416 200.1 416H184.1C179.7 416 176.1 412.4 176.1 408V358.6L153.1 381.6C150 384.7 144.9 384.7 141.8 381.6L130.5 370.3C127.4 367.2 127.4 362.1 130.5 359L176.1999999999999 313.3V220L98.4999999999999 266.5L82.3999999999999 328.9C81.2999999999999 333.2 77.0999999999999 335.7 72.9999999999999 334.6L58.0999999999999 330.5C53.9999999999999 329.4000000000001 51.4999999999999 325 52.5999999999999 320.7000000000001L60.6999999999999 289.2000000000001L19.4999999999999 313.9C15.7999999999999 316.1 11.0999999999999 314.8 8.9999999999999 311L0.9999999999999 297.1C-1.1000000000001 293.3 0.0999999999999 288.4 3.7999999999999 286.2L45 261.5L14.8 253C10.7 251.9 8.2 247.5 9.3 243.2L13.3 227.7C14.4 223.4 18.6 220.9 22.7 222L82.9 238.7L161.1 191.9L82.9 145.1L22.7 161.8C18.6 162.9 14.4 160.4 13.3 156.1L9.3 140.6C8.2 136.3 10.6 131.9 14.8 130.8L45.1 122.4L3.9 97.9C0.2 95.7 -1.1 90.8 1.1 87L8.8 73.1C10.9 69.3 15.7 68 19.3 70.2000000000001L60.5 94.9L52.4 63.4C51.3 59.1 53.7 54.7 57.9 53.6L72.8 49.5C76.9 48.4 81.1 50.9 82.2 55.2L98.3 117.6L176 164.1V70.8L130.3 25C127.2 21.9 127.2 16.8 130.3 13.7L141.6 2.4C144.7 -0.7 149.8 -0.7 152.9 2.4L175.9 25.4V-24C175.9 -28.4 179.5 -32 183.9 -32H199.9C204.3000000000001 -32 207.9 -28.4 207.9 -24V25.4L230.9000000000001 2.4C234.0000000000001 -0.7 239.1 -0.7 242.2000000000001 2.4L253.5000000000001 13.7C256.6000000000001 16.8 256.6000000000001 21.9 253.5000000000001 25L208 70.6V163.9L277.1 122.0000000000001z" />
+    <glyph glyph-name="temperature-high"
+      unicode="&#xF769;"
+      horiz-adv-x="384" d=" M320 448C284.7 448 256 419.3 256 384S284.7 320 320 320S384 348.7 384 384S355.3 448 320 448zM320 352C302.3 352 288 366.3 288 384S302.3 416 320 416S352 401.7 352 384S337.7 352 320 352zM192 368C192 412.1 156.1 448 112 448S32 412.1 32 368V126.1C11.7 105.4 0 77.2 0 48C0 -13.8 50.2 -64 112 -64S224 -13.8 224 48C224 77.2 212.3 105.4 192 126.1V368zM112 -32C67.9 -32 32 3.9 32 48C32 73.5 44.2 96.9 64 111.8V368C64 394.5 85.5 416 112 416S160 394.5 160 368V111.8C179.8 97 192 73.5 192 48C192 3.9 156.1 -32 112 -32zM128 93.1V368C128 376.8 120.8 384 112 384S96 376.8 96 368V93.1C77.4 86.5 64 68.9 64 48C64 21.5 85.5 0 112 0S160 21.5 160 48C160 68.9 146.6 86.5 128 93.1z" />
+    <glyph glyph-name="temperature-hot"
+      unicode="&#xF76A;"
+      horiz-adv-x="576" d=" M128 208C128 155.1 171.1 112 224 112S320 155.1 320 208S276.9 304 224 304S128 260.9 128 208zM288 208C288 172.7 259.3 144 224 144S160 172.7 160 208S188.7 272 224 272S288 243.3 288 208zM480 93.1V368C480 376.8 472.8 384 464 384S448 376.8 448 368V93.1C429.4 86.5 416 68.9 416 48C416 21.5 437.5 0 464 0S512 21.5 512 48C512 68.9 498.6 86.5 480 93.1zM544 126.1V368C544 412.1 508.1 448 464 448S384 412.1 384 368V126.1C363.7 105.3 352 77.2000000000001 352 48C352 -13.8 402.2 -64 464 -64S576 -13.8 576 48C576 77.2 564.3 105.4 544 126.1zM464 -32C419.9 -32 384 3.9 384 48C384 73.5 396.3 96.9 416 111.8V368C416 394.5 437.5 416 464 416S512 394.5 512 368V111.8C531.8 97 544 73.5 544 48C544 3.9 508.1 -32 464 -32zM263.9 88.4L224 28.8L184.1 88.5C180.5 93.9 174.1 96.7 167.7 95.3L97.3 81.3L111.2 151.7000000000001C112.5 158.0000000000001 109.8 164.5000000000001 104.4 168.1L44.8 208L104.5 247.9C109.9 251.5 112.5 258 111.3 264.3L97.4 334.7000000000001L167.8 320.7000000000001C174.2 319.4 180.6 322.1 184.2 327.5L224 387.2L263.9 327.5C267.5 322.1 273.8 319.4 280.3 320.7L352 335V367.6L284.6 354.2L237.3 424.9C231.3 433.8 216.7 433.8 210.7 424.9L163.4 354.2L80.1 370.8C74.8 371.9 69.4 370.2 65.7 366.4C61.9 362.6 60.3 357.2 61.3 352L77.8 268.6L7.1 221.3C2.7 218.3 0 213.3 0 208S2.7 197.6999999999999 7.1 194.6999999999999L77.8 147.3999999999999L61.3 64C60.3 58.8 61.9 53.3 65.7 49.6C69.5 45.8 74.8 44.1 80.1 45.2L163.4 61.7000000000001L210.7 -8.9999999999999C213.7 -13.4999999999999 218.7 -16.1 224 -16.1C229.3 -16.1 234.3 -13.4 237.3 -8.9999999999999L284.6 61.7000000000001L320.6 54.6C321.1 65.3 322.9000000000001 75.9 325.8 86.2000000000001L280.3 95.2000000000001C273.8 96.6 267.5 93.8000000000001 263.9000000000001 88.4z" />
+    <glyph glyph-name="temperature-low"
+      unicode="&#xF76B;"
+      horiz-adv-x="384" d=" M128 93.1V144C128 152.8 120.8 160 112 160S96 152.8 96 144V93.1C77.4 86.5 64 68.9 64 48C64 21.5 85.5 0 112 0S160 21.5 160 48C160 68.9 146.6 86.5 128 93.1zM320 448C284.7 448 256 419.3 256 384S284.7 320 320 320S384 348.7 384 384S355.3 448 320 448zM320 352C302.3 352 288 366.3 288 384S302.3 416 320 416S352 401.7 352 384S337.7 352 320 352zM192 368C192 412.1 156.1 448 112 448S32 412.1 32 368V126.1C11.7 105.4 0 77.2 0 48C0 -13.8 50.2 -64 112 -64S224 -13.8 224 48C224 77.2 212.3 105.4 192 126.1V368zM112 -32C67.9 -32 32 3.9 32 48C32 73.5 44.2 96.9 64 111.8V368C64 394.5 85.5 416 112 416S160 394.5 160 368V111.8C179.8 97 192 73.5 192 48C192 3.9 156.1 -32 112 -32z" />
+    <glyph glyph-name="tenge"
+      unicode="&#xF7D7;"
+      horiz-adv-x="384" d=" M376 320H8C3.6 320 0 316.4 0 312V296C0 291.6 3.6 288 8 288H176V-24C176 -28.4 179.6 -32 184 -32H200C204.4 -32 208 -28.4 208 -24V288H376C380.4 288 384 291.6 384 296V312C384 316.4 380.4 320 376 320zM376 416H8C3.6 416 0 412.4 0 408V392C0 387.6 3.6 384 8 384H376C380.4 384 384 387.6 384 392V408C384 412.4 380.4 416 376 416z" />
+    <glyph glyph-name="tennis-ball"
+      unicode="&#xF45E;"
+      horiz-adv-x="496" d=" M248 440C111.2 440 0 328.8 0 192S111.2 -56 248 -56S496 55.2 496 192S384.8 440 248 440zM235.5 407.4C230 397.7 226.2 386.9 226.2 375C226.2 333.7 207.7 287.4 180.2 259.9S106.4 213.9 65.2 213.9C53.2 213.9 42.4 210.1 32.7 204.5C38.9 313.6 126.4 401.1 235.5 407.4zM34.5 160.8C39.4 173.4 51.1 181.9 65.1 181.9C115.1 181.9 169.1 203.7000000000001 202.7 237.3000000000001C236.3 270.9000000000001 258.1 325.0000000000001 258.1 375C258.1 389 266.5 400.7000000000001 279.1 405.5C373.2 391.8 447.7 317.3 461.4 223.2C456.5 210.7 444.8 202.3 430.8 202.2C380.8 202.2 326.8 180.4 293.2 146.8C259.5999999999999 113.2 237.8 59.1 237.8 9.1C237.8 -4.9 229.3 -16.7 216.6999999999999 -21.5C122.6999999999999 -7.8 48.1999999999999 66.7 34.4999999999999 160.8zM260.5 -23.4C266.1 -13.7 269.8 -2.9 269.9 9.1C269.9 50.4 288.4 96.7000000000001 315.9 124.2000000000001S389.7 170.2000000000001 430.9 170.2000000000001C442.8 170.2000000000001 453.7 174.0000000000001 463.3 179.5000000000001C457.1 70.4000000000001 369.6 -17.0999999999999 260.5 -23.4z" />
+    <glyph glyph-name="terminal"
+      unicode="&#xF120;"
+      horiz-adv-x="640" d=" M34.495 411.535L245.546 200.485C250.232 195.799 250.232 188.201 245.546 183.514L34.495 -27.535C29.809 -32.221 22.211 -32.221 17.525 -27.535L10.454 -20.465C5.768 -15.7790000000001 5.768 -8.181 10.454 -3.494L205.947 192L10.454 387.4940000000001C5.768 392.18 5.768 399.778 10.454 404.4650000000001L17.525 411.5350000000001C22.211 416.222 29.809 416.222 34.495 411.5350000000001zM640 -20V-10C640 -3.373 634.627 2 628 2H300C293.373 2 288 -3.373 288 -10V-20C288 -26.627 293.373 -32 300 -32H628C634.627 -32 640 -26.627 640 -20z" />
+    <glyph glyph-name="text-height"
+      unicode="&#xF034;"
+      horiz-adv-x="448" d=" M0 332V404C0 410.627 5.373 416 12 416H276C282.627 416 288 410.627 288 404V332C288 325.373 282.627 320 276 320H267.52C260.893 320 255.52 325.373 255.52 332V384H160.555V0H204C210.627 0 216 -5.373 216 -12V-20C216 -26.627 210.627 -32 204 -32H84C77.373 -32 72 -26.627 72 -20V-12C72 -5.373 77.373 0 84 0H127.444V384H32.48V332C32.48 325.373 27.107 320 20.48 320H12C5.373 320 0 325.373 0 332zM393.87 413.123L353.886 365.122C349.914 360.352 352.49 352 360.03 352H384V32H360.002C353.161 32 349.568 24.029 353.8590000000001 18.878L393.8440000000001 -29.123C397.0370000000001 -32.956 402.9330000000001 -32.961 406.1310000000001 -29.123L446.115 18.878C450.088 23.648 447.511 32 439.9720000000001 32H416V352H439.998C446.839 352 450.432 359.971 446.141 365.122L406.156 413.123C402.964 416.957 397.068 416.961 393.87 413.123z" />
+    <glyph glyph-name="text-width"
+      unicode="&#xF035;"
+      horiz-adv-x="448" d=" M0 332V404C0 410.627 5.373 416 12 416H436C442.627 416 448 410.627 448 404V332C448 325.373 442.627 320 436 320H427.52C420.893 320 415.52 325.373 415.52 332V384H240.556V128H284C290.627 128 296 122.627 296 116V108C296 101.373 290.627 96 284 96H164C157.373 96 152 101.373 152 108V116C152 122.627 157.373 128 164 128H207.444V384H32.48V332C32.48 325.373 27.107 320 20.48 320H12C5.373 320 0 325.373 0 332zM445.123 22.13L397.122 62.114C392.3520000000001 66.087 384 63.51 384 55.971V32H64V55.998C64 62.839 56.029 66.432 50.878 62.141L2.877 22.157C-0.956 18.964 -0.961 13.068 2.877 9.87L50.878 -30.114C55.648 -34.087 64 -31.51 64 -23.971V0H384V-23.998C384 -30.839 391.971 -34.432 397.122 -30.141L445.123 9.8440000000001C448.957 13.0360000000001 448.961 18.9320000000001 445.123 22.1300000000001z" />
+    <glyph glyph-name="th-large"
+      unicode="&#xF009;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM240 384V208H32V368C32 376.837 39.163 384 48 384H240zM32 16V176H240V0H48C39.163 0 32 7.163 32 16zM272 0V176H480V16C480 7.163 472.837 0 464 0H272zM480 208H272V384H464C472.837 384 480 376.837 480 368V208z" />
+    <glyph glyph-name="th-list"
+      unicode="&#xF00B;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM480 368V277.333H192V384H464C472.837 384 480 376.837 480 368zM480 138.667H192V245.333H480V138.667zM32 245.333H160V138.666H32V245.333zM160 384V277.333H32V368C32 376.837 39.163 384 48 384H160zM32 16V106.667H160V0H48C39.163 0 32 7.163 32 16zM192 0V106.667H480V16C480 7.163 472.837 0 464 0H192z" />
+    <glyph glyph-name="th"
+      unicode="&#xF00A;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM320 384V277.333H192V384H320zM480 138.667H352V245.333H480V138.667zM320 138.667H192V245.333H320V138.667zM32 245.333H160V138.666H32V245.333zM160 384V277.333H32V368C32 376.837 39.163 384 48 384H160zM32 16V106.667H160V0H48C39.163 0 32 7.163 32 16zM192 0V106.667H320V0H192zM352 0V106.667H480V16C480 7.163 472.837 0 464 0H352zM480 277.3330000000001H352V384H464C472.837 384 480 376.837 480 368V277.333z" />
+    <glyph glyph-name="theater-masks"
+      unicode="&#xF630;"
+      horiz-adv-x="640" d=" M151.06 241.98C170.4 245.39 186.84 259.84 196.22 281.65C199.69 289.77 195.94 299.18 187.81 302.67C179.69 306.17 170.28 302.42 166.78 294.28C163.84 287.39 157.16 275.55 145.5 273.5C133.81 271.34 123.47 280.31 118.34 285.75C112.25 292.19 102.12 292.47 95.72 286.44C89.28 280.38 88.97 270.25 95.03 263.82C100.2 258.32 121.34 236.68 151.06 241.98zM513.8399999999999 239.86C494.4299999999999 243.34 474.3699999999999 235.61 457.8099999999999 218.05C451.7499999999999 211.61 452.0599999999999 201.49 458.4999999999999 195.43C464.91 189.4 475.03 189.68 481.1199999999999 196.12C486.24 201.59 496.4999999999999 210.46 508.28 208.37C519.9399999999999 206.31 526.62 194.46 529.56 187.59C533.0999999999999 179.4 542.5799999999999 175.74 550.5899999999999 179.2C558.7099999999999 182.68 562.4699999999999 192.09 558.9999999999999 200.22C549.6299999999999 222 533.1899999999999 236.45 513.8399999999999 239.86zM519.53 129.25C493.22 113.31 456.47 108.02 418.65 114.67C380.84 121.34 348.12 138.9 328.84 162.87C319.69 174.21 301.59 168.39 300.43 154.17C295.18 91.09 339.12 35.09 402.62 23.9C423.72 20.18 517.66 17.4 543.24 111.35C547.01 125.18 532 136.7 519.53 129.25zM408.19 55.41C375 61.27 349 83.49 337.91 112.36C359.25 98.27 385.13 88.09 413.1 83.17C441.13 78.1899999999999 468.85 78.92 493.76 84.89C473.41 61.56 441.38 49.59 408.19 55.41zM339.31 221.11C344.43 226.55 354.81 235.66 366.47 233.36C378.13 231.31 384.81 219.47 387.75 212.58C391.29 204.39 400.77 200.73 408.78 204.19C416.9 207.6699999999999 420.66 217.0799999999999 417.19 225.21C407.69 247.35 391.66 261.44 372.03 264.9C352.44 268.26 332.53 260.5899999999999 316 243.06C309.94 236.62 310.25 226.5 316.69 220.44C323.13 214.3899999999999 333.2200000000001 214.6699999999999 339.31 221.1099999999999zM606.8 328.0900000000001C565.0699999999999 351.31 486.8 386.64 379.7 385.02C373.83 418.27 351.11 438.13 325.17 442.28C301.27 446.11 277.24 448 253.32 448C176.66 448 101.02 428.53 33.2 390.79C9.03 377.35 -3.92 349.28 1.05 321.1L32.78 141.14C47.01 60.42 169.11 -1.3 237.23 -1.3C251.08 -1.3 261.09 0.58 280.84 10.36C283.42 7.38 343.63 -64 402.77 -64C470.89 -64 592.99 -2.29 607.22 78.44L638.95 258.4C643.9200000000001 286.57 630.97 314.64 606.8000000000001 328.0900000000001zM237.23 30.71C179.78 30.71 75.19 84.92 64.29 146.7L32.57 326.66C29.96 341.45 36.47 355.99 48.76 362.83C74.2 376.98 178.25 433.39 320.12 410.68C333.6 408.52 344.29 397.62 347.3 383.4600000000001C336.4700000000001 382.52 325.64 381.31 314.8300000000001 379.5800000000001C287.5200000000001 375.2100000000001 265.7500000000001 353.26 260.79 325.0900000000001L237.12 190.9C169.88 187.84 136.87 144.87 135.47 143.12C129.94 136.23 131.03 126.15 137.91 120.62C145.81 114.3 155.7 117.21 160.41 123.06C161.43 124.33 182.75 152.61 231.36 158.18L229.06 145.11C222.81 109.69 237.49 70.69 261.1600000000001 36.01C250.64 31.53 245.0300000000001 30.71 237.23 30.71zM607.4399999999999 263.96L575.7 83.99C564.81 22.21 460.21 -32 402.77 -32C363.72 -32 315.91 18.33 303.21 33.31C271.4 70.85 255.45 110.57 260.57 139.56L292.3 319.52C294.9100000000001 334.31 306 345.75 319.89 347.9700000000001C462.03 370.7100000000001 566.16 314.0800000000001 591.25 300.12C603.54 293.29 610.04 278.75 607.44 263.9600000000001z" />
+    <glyph glyph-name="thermometer-empty"
+      unicode="&#xF2CB;"
+      horiz-adv-x="256" d=" M176 64C176 37.49 154.51 16 128 16S80 37.49 80 64S101.49 112 128 112S176 90.51 176 64zM224 148.653C243.912 126.089 256 96.458 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM224 64C224 103.894 201.186 126.144 192 136.553V352C192 387.29 163.29 416 128 416S64 387.29 64 352V136.553C54.533 125.825 32.203 103.971 32.001 64.504C31.732 11.798 74.62 -31.631 127.313 -31.997L128 -32C180.935 -32 224 11.065 224 64z" />
+    <glyph glyph-name="thermometer-full"
+      unicode="&#xF2C7;"
+      horiz-adv-x="256" d=" M224 352C224 405.019 181.019 448 128 448S32 405.019 32 352V148.653C12.225 126.244 0.166 96.864 0.002 64.667C-0.357 -5.636 56.789 -63.509 127.091 -63.997C127.39 -63.999 127.701 -64 128 -64C198.698 -64 256 -6.696 256 64C256 96.459 243.912 126.09 224 148.653V352zM128 -32L127.313 -31.998C74.62 -31.632 31.732 11.797 32.001 64.503C32.203 103.97 54.533 125.8240000000001 64 136.5530000000001V352C64 387.29 92.71 416 128 416S192 387.29 192 352V136.553C201.186 126.144 224 103.894 224 64C224 11.065 180.935 -32 128 -32zM176 64C176 37.49 154.51 16 128 16S80 37.49 80 64C80 84.898 93.359 102.667 112 109.258V352C112 360.837 119.164 368 128 368C136.837 368 144 360.837 144 352V109.258C162.641 102.667 176 84.898 176 64.0000000000001z" />
+    <glyph glyph-name="thermometer-half"
+      unicode="&#xF2C9;"
+      horiz-adv-x="256" d=" M176 64C176 37.49 154.51 16 128 16S80 37.49 80 64C80 84.898 93.359 102.667 112 109.258V240C112 248.837 119.163 256 128 256S144 248.837 144 240V109.258C162.641 102.667 176 84.898 176 64.0000000000001zM224 148.653C243.912 126.089 256 96.458 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM224 64C224 103.894 201.186 126.144 192 136.553V352C192 387.29 163.29 416 128 416S64 387.29 64 352V136.553C54.533 125.825 32.203 103.971 32.001 64.504C31.732 11.798 74.62 -31.631 127.313 -31.997L128 -32C180.935 -32 224 11.065 224 64z" />
+    <glyph glyph-name="thermometer-quarter"
+      unicode="&#xF2CA;"
+      horiz-adv-x="256" d=" M176 64C176 37.49 154.51 16 128 16S80 37.49 80 64C80 84.898 93.359 102.667 112 109.258V176C112 184.837 119.163 192 128 192S144 184.837 144 176V109.258C162.641 102.667 176 84.898 176 64zM224 148.653C243.912 126.089 256 96.458 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM224 64C224 103.894 201.186 126.144 192 136.553V352C192 387.29 163.29 416 128 416S64 387.29 64 352V136.553C54.533 125.825 32.203 103.971 32.001 64.504C31.732 11.798 74.62 -31.631 127.313 -31.997L128 -32C180.935 -32 224 11.065 224 64z" />
+    <glyph glyph-name="thermometer-three-quarters"
+      unicode="&#xF2C8;"
+      horiz-adv-x="256" d=" M176 64C176 37.49 154.51 16 128 16S80 37.49 80 64C80 84.898 93.359 102.667 112 109.258V304C112 312.837 119.163 320 128 320S144 312.837 144 304V109.258C162.641 102.667 176 84.898 176 64.0000000000001zM224 148.653C243.912 126.089 256 96.458 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM224 64C224 103.894 201.186 126.144 192 136.553V352C192 387.29 163.29 416 128 416S64 387.29 64 352V136.553C54.533 125.825 32.203 103.971 32.001 64.504C31.732 11.798 74.62 -31.631 127.313 -31.997L128 -32C180.935 -32 224 11.065 224 64z" />
+    <glyph glyph-name="thermometer"
+      unicode="&#xF491;"
+      horiz-adv-x="512" d=" M476.4 427.5C438.9 458.3 381.1 453.9 345 417.7L137.2 209.4C131.2 203.4 128.3 195.2 128.3 186.7V131.7L14 18C-11.3 -7.3 3.4 -39.3 14 -50C32.7 -68.7999999999999 63.1 -68.7 81.8 -50L195.3 64.1H250.2C258.7000000000001 64.1 266.8 67 272.8 73L483.8 284.9C518.4 319.7 526.8 386.1 476.4 427.5zM59.2 -27.3C44.2 -42.3 21.7 -19.6 36.6 -4.7L67.1 25.5L89.7 2.9L59.2 -27.3zM461.1 307.6L250.1 96H195.2C186.7 96 178.6 92.3 172.6 86.3L112.2 25.5L89.7 48.1L150.3 109.1C156.3 115.1 160.1 123.3 160.1 131.8V186.8L194.6 221.7L234.1 182.1C237.2 179 242.3 179 245.4 182.1L256.7 193.4C259.8 196.5 259.8 201.6 256.7 204.7000000000001L217.2 244.3000000000001L262.4 289.6L301.9 250.0000000000001C305 246.9000000000001 310.1 246.9000000000001 313.2 250.0000000000001L324.5 261.3000000000001C327.6 264.4000000000001 327.6 269.5 324.5 272.6L285 312.3L330.2 357.6L369.7 318C372.8 314.9 377.9 314.9 381 318L392.3 329.3C395.4000000000001 332.4 395.4000000000001 337.5 392.3 340.6L352.7 380.2L367.5 395C392.2 419.7 431.1 423.1 456.1 402.6C489.2 375.7 484.7 331.2 461.1 307.6z" />
+    <glyph glyph-name="theta"
+      unicode="&#xF69E;"
+      horiz-adv-x="352" d=" M176 416C78.8 416 0 315.7100000000001 0 192S78.8 -32 176 -32S352 68.29 352 192S273.2 416 176 416zM176 384C251.35 384 313.26 306.39 319.39 208H32.61C38.74 306.39 100.65 384 176 384zM176 0C100.65 0 38.74 77.61 32.61 176H319.4C313.26 77.61 251.35 0 176 0z" />
+    <glyph glyph-name="thumbs-down"
+      unicode="&#xF165;"
+      horiz-adv-x="512" d=" M496.656 221.683C502.154 244.019 499.484 271.563 487.029 291.088C491.343 314.856 483.93 340.4650000000001 468.804 358.193C470.724 412.098 437.75 448 378.468 447.986C375.105 448.016 342.9600000000001 447.989 337.4550000000001 447.986C260.593 448.007 195.917 408 160 408H149.155C143.515 412.975 136.113 416 128 416H32C14.327 416 0 401.673 0 384V128C0 110.327 14.327 96 32 96H128C145.673 96 160 110.327 160 128V140.481C160.85 140.215 161.653 139.932 162.382 139.625C184 128 219.986 70.75 243.556 47.18C253.456 37.28 256.6740000000001 20.74 260.081 3.229C265.784 -26.082 276.915 -64 306.9100000000001 -64C366.5180000000001 -64 389.819 -29.328 389.819 29.08C389.819 59.986 377.844 81.529 369.124 98.897H439.274C479.928 98.897 512 133.793 512.001 171.468C512 192 506.583 208.809 496.6559999999999 221.683zM128 128H32V384H128V128zM439.273 130.898H327.274C327.274 90.1710000000001 357.819 71.27 357.819 29.081C357.819 3.507 357.819 -32.01 306.9100000000001 -32.01C286.5470000000001 -11.646 296.728 39.262 266.1830000000001 69.807C237.5760000000001 98.414 194.9110000000001 171.625 164.3650000000001 171.625H160V375.26H164.365C199.066 375.26 266.183 415.987 337.4550000000001 415.987C340.9350000000001 415.987 374.8700000000001 416.017 378.182 415.987C416.433 415.6190000000001 443.687 397.553 435.394 345.0130000000001C451.761 336.233 463.932 305.778 450.409 283.017C472 272 472 224 456.017 212.352C472 208 480.1 191.988 480 171.625C479.9 151.261 462.003 130.898 439.273 130.898zM104 176C104 162.745 93.255 152 80 152S56 162.745 56 176S66.745 200 80 200S104 189.255 104 176z" />
+    <glyph glyph-name="thumbs-up"
+      unicode="&#xF164;"
+      horiz-adv-x="512" d=" M496.656 162.317C506.583 175.191 512 192 512 212.532C511.999 250.206 479.927 285.103 439.273 285.103H369.1230000000001C377.8430000000001 302.471 389.8180000000001 324.014 389.8180000000001 354.92C389.819 413.328 366.518 448 306.9100000000001 448C276.915 448 265.7840000000001 410.082 260.081 380.772C256.6740000000001 363.261 253.455 346.7200000000001 243.556 336.8210000000001C219.986 313.25 184 256 162.382 244.375C160.193 243.453 157.396 242.727 154.35 242.152C148.577 250.516 138.931 256 128 256H32C14.327 256 0 241.673 0 224V-32C0 -49.673 14.327 -64 32 -64H128C145.673 -64 160 -49.673 160 -32V-23.26C192.495 -23.26 260.687 -64.0069999999999 337.4550000000001 -63.986C342.9600000000001 -63.989 375.105 -64.016 378.468 -63.986C437.75 -64 470.723 -28.099 468.803 25.807C483.93 43.534 491.342 69.144 487.028 92.912C499.484 112.4380000000001 502.154 139.982 496.656 162.317zM32 -32V224H128V-32H32zM456.017 171.648C472 160 472 112 450.41 100.983C463.932 78.223 451.762 47.767 435.3950000000001 38.987C443.6880000000001 -13.553 416.4340000000001 -31.619 378.1830000000001 -31.987C374.8710000000001 -32.0169999999999 340.9360000000001 -31.987 337.4560000000001 -31.987C264.5270000000001 -31.987 202.7140000000001 8.74 160.0010000000001 8.74V212.375C197.7090000000001 212.375 232.3060000000001 280.314 266.1840000000001 314.193C296.7290000000001 344.738 286.5470000000001 395.647 306.9110000000001 416.01C357.8200000000001 416.01 357.8200000000001 380.493 357.8200000000001 354.919C357.8200000000001 312.73 327.2750000000001 293.829 327.2750000000001 253.102H439.274C462.004 253.102 479.901 232.738 480.001 212.375C480.1 192.012 472 176 456.017 171.648zM104 16C104 2.745 93.255 -8 80 -8S56 2.745 56 16S66.745 40 80 40S104 29.255 104 16z" />
+    <glyph glyph-name="thumbtack"
+      unicode="&#xF08D;"
+      horiz-adv-x="384" d=" M300.79 244.09L290.67 320H328C341.25 320 352 330.75 352 344V424C352 437.25 341.25 448 328 448H56C42.75 448 32 437.25 32 424V344C32 330.75 42.75 320 56 320H93.33L83.21 244.09C34.938 216.506 0 169.557 0 112.76C0 103.92 7.16 96.76 16 96.76H176V-24.019C176 -24.673 176.08 -25.325 176.239 -25.959L184.239 -57.959C186.248 -65.996 197.743 -66.0309999999999 199.761 -57.959L207.761 -25.959A7.982999999999999 7.982999999999999 0 0 1 208 -24.019V96.76H368C376.84 96.76 384 103.92 384 112.76C384 169.557 349.062 216.506 300.79 244.09zM33.26 128.76C40.053 171.649 72.895 205.155 112.72 223.24L128 352H64V416H320V352H256L271.28 223.24C311.291 205.07 343.974 171.479 350.74 128.76H33.26z" />
+    <glyph glyph-name="thunderstorm-moon"
+      unicode="&#xF76D;"
+      horiz-adv-x="576" d=" M573.9 210.5C570.3 218.2 562.4 223.1 554 223.1H552.6L549.9 222.7C543.6 221.5 537.3 220.9 531 220.9C476.6 220.9 432.3 264.9 432.3 319.1C432.3 354.3 451.5 387 482.4 404.4C490.6 409 494.8 418 493.3 427.2C491.7 436.5 484.8 443.5 475.5 445.2C465.7 447.1 455.8 448 446 448C378.9 448 321.3 406.9 297.2 348.8C307.7 346.3 317.7 342.5 326.9 337.3C346.1 382.8 391.1 415.1 443.7 416C416.4 391.6 400.2 356.4 400.2 319.2C400.2 248.5 457.2 190.7 527.8 189.1C505.4999999999999 170.9 477.4999999999999 160.7000000000001 448 160.3V160.1C448 149.1 446.2 138.6 443.5 128.3C444.3 128.3 445.1 128.1 445.8999999999999 128.1C494.5999999999999 128.1 540.1999999999999 149.7000000000001 570.8999999999999 187.3C576.3999999999999 193.8 577.4999999999999 202.8 573.8999999999999 210.5zM304 144H244.5L255.5 188.1C256.7 192.9 255.6 197.9 252.6 201.8S244.9 208 240 208H160C152.7 208 146.2 203 144.5 195.9L112.5 67.9C110 57.7 117.7 48 128 48H189.6L176.2 -45.7C174.6 -56.8 183.9 -63.9 192 -63.9C200.5 -63.9 204.7 -57.7 205.6 -56.2999999999999C209 -50.9999999999999 317.5 119.5000000000001 317.5 119.5000000000001C324.3 130.2000000000001 316.5 144.0000000000001 304 144.0000000000001zM218.3 22.8L223.9 61.7C224.6 66.3 223.2 70.9 220.1 74.4C217.1 77.9 212.6 79.9 208 79.9H148.5L172.5 175.9H219.5L208.5 131.8C206 121.6 213.7 111.9 224 111.9H274.8C250.7 74 232.2 45 218.3 22.8zM351.3 250.7C346 289.8 312.5 320 272 320C263.4 320 255 318.6 246.8 315.7C227.1 338.7 198.6 352 168 352C111.5 352 65.3 306.7 64 250.4C26.2 237.1 0 201.1 0 160C0 112.5 34.7 73.2 80.1 65.6C80.2 69 80.6 72.3 81.4 75.7000000000001L86.7 97.0000000000001C55.9 101.5 32 127.9 32 160C32 190.6 53.8 217 84 222.8L98.5 225.6L96.5 243.6C96.3 245.1 96.1 246.5000000000001 96.1 248.0000000000001C96.1 287.7000000000001 128.4 320 168.1 320C192.4 320 214.9 307.8000000000001 228.3 287.2000000000001L236.4 274.8000000000001L249.4 281.9000000000001C282.1 299.7000000000001 320.1 273.7000000000001 320.2 241.5000000000001L320 225.3000000000001L332.8 222.7000000000001C362.6 216.7000000000001 384.1 190.4 384.1 160.0000000000001C384.1 133.0000000000001 367.2000000000001 110.0000000000001 343.6 100.6000000000001C340.8 96.3000000000001 332 82.4000000000001 320.3 64.0000000000001C373.2 64.1000000000001 416.1 107.1000000000001 416.1 160.0000000000001C416 201.3000000000001 389.4000000000001 237.6000000000001 351.3 250.7000000000001z" />
+    <glyph glyph-name="thunderstorm-sun"
+      unicode="&#xF76E;"
+      horiz-adv-x="640" d=" M160.3 156.3C156.7 161.6 150.4 164.4 143.9 163.1L87.9 152L99 208C100.2 214.4 97.6 220.8 92.2 224.4L44.8 256.2000000000001L92.2 288C97.6 291.6 100.2 298.1 99 304.4L87.9 360.4L143.9 349.3C150.4 348 156.7 350.7000000000001 160.3 356.1L192 403.6L223.8 356.1C227.4 350.8 233.8 348 240.2 349.3L319.6 365C328.3 366.7 333.9000000000001 375.1 332.2000000000001 383.8C330.5000000000001 392.5 321.9000000000001 398.3 313.4000000000001 396.4L244.5000000000001 382.8L205.3 441.3C199.4 450.2 184.7 450.2 178.7 441.3L139.6 382.8L70.6 396.5C65.3 397.6 59.9 395.9 56.2 392.1C52.4 388.3 50.8 382.9 51.8 377.6L65.5 308.6L7.1 269.5C2.7 266.5 0 261.6 0 256.2C0 250.9 2.7 245.9 7.1 242.9L65.5 203.8L51.8 134.8C50.8 129.5 52.4 124.1 56.2 120.3C60 116.5 65.2 114.8 70.6 115.9L139.5 129.6L178.6 71.1C181.7 66.4999999999999 186.8 63.9999999999999 191.9 63.9999999999999C195 63.9999999999999 198.1 64.8999999999999 200.8000000000001 66.6999999999999C208.1000000000001 71.5999999999999 210.1000000000001 81.5999999999999 205.2000000000001 88.8999999999999L160.3000000000001 156.3zM192 308C218.4 308 240 288 243.1 262.4C247.9 266 252.9 269.3 258.2 272.3C259.7 280.7000000000001 262.1 288.8 265 296.6C250.7 322.3 223.5 340 192 340C145.8 340 108.3 302.4000000000001 108.3 256.2000000000001S145.8 172.4 192 172.4C192.3 172.4 192.6 172.5000000000001 192.9 172.5000000000001C194 183.9 196.6 194.9000000000001 200.6 205.3000000000001C197.8 204.8000000000001 195 204.4000000000001 192.1 204.4000000000001C163.6 204.4000000000001 140.4 227.6000000000001 140.4 256.1000000000001C140.3 284.7000000000001 163.5 308.0000000000001 192 308.0000000000001zM528 144H468.5L479.5 188.1C480.7 192.9 479.6 197.9 476.6 201.8C473.6 205.7 468.9 208 464 208H384C376.7 208 370.2 203 368.5 195.9L336.5 67.9C334 57.7 341.7 48 352 48H413.6L400.2000000000001 -45.7C398.6 -56.8 407.9000000000001 -63.9 416.0000000000001 -63.9C424.5000000000001 -63.9 428.7000000000001 -57.7 429.6000000000001 -56.2999999999999C433.0000000000001 -50.9999999999999 541.5000000000001 119.5000000000001 541.5000000000001 119.5000000000001C548.3000000000001 130.2000000000001 540.5000000000001 144.0000000000001 528.0000000000001 144.0000000000001zM442.3 22.8L447.9000000000001 61.7C448.6 66.3 447.2000000000001 70.9 444.1 74.4C441.1 77.9 436.6 79.9 432 79.9H372.5L396.5 175.9H443.5L432.5 131.8C430 121.6 437.7 111.9 448 111.9H498.8C474.7 74 456.2 45 442.3 22.8zM575.3 250.7C570 289.8 536.5 320 496 320C487.4 320 479 318.6 470.8 315.7C451.1 338.7 422.6 352 392 352C335.5 352 289.3 306.7 288 250.4C250.2 237.1 224 201.1 224 160C224 112.5 258.8 73.2 304.1 65.6C304.2000000000001 69 304.6 72.3 305.4000000000001 75.7000000000001L310.7000000000001 97.0000000000001C279.8000000000001 101.5000000000001 255.9000000000001 127.9 255.9000000000001 160.1000000000001C255.9000000000001 190.7000000000001 277.7000000000001 217.1000000000001 307.9000000000001 222.9000000000001L322.4000000000001 225.7000000000001L320.4000000000001 243.7000000000001C320.2000000000001 245.2000000000001 320.0000000000001 246.6000000000001 320.0000000000001 248.1000000000001C320.0000000000001 287.8000000000002 352.3000000000001 320.1000000000002 392.0000000000001 320.1000000000002C416.3000000000001 320.1000000000002 438.8000000000001 307.9000000000001 452.2 287.4000000000001L460.3000000000001 275.0000000000001L473.3000000000001 282.1000000000001C506.0000000000001 299.9000000000001 544.0000000000001 273.9000000000001 544.1 241.7000000000001L543.9 225.5000000000001L556.6999999999999 222.9000000000001C586.4999999999999 216.9000000000001 607.9999999999999 190.6000000000001 607.9999999999999 160.2000000000001C607.9999999999999 133.2000000000001 591.0999999999999 110.2000000000001 567.4999999999999 100.8000000000001C564.6999999999999 96.5000000000001 555.8999999999999 82.6000000000001 544.1999999999999 64.2000000000001C597.0999999999999 64.3000000000001 639.9999999999999 107.3000000000001 639.9999999999999 160.2000000000001C639.9999999999999 201.3000000000001 613.3999999999999 237.6000000000001 575.2999999999998 250.7000000000001zM560 239.2z" />
+    <glyph glyph-name="thunderstorm"
+      unicode="&#xF76C;"
+      horiz-adv-x="512" d=" M368 192H294.2L319.2 266.9C320.8 271.8 320 277.1 317 281.3C314 285.5 309.2 287.9 304 287.9H192C184.3 287.9 177.7 282.4 176.2 274.8L144.2 98.8C143.4 94.1 144.6 89.3 147.7 85.7S155.2 79.9 160 79.9H240V-48.1C240 -55.5 245.1 -62 252.3 -63.7C253.5 -64 254.8 -64.1 256 -64.1C262 -64.1 267.6 -60.8 270.3 -55.3L382.3 168.7C384.8 173.7 384.5 179.5 381.6 184.3C378.7000000000001 189.1 373.5 192 368 192zM272 19.8V96C272 104.8 264.8 112 256 112H179.2L205.4 256H281.9L256.9 181.1C255.3 176.2000000000001 256.1 170.9 259.1 166.7000000000001C262.1 162.5000000000001 266.9 160.1 272.1 160.1H342.2L272 19.8zM415.7 335.7C411.8 380.6 373.9 416 328 416C310.2 416 293.2 410.7 278.8 400.8C256.3 430.3 221.5 448 184 448C117.8 448 64 394.2 64 328V327.6C25.7 311.6 0 274.1 0 232C0 174.7 46.7 128 104 128H117L122.8 160H104C64.3 160 32 192.3 32 232C32 264.3 53.9 292.7 85.3 301.2L98.6 304.8L96.6 322C96.3 324 96 326 96 328C96 376.5 135.5 416 184 416C216.2 416 245.8 398.1 261.2 369.2L271.8 349.4L287 365.9C297.9 377.6 312.4 384 328 384C358.9 384 384 358.9 384 328C384 326.4 383.7 324.9 383.2 321.1L380.7 301.1L404.2 303.5C405.4 303.7 406.7 303.9 408 303.9C447.7 303.9 480 271.6 480 231.9C480 193.9 450.3 163 413 160.4C412.3 158.4 411.9 156.4 410.9 154.4L397.7 128H408C465.3 128 512 174.7 512 232C512 286.8 469.4 331.8 415.7 335.7z" />
+    <glyph glyph-name="ticket-alt"
+      unicode="&#xF3FF;"
+      horiz-adv-x="576" d=" M424 288H152C138.745 288 128 277.255 128 264V120C128 106.745 138.745 96 152 96H424C437.255 96 448 106.745 448 120V264C448 277.255 437.255 288 424 288zM416 128H160V256H416V128zM544 224H576V336C576 362.51 554.51 384 528 384H48C21.49 384 0 362.51 0 336V224H32C49.673 224 64 209.673 64 192S49.673 160 32 160H0V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V160H544C526.327 160 512 174.327 512 192S526.327 224 544 224zM544 128V48C544 39.177 536.823 32 528 32H48C39.177 32 32 39.177 32 48V128C67.29 128 96 156.71 96 192S67.29 256 32 256V336C32 344.823 39.177 352 48 352H528C536.823 352 544 344.823 544 336V256C508.71 256 480 227.29 480 192S508.71 128 544 128z" />
+    <glyph glyph-name="ticket"
+      unicode="&#xF145;"
+      horiz-adv-x="576" d=" M544 224H576V336C576 362.51 554.51 384 528 384H48C21.49 384 0 362.51 0 336V224H32C49.673 224 64 209.673 64 192S49.673 160 32 160H0V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V160H544C526.327 160 512 174.327 512 192S526.327 224 544 224zM544 128V48C544 39.177 536.823 32 528 32H48C39.177 32 32 39.177 32 48V128C67.29 128 96 156.71 96 192S67.29 256 32 256V336C32 344.823 39.177 352 48 352H528C536.823 352 544 344.823 544 336V256C508.71 256 480 227.29 480 192S508.71 128 544 128z" />
+    <glyph glyph-name="tilde"
+      unicode="&#xF69F;"
+      horiz-adv-x="448" d=" M416 280V208.15C416 172.24 392.84 138.99 357.99 130.31C326.19 122.4 293.92 135.24 276.0300000000001 161.05L200.75 269.6C179.62 300.06 145.33 320.18 108.26 319.98C48.5 319.68 0 270.98 0 211.16V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V207.85C32 243.76 55.16 277.01 90.01 285.69C121.81 293.6 154.08 280.76 171.97 254.95L247.25 146.4C268.38 115.94 302.67 95.82 339.74 96.02C399.5 96.32 448 145.02 448 204.84V280C448 284.42 444.42 288 440 288H424C419.58 288 416 284.42 416 280z" />
+    <glyph glyph-name="times-circle"
+      unicode="&#xF057;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -24C137.3 -24 40 72.1 40 192C40 310.7 136.1 408 256 408C374.7 408 472 311.9 472 192C472 73.3 375.9 -24 256 -24zM350.8 261.3L281.5 192L350.8 122.7C355.5 118 355.5 110.4 350.8 105.7L342.3 97.2C337.6 92.5 330 92.5 325.3 97.2L256 166.5L186.7 97.2C182 92.5 174.4 92.5 169.7 97.2L161.2 105.7C156.5 110.4 156.5 118 161.2 122.7L230.5 192L161.2 261.3C156.5 266 156.5 273.6 161.2 278.3L169.7 286.8C174.4 291.5 182 291.5 186.7 286.8L256 217.5L325.3 286.8C330 291.5 337.6 291.5 342.3 286.8L350.8 278.3C355.4000000000001 273.6 355.4000000000001 266 350.8 261.3z" />
+    <glyph glyph-name="times-hexagon"
+      unicode="&#xF2EE;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM525.8 183.9L413.8 -8.1C410.9 -13 405.6 -16 400 -16H176C170.3 -16 165 -13 162.2 -8.1L50.2 183.9C47.3 188.9 47.3 195.1 50.2 200L162.2 392C165 397 170.3 400 176 400H400C405.7 400 411 397 413.8 392.1L525.8 200.1C528.6999999999999 195.1 528.6999999999999 188.9 525.8 183.9zM382.8 105.7L374.3 97.2C369.6 92.5 362 92.5 357.3 97.2L288 166.5L218.7 97.2C214 92.5 206.4 92.5 201.7 97.2L193.2 105.7C188.5 110.4 188.5 118 193.2 122.7L262.5 192L193.2 261.3C188.5 266 188.5 273.6 193.2 278.3L201.7 286.8C206.4 291.5 214 291.5 218.7 286.8L288 217.5L357.3 286.8C362 291.5 369.6 291.5 374.3 286.8L382.8 278.3C387.5 273.6 387.5 266 382.8 261.3L313.5 192L382.8 122.7C387.4000000000001 118 387.4000000000001 110.4 382.8 105.7z" />
+    <glyph glyph-name="times-octagon"
+      unicode="&#xF2F0;"
+      horiz-adv-x="512" d=" M361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512.1 276.2 507 288.4 498 297.4L361.5 433.9zM480 120.5C480 116.2 478.3 112.2 475.3 109.2L338.9 -27.3C335.9 -30.3 331.9 -32 327.6 -32H184.5C180.2 -32 176.2 -30.3 173.2 -27.3L36.7 109.1C33.7 112.1 32 116.1 32 120.4V263.5C32 267.8 33.7 271.8 36.7 274.8L173.1 411.3C176.1 414.3 180.1 416 184.4 416H327.5C331.8 416 335.8 414.3 338.8 411.3L475.3 274.8C478.3 271.8 480 267.8 480 263.5V120.5zM350.8 105.7L342.3 97.2C337.6 92.5 330 92.5 325.3 97.2L256 166.5L186.7 97.2C182 92.5 174.4 92.5 169.7 97.2L161.2 105.7C156.5 110.4 156.5 118 161.2 122.7L230.5 192L161.2 261.3C156.5 266 156.5 273.6 161.2 278.3L169.7 286.8C174.4 291.5 182 291.5 186.7 286.8L256 217.5L325.3 286.8C330 291.5 337.6 291.5 342.3 286.8L350.8 278.3C355.5 273.6 355.5 266 350.8 261.3L281.5 192L350.8 122.7C355.4000000000001 118 355.4000000000001 110.4 350.8 105.7z" />
+    <glyph glyph-name="times-square"
+      unicode="&#xF2D3;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16zM318.8 261.3L249.5 192L318.8 122.7C323.5 118 323.5 110.4 318.8 105.7L310.3 97.2C305.6 92.5 298 92.5 293.3 97.2L224 166.5L154.7 97.2C150 92.5 142.4 92.5 137.7 97.2L129.2 105.7C124.5 110.4 124.5 118 129.2 122.7L198.5 192L129.2 261.3C124.5 266 124.5 273.6 129.2 278.3L137.7 286.8C142.4 291.5 150 291.5 154.7 286.8L224 217.5L293.3 286.8C298 291.5 305.6 291.5 310.3 286.8L318.8 278.3C323.4000000000001 273.6 323.4000000000001 266 318.8 261.3z" />
+    <glyph glyph-name="times"
+      unicode="&#xF00D;"
+      horiz-adv-x="320" d=" M193.94 192L296.5 294.56L317.65 315.7100000000001C320.77 318.8300000000001 320.77 323.9 317.65 327.02L295.02 349.65C291.9 352.77 286.83 352.77 283.71 349.65L160 225.94L36.29 349.66C33.17 352.78 28.1 352.78 24.98 349.66L2.34 327.03C-0.78 323.91 -0.78 318.8400000000001 2.34 315.7200000000001L126.06 192L2.34 68.29C-0.78 65.17 -0.78 60.1 2.34 56.98L24.97 34.35C28.09 31.23 33.16 31.23 36.28 34.35L160 158.06L262.56 55.5L283.71 34.35C286.83 31.23 291.9 31.23 295.02 34.35L317.65 56.98C320.77 60.1 320.77 65.17 317.65 68.29L193.94 192z" />
+    <glyph glyph-name="tint-slash"
+      unicode="&#xF5C7;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM320.01 411.94C343.84 334.42 380.07 282.63 409.31 240.86C427.75 214.5 443.04 192.35 452.77 168.92L494.56 136.01C482.53 232.01 393 278.25 349.2200000000001 425.91C345.21 440.4700000000001 332.61 448 319.9700000000001 448C307.62 448 295.23 440.8 290.7800000000001 425.9100000000001C279.4400000000001 387.68 264.9600000000001 356.29 249.5500000000001 328.94L274.9300000000001 308.95C291.4900000000001 337.78 307.4600000000001 371.26 320.0100000000001 411.94zM320 -32C240.6 -32 176 33.54 176 114.09C176 147.49 187.13 173.6 204.41 201.56L179.07 221.51C158.54 188.86 144 156.43 144 114.09C144 15.65 222.72 -64 320 -64C375.5 -64 424.89 -38.01 457.14 2.54L431.47 22.75C405.05 -10.36 365.17 -32 320 -32z" />
+    <glyph glyph-name="tint"
+      unicode="&#xF043;"
+      horiz-adv-x="352" d=" M205.22 425.9100000000001C201.21 440.4700000000001 188.61 448 175.97 448C163.62 448 151.23 440.8 146.78 425.9100000000001C100.01 268.15 0 225.28 0 114.09C0 15.65 78.72 -64 176 -64S352 15.65 352 114.09C352 225.8400000000001 252.21 267.4300000000001 205.22 425.9100000000001zM176 -32C96.6 -32 32 33.54 32 114.09C32 162.4500000000001 55 195.41 86.84 241.0300000000001C116.02 282.8400000000001 152.18 334.6600000000001 176.02 411.9400000000001C199.85 334.42 236.08 282.63 265.32 240.86C297.06 195.48 320 162.7 320 114.09C320 33.54 255.4 -32 176 -32zM176 32C131.88 32 96 67.89 96 112C96 120.84 88.84 128 80 128S64 120.84 64 112C64 50.25 114.25 0 176 0C184.84 0 192 7.16 192 16S184.84 32 176 32z" />
+    <glyph glyph-name="tire-flat"
+      unicode="&#xF632;"
+      horiz-adv-x="512" d=" M256 320C167.63 320 96 248.37 96 160S167.63 0 256 0S416 71.63 416 160S344.37 320 256 320zM256 288C278.34 288 299.04 281.74 317.3400000000001 271.64L279.7700000000001 219.93C272.4000000000001 222.86 264.42 224.58 256.0000000000001 224.58S239.6100000000001 222.86 232.2300000000001 219.93L194.6600000000001 271.64C212.9600000000001 281.74 233.6600000000001 288 256.0000000000001 288zM128 160C128 196.74 143.77 229.67 168.64 253.03L206.46 200.97C197.21 189.79 191.42 175.64 191.42 160C191.42 158.62 191.74 157.33 191.83 155.97L130.43 136.0200000000001C128.94 143.8100000000001 128 151.79 128 160.0000000000001zM240 33.62A127.63100000000001 127.63100000000001 0 0 0 140.55 105.67L201.58 125.5C210.26 111.84 223.9 101.79 240 97.66V33.62zM224 160.02C224 177.69 238.33 192.02 256 192.02S288 177.69 288 160.02S273.67 128.02 256 128.02S224 142.34 224 160.02zM272 33.62V97.66C288.1 101.79 301.74 111.83 310.42 125.5L371.4500000000001 105.67A127.63100000000001 127.63100000000001 0 0 0 272 33.62zM320.17 155.97C320.26 157.3300000000001 320.5800000000001 158.62 320.5800000000001 160C320.5800000000001 175.64 314.79 189.79 305.54 200.97L343.36 253.03C368.23 229.67 384 196.74 384 160C384 151.79 383.06 143.81 381.58 136.03L320.17 155.97zM476.76 30.28C499.75 69.17 512 113.61 512 160C512 301.16 397.16 416 256 416S0 301.16 0 160C0 113.61 12.25 69.17 35.24 30.28C14.95 24.68 0 6.05 0 -16C0 -42.47 21.53 -64 48 -64H464C490.47 -64 512 -42.47 512 -16C512 6.05 497.05 24.68 476.76 30.28zM464 -32H48C39.16 -32 32 -24.84 32 -16S39.16 0 48 0H96C104.84 0 112 7.16 112 16S104.84 32 96 32H72.35C46.97 68.28 32 112.36 32 160C32 283.7100000000001 132.29 384 256 384S480 283.71 480 160C480 112.36 465.03 68.28 439.65 32H416C407.1600000000001 32 400 24.84 400 16S407.1600000000001 0 416 0H464C472.84 0 480 -7.16 480 -16S472.84 -32 464 -32z" />
+    <glyph glyph-name="tire-pressure-warning"
+      unicode="&#xF633;"
+      horiz-adv-x="512" d=" M256 151.98C242.74 151.98 232 141.24 232 127.98C232 114.73 242.74 103.98 256 103.98S280 114.73 280 127.98C280 141.24 269.26 151.98 256 151.98zM248.05 175.98H263.95C270.82 175.98 276.56 181.18 277.24 188.01L287.93 337.3C288.7200000000001 345.17 282.54 351.99 274.64 351.99H237.36C229.46 351.99 223.28 345.17 224.07 337.3L234.76 188.01C235.44 181.19 241.19 175.98 248.05 175.98zM471.51 315.0900000000001C460.46 333.38 454.63 352.88 454.63 371.5200000000001V408C454.63 430.06 436.69 448 414.63 448H398.63C376.57 448 358.63 430.06 358.63 408V371.52C358.63 335.44 369.22 298.8 389.25 265.55C406.75 236.5 416 203.13 416 169.07C416 130.92 403.59 100.44 374.52 67.13C372.79 65.14 370.18 64.01 367.38 64.01H144.62C141.81 64.01 139.21 65.15 137.48 67.13C108.41 100.43 96 130.92 96 169.06C96 203.13 105.25 236.49 122.75 265.53C142.79 298.8 153.37 335.45 153.37 371.52V408C153.37 430.06 135.43 448 113.37 448H97.37C75.31 448 57.37 430.06 57.37 408V371.52C57.37 352.89 51.54 333.38 40.5 315.1C14 271.11 0 220.62 0 169.06C0 107.38 20.7 54.94 65.14 4.01C69.62 -1.13 74.69 -5.61 80 -9.72V-56C80 -60.42 83.58 -64 88 -64H104C108.42 -64 112 -60.42 112 -56V-26.25C122.28 -29.59 132.94 -31.87 144 -31.94V-56C144 -60.42 147.58 -64 152 -64H168C172.42 -64 176 -60.42 176 -56V-32H208V-56C208 -60.42 211.58 -64 216 -64H232C236.42 -64 240 -60.42 240 -56V-32H272V-56C272 -60.42 275.58 -64 280 -64H296C300.42 -64 304 -60.42 304 -56V-32H336V-56C336 -60.42 339.58 -64 344 -64H360C364.42 -64 368 -60.42 368 -56V-31.93C379.06 -31.86 389.7200000000001 -29.59 400 -26.24V-56C400 -60.42 403.58 -64 408 -64H424C428.42 -64 432 -60.42 432 -56V-9.72C437.31 -5.6 442.39 -1.12 446.88 4.03C491.3 54.94 512 107.38 512 169.06C512 220.61 498 271.11 471.51 315.0900000000001zM422.75 25.05C408.88 9.12 388.69 0 367.38 0H144.62C123.31 0 103.12 9.12 89.24 25.05C50.19 69.81 32 115.58 32 169.06C32 214.78 44.41 259.56 67.91 298.56C81.97 321.86 89.38 347.0900000000001 89.38 371.51V408C89.38 412.42 92.96 416 97.38 416H113.38C117.8 416 121.38 412.42 121.38 408V371.52C121.38 341.27 112.38 310.3300000000001 95.35 282.05C74.84 248.03 64 208.95 64 169.06C64 123.14 79.22 85.2 113.38 46.08C121.19 37.13 132.57 32 144.63 32H367.38C379.44 32 390.82 37.12 398.63 46.08C432.78 85.2 448 123.14 448 169.06C448 208.95 437.1600000000001 248.03 416.6600000000001 282.06C399.63 310.3300000000001 390.63 341.26 390.63 371.51V408C390.63 412.42 394.21 416 398.63 416H414.63C419.05 416 422.63 412.42 422.63 408V371.52C422.63 347.1 430.04 321.86 444.1 298.5800000000001C467.6 259.56 480.01 214.78 480.01 169.06C480 115.58 461.81 69.81 422.75 25.05z" />
+    <glyph glyph-name="tire-rugged"
+      unicode="&#xF634;"
+      horiz-adv-x="512" d=" M467.12 278.07C466.8 278.86 466.48 279.64 466.15 280.43C479.63 303.42 476.52 333.52 456.82 353.2200000000001L417.22 392.82C405.89 404.1500000000001 390.82 410.39 374.79 410.39C363.93 410.39 353.52 407.5300000000001 344.4 402.1600000000001C343.62 402.48 342.85 402.8 342.07 403.12C335.35 428.9100000000001 311.87 448 284 448H228C200.13 448 176.65 428.9100000000001 169.93 403.12C169.15 402.8 168.37 402.48 167.6 402.16C158.49 407.53 148.07 410.39 137.21 410.39C121.18 410.39 106.11 404.15 94.78 392.81L55.18 353.2200000000001C35.48 333.52 32.37 303.41 45.85 280.43C45.52 279.65 45.2 278.86 44.88 278.07C19.09 271.35 0 247.87 0 220V164C0 136.14 19.09 112.65 44.88 105.93C45.2 105.14 45.52 104.36 45.85 103.57C32.37 80.58 35.48 50.48 55.18 30.78L94.78 -8.82C106.11 -20.15 121.18 -26.39 137.21 -26.39C148.07 -26.39 158.48 -23.53 167.6 -18.16C168.38 -18.48 169.15 -18.8 169.93 -19.12C176.65 -44.91 200.13 -64 228 -64H284C311.87 -64 335.35 -44.91 342.07 -19.12L344.41 -18.16C353.52 -23.53 363.94 -26.39 374.79 -26.39C390.82 -26.39 405.88 -20.15 417.22 -8.82L456.82 30.78C476.52 50.48 479.63 80.58 466.15 103.57C466.48 104.35 466.8 105.14 467.12 105.93C492.91 112.65 512 136.14 512 164V220C512 247.87 492.91 271.35 467.12 278.07zM480 164C480 148.54 467.46 136 452 136H443.78C439.9 122.98 434.8 110.49 428.44 98.76L434.2 93C445.13 82.07 445.13 64.34 434.2 53.4L394.6 13.8C389.13 8.3299999999999 381.97 5.6 374.8 5.6S360.47 8.33 355 13.8L349.24 19.5599999999999C337.51 13.1999999999999 325.02 8.1 312 4.22V-4C312 -19.46 299.4599999999999 -32 284 -32H228C212.5399999999999 -32 200 -19.46 200 -4V4.22C186.9799999999999 8.1 174.49 13.2 162.7599999999999 19.56L157 13.8C151.53 8.33 144.37 5.6 137.2 5.6S122.87 8.33 117.4 13.8L77.8 53.4C66.87 64.33 66.87 82.0600000000001 77.8 93.0000000000001L83.56 98.7600000000001C77.21 110.49 72.1 122.98 68.22 136H60C44.54 136 32 148.54 32 164V220C32 235.46 44.54 248 60 248H68.22C72.1 261.02 77.2 273.51 83.56 285.24L77.8 291C66.87 301.94 66.87 319.67 77.8 330.6L117.4 370.2C122.87 375.67 130.03 378.4 137.2 378.4S151.53 375.67 157 370.2L162.76 364.44C174.49 370.8 186.98 375.9 200 379.78V388C200 403.46 212.54 416 228 416H284C299.46 416 312 403.46 312 388V379.78C325.02 375.9 337.51 370.8 349.24 364.44L355 370.2C360.4700000000001 375.67 367.63 378.4 374.8 378.4S389.13 375.67 394.6 370.2L434.2000000000001 330.6C445.1300000000001 319.67 445.1300000000001 301.94 434.2000000000001 291L428.4400000000001 285.24C434.8000000000001 273.51 439.9000000000001 261.02 443.7800000000001 248H452C467.46 248 480 235.46 480 220V164zM256 352.02C167.63 352.02 96 280.39 96 192.02S167.63 32.02 256 32.02S416 103.65 416 192.02S344.37 352.02 256 352.02zM256 64.02C185.42 64.02 128 121.44 128 192.02S185.42 320.02 256 320.02S384 262.6 384 192.02S326.58 64.02 256 64.02zM256 288C242.75 288 232 277.26 232 264C232 250.75 242.75 240 256 240S280 250.75 280 264C280 277.26 269.25 288 256 288zM256 144.02C242.75 144.02 232 133.28 232 120.02C232 106.77 242.75 96.02 256 96.02S280 106.77 280 120.02S269.25 144.02 256 144.02zM328 216C314.75 216 304 205.26 304 192C304 178.75 314.75 168 328 168S352 178.75 352 192C352 205.26 341.25 216 328 216zM184 216C170.75 216 160 205.26 160 192C160 178.75 170.75 168 184 168S208 178.75 208 192C208 205.26 197.25 216 184 216z" />
+    <glyph glyph-name="tire"
+      unicode="&#xF631;"
+      horiz-adv-x="512" d=" M256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM256 -32C132.49 -32 32 68.49 32 192S132.49 416 256 416S480 315.51 480 192S379.51 -32 256 -32zM256 352C167.63 352 96 280.37 96 192S167.63 32 256 32S416 103.63 416 192S344.37 352 256 352zM256 320C278.34 320 299.04 313.74 317.3400000000001 303.64L279.7700000000001 251.93C272.4000000000001 254.86 264.42 256.58 256.0000000000001 256.58S239.6100000000001 254.86 232.2300000000001 251.93L194.6600000000001 303.64C212.9600000000001 313.74 233.6600000000001 320 256.0000000000001 320zM128 192C128 228.74 143.77 261.67 168.64 285.03L206.46 232.97C197.21 221.79 191.42 207.64 191.42 192C191.42 190.62 191.74 189.33 191.83 187.97L130.43 168.0200000000001C128.94 175.8100000000001 128 183.79 128 192zM240 65.62A127.63100000000001 127.63100000000001 0 0 0 140.55 137.67L201.58 157.5C210.26 143.84 223.9 133.79 240 129.66V65.62zM224 192.02C224 209.69 238.33 224.02 256 224.02S288 209.69 288 192.02S273.67 160.02 256 160.02S224 174.34 224 192.02zM272 65.62V129.66C288.1 133.79 301.74 143.8300000000001 310.42 157.5L371.4500000000001 137.67A127.63100000000001 127.63100000000001 0 0 0 272 65.62zM320.17 187.97C320.26 189.3300000000001 320.5800000000001 190.62 320.5800000000001 192C320.5800000000001 207.6400000000001 314.79 221.79 305.54 232.9700000000001L343.36 285.0300000000001C368.23 261.67 384 228.74 384 192C384 183.79 383.06 175.81 381.58 168.03L320.17 187.97z" />
+    <glyph glyph-name="tired"
+      unicode="&#xF5C8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM361.8 298.3L281.8 250.3C274 245.6 274 234.4 281.8 229.7L361.8 181.7000000000001C373.4000000000001 174.8000000000001 385.8 189.4 377.2 199.7000000000001L343.6 240L377.2000000000001 280.3C385.8000000000001 290.6 373.4000000000001 305.1 361.8000000000001 298.3zM134.2 181.7L214.2 229.7C222 234.4 222 245.6 214.2 250.3L134.2 298.3C122.6 305.2 110.2 290.6 118.8 280.3L152.4 240L118.8 199.7C110.2 189.4 122.6 174.8 134.2 181.7zM248 176C196.1 176 132.7 132.2 124.8 69.3C124 63 125.7 56.6 129.4 52.4C130 51.7 135.2 45.7 142.6 48.8C168.5 59.9 207 66.2 248.1 66.2S327.7 59.9 353.6 48.8C359.1 46.4 364.1 49.3 366.8 52.4C370.4000000000001 56.6 372.1 63.0000000000001 371.4000000000001 69.3C363.3 132.2 299.9 176 248 176zM248 98.3C217.4 98.3 188.5 95.1 163.7 89.2C179.5 121.7 216.7 144 248 144C279.3 144 316.5 121.7 332.3 89.2C307.5 95.1 278.7 98.3 248 98.3z" />
+    <glyph glyph-name="toggle-off"
+      unicode="&#xF204;"
+      horiz-adv-x="576" d=" M384 352C426.738 352 466.917 335.357 497.137 305.137S544 234.738 544 192S527.357 109.083 497.137 78.863S426.738 32 384 32H192C149.262 32 109.083 48.643 78.863 78.863S32 149.262 32 192S48.643 274.9170000000001 78.863 305.137S149.262 352 192 352H384M384 384H192C85.961 384 0 298.039 0 192S85.961 0 192 0H384C490.039 0 576 85.961 576 192S490.039 384 384 384zM192 288C244.935 288 288 244.935 288 192S244.935 96 192 96S96 139.065 96 192S139.065 288 192 288M192 320C121.308 320 64 262.693 64 192S121.308 64 192 64S320 121.307 320 192S262.692 320 192 320z" />
+    <glyph glyph-name="toggle-on"
+      unicode="&#xF205;"
+      horiz-adv-x="576" d=" M384 352C472.426 352 544 280.439 544 192C544 103.574 472.439 32 384 32H192C103.574 32 32 103.561 32 192C32 280.425 103.561 352 192 352H384M384 384H192C85.961 384 0 298.039 0 192S85.961 0 192 0H384C490.039 0 576 85.961 576 192S490.039 384 384 384zM384 80C445.856 80 496 130.144 496 192S445.856 304 384 304S272 253.856 272 192C272 163.596 282.574 137.661 299.999 117.918C320.522 94.665 350.548 80 384 80z" />
+    <glyph glyph-name="toilet-paper-alt"
+      unicode="&#xF71F;"
+      horiz-adv-x="576" d=" M464 448H144C82.14 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H328.93C342.7 -64 354.93 -55.19 359.29 -42.12C370.4500000000001 -8.64 380.88 21.42 383.4000000000001 64H464C525.86 64 576 149.96 576 256S525.86 448 464 448zM352 256V83.93C352 37.1 342.33 8.14 330.1 -28.52L328.94 -32H38.29C38.83 -30.39 39.37 -28.82 39.9 -27.28C55.44 18.45 64 43.63 64 83.93V256C64 350.29 106.16 416 144 416H402.14C371.93 381.61 352 322.82 352 256zM464 96C426.16 96 384 161.71 384 256S426.16 416 464 416S544 350.29 544 256S501.84 96 464 96zM464 304C450.75 304 440 282.51 440 256S450.75 208 464 208C477.26 208 488 229.49 488 256S477.26 304 464 304z" />
+    <glyph glyph-name="toilet-paper"
+      unicode="&#xF71E;"
+      horiz-adv-x="576" d=" M112 256C103.16 256 96 248.84 96 240S103.16 224 112 224S128 231.16 128 240S120.83 256 112 256zM176 256C167.16 256 160 248.84 160 240S167.16 224 176 224S192 231.16 192 240S184.83 256 176 256zM240 256C231.16 256 224 248.84 224 240S231.16 224 240 224S256 231.16 256 240S248.83 256 240 256zM304 256C295.1600000000001 256 288 248.84 288 240S295.1600000000001 224 304 224S320 231.16 320 240S312.83 256 304 256zM464 448H144C82.14 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H328.93C342.7 -64 354.93 -55.19 359.29 -42.12C370.4500000000001 -8.64 380.88 21.42 383.4000000000001 64H464C525.86 64 576 149.96 576 256S525.86 448 464 448zM352 256V83.93C352 37.1 342.33 8.14 330.1 -28.52L328.94 -32H38.29C38.83 -30.39 39.37 -28.82 39.9 -27.28C55.44 18.45 64 43.63 64 83.93V256C64 350.29 106.16 416 144 416H402.14C371.93 381.61 352 322.82 352 256zM464 96C426.16 96 384 161.71 384 256S426.16 416 464 416S544 350.29 544 256S501.84 96 464 96zM464 304C450.75 304 440 282.51 440 256S450.75 208 464 208C477.26 208 488 229.49 488 256S477.26 304 464 304z" />
+    <glyph glyph-name="toilet"
+      unicode="&#xF7D8;"
+      horiz-adv-x="384" d=" M376 416C380.4 416 384 419.6 384 424V440C384 444.4 380.4 448 376 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H32V243.3C11.8 233.2 0 221.1 0 208C0 140.8 34.6 81.8 86.8 47.5L65.4 -22.7C59.1 -43.2 74.5 -64 96 -64H288C309.5 -64 324.9 -43.2 318.6 -22.7L297.2000000000001 47.5C349.4 81.8 384 140.8 384 208C384 221.1 372.2 233.2 352 243.3V416H376zM64 416H320V255.6C286 265.8 241.2 272 192 272S98 265.8 64 255.6V416zM192 240C275.9 240 344 225.7 344 208S275.9 176 192 176S40 190.3 40 208S108.1 240 192 240zM96 -32L115.5 31.9C139 21.7 164.8 16 192 16S245 21.7 268.5 31.9L288 -32H96zM192 48C116.8 48 53.9 100.3 36.9 170.4C71.8 154.4 128.2 144 192 144S312.2 154.4 347.1 170.4C330.1 100.3 267.2 48 192 48zM152 384H104C99.6 384 96 380.4 96 376V360C96 355.6 99.6 352 104 352H152C156.4 352 160 355.6 160 360V376C160 380.4 156.4 384 152 384z" />
+    <glyph glyph-name="tombstone-alt"
+      unicode="&#xF721;"
+      horiz-adv-x="512" d=" M496 32H448V247.95C448 353.08 366.99 444.76 261.9 447.9100000000001C153.17 451.17 64 364 64 256V32H16C7.16 32 0 24.84 0 16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V16C512 24.84 504.84 32 496 32zM96 256C96 344.2200000000001 167.78 416 256 416S416 344.2200000000001 416 256V32H96V256zM479.95 -32H32.01L32.05 0H479.99L479.95 -32z" />
+    <glyph glyph-name="tombstone"
+      unicode="&#xF720;"
+      horiz-adv-x="512" d=" M496 32H448V247.95C448 353.08 366.99 444.76 261.9 447.9100000000001C153.17 451.17 64 364 64 256V32H16C7.16 32 0 24.84 0 16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V16C512 24.84 504.84 32 496 32zM96 256C96 344.2200000000001 167.78 416 256 416S416 344.2200000000001 416 256V32H96V256zM479.95 -32H32.01L32.05 0H479.99L479.95 -32zM336.02 304H304.02V336C304.02 344.8400000000001 296.86 352 288.02 352H224.01C215.16 352 208.01 344.8400000000001 208.01 336V304H176.01C167.16 304 160.01 296.8400000000001 160.01 288V224C160.01 215.16 167.17 208 176.01 208H208.01V112C208.01 103.16 215.17 96 224.01 96H288.02C296.87 96 304.02 103.16 304.02 112V208H336.02C344.87 208 352.02 215.16 352.02 224V288C352.02 296.8400000000001 344.87 304 336.02 304zM320.02 240H272.01V128H240.01V240H192V272H240.01V320H272.01V272H320.02V240z" />
+    <glyph glyph-name="toolbox"
+      unicode="&#xF552;"
+      horiz-adv-x="512" d=" M502.63 233.37L457.38 278.63C451.38 284.63 443.24 288 434.75 288H384V368C384 394.4700000000001 362.4700000000001 416 336 416H176C149.53 416 128 394.4700000000001 128 368V288H77.25C68.76 288 60.63 284.63 54.62 278.63L9.37 233.37C3.37 227.37 0 219.23 0 210.74V0C0 -17.67 14.33 -32 32 -32H480C497.67 -32 512 -17.67 512 0V210.75C512 219.23 508.63 227.37 502.63 233.37zM160 368C160 376.83 167.19 384 176 384H336C344.81 384 352 376.83 352 368V288H160V368zM480 0H32V96H128V72C128 67.58 131.58 64 136 64H152C156.42 64 160 67.58 160 72V96H352V72C352 67.58 355.58 64 360 64H376C380.42 64 384 67.58 384 72V96H480V0zM384 128V152C384 156.42 380.42 160 376 160H360C355.58 160 352 156.42 352 152V128H160V152C160 156.42 156.42 160 152 160H136C131.58 160 128 156.42 128 152V128H32V210.75L77.25 256H434.74L480 210.75V128H384z" />
+    <glyph glyph-name="tools"
+      unicode="&#xF7D9;"
+      horiz-adv-x="512" d=" M502.6 58.5L378.2 183C362.6 198.6 342.1 206.4 321.6 206.4C306.2 206.4 290.8 202 277.5 193.1L192 278.6V352L64 448L0 384L96 256H169.4L254.9 170.5C234.3 139.4 237.7 97.2 265.1 69.8L389.6 -54.7C395.8 -60.9 404 -64.1 412.2000000000001 -64.1C420.4000000000001 -64.1 428.6 -61 434.8000000000001 -54.7L502.7 13.1999999999999C515.1 25.8 515.1 45.9999999999999 502.6 58.4999999999999zM160 289.9V288H112L42.3 381L67 405.7L160 336V289.9zM412.1 -32L287.7 92.5C278.6 101.6 273.6 113.6 273.6 126.4C273.6 139.2 278.6 151.3 287.7 160.3C296.8 169.4 308.8 174.4 321.6 174.4C334.4 174.4 346.5 169.4 355.5 160.3L480 35.9L412.1 -32zM64 16C64 7.2 71.2 0 80 0S96 7.2 96 16S88.8 32 80 32S64 24.8 64 16zM276.8 381.1C299.5 403.8 329.4 416 360.6 416C367.5 416 374.4000000000001 415.4 381.3 414.2L312 344.8L325.8 261.8L408.9 248L478.2 317.3C484.9 279.1 472.9 240.5 445.1 212.8C436.2 203.9 426 196.8 415.1 191.3L438.7 167.7C449.1 173.9 458.9 181.3 467.7 190.2C505.5 228 520.4 281.6 507.4 333.5C505.1 343 497.7 350.5 488.3 353.1C478.8 355.7 468.6 353.1 461.6 346.1L397.7 282.2L353.5 289.6L346.1 333.8L410 397.7C416.9 404.6 419.6 414.8 417 424.2C414.4 433.7 406.8 441 397.3 443.4C345.6 456.3 292 441.5 254.1 403.7C241.2 390.8 231.2 375.8 224 359.7V291.9L246.1 269.8C236.5 310.2000000000001 247.7 352 276.8 381.1zM107 -19.1C90.4 -35.7 61.4 -35.7 44.8 -19.1C27.7 -2 27.7 26 44.8 43.1L190.9 189.1999999999999L168.3 211.7999999999999L22.2 65.7C-7.4 36.1 -7.4 -12.1 22.2 -41.8C36.5 -56.1 55.6 -64 75.9 -64C96.2 -64 115.3 -56.1 129.6 -41.7L231.4 60C224.7 69.2 219.6 79.3 215.9 89.8L107 -19.1z" />
+    <glyph glyph-name="tooth"
+      unicode="&#xF5C9;"
+      horiz-adv-x="448" d=" M443.94 351.75C432.9100000000001 397.03 396.82 433.83 351.92 445.48C323.99 452.7 294.36 444.36 262.8400000000001 421.14C250.26 411.9 218.6400000000001 396.6600000000001 185.25 421.08L184.85 421.36C184.79 421.4 184.72 421.4 184.66 421.44C153.32 444.4 123.92 452.66 96.05 445.46C51.18 433.82 15.06 397.02 4.05 351.74C-5.56 312.26 2.08 273.04 25.55 241.3C46.06 213.57 57.61 179.46 61.84 133.96C65.46 95.27 71.09 44.35 82.77 -6.35L90.58 -40.3199999999999C93.8 -54.2699999999999 105.98 -64.01 120.23 -64.01C134.26 -64.01 146.41 -54.46 149.76 -40.85L184.26 97.59C188.82 115.92 205.16 128.73 224 128.73S259.18 115.92 263.74 97.57L298.24 -40.84A30.348000000000003 30.348000000000003 0 0 1 327.77 -64.01C342.02 -64.01 354.2 -54.28 357.42 -40.32L365.23 -6.35C376.92 44.37 382.54 95.29 386.16 133.96C390.44 179.52 401.97 213.62 422.47 241.3C445.94 273.06 453.57 312.28 443.94 351.75zM396.73 260.3400000000001C372.6400000000001 227.78 359.14 188.58 354.3 136.95C350.8 99.25 345.3 49.72 334.05 0.84L327.7100000000001 -26.75L294.8100000000001 105.31C286.6900000000001 137.95 257.5600000000001 160.73 224.0100000000001 160.73S161.3300000000001 137.9500000000001 153.21 105.3200000000001L121.78 -33.1299999999999L113.97 0.84C102.72 49.7 97.22 99.23 93.72 136.9300000000001C88.91 188.4900000000001 75.41 227.7100000000001 51.27 260.3400000000001C33.55 284.3100000000001 27.82 314.0900000000001 35.15 344.1800000000001C43.41 378.1600000000001 70.47 405.7600000000001 104.09 414.4800000000001C128.39 420.7500000000001 152.64 405.3500000000001 166.21 395.3400000000001C166.28 395.2900000000001 166.36 395.2600000000001 166.42 395.2100000000001C166.45 395.1900000000001 166.46 395.1600000000001 166.49 395.1400000000001L246.82 338.8900000000001C257.52 331.4600000000001 266.97 339.7600000000001 269.1 342.8300000000001C274.19 350.0600000000001 272.4100000000001 360.0300000000001 265.19 365.1100000000001L245.5 378.89C258.55 382.02 271.04 387.44 281.81 395.36C305.31 412.7200000000001 325.55 419.25 343.9 414.5C377.52 405.77 404.61 378.17 412.89 344.19C420.19 314.0900000000001 414.48 284.31 396.73 260.3400000000001z" />
+    <glyph glyph-name="toothbrush"
+      unicode="&#xF635;"
+      horiz-adv-x="640" d=" M624 32H448V224H416V32H384V224H352V32H320V224H288V32H256V224H224V32H192V224H160V32H128V224H96V32H64V224H32V32H16C7.16 32 0 24.84 0 16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V16C640 24.84 632.84 32 624 32zM608 -32H32V0H608V-32zM64 256H416C451.35 256 480 284.65 480 320C480 390.69 422.69 448 352 448C375.62 424.38 358.89 384 325.49 384H64C28.65 384 0 355.35 0 320S28.65 256 64 256zM64 352H325.49C353.7 352 378.9 368.8400000000001 389.69 394.9C391.28 398.74 392.51 402.66 393.38 406.62C425.6600000000001 391.13 448 358.12 448 320C448 302.36 433.64 288 416 288H64C46.36 288 32 302.36 32 320S46.36 352 64 352z" />
+    <glyph glyph-name="torah"
+      unicode="&#xF6A0;"
+      horiz-adv-x="448" d=" M448 56V424C448 437.3 437.3 448 424 448H80C35.8 448 0 412.2 0 368V0C0 -35.35 28.65 -64 64 -64H436C442.6 -64 448 -58.6 448 -52V-44C448 -37.4 442.6 -32 436 -32H432.7C428.7 -11.8 429.5 17.7 433.1 33.8C441.8 37.4 448 46 448 56zM404.3 -32H64C46.33 -32 32 -17.67 32 0S46.33 32 64 32H404.3C401.4000000000001 13.2 401.2 -11.6 404.3 -32zM416 64H64C52.28 64 41.45 60.62 32 55.12V368C32 394.5 53.5 416 80 416H416V64zM131.33 240.26L110.35 207.23C105.34 199.35 105.02 189.4 109.51 181.25A25.603 25.603 0 0 1 131.97 167.97H177.25L210.33 115.9C215.07 108.4500000000001 223.17 104.0000000000001 232 104.0000000000001C240.83 104.0000000000001 248.93 108.4400000000001 253.66 115.8700000000001L286.76 167.9700000000001H332.03C341.39 167.9700000000001 350.01 173.0700000000001 354.5 181.2700000000001C358.99 189.4000000000001 358.6600000000001 199.3500000000001 353.64 207.2200000000001L332.67 240.2400000000001L353.65 273.2700000000001C358.66 281.1500000000001 358.98 291.1000000000001 354.49 299.2500000000001A25.603 25.603 0 0 1 332.03 312.5300000000001H286.75L253.67 364.6C249.13 371.74 241.02 376 231.98 376C222.96 376 214.87 371.75 210.33 364.63L177.23 312.53H131.96C122.6 312.53 113.98 307.43 109.49 299.23C105 291.1 105.33 281.15 110.35 273.28L131.33 240.26zM232 136.59L206.99 175.97H257.02L232 136.59zM295.95 197.36L310.52 220.3L325.09 197.36H295.95zM325.09 283.14L310.52 260.19L295.94 283.14H325.09zM232 343.91L257.01 304.53H206.98L232 343.91zM193.4 283.14H270.61L297.85 240.25L270.61 197.36H193.4L166.16 240.25L193.4 283.14zM168.05 283.14L153.48 260.2L138.91 283.14H168.05zM153.48 220.31L168.06 197.36H138.91L153.48 220.31z" />
+    <glyph glyph-name="torii-gate"
+      unicode="&#xF6A1;"
+      horiz-adv-x="512" d=" M480 288C497.67 288 512 302.3300000000001 512 320V448A303.17 303.17 0 0 0 376.45 416H135.55A303.17 303.17 0 0 0 0 448V320C0 302.33 14.33 288 32 288H64V192H8C3.58 192 0 188.42 0 184V168C0 163.58 3.58 160 8 160H64V-56C64 -60.42 67.58 -64 72 -64H88C92.42 -64 96 -60.42 96 -56V160H416V-56C416 -60.42 419.58 -64 424 -64H440C444.42 -64 448 -60.42 448 -56V160H504C508.42 160 512 163.58 512 168V184C512 188.42 508.42 192 504 192H448V288H480zM32 320V400.44C65.39 389.62 100.49 384 135.55 384H376.44C411.51 384 446.61 389.62 479.99 400.44V320H32zM96 288H240V192H96V288zM416 192H272V288H416V192z" />
+    <glyph glyph-name="tornado"
+      unicode="&#xF76F;"
+      horiz-adv-x="512" d=" M429.1 422.8C436.5 433.4 429.1 448 416.2000000000001 448H16.2C7.1 448 -0.3 440.4 0 431.5C13.3 78.8 452 211.7 331.7 -41.1C326.7 -51.7 334.3 -64 346 -64H373.4C381.3 -64 389.2 -61 395.1 -55.7C715.7 231 256.2 174.1 429.1 422.8zM386.7 416C373 392.5 364.7 371.4 360.3 352H45.5C39.4 370.9 35 392 33 416H386.7zM58.4 320H356.4C356.3 295.5 363.2 274.5 373.6 256H108.6C88.7 273.3 71.5 294.1 58.4 320zM153.7 224H396.3C407.4 211.1 419.5 199.5 430.7 188.8C441.8999999999999 178.1 450.8999999999999 168.9 458.5999999999999 160H287.7C271.8 168 255 175.5 237.9 183C209.3 195.6 180.4 208.3 153.7 224zM338.9 128H477.7C478.9 123.6 480.1 119.3 480.1 114.7C479.9 100.3 473.3 83.3 460.9999999999999 64H380.5C379.5 68 378.8999999999999 72.1 377.5 75.9C369.6 97.1 356 113.8 338.8999999999999 128zM373.4 -32H370.5C379.4 -8.7 383.7 12.4 384.1 32H437.2000000000001C420.6 12.5 399.4000000000001 -8.8 373.4000000000001 -32z" />
+    <glyph glyph-name="tractor"
+      unicode="&#xF722;"
+      horiz-adv-x="640" d=" M176 192C131.82 192 96 156.18 96 112S131.82 32 176 32S256 67.82 256 112S220.18 192 176 192zM176 72C153.94 72 136 89.94 136 112S153.94 152 176 152S216 134.06 216 112S198.06 72 176 72zM608 256H544V266.95C544 289.31 551.8 310.45 566.13 327.28C568.9 330.53 568.9399999999999 335.26 565.92 338.28L554.5899999999999 349.61C551.3699999999999 352.83 545.9699999999999 352.84 542.9599999999999 349.41C522.9399999999999 326.59 511.9999999999999 297.62 511.9999999999999 266.95V256H368.57L284.73 429.9A32.02 32.02 0 0 1 255.9 448H128C110.33 448 96 433.67 96 416V260.25C85.24 261.7100000000001 73.98 258.8400000000001 65.69 250.6L37.41 222.32C24.6 209.49 23.47 189.32 34.1 175.23C32.98 172.73 31.91 170.2000000000001 30.94 167.65C13.47 165.17 0 150.14 0 132V92C0 73.86 13.47 58.83 30.94 56.36C31.91 53.81 32.97 51.28 34.1 48.78C29.41 42.58 26.88 35.08 26.88 27.17C26.85 17.55 30.6 8.48 37.41 1.69L65.69 -26.59C78.57 -39.42 98.72 -40.53 112.78 -29.92C115.28 -31.03 117.81 -32.08 120.34 -33.06C122.81 -50.52 137.88 -64 156 -64H196C214.12 -64 229.19 -50.52 231.66 -33.06C234.19 -32.08 236.72 -31.03 239.22 -29.92C253.34 -40.53 273.5 -39.42 286.31 -26.59L314.5900000000001 1.6899999999999C321.4000000000001 8.49 325.1500000000001 17.55 325.12 27.17C325.12 35.08 322.5900000000001 42.61 317.9 48.78C319.02 51.28 320.09 53.8099999999999 321.06 56.36C327.4100000000001 57.2599999999999 332.88 60.24 337.7200000000001 63.9999999999999H421.87C418.3 53.9499999999999 415.99 43.28 415.99 31.9999999999999C415.99 -21.02 458.97 -64 511.99 -64S607.99 -21.02 607.99 32C607.99 58.51 597.25 82.51 579.87 99.88L630.61 150.62C636.61 156.62 639.98 164.76 639.98 173.25V224C640 241.67 625.6700000000001 256 608 256zM128 416H255.9L333.04 256H278.44C267.5 262.2100000000001 254.36 262.16 243.38 256H234.21C233.35 256.35 232.51 256.73 231.65 257.06C229.19 274.52 214.12 288 196 288H156C144.47 288 134.6 282.19 128 273.73V416zM320 92C320 89.8 318.2200000000001 88 316 88H297.59C290.48 64.37 290.88 65.15 278.97 43.02L291.94 29.99L291.97 24.32L263.69 -3.96C262.13 -5.57 259.6 -5.51 258.0299999999999 -3.96L245.0299999999999 9.04C223.2899999999999 -2.64 223.3699999999999 -2.61 199.9999999999999 -9.57V-28C199.9999999999999 -30.2 198.2199999999999 -32 195.9999999999999 -32H155.9999999999999C153.7799999999999 -32 151.9999999999999 -30.2 151.9999999999999 -28V-9.58C128.6299999999999 -2.62 128.7099999999999 -2.65 106.9699999999999 9.03L93.9699999999999 -3.97A3.972 3.972 0 0 0 88.3099999999999 -3.97L60.0299999999999 24.3100000000001L60.0599999999999 29.9800000000001L73.0299999999999 43.0100000000001C61.11 65.16 61.51 64.4 54.41 88H36C33.78 88 32 89.8 32 92V132C32 134.2 33.78 136 36 136H54.41C61.56 159.77 61.13 158.83 73.03 181.02L60.03 194.02A4.02 4.02 0 0 0 60.03 199.69L88.31 227.97C89.9 229.53 92.43 229.5 93.97 227.97L106.97 214.97C128.71 226.65 128.63 226.62 152 233.58V252C152 254.2 153.78 256 156 256H196C198.22 256 200 254.2 200 252V233.58C223.37 226.62 223.29 226.65 245.03 214.97L258.03 227.97C259.59 229.5 262.12 229.53 263.69 227.97L291.9700000000001 199.69A4.02 4.02 0 0 0 291.9700000000001 194.02L278.9700000000001 181.02C290.8800000000001 158.82 290.4500000000001 159.74 297.5900000000001 136H316C318.2200000000001 136 320 134.2 320 132V92zM512 -32C476.71 -32 448 -3.29 448 32S476.71 96 512 96S576 67.29 576 32S547.29 -32 512 -32zM608 173.26L553.15 118.41C540.64 124.38 526.79 128.01 512 128.01C483.68 128.01 458.49 115.52 440.91 96.01H352V132.01C352 150.15 338.53 165.18 321.06 167.65C320.09 170.2 319.0300000000001 172.73 317.9 175.23C328.52 189.3199999999999 327.4 209.5 314.59 222.32L312.9 224.01H608V173.26z" />
+    <glyph glyph-name="trademark"
+      unicode="&#xF25C;"
+      horiz-adv-x="640" d=" M121.564 313.02H23.876C17.249 313.02 11.876 318.3930000000001 11.876 325.02V340C11.876 346.627 17.249 352 23.876 352H264.125C270.752 352 276.125 346.627 276.125 340V325.02C276.125 318.3930000000001 270.752 313.02 264.125 313.02H166.437V44C166.437 37.373 161.064 32 154.437 32H133.564C126.937 32 121.564 37.373 121.564 44V313.02zM352.474 352H380.598A12 12 0 0 0 391.646 344.685L461.971 178.855C469.223 161.178 477.835 135.7960000000001 477.835 135.7960000000001H478.742S487.353 161.1780000000001 494.605 178.855L564.9309999999999 344.6850000000001A11.998 11.998 0 0 0 575.978 352H604.101A12 12 0 0 0 616.062 340.966L639.96 44.966C640.524 37.981 635.0070000000001 32 627.999 32H607.681A12 12 0 0 0 595.7180000000001 43.059L580.724 233.699C579.364 253.189 580.2710000000001 280.838 580.2710000000001 280.838H579.364S569.846 251.3760000000001 562.14 233.699L501.394 96.699A12 12 0 0 0 490.424 89.563H466.172A12 12 0 0 0 455.189 96.728L394.888 233.699C387.636 250.924 377.664 281.745 377.664 281.745H376.757S377.21 253.19 375.85 233.699L361.286 43.086A11.997 11.997 0 0 0 349.322 32H328.576C321.5680000000001 32 316.0510000000001 37.98 316.615 44.966L340.512 340.966A12.002 12.002 0 0 0 352.474 352z" />
+    <glyph glyph-name="traffic-cone"
+      unicode="&#xF636;"
+      horiz-adv-x="512" d=" M504 -32H480.98L294.54 436.48A18.284 18.284 0 0 1 277.55 448H234.44C226.95 448 220.22 443.43 217.45 436.48L31.02 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H504C508.42 -64 512 -60.42 512 -56V-40C512 -35.58 508.42 -32 504 -32zM382.87 128H129.13L180.07 256H331.92L382.87 128zM243.75 416H268.25L319.19 288H192.81L243.75 416zM65.46 -32L116.4 96H395.6L446.54 -32H65.46z" />
+    <glyph glyph-name="traffic-light-go"
+      unicode="&#xF638;"
+      horiz-adv-x="416" d=" M416 384V400H336V419.56C336 435.27 323.27 448 307.55 448H108.45C92.73 448 80 435.27 80 419.56V400H0V384C0 333.45 33.89 291.23 80 277.43V272H0V256C0 205.45 33.89 163.23 80 149.43V144H0V128C0 74.46 38.07 30.49 88.38 19.57C106.49 -29.13 153 -64 208 -64S309.51 -29.13 327.62 19.57C377.93 30.49 416 74.46 416 128V144H336V149.43C382.11 163.23 416 205.45 416 256V272H336V277.43C382.11 291.23 416 333.4500000000001 416 384zM336 368H382.41C377.17 342.38 359.36 321.79 336 311.44V368zM33.59 368H80V311.44C56.64 321.79 38.84 342.38 33.59 368zM33.59 240H80V183.44C56.64 193.79 38.84 214.38 33.59 240zM33.59 112H80V64C80 60.96 80.69 58.1 80.9 55.11C57.11 65.31 38.9 86.06 33.59 112zM304 64C304 11.07 260.94 -32 208 -32S112 11.07 112 64V416H304V64zM382.41 112C377.1 86.06 358.9 65.31 335.11 55.11C335.32 58.1 336.01 60.95 336.01 64V112H382.4099999999999zM382.41 240C377.17 214.38 359.36 193.79 336 183.44V240H382.41zM208 264C238.93 264 264 289.07 264 320S238.93 376 208 376S152 350.93 152 320S177.07 264 208 264zM208 352C225.64 352 240 337.64 240 320S225.64 288 208 288S176 302.36 176 320S190.36 352 208 352zM208 136C238.93 136 264 161.07 264 192S238.93 248 208 248S152 222.93 152 192S177.07 136 208 136zM208 224C225.64 224 240 209.64 240 192S225.64 160 208 160S176 174.36 176 192S190.36 224 208 224zM208 8C238.93 8 264 33.07 264 64S238.93 120 208 120S152 94.93 152 64S177.07 8 208 8z" />
+    <glyph glyph-name="traffic-light-slow"
+      unicode="&#xF639;"
+      horiz-adv-x="416" d=" M416 384V400H336V419.56C336 435.27 323.27 448 307.55 448H108.45C92.73 448 80 435.27 80 419.56V400H0V384C0 333.45 33.89 291.23 80 277.43V272H0V256C0 205.45 33.89 163.23 80 149.43V144H0V128C0 74.46 38.07 30.49 88.38 19.57C106.49 -29.13 153 -64 208 -64S309.51 -29.13 327.62 19.57C377.93 30.49 416 74.46 416 128V144H336V149.43C382.11 163.23 416 205.45 416 256V272H336V277.43C382.11 291.23 416 333.4500000000001 416 384zM336 368H382.41C377.17 342.38 359.36 321.79 336 311.44V368zM33.59 368H80V311.44C56.64 321.79 38.84 342.38 33.59 368zM33.59 240H80V183.44C56.64 193.79 38.84 214.38 33.59 240zM33.59 112H80V64C80 60.96 80.69 58.1 80.9 55.11C57.11 65.31 38.9 86.06 33.59 112zM304 64C304 11.07 260.94 -32 208 -32S112 11.07 112 64V416H304V64zM382.41 112C377.1 86.06 358.9 65.31 335.11 55.11C335.32 58.1 336.01 60.95 336.01 64V112H382.4099999999999zM382.41 240C377.17 214.38 359.36 193.79 336 183.44V240H382.41zM208 264C238.93 264 264 289.07 264 320S238.93 376 208 376S152 350.93 152 320S177.07 264 208 264zM208 352C225.64 352 240 337.64 240 320S225.64 288 208 288S176 302.36 176 320S190.36 352 208 352zM208 136C238.93 136 264 161.07 264 192S238.93 248 208 248S152 222.93 152 192S177.07 136 208 136zM208 8C238.93 8 264 33.07 264 64S238.93 120 208 120S152 94.93 152 64S177.07 8 208 8zM208 96C225.64 96 240 81.64 240 64S225.64 32 208 32S176 46.36 176 64S190.36 96 208 96z" />
+    <glyph glyph-name="traffic-light-stop"
+      unicode="&#xF63A;"
+      horiz-adv-x="416" d=" M416 384V400H336V419.56C336 435.27 323.27 448 307.55 448H108.45C92.73 448 80 435.27 80 419.56V400H0V384C0 333.45 33.89 291.23 80 277.43V272H0V256C0 205.45 33.89 163.23 80 149.43V144H0V128C0 74.46 38.07 30.49 88.38 19.57C106.49 -29.13 153 -64 208 -64S309.51 -29.13 327.62 19.57C377.93 30.49 416 74.46 416 128V144H336V149.43C382.11 163.23 416 205.45 416 256V272H336V277.43C382.11 291.23 416 333.4500000000001 416 384zM336 368H382.41C377.17 342.38 359.36 321.79 336 311.44V368zM33.59 368H80V311.44C56.64 321.79 38.84 342.38 33.59 368zM33.59 240H80V183.44C56.64 193.79 38.84 214.38 33.59 240zM33.59 112H80V64C80 60.96 80.69 58.1 80.9 55.11C57.11 65.31 38.9 86.06 33.59 112zM304 64C304 11.07 260.94 -32 208 -32S112 11.07 112 64V416H304V64zM382.41 112C377.1 86.06 358.9 65.31 335.11 55.11C335.32 58.1 336.01 60.95 336.01 64V112H382.4099999999999zM382.41 240C377.17 214.38 359.36 193.79 336 183.44V240H382.41zM208 264C238.93 264 264 289.07 264 320S238.93 376 208 376S152 350.93 152 320S177.07 264 208 264zM208 136C238.93 136 264 161.07 264 192S238.93 248 208 248S152 222.93 152 192S177.07 136 208 136zM208 224C225.64 224 240 209.64 240 192S225.64 160 208 160S176 174.36 176 192S190.36 224 208 224zM208 8C238.93 8 264 33.07 264 64S238.93 120 208 120S152 94.93 152 64S177.07 8 208 8zM208 96C225.64 96 240 81.64 240 64S225.64 32 208 32S176 46.36 176 64S190.36 96 208 96z" />
+    <glyph glyph-name="traffic-light"
+      unicode="&#xF637;"
+      horiz-adv-x="416" d=" M416 384V400H336V419.56C336 435.27 323.27 448 307.55 448H108.45C92.73 448 80 435.27 80 419.56V400H0V384C0 333.45 33.89 291.23 80 277.43V272H0V256C0 205.45 33.89 163.23 80 149.43V144H0V128C0 74.46 38.07 30.49 88.38 19.57C106.49 -29.13 153 -64 208 -64S309.51 -29.13 327.62 19.57C377.93 30.49 416 74.46 416 128V144H336V149.43C382.11 163.23 416 205.45 416 256V272H336V277.43C382.11 291.23 416 333.4500000000001 416 384zM336 368H382.41C377.17 342.38 359.36 321.79 336 311.44V368zM33.59 368H80V311.44C56.64 321.79 38.84 342.38 33.59 368zM33.59 240H80V183.44C56.64 193.79 38.84 214.38 33.59 240zM33.59 112H80V64C80 60.96 80.69 58.1 80.9 55.11C57.11 65.31 38.9 86.06 33.59 112zM304 64C304 11.07 260.94 -32 208 -32S112 11.07 112 64V416H304V64zM382.41 112C377.1 86.06 358.9 65.31 335.11 55.11C335.32 58.1 336.01 60.95 336.01 64V112H382.4099999999999zM382.41 240C377.17 214.38 359.36 193.79 336 183.44V240H382.41zM208 264C238.93 264 264 289.07 264 320S238.93 376 208 376S152 350.93 152 320S177.07 264 208 264zM208 352C225.64 352 240 337.64 240 320S225.64 288 208 288S176 302.36 176 320S190.36 352 208 352zM208 136C238.93 136 264 161.07 264 192S238.93 248 208 248S152 222.93 152 192S177.07 136 208 136zM208 224C225.64 224 240 209.64 240 192S225.64 160 208 160S176 174.36 176 192S190.36 224 208 224zM208 8C238.93 8 264 33.07 264 64S238.93 120 208 120S152 94.93 152 64S177.07 8 208 8zM208 96C225.64 96 240 81.64 240 64S225.64 32 208 32S176 46.36 176 64S190.36 96 208 96z" />
+    <glyph glyph-name="train"
+      unicode="&#xF238;"
+      horiz-adv-x="448" d=" M224 128C232.823 128 240 120.823 240 112S232.823 96 224 96S208 103.177 208 112S215.177 128 224 128M224 160C197.49 160 176 138.51 176 112S197.49 64 224 64S272 85.49 272 112S250.51 160 224 160zM320 448H128C64 448 0 405.019 0 352V96C0 48.831 50.656 9.609 106.9 1.527L51.615 -53.758C47.835 -57.538 50.512 -64.0010000000001 55.858 -64.0010000000001H81.656C84.839 -64.0010000000001 87.891 -62.7370000000001 90.141 -60.4860000000001L150.627 0H297.372L357.858 -60.485A12.002 12.002 0 0 1 366.343 -64H392.141C397.4860000000001 -64 400.163 -57.537 396.384 -53.757L341.1 1.528C397.344 9.609 448 48.831 448 96V352C448 405.019 385 448 320 448zM32 320H416V224H32V320zM128 416H320C378.237 416 416 378.1190000000001 416 352H32C32 384.299 79.552 416 128 416zM320 32H128C79.552 32 32 63.701 32 96V192H416V96C416 63.701 368.448 32 320 32z" />
+    <glyph glyph-name="tram"
+      unicode="&#xF7DA;"
+      horiz-adv-x="512" d=" M511.6 371.6C509.6 380.2 501.1 385.5 492.4 383.5L12.4 271.5C3.8 269.5 -1.6 260.9 0.4 252.3C2.2 245 8.7 240 16 240C17.2 240 18.4 240.1 19.6 240.4L240 291.8V224H64C46.3 224 32 209.7 32 192V-32C32 -49.7 46.3 -64 64 -64H448C465.7 -64 480 -49.7 480 -32V192C480 209.7 465.7 224 448 224H272V299.3L499.6 352.4C508.2 354.4 513.6 363 511.6 371.6zM64 192H160V96H64V192zM352 192H448V96H352V192zM448 64V-32H64V64H448zM320 192V96H192V192H320zM176 320C202.5 320 224 341.5 224 368S202.5 416 176 416S128 394.5 128 368S149.5 320 176 320zM176 384C184.8 384 192 376.8 192 368S184.8 352 176 352S160 359.2 160 368S167.2 384 176 384zM304 352C330.5 352 352 373.5 352 400S330.5 448 304 448S256 426.5 256 400S277.5 352 304 352zM304 416C312.8 416 320 408.8 320 400S312.8 384 304 384S288 391.2 288 400S295.2 416 304 416z" />
+    <glyph glyph-name="transgender-alt"
+      unicode="&#xF225;"
+      horiz-adv-x="480" d=" M468 448H380C373.4 448 368 442.6 368 436V428C368 421.4 373.4 416 380 416H425.4L329.9 320.5C305.2 340.2 274 352 240 352S174.8 340.2 150.1 320.5L121.2 349.4L152.3 380.5C157 385.2 157 392.8 152.3 397.5L146.6 403.2C141.9 407.9 134.3 407.9 129.6 403.2L98.6 372L54.6 416H100C106.6 416 112 421.4 112 428V436C112 442.6 106.6 448 100 448H12C5.4 448 0 442.6 0 436V348C0 341.4 5.4 336 12 336H20C26.6 336 32 341.4 32 348V393.4L76 349.4L44.9 318.3C40.2 313.6 40.2 306 44.9 301.3L50.6 295.6C55.3 290.9000000000001 62.9 290.9000000000001 67.6 295.6L98.7 326.7000000000001L127.6 297.8C107.8 273.2 96 242 96 208C96 133.9 152 72.8 224 64.9V24H172C165.4 24 160 18.6 160 12V4C160 -2.6 165.4 -8 172 -8H224V-52C224 -58.6 229.4 -64 236 -64H244C250.6 -64 256 -58.6 256 -52V-8H308C314.6 -8 320 -2.6 320 4V12C320 18.6 314.6 24 308 24H256V64.9C328 72.9 384 133.9 384 208C384 242 372.2 273.2 352.5 297.9L448 393.4V348C448 341.4 453.4 336 460 336H468C474.6 336 480 341.4 480 348V436C480 442.6 474.6 448 468 448zM240 96C178.1 96 128 146 128 208C128 269.9 178 320 240 320C301.9 320 352 270 352 208C352 146.1 302 96 240 96z" />
+    <glyph glyph-name="transgender"
+      unicode="&#xF224;"
+      horiz-adv-x="384" d=" M160 64.9C232 72.9 288 133.9 288 208C288 242 276.2 273.2 256.5 297.9L352 393.4V348C352 341.4 357.4 336 364 336H372C378.6 336 384 341.4 384 348V436C384 442.6 378.6 448 372 448H284C277.4 448 272 442.6 272 436V428C272 421.4 277.4 416 284 416H329.4L233.9 320.5C209.2 340.2 178 352 144 352C64.5 352 0 287.5 0 208C0 133.9 56 72.8 128 64.9V24H76C69.4 24 64 18.6 64 12V4C64 -2.6 69.4 -8 76 -8H128V-52C128 -58.6 133.4 -64 140 -64H148C154.6 -64 160 -58.6 160 -52V-8H212C218.6 -8 224 -2.6 224 4V12C224 18.6 218.6 24 212 24H160V64.9zM144 96C82.1 96 32 146 32 208C32 269.9 82 320 144 320C205.9 320 256 270 256 208C256 146.1 206 96 144 96z" />
+    <glyph glyph-name="trash-alt"
+      unicode="&#xF2ED;"
+      horiz-adv-x="448" d=" M336 384L302.4 428.8C293.3 440.9 279.1 448 264 448H184C168.9 448 154.7 440.9 145.6 428.8L112 384H24C10.7 384 0 373.3 0 360V358C0 354.7 2.7 352 6 352H32V-16C32 -42.5 53.5 -64 80 -64H368C394.5 -64 416 -42.5 416 -16V352H442C445.3 352 448 354.7 448 358V360C448 373.3 437.3 384 424 384H336zM184 416H264C269 416 273.8 413.6 276.8 409.6L296 384H152L171.2 409.6C174.2 413.6 179 416 184 416zM384 -16C384 -24.8 376.8 -32 368 -32H80C71.2 -32 64 -24.8 64 -16V352H384V-16zM208 28V292C208 298.6 213.4 304 220 304H228C234.6 304 240 298.6 240 292V28C240 21.4 234.6 16 228 16H220C213.4 16 208 21.4 208 28zM128 28V292C128 298.6 133.4 304 140 304H148C154.6 304 160 298.6 160 292V28C160 21.4 154.6 16 148 16H140C133.4 16 128 21.4 128 28zM288 28V292C288 298.6 293.4 304 300 304H308C314.6 304 320 298.6 320 292V28C320 21.4 314.6 16 308 16H300C293.4 16 288 21.4 288 28z" />
+    <glyph glyph-name="trash"
+      unicode="&#xF1F8;"
+      horiz-adv-x="512" d=" M368 384L334.4 428.8C325.3 440.9 311.1 448 296 448H216C200.9 448 186.7 440.9 177.6 428.8L144 384H40C26.7 384 16 373.3 16 360V358C16 354.7 18.7 352 22 352H42.9L76.1 -20.3C78.3 -45 99 -64 123.9 -64H388.1C413 -64 433.7000000000001 -45 435.9000000000001 -20.3L469.1 352H490C493.3 352 496 354.7 496 358V360C496 373.3 485.3 384 472 384H368zM216 416H296C301 416 305.8 413.6 308.8 409.6L328 384H184L203.2 409.6C206.2 413.6 211 416 216 416zM404 -17.4C403.3 -25.7 396.4 -32 388.1 -32H123.9C115.6 -32 108.7 -25.7 108 -17.4L75 352H437L404 -17.4z" />
+    <glyph glyph-name="treasure-chest"
+      unicode="&#xF723;"
+      horiz-adv-x="576" d=" M480 416H96C42.98 416 0 373.02 0 320V0C0 -17.67 14.33 -32 32 -32H544C561.67 -32 576 -17.67 576 0V320C576 373.02 533.02 416 480 416zM96 0H32V160H96V0zM96 192H32V320C32 355.29 60.71 384 96 384V192zM448 0H128V160H192V112C192 85.53 213.53 64 240 64H336C362.4700000000001 64 384 85.53 384 112V160H448V0zM224 112V240C224 248.84 231.16 256 240 256H336C344.84 256 352 248.84 352 240V112C352 103.16 344.84 96 336 96H240C231.16 96 224 103.16 224 112zM448 192H384V240C384 266.4700000000001 362.4700000000001 288 336 288H240C213.53 288 192 266.4700000000001 192 240V192H128V384H448V192zM544 0H480V160H544V0zM544 192H480V384C515.29 384 544 355.29 544 320V192zM288 128C296.84 128 304 135.16 304 144V208C304 216.84 296.84 224 288 224S272 216.84 272 208V144C272 135.16 279.1600000000001 128 288 128z" />
+    <glyph glyph-name="tree-alt"
+      unicode="&#xF400;"
+      horiz-adv-x="512" d=" M459.94 245.02C462.63 253.88 464 262.9100000000001 464 272C464 324.94 420.94 368 368 368C362.25 368 356.56 367.4700000000001 350.9100000000001 366.44C343.94 412.55 304.03 448 256 448S168.06 412.55 161.09 366.44A95.058 95.058 0 0 1 144 368C91.06 368 48 324.94 48 272C48 262.91 49.38 253.88 52.06 245.02C20.34 228.83 0 196.47 0 160C0 107.06 43.06 64 96 64H208V7.55L183.8 -40.85C178.48 -51.4899999999999 186.22 -64.01 198.11 -64.01H313.89C325.78 -64.01 333.52 -51.49 328.2 -40.85L304 7.55V64H416C468.94 64 512 107.06 512 160C512 196.47 491.66 228.83 459.94 245.02zM224 -32L240 0V64H272V0L288 -32H224zM416 96H96C60.72 96 32 124.7 32 160C32 188.12 50.28 212.59 77.47 220.88L95.63 226.41L87.1 243.38C82.41 252.75 80 262.39 80 272C80 307.3 108.72 336 144 336C158.34 336 163.95 333.06 195.16 319.02C192.26 350.7200000000001 192.88 344.44 192 352C192 387.3 220.72 416 256 416S320 387.3 319.75 349.58L316.84 319.02C345.08 331.7200000000001 352.1 336 368 336C403.28 336 432 307.3 432 272C432 262.39 429.59 252.75 424.9100000000001 243.38L416.3800000000001 226.41L434.5400000000001 220.88C461.72 212.59 480 188.12 480 160C480 124.7 451.28 96 416 96z" />
+    <glyph glyph-name="tree-christmas"
+      unicode="&#xF7DB;"
+      horiz-adv-x="512" d=" M304 96C277.5 96 256 74.5 256 48S277.5 0 304 0S352 21.5 352 48S330.5 96 304 96zM304 32C295.2 32 288 39.2 288 48S295.2 64 304 64S320 56.8 320 48S312.8 32 304 32zM272 176C272 202.5 250.5 224 224 224S176 202.5 176 176S197.5 128 224 128S272 149.5 272 176zM224 160C215.2 160 208 167.2 208 176S215.2 192 224 192S240 184.8 240 176S232.8 160 224 160zM505.3 -12.4L420.8 96.3C431.3 97.9 440.5 104.6 445.1 114.4C450.4 125.6 448.7000000000001 138.9 440.7000000000001 148.5000000000001L306.6 309.5000000000001L334.5 323.4000000000001C345.3 328.8000000000001 352.2 339.9000000000001 352.2 352.0000000000001S345.4 375.2000000000001 334.5 380.6L301.4 397.2000000000001L284.8 430.3000000000001C279.2 441.2 268.1 448 256 448C243.9 448 232.8 441.2 227.4 430.3L210.8 397.2L177.7 380.6C166.8 375.2 160 364.1 160 352S166.8 328.8 177.7 323.4L205.6 309.5L71.5 148.5C63.6 139 61.8 125.7 67.1 114.4C71.7 104.6 80.9 97.9 91.4 96.3L6.7 -12.4C-0.8 -22 -2.2 -35.1 3.2 -46.1S19.8 -64 32 -64H480C492.2 -64 503.4 -57 508.7 -46.1S512.8 -22 505.3 -12.4zM192 352L234.7 373.3L256 416L277.3 373.3L320 352L277.3 330.7L256 288L234.7 330.7L192 352zM32 -32L156.4 128H96L223.6 281.2L227.3 273.7C232.7 262.9 243.8 256 255.9 256C268 256 279.1 262.8 284.5 273.7L288.2 281.2L416 128H355.6L480 -32H32z" />
+    <glyph glyph-name="tree-decorated"
+      unicode="&#xF7DC;"
+      horiz-adv-x="512" d=" M505.3 -12.4L445.9 64H448C460.1 64 471.2 70.8 476.6 81.7C482 92.5 480.9 105.5 473.6 115.2L391.4000000000001 224.9C400.7000000000001 227.1 408.6 233.4 412.9000000000001 242.2C418.2000000000001 253.3 416.7000000000001 266.4 409.0000000000001 276.1L281 436C274.9 443.6 265.7 448 256 448S237.1 443.6 231 436L103 276C95.3 266.4 93.8 253.2 99.1 242.1C103.3 233.3 111.3 227 120.6 224.8L38.4 115.2C31.1 105.5 30 92.5 35.4 81.7C40.8 70.8 51.9 64 64 64H66.1L6.7 -12.4C-0.8 -22 -2.2 -35.1 3.2 -46.1C8.6 -57 19.8 -64 32 -64H480C492.2 -64 503.4 -57 508.7 -46.1C514.1 -35.1 512.8 -22 505.3 -12.4zM32 -32L131.6 96H64L184 256H128L256 416L384 256H328L448 96H380.4L480 -32H32zM304 96C277.5 96 256 74.5 256 48S277.5 0 304 0S352 21.5 352 48S330.5 96 304 96zM304 32C295.2 32 288 39.2 288 48S295.2 64 304 64S320 56.8 320 48S312.8 32 304 32zM192 192C165.5 192 144 170.5 144 144S165.5 96 192 96S240 117.5 240 144S218.5 192 192 192zM192 128C183.2 128 176 135.2 176 144S183.2 160 192 160S208 152.8 208 144S200.8 128 192 128zM272 224C298.5 224 320 245.5 320 272S298.5 320 272 320S224 298.5 224 272S245.5 224 272 224zM272 288C280.8 288 288 280.8 288 272S280.8 256 272 256S256 263.2 256 272S263.2 288 272 288z" />
+    <glyph glyph-name="tree-large"
+      unicode="&#xF7DD;"
+      horiz-adv-x="512" d=" M505.3 -12.4L445.9 64H448C460.1 64 471.2 70.8 476.6 81.7C482 92.5 480.9 105.5 473.6 115.2L391.4000000000001 224.9C400.7000000000001 227.1 408.6 233.4 412.9000000000001 242.2C418.2000000000001 253.3 416.7000000000001 266.4 409.0000000000001 276.1L281 436C274.9 443.6 265.7 448 256 448S237.1 443.6 231 436L103 276C95.3 266.4 93.8 253.2 99.1 242.1C103.3 233.3 111.3 227 120.6 224.8L38.4 115.2C31.1 105.5 30 92.5 35.4 81.7C40.8 70.8 51.9 64 64 64H66.1L6.7 -12.4C-0.8 -22 -2.2 -35.1 3.2 -46.1S19.8 -64 32 -64H480C492.2 -64 503.4 -57 508.7 -46.1S512.8 -22 505.3 -12.4zM32 -32L131.6 96H64L184 256H128L256 416L384 256H328L448 96H380.4L480 -32H32z" />
+    <glyph glyph-name="tree"
+      unicode="&#xF1BB;"
+      horiz-adv-x="448" d=" M444.09 58.54L369.97 144.09H400C406.2200000000001 144.09 411.9100000000001 147.7000000000001 414.5 153.36C417.12 159.0200000000001 416.25 165.68 412.2200000000001 170.43L339.7200000000001 256.14H368C374.31 256.14 380.03 259.86 382.62 265.63C385.18 271.41 384.12 278.15 379.9 282.86L235.9 442.93C229.78 449.68 218.21 449.68 212.09 442.93L68.09 282.86A16.06 16.06 0 0 1 65.37 265.63C67.96 259.86 73.68 256.14 79.99 256.14H108.27L35.77 170.43C31.74 165.68 30.86 159.02 33.49 153.36C36.08 147.7 41.77 144.09 47.99 144.09H78.02L3.91 58.54C-0.18 53.8 -1.15 47.1 1.44 41.41C4.06 35.7 9.75 32.05 16 32.05H176V7.59L151.8 -40.83C146.48 -51.47 154.22 -64 166.11 -64H281.89C293.78 -64 301.52 -51.48 296.2 -40.83L272 7.59V32.05H432C438.25 32.05 443.94 35.71 446.56 41.41C449.1600000000001 47.1 448.19 53.8 444.09 58.54zM192 -31.98L208 0.03V32.05H240V0.03L256 -31.98H192zM50.78 64L146.78 176H82.5L177.28 288H115.94L224 408.08L332.06 288H270.7200000000001L365.5 176H301.2200000000001L397.2200000000001 64H50.78z" />
+    <glyph glyph-name="trees"
+      unicode="&#xF724;"
+      horiz-adv-x="640" d=" M636.09 58.54L561.97 144.09H592C598.22 144.09 603.91 147.7000000000001 606.5 153.36C609.12 159.0200000000001 608.25 165.68 604.22 170.43L531.72 256.14H560C566.31 256.14 572.03 259.86 574.62 265.63C577.18 271.41 576.12 278.15 571.9 282.86L427.9 442.93C421.78 449.68 410.21 449.68 404.09 442.93L320 349.45L235.91 442.93C229.79 449.68 218.22 449.68 212.1 442.93L68.1 282.86A16.06 16.06 0 0 1 65.38 265.63C67.97 259.86 73.69 256.14 80 256.14H108.28L35.78 170.43C31.75 165.68 30.87 159.02 33.5 153.36C36.09 147.7 41.78 144.09 48 144.09H78.03L3.91 58.54C-0.18 53.8 -1.15 47.1 1.44 41.41C4.06 35.7 9.75 32.05 16 32.05H176V7.59L151.8 -40.83C146.48 -51.47 154.22 -64 166.11 -64H281.89C293.78 -64 301.52 -51.48 296.2 -40.83L272 7.59V32.05H368V7.59L343.8 -40.83C338.48 -51.47 346.2200000000001 -64 358.11 -64H473.89C485.78 -64 493.52 -51.48 488.2 -40.83L464 7.59V32.05H624C630.25 32.05 635.94 35.71 638.56 41.41C641.16 47.1 640.1899999999999 53.8 636.0899999999999 58.54zM192 -31.98L208 0.03V32.05H240V0.03L256 -31.98H192zM50.78 64L146.78 176H82.5L177.28 288H115.94L224 408.08L332.06 288H270.7200000000001L365.5 176H301.2200000000001L397.2200000000001 64H50.78zM384 -31.98L400 0.03V32.05H432V0.03L448 -31.98H384zM439.36 64L369.9700000000001 144.1H400C406.2200000000001 144.1 411.9100000000001 147.71 414.5 153.37C417.12 159.03 416.25 165.69 412.2200000000001 170.44L339.7200000000001 256.15H368C374.31 256.15 380.03 259.87 382.62 265.64C385.18 271.42 384.12 278.16 379.9 282.87L341.61 325.43L416 408.08L524.06 288H462.7199999999999L557.4999999999999 176H493.2199999999999L589.2199999999999 64H439.36z" />
+    <glyph glyph-name="triangle"
+      unicode="&#xF2EC;"
+      horiz-adv-x="576" d=" M329.6 424C311.2000000000001 456 264.9000000000001 456 246.4000000000001 424L6.5 8C-11.9 -23.9 11.1 -64 48.1 -64H528C564.9 -64 588 -24 569.6 8L329.6 424zM528 -32H48C35.7 -32 28 -18.7 34.1 -8L274.1 408C280.2000000000001 418.6 295.7000000000001 418.7 301.8 408L541.8 -8C548 -18.6 540.3 -32 528 -32z" />
+    <glyph glyph-name="trophy-alt"
+      unicode="&#xF2EB;"
+      horiz-adv-x="576" d=" M370.5 309.1L320.3 316.4L297.8 361.9C293.8 370 282.1 370.1 278.1 361.9L255.6 316.4L205.4 309.1C196.4 307.8 192.8000000000001 296.7 199.3000000000001 290.3L235.6 254.9L227.0000000000001 204.9C225.5000000000001 196 234.9000000000001 189.1 243.0000000000001 193.3L287.9000000000001 216.9L332.8 193.3C340.8 189.1 350.3 195.9 348.8 204.9L340.2 254.9L376.5 290.3C383.2 296.7 379.5 307.8 370.5 309.1zM310.2 264.7L315.4 234.1L288 248.5L260.5 234.1L265.7 264.7L243.5 286.3L274.2 290.8L287.9 318.6L301.6 290.8L332.3 286.3L310.2 264.7zM448 384V436C448 442.6 442.6 448 436 448H140C133.4 448 128 442.6 128 436V384H12C5.4 384 0 378.6 0 372V310.4C0 248.3 68.1 176 160.7 162.3C190.1 101.6 234.4 72 272 65.4V-32H186C171.6 -32 160 -43.7 160 -58.1C160 -61.4 162.7 -64 166 -64H410C413.3 -64 416 -61.4 416 -58.1C416 -43.7 404.4 -32 390 -32H304V65.4C341.7 72 385.9 101.6 415.3 162.3C508 176 576 248.4 576 310.4V372C576 378.6 570.6 384 564 384H448zM32 310.4V352H128V328C128 276.2 135 233.1 146.5 197.8C77.9 215.5 32 270 32 310.4zM288 96C216 96 160 200 160 328V416H416V328C416 200 360 96 288 96zM544 310.4C544 270 498 215.5 429.5 197.8C441 233.1 448 276.2 448 328V352H544V310.4z" />
+    <glyph glyph-name="trophy"
+      unicode="&#xF091;"
+      horiz-adv-x="576" d=" M448 384V436C448 442.6 442.6 448 436 448H140C133.4 448 128 442.6 128 436V384H12C5.4 384 0 378.6 0 372V310.4C0 248.3 68.1 176 160.7 162.3C190.1 101.6 234.4 72 272 65.4V-32H186C171.6 -32 160 -43.7 160 -58.1C160 -61.4 162.7 -64 166 -64H410C413.3 -64 416 -61.4 416 -58.1C416 -43.7 404.4 -32 390 -32H304V65.4C341.7 72 385.9 101.6 415.3 162.3C508 176 576 248.4 576 310.4V372C576 378.6 570.6 384 564 384H448zM32 310.4V352H128V328C128 276.2 135 233.1 146.5 197.8C77.9 215.5 32 270 32 310.4zM288 96C216 96 160 200 160 328V416H416V328C416 200 360 96 288 96zM544 310.4C544 270 498 215.5 429.5 197.8C441 233.1 448 276.2 448 328V352H544V310.4z" />
+    <glyph glyph-name="truck-container"
+      unicode="&#xF4DC;"
+      horiz-adv-x="640" d=" M32 128H368C385.7 128 400 142.3 400 160V384C400 401.7 385.7 416 368 416H32C14.3 416 0 401.7 0 384V160C0 142.3 14.3 128 32 128zM32 384H368V160H32V384zM621.3 242.7L562.8 301.2C550.8 313.2 534.5 319.9 517.5 319.9H448C439.2 319.9 432 312.7 432 303.9V95.9H228.7C216.4 105.8 201 111.9 184 111.9C161.2 111.9 141.2 101.1 128 84.6C114.8 101.2 94.8 111.9999999999999 72 111.9999999999999C32.2 111.9999999999999 0 79.8 0 39.9999999999999S32.2 -32.0000000000001 72 -32.0000000000001C94.8 -32.0000000000001 114.8 -21.2 128 -4.7C141.2 -21.2 161.2 -32.0000000000001 184 -32.0000000000001C223.8 -32.0000000000001 256 0.1999999999999 256 39.9999999999999C256 48.4999999999999 254.3 56.4999999999999 251.6 63.9999999999999H449.6C446.9000000000001 50.8 447.4000000000001 36.3999999999999 452.4 21.6C460.8 -3.5000000000001 482.3 -23.3 508.0000000000001 -29.5000000000001C560.8000000000001 -42.3000000000001 608 -2.6000000000001 608 48.0999999999999C608 53.5999999999999 607.4 58.8999999999999 606.4 64.0999999999999H624C632.8 64.0999999999999 640 71.2999999999999 640 80.0999999999999V197.5C640 214.5 633.3 230.7 621.3 242.7zM72 0C49.9 0 32 17.9 32 40S49.9 80 72 80S112 62.1 112 40S94.1 0 72 0zM184 0C161.9 0 144 17.9 144 40S161.9 80 184 80S224 62.1 224 40S206.1 0 184 0zM464 288H517.5C526 288 534.1 284.7 540.1 278.6L594.7 224H464V288zM528 0C501.5 0 480 21.5 480 48S501.5 96 528 96S576 74.5 576 48S554.5 0 528 0zM608 96H591.6C577 115.3 554.1 128 528 128S479 115.3 464.4 96H464V192H608V96zM104 192H120C124.4 192 128 195.6 128 200V344C128 348.4 124.4 352 120 352H104C99.6 352 96 348.4 96 344V200C96 195.6 99.6 192 104 192zM200 192H216C220.4 192 224 195.6 224 200V344C224 348.4 220.4 352 216 352H200C195.6 352 192 348.4 192 344V200C192 195.6 195.6 192 200 192zM296 192H312C316.4 192 320 195.6 320 200V344C320 348.4 316.4 352 312 352H296C291.6 352 288 348.4 288 344V200C288 195.6 291.6 192 296 192z" />
+    <glyph glyph-name="truck-couch"
+      unicode="&#xF4DD;"
+      horiz-adv-x="640" d=" M416 416H640V448H416C380.7 448 352 419.3 352 384V76.1L5.9 -32.8C1.6 -34 -0.9 -38.4 0.3 -42.6L4.5 -58C5.7 -62.3 10.1 -64.7999999999999 14.3 -63.6L367.2 48H416C416 -13.9 466.1 -64 528 -64S640 -13.9 640 48S589.9 160 528 160C477.4 160 435.2 126.1 421.3 80H384V384C384 401.6 398.4 416 416 416zM528 128C572.1 128 608 92.1 608 48S572.1 -32 528 -32S448 3.9 448 48S483.9 128 528 128zM3 122.3L24.4 53.5C29.7 36.7 47.6 27.3 64.4 32.5H64.5L320 111.9V145.4L55 63L33.6 131.8C29.6 144.6 36.8 157.9 49.4 161.8C62 165.7 75.5 158.6 79.4 146L91.3 107.8L305.2000000000001 174.3L293.3000000000001 212.5C289.4000000000001 225.1 296.4000000000001 238.6 309.1000000000001 242.6C312.8000000000001 243.7 316.4000000000001 243.9 319.9000000000001 243.3V288.6L317.7000000000001 295.6C304.6000000000001 337.7 259.7000000000001 361.3 217.7000000000001 348.3H217.6000000000001L64.9 300.7C22.7 287.6 -0.9 242.8 12.3 200.6L18.7 180C1.6 164.2 -3.1 141.9 3 122.3zM74.4 270.1L227.2 317.6H227.3C252.5 325.4000000000001 279.4000000000001 311.2000000000001 287.3 286L292.3 269.9000000000001C267.6 258.1 254.5 229.8000000000001 262.8 202.9L265.2 195.3000000000001L112.4 147.8000000000001L110 155.4000000000001C101.7 182.3000000000001 74.8 198.1000000000001 47.8 193.9000000000001L42.8 210.0000000000001C34.9 235.4000000000001 49.1 262.2000000000001 74.4 270.1000000000001z" />
+    <glyph glyph-name="truck-loading"
+      unicode="&#xF4DE;"
+      horiz-adv-x="640" d=" M100.4 33.4L313.8 101.6C330.6 106.9999999999999 339.9000000000001 125 334.5 141.8L276 324.7C270.6 341.6 252.5 350.9 235.8 345.5L22.5 277.3C5.7 272 -3.7 254 1.7 237.1L60.1 54.2C65.4 37.6 83.3 28 100.4 33.4zM154.1 285.8L173.6 224.8L143.2 215L123.7 276L154.1 285.8zM93.1 266.3L122.4 174.9L213.8 204.1L184.6 295.5L245.5000000000001 315L304 132.1L90.6 63.9L32.2 246.8L93.1 266.3zM416 416H640V448H416C380.7 448 352 419.3 352 384V76.1L5.9 -32.8C1.6 -34 -0.9 -38.4 0.3 -42.6L4.5 -58C5.7 -62.3 10.1 -64.7999999999999 14.3 -63.6L367.2 48H416C416 -13.9 466.1 -64 528 -64S640 -13.9 640 48S589.9 160 528 160C477.4 160 435.2 126.1 421.3 80H384V384C384 401.6 398.4 416 416 416zM528 128C572.1 128 608 92.1 608 48S572.1 -32 528 -32S448 3.9 448 48S483.9 128 528 128z" />
+    <glyph glyph-name="truck-monster"
+      unicode="&#xF63B;"
+      horiz-adv-x="640" d=" M632 192H608V272C608 298.51 586.51 320 560 320H502.4L419.21 423.98A63.99 63.99 0 0 1 369.24 448H256C238.33 448 224 433.67 224 416V320H80C53.49 320 32 298.51 32 272V192H8C3.58 192 0 188.42 0 184V168C0 163.58 3.58 160 8 160H32V159.12C41.09 171.33 51.85 182.1 64 191.27V272C64 280.82 71.18 288 80 288H560C568.82 288 576 280.82 576 272V191.28C588.15 182.1 598.91 171.34 608 159.13V160H632C636.42 160 640 163.58 640 168V184C640 188.42 636.42 192 632 192zM256 320V416H369.24C379.01 416 388.12 411.62 394.23 403.99L461.42 320H256zM272 96H266.8C264.6 103.33 261.73 110.28 258.1500000000001 116.89L261.8200000000001 120.56C268.0700000000001 126.81 268.0700000000001 136.94 261.8200000000001 143.19L239.1900000000001 165.82C232.9400000000001 172.07 222.8100000000001 172.07 216.5600000000001 165.82L212.8900000000001 162.15A110.84999999999998 110.84999999999998 0 0 1 192 170.8V176C192 184.84 184.84 192 176 192H144C135.16 192 128 184.84 128 176V170.8C120.67 168.6 113.72 165.73 107.11 162.15L103.44 165.8200000000001C97.19 172.0700000000001 87.06 172.0700000000001 80.81 165.8200000000001L58.18 143.2C51.93 136.95 51.93 126.82 58.18 120.57L61.85 116.9A110.84999999999998 110.84999999999998 0 0 1 53.2 96.01H48C39.16 96.01 32 88.85 32 80.01V48.01C32 39.17 39.16 32.01 48 32.01H53.2C55.4 24.68 58.27 17.73 61.85 11.12L58.18 7.45C51.93 1.2 51.93 -8.93 58.18 -15.18L80.81 -37.81C87.06 -44.06 97.19 -44.06 103.44 -37.81L107.11 -34.14C113.72 -37.71 120.68 -40.59 128.01 -42.79V-47.9899999999999C128.01 -56.8299999999999 135.17 -63.9899999999999 144.01 -63.9899999999999H176.01C184.85 -63.9899999999999 192.01 -56.8299999999999 192.01 -47.9899999999999V-42.79C199.34 -40.59 206.29 -37.72 212.91 -34.14L216.58 -37.81C222.83 -44.06 232.96 -44.06 239.21 -37.81L261.84 -15.18C268.09 -8.93 268.09 1.2 261.84 7.45L258.17 11.12A110.84999999999998 110.84999999999998 0 0 1 266.82 32.01H272.0199999999999C280.8599999999999 32.01 288.0199999999999 39.17 288.0199999999999 48.01V80.01C288 88.84 280.84 96 272 96zM160 -16C115.82 -16 80 19.82 80 64S115.82 144 160 144S240 108.18 240 64S204.18 -16 160 -16zM592 96H586.8C584.5999999999999 103.33 581.7299999999999 110.28 578.15 116.89L581.8299999999999 120.56C588.0799999999999 126.81 588.0799999999999 136.94 581.8299999999999 143.19L559.1999999999999 165.82C552.9499999999999 172.07 542.8199999999999 172.07 536.5699999999999 165.82L532.9 162.15A110.84999999999998 110.84999999999998 0 0 1 512.01 170.8V176C512.01 184.84 504.85 192 496.01 192H464.01C455.17 192 448.01 184.84 448.01 176V170.8C440.68 168.6 433.73 165.73 427.12 162.15L423.45 165.8200000000001C417.2 172.0700000000001 407.07 172.0700000000001 400.82 165.8200000000001L378.19 143.1900000000001C371.94 136.9400000000001 371.94 126.8100000000001 378.19 120.5600000000001L381.86 116.8900000000001A110.84999999999998 110.84999999999998 0 0 1 373.2100000000001 96.0000000000001H368C359.1600000000001 96.0000000000001 352 88.84 352 80.0000000000001V48.0000000000001C352 39.1600000000001 359.1600000000001 32.0000000000001 368 32.0000000000001H373.2C375.4 24.6700000000001 378.27 17.7200000000001 381.85 11.1100000000001L378.18 7.4400000000001C371.93 1.1900000000001 371.93 -8.9399999999999 378.18 -15.1899999999999L400.81 -37.8199999999999C407.06 -44.0699999999999 417.19 -44.0699999999999 423.44 -37.8199999999999L427.11 -34.1499999999999C433.72 -37.7199999999999 440.68 -40.5999999999999 448.01 -42.7999999999999V-47.9999999999999C448.01 -56.8399999999999 455.17 -63.9999999999999 464.0099999999999 -63.9999999999999H496.0099999999999C504.8499999999999 -63.9999999999999 512.01 -56.8399999999999 512.01 -47.9999999999999V-42.7999999999999C519.34 -40.5999999999999 526.29 -37.7299999999999 532.91 -34.1499999999999L536.5799999999999 -37.8199999999999C542.8299999999999 -44.0699999999999 552.9599999999999 -44.0699999999999 559.2099999999999 -37.8199999999999L581.8399999999999 -15.1899999999999C588.0899999999999 -8.9399999999999 588.0899999999999 1.1900000000001 581.8399999999999 7.4400000000001L578.16 11.1100000000001C581.74 17.7200000000001 584.61 24.6700000000001 586.81 32.0000000000001H592.01C600.85 32.0000000000001 608.01 39.1600000000001 608.01 48.0000000000001V80.0000000000001C608 88.84 600.84 96.0000000000001 592 96.0000000000001zM480 -16C435.82 -16 400 19.82 400 64S435.82 144 480 144S560 108.18 560 64S524.18 -16 480 -16z" />
+    <glyph glyph-name="truck-moving"
+      unicode="&#xF4DF;"
+      horiz-adv-x="640" d=" M621.3 242.7L562.8 301.2C550.8 313.2 534.5 319.9 517.5 319.9H464V384C464 401.7 449.7 416 432 416H32C14.3 416 0 401.7 0 384V48C0 3.8 35.8 -32 80 -32C106.3 -32 129.4 -19.1 144 0.4C158.6 -19.2 181.7 -32 208 -32C252.2 -32 288 3.8 288 48C288 53.5 287.4 58.8 286.4 64H449.6C448.5 58.8 448 53.5 448 48C448 3.8 483.8 -32 528 -32S608 3.8 608 48C608 53.5 607.4 58.8 606.4 64H624C632.8 64 640 71.2 640 80V197.5C640 214.5 633.3 230.7 621.3 242.7zM517.5 288C526 288 534.1 284.7 540.1 278.6L594.7 224H464V288H517.5zM80 0C53.5 0 32 21.5 32 48S53.5 96 80 96S128 74.5 128 48S106.5 0 80 0zM208 0C181.5 0 160 21.5 160 48S181.5 96 208 96S256 74.5 256 48S234.5 0 208 0zM432 96H271.6C257 115.3 234.1 128 208 128S159 115.3 144.4 96H143.7000000000001S143.7000000000001 95.9 143.8000000000001 95.9C129.1 115.3 106.1 128 80 128C61.9 128 45.4 121.8 32 111.6V384H432V96zM528 0C501.5 0 480 21.5 480 48S501.5 96 528 96S576 74.5 576 48S554.5 0 528 0zM608 96H591.6C577 115.3 554.1 128 528 128S479 115.3 464.4 96H464V192H608V96z" />
+    <glyph glyph-name="truck-pickup"
+      unicode="&#xF63C;"
+      horiz-adv-x="640" d=" M632 96H608V224C608 250.51 586.51 272 560 272H515.2L419.21 391.98A63.99 63.99 0 0 1 369.24 416H256C238.33 416 224 401.67 224 384V272H80C53.49 272 32 250.51 32 224V96H8C3.58 96 0 92.42 0 88V72C0 67.58 3.58 64 8 64H80C80 10.98 122.98 -32 176 -32S272 10.98 272 64H368C368 10.98 410.98 -32 464 -32S560 10.98 560 64H632C636.42 64 640 67.58 640 72V88C640 92.42 636.42 96 632 96zM256 384H369.24C379.02 384 388.12 379.62 394.23 371.99L474.22 272H256V384zM176 0C140.65 0 112 28.65 112 64S140.65 128 176 128S240 99.35 240 64S211.35 0 176 0zM464 0C428.65 0 400 28.65 400 64S428.65 128 464 128S528 99.35 528 64S499.35 0 464 0zM576 96H554.12C540.9 133.2 505.74 160 464 160S387.1 133.2 373.88 96H266.12C252.9 133.2 217.74 160 176 160S99.1 133.2 85.88 96H64V224C64 232.82 71.18 240 80 240H560C568.82 240 576 232.82 576 224V96z" />
+    <glyph glyph-name="truck-plow"
+      unicode="&#xF7DE;"
+      horiz-adv-x="640" d=" M572.4 56.6C563.4 65.6 558.3 77.8 558.3 90.6V229.6C558.3 242.3 563.4 254.6 572.4 263.6L637.6 327.2000000000001C640.7 330.3 640.7 335.4000000000001 637.6 338.5L626.3000000000001 349.8C623.2 352.9 618.1 352.9 615.0000000000001 349.8L549.7000000000002 286.2000000000001C534.7000000000002 271.2000000000001 526.3000000000002 250.8 526.3000000000002 229.6V176H480V208C480 234.5 458.5 256 432 256H393.1L306.4 400.4C300.7 410 290.1 416 278.9 416H152C138.8 416 128 405.2 128 392V256H48C21.5 256 0 234.5 0 208V112C0 91 13.5 73.4 32.3 66.8C32.3 65.8 32 64.9 32 64C32 11 75 -32 128 -32S224 11 224 64H288C288 11 331 -32 384 -32S480 11 480 64V144H526.3V90.5C526.3 69.3 534.6999999999999 48.9 549.6999999999999 33.9L614.9 -29.7C618 -32.8000000000001 623.1 -32.8000000000001 626.1999999999999 -29.7L637.4999999999999 -18.4C640.5999999999999 -15.3 640.5999999999999 -10.2 637.4999999999999 -7.1L572.3999999999999 56.6zM160 384H278.9L355.7 256H160V384zM128 0C92.7 0 64 28.7 64 64S92.7 128 128 128S192 99.3 192 64S163.3 0 128 0zM293.9 96H218.1C204.9 133.2 169.7 160 128 160C87.4 160 52.9 134.8 38.9 99.2C34.8 102.1 32 106.6 32 112V208C32 216.8 39.2 224 48 224H432C440.8 224 448 216.8 448 208V135.1C431 150.4 408.7 160 384 160C342.3 160 307.1 133.2 293.9 96zM384 0C348.7 0 320 28.7 320 64S348.7 128 384 128S448 99.3 448 64S419.3 0 384 0z" />
+    <glyph glyph-name="truck-ramp"
+      unicode="&#xF4E0;"
+      horiz-adv-x="640" d=" M416 416H640V448H416C380.7 448 352 419.3 352 384V76.1L5.9 -32.8C1.6 -34 -0.9 -38.4 0.3 -42.6L4.5 -58C5.7 -62.3 10.1 -64.7999999999999 14.3 -63.6L367.2 48H416C416 -13.9 466.1 -64 528 -64S640 -13.9 640 48S589.9 160 528 160C477.3 160 435 126.1 421.2 80H384V384C384 401.6 398.4 416 416 416zM528 128C572.1 128 608 92.1 608 48S572.1 -32 528 -32S448 3.9 448 48S483.9 128 528 128z" />
+    <glyph glyph-name="truck"
+      unicode="&#xF0D1;"
+      horiz-adv-x="640" d=" M632 64H608V172.1C608 188.9 601.2 205.4 589.2 217.3L505.3000000000001 301.2000000000001C493.5000000000001 313.2000000000001 477.0000000000001 320 460.1000000000001 320H416V369.4C416 395.1 393.8 416 366.6 416H49.4C22.2 416 0 395.1 0 369.4V78.6C0 52.9 22.2 32 49.4 32H65.6C64.5 26.8 64 21.5 64 16C64 -28.2 99.8 -64 144 -64S224 -28.2 224 16C224 21.5 223.4 26.8 222.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H632C636.4 32 640 35.6 640 40V56C640 60.4 636.4 64 632 64zM460.1 288C468.5 288 476.8 284.6 482.7 278.6L566.6 194.7C567.4 193.9 567.7 192.8 568.4 191.9H416V287.9H460.1zM144 -32C117.5 -32 96 -10.5 96 16S117.5 64 144 64S192 42.5 192 16S170.5 -32 144 -32zM207.6 64C193 83.3 170 96 144 96S95 83.3 80.4 64H49.4C39.8 64 32 70.5 32 78.6V369.4C32 377.5 39.8 384 49.4 384H366.6C376.2 384 384 377.5 384 369.4V64H207.6zM496 -32C469.5 -32 448 -10.5 448 16S469.5 64 496 64S544 42.5 544 16S522.5 -32 496 -32zM496 96C469.9 96 447 83.3 432.4 64H416V160H576V64H559.6C545 83.3 522.1 96 496 96z" />
+    <glyph glyph-name="tshirt"
+      unicode="&#xF553;"
+      horiz-adv-x="608" d=" M606.4 336.4C603.8 344.2 598.4 350.5 591.1999999999999 354.2L403.8 448L395.9000000000001 436.9C380.2000000000001 414.9 344.1 400.7 304 400.7S227.8 414.9 212.1 436.9L204.2 448L16.8 354.2C9.5 350.5 4.1 344.2 1.6 336.4C-1 328.6 -0.4 320.3 3.3 313L54.8 209C58.4 201.6 64.6 196.1 72.3 193.6C80 190.9 88.3 191.6 95.5 195.2L144.1 219.2V-18.6C144.1 -43.6 164.2 -63.9 188.9 -63.9H419.3000000000001C444.0000000000001 -63.9 464.1000000000001 -43.6 464.1000000000001 -18.6V219.1L512.6000000000001 195.1C519.8000000000002 191.4 528.1000000000001 190.8 535.9000000000001 193.5C543.6000000000001 196.1 549.8000000000001 201.6 553.4000000000001 208.9L604.9 313C608.4 320.3 609 328.6 606.4 336.4zM526.6999999999999 224.1L432 270.9V-18.8C432 -25.9 426.3 -31.6999999999999 419.2 -31.6999999999999H188.8C181.7 -31.6999999999999 176 -25.8999999999999 176 -18.8V270.9L83.4 223.3L31.1 325.2000000000001L195.2 407.4000000000001C219.2 383.1 259.4 368.4000000000001 304.1 368.4000000000001S389 383.1 413 407.4L575.5 326L526.7 224.1z" />
+    <glyph glyph-name="tty"
+      unicode="&#xF1E4;"
+      horiz-adv-x="512" d=" M167.06 258.865C180.706 264.336 189.208 278.401 187.755 293.055L183.447 336.238C230.656 350.692 281.342 350.692 328.552 336.237L324.2440000000001 293.056C322.781 278.394 331.2920000000001 264.339 344.939 258.866L425.947 226.387C440.871 220.403 457.888 225.977 466.407 239.639L506.915 304.598C515.154 317.8110000000001 513.228 334.73 502.239 345.7430000000001C366.072 482.2280000000001 145.632 481.939 9.759 345.7430000000001C-1.237 334.721 -3.149 317.8 5.084 304.5970000000001L45.591 239.6390000000001C54.111 225.9770000000001 71.127 220.4030000000001 86.051 226.3870000000001L167.06 258.865zM72.722 256.6380000000001L32.216 321.596A1.186 1.186 0 0 0 32.383 323.069C156.046 447.019 356.073 446.9 479.617 323.069C480.032 322.653 480.052 322.026 479.785 321.597L439.278 256.639A1.186 1.186 0 0 0 437.83 256.164L356.824 288.6430000000001A1.2 1.2 0 0 0 356.082 289.867L362.902 358.2290000000001C283.8709999999999 386.8520000000001 225.1319999999999 385.7680000000001 149.0989999999999 358.2290000000001L155.9189999999999 289.866A1.1890000000000003 1.1890000000000003 0 0 0 155.1789999999999 288.6430000000001L74.1699999999999 256.163A1.186 1.186 0 0 0 72.7219999999999 256.6380000000001zM136 52V76C136 82.627 130.627 88 124 88H100C93.373 88 88 82.627 88 76V52C88 45.373 93.373 40 100 40H124C130.627 40 136 45.373 136 52zM232 52V76C232 82.627 226.627 88 220 88H196C189.373 88 184 82.627 184 76V52C184 45.373 189.373 40 196 40H220C226.627 40 232 45.373 232 52zM328 52V76C328 82.627 322.627 88 316 88H292C285.373 88 280 82.627 280 76V52C280 45.373 285.373 40 292 40H316C322.627 40 328 45.373 328 52zM424 52V76C424 82.627 418.627 88 412 88H388C381.373 88 376 82.627 376 76V52C376 45.373 381.373 40 388 40H412C418.627 40 424 45.373 424 52zM88 -44V-20C88 -13.373 82.627 -8 76 -8H52C45.373 -8 40 -13.373 40 -20V-44C40 -50.627 45.373 -56 52 -56H76C82.627 -56 88 -50.627 88 -44zM472 -44V-20C472 -13.373 466.627 -8 460 -8H436C429.373 -8 424 -13.373 424 -20V-44C424 -50.627 429.373 -56 436 -56H460C466.627 -56 472 -50.627 472 -44zM88 148V172C88 178.627 82.627 184 76 184H52C45.373 184 40 178.627 40 172V148C40 141.373 45.373 136 52 136H76C82.627 136 88 141.373 88 148zM184 148V172C184 178.627 178.627 184 172 184H148C141.373 184 136 178.627 136 172V148C136 141.373 141.373 136 148 136H172C178.627 136 184 141.373 184 148zM280 148V172C280 178.627 274.627 184 268 184H244C237.373 184 232 178.627 232 172V148C232 141.373 237.373 136 244 136H268C274.627 136 280 141.373 280 148zM376 148V172C376 178.627 370.627 184 364 184H340C333.373 184 328 178.627 328 172V148C328 141.373 333.373 136 340 136H364C370.627 136 376 141.373 376 148zM472 148V172C472 178.627 466.627 184 460 184H436C429.373 184 424 178.627 424 172V148C424 141.373 429.373 136 436 136H460C466.627 136 472 141.373 472 148zM376 -36V-28C376 -21.373 370.627 -16 364 -16H148C141.373 -16 136 -21.373 136 -28V-36C136 -42.627 141.373 -48 148 -48H364C370.627 -48 376 -42.627 376 -36z" />
+    <glyph glyph-name="turkey"
+      unicode="&#xF725;"
+      horiz-adv-x="640" d=" M579.76 372.45C585.28 405.5900000000001 560.05 443.35 520.88 447.5900000000001C474.7 452.77 437.59 408.67 449.71 363.75C452.61 352.69 450.21 342.69 443.25 336.99C431.33 327.2 428.26 324.26 413.75 315.33C375.86 337.82 333.5 351.99 288.55 351.99C129.74 351.98 0 178.86 0 63.99S129.74 -64 288.55 -64S576.1 -50.88 576.1 63.99C576.1 116.73 548.74 181.62 504.01 236.53C508.05 240.17 505.56 238.76 514.01 245.7C524.77 254.59 538.41 248.32 542.31 246.2A64.806 64.806 0 0 1 566.5799999999999 238.58C602.5799999999999 234.53 635.7399999999999 260.99 639.6199999999999 298.37C643.31 333.71 618.9599999999999 368.09 579.7599999999999 372.45zM544.16 63.99C544.16 -6.89 477.27 -32.01 288.56 -32.01S31.9599999999999 -6.89 31.9599999999999 63.99C31.9599999999999 162.74 149.94 319.98 288.56 319.98C319.74 319.98 349.7 311.7200000000001 377.6 298.27C354.5 290.36 338.77 288.79 318.73 288.12C261.88 286.18 212.05 248.08 197.54 195.42C185.56 151.88 196.23 106.22 226.12 73.29C250.27 46.68 284.12 32.04 319.7199999999999 32.04C397.5899999999999 32.04 432.9899999999999 95.53 442.3999999999999 134.05C449.4899999999999 163.05 463.3499999999999 189.88 481.7799999999999 212.93C520.3899999999999 164.51 544.16 108.38 544.16 63.99zM557.67 274.26C480.6 316.36 419.43 174.5200000000001 411.02 140.11C401.44 101.03 372.39 71.77 337.04 65.57C303.84 59.66 271.95 70.35 249.77 94.8C227.27 119.5800000000001 219.29 154 228.37 186.92C232.36 201.43 251.8 253.88 327.28 256.4000000000001C374.52 258.0100000000001 500.4499999999999 296.5200000000001 480.5699999999999 371.9600000000001C477.1799999999999 384.8900000000001 481.36 399.3800000000001 492.5199999999999 408.4000000000001C515.6399999999999 427.1300000000001 551.43 409.0300000000001 548.1199999999999 376.9300000000001C547.5899999999999 371.7700000000001 545.7799999999999 366.73 542.7799999999999 361.92A16.05 16.05 0 0 1 543.9699999999999 343.36C548.31 338.0600000000001 555.55 336.13 561.91 338.4700000000001C567.06 340.3900000000001 572.14 341.0600000000001 577.1999999999999 340.55C596.14 338.5 609.8699999999999 321.0700000000001 607.8699999999999 301.6900000000001C605.1999999999999 276.2800000000001 578.2899999999998 262.9300000000001 557.6699999999998 274.26z" />
+    <glyph glyph-name="turtle"
+      unicode="&#xF726;"
+      horiz-adv-x="576" d=" M464 320C455.16 320 448 312.8400000000001 448 304S455.16 288 464 288S480 295.16 480 304S472.84 320 464 320zM545.59 339.77C510.52 364.64 487.21 384.11 458.64 384C387.97 383.7200000000001 384 313.83 384 311V239.81C383.98 232.92 381.93 226.41 379.01 220.22C306.4700000000001 453.44 87.67 425.98 33.15 206.72C31.87 201.56 31.87 196.48 32.63 191.61C14.53 190.53 0 175.79 0 157.41C0 142.5 9.5 129.3 23.66 124.6L71.35 108.69L36.31 48C30.53 37.98 30.53 26.02 36.31 16S52.47 0 64.03 0H100.97C112.35 0 122.97 6.12 128.69 16L162.57 74.66C183.78 68.25 204.75 64 240 64S296.2200000000001 68.25 317.44 74.66L351.32 15.97C357.04 6.1300000000001 367.66 0 379.04 0H415.98C427.54 0 437.92 5.98 443.7 16C449.4799999999999 26.02 449.4799999999999 37.98 443.7 48L405.2299999999999 114.64C423.0399999999999 124.22 438.1099999999999 136.92 450.1399999999999 152.55C462.8899999999999 169.13 471.6099999999999 187.74 476.1699999999998 208H503.3599999999998C543.4199999999998 208 576.0199999999999 240.59 576.0199999999999 280.66C575.9999999999999 304.05 564.6199999999999 326.14 545.5899999999999 339.7699999999999zM351.8 198.99C352.69 195.4 350.2800000000001 192 347.76 192H68.25C65.72 192 63.32 195.42 64.21 199C114.63 401.79 301.2 402.48 351.8 198.99zM503.34 240H448.59L446.84 226C444.31 205.97 436.87 187.83 424.75 172.06C404.87 146.19 381.68 138.61 359.5 129.81L415.9700000000001 32H379L332.25 113.05C303.17 103.51 284.62 96 240 96C194.14 96 175.36 104 147.75 113.05L100.97 32H64L118.66 126.63L32 160H335.06C364.28 160 386.7 175.08 399.44 191.59C410.22 205.64 415.9700000000001 222.29 416 239.78V311C416 337.99 438.44 351.55 458.26 352C478.19 352.45 495.01 336.56 526.97 313.74C537.63 306.12 544 293.74 544 280.6600000000001C544 258.23 525.75 240.0000000000001 503.34 240.0000000000001z" />
+    <glyph glyph-name="tv-retro"
+      unicode="&#xF401;"
+      horiz-adv-x="512" d=" M416 205V213C416 219.6 421.4 225 428 225H436C442.6 225 448 219.6 448 213V205C448 198.4 442.6 193 436 193H428C421.4 193 416 198.4 416 205zM512 305V17C512 -9.5 490.5 -31 464 -31H448V-64H432L421 -31H91L80 -64H64V-31H48C21.5 -31 0 -9.5 0 17V305C0 331.5 21.5 353 48 353H208.1L133.3 420.1C126.7 426 126.1 436.1 132 442.7C137.9 449.3 148 449.9 154.6 444L256 353H256.8L357.3 443.9C363.9000000000001 449.8 374 449.3 379.9000000000001 442.7C385.8 436.1 385.3 426 378.7000000000001 420.1L304.5 353H464C490.5 353 512 331.5 512 305zM480 305C480 313.8 472.8 321 464 321H48C39.2 321 32 313.8 32 305V17C32 8.2 39.2 1 48 1H464C472.8 1 480 8.2 480 17V305zM224 256C155.2 256 117.8 253.7 98.7 251.7C97.4 237.3 96 210.2 96 161C96 110.5 97.4 83 98.7 68.2C117.9 66.3 155.2 64 224 64S330.1 66.3 349.3 68.2C350.6 82.9 352 110.5 352 161C352 210.2 350.6 237.3 349.3 251.7C330.2 253.7 292.8 256 224 256M224 288C352 288 376 280 376 280S384 280 384 161C384 40 376 40 376 40S352 32 224 32S72 40 72 40S64 40 64 161C64 280 72 280 72 280S96 288 224 288zM428 129H436C442.6 129 448 134.4 448 141V149C448 155.6 442.6 161 436 161H428C421.4 161 416 155.6 416 149V141C416 134.4 421.4 129 428 129z" />
+    <glyph glyph-name="tv"
+      unicode="&#xF26C;"
+      horiz-adv-x="640" d=" M592 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H304V-32H144C135.2 -32 128 -39.2 128 -48S135.2 -64 144 -64H496C504.8 -64 512 -56.8 512 -48S504.8 -32 496 -32H336V32H592C618.5 32 640 53.5 640 80V400C640 426.5 618.5 448 592 448zM608 80C608 71.2 600.8 64 592 64H48C39.2 64 32 71.2 32 80V400C32 408.8 39.2 416 48 416H592C600.8 416 608 408.8 608 400V80z" />
+    <glyph glyph-name="umbrella-beach"
+      unicode="&#xF5CA;"
+      horiz-adv-x="640" d=" M443.48 429.92C409.77 442.19 375.31 448 341.4100000000001 448C250.9400000000001 448 164.57 406.55 107.97 335.67C101.27 327.28 105.3 314.63 115.39 310.9600000000001L351.54 225.01L257.99 -32H8C3.58 -32 0 -35.58 0 -40V-56C0 -60.42 3.58 -64 8 -64H568C572.42 -64 576 -60.42 576 -56V-40C576 -35.58 572.42 -32 568 -32H292.03L381.59 214.07L618.3399999999999 127.9C620.17 127.23 622.04 126.92 623.8699999999999 126.92C632.1399999999999 126.92 639.6899999999999 133.27 639.9099999999999 142.06C642.9399999999998 266.7199999999999 567.1399999999999 384.91 443.4799999999999 429.92zM148.17 333.08C198.11 385.36 268.77 416 341.42 416C349.23 416 357.0200000000001 415.65 364.7800000000001 414.96C327.9100000000001 391.8 291.0200000000001 348.3400000000001 261.7200000000001 291.75L148.17 333.08zM463.38 218.35L292.26 280.63C332.69 357.07 384.89 401.9 420.4 401.91C424.75 401.91 428.72 401.23 432.53 399.85C452.09 392.73 466.5 364.69 471.09 324.85C474.75 293.02 471.6199999999999 256.4 463.38 218.35zM494.18 207.14C508.01 268.71 507.85 325.42 494.88 366.78C560.21 320.7 602.46 247.33 607.49 165.89L494.18 207.14z" />
+    <glyph glyph-name="umbrella"
+      unicode="&#xF0E9;"
+      horiz-adv-x="576" d=" M575.2 194.2C545.9 317.2 430.5 393.5 304 399.6V432C304 440.8 296.8 448 288 448S272 440.8 272 432V399.6C146 393.6 30.9 318.1 0.8 194.3C-5.2 170.4 23.6 150.2 44.9 169.2C94.4 215.3 134.8 196.9 170.3 141.5C181.7 123.7 205.1 124.6 215.9 141.5C231.1 165 247.1 186.5 272.1 193V-0.1C272.1 -17.8 257.8 -32.1 240.1 -32.1C226.5000000000001 -32.1 214.4 -23.5 209.9 -10.8C206.9 -2.5 197.8000000000001 1.9 189.5 -1C181.2 -3.9 176.8000000000001 -13.1 179.8000000000001 -21.4C188.8000000000001 -46.9 213.1 -64.1 240.2000000000001 -64.1C275.5000000000001 -64.1 304.2000000000001 -35.4 304.2000000000001 -0.1V192.8C334.3000000000001 184.5 348.8000000000001 159.5 360.4000000000001 141.6C371.2000000000001 124.6 394.7000000000001 123.9 406.0000000000001 141.6C442.2000000000001 197.5 482.6 214.6 531.4000000000001 169.3C552.3000000000001 150.4 581.1000000000001 170.3 575.2 194.2zM383.3000000000001 165.5C359 205.2 325.4 227 288 227C243.5 227 216.4 200 193.3 165.5C151.7 233.3 85.8 243 37.2 204.8C72.1 309.3 178.8 368 288 368C397.3 368 505 308.7 539.2 204.3C480.9 248.2 425.1 226.2 383.3000000000001 165.5z" />
+    <glyph glyph-name="underline"
+      unicode="&#xF0CD;"
+      horiz-adv-x="448" d=" M0 -52V-44C0 -37.373 5.373 -32 12 -32H436C442.627 -32 448 -37.373 448 -44V-52C448 -58.627 442.627 -64 436 -64H12C5.373 -64 0 -58.627 0 -52zM291.142 436V428C291.142 421.373 296.515 416 303.142 416H345.862V189.491C345.862 104.04 299.411 60.765 223.717 60.765C149.395 60.765 102.148 101.054 102.148 188.337V416H144.869C151.496 416 156.869 421.373 156.869 428V436C156.869 442.627 151.496 448 144.869 448H26.659C20.032 448 14.659 442.627 14.659 436V428C14.659 421.373 20.032 416 26.659 416H69.38V187.182C69.38 80.371 132.971 29.088 224.293 29.088C313.5800000000001 29.088 378.63 81.901 378.63 187.182V416H421.351C427.978 416 433.351 421.373 433.351 428V436C433.351 442.627 427.978 448 421.351 448H303.142C296.514 448 291.142 442.627 291.142 436z" />
+    <glyph glyph-name="undo-alt"
+      unicode="&#xF2EA;"
+      horiz-adv-x="512" d=" M54.627 438.613L104.722 388.512C146.632 420.823 199.156 440.04 256.178 440C392.817 439.904 504.251 328.173 504 191.533C503.748 54.781 392.811 -56 256 -56C192.074 -56 133.798 -31.813 89.822 7.908C84.709 12.526 84.468 20.469 89.34 25.341L96.419 32.42C100.918 36.919 108.163 37.142 112.891 32.884C151.849 -2.203 202.318 -22 256 -22C374.022 -22 470 73.585 470 192C470 310.026 374.411 406 256 406C209.486 406 165.329 391.128 128.979 364.251L182.596 310.627C202.695 290.5270000000001 188.451 256 159.969 256H32C14.327 256 0 270.327 0 288V415.985C0 444.46 34.564 458.676 54.627 438.613zM32 416V288H160L32 416" />
+    <glyph glyph-name="undo"
+      unicode="&#xF0E2;"
+      horiz-adv-x="512" d=" M20 440H30C36.627 440 42 434.627 42 428V317.375C85.196 390.953 165.239 440.2850000000001 256.793 439.999C393.18 439.572 504.213 327.991 504 191.604C503.786 54.819 392.834 -56 256 -56C192.074 -56 133.798 -31.813 89.822 7.908C84.709 12.526 84.468 20.469 89.34 25.341L96.409 32.41C100.912 36.913 108.158 37.124 112.891 32.864C150.782 -1.238 200.935 -22 256 -22C373.7440000000001 -22 470 73.331 470 192C470 309.7440000000001 374.669 406 256 406C173.138 406 101.263 358.923 65.711 290H180C186.627 290 192 284.627 192 278V268C192 261.373 186.627 256 180 256H20C13.373 256 8 261.373 8 268V428C8 434.627 13.373 440 20 440z" />
+    <glyph glyph-name="unicorn"
+      unicode="&#xF727;"
+      horiz-adv-x="640" d=" M448 368C439.1600000000001 368 432 360.8400000000001 432 352S439.1600000000001 336 448 336S464 343.16 464 352S456.84 368 448 368zM631.98 384H535.05L534.81 384.3C540.1999999999999 393.75 543.1899999999999 404.62 543.1899999999999 416C543.1899999999999 433.67 528.8599999999999 448 511.1899999999999 448H400C329.42 448 272 390.58 272 320H163.36C127.38 320 96.09 300.58 78.66 271.87C35.11 271.13 0 235.72 0 192V136C0 131.58 3.58 128 8 128H24C28.42 128 32 131.58 32 136V192C32 213.5 46.23 231.48 65.71 237.59C64.75 232.05 64 226.44 64 220.63C64 196.43 72.9 173.3 88.53 155.39L66.56 81.12C63.44 70.35 63.18 59.09 65.76 48.38L86.89 -39.48C90.34 -53.86 103.21 -64 118 -64H175.53C196.48 -64 211.65 -44.24 206.55 -24.14L184.87 61.43L204.16 115.16L256 103.64V-32C256 -49.67 270.33 -64 288 -64H352C369.67 -64 384 -49.67 384 -32V124.2C404.5 145.7 416 173.95 416 203.79V254.31L430.55 232.49C449.6600000000001 203.82 480.53 211.82 486 213.69L511.52 222.4C530.96 229.03 544.02 247.29 544.01 267.8400000000001L543.98 332.67L636.44 369.3400000000001C643.0100000000001 373.73 639.9000000000001 384 631.98 384zM501.17 252.69L475.65 243.98C466.3200000000001 240.79 459.51 246.74 457.17 250.25L432 288L384 304V203.79C384 177.12 371.35 153.62 352 138.1900000000001V-32H288V129.31L183.57 152.52L151.45 63.05L175.53 -32H118L96.87 55.86A31.697999999999997 31.697999999999997 0 0 0 97.24 72.04L124.87 165.4500000000001C107.45 177.63 96 197.76 96 220.63C96 257.8400000000001 126.16 288 163.37 288H304V320C304 373.02 346.98 416 400 416H511.19C511.19 402.71 503.09 391.3400000000001 491.56 386.5L511.95 361.7200000000001L512 267.8400000000001A16 16 0 0 0 501.17 252.69z" />
+    <glyph glyph-name="union"
+      unicode="&#xF6A2;"
+      horiz-adv-x="320" d=" M170.65 0.35C255.69 5.85 320 80.26 320 165.48V376C320 380.42 316.42 384 312 384H296C291.58 384 288 380.42 288 376V164.52C288 96.41 236.72 36.85 168.76 32.3C94.24 27.3 32 86.52 32 160V376C32 380.42 28.42 384 24 384H8C3.58 384 0 380.42 0 376V160C0 68.11 77.46 -5.69 170.65 0.35z" />
+    <glyph glyph-name="universal-access"
+      unicode="&#xF29A;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -24C137.337 -24 40 72.055 40 192C40 310.663 136.055 408 256 408C374.663 408 472 311.945 472 192C472 73.337 375.945 -24 256 -24zM395.701 275.677C397.731 267.076 392.4050000000001 258.4590000000001 383.805 256.428C352.799 249.1070000000001 323.849 242.653 295.116 239.314C295.651 124.462 308.283 99.326 322.371 63.278C326.391 52.989 321.308 41.39 311.019 37.372C300.723 33.35 289.129 38.441 285.113 48.724C275.794 72.565 266.562 93.289 260.842 136.001H251.157C245.429 93.228 236.171 72.486 226.887 48.725C222.864 38.426 211.254 33.356 200.981 37.372C190.692 41.391 185.61 52.989 189.628 63.278C203.731 99.361 216.348 124.513 216.883 239.314C188.149 242.653 159.2 249.107 128.194 256.428C119.594 258.459 114.268 267.076 116.299 275.677C118.329 284.277 126.946 289.603 135.548 287.573C240.77 262.728 271.028 262.68 376.452 287.573C385.051 289.595 393.67 284.276 395.701 275.677zM217.806 318.194C217.806 339.288 234.906 356.387 256 356.387S294.194 339.2870000000001 294.194 318.194S277.094 280 256 280S217.806 297.1 217.806 318.194z" />
+    <glyph glyph-name="university"
+      unicode="&#xF19C;"
+      horiz-adv-x="512" d=" M496 0H480V40C480 53.255 469.255 64 456 64H416V240H384V64H320V240H288V64H224V240H192V64H128V240H96V64H56C42.745 64 32 53.255 32 40V0H16C7.163 0 0 -7.163 0 -16V-24A8 8 0 0 1 8 -32H504A8 8 0 0 1 512 -24V-16C512 -7.163 504.837 0 496 0zM64 32H448V0H64V32zM504.267 312L271.179 413.537A48.004000000000005 48.004000000000005 0 0 1 240.821 413.537L7.733 312A11.999000000000002 11.999000000000002 0 0 1 0 300.784V292C0 285.373 5.373 280 12 280H32V268C32 261.373 37.373 256 44 256H468C474.627 256 480 261.373 480 268V280H500C506.627 280 512 285.373 512 292V300.784C512 305.766 508.923 310.229 504.267 312zM448 288H64V301.606L251.943 383.477A16.004 16.004 0 0 0 260.057 383.477L448 301.606V288z" />
+    <glyph glyph-name="unlink"
+      unicode="&#xF127;"
+      horiz-adv-x="512" d=" M207.889 310.765C203.203 315.451 203.203 323.049 207.889 327.736L290.048 409.895C340.858 460.708 423.094 460.698 473.896 409.895C524.708 359.085 524.698 276.847 473.895 226.048L391.7360000000001 143.889C387.0500000000001 139.203 379.4520000000001 139.203 374.7650000000001 143.889L366.2800000000001 152.374C361.5940000000001 157.06 361.5940000000001 164.658 366.2800000000001 169.345L448.439 251.504C485.178 288.245 485.174 347.704 448.439 384.4400000000001C411.6980000000001 421.1810000000001 352.24 421.1760000000001 315.502 384.4410000000001L233.343 302.2820000000001C228.657 297.596 221.059 297.596 216.372 302.2820000000001L207.889 310.765zM196.498 -0.529C159.848 -37.179 100.212 -37.18 63.561 -0.528C26.825 36.208 26.822 95.666 63.561 132.408L145.751 214.598C150.437 219.284 150.437 226.882 145.751 231.569L137.266 240.0540000000001C132.58 244.7400000000001 124.982 244.7400000000001 120.295 240.0540000000001L38.105 157.865C-12.697 107.065 -12.708 24.827 38.105 -25.983C88.791 -76.671 171.267 -76.67 221.952 -25.983L304.1420000000001 56.207C308.8280000000001 60.893 308.8280000000001 68.491 304.1420000000001 73.178L295.6580000000001 81.662C290.9720000000001 86.348 283.3740000000001 86.348 278.6870000000001 81.662L196.4980000000001 -0.529zM11.999 444.485L3.514 436C-1.172 431.314 -1.172 423.716 3.514 419.029L483.03 -60.485C487.716 -65.171 495.314 -65.171 500.001 -60.485L508.486 -52C513.172 -47.314 513.172 -39.716 508.486 -35.029L28.97 444.485C24.284 449.1720000000001 16.686 449.1720000000001 11.999 444.485z" />
+    <glyph glyph-name="unlock-alt"
+      unicode="&#xF13E;"
+      horiz-adv-x="384" d=" M336 192H96V288C96 358.6 121.4 416 192 416S288 358.6 288 288V268C288 261.4 293.4 256 300 256H308C314.6 256 320 261.4 320 268V286.5C320 374.9 280.9 447.7 192.5 448C104 448.3 64 376.4 64 288V192H48C21.5 192 0 170.5 0 144V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V144C384 170.5 362.5 192 336 192zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V144C32 152.8 39.2 160 48 160H336C344.8 160 352 152.8 352 144V-16zM192 16C183.2 16 176 23.2 176 32V96C176 104.8 183.2 112 192 112S208 104.8 208 96V32C208 23.2 200.8 16 192 16z" />
+    <glyph glyph-name="unlock"
+      unicode="&#xF09C;"
+      horiz-adv-x="384" d=" M336 192H96V288C96 358.6 121.4 416 192 416S288 358.6 288 288V268C288 261.4 293.4 256 300 256H308C314.6 256 320 261.4 320 268V286.5C320 374.9 280.9 447.7 192.5 448C104 448.3 64 376.4 64 288V192H48C21.5 192 0 170.5 0 144V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V144C384 170.5 362.5 192 336 192zM352 -16C352 -24.8 344.8 -32 336 -32H48C39.2 -32 32 -24.8 32 -16V144C32 152.8 39.2 160 48 160H336C344.8 160 352 152.8 352 144V-16z" />
+    <glyph glyph-name="upload"
+      unicode="&#xF093;"
+      horiz-adv-x="512" d=" M452 16C452 5 443 -4 432 -4S412 5 412 16S421 36 432 36S452 27 452 16zM368 36C357 36 348 27 348 16S357 -4 368 -4S388 5 388 16S379 36 368 36zM512 84V-20C512 -44.3 492.3 -64 468 -64H44C19.7 -64 0 -44.3 0 -20V84C0 108.3 19.7 128 44 128H168V227.3H115.3C79.7 227.3 61.9 270.4 87 295.6L227.7 436.3C243.3 451.9 268.6 451.9 284.3 436.3L425 295.6C450.2 270.4 432.3 227.3 396.7 227.3H344V128H468C492.3 128 512 108.3 512 84zM200 259.3V72C200 67.6 203.6 64 208 64H304C308.4 64 312 67.6 312 72V259.3H396.7C403.8 259.3 407.4 267.9 402.4 273L261.7 413.7C258.6 416.8 253.5 416.8 250.4 413.7L109.7 273C104.7 268 108.2 259.3 115.4 259.3H200zM480 84C480 90.6 474.6 96 468 96H344V72C344 49.9 326.1 32 304 32H208C185.9 32 168 49.9 168 72V96H44C37.4 96 32 90.6 32 84V-20C32 -26.6 37.4 -32 44 -32H468C474.6 -32 480 -26.6 480 -20V84z" />
+    <glyph glyph-name="usd-circle"
+      unicode="&#xF2E8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -24C128.9 -24 32 72.9 32 192S128.9 408 248 408S464 311.1 464 192S367.1 -24 248 -24zM288.3 197.3L216.3 217.5C204.2 220.9 195.7 231.9 195.7 244.2C195.7 259.5 208.5 272 224.2 272H269.2000000000001C280.4000000000001 272 291.1 268.4 299.8000000000001 261.9C303.0000000000001 259.5 307.4000000000001 259.9 310.2000000000001 262.7000000000001L321.5000000000001 274.2000000000001C324.9000000000001 277.6 324.5000000000001 283.2000000000001 320.7000000000001 286.2000000000001C306.1 297.8 288.1 304.1 269.1 304.1H264V344.1C264 348.5 260.4 352.1 256 352.1H240C235.6 352.1 232 348.5 232 344.1V304.1H224.2C190.9 304.1 163.7 277.3 163.7 244.3C163.7 217.7 181.8 194.1 207.6 186.8L279.6 166.6C291.7000000000001 163.2000000000001 300.2000000000001 152.2000000000001 300.2000000000001 139.9C300.2000000000001 124.6 287.4000000000001 112.1 271.7000000000001 112.1H226.7000000000001C215.5000000000001 112.1 204.8000000000001 115.7000000000001 196.1000000000001 122.2000000000001C192.9000000000001 124.6 188.5000000000001 124.2000000000001 185.7000000000001 121.4L174.4 109.9C171 106.5000000000001 171.4 100.9 175.2000000000001 97.9C189.8000000000001 86.3 207.8000000000001 80.0000000000001 226.8000000000001 80.0000000000001H232.0000000000001V40.0000000000001C232.0000000000001 35.6000000000001 235.6 32.0000000000001 240.0000000000001 32.0000000000001H256C260.4 32.0000000000001 264 35.6000000000001 264 40.0000000000001V80.0000000000001H271.8C305.1 80.0000000000001 332.3 106.8000000000001 332.3 139.8000000000001C332.2 166.4000000000001 314.2 190.0000000000001 288.3 197.3000000000001z" />
+    <glyph glyph-name="usd-square"
+      unicode="&#xF2E9;"
+      horiz-adv-x="448" d=" M264.3 197.3L192.3 217.5C180.2 220.9 171.7 231.9 171.7 244.2C171.7 259.5 184.5 272 200.2 272H245.2C256.4000000000001 272 267.1 268.4 275.8 261.9C279 259.5 283.4000000000001 259.9 286.2 262.7000000000001L297.5 274.2000000000001C300.9 277.6 300.5 283.2000000000001 296.7 286.2000000000001C282.1 297.8 264.1 304.1 245.1 304.1H240V344.1C240 348.5 236.4 352.1 232 352.1H216C211.6 352.1 208 348.5 208 344.1V304.1H200.2C166.9 304.1 139.7 277.3 139.7 244.3C139.7 217.7 157.8 194.1 183.6 186.8L255.6 166.6C267.7 163.2000000000001 276.2 152.2000000000001 276.2 139.9C276.2 124.6 263.4 112.1 247.7 112.1H202.7C191.5 112.1 180.8 115.7000000000001 172.1 122.2000000000001C168.9 124.6 164.5 124.2000000000001 161.7 121.4L150.4 109.9C147 106.5000000000001 147.4 100.9 151.2 97.9C165.8 86.3 183.8 80.0000000000001 202.8 80.0000000000001H208V40.0000000000001C208 35.6000000000001 211.6 32.0000000000001 216 32.0000000000001H232C236.4 32.0000000000001 240 35.6000000000001 240 40.0000000000001V80.0000000000001H247.8C281.1 80.0000000000001 308.3 106.8000000000001 308.3 139.8000000000001C308.2 166.4000000000001 290.2 190.0000000000001 264.3 197.3000000000001zM400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM416 16C416 7.2 408.8 0 400 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H400C408.8 384 416 376.8 416 368V16z" />
+    <glyph glyph-name="user-alt-slash"
+      unicode="&#xF4FA;"
+      horiz-adv-x="640" d=" M637 -37.2L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L617 -62.3C620.4 -65.1 625.5 -64.5 628.2 -61.1L638.2 -48.6C641 -45 640.4000000000001 -40 637 -37.2zM320 416C381.8 416 432 365.8 432 304C432 269.2 415.7 238.4 390.7 217.8L416.3 197.6C445.4 224 464 261.7 464 304C464 383.5 399.5 448 320 448C265.4 448 218.6 417.3 194.1 372.6L219.5 352.6C237.7 390 275.7 416 320 416zM96 -32V0C96 52.9 139.1 96 192 96H228.8C251.2 96 269.1 80 320 80C331.7 80 343.3 81.1 354.8 83.1L317.9000000000001 112.2000000000001C271.7000000000001 112.8000000000001 258.6 128.0000000000001 228.7000000000001 128.0000000000001H192C121.3 128.0000000000001 64 70.7000000000001 64 1e-13V-31.9999999999999C64 -49.6999999999999 78.3 -63.9999999999999 96 -63.9999999999999H541.6L501 -32H96z" />
+    <glyph glyph-name="user-alt"
+      unicode="&#xF406;"
+      horiz-adv-x="512" d=" M256 416C317.8 416 368 365.8 368 304S317.8 192 256 192S144 242.2 144 304S194.2 416 256 416M384 96C436.9 96 480 52.9 480 0V-32H32V0C32 52.9 75.1 96 128 96C213 96 195.3 80 256 80C316.9 80 298.9 96 384 96M256 448C176.5 448 112 383.5 112 304S176.5 160 256 160S400 224.5 400 304S335.5 448 256 448zM384 128C291.6 128 313 112 256 112C199.2 112 220.3 128 128 128C57.3 128 0 70.7 0 0V-32C0 -49.7 14.3 -64 32 -64H480C497.7 -64 512 -49.7 512 -32V0C512 70.7 454.7 128 384 128z" />
+    <glyph glyph-name="user-astronaut"
+      unicode="&#xF4FB;"
+      horiz-adv-x="448" d=" M288 320H160C124.7 320 96 291.3 96 256V240C96 178.2 146.2 128 208 128H240C301.8 128 352 178.2 352 240V256C352 291.3 323.3 320 288 320zM320 240C320 195.9 284.1 160 240 160H208C163.9 160 128 195.9 128 240V256C128 273.6 142.3 288 160 288H288C305.7 288 320 273.6 320 256V240zM192 272L180 236L144 224L180 212L192 176L204 212L240 224L204 236L192 272zM304 48H144C117.5 48 96 26.5 96 0V-56C96 -60.4 99.6 -64 104 -64H120C124.4 -64 128 -60.4 128 -56V0C128 8.8 135.2 16 144 16H304C312.8 16 320 8.8 320 0V-56C320 -60.4 323.6 -64 328 -64H344C348.4 -64 352 -60.4 352 -56V0C352 26.5 330.5 48 304 48zM272 0C263.2 0 256 -7.2 256 -16S263.2 -32 272 -32S288 -24.8 288 -16S280.8 0 272 0zM176 0C167.2 0 160 -7.2 160 -16V-56C160 -60.4 163.6 -64 168 -64H184C188.4 -64 192 -60.4 192 -56V-16C192 -7.2 184.8 0 176 0zM359.2 119.7C379.5 139.8 395.1 164.5 404.9 192H416C424.8 192 432 199.2 432 208V304C432 312.8 424.8 320 416 320H404.8C378.5 394.5 307.6 448 224 448S69.5 394.5 43.2 320H32C23.2 320 16 312.8 16 304V208C16 199.2 23.2 192 32 192H43.2C52.9 164.5 68.6 139.8 88.9 119.7C37.1 101 0 51.8 0 -6.4V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V-6.4C32 45.2 70.5 87.6 120.3 94.6C150.2 75.3 185.8 64 224 64S297.8 75.3 327.7 94.6C377.5 87.7000000000001 416 45.3 416 -6.4V-56C416 -60.4 419.6 -64 424 -64H440C444.4 -64 448 -60.4 448 -56V-6.4C448 51.8 410.9 101 359.2 119.7000000000001zM224 96C135.8 96 64 167.8 64 256S135.8 416 224 416S384 344.2 384 256S312.2 96 224 96z" />
+    <glyph glyph-name="user-chart"
+      unicode="&#xF6A3;"
+      horiz-adv-x="640" d=" M608 448H192C174.33 448 160 433.67 160 416V320C106.98 320 64 277.02 64 224S106.98 128 160 128S256 170.98 256 224C256 265.74 229.2 300.9 192 314.12V416H608V64H305.34C304.75 64.94 304.31 65.96 303.69 66.88C286.44 92.5 257.02 105.99 226.79 105.99C199 105.98 192.02 96 160 96C128.03 96 121.05 105.98 93.21 105.98C62.98 105.98 33.56 92.5 16.31 66.87C6.01 51.58 0 33.16 0 13.33V-24C0 -46.09 17.91 -64 40 -64H280C302.09 -64 320 -46.09 320 -24V13.33C320 19.74 319.1600000000001 25.93 317.96 32H608C625.67 32 640 46.33 640 64V416C640 433.67 625.67 448 608 448zM224 224C224 188.71 195.29 160 160 160S96 188.71 96 224S124.71 288 160 288S224 259.29 224 224zM288 -24C288 -28.41 284.4100000000001 -32 280 -32H40C35.59 -32 32 -28.41 32 -24V13.33C32 26.12 35.75 38.46 42.85 49C53.38 64.64 72.2 73.98 93.21 73.98C115.01 73.98 123.2 64 160 64C196.79 64 205.01 73.98 226.79 73.98C247.79 73.98 266.62 64.64 277.1500000000001 49C284.2500000000001 38.46 288.0000000000001 26.12 288.0000000000001 13.33V-24zM338.62 295.31C329.24 304.69 314.06 304.69 304.68 295.31L279.19 269.82C283.75 258.1 286.49 245.65 287.4 232.78L321.65 267.03L384.69 204C389.38 199.31 395.5 196.98 401.66 196.98S413.94 199.31 418.63 204L477.6 262.9700000000001L510.84 229.73C514.8000000000001 225.77 519.6600000000001 224 524.44 224C534.4300000000001 224 544.0100000000001 231.76 544.0100000000001 243.47V339.05C544.0100000000001 346.2 538.2100000000002 352 531.0600000000001 352H435.4800000000001C418.1700000000001 352 409.5000000000001 331.07 421.7400000000001 318.83L454.9800000000001 285.59L401.6700000000001 232.28L338.6200000000001 295.31zM512 320V273.82L465.82 320H512z" />
+    <glyph glyph-name="user-check"
+      unicode="&#xF4FC;"
+      horiz-adv-x="640" d=" M637.7 303.4L623.6 317.6C620.5 320.7 615.4 320.8 612.3000000000001 317.6L497.1 205.9L443.8 259.3C440.7 262.4 435.6 262.4 432.5 259.3L418.3 245.2C415.2 242.1 415.2 237.0000000000001 418.3 233.9L488.5 163.5C493.2 158.8 500.8 158.8 505.5 163.5L637.6 292.1C640.8000000000001 295.2 640.8000000000001 300.3 637.7 303.4zM313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C370.1 128 416 82.1 416 25.6V-16zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416z" />
+    <glyph glyph-name="user-circle"
+      unicode="&#xF2BD;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM376 18.4C340.1 -8.1 295.9 -24 248 -24S155.9 -8.1 120 18.4V32C120 67.3 148.7 96 184 96C195.1 96 211.5 84.6 248 84.6C284.6 84.6 300.8 96 312 96C347.3 96 376 67.3 376 32V18.4zM406.6 45.9C399.8 92.3 360.3 128 312 128C291.5 128 281.6 116.6 248 116.6S204.6 128 184 128C135.7 128 96.2 92.3 89.4 45.9C53.9 84.4 32 135.6 32 192C32 311.1 128.9 408 248 408S464 311.1 464 192C464 135.6 442.1 84.4 406.6 45.9zM248 328C199.4 328 160 288.6 160 240S199.4 152 248 152S336 191.4 336 240S296.6 328 248 328zM248 184C217.1 184 192 209.1 192 240S217.1 296 248 296S304 270.9 304 240S278.9 184 248 184z" />
+    <glyph glyph-name="user-clock"
+      unicode="&#xF4FD;"
+      horiz-adv-x="640" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM496 224C416.4 224 352 159.6 352 80S416.4 -64 496 -64S640 0.4 640 80S575.6 224 496 224zM496 -32C434.2 -32 384 18.2 384 80S434.2 192 496 192S608 141.8 608 80S557.8 -32 496 -32zM360.2 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C318 128 322.2000000000001 127.2 326.5 126.7C329.4 137.4 333.4 147.7 338.2 157.5C330.2 159 322.1 160 313.7 160C285 160 271.2 144 224.1 144C177 144 163.3 160 134.5 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H394.9C382 -54.9 370.2 -44.2 360.2 -32zM550.3 96H512V150.3C512 155.6 507.6 160 502.3 160H489.7C484.4 160 480 155.6 480 150.3V73.7000000000001C480 68.4 484.4 64.0000000000001 489.7 64.0000000000001H550.3C555.5999999999999 64.0000000000001 560 68.4 560 73.7000000000001V86.3000000000001C560 91.6000000000001 555.6 96.0000000000001 550.3 96.0000000000001z" />
+    <glyph glyph-name="user-cog"
+      unicode="&#xF4FE;"
+      horiz-adv-x="640" d=" M628.3 89.7L611.8 99.2C612.5999999999999 107.7 612.5999999999999 116.3 611.8 124.8L628.4 134.3C637.9 139.8 642.1999999999999 151 638.9 161.3C631.6999999999999 184.7 619 206.7 602.1999999999999 224.8C594.8 232.9 582.9 234.7 573.4999999999999 229.2L556.9999999999999 219.7C549.9999999999999 224.7 542.5999999999999 229.0000000000001 534.7999999999998 232.5000000000001V251.5000000000001C534.7999999999998 262.5 527.2999999999998 271.8000000000001 516.5999999999998 274.2000000000001C492.6999999999998 279.6 467.2999999999998 279.6 443.3999999999998 274.2000000000001C432.6999999999998 271.8 425.1999999999998 262.4 425.1999999999998 251.5000000000001V232.5000000000001C417.3999999999998 229.0000000000001 409.9999999999999 224.7 402.9999999999999 219.7L386.4999999999999 229.2C376.9999999999999 234.7 365.1999999999998 232.9 357.7999999999999 224.8C341.0999999999999 206.7 328.3999999999999 184.7 321.0999999999999 161.4C317.7999999999999 151.0000000000001 322.2999999999999 139.6 331.6999999999999 134.2000000000001L348.1999999999999 124.7000000000001C347.3999999999999 116.2000000000001 347.3999999999999 107.6 348.1999999999999 99.1L331.5999999999999 89.6C322.2999999999999 84.2000000000001 317.7999999999999 72.7000000000001 321.0999999999999 62.5C328.2999999999999 39.1 340.9999999999999 17.1 357.7999999999999 -1C365.1999999999998 -9 376.9999999999999 -10.8 386.4999999999999 -5.4L402.9999999999999 4.1C409.9999999999999 -0.9 417.3999999999998 -5.2 425.1999999999998 -8.7V-27.7C425.1999999999998 -38.7 432.6999999999998 -48 443.3999999999998 -50.4C455.3999999999998 -53.1 467.6999999999998 -54.4 479.9999999999998 -54.4S504.6999999999998 -53.1 516.5999999999998 -50.4C527.2999999999998 -48 534.7999999999998 -38.6 534.7999999999998 -27.7V-8.7C542.5999999999998 -5.2 549.9999999999999 -0.9 556.9999999999999 4.1L573.4999999999999 -5.4C582.8999999999999 -10.8 594.7999999999998 -9 602.1999999999999 -1C618.9 17.1 631.5999999999999 39.1 638.9 62.4C642.1999999999999 72.8 637.6999999999999 84.3 628.3 89.7zM576.6999999999999 82.5L606.0999999999999 65.5C600.8999999999999 51.2 593.0999999999999 37.7 583.3 26L553.9 43C532.5 24.7 529.4 22.9 502.8 13.5V-20.5C487.6999999999999 -23.1 472.1999999999999 -23.1 457.1999999999999 -20.5V13.5C430.3 23 427 25.2 406.0999999999999 43L376.7 26C366.8999999999999 37.8 359.0999999999999 51.2 353.8999999999999 65.5L383.2999999999999 82.5C378.3999999999999 109.3 378.0999999999999 113.1 383.2999999999999 141.5L353.8999999999999 158.5C359.0999999999999 172.8 366.8999999999999 186.2 376.7 198L406.0999999999999 181C427.4999999999999 199.3 430.5999999999999 201.1 457.1999999999999 210.5V244.5C472.3 247 487.8999999999999 247 502.8 244.5V210.5C529.5999999999999 201 533 198.9 553.9 181L583.3 198C593.0999999999999 186.2 600.9 172.8 606.0999999999999 158.5L576.6999999999999 141.5C581.5999999999999 114.7 581.9 110.9 576.6999999999999 82.5zM479.9999999999999 176.5C444.3999999999999 176.5 415.5 147.5 415.5 112S444.3999999999999 47.5 479.9999999999999 47.5S544.5 76.5 544.5 112S515.6 176.5 480 176.5zM479.9999999999999 79.5C462.1 79.5 447.5 94.1 447.5 112S462.1 144.5 479.9999999999999 144.5S512.5 129.9 512.5 112S497.9 79.5 480 79.5zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM48 -32C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C243.2 112 262 115.3 280.5 120.7C281 132.3 282.3 143.7 284.7 154.7C275.8 152 254.6 144 224 144C176.9 144 163.2 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H385C369 -55.4 354.4 -44.5 341.5 -32H48z" />
+    <glyph glyph-name="user-crown"
+      unicode="&#xF6A4;"
+      horiz-adv-x="448" d=" M313.6 128C284.8900000000001 128 271 112 224 112C176.91 112 163.18 128 134.4 128C60.17 128 0 67.83 0 -6.4V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V-6.4C448 67.83 387.83 128 313.6 128zM416 -16C416 -24.82 408.82 -32 400 -32H48C39.18 -32 32 -24.82 32 -16V-6.4C32 50.06 77.94 96 134.4 96C153.78 96 173.73 80 224 80C273.4 80 294.66 96 313.6 96C370.06 96 416 50.06 416 -6.4V-16zM224 160C294.7 160 352 217.31 352 288V448L288 416L224 448L160 416L96 448V288C96 217.31 153.31 160 224 160zM128 396.2200000000001L160 380.2200000000001L224 412.2200000000001L288 380.2200000000001L320 396.2200000000001V336H128V396.2200000000001zM128 304H320V288C320 235.07 276.94 192 224 192S128 235.07 128 288V304z" />
+    <glyph glyph-name="user-edit"
+      unicode="&#xF4FF;"
+      horiz-adv-x="640" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM630.6 211.9L595.9 246.6C589.6 252.9000000000001 581.4 256 573.1 256C564.9 256 556.6 252.9000000000001 550.3000000000001 246.6L327.8 24L320.2 -44.2C319 -54.9 327.4 -64 337.9 -64C338.6 -64 339.2 -64 339.9 -63.9L408.1 -56.2999999999999L630.5999999999999 166.2000000000001C643.0999999999999 178.9 643.0999999999999 199.3000000000001 630.5999999999999 211.9zM393.3 -25.7L353.9000000000001 -30.2L358.3 9.3L515.2 166.2000000000001L550.2 131.2000000000001L393.3000000000001 -25.6999999999999zM572.8 153.8L537.8 188.8L573 224H573.1L573.3000000000001 223.9L608.0000000000001 188.9L572.8000000000001 153.8zM134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C334.3 128 353.5 121.7 369.6 111.1L392.4000000000001 133.9C370.2000000000001 150.1 343.1 159.9 313.6 159.9C284.9000000000001 159.9 271.1 143.9 224 143.9C176.9 143.9 163.2000000000001 159.9 134.4 159.9C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H291.5C288.7 -56.6 287.4 -48.6 288.3 -40.6L289.3 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128z" />
+    <glyph glyph-name="user-friends"
+      unicode="&#xF500;"
+      horiz-adv-x="640" d=" M480 192C533 192 576 235 576 288S533 384 480 384S384 341 384 288S427 192 480 192zM480 352C515.3 352 544 323.3 544 288S515.3 224 480 224S416 252.7 416 288S444.7 352 480 352zM192 192C253.9 192 304 242.1 304 304S253.9 416 192 416S80 365.9 80 304S130.1 192 192 192zM192 384C236.1 384 272 348.1 272 304S236.1 224 192 224S112 259.9 112 304S147.9 384 192 384zM272.1 172C238.7 172 230.4000000000001 160 192 160C153.6 160 145.3 172 111.9 172C75.6 172 40.3 155.8 19.6 125.1C7.2 106.7 0 84.6 0 60.8V16C0 -10.5 21.5 -32 48 -32H336C362.5 -32 384 -10.5 384 16V60.8C384 84.6 376.8 106.7 364.4 125.1C343.7 155.8 308.4 172 272.1 172zM352 16C352 7.2 344.8 0 336 0H48C39.2 0 32 7.2 32 16V60.8C32 77.4 36.9 93.5 46.1 107.2C59.9 127.7 84.5 140 111.8 140C139.2 140 149 128 192 128S244.8 140 272.1 140C299.4000000000001 140 324 127.7 337.8 107.2C347 93.5 351.9000000000001 77.4 351.9000000000001 60.8V16zM623.7 130.9C606.4 156.5 577 170 546.8 170C519 170 511.9999999999999 160 479.9999999999999 160S441 170 413.2 170C400 170 387.0999999999999 167 375.0999999999999 161.9C390.2999999999999 146.5 393.5999999999999 138.3 395.2999999999999 135.3C400.9999999999999 136.9 406.8999999999999 137.9 413.1999999999999 137.9C434.9999999999999 137.9 443.1999999999999 127.9 479.9999999999999 127.9S524.9999999999999 137.9 546.7999999999998 137.9C567.7999999999998 137.9 586.5999999999998 128.6 597.1999999999998 112.9C604.2999999999998 102.4 608.0999999999998 90 608.0999999999998 77.2V40C608.0999999999998 35.6 604.4999999999998 32 600.0999999999998 32H416C416 14.3 416.3 9.5 414.4 0H600C622.1 0 640 17.9 640 40V77.3C640 97.2 634 115.6 623.7 130.9z" />
+    <glyph glyph-name="user-graduate"
+      unicode="&#xF501;"
+      horiz-adv-x="448" d=" M319.4 127.4L224 48L128.6 127.4C110.2 126.6 0 111.9 0 -16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16C448 111.9 337.9 126.6 319.4 127.4zM208 -32H48C39.2 -32 32 -24.8 32 -16C32 83.6 116.1 93.9 118.4 94.3L208 19.7V-32zM416 -16C416 -24.8 408.8 -32 400 -32H240V19.7L329.6 94.3C331.9000000000001 93.9 416 83.6 416 -16.0000000000001zM13.2 348L20 346V308.4C13 304.2000000000001 8 296.9 8 288.1C8 279.7 12.6 272.7 19.1 268.4L3.5 206C1.8 199.1 5.6 192 11.1 192H52.9C58.4 192 62.2 199.1 60.5 206L44.9 268.3C51.4 272.6 56 279.6 56 288C56 296.8 51 304.1 44 308.3V338.8L90.7 325C84 308.6 80 290.8 80 272C80 192.5 144.5 128 224 128S368 192.5 368 272C368 290.8 364 308.6 357.3 325L434.8 348C452.4 353.2 452.4 382.8 434.8 388L240.9 445.5C235.3 447.2 229.7 448 224 448S212.7 447.2 207.1 445.5L13.2 388C-4.4 382.8 -4.4 353.2 13.2 348zM224 160C162.2 160 112 210.2 112 272C112 287.7 115.7 302.3 121.6 315.8L207.1 290.4C221.9 286 234.3 288.4 240.9 290.4L326.4 315.8C332.3 302.3 336 287.6 336 272C336 210.2 285.8 160 224 160zM216.2 414.9C217 415.1 223.5 417.3 231.8 414.9L389.8 368L231.8 321.1C231 320.9 224.5 318.7 216.2 321.1L58.2 368L216.2 414.9z" />
+    <glyph glyph-name="user-injured"
+      unicode="&#xF728;"
+      horiz-adv-x="448" d=" M313.6 160C302.56 160 291.8200000000001 157.4 281.4000000000001 153.76C263.4000000000001 147.48 244.1200000000001 144 224 144C203.8900000000001 144 184.6 147.48 166.61 153.76C156.19 157.4 145.44 160 134.4 160C60.17 160 0 99.83 0 25.6V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V25.6C448 99.83 387.83 160 313.6 160zM80 -32H48C39.18 -32 32 -24.82 32 -16V25.6C32 62.03 51.26 93.86 80 112.02V-32zM112 -32V125.36C119.23 126.98 126.69 128 134.4 128C135.87 128 137.58 127.64 139.15 127.48L210.04 -32H112zM272 -32H245.07L216.62 32H272C289.6600000000001 32 304 17.64 304 0S289.6600000000001 -32 272 -32zM416 -16C416 -24.82 408.82 -32 400 -32H327.1C332.61 -22.55 336 -11.71 336 0C336 35.3 307.28 64 272 64H202.4L178.5 117.76C193.46 114.35 208.61 112 224 112C247.12 112 269.98 115.89 291.95 123.55C300.64 126.59 307.52 128 313.6 128C370.06 128 416 82.06 416 25.6V-16zM224 192C294.7 192 352 249.31 352 320C352 390.7 294.7 448 224 448C153.31 448 96 390.7 96 320C96 249.31 153.31 192 224 192zM314.1 352H239.99L289.92 389.45C300.76 379.15 308.98 366.36 314.1 352zM224 416C237.38 416 250.1 413.2200000000001 261.68 408.25L186.68 352H133.9C147.15 389.17 182.34 416 224 416zM320 320C320 267.07 276.94 224 224 224S128 267.07 128 320H320z" />
+    <glyph glyph-name="user-lock"
+      unicode="&#xF502;"
+      horiz-adv-x="640" d=" M592 160H576V208C576 252.1 540.1 288 496 288S416 252.1 416 208V160H400C373.5 160 352 138.5 352 112V-16C352 -42.5 373.5 -64 400 -64H592C618.5 -64 640 -42.5 640 -16V112C640 138.5 618.5 160 592 160zM448 208C448 234.5 469.5 256 496 256S544 234.5 544 208V160H448V208zM608 -16C608 -24.8 600.8 -32 592 -32H400C391.2 -32 384 -24.8 384 -16V112C384 120.8 391.2 128 400 128H592C600.8 128 608 120.8 608 112V-16zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM48 -32C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C316.3 128 318.9000000000001 127.4 321.5 127.2C323.7 138.5 328.2 148.8 334.6 157.9C327.7000000000001 159 320.8 160 313.5 160C284.8 160 271 144 223.9 144C176.8 144 163.1 160 134.3 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H336.4C329.3 -54.7 324 -43.9 321.6 -32H48z" />
+    <glyph glyph-name="user-md"
+      unicode="&#xF0F0;"
+      horiz-adv-x="448" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM317.7 159.9C283.9 160.9 273.4 144 224 144C174.7 144 164.2 160.9 130.4 159.9C58 157.8 0 98.5 0 25.6V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V25.6C32 79.9 74.6 124 128 127.4V45.7C104.9 38.8000000000001 88 17.4 88 -7.9999999999999C88 -38.8999999999999 113.1 -63.9999999999999 144 -63.9999999999999S200 -38.8999999999999 200 -7.9999999999999C200 17.4 183.1 38.8000000000001 160 45.7V122.6C180.8 115.8 202.2 112.1 224 112.1C245.8 112.1 267.2 115.8 288 122.6V53.8C259.8 46.3 240 19.3 240 -10.8V-40C240 -44.2 241.7 -48.3 244.7 -51.3L255 -61.6C258.1 -64.7 263.2 -64.7 266.3 -61.6L277.6 -50.3C280.7000000000001 -47.2 280.7000000000001 -42.1 277.6 -39L271.9000000000001 -33.3V-8C271.9000000000001 11.4 289.3 26.8 309.3 23.6C325 21 335.9000000000001 6.2 335.9000000000001 -9.7V-33.3L330.2000000000001 -39C327.1 -42.1 327.1 -47.2 330.2000000000001 -50.3L341.5000000000001 -61.6C344.6000000000001 -64.7 349.7000000000001 -64.7 352.8000000000001 -61.6L363.1000000000001 -51.3C366.1000000000001 -48.3 367.8000000000001 -44.2 367.8000000000001 -40V-8C367.8000000000001 21.7 347.3000000000001 46.5 319.8000000000001 53.6V127.3C373.2000000000001 123.9 415.8000000000001 79.8 415.8000000000001 25.5V-56C415.8000000000001 -60.4 419.4000000000001 -64 423.8000000000001 -64H439.8000000000001C444.2000000000001 -64 447.8000000000001 -60.4 447.8000000000001 -56V25.6C448.0000000000001 98.5 390.0000000000001 157.8 317.7000000000001 159.9zM168 -8C168 -21.2 157.2 -32 144 -32S120 -21.2 120 -8S130.8 16 144 16S168 5.2 168 -8z" />
+    <glyph glyph-name="user-minus"
+      unicode="&#xF503;"
+      horiz-adv-x="640" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM632 224H424C419.6 224 416 220.4 416 216V200C416 195.6 419.6 192 424 192H632C636.4 192 640 195.6 640 200V216C640 220.4 636.4 224 632 224zM313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C370.1 128 416 82.1 416 25.6V-16z" />
+    <glyph glyph-name="user-ninja"
+      unicode="&#xF504;"
+      horiz-adv-x="448" d=" M319.4 159.4L224 80L128.6 159.4C57.1 156.3 0 97.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 97.8 390.9 156.3 319.4 159.4zM208 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 76.4 69.1 118.6 118.4 126.3C208.3 51.5 201.6 57.1 208 51.7V-32zM416 -16C416 -24.8 408.8 -32 400 -32H240V51.7C246.3 57 239.8 51.5 329.6 126.3C378.9000000000001 118.6 416 76.4 416 25.6V-16zM32 256C59.3 256 83.8 267.5 101.2 285.7C116.3 231.8 165.2 192 224 192C294.7 192 352 249.3 352 320S294.7 448 224 448C173.6 448 130.4 418.6 109.5 376.2C92.1 400.2 64 416 32 416C32 382.6 49.1 353.2 75.1 336C49.1 318.8 32 289.4 32 256zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM272 352H176C158.3 352 144 337.7 144 320H304C304 337.7 289.7 352 272 352z" />
+    <glyph glyph-name="user-plus"
+      unicode="&#xF234;"
+      horiz-adv-x="640" d=" M632 224H544V312C544 316.4 540.4 320 536 320H520C515.6 320 512 316.4 512 312V224H424C419.6 224 416 220.4 416 216V200C416 195.6 419.6 192 424 192H512V104C512 99.6 515.6 96 520 96H536C540.4 96 544 99.6 544 104V192H632C636.4 192 640 195.6 640 200V216C640 220.4 636.4 224 632 224zM313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C370.1 128 416 82.1 416 25.6V-16zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416z" />
+    <glyph glyph-name="user-secret"
+      unicode="&#xF21B;"
+      horiz-adv-x="448" d=" M383.9 139.7L407.8 202.3C411.8 212.8 404.1 224 392.8 224H349.6C351.1 231.8 352 239.8 352 248C352 255.2 351.1 262.2 349.8 269.1C390.3 278.9 416 293.3 416 309.3C416 325.8 389 340.5 346.7 350.3C337.8 383.9 319.3 418.2 305.3999999999999 435.7C299.0999999999999 443.7 289.7 448 280.0999999999999 448C270.5999999999999 448 267.7999999999999 445.6 238.2999999999999 430.8C225.4999999999999 424.4 213.9999999999999 428.7 209.6999999999999 430.8C179.9 445.7 177.3 448 167.9 448C158.3 448 149 443.7 142.7 435.8C128.8 418.3 110.3 384 101.4 350.4C59 340.6 32 325.8 32 309.3C32 293.2000000000001 57.7 278.8 98.2 269.1C96.9 262.2000000000001 96 255.2 96 248.0000000000001C96 239.8000000000001 96.9 231.8000000000001 98.4 224H56.3C44.8 224 37.1 212.3000000000001 41.6 201.7L67.4 141.5C27.3 118.2 0 75.3 0 25.6V-19.2C0 -43.9 20.1 -64 44.8 -64H403.2C427.9 -64 448 -43.9 448 -19.2V25.6C448 74 422.2 116 383.9 139.7000000000001zM128 248C128 250.7 128.3 253.3 128.6 255.9C129.9 255.1 133.7 252.6 134.4 250.5C138.3 238.6 141.4 225.9 150.9 217.1C158.9 209.7 197.9 192 214.9 242.1C217.7 250.5 230.3 250.5 233.2 242.1C249.2 194.7 287.1 207.7 297.2000000000001 217.1C306.7000000000001 225.9 309.9000000000001 238.6 313.7000000000001 250.5C314.4000000000001 252.6 318.1 255.1 319.5000000000001 255.9C319.8000000000001 253.3 320.1000000000001 250.7 320.1000000000001 248C320.1000000000001 195.1 277.0000000000001 152 224.1000000000001 152S128 195.1 128 248zM127.3 323.5C128 326.2 139.6 380.5 167.8 416C196.5 401.6 205.5 395.5 224 395.5C242.6 395.5 251.7 401.8 280.2 416L280.3 415.9C308.4000000000001 380.5 320 326.3 320.7 323.5C342.1 318.6 356.5 315.6 371.7 309.3C347.4 299.4 296.3 288 224 288S100.6 299.4 76.3 309.3C91.5 315.6 106.2 318.6 127.3 323.5zM44.8 -32C37.7 -32 32 -26.3 32 -19.2V25.6C32 62.1 51.2 95.1 83.4 113.8L108 128L80.6 192H109.5C114.2 182.4 173.8 83.5 173.8 83.5L142.9 -32H44.8zM176 -32L208 88L186.1 126.4C198.2 122.6 210.7 120 224 120S249.9 122.6 261.9 126.4L240 88L272 -32H176zM416 -19.2C416 -26.3 410.3 -32 403.2 -32H305.1L274.3 83.5S333.9000000000001 182.4 338.6 192H369.6L344.6 126.4L367.1 112.5C397.7000000000001 93.6 416 61.1 416 25.6V-19.2z" />
+    <glyph glyph-name="user-shield"
+      unicode="&#xF505;"
+      horiz-adv-x="640" d=" M622.3 176.9L507.1 221.9C503.6 223.3 499.8 224 495.9999999999999 224S488.4999999999999 223.3 484.8999999999999 221.9L369.7 176.9C359 172.7 352 162.9 352 152C352 40.4 420.7 -36.8 484.9 -61.9C488.4 -63.2999999999999 492.2 -64 496 -64S503.5 -63.3 507.1 -61.9C558.4 -41.9 640 27.5 640 152C640 162.9 633 172.7 622.3 176.9zM480 -24C431.8 2.8 385.4 63.6 384 148.1L480 185.6V-24zM496.6 -32.1C496.5 -32.1 496.4 -32 496.4 -32H496.9C496.7 -32 496.6 -32.1 496.6 -32.1zM512 -24.5V185.6L608 148.1C606.5 53.3 550.9 -2.1 512 -24.5zM48 -32C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C316.2000000000001 128 318.6 127.4 321.1 127.2C320.4000000000001 135.3 320 143.5 320 152C320 154.5 320.8 156.8 321.1 159.2C318.6 159.3 316.2000000000001 160 313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C406.8 -64 413.3 -62.5 419.2 -60C408.9 -51.8 399 -42.4 389.5 -32H48zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416z" />
+    <glyph glyph-name="user-slash"
+      unicode="&#xF506;"
+      horiz-adv-x="640" d=" M637 -37.2L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L617 -62.3C620.4 -65.1 625.5 -64.5 628.2 -61.1L638.2 -48.6C641 -45 640.4000000000001 -40 637 -37.2zM320 416C372.9 416 416 372.9 416 320C416 284.1 396 253.1 366.7 236.7L393.5 215.6C426.4 238.7 448 276.8 448 320C448 390.7 390.7 448 320 448C266 448 220 414.4 201.2 367L228 345.9C239.4 386.2 276.1 416 320 416zM496 -32H144C135.2 -32 128 -24.8 128 -16V25.6C128 82.1 173.9 128 230.4 128C236.5 128 243.4 126.6 252.1 123.6C273.4 116.2000000000001 295.5 112.5 317.9 112.2000000000001L266.3 152.8000000000001C248.8 158.5000000000001 239.5 160.0000000000001 230.4 160.0000000000001C156.2 160 96 99.8 96 25.6V-16C96 -42.5 117.5 -64 144 -64H496C507.9 -64 518.6 -59.5 526.9 -52.4L499.9 -31.2C498.7 -31.5 497.4 -32 496 -32z" />
+    <glyph glyph-name="user-tag"
+      unicode="&#xF507;"
+      horiz-adv-x="640" d=" M223.9 192C294.6 192 351.9 249.3 351.9 320S294.6 448 223.9 448C153.3 448 96 390.7 96 320S153.3 192 223.9 192zM223.9 416C276.8 416 319.9 372.9 319.9 320S276.8 224 223.9 224S127.9 267.1 127.9 320C128 372.9 171 416 223.9 416zM630.6 83.2L540.4 173.5C528.4 185.5 512.1 192.2 495.2 192.2H415.9C398.2 192.2 383.9 177.9 383.9 160.2V80.9C383.9 63.9 390.6 47.6 402.6 35.6L492.8 -54.7C498.9999999999999 -60.9 507.1999999999999 -64.1 515.4 -64.1C523.6 -64.1 531.8 -61 538 -54.7L630.5 37.8C643.1 50.4 643.1 70.6999999999999 630.6 83.1999999999999zM515.5 -32L425.3 58.3C419.3 64.3 415.9000000000001 72.4 415.9000000000001 80.9V160.2000000000001H495.2C503.7 160.2000000000001 511.8000000000001 156.9 517.8000000000001 150.8000000000001L608.0000000000001 60.5000000000001L515.5000000000001 -31.9999999999999zM463.9 128C455.1 128 447.9 120.8 447.9 112S455.1 96 463.9 96S479.9 103.2 479.9 112S472.7 128 463.9 128zM399.9 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.3 112 294 128 313.6 128C327.2000000000001 128 340.1 125.2 352 120.4V153.8C339.8 157.5 327 160 313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H399.9C415.5 -64 429.2 -56.4 438 -44.9L414.8 -21.7C412.4000000000001 -27.7 406.7 -32 399.9000000000001 -32z" />
+    <glyph glyph-name="user-tie"
+      unicode="&#xF508;"
+      horiz-adv-x="448" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM315.9 143.8L276.2 6L242.3 107.7L267.3 132.7C277.4 142.8 270.2 160 256 160H192C177.6999999999999 160 170.5999999999999 142.8 180.6999999999999 132.7L205.6999999999999 107.7L171.8 6L132.1 143.7C58.9 142.5 0 83 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83 389.1 142.5 315.9 143.8zM48 -32C39.2 -32 32 -24.8 32 -16V9.6C32 56.8 64.8 97.1 108.9 108.5L149.5 -32H48zM192.9 -32L224 61.4L255.1 -32H192.9zM416 -16C416 -24.8 408.8 -32 400 -32H298.5L339 108.5C383.1 97.1 415.9 56.8 415.9 9.6V-16z" />
+    <glyph glyph-name="user-times"
+      unicode="&#xF235;"
+      horiz-adv-x="640" d=" M582.6 208L637.6 263C640.7 266.1 640.7 271.2 637.6 274.3L626.3000000000001 285.6C623.2 288.7000000000001 618.1 288.7000000000001 615.0000000000001 285.6L560.0000000000001 230.6L505.0000000000001 285.6C501.9000000000001 288.7000000000001 496.8000000000001 288.7000000000001 493.7000000000001 285.6L482.4000000000001 274.3C479.3000000000001 271.2000000000001 479.3000000000001 266.1 482.4000000000001 263L537.4000000000001 208L482.4000000000001 153C479.3000000000001 149.9 479.3000000000001 144.8 482.4000000000001 141.7L493.7000000000001 130.4C496.8000000000001 127.3 501.9000000000001 127.3 505.0000000000001 130.4L560.0000000000001 185.4L615.0000000000001 130.4C618.1000000000001 127.3 623.2000000000002 127.3 626.3000000000001 130.4L637.6 141.7C640.7 144.8 640.7 149.9 637.6 153L582.6 208zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416zM313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C370.1 128 416 82.1 416 25.6V-16z" />
+    <glyph glyph-name="user"
+      unicode="&#xF007;"
+      horiz-adv-x="448" d=" M313.6 160C284.9000000000001 160 271.1 144 224 144C176.9 144 163.2000000000001 160 134.4 160C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM416 -16C416 -24.8 408.8 -32 400 -32H48C39.2 -32 32 -24.8 32 -16V25.6C32 82.1 77.9 128 134.4 128C154 128 173.5 112 224 112C274.4 112 294 128 313.6 128C370.1 128 416 82.1 416 25.6V-16zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM224 416C276.9 416 320 372.9 320 320S276.9 224 224 224S128 267.1 128 320S171.1 416 224 416z" />
+    <glyph glyph-name="users-class"
+      unicode="&#xF63D;"
+      horiz-adv-x="640" d=" M544 224C499.8 224 464 188.2 464 144S499.8 64 544 64S624 99.8 624 144S588.2 224 544 224zM544 96C517.5 96 496 117.5 496 144S517.5 192 544 192S592 170.5 592 144S570.5 96 544 96zM240 144C240 99.8 275.8 64 320 64S400 99.8 400 144S364.2 224 320 224S240 188.2 240 144zM368 144C368 117.5 346.5 96 320 96S272 117.5 272 144S293.5 192 320 192S368 170.5 368 144zM96 64C140.2 64 176 99.8 176 144S140.2 224 96 224S16 188.2 16 144S51.8 64 96 64zM96 192C122.5 192 144 170.5 144 144S122.5 96 96 96S48 117.5 48 144S69.5 192 96 192zM564 32H524C482.1 32 448 -3.9 448 -48C448 -56.8 455.2 -64 464 -64S480 -56.8 480 -48C480 -21.5 499.8 0 524 0H564C588.2 0 608 -21.5 608 -48C608 -56.8 615.2 -64 624 -64S640 -56.8 640 -48C640 -3.9 605.9 32 564 32zM116 32H76C34.1 32 0 -3.9 0 -48C0 -56.8 7.2 -64 16 -64S32 -56.8 32 -48C32 -21.5 51.8 0 76 0H116C140.2 0 160 -21.5 160 -48C160 -56.8 167.2 -64 176 -64S192 -56.8 192 -48C192 -3.9 157.9 32 116 32zM340 32H300C258.1 32 224 -3.9 224 -48C224 -56.8 231.2 -64 240 -64S256 -56.8 256 -48C256 -21.5 275.8 0 300 0H340C364.2 0 384 -21.5 384 -48C384 -56.8 391.2 -64 400 -64S416 -56.8 416 -48C416 -3.9 381.9 32 340 32zM64 400C64 408.83 71.19 416 80 416H560C568.81 416 576 408.83 576 400V250.78C587.51 247.32 598.37 242.42 608 235.67V400C608 426.4700000000001 586.47 448 560 448H80C53.53 448 32 426.4700000000001 32 400V235.67C41.63 242.42 52.49 247.31 64 250.78V400z" />
+    <glyph glyph-name="users-cog"
+      unicode="&#xF509;"
+      horiz-adv-x="640" d=" M287.4 197.4C290.3 207.8 293.9 217.8 298.3 227.4C264.7 236.9 239.9 267.5 239.9 304.1C239.9 348.2000000000001 275.8 384.1 319.9 384.1C356.5 384.1 387 359.3 396.6 325.7000000000001C406.2 330.1 416.2 333.8 426.6 336.6C412.6 382.4 370.4 416 320 416C258.1 416 208 365.9 208 304C208 253.6 241.6 211.4 287.4 197.4zM96 224C140.2 224 176 259.8 176 304S140.2 384 96 384S16 348.2 16 304S51.8 224 96 224zM96 352C122.5 352 144 330.5 144 304S122.5 256 96 256S48 277.5 48 304S69.5 352 96 352zM157.1 179.1C145.2 187.2000000000001 131.1 192 116 192H76C34.1 192 0 156.1 0 112C0 103.2 7.2 96 16 96S32 103.2 32 112C32 138.5 51.8 160 76 160H116C121.5 160 126.8 158.8 131.7 156.7C139.2 165.2 147.8 172.7 157.1 179.1zM176 0C167.2 0 160 7.2 160 16V60.8C160 77.4 164.9 93.5 174.1 107.2C187.9 127.7 212.5 140 239.8 140C254.1 140 258.6 137.6 280.5 132.8C280.3 136.6 279.1 146.2 281.1 165.4C264.8 169.7000000000001 254.7 172.0000000000001 239.8 172.0000000000001C203.5 172.0000000000001 168.2 155.8000000000001 147.5 125.1000000000001C135.1 106.7000000000001 127.9 84.6000000000001 127.9 60.8000000000001V16C127.9 -10.5 149.4 -32 175.9 -32H384.9C368.9 -23.4 354.3 -12.5 341.4 0H176zM480 208.5C444.4 208.5 415.5 179.5 415.5 144S444.4 79.5 480 79.5S544.5 108.5 544.5 144S515.6 208.5 480 208.5zM480 111.5C462.1 111.5 447.5 126.1 447.5 144S462.1 176.5 480 176.5S512.5 161.9 512.5 144S497.9 111.5 480 111.5zM628.3 121.7L611.8 131.2C612.5999999999999 139.7 612.5999999999999 148.3 611.8 156.8L628.4 166.3C637.9 171.8 642.1999999999999 183 638.9 193.3C631.6999999999999 216.7 619 238.7 602.1999999999999 256.8C594.8 264.9 582.9 266.7000000000001 573.4 261.2000000000001L556.9 251.7C549.9 256.7000000000001 542.5 261 534.6999999999999 264.5V283.5C534.6999999999999 294.5 527.1999999999999 303.8000000000001 516.4999999999999 306.2000000000001C492.5999999999999 311.6 467.1999999999999 311.6 443.1999999999999 306.2000000000001C432.4999999999999 303.8 424.9999999999999 294.4 424.9999999999999 283.5V264.5C417.1999999999999 261 409.6999999999999 256.7000000000001 402.7999999999999 251.7L386.2999999999999 261.2000000000001C376.7999999999999 266.7000000000001 364.9999999999999 264.9 357.5999999999999 256.8C340.7999999999999 238.7 328.2 216.7 320.8999999999999 193.4C317.5999999999999 183 322.0999999999999 171.6 331.5 166.2L348 156.7C347.2 148.2 347.2 139.6 348 131.1L331.3999999999999 121.6C322.0999999999999 116.2 317.5999999999999 104.7 320.8999999999999 94.4999999999999C328.2 71.1 340.7999999999999 49.1 357.5999999999999 30.9999999999999C364.9999999999999 22.9999999999999 376.7999999999999 21.1999999999999 386.3999999999999 26.6L402.8999999999999 36.1C409.8999999999999 31.1 417.2999999999999 26.8 425.0999999999999 23.3V4.3C425.0999999999999 -6.7 432.5999999999999 -16.0000000000001 443.2999999999999 -18.4C455.2999999999999 -21.1 467.5999999999999 -22.4 479.8999999999999 -22.4S504.5999999999999 -21.1 516.4999999999999 -18.4C527.1999999999999 -16.0000000000001 534.6999999999999 -6.6 534.6999999999999 4.3V23.3C542.4999999999999 26.8 549.9 31.1 556.9 36.1L573.4 26.6C582.8 21.2 594.6999999999999 22.9999999999999 602.1 30.9999999999999C618.9 49.1 631.5 71.1 638.8000000000001 94.3999999999999C642.2 104.7999999999999 637.7 116.2999999999999 628.3000000000001 121.6999999999999zM576.6999999999999 114.5L606.0999999999999 97.5C600.8 83.2 593.0999999999999 69.7 583.3 58L553.9 75C532.5 56.7 529.4 54.9 502.8 45.5V11.5C487.6999999999999 8.9 472.1999999999999 8.9 457.1999999999999 11.5V45.5C430.3 55 427 57.2 406.0999999999999 75L376.7 58C366.8999999999999 69.8 359.0999999999999 83.2 353.8999999999999 97.5L383.2999999999999 114.5C378.3999999999999 141.3 378.0999999999999 145.1 383.2999999999999 173.5L353.8999999999999 190.5C359.0999999999999 204.8 366.8999999999999 218.2 376.7 230L406.0999999999999 213C427.4999999999999 231.3 430.5999999999999 233.1 457.1999999999999 242.5V276.5C472.3 279 487.8999999999999 279 502.8 276.5V242.5C529.5999999999999 233 533 230.9 553.9 213L583.3 230C593.0999999999999 218.2 600.9 204.8 606.0999999999999 190.5L576.6999999999999 173.5C581.5999999999999 146.7 581.9 142.9 576.6999999999999 114.5z" />
+    <glyph glyph-name="users-crown"
+      unicode="&#xF6A5;"
+      horiz-adv-x="640" d=" M564 160H524C508.82 160 494.73 155.17 482.85 147.07C492.23 140.7 500.78 133.2 508.3 124.7C513.19 126.75 518.45 128 524 128H564C588.25 128 608 106.47 608 80C608 71.16 615.16 64 624 64S640 71.16 640 80C640 124.11 605.91 160 564 160zM544 192C588.18 192 624 227.82 624 272S588.18 352 544 352S464 316.18 464 272S499.82 192 544 192zM544 320C570.47 320 592 298.4700000000001 592 272S570.47 224 544 224S496 245.53 496 272S517.53 320 544 320zM400.15 139.98C388.27 139.98 376.28 138.25 364.66 134.72C350.5 130.42 335.56 128 320 128S289.5 130.42 275.3400000000001 134.71A122.20900000000002 122.20900000000002 0 0 1 239.85 139.97C203.56 139.97 168.2700000000001 123.79 147.57 93.04C135.21 74.7 128 52.59 128 28.8V16C128 -10.51 149.49 -32 176 -32H464C490.51 -32 512 -10.51 512 16V28.8C512 52.59 504.79 74.7 492.43 93.05C471.73 123.8 436.43 139.98 400.15 139.98zM480 16C480 7.18 472.82 0 464 0H176C167.18 0 160 7.18 160 16V28.8C160 45.43 164.88 61.47 174.11 75.18C187.94 95.72 212.51 107.98 239.85 107.98C248.7500000000001 107.98 257.56 106.67 266.04 104.1C283.73 98.73 301.88 96 320 96S356.27 98.72 373.96 104.1A89.88699999999999 89.88699999999999 0 0 0 400.15 107.98C427.49 107.98 452.0599999999999 95.72 465.89 75.18C475.12 61.47 480 45.43 480 28.8V16zM96 192C140.18 192 176 227.82 176 272S140.18 352 96 352S16 316.18 16 272S51.82 192 96 192zM96 320C122.47 320 144 298.4700000000001 144 272S122.47 224 96 224S48 245.53 48 272S69.53 320 96 320zM157.15 147.07C145.27 155.17 131.18 160 116 160H76C34.09 160 0 124.11 0 80C0 71.16 7.16 64 16 64S32 71.16 32 80C32 106.47 51.75 128 76 128H116C121.55 128 126.81 126.75 131.7 124.7C139.22 133.2 147.77 140.7 157.15 147.07zM320 160C381.86 160 432 210.14 432 272V416L376 388L320 416L264 388L208 416V272C208 210.14 258.14 160 320 160zM240 364.2200000000001L264 352.2200000000001L320 380.2200000000001L376 352.2200000000001L400 364.2200000000001V320H240V364.2200000000001zM240 288H400V272C400 227.89 364.11 192 320 192S240 227.89 240 272V288z" />
+    <glyph glyph-name="users"
+      unicode="&#xF0C0;"
+      horiz-adv-x="640" d=" M544 224C588.2 224 624 259.8 624 304S588.2 384 544 384S464 348.2 464 304S499.8 224 544 224zM544 352C570.5 352 592 330.5 592 304S570.5 256 544 256S496 277.5 496 304S517.5 352 544 352zM320 192C381.9 192 432 242.1 432 304S381.9 416 320 416S208 365.9 208 304S258.1 192 320 192zM320 384C364.1 384 400 348.1 400 304S364.1 224 320 224S240 259.9 240 304S275.9 384 320 384zM564 192H524C508.8 192 494.7 187.2 482.9 179.1C492.3 172.7000000000001 500.8 165.2000000000001 508.3 156.7000000000001C513.1999999999999 158.8000000000001 518.5 160.0000000000001 524 160.0000000000001H564C588.2 160.0000000000001 608 138.5000000000001 608 112.0000000000001C608 103.2000000000001 615.2 96.0000000000001 624 96.0000000000001S640 103.2000000000001 640 112.0000000000001C640 156.1000000000001 605.9 192.0000000000001 564 192.0000000000001zM96 224C140.2 224 176 259.8 176 304S140.2 384 96 384S16 348.2 16 304S51.8 224 96 224zM96 352C122.5 352 144 330.5 144 304S122.5 256 96 256S48 277.5 48 304S69.5 352 96 352zM400.1 172C366.7000000000001 172 358.4000000000001 160 320 160C281.6 160 273.3 172 239.9 172C203.6 172 168.3 155.8 147.6 125.1C135.2 106.7000000000001 128 84.6 128 60.8V16C128 -10.5 149.5 -32 176 -32H464C490.5 -32 512 -10.5 512 16V60.8C512 84.6 504.8 106.7 492.4 125.1C471.7 155.8 436.4 172 400.1 172zM480 16C480 7.2 472.8 0 464 0H176C167.2 0 160 7.2 160 16V60.8C160 77.4 164.9 93.5 174.1 107.2C187.9 127.7 212.5 140 239.8 140C267.2 140 277 128 320 128S372.8 140 400.1 140C427.4000000000001 140 452 127.7 465.8 107.2C475 93.5 479.9 77.4 479.9 60.8V16zM157.1 179.1C145.2 187.2000000000001 131.1 192 116 192H76C34.1 192 0 156.1 0 112C0 103.2 7.2 96 16 96S32 103.2 32 112C32 138.5 51.8 160 76 160H116C121.5 160 126.8 158.8 131.7 156.7C139.2 165.2 147.8 172.7 157.1 179.1z" />
+    <glyph glyph-name="utensil-fork"
+      unicode="&#xF2E3;"
+      horiz-adv-x="512" d=" M458.5 340.9C458.9 368.3 431.2 394.9 404.9 394.5C405.3 428.9 361.1 463.2 329.6 441C320.8 434.9000000000001 249.5 385.3 224.4 360.3C182.3 318.2000000000001 172.9 262.6 192.4 214.5L13 53C-3.8 37.9 -4.5 11.8 11.5 -4.2L59.8 -52.5C76 -68.7 102.1 -67.5 117 -51L278.4 128.2C327.4 108.4 382.7 118.8 424.2 160.2C449.3 185.3 498.7 256.6 504.8 265.4C526.8 296.7 494.6 341.4 458.4999999999999 340.9zM478.7 283.9S425.5 206.9 401.5 182.9C363.4 144.8 312.3 141 271.1 168.1L93.1 -29.5C90.3 -32.7 85.4 -32.8 82.4 -29.8L34.1 18.5C31.1 21.5 31.2 26.4 34.4 29.2L232 207.2C204.9 248.5 208.8 299.6 246.8 337.6C270.7 361.5 347.8 414.8 347.8 414.8C357 421.5 378.4000000000001 399.8 371.4000000000001 390.8L272.8000000000001 292.2C264.3000000000001 282.2 286.1000000000001 260 296.4000000000001 268.2L401.4000000000001 361.3C410.5000000000001 367.8 431.7000000000001 346.6 425.2000000000001 337.5L332.1000000000002 232.5C323.9000000000002 222.2 346.1000000000002 200.4 356.1000000000002 208.9L454.7000000000002 307.5C463.8000000000002 314.5 485.4000000000001 293.1 478.7000000000002 283.9z" />
+    <glyph glyph-name="utensil-knife"
+      unicode="&#xF2E4;"
+      horiz-adv-x="512" d=" M72.9 -50.4L24.6 -2.1C7 15.5 6.2 43.5 23.3 60.6L398.3 435.6C415.2 452.5 443.4 452 461 434.3C481.8 413.7 501 373.5 501 312C501 209.2 433.4 86.2 269.1 106.8L138.1 -49C121.5 -68.7 91.4 -68.9 72.9 -50.4zM421 413L46 38C41.4 33.4 42.3 25.5 47.3 20.5L95.6 -27.8C101 -33.2 109.4 -33.5 113.6 -28.5L256.1 141C338.9000000000001 128.3 409.3 145 447.4000000000001 220.3C462.1 249.3 469.1 281.7000000000001 469.1 312C469.1 360 457.8 392.4 438.5 411.7C433.3 416.9 425.5 417.5 421 413z" />
+    <glyph glyph-name="utensil-spoon"
+      unicode="&#xF2E5;"
+      horiz-adv-x="512" d=" M60.3 -51.8L12.2 -3.7C-4.6 13 -4 40.6 13.8 56.5L206 229C183.7 282.2 195.4 340.8 241.2 386.7C303.3 448.8 416.7 474 477.3 413.4C538 352.7 512.6 239.2 450.6 177.3C404.8 131.4 346.2000000000001 119.6 293 142L120.5 -50.2C104.6 -67.9 77.1 -68.7 60.3 -51.8zM263.8 364.1C218.1 318.4 219.3 271.5 245.4 221.4L35.2 32.7C31.1 29.1 31 22.8 34.8 18.9L82.9 -29.2C86.8 -33.1 93.1 -32.8000000000001 96.7 -28.8000000000001L285.4 181.5C334.9 155.6999999999999 382.1 153.8 428.1 199.9C477.4 249.3 502.1 343.5999999999999 454.8 390.9C409.4 436.2 315.8 416.1 263.8 364.1z" />
+    <glyph glyph-name="utensils-alt"
+      unicode="&#xF2E6;"
+      horiz-adv-x="576" d=" M0 388C0 245.1 69.8 172.2 188.6 161.5L84.2 68.9C58.4 46 57.2 5.9 81.6 -18.4L109.6 -46.4C134.2 -71 174.2 -69.5 196.9 -43.8L290 61.3C386.3 -52.2 379.4 -44.1 380.3 -45C403.2 -69.4 442.2 -70.7 466.5 -46.4L494.5 -18.4C518.6 5.7 517.7 44.9 492.9 68L384.8 168.3L392 176C430.8 163.9 469.1 169 502.3 202.1C523.2 223 564 281.8 569.1 289.2C589.2 317.7 561.8000000000001 356 531.7 359.8C528.9000000000001 381.9 508.1 401.3 487.8000000000001 403.8C483.9000000000001 434.8 445.2000000000001 460.9 417.2000000000001 441.2C409.8000000000001 436.1 351.0000000000001 395.2 330.1 374.3C298 342.2 291.4 304 304 264L292.8 253.7L100.8 431.9C62.6 467.4 0 440.3 0 388zM379.7 210.8L361.3 190.1L316.4000000000001 231.8L338.9000000000001 251.7C320.1 284.7000000000001 323.5000000000001 322.4000000000001 352.8 351.7000000000001C372.3 371.3 435.6 415 435.6 415C443.2000000000001 420.5 460.7 402.7 455 395.3L374 314.4C367 306.2 384.9 288 393.4 294.7L479.5 371.1C486.9 376.5 504.4 359.1 499 351.6L422.6 265.5C416 257 434.1 239 442.4 246L523.3 326.9C530.6999999999999 332.7 548.5 315.1 543 307.5C543 307.5 499.3 244.3 479.7 224.6C450.1 195.2 412.4 192.2 379.7 210.8zM218.7 145.3L269.1 86L173 -22.6C162.3 -34.6 143.7 -35.3 132.2 -23.8L104.2 4.2C92.8 15.6 93.4 34.3 105.4 45L218.7 145.3zM32 388C32 412.4 61.1 425.2 79.1 408.5L471.1 44.5C482.7 33.7 483.1 15.4 471.8 4.2L443.8 -23.8C432.6 -35 414.4000000000001 -34.7 403.6 -23.2L221 192C81 192 32 270.8 32 388z" />
+    <glyph glyph-name="utensils"
+      unicode="&#xF2E7;"
+      horiz-adv-x="480" d=" M344.1 -22.3L358.3 142.5C316.2 175.6 287.9 219.5 287.9 272C288 366.3 376.1 448 440 448C462.1 448 480 430.7 480 409.5V-25.5C480 -46.7 462.1 -64 440 -64H384C361.2 -64 342.2 -45.3 344.1 -22.3zM320 272C320 221 352.2 186.5 391.8 157.5L376 -25.1C375.7 -28.8 379.4 -32 384 -32H440C444.3 -32 448 -29 448 -25.5V409.5C448 413 444.3 416 440 416C395.4 416 320 350.2 320 272zM240.7 414.2C237.4 433.7 219.5 448 194.6 448C182.7 448 170.5 444.6 161.3 436.8C152.9 443.9 141.3 448 128 448S103.1 443.9 94.7 436.8C85.5 444.6 73.3 448 61.4 448C36.2 448 18.6 433.5 15.3 414.2C13.5 404.8 0 329.6 0 298.1C0 247.2 26.7 206.5 71 187.4L59.6 -23.4C58.4 -45.4 75.9 -64 98 -64H158C180 -64 197.6 -45.5 196.4 -23.4L185 187.4C229.2 206.5 256 247.2 256 298.1C256 329.6 242.5 404.8 240.7 414.2zM152.3 208L164.5 -25.1C164.7 -28.8 161.8 -32 158 -32H98C94.3 -32 91.3 -28.9 91.5 -25.1L103.7 208C61.3 216.8 32 251 32 298.1C32 327.8 46.8 408.7 46.8 408.7C48.4 418.6 75.1 418.4 76.3 408.5V286C77.2 274.5 104.5 274.3 105.8 285.8L113.2 408.7000000000001C114.8 418.4000000000001 141.1 418.4000000000001 142.7 408.7000000000001L150.1 285.8C151.4 274.4 178.7 274.6 179.6 286V408.4C180.8 418.3 207.5 418.5 209.1 408.6C209.1 408.6 223.9 327.7 223.9 298C224 251.2 194.9 216.8 152.3 208z" />
+    <glyph glyph-name="value-absolute"
+      unicode="&#xF6A6;"
+      horiz-adv-x="448" d=" M24 416H8C3.58 416 0 412.42 0 408V-24C0 -28.42 3.58 -32 8 -32H24C28.42 -32 32 -28.42 32 -24V408C32 412.42 28.42 416 24 416zM440 416H424C419.58 416 416 412.42 416 408V-24C416 -28.42 419.58 -32 424 -32H440C444.42 -32 448 -28.42 448 -24V408C448 412.42 444.42 416 440 416zM325.6600000000001 282.35L314.35 293.66C311.23 296.78 306.1600000000001 296.78 303.04 293.66L224 214.63L144.97 293.66C141.85 296.78 136.78 296.78 133.66 293.66L122.35 282.35C119.23 279.23 119.23 274.16 122.35 271.04L201.38 192L122.35 112.97C119.23 109.85 119.23 104.78 122.35 101.66L133.66 90.35C136.78 87.23 141.85 87.23 144.97 90.35L224 169.38L303.03 90.35C306.15 87.23 311.22 87.23 314.34 90.35L325.65 101.66C328.77 104.78 328.77 109.85 325.65 112.97L246.62 192L325.65 271.03A8.006 8.006 0 0 1 325.66 282.35z" />
+    <glyph glyph-name="vector-square"
+      unicode="&#xF5CB;"
+      horiz-adv-x="512" d=" M486.4 320C500.54 320 512 331.4600000000001 512 345.6V422.4C512 436.54 500.54 448 486.4 448H409.6C395.46 448 384 436.54 384 422.4V400H128V422.4C128 436.54 116.54 448 102.4 448H25.6C11.46 448 0 436.54 0 422.4V345.6C0 331.46 11.46 320 25.6 320H48V64H25.6C11.46 64 0 52.54 0 38.4V-38.4C0 -52.54 11.46 -64 25.6 -64H102.4C116.54 -64 128 -52.54 128 -38.4V-16H384V-38.4C384 -52.54 395.46 -64 409.6 -64H486.4C500.54 -64 512 -52.54 512 -38.4V38.4C512 52.54 500.54 64.0000000000001 486.4 64.0000000000001H464V320H486.4zM416 416H480V352H416V416zM32 352V416H96V352H32zM96 -32H32V32H96V-32zM480 32V-32H416V32H480zM432 64H409.6C395.4600000000001 64 384 52.54 384 38.4V16H128V38.4C128 52.54 116.54 64 102.4 64H80V320H102.4C116.54 320 128 331.4600000000001 128 345.6V368H384V345.6C384 331.46 395.46 320 409.6 320H432V64z" />
+    <glyph glyph-name="venus-double"
+      unicode="&#xF226;"
+      horiz-adv-x="512" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 197.9 56 136.8 128 128.9V64H76C69.4 64 64 58.6 64 52V44C64 37.4 69.4 32 76 32H128V-20C128 -26.6 133.4 -32 140 -32H148C154.6 -32 160 -26.6 160 -20V32H212C218.6 32 224 37.4 224 44V52C224 58.6 218.6 64 212 64H160V128.9C232 136.8 288 197.9 288 272zM32 272C32 333.9 82 384 144 384C205.9 384 256 334 256 272C256 210.1 206 160 144 160C82.1 160 32 210 32 272zM384 128.9V64H436C442.6 64 448 58.6 448 52V44C448 37.4 442.6 32 436 32H384V-20C384 -26.6 378.6 -32 372 -32H364C357.4 -32 352 -26.6 352 -20V32H300C293.4 32 288 37.4 288 44V52C288 58.6 293.4 64 300 64H352V128.9C324.6 131.9 299.4 142.7 278.8 158.9C285.7 167.1 291.8 175.9 297.1 185.2C317 168.9 341.8 160 367.9000000000001 160C429.9000000000001 160 479.9 210.1 479.9 272C479.9 334 429.8 384 367.9000000000001 384C341.8 384 317.0000000000001 375.1 297.1 358.8C291.8 368.1 285.7000000000001 377 278.8 385.1C303.4 404.4 334.3 416 368 416C447.5 416 512 351.5 512 272C512 197.9 456 136.8 384 128.9z" />
+    <glyph glyph-name="venus-mars"
+      unicode="&#xF228;"
+      horiz-adv-x="576" d=" M288 240C288 319.5 223.5 384 144 384S0 319.5 0 240C0 165.9 56 104.8 128 96.9V32H76C69.4 32 64 26.6 64 20V12C64 5.4 69.4 0 76 0H128V-52C128 -58.6 133.4 -64 140 -64H148C154.6 -64 160 -58.6 160 -52V0H212C218.6 0 224 5.4 224 12V20C224 26.6 218.6 32 212 32H160V96.9C232 104.8 288 165.9 288 240zM32 240C32 301.9 82 352 144 352C205.9 352 256 302 256 240C256 178.1 206 128 144 128C82.1 128 32 178 32 240zM576 436V348C576 341.4 570.6 336 564 336H556C549.4 336 544 341.4 544 348V393.4L480.5 329.9C500.2 305.2 512 274 512 240C512 160.5 447.5 96 368 96C334.3 96 303.4 107.6 278.8 126.9C285.7 135.1 291.8 143.9 297.1 153.2C317 136.9 341.8 128 367.9000000000001 128C429.9000000000001 128 479.9 178.1 479.9 240C479.9 302 429.8 352 367.9000000000001 352C341.8 352 317.0000000000001 343.1 297.1 326.8C291.8 336.1 285.7000000000001 345 278.8 353.1C303.4 372.4 334.3 384 368 384C402 384 433.2 372.2 457.9 352.5L521.4 416H476C469.4 416 464 421.4 464 428V436C464 442.6 469.4 448 476 448H564C570.6 448 576 442.6 576 436z" />
+    <glyph glyph-name="venus"
+      unicode="&#xF221;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 197.9 56 136.8 128 128.9V64H76C69.4 64 64 58.6 64 52V44C64 37.4 69.4 32 76 32H128V-20C128 -26.6 133.4 -32 140 -32H148C154.6 -32 160 -26.6 160 -20V32H212C218.6 32 224 37.4 224 44V52C224 58.6 218.6 64 212 64H160V128.9C232 136.8 288 197.9 288 272zM32 272C32 333.9 82 384 144 384C205.9 384 256 334 256 272C256 210.1 206 160 144 160C82.1 160 32 210 32 272z" />
+    <glyph glyph-name="vial"
+      unicode="&#xF492;"
+      horiz-adv-x="480" d=" M477.7 260L308 429.7C304.9 432.8 299.8 432.8 296.7 429.7L285.4 418.4C282.3 415.3 282.3 410.2 285.4 407.1L302.4 390.1L28.1 115.9C-9.4 78.4 -9.5 17.7 28.1 -19.8C65.6 -57.3 126.3 -57.4 163.8 -19.8L438 254.4L455 237.4C458.1 234.3 463.2 234.3 466.3 237.4L477.6 248.7C480.8 251.8 480.8 256.8 477.7 260zM141.3 2.8C117.1 -21.4 75 -21.4 50.8 2.8C25.8 27.8 25.8 68.3 50.8 93.3L117.5 160H298.5L141.3 2.8zM330.5 192H149.5L324.9 367.4L415.4 276.9L330.5 192z" />
+    <glyph glyph-name="vials"
+      unicode="&#xF493;"
+      horiz-adv-x="640" d=" M72 416H96V112C96 67.9 131.9 32 176 32S256 67.9 256 112V416H280C284.4 416 288 419.6 288 424V440C288 444.4 284.4 448 280 448H72C67.6 448 64 444.4 64 440V424C64 419.6 67.6 416 72 416zM128 416H224V288H128V416zM128 256H224V112C224 48.5 128 48.5 128 112V256zM360 416H384V112C384 67.9 419.9 32 464 32S544 67.9 544 112V416H568C572.4 416 576 419.6 576 424V440C576 444.4 572.4 448 568 448H360C355.6 448 352 444.4 352 440V424C352 419.6 355.6 416 360 416zM416 416H512V288H416V416zM416 256H512V112C512 48.5 416 48.5 416 112V256zM632 -32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32z" />
+    <glyph glyph-name="video-plus"
+      unicode="&#xF4E1;"
+      horiz-adv-x="576" d=" M543.9 352C537.6999999999999 352 531.4 350.2 525.6999999999999 346.3L416 276.4V336.2C416 362.6 392.8 384 364.2 384H51.8C23.2 384 0 362.6 0 336.2V47.8C0 21.4 23.2 0 51.8 0H364.2C392.8 0 416 21.4 416 47.8V107.6L525.6 37.7C531.3000000000001 33.7 537.7 32.0000000000001 543.8000000000001 32.0000000000001C560.4000000000001 32.0000000000001 575.9000000000001 45.0000000000001 575.9000000000001 63.5000000000001V320.5000000000001C576.0000000000001 339.0000000000001 560.5000000000001 352.0000000000001 543.9000000000001 352.0000000000001zM384 256V47.8C384 39.2 374.9 32 364.2 32H51.8C41.1 32 32 39.2 32 47.8V336.2C32 344.8 41.1 352 51.8 352H364.2C374.9 352 384 344.8 384 336.2V256zM544 63.5L542.8 64.8L416 145.6V238.5000000000001L544 320V63.5zM296 208H224V280C224 284.4 220.4 288 216 288H200C195.6 288 192 284.4 192 280V208H120C115.6 208 112 204.4 112 200V184C112 179.6 115.6 176 120 176H192V104C192 99.6 195.6 96 200 96H216C220.4 96 224 99.6 224 104V176H296C300.4 176 304 179.6 304 184V200C304 204.4 300.4 208 296 208z" />
+    <glyph glyph-name="video-slash"
+      unicode="&#xF4E2;"
+      horiz-adv-x="640" d=" M637 -37.2L142.7 352L126.5 364.7L23 446.2C19.6 449 14.5 448.4 11.8 445L1.8 432.5C-1 429 -0.4 424 3 421.2L438.9 78L448 70.8L617 -62.2999999999999C620.4 -65.0999999999999 625.5 -64.5 628.2 -61.1L638.2 -48.6C641 -44.9999999999999 640.4000000000001 -39.9999999999999 637 -37.2zM396.2 32H83.8C73.1 32 64 39.2 64 47.8V312.1L32.1 337.2C32.1 336.8 32 336.5 32 336.1V47.7C32 21.3000000000001 55.2 -0.1 83.8 -0.1H396.2C412.8 -0.1 427.4 7.2 436.9 18.4L411.6 38.3C407.9 34.6 402.5 32 396.2 32zM396.2 352C406.9 352 416 344.8 416 336.2V197.9L448 172.7V238.5L576 320V71.9L604.4 49.5C606.5 53.7 608 58.3 608 63.5V320.5C608 339 592.5 352 575.9 352C569.6999999999999 352 563.4 350.2 557.6999999999999 346.3L448 276.4V336.2C448 362.6 424.8 384 396.2 384H179.6L220.2 352H396.2z" />
+    <glyph glyph-name="video"
+      unicode="&#xF03D;"
+      horiz-adv-x="576" d=" M543.9 352C537.6999999999999 352 531.4 350.2 525.6999999999999 346.3L416 276.4V336.2C416 362.6 392.8 384 364.2 384H51.8C23.2 384 0 362.6 0 336.2V47.8C0 21.4 23.2 0 51.8 0H364.2C392.8 0 416 21.4 416 47.8V107.6L525.6 37.7C531.3000000000001 33.7 537.7 32.0000000000001 543.8000000000001 32.0000000000001C560.4000000000001 32.0000000000001 575.9000000000001 45.0000000000001 575.9000000000001 63.5000000000001V320.5000000000001C576.0000000000001 339.0000000000001 560.5000000000001 352.0000000000001 543.9000000000001 352.0000000000001zM384 47.8C384 39.2 374.9 32 364.2 32H51.8C41.1 32 32 39.2 32 47.8V336.2C32 344.8 41.1 352 51.8 352H364.2C374.9 352 384 344.8 384 336.2V47.8zM544 63.5L542.8 64.8L416 145.6V238.5000000000001L544 320V63.5z" />
+    <glyph glyph-name="vihara"
+      unicode="&#xF6A7;"
+      horiz-adv-x="640" d=" M632.88 47.29L544 96V160L599.16 177.69C610.9499999999999 183.59 610.9499999999999 200.41 599.16 206.31L480 256V320L507.31 336.3C515.03 344.02 512.92 357.04 503.15 361.92L320 448L136.85 361.93C127.08 357.05 124.97 344.03 132.69 336.31L160 320V256L40.84 206.31C29.05 200.41 29.05 183.59 40.84 177.69L96 160V96L7.12 47.29C-3.1 40.47 -2.15 25.16 8.84 19.67L64 0V-56C64 -60.42 67.58 -64 72 -64H88C92.42 -64 96 -60.42 96 -56V0H304V-56C304 -60.42 307.58 -64 312 -64H328C332.42 -64 336 -60.42 336 -56V0H544V-56C544 -60.42 547.58 -64 552 -64H568C572.42 -64 576 -60.42 576 -56V0L631.15 19.67C642.14 25.16 643.1 40.48 632.88 47.29zM320 412.64L449.06 352H190.96L320 412.64zM192 320H448V256H192V320zM94.6 194.06L166.4 224H473.6L545.4100000000001 194.06L539 192H101.01L94.6 194.06zM128 160H512V96H128V160zM570.47 32H69.53L55.15 37.13L104.19 64H535.8L584.8399999999999 37.13L570.4699999999999 32z" />
+    <glyph glyph-name="volcano"
+      unicode="&#xF770;"
+      horiz-adv-x="512" d=" M505.5 -12.6L329.6 212.4C324.7000000000001 218.7 317.5 222.1 309.8 223.5L326.2 272.9H352C396.1 272.9 432 308.9 432 353.1S396.1 433.3 352 433.3C338.9 433.3 326 429.9 314.4 423.7C284.5 456.3 227.5 456.3 197.5 423.7C185.9 430 173 433.3 159.9 433.3C115.8 433.3 79.9 397.3 79.9 353.1S115.8 272.9 159.9 272.9H185.7L202.1 223.5C194.4 222.1 187.2 218.7 182.3 212.4L6.5 -12.6C-9.4 -33.8 5.7 -64 32.1 -64H480C506.3 -64 521.4 -33.8 505.5 -12.6zM160 304.9C133.5 304.9 112 326.5 112 353S133.5 401.1 160 401.1C174.2 401.1 184.6 394.8 190.8 389.5L205.2 377.3L214.9 393.5C232.6 423.2 279.4 423.2 297.1 393.5L306.8 377.3L321.2 389.5C327.4 394.8 337.9 401.1 352 401.1C378.5 401.1 400 379.5 400 353S378.5 304.9 352 304.9H303.1L276.4000000000001 224.7H235.5000000000001L208.8000000000001 304.9H160zM207.6 192.6H304.4L355.4 127.4L320.4 86.4C313.7 78.5000000000001 300.7 78.6 294.1 86.4L268.8 116C259.2 127.2 245.7 133 230.5 133.3C215.7 133 202 126.3 192.8 114.7C186.2 106.4 172.3 106.4 165.7 114.7L156.1 126.7L207.6 192.6zM31.7 -32.4L135.8 100.8L140.7 94.7C159.5 71.2 199 71.1 217.8 94.7C221.1 98.8 225.9 101.2 231.1 101.2C236.4 101.1 241.2 99 244.5 95.1L269.8 65.6C279.2 54.6 292.9000000000001 48.3 307.3 48.3C321.7 48.3 335.4000000000001 54.6 344.8 65.6L375.6 101.7L480 -31.9L31.7 -32.4z" />
+    <glyph glyph-name="volleyball-ball"
+      unicode="&#xF45F;"
+      horiz-adv-x="496" d=" M248 440C111.2 440 0 328.8 0 192S111.2 -56 248 -56S496 55.2 496 192S384.8 440 248 440zM420 61.9C334.4 39.5 243.5 57.1 172.3 108.8C193.6 134.4 219.4 156.3 248.8 173.6C333.1 126.5 408.6 128.5 456.3 135.7C449 108.7 436.5 83.7 420 61.9zM462.8 169.1C438.4000000000001 164.5 413.9000000000001 162.7 389.6 164.2C398.3 245.8 376 327.1 327.8 392.5C387 368.9 476 294.3 462.8 169.1zM274.4 406.2C336.7 343.3 367 255.8 357.8 168.1C325 173.7000000000001 293.3 185.1 263.6 201.8C262.6 274.6 237.9 344 192.7 400.7000000000001C232.9 411.2000000000001 262 407.7000000000001 274.4 406.2000000000001zM160.5 389.3C176.6 370.5 190.5 350.2 201.3 328.5C126.4 295.3 67.1 235.3 34.5 161C14 302.2 123.2 372.7 160.5 389.3zM49.2 107.6C72.5 193.1 133.2 263.2000000000001 213.8 299.1C225.3 267.9000000000001 231.3 234.7 231.7 200.7C169.1 163.5 121.4 107.2000000000001 94.9 39.8C75.7 59.2 60 82.1 49.2 107.6zM120.9 17.7C129 40.9 139.7 62.9 153 83.0000000000001C200.5 48.4 278.7 11.1 381.5 22.5000000000001C329 -18.8999999999999 220.8 -55.4 120.9 17.7z" />
+    <glyph glyph-name="volume-down"
+      unicode="&#xF027;"
+      horiz-adv-x="384" d=" M342.9100000000001 253.43C335.1 257.23 325.4100000000001 253.91 321.5700000000001 245.93C317.7600000000001 237.96 321.1300000000001 228.4 329.1 224.59C343.2200000000001 217.8 352 204.94 352 191C352 177.06 343.2200000000001 164.2 329.1 157.42C321.13 153.61 317.7600000000001 144.04 321.5700000000001 136.0800000000001C325.4300000000001 128.03 335.1100000000001 124.79 342.9100000000001 128.5800000000001C368.25 140.72 384 164.64 384 191S368.25 241.29 342.91 253.43zM231.81 383C225.9 383 219.89 380.82 215.03 375.95L126.06 287H24C10.74 287 0 276.26 0 263V119C0 105.75 10.74 95 24 95H126.06L215.03 6.05C219.9 1.18 225.91 -1 231.81 -1C244.14 -1 256 8.52 256 23.02V358.98C256 373.49 244.13 383 231.81 383zM224 42.33L139.31 127H32V255H139.31L224 339.67V42.33z" />
+    <glyph glyph-name="volume-mute"
+      unicode="&#xF6A9;"
+      horiz-adv-x="512" d=" M454.63 192L509.66 247.03C512.78 250.15 512.78 255.22 509.66 258.3400000000001L498.35 269.65C495.23 272.77 490.16 272.77 487.04 269.65L432 214.63L376.9700000000001 269.66C373.85 272.78 368.7800000000001 272.78 365.6600000000001 269.66L354.35 258.35C351.23 255.23 351.23 250.16 354.35 247.04L409.37 192L354.3400000000001 136.97C351.2200000000001 133.85 351.2200000000001 128.78 354.3400000000001 125.66L365.6500000000001 114.35C368.7700000000001 111.23 373.8400000000001 111.23 376.9600000000001 114.35L432 169.37L487.03 114.34C490.15 111.22 495.22 111.22 498.34 114.34L509.65 125.65C512.77 128.7700000000001 512.77 133.84 509.65 136.96L454.63 192zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM224 43.33L148.68 118.63L139.31 128H32V256H139.31L148.68 265.37L224 340.67V43.33z" />
+    <glyph glyph-name="volume-off"
+      unicode="&#xF026;"
+      horiz-adv-x="256.33" d=" M232.14 384C226.23 384 220.22 381.82 215.36 376.95L126.39 288H24.33C11.07 288 0.33 277.26 0.33 264V120C0.33 106.75 11.07 96 24.33 96H126.39L215.36 7.05C220.23 2.18 226.24 0 232.14 0C244.4700000000001 0 256.3300000000001 9.52 256.3300000000001 24.02V359.98C256.3300000000001 374.49 244.4700000000001 384 232.1400000000001 384zM224.33 43.33L139.64 128H32.33V256H139.64L224.33 340.67V43.33z" />
+    <glyph glyph-name="volume-slash"
+      unicode="&#xF2E2;"
+      horiz-adv-x="640" d=" M637 -37.25L23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48C641.01 -45.04 640.45 -40.01 637 -37.25zM361.09 225.58C370.58 221.03 377.35 213.61 380.97 205.09L414.06 179.04C414.93 183.31 415.99 187.55 415.99 192.01C415.99 218.37 400.24 242.29 374.9 254.43C367.09 258.23 357.4 254.91 353.56 246.93C349.75 238.95 353.13 229.39 361.09 225.58zM408.03 322.12C452.41 296.5800000000001 480 246.72 480 192C480 172.16 476.27 153 469.53 135.36L495.47 114.93C506 138.61 512 164.75 512 192C512 258.12 478.28 318.62 423.9700000000001 349.87C416.35 354.24 406.5300000000001 351.65 402.1300000000001 343.98C397.7200000000001 336.33 400.3800000000001 326.55 408.0300000000001 322.12zM438.81 417.8400000000001C523.44 373.3 576 286.75 576 192C576 150.24 565.28 110.34 546.61 74.66L572.16 54.54C594.97 96.01 608 142.89 608 192C608 298.67 548.88 396.06 453.75 446.16C445.87 450.24 436.25 447.28 432.13 439.46C428 431.64 431 421.95 438.81 417.84zM438.81 -33.84C431 -37.95 428 -47.64 432.12 -55.45A16 16 0 0 1 446.28 -64C448.81 -64 451.34 -63.41 453.75 -62.16C475.41 -50.75 494.93 -36.62 512.58 -20.76L486.89 -0.53C472.2500000000001 -13.12 456.41 -24.58 438.8100000000001 -33.84zM256 43.33L171.31 128H64V256H161.13L120.49 288H56C42.74 288 32 277.26 32 264V120C32 106.75 42.74 96 56 96H158.06L247.03 7.05C251.9 2.18 257.9100000000001 0 263.81 0C276.14 0 288 9.52 288 24.02V156.09L256 181.29V43.3299999999999zM256 340.67V303.5L288 278.3V359.98C288 374.49 276.13 384 263.81 384C257.9 384 251.89 381.82 247.03 376.95L209.89 339.81L235.21 319.87L256 340.67z" />
+    <glyph glyph-name="volume-up"
+      unicode="&#xF028;"
+      horiz-adv-x="576" d=" M342.9100000000001 254.43C335.1 258.23 325.4100000000001 254.91 321.5700000000001 246.93C317.7600000000001 238.96 321.1300000000001 229.4 329.1 225.59C343.2200000000001 218.8 352 205.94 352 192S343.2200000000001 165.2 329.1 158.42C321.13 154.61 317.7600000000001 145.04 321.5700000000001 137.0800000000001C325.4300000000001 129.03 335.1100000000001 125.79 342.9100000000001 129.5800000000001C368.25 141.72 384 165.64 384 192S368.25 242.29 342.91 254.43zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM224 43.33L139.31 128H32V256H139.31L224 340.67V43.33zM421.51 446.17C413.62 450.25 403.98 447.29 399.85 439.4700000000001C395.72 431.6600000000001 398.72 421.9700000000001 406.55 417.86C491.3099999999999 373.31 543.9499999999999 286.76 543.9499999999999 192.01S491.3099999999999 10.71 406.55 -33.84C398.73 -37.95 395.72 -47.64 399.85 -55.45C403.95 -63.2 413.53 -66.2900000000001 421.51 -62.15C516.78 -12.06 576 85.33 576 192.01C576 298.68 516.78 396.07 421.51 446.17zM480 192.01C480 258.13 445.98 318.63 391.19 349.88C383.5 354.26 373.6 351.66 369.15 343.99C364.7 336.33 367.38 326.55 375.11 322.13C419.88 296.58 447.72 246.73 447.72 192.01S419.88 87.43 375.11 61.89C367.39 57.47 364.71 47.69 369.15 40.03C373.45 32.65 383.21 29.59 391.19 34.14C445.98 65.38 480 125.88 480 192.01z" />
+    <glyph glyph-name="volume"
+      unicode="&#xF6A8;"
+      horiz-adv-x="480" d=" M342.9100000000001 254.43C335.1 258.23 325.4100000000001 254.91 321.5700000000001 246.93C317.7600000000001 238.96 321.1300000000001 229.4 329.1 225.59C343.2200000000001 218.8 352 205.94 352 192C352 178.06 343.2200000000001 165.2 329.1 158.42C321.13 154.61 317.7600000000001 145.04 321.5700000000001 137.0800000000001C325.4300000000001 129.03 335.1100000000001 125.79 342.9100000000001 129.5800000000001C368.25 141.72 384 165.64 384 192S368.25 242.29 342.91 254.43zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM224 43.33L139.31 128H32V256H139.31L224 340.67V43.33zM480 192.01C480 258.13 445.98 318.63 391.19 349.88C383.5 354.26 373.6 351.66 369.15 343.99C364.7 336.33 367.38 326.55 375.11 322.13C419.88 296.58 447.72 246.73 447.72 192.01S419.88 87.43 375.11 61.89C367.39 57.47 364.71 47.69 369.15 40.03C373.45 32.65 383.21 29.59 391.19 34.14C445.98 65.38 480 125.88 480 192.01z" />
+    <glyph glyph-name="vote-nay"
+      unicode="&#xF771;"
+      horiz-adv-x="640" d=" M393.5 294.2L382.2 305.5C380.6 307.1 378.6 307.8 376.5 307.8S372.4 307 370.8 305.5L320 254.6L269.1 305.5C267.5 307.1 265.5 307.8 263.4000000000001 307.8S259.3 307 257.7000000000001 305.5L246.4000000000001 294.2C243.3000000000001 291.1 243.3000000000001 286 246.4000000000001 282.9L297.3 232L246.4 181.1C243.3 178 243.3 172.9 246.4 169.8L257.7 158.5C259.3 156.8999999999999 261.3 156.1999999999999 263.4 156.1999999999999S267.5 157 269.1 158.5L320 209.4L370.8999999999999 158.5C372.5 156.8999999999999 374.5 156.1999999999999 376.5999999999999 156.1999999999999S380.7 157 382.2999999999999 158.5L393.5999999999999 169.8C396.7 172.9 396.7 178 393.5999999999999 181.1L342.5999999999999 232L393.4999999999999 282.9C396.6999999999999 286 396.6999999999999 291.1 393.4999999999999 294.2zM608 160H544V385.5C544 402.3 529.7 416 512 416H128C110.3 416 96 402.3 96 385.5V160H32C14.3 160 0 145.7 0 128V0C0 -17.7 14.3 -32 32 -32H608C625.7 -32 640 -17.7 640 0V128C640 145.7 625.7 160 608 160zM128 384H512V80H128V384zM608 0H32V128H96V80H73.6C68.3 80 64 76.4 64 72V56C64 51.6 68.3 48 73.6 48H566.4C571.6999999999999 48 576 51.6 576 56V72C576 76.4 571.7 80 566.4 80H544V128H608V0z" />
+    <glyph glyph-name="vote-yea"
+      unicode="&#xF772;"
+      horiz-adv-x="640" d=" M409.3 309.4C407.7 311 405.7 311.7000000000001 403.6 311.7000000000001C401.6 311.7000000000001 399.5 310.9 397.9000000000001 309.4L290.5 201.9L242 250.5C240.4 252.1 238.4 252.8 236.3 252.8C234.3 252.8 232.2 252 230.6 250.5L219.3 239.2C216.2 236.1 216.2 231 219.3 227.9L284.8 162.4C286.4000000000001 160.8 288.4000000000001 160.1 290.5 160.1S294.6 160.9 296.2 162.4L420.7 286.9C423.8 290 423.8 295.1 420.7 298.2L409.3 309.4zM608 160H544V385.5C544 402.3 529.7 416 512 416H128C110.3 416 96 402.3 96 385.5V160H32C14.3 160 0 145.7 0 128V0C0 -17.7 14.3 -32 32 -32H608C625.7 -32 640 -17.7 640 0V128C640 145.7 625.7 160 608 160zM128 384H512V80H128V384zM608 0H32V128H96V80H73.6C68.3 80 64 76.4 64 72V56C64 51.6 68.3 48 73.6 48H566.4C571.6999999999999 48 576 51.6 576 56V72C576 76.4 571.7 80 566.4 80H544V128H608V0z" />
+    <glyph glyph-name="vr-cardboard"
+      unicode="&#xF729;"
+      horiz-adv-x="640" d=" M592 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H213.82C239.01 0 261.85 14.77 272.18 37.74L288.74 74.54C294.6600000000001 87.69 306.76 96 320 96S345.34 87.69 351.26 74.54L367.82 37.74C378.15 14.77 401 0 426.18 0H592C618.51 0 640 21.49 640 48V336C640 362.51 618.51 384 592 384zM608 48C608 39.18 600.82 32 592 32H426.18C413.61 32 402.1600000000001 39.41 397 50.87L380.44 87.67C369.42 112.17 345.69 128 320 128S270.58 112.17 259.56 87.67L243 50.87C237.84 39.41 226.39 32 213.82 32H48C39.18 32 32 39.18 32 48V336C32 344.82 39.18 352 48 352H592C600.82 352 608 344.82 608 336V48zM176 288C131.82 288 96 252.19 96 208C96 163.82 131.82 128 176 128S256 163.82 256 208S220.18 288 176 288zM176 160C149.53 160 128 181.53 128 208S149.53 256 176 256S224 234.47 224 208S202.47 160 176 160zM464 288C419.82 288 384 252.19 384 208C384 163.82 419.82 128 464 128S544 163.82 544 208S508.18 288 464 288zM464 160C437.53 160 416 181.53 416 208S437.53 256 464 256S512 234.47 512 208S490.47 160 464 160z" />
+    <glyph glyph-name="walking"
+      unicode="&#xF554;"
+      horiz-adv-x="320" d=" M305.5 200.7L285.9 221.8L277.2 250.3C269.3 276.4 253.9 298.1 234 313.1C253.3 326.5 266 348.8 266 374C266 414.8 232.8 448 192 448S118 414.8 118 374C118 358.3 122.9 343.7 131.3 331.7C116.6 327.9 102.9 321.9 86 314.3L77.4 310.5C53.4 300 34 280.4 22.5 255.3L10.7 227.3C3.4 210.1 5 191.6 14.9 176.6C24.6 162 41.2 153 58.4 153C70.9 153 82.4 157.7 91.3 165.9C91.5 164.5 91.7 163.2 91.9 161.8L77.7 122.9L61.4 78.3L14 25.9C-4.7 5.5 -4.7 -26.5 14 -47C23.6 -57.5 37.2 -63.6 51.2 -63.6C65.2 -63.6 78.8 -57.6 88.4 -47L135.1 4.2C144.7 14.8 152.1 27.1 157.1 40.7L165.8 64.6L176.4 53.9C176.9 53.4 177.2 52.6 177.3 52L192.9 -22.2C198 -46.5 219 -64 242.8 -64C246.8 -64 250.9 -63.5 254.9 -62.5C282.3 -55.6 298.9 -27.9 292.9 0.4L277.3 74.5C274.5 87.7 269.5 100.1 262.6 111.2C264.4 111 266.2 110.9 268.1 110.9C288.4 110.9 307 123.5 315.5 143.1C324.1 162.6 320.2 184.7 305.5 200.7zM192 416C215.2 416 234 397.2 234 374S215.2 332 192 332S150 350.8 150 374S168.8 416 192 416zM127 51.7C123.5 42 118.2 33.3 111.4 25.8L64.7 -25.4C61 -29.5 56.1 -31.6 51.1 -31.6C46.2 -31.6 41.3 -29.4999999999999 37.5 -25.4C30 -17.2 30 -3.9 37.5 4.3L84.2 55.5C87.3 58.9 89.7 62.9 91.3 67.3L107.6 111.9L107.7 111.8L108.7 110.6L137.7 81.3L127 51.7zM268.1 142.8C263.7000000000001 142.8 259.1 144.6 255.1 149L231.6 174.3C226.6 179.6999999999999 222.8 186.4 220.6 193.7C209.2 231.2 209.1 233.6 203.1 242.2L182.2 150.5L225.2 107.1C235.6 96.4999999999999 242.9 82.9 246.0000000000001 67.8L261.6 -6.3000000000001C264 -17.6000000000001 257.6 -28.9000000000001 247.2 -31.5000000000001C245.7 -31.9 244.2 -32.0000000000001 242.8 -32.0000000000001C233.4 -32.0000000000001 226.1 -24.4 224.2 -15.7L208.6 58.4999999999999C207.2 65.3999999999999 203.9 71.4999999999999 199.1 76.3L136 140.2C124.4 154 120.3 171.4 124.1 187.9L139.9 257.2C130.9 254 121.8 249.9 104.5 242.2C96.5 238.7 90 232.2 86.2 223.8L75 197.2C71.3 188.5 64.9 184.9 58.4 184.9C45.9 184.9 33.2 198.3 40.2 214.8L51.7 242C60 260.2 73.6 273.9 90.3 281.2C124.5 296.3 139 304 166.9 304C203.2 304 235.2 278.7 246.7 241L257 207.1C257.3 206.1 257.8 205.1 258.6 204.3L282 179C296.1 163.7 282.9 142.8 268.1 142.8z" />
+    <glyph glyph-name="wallet"
+      unicode="&#xF555;"
+      horiz-adv-x="512" d=" M384 192C366.33 192 352 177.67 352 160S366.33 128 384 128S416 142.33 416 160S401.67 192 384 192zM464 352H448V368C448 394.51 426.51 416 400 416H96C42.98 416 0 373.02 0 320V64C0 10.98 42.98 -32 96 -32H448C483.35 -32 512 -3.35 512 32V304C512 330.51 490.51 352 464 352zM480 32C480 14.36 465.64 0 448 0H96C60.71 0 32 28.71 32 64V320C32 355.29 60.71 384 96 384H400C408.82 384 416 376.82 416 368V352H112C103.16 352 96 344.8400000000001 96 336S103.16 320 112 320H464C472.82 320 480 312.82 480 304V32z" />
+    <glyph glyph-name="wand-magic"
+      unicode="&#xF72B;"
+      horiz-adv-x="512" d=" M458.66 106.67L432 160L405.34 106.67L352 80L405.3400000000001 53.33L432 0L458.66 53.33L512 80L458.66 106.67zM432 64C423.1600000000001 64 416 71.16 416 80S423.1600000000001 96 432 96S448 88.84 448 80S440.84 64 432 64zM224 352L240 384L272 400L240 416L224 448L208 416L176 400L208 384L224 352zM400 256C408.84 256 416 263.16 416 272V299.9600000000001L507.87 401.79C513.59 408.11 513.35 417.81 507.32 423.8400000000001L487.84 443.31A15.97 15.97 0 0 1 476.52 448C472.68 448 468.84 446.63 465.79 443.87L186.6 192H144C135.16 192 128 184.84 128 176V139.13L10.53 33.16C-3.04 20.8800000000001 -3.57 -0.26 9.37 -13.2L50.8 -54.63C57.06 -60.9 65.25 -64 73.42 -64C82.13 -64 90.82 -60.47 97.15 -53.47L376.34 256H400zM73.43 -32L31.97 9.4L455.35 391.35L73.43 -32zM80 288L106.66 341.33L160 368L106.66 394.67L80 448L53.34 394.67L0 368L53.34 341.33L80 288zM80 384C88.84 384 96 376.8400000000001 96 368S88.84 352 80 352S64 359.16 64 368S71.16 384 80 384z" />
+    <glyph glyph-name="wand"
+      unicode="&#xF72A;"
+      horiz-adv-x="512" d=" M400 256C408.84 256 416 263.16 416 272V299.9600000000001L507.87 401.79C513.59 408.11 513.35 417.81 507.32 423.8400000000001L487.84 443.31A15.97 15.97 0 0 1 476.52 448C472.68 448 468.84 446.63 465.79 443.87L186.6 192H144C135.16 192 128 184.84 128 176V139.13L10.53 33.16C-3.04 20.8800000000001 -3.57 -0.26 9.37 -13.2L50.8 -54.63C57.06 -60.9 65.25 -64 73.42 -64C82.13 -64 90.82 -60.47 97.15 -53.47L376.34 256H400zM73.43 -32L31.97 9.4L455.35 391.35L73.43 -32z" />
+    <glyph glyph-name="warehouse-alt"
+      unicode="&#xF495;"
+      horiz-adv-x="640" d=" M528 96H352V208C352 216.8 344.8 224 336 224H112C103.2 224 96 216.8 96 208V-48C96 -56.8 103.2 -64 112 -64H528C536.8 -64 544 -56.8 544 -48V80C544 88.8 536.8 96 528 96zM320 -32H128V64H320V-32zM320 96H128V192H320V96zM512 -32H352V64H512V-32zM610.6 329.7L338.6 444.3C326.8 449.3 313.3 449.3 301.4000000000001 444.3L29.4 329.7C11.5 322.2 0 304.8 0 285.5V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V285.5C32 292 35.8 297.7 41.8 300.3L313.8 414.9C317.7 416.6 322.3 416.6 326.2 414.9L598.2 300.3C604.2 297.8 608 292 608 285.5V-56C608 -60.4 611.6 -64 616 -64H632C636.4 -64 640 -60.4 640 -56V285.5C640 304.8 628.5 322.2 610.6 329.7z" />
+    <glyph glyph-name="warehouse"
+      unicode="&#xF494;"
+      horiz-adv-x="640" d=" M512 224H128C110.3 224 96 209.6 96 192V-56C96 -60.4 99.6 -64 104 -64H120C124.4 -64 128 -60.4 128 -56V0H512V-56C512 -60.4 515.6 -64 520 -64H536C540.4 -64 544 -60.4 544 -56V192C544 209.6 529.7 224 512 224zM512 32H128V96H512V32zM512 128H128V192H512V128zM610.6 329.7L338.6 444.3C326.8 449.3 313.3 449.3 301.4000000000001 444.3L29.4 329.7C11.5 322.2 0 304.8 0 285.5V-56C0 -60.4 3.6 -64 8 -64H24C28.4 -64 32 -60.4 32 -56V285.5C32 292 35.8 297.7 41.8 300.3L313.8 414.9C317.7 416.6 322.3 416.6 326.2 414.9L598.2 300.3C604.2 297.8 608 292 608 285.5V-56C608 -60.4 611.6 -64 616 -64H632C636.4 -64 640 -60.4 640 -56V285.5C640 304.8 628.5 322.2 610.6 329.7z" />
+    <glyph glyph-name="watch-fitness"
+      unicode="&#xF63E;"
+      horiz-adv-x="384" d=" M248.42 279.99C232.66 279.99 213.4 273.29 192 252.25C170.6 273.29 151.34 279.99 135.58 279.99C119.11 279.99 106.47 272.68 99.2 266.77C70.93 243.82 69.45 202.6 94.75 177.73L181.83 92.14C187.44 86.62 196.56 86.61 202.19 92.14L289.27 177.73C314.57 202.6 313.08 243.82 284.81 266.7700000000001C277.5300000000001 272.6800000000001 264.88 279.99 248.42 279.99zM266.83 200.55L192 127L117.17 200.55C105.4 212.12 105.98 231.06 119.37 241.93C130.47 250.95 146.52 252.09 169.57 229.43L192 207.37L214.43 229.42C237.39 251.99 253.44 251 264.63 241.9100000000001C278.05 231.0300000000001 278.57 212.1 266.83 200.55zM320 366.39V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V366.39C27.48 358.9700000000001 0 326.7 0 288V96C0 57.3 27.48 25.03 64 17.61V-32C64 -49.67 78.33 -64 96 -64H288C305.67 -64 320 -49.67 320 -32V17.61C356.52 25.02 384 57.3 384 96V288C384 326.7 356.52 358.9700000000001 320 366.39zM96 416H288V368H96V416zM288 -32H96V16H288V-32zM352 96C352 69.53 330.4700000000001 48 304 48H80C53.53 48 32 69.53 32 96V288C32 314.4700000000001 53.53 336 80 336H304C330.4700000000001 336 352 314.4700000000001 352 288V96z" />
+    <glyph glyph-name="watch"
+      unicode="&#xF2E1;"
+      horiz-adv-x="384" d=" M320 335.1V424C320 437.2 309.2 448 296 448H88C74.8 448 64 437.2 64 424V335.1C24.7 299.9 0 248.9 0 192S24.7 84.1 64 48.9V-40C64 -53.2 74.8 -64 88 -64H296C309.2 -64 320 -53.2 320 -40V48.9C359.3 84.1 384 135.1 384 192S359.3 299.9 320 335.1zM96 416H288V358.3C259.8 374.7 227 384 192 384S124.2 374.7 96 358.3V416zM288 -32H96V25.7C124.2 9.4 157 0 192 0S259.8 9.4 288 25.7V-32zM192 32C103.4 32 32 103.8 32 192S103.5 352 192 352C280.4 352 352 280.4 352 192S280.4 32 192 32zM241 124.2L180.9 167.9C177.8 170.2 176 173.8 176 177.6V297.7C176 304.3 181.4 309.7 188 309.7H196C202.6 309.7 208 304.3 208 297.7V187.8L259.8 150.1C265.2 146.2 266.3 138.7 262.4000000000001 133.3L257.7000000000001 126.8C253.9000000000001 121.5 246.4000000000001 120.3 241.0000000000001 124.1999999999999z" />
+    <glyph glyph-name="water-lower"
+      unicode="&#xF774;"
+      horiz-adv-x="576" d=" M276.7 212.3C279.8 209.4 283.9 207.9 288 207.9S296.2 209.4 299.3 212.3L389.6 297C392.7000000000001 299.9 392.7000000000001 304.7 389.6 307.6L378.3 318.2C375.2 321.1 370.1 321.1 367 318.2L304 259.1V440.5C304 444.6 300.4 448 296 448H280C275.6 448 272 444.6 272 440.5V259.2L209 318.3C205.9 321.2 200.8 321.2 197.7 318.3L186.4 307.7C183.3 304.8 183.3 300 186.4 297.1L276.7 212.3zM568.3 -2C538.8 -0.6 510.6 8.9 490.1 24.5C484.2 29 475.8 29 469.9 24.4C426.2 -9.2 342.9 -9.6 298.1 24.5C292.2 29 283.8 29 277.9 24.4C234.2 -9.2 150.9 -9.6 106.1 24.5C100.2 29 91.8 28.9 85.9 24.4C65.7 8.8 37.6 -0.6 7.8 -2C3.5 -2.2 0.1 -5.4 0.1 -9.4V-24.4C0.1 -28.6 3.9 -32.2 8.4 -32C40.7 -30.6 71.7 -21.4 96.2 -5.8C150 -39.7 235.4 -39.3 288.2 -5.8C341.8999999999999 -39.7 427.3999999999999 -39.3 480.1999999999999 -5.8C504.8 -21.3 535.8 -30.6 567.8 -32C572.3 -32.2 576.0999999999999 -28.7 576.0999999999999 -24.4V-9.4C575.9999999999999 -5.4 572.5999999999999 -2.2 568.3 -2zM568.3 117.9C538.8 119.3 510.6 128.8 490.1 144.4C484.2 148.9 475.8 148.9 469.9 144.3C426.2 110.6999999999999 342.9 110.3 298.1 144.4C292.2 148.9 283.8 148.9 277.9 144.3C234.2 110.6999999999999 150.9 110.3 106.1 144.4C100.2 148.9 91.8 148.8 85.9 144.3C65.7 128.6999999999999 37.6 119.3 7.8 117.9C3.5 117.7 0.1 114.5 0.1 110.5V95.5C0.1 91.3 3.9 87.7 8.4 87.9C40.7 89.3 71.7 98.5 96.2 114.1C150 80.2 235.4 80.6 288.2 114.1C341.8999999999999 80.2 427.3999999999999 80.6 480.1999999999999 114.1C504.8 98.6 535.8 89.3 567.8 87.9C572.3 87.7 576.0999999999999 91.2 576.0999999999999 95.5V110.5C575.9999999999999 114.5 572.5999999999999 117.7 568.3 117.9z" />
+    <glyph glyph-name="water-rise"
+      unicode="&#xF775;"
+      horiz-adv-x="576" d=" M197.7 330.3C200.8 327.2 205.9 327.2 209 330.3L272 393.3V199.9C272 195.5 275.6 191.9 280 191.9H296C300.4 191.9 304 195.5 304 199.9V393.4L367 330.4C370.1 327.3 375.2 327.3 378.3 330.4L389.6 341.7C392.7000000000001 344.8 392.7000000000001 349.9 389.6 353L299.3 443.3C296.2 446.4 292.1 448 288 448S279.8 446.4 276.7 443.3L186.4 352.9C183.3 349.8 183.3 344.7 186.4 341.6L197.7 330.3zM568.3 -32C538.8 -30.5 510.6 -20.4 490.1 -3.7C484.2 1.1 475.8 1.1 469.9 -3.8C426.2 -39.7 342.9 -40.1 298.1 -3.7C292.2 1.1 283.8 1.1 277.9 -3.8C234.2 -39.7 150.9 -40.1 106.1 -3.7C100.2 1.1 91.8 1 85.9 -3.8C65.7 -20.4 37.5 -30.5 7.7 -32C3.4 -32.2 0 -35.6 0 -39.9V-55.9C0 -60.4 3.8 -64.1999999999999 8.3 -64C40.6 -62.5 71.6 -52.6 96.1 -36.1C149.9 -72.2 235.3 -71.9 288.1 -36.1C341.8 -72.2 427.3 -71.9 480.1 -36.1C504.7 -52.6 535.6999999999999 -62.5 567.6999999999999 -64C572.1999999999999 -64.2 575.9999999999999 -60.4 575.9999999999999 -55.9V-39.9C575.9999999999999 -35.6 572.5999999999999 -32.2 568.2999999999998 -32zM568.3 96.1C538.8 97.6 510.6 107.7000000000001 490.1 124.4C484.2 129.2000000000001 475.8 129.2000000000001 469.9 124.3C426.2 88.4 342.9 88 298.1 124.4C292.2 129.2000000000001 283.8 129.2000000000001 277.9 124.3C234.2 88.4 150.9 88 106.1 124.4C100.2 129.2000000000001 91.8 129.1 85.9 124.3C65.7 107.7 37.6 97.6 7.8 96.1C3.5 95.9 0.1 92.5 0.1 88.2000000000001V72.2000000000001C0.1 67.7000000000001 3.9 63.9 8.4 64.1C40.7 65.6 71.7 75.5 96.2 92C150 55.9 235.4 56.2 288.2 92C341.8999999999999 55.9 427.3999999999999 56.2 480.1999999999999 92C504.8 75.5 535.8 65.6 567.8 64.1C572.3 63.9 576.0999999999999 67.7000000000001 576.0999999999999 72.2000000000001V88.2000000000001C575.9999999999999 92.5000000000001 572.5999999999999 95.8000000000001 568.3 96.1z" />
+    <glyph glyph-name="water"
+      unicode="&#xF773;"
+      horiz-adv-x="576" d=" M568.3 32C538.8 33.5 510.6 43.6 490.1 60.3C484.2 65.1 475.8 65.1 469.9 60.2C426.2 24.3 342.9 23.9 298.1 60.3C292.2 65.1 283.8 65.1 277.9 60.2C234.2 24.3 150.9 23.9 106.1 60.3C100.2 65.1 91.8 65 85.9 60.2C65.7 43.6 37.5 33.5 7.7 32C3.4 31.8 0 28.4 0 24.1V8.1C0 3.6 3.8 -0.2 8.3 0C40.6 1.5 71.6 11.4 96.1 27.9C149.9 -8.2 235.3 -7.9 288.1 27.9C341.8 -8.2 427.3 -7.9 480.1 27.9C504.7 11.4 535.6999999999999 1.5 567.6999999999999 0C572.1999999999999 -0.2 575.9999999999999 3.6 575.9999999999999 8.1V24.1C575.9999999999999 28.4 572.5999999999999 31.8 568.2999999999998 32zM568.3 138.7C538.8 140.2 510.6 150.3 490.1 167C484.2 171.8 475.8 171.8 469.9 166.9C426.2 131 342.9 130.6 298.1 167C292.2 171.8 283.8 171.8 277.9 166.9C234.2 131 150.9 130.6 106.1 167C100.2 171.8 91.8 171.7 85.9 166.9C65.7 150.3 37.6 140.2 7.8 138.7C3.5 138.5 0.1 135.1 0.1 130.8V114.8C0.1 110.3 3.9 106.5 8.4 106.7C40.7 108.2 71.7 118.1 96.2 134.6C150 98.4999999999999 235.4 98.8 288.2 134.6C341.8999999999999 98.4999999999999 427.3999999999999 98.8 480.1999999999999 134.6C504.8 118.1 535.8 108.2 567.8 106.7C572.3 106.5 576.0999999999999 110.3 576.0999999999999 114.8V130.8C575.9999999999999 135.1 572.5999999999999 138.5 568.3 138.7zM568.3 245.4C538.8 246.9 510.6 257 490.1 273.7C484.2 278.5 475.8 278.5 469.9 273.6C426.2 237.7 342.9 237.3 298.1 273.7C292.2 278.5 283.8 278.5 277.9 273.6C234.2 237.7 150.9 237.3 106.1 273.7C100.2 278.5 91.8 278.4 85.9 273.6C65.7 257 37.5 246.9 7.7 245.4C3.4 245.2 0 241.8 0 237.5V221.5C0 217 3.8 213.2 8.3 213.4C40.6 214.9 71.6 224.8 96.1 241.3C149.9 205.2 235.3 205.5 288.1 241.3C341.8 205.2 427.3 205.5 480.1 241.3C504.7 224.8 535.6999999999999 214.9 567.6999999999999 213.4C572.1999999999999 213.2 575.9999999999999 217 575.9999999999999 221.5V237.5C575.9999999999999 241.8 572.5999999999999 245.2 568.2999999999998 245.4zM568.3 352.1C538.8 353.6 510.6 363.7 490.1 380.4C484.2 385.2 475.8 385.2 469.9 380.3C426.2 344.4 342.9 344 298.1 380.4C292.2 385.2 283.8 385.2 277.9 380.3C234.2 344.4 150.9 344 106.1 380.4C100.2 385.2 91.8 385.1 85.9 380.3C65.7 363.7 37.5 353.6 7.7 352.1C3.4 351.9 0 348.5 0 344.2V328.2C0 323.7 3.8 319.9 8.3 320.1C40.6 321.6 71.6 331.5 96.1 348C149.9 311.9 235.3 312.2 288.1 348C341.8 311.9 427.3 312.2 480.1 348C504.7 331.5 535.7 321.6 567.7 320.1C572.2 319.9 576 323.7 576 328.2V344.2C576 348.5 572.6 351.9 568.3 352.1z" />
+    <glyph glyph-name="weight-hanging"
+      unicode="&#xF5CD;"
+      horiz-adv-x="512" d=" M510.28 2.14L437.25 294.27C433.45 309.46 420.81 319.99 406.38 319.99H319.64C329.77 333.4 336 349.91 336 368C336 412.18 300.18 448 256 448S176 412.18 176 368C176 349.91 182.23 333.4 192.36 320H105.62C91.19 320 78.54 309.4600000000001 74.75 294.28L1.72 2.14C-6.61 -31.17 16.38 -64 48.03 -64H463.98C495.62 -64 518.61 -31.17 510.28 2.14zM208 368C208 394.4700000000001 229.53 416 256 416S304 394.4700000000001 304 368S282.4700000000001 320 256 320S208 341.53 208 368zM475.27 -25.92C473.1 -28.69 469.39 -32 463.97 -32H48.03C42.61 -32 38.9 -28.7 36.73 -25.92C32.44 -20.43 30.96 -12.84 32.77 -5.62L105.8 286.51C106.01 287.3400000000001 106.32 287.83 106.23 287.99H405.54C405.74 287.73 406.0100000000001 287.27 406.2000000000001 286.51L479.23 -5.62C481.04 -12.84 479.56 -20.43 475.27 -25.92z" />
+    <glyph glyph-name="weight"
+      unicode="&#xF496;"
+      horiz-adv-x="512" d=" M448 384H383.19C353.95 422.62 308.07 448 256 448S158.05 422.62 128.81 384H64C28.71 384 0 355.29 0 320V0C0 -35.29 28.71 -64 64 -64H448C483.29 -64 512 -35.29 512 0V320C512 355.29 483.29 384 448 384zM256 416C326.69 416 384 358.69 384 288S326.69 160 256 160S128 217.31 128 288S185.31 416 256 416zM480 0C480 -17.67 465.67 -32 448 -32H64C46.33 -32 32 -17.67 32 0V320C32 337.67 46.33 352 64 352H109.56C100.94 332.37 96 310.78 96 288C96 199.78 167.78 128 256 128S416 199.78 416 288C416 310.78 411.06 332.37 402.44 352H448C465.67 352 480 337.67 480 320V0zM256 192C282.4700000000001 192 304 213.53 304 240C304 253.92 297.95 266.36 288.46 275.13L318.7 345.7C322.18 353.81 318.42 363.22 310.29 366.7C302.21 370.18 292.77 366.43 289.29 358.29L259.03 287.69C223.57 290 208 259.35 208 240C208 213.53 229.53 192 256 192zM256 256C264.84 256 272 248.84 272 240S264.84 224 256 224S240 231.16 240 240S247.16 256 256 256z" />
+    <glyph glyph-name="whale"
+      unicode="&#xF72C;"
+      horiz-adv-x="640" d=" M432 160C423.1600000000001 160 416 152.84 416 144S423.1600000000001 128 432 128S448 135.16 448 144S440.84 160 432 160zM512 320C301.5 320 224.65 96 179.88 96C168.92 96 160 104.92 160 115.88V224L207.38 248.9C217.77 254.83 224 264.8300000000001 224 275.52V367.9700000000001C224 377.38 214.99 384 205.28 384C201.81 384 198.25 383.15 194.98 381.29L112 333.87L29.02 381.29A20.781 20.781 0 0 1 18.72 384C9.01 384 0 377.39 0 367.9700000000001V275.52C0 264.82 6.24 254.83 16.62 248.9L64 224V115.88C64 51.88 115.88 0 179.88 0H560C604.18 0 640 35.82 640 80V191.46C640 264.41 576 320 512 320zM608 80C608 53.53 586.47 32 560 32H179.88C133.63 32 96 69.63 96 115.88V243.33L32 277.17V342.73L112 297.02L192 342.73V276.9700000000001L128 243.3300000000001V115.8700000000001C128 87.27 151.27 63.9900000000001 179.88 63.9900000000001C209.68 63.9900000000001 229.83 89.9400000000001 260.33 129.2200000000001C309.4100000000001 192.46 383.6 288 512 288C557.41 288 608 248.35 608 191.46V80z" />
+    <glyph glyph-name="wheat"
+      unicode="&#xF72D;"
+      horiz-adv-x="512" d=" M454.06 276.63C449.62 281.06 444.82 284.88 439.81 288.27C454.5 293.53 468.09 300.51 479.04 310.69C505.62 339.55 513.82 385.73 511.68 430.78C511.24 440.01 503.65 447.25 494.42 447.69C490.14 447.88 485.66 448 481.02 448C446.7100000000001 448 404.0300000000001 441.58 375.2500000000001 414.85C364.4100000000001 403.9700000000001 356.9300000000001 390.75 351.7900000000001 376.88C348.6000000000001 381.44 345.1800000000001 385.89 341.1100000000001 389.95L306.6600000000001 424.38C300.4200000000001 430.62 290.2900000000001 430.63 284.0400000000001 424.38L250.33 390.7C232.83 373.2100000000001 223.84 350.63 222.67 327.73L216.33 334.06C210.09 340.3 199.96 340.31 193.71 334.06L160 300.37C142.42 282.8 133.41 260.0900000000001 132.31 237.07L125.83 243.55C119.59 249.79 109.46 249.8 103.21 243.55L69.5 209.86C31.99 172.37 31.99 111.56 69.5 74.06L92.46 51.11L4.7 -36.69C-1.55 -42.94 -1.55 -53.07 4.7 -59.31C7.81 -62.44 11.91 -64 16 -64S24.19 -62.44 27.31 -59.31L114.86 28.28L137.7 5.45C156.44 -13.28 181 -22.65 205.57 -22.65S254.69 -13.28 273.44 5.45L307.21 39.2C313.46 45.45 313.46 55.58 307.21 61.83L300.74 68.3C323.72 69.41 346.4 78.41 363.95 95.96L397.7199999999999 129.71C403.9699999999999 135.96 403.9699999999999 146.09 397.7199999999999 152.34L391.39 158.66C414.26 159.85 436.81 168.8200000000001 454.2799999999999 186.28L488.0499999999999 220.03C494.2999999999999 226.2800000000001 494.2999999999999 236.4100000000001 488.0499999999999 242.6600000000001L454.0599999999999 276.63zM397.03 391.41C418.62 411.4700000000001 453.85 415.89 479.99 416C479.78 379.9700000000001 471.3699999999999 350.35 456.3199999999999 333.29C434.33 313.66 399.33 309.51 373.66 309.51H373.28C372.94 335.45 377.23 371.5 397.03 391.41zM272.95 368.06L295.35 390.45L318.49 367.33C342.87 342.96 343.91 303.2 319.18 277.64C318.89 277.39 318.5199999999999 277.3 318.25 277.02L295.87 254.63L272.95 277.54C247.94 302.53 247.91 343.03 272.95 368.06zM182.62 277.73L205.02 300.12L228.1600000000001 276.99C241.7800000000001 263.37 261.9100000000001 223.78 230.11 188.8300000000001L205.56 164.2700000000001L182.62 187.2000000000001C157.6 212.2000000000001 157.58 252.7000000000001 182.62 277.73zM92.11 96.69C67.09 121.69 67.07 162.19 92.11 187.22L114.51 209.61L137.65 186.48C161.43 162.72 163.28 124.06 139.4 98.08L115.07 73.7400000000001L92.11 96.6900000000001zM250.81 28.08C225.81 3.1 185.35 3.07 160.32 28.08L137.66 50.73L160.11 73.16C185.1 98.14 225.57 98.18 250.6 73.16L273.26 50.51L250.81 28.08zM341.32 118.59C316.32 93.61 275.86 93.58 250.83 118.59L228.17 141.24L250.62 163.67C275.61 188.65 316.08 188.69 341.11 163.67L363.77 141.02L341.32 118.59zM431.65 208.92C406.65 183.94 366.19 183.91 341.16 208.92L318.5 231.57L340.95 254C365.94 278.98 406.41 279.02 431.44 254L454.1 231.35L431.6500000000001 208.92z" />
+    <glyph glyph-name="wheelchair"
+      unicode="&#xF193;"
+      horiz-adv-x="448" d=" M443.875 51.677L447.026 44.324C449.637 38.232 446.815 31.178 440.723 28.567L398.302 9.294C390.644 6.01 380.957 8.994 377.127 18.091L317.376 160H176A16 16 0 0 0 160.161 173.737C125.779 414.414 128.211 396.835 128 400C128 427.13 150.508 449.003 177.87 447.964C202.748 447.019 223.02 426.748 223.965 401.87C225.004 374.509 203.131 352 176 352C172.885 352 169.844 352.307 166.895 352.874L176.162 288H308C314.627 288 320 282.627 320 276V268C320 261.373 314.627 256 308 256H180.734L189.877 192H328A16 16 0 0 0 342.746 182.209L400.498 45.05L428.119 57.979C434.21 60.59 441.265 57.768 443.875 51.677zM316.387 79.888C301.755 15.893 244.366 -32 176 -32C96.599 -32 32 32.599 32 112C32 170.714 67.326 221.325 117.836 243.717L113.165 276.396C47.059 251.043 0 186.919 0 112C0 14.953 78.953 -64 176 -64C245.906 -64 306.418 -23.031 334.801 36.155L316.387 79.888z" />
+    <glyph glyph-name="whistle"
+      unicode="&#xF460;"
+      horiz-adv-x="640" d=" M210 258.6C174.3 258.6 145.4 229.7 145.4 194C145.4 158.3 174.3 129.4 210 129.4S274.6 158.3 274.6 194C274.6 229.7 245.7 258.6 210 258.6zM210 161.7C192.2 161.7 177.7 176.2 177.7 194C177.7 211.8 192.2 226.3 210 226.3S242.3 211.8 242.3 194C242.3 176.2 227.8 161.7 210 161.7zM464.2 245.4L436.5 229C433.6 227.3 430 227.5 427.3 229.6L401.9 250C399.2 252.1 398.2 255.7 399.3 258.9L409.6 288.7000000000001C411.8 295.2000000000001 409.7 302.3 404.4 306.6C336.4 361 296.6 403.9000000000001 209.9 403.9000000000001C176.9 403.9000000000001 143.9 396.1 113.8 380.6C101.5 395.2 83.8 404 64.6 404C29 404 0 375 0 339.4C0 319.9 8.7 301.9 23.2 289.8C-17.3 210.8 -4.6 111.6 61.5 45.5C102.5 4.5 156.2 -16 210 -16S317.5 4.5 358.5 45.5C368.6 55.6 377.4 66.4 385 77.9L536.9 -8.9C544 -12.9 552.9 -11.1 557.8 -4.6L636.8 100.7C642 107.7 640.8 117.6 634 123L482.5 244.2C477.3 248.4 470 248.9 464.2 245.4zM32.3 339.4C32.3 357.2 46.8 371.7 64.6 371.7C72.7 371.7 80.4 368.7 86.2 363.4C77.6 357.1 69.2 350.3 61.5 342.5C53.8 334.8 47.1 326.5 40.8 318C35.6 323.8 32.3 331.2 32.3 339.4zM544.8 31.9C542.4 28.6 537.9 27.7 534.3 29.7L374.8 120.9C361.6 101 317.8 16.7 210.7 16.3C52.7 15.6999999999999 -27.6 207.7 84.3 319.6C166.6 401.9 267.7 367.6 304.8 344.1C314 337.4 375.3 288.5 375.3 288.5L363.2 253.3C361 246.8 363.0999999999999 239.7 368.3999999999999 235.4L420.2999999999999 193.9C425.4999999999999 189.6999999999999 432.7999999999999 189.1999999999999 438.5999999999999 192.5999999999999L471.0999999999999 211.7999999999999L595.4999999999999 112.3C598.8999999999999 109.6 599.4999999999999 104.6 596.8999999999999 101.1L544.7999999999998 31.9z" />
+    <glyph glyph-name="wifi-1"
+      unicode="&#xF6AA;"
+      horiz-adv-x="640" d=" M320 128C275.82 128 240 92.18 240 48C240 3.81 275.83 -32 320 -32C364.19 -32 400 3.84 400 48C400 92.18 364.18 128 320 128zM320 0C293.53 0 272 21.53 272 48S293.53 96 320 96S368 74.47 368 48S346.4700000000001 0 320 0z" />
+    <glyph glyph-name="wifi-2"
+      unicode="&#xF6AB;"
+      horiz-adv-x="640" d=" M526.02 177.69C408.68 282.17 231.16 282.03 113.98 177.69C108.93 173.19 108.66 165.38 113.33 160.49L118.86 154.7C123.32 150.03 130.68 149.74 135.52 154.03C240.69 247.41 399.52 247.24 504.5 154.03C509.33 149.74 516.69 150.02 521.16 154.7L526.6899999999999 160.49C531.3399999999999 165.38 531.0699999999999 173.19 526.02 177.69zM320 128C275.82 128 240 92.18 240 48C240 3.81 275.83 -32 320 -32C364.19 -32 400 3.84 400 48C400 92.18 364.18 128 320 128zM320 0C293.53 0 272 21.53 272 48S293.53 96 320 96S368 74.47 368 48S346.4700000000001 0 320 0z" />
+    <glyph glyph-name="wifi-slash"
+      unicode="&#xF6AC;"
+      horiz-adv-x="640" d=" M23 446.25A7.995 7.995 0 0 1 11.76 445L1.76 432.49A7.995 7.995 0 0 1 3.01 421.25L617.01 -62.24A7.995 7.995 0 0 1 628.25 -60.99L638.25 -48.48A7.995 7.995 0 0 1 637 -37.24L23 446.25zM613.98 266.73C618.71 262.25 626.1700000000001 262.37 630.78 266.99L636.47 272.68C641.28 277.5 641.15 285.32 636.21 290.01C503.59 415.82 314.12 447.43 152.91 384.68L183.07 360.93C328.91 410.13 495.78 378.81 613.98 266.73zM361.1600000000001 220.7C412.92 212.99 462.93 190.9 504.48 153.99C509.31 149.7 516.6700000000001 149.98 521.13 154.66L526.66 160.4500000000001C531.3299999999999 165.34 531.06 173.16 526.01 177.66C466.43 230.74 391.35 256.7000000000001 316.52 255.86L361.16 220.7zM324.2200000000001 127.57C322.79 127.65 321.4500000000001 128 320 128C275.82 128 240 92.18 240 48S275.83 -32 320 -32C364.19 -32 400 3.84 400 48C400 55.98 398.4700000000001 63.54 396.3 70.82L324.2200000000001 127.57zM320 0C293.53 0 272 21.53 272 48S293.53 96 320 96S368 74.47 368 48S346.4700000000001 0 320 0zM113.99 177.65C108.94 173.15 108.67 165.34 113.34 160.44L118.87 154.65C123.33 149.97 130.69 149.69 135.53 153.98A276.177 276.177 0 0 0 223.63 206.78L194.91 229.39C166.05 216.67 138.64 199.61 113.99 177.65zM3.79 290C-1.15 285.31 -1.29 277.49 3.53 272.67L9.22 266.98C13.83 262.37 21.28 262.24 26.02 266.7200000000001C45.11 284.8200000000001 65.56 300.5800000000001 86.86 314.48L60.49 335.24C40.78 321.7200000000001 21.66 306.95 3.79 290z" />
+    <glyph glyph-name="wifi"
+      unicode="&#xF1EB;"
+      horiz-adv-x="640" d=" M320 128C275.82 128 240 92.18 240 48C240 3.81 275.83 -32 320 -32C364.19 -32 400 3.84 400 48C400 92.18 364.18 128 320 128zM320 0C293.53 0 272 21.53 272 48S293.53 96 320 96S368 74.47 368 48S346.4700000000001 0 320 0zM636.21 290.05C459.22 457.9 180.95 458.06 3.79 290.05C-1.15 285.36 -1.29 277.54 3.53 272.73L9.22 267.04C13.83 262.43 21.29 262.3 26.02 266.79C191.01 423.18 449.66 422.55 613.99 266.79C618.72 262.3100000000001 626.1800000000001 262.4400000000001 630.79 267.04L636.48 272.73C641.29 277.54 641.15 285.36 636.21 290.05zM526.02 177.69C408.68 282.17 231.16 282.03 113.98 177.69C108.93 173.19 108.66 165.38 113.33 160.49L118.86 154.7C123.32 150.03 130.68 149.74 135.52 154.03C240.69 247.41 399.52 247.24 504.5 154.03C509.33 149.74 516.69 150.02 521.16 154.7L526.6899999999999 160.49C531.3399999999999 165.38 531.0699999999999 173.19 526.02 177.69z" />
+    <glyph glyph-name="wind-warning"
+      unicode="&#xF776;"
+      horiz-adv-x="640" d=" M192 448C86 448 0 362 0 256S86 64 192 64S384 150 384 256S298 448 192 448zM192 96C103.8 96 32 167.8 32 256S103.8 416 192 416S352 344.2 352 256S280.2 96 192 96zM183.5 240H200.5C204.7 240 208.2 243.3 208.5 247.5L215.5 359.5C215.8 364.1 212.1 368 207.5 368H176.5C171.9 368 168.2 364.1 168.5 359.5L175.5 247.5C175.8 243.3 179.3 240 183.5 240zM192 216C178.7 216 168 205.3 168 192S178.7 168 192 168S216 178.7 216 192S205.3 216 192 216zM539.7 128H375.6C367.6 116.5 358.5 105.8 348.5 96H540.9C574.3 96 604.1999999999999 71.6 607.4 38.4C611.1 0.3 581.1 -32 543.6999999999999 -32C510.8999999999999 -32 483.8 -7.2 480.0999999999999 24.5C479.5999999999999 28.7 476.3999999999999 31.9 472.1999999999999 31.9H456.0999999999999C451.4999999999999 31.9 447.7 28 448.0999999999999 23.5C452.3999999999999 -25.6 493.5999999999999 -64.1 543.6999999999999 -64.1C597.6999999999999 -64.1 641.3 -19.5 639.6999999999999 34.8C638.0999999999999 87.4999999999999 592.1999999999999 128 539.6999999999999 128zM637.8000000000001 276.7C630.2 313 600.9000000000001 342.3 564.6 349.9C505.5 362.2 453.1 320.1 448.3 264.5C447.9000000000001 259.9 451.8 256.1 456.3 256.1H472.5C476.7 256.1 479.9 259.4 480.4 263.5C484.6 300.1 519.9 327.3 559.1 318.3C582.2 313 600.9 294.2000000000001 606.3000000000001 271.1C615.9000000000001 229.3 584.2 192 544.0000000000001 192H406.6C403.3 180.9 399 170.3 394.1 160H544C603.8 160 650.8 214.6 637.8 276.7z" />
+    <glyph glyph-name="wind"
+      unicode="&#xF72E;"
+      horiz-adv-x="512" d=" M8 224H352C411.8 224 458.8 278.6 445.8 340.7C438.2 377 408.9000000000001 406.3 372.6 413.9C313.5 426.2 261.1 384.1 256.3 328.5C255.9 323.9 259.8 320.1 264.3 320.1H280.5C284.7 320.1 287.9 323.4 288.4 327.5C292.7 364.1 327.9 391.3 367.1 382.3C390.2 377 408.9 358.2 414.3 335.1C423.9 293.3 392.2 256 352 256H8C3.6 256 0 252.4 0 248V232C0 227.6 3.6 224 8 224zM156 192H8C3.6 192 0 188.4 0 184V168C0 163.6 3.6 160 8 160H157.1C190.5 160 220.4 135.6 223.6 102.4C227.3 64.3 197.3 32 159.9 32C127.1 32 100 56.8 96.3 88.5C95.8 92.7 92.6 95.9 88.4 95.9H72.4C67.8 95.9 64 92 64.4 87.5C68.7 38.4 109.9 -0.1 160 -0.1C214 -0.1 257.6 44.5 256 98.8C254.4 151.5 208.5 192 156 192zM395.3 192H243.8C254.3 182.8 263.2 172.1 270.2 160H396.4C438.2 160 475.5 129.6 479.6 88C484.3 40.3 446.7 0 400 0C363.5 0 332.7 24.5 323.1 58C322.1 61.5 319.1 64 315.4000000000001 64H299.3C294.3 64 290.3 59.4 291.4000000000001 54.5C302.9 5 347 -32 400 -32C463 -32 513.9 20 512 83.4C510.1 144.7 456.6 192 395.3 192z" />
+    <glyph glyph-name="window-alt"
+      unicode="&#xF40F;"
+      horiz-adv-x="512" d=" M224 288C206.3 288 192 302.3 192 320S206.3 352 224 352S256 337.7 256 320S241.7 288 224 288zM352 320C352 337.7 337.7 352 320 352S288 337.7 288 320S302.3 288 320 288S352 302.3 352 320zM448 320C448 337.7 433.7 352 416 352S384 337.7 384 320S398.3 288 416 288S448 302.3 448 320zM512 368V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H464C490.5 416 512 394.5 512 368zM480 224H32V16C32 7.2 39.2 0 48 0H464C472.8 0 480 7.2 480 16V224zM480 256V368C480 376.8 472.8 384 464 384H48C39.2 384 32 376.8 32 368V256H480z" />
+    <glyph glyph-name="window-close"
+      unicode="&#xF410;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM480 16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V368C32 376.8 39.2 384 48 384H464C472.8 384 480 376.8 480 368V16zM348.6 259.7L280.9 192L348.6 124.3C353.2 119.7 353.2 112.3 348.6 107.7L340.3 99.4C335.7 94.8 328.3 94.8 323.7 99.4L256 167.1L188.3 99.4C183.7 94.8 176.3 94.8 171.7 99.4L163.4 107.7000000000001C158.8 112.3000000000001 158.8 119.7000000000001 163.4 124.3000000000001L231.1 192.0000000000001L163.4 259.7000000000001C158.8000000000001 264.3000000000001 158.8000000000001 271.7000000000001 163.4 276.3000000000001L171.7000000000001 284.6C176.3000000000001 289.2000000000001 183.7000000000001 289.2000000000001 188.3000000000001 284.6L256.0000000000001 216.9L323.7000000000001 284.6C328.3000000000001 289.2000000000001 335.7000000000001 289.2000000000001 340.3000000000001 284.6L348.6000000000001 276.3C353.1000000000001 271.7000000000001 353.1000000000001 264.3 348.6000000000001 259.7000000000001z" />
+    <glyph glyph-name="window-maximize"
+      unicode="&#xF2D0;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM480 16C480 7.2 472.8 0 464 0H48C39.2 0 32 7.2 32 16V256H480V16zM32 288V368C32 376.8 39.2 384 48 384H464C472.8 384 480 376.8 480 368V288H32z" />
+    <glyph glyph-name="window-minimize"
+      unicode="&#xF2D1;"
+      horiz-adv-x="512" d=" M496 -32H16C7.2 -32 0 -24.8 0 -16S7.2 0 16 0H496C504.8 0 512 -7.2 512 -16S504.8 -32 496 -32z" />
+    <glyph glyph-name="window-restore"
+      unicode="&#xF2D2;"
+      horiz-adv-x="512" d=" M464 448H144C117.5 448 96 426.5 96 400V352H48C21.5 352 0 330.5 0 304V-16C0 -42.5 21.5 -64 48 -64H368C394.5 -64 416 -42.5 416 -16V32H464C490.5 32 512 53.5 512 80V400C512 426.5 490.5 448 464 448zM32 304C32 312.8 39.2 320 48 320H368C376.8 320 384 312.8 384 304V224H32V304zM384 -16C384 -24.8 376.8 -32 368 -32H48C39.2 -32 32 -24.8 32 -16V192H384V-16zM480 80C480 71.2 472.8 64 464 64H416V304C416 330.5 394.5 352 368 352H128V400C128 408.8 135.2 416 144 416H464C472.8 416 480 408.8 480 400V80z" />
+    <glyph glyph-name="window"
+      unicode="&#xF40E;"
+      horiz-adv-x="512" d=" M96 288C78.3 288 64 302.3 64 320S78.3 352 96 352S128 337.7 128 320S113.7 288 96 288zM224 320C224 337.7 209.7 352 192 352S160 337.7 160 320S174.3 288 192 288S224 302.3 224 320zM320 320C320 337.7 305.7 352 288 352S256 337.7 256 320S270.3 288 288 288S320 302.3 320 320zM512 368V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H464C490.5 416 512 394.5 512 368zM480 224H32V16C32 7.2 39.2 0 48 0H464C472.8 0 480 7.2 480 16V224zM480 256V368C480 376.8 472.8 384 464 384H48C39.2 384 32 376.8 32 368V256H480z" />
+    <glyph glyph-name="windsock"
+      unicode="&#xF777;"
+      horiz-adv-x="512" d=" M497.3 290L64 347.7V354.9C82.6 361.5 96 379.1 96 400C96 426.5 74.5 448 48 448S0 426.5 0 400C0 379.1 13.4 361.5 32 354.9V-55.4C32 -60.2 35.6 -64 40 -64H56C60.4 -64 64 -60.1 64 -55.4V44.3L497.3 102C505.7 103.1 512 109.9 512 117.8V274.1C512 282.1 505.7 288.8 497.3 290zM48 416C56.8 416 64 408.8 64 400S56.8 384 48 384S32 391.2 32 400S39.2 416 48 416zM304 283.5L384 272.8V119.2000000000001L304 108.5000000000001V283.5000000000001zM272 104.3L176 91.5V300.5L272 287.7V104.3zM64 315.5L144 304.8V87.2000000000001L64 76.5000000000001V315.5000000000001zM480 132L416 123.5V268.5L480 260V132z" />
+    <glyph glyph-name="wine-bottle"
+      unicode="&#xF72F;"
+      horiz-adv-x="512" d=" M502.91 375.54L439.3 439.19C427.55 450.94 407.18 450.93 395.43 439.2L374.18 417.95C366.27 410.01 363.55 398.78 366.05 388.5900000000001L309.61 332.12C260.9500000000001 348.35 207.44 336 170.72 299.27L22.2 150.71C-7.4 121.05 -7.4 72.82 22.2 43.17L107.08 -41.72C121.43 -56.09 140.49 -64 160.8 -64S200.21 -56.09 214.56 -41.72L363.0800000000001 106.85C399.7700000000001 143.56 412.1200000000001 197.07 395.9000000000001 245.82L452.3100000000001 302.26C462.59 299.76 474.0600000000001 302.81 481.7200000000001 310.45L502.9100000000001 331.65C508.7500000000001 337.51 512.0000000000001 345.3 512.0000000000001 353.6S508.7500000000001 369.68 502.9100000000001 375.54zM318.2100000000001 107.24L228.8200000000001 17.82L81.7200000000001 164.98L171.1200000000001 254.4100000000001L318.2100000000001 107.24zM129.71 -19.08L44.83 65.81C27.7 82.98 27.7 110.91 44.83 128.08L59.1 142.35L206.2000000000001 -4.82L191.9400000000001 -19.09C175.3100000000001 -35.72 146.3400000000001 -35.72 129.7100000000001 -19.08zM460.53 333.06L449.1900000000001 344.41L358.3700000000001 253.52L362.5600000000001 243.59C379.1100000000001 204.49 370.5400000000001 159.94 340.8300000000001 129.9L193.79 277.01C244.62 327.3 305.54 299.56 307.42 298.77L317.33 294.56L408.12 384.02L396.8400000000001 395.34L416.6500000000001 416.57L479.59 353.57L460.53 333.06z" />
+    <glyph glyph-name="wine-glass-alt"
+      unicode="&#xF5CE;"
+      horiz-adv-x="288" d=" M213.34 -32H160V97.73C236.73 106.4500000000001 294.57 175.3300000000001 287.4 255.3400000000001L271.44 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.57 175.33 51.27 106.45 128 97.73V-32H74.67C59.94 -32 48 -43.94 48 -58.67C48 -61.62 50.39 -64 53.33 -64H234.67C237.62 -64 240.0000000000001 -61.61 240.0000000000001 -58.67C240.0000000000001 -43.94 228.0600000000001 -32 213.34 -32zM240.88 416L249.48 320H38.52L47.12 416H240.88zM32.47 252.49L35.66 288H252.35L255.53 252.49C257.34 232.33 253.95 213.01 246.46 195.89C228.75 155.41 188.19 129.74 144.01 129.74S59.27 155.41 41.56 195.89C34.05 213.01 30.67 232.33 32.47 252.49z" />
+    <glyph glyph-name="wine-glass"
+      unicode="&#xF4E3;"
+      horiz-adv-x="288" d=" M287.4 255.34L271.44 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.57 175.33 51.27 106.45 128 97.73V-32H74.67C59.94 -32 48 -43.94 48 -58.67C48 -61.62 50.39 -64 53.33 -64H234.67C237.62 -64 240.0000000000001 -61.61 240.0000000000001 -58.67C240.0000000000001 -43.94 228.0600000000001 -32 213.3300000000001 -32H160V97.73C236.73 106.4500000000001 294.57 175.3300000000001 287.4 255.3400000000001zM144 129.73C99.82 129.73 59.26 155.4 41.55 195.88C34.06 213.01 30.67 232.32 32.48 252.48L47.12 416H240.88L255.53 252.49C257.34 232.33 253.95 213.02 246.46 195.89C228.74 155.41 188.18 129.73 144 129.73z" />
+    <glyph glyph-name="won-sign"
+      unicode="&#xF159;"
+      horiz-adv-x="576" d=" M564 288C570.627 288 576 293.373 576 300V316C576 322.627 570.627 328 564 328H510.187L527.417 400.328C529.214 407.8690000000001 523.496 415.109 515.744 415.109H499.4690000000001A11.999000000000002 11.999000000000002 0 0 1 487.7780000000001 405.813L469.781 328H327.096L308.176 405.94A12 12 0 0 1 296.514 415.109H277.791A12.001000000000001 12.001000000000001 0 0 1 266.129 405.94L247.209 328H106.656L89.318 405.722A12 12 0 0 1 77.606 415.109H61.313C53.591 415.109 47.879 407.921 49.623 400.399L66.41 328H12C5.373 328 0 322.627 0 316V300C0 293.373 5.373 288 12 288H75.685L88.669 232H12C5.373 232 0 226.627 0 220V204C0 197.373 5.373 192 12 192H97.943L147.726 -22.71A12 12 0 0 1 159.416 -32.0000000000001H187.718C193.257 -32.0000000000001 198.075 -28.21 199.38 -22.8270000000001L251.463 192H322.841L374.925 -22.827A12 12 0 0 1 386.587 -32H414.948A12 12 0 0 1 426.621 -22.781L477.788 192H564C570.627 192 576 197.373 576 204V220C576 226.627 570.627 232 564 232H487.317L500.658 288H564zM286.582 349.601H287.722S289.206 340.565 291.515 328H282.789A1280.842 1280.842 0 0 1 286.582 349.601zM115.579 288H237.498L223.903 232H128.07L115.579 288zM184.056 67.853C178.36 44.957 175.512 20.153 174.942 20.153H173.803S169.816 44.957 164.69 67.853L136.995 192H214.194L184.056 67.853zM261.161 232L273.4820000000001 282.82C273.887 284.516 274.29 286.247 274.6900000000001 288H299.6160000000001C300.016 286.247 300.4190000000001 284.516 300.8240000000001 282.82L313.1440000000001 232H261.1610000000001zM409.615 67.853C404.488 44.957 400.502 20.153 400.502 20.153H399.362C398.793 20.153 395.944 44.957 390.249 67.853L360.111 192H438.327L409.615 67.853zM447.579 232H350.401L336.806 288H460.53L447.579 232z" />
+    <glyph glyph-name="wreath"
+      unicode="&#xF7E2;"
+      horiz-adv-x="448" d=" M310.8 254.6C308.5 276.7 300.5 289.2 279.4000000000001 299.1C278.0000000000001 299.8 278.5000000000001 299.4 277.5000000000001 300.6C261.7000000000001 318.8 247.0000000000001 322.9 225.4000000000001 318.2C223.7000000000001 317.8 224.5000000000001 317.9 222.8000000000001 318.2C201.2000000000001 322.9 186.5000000000001 318.8 170.7000000000001 300.6C169.7000000000001 299.4 170.2000000000001 299.8 168.8000000000001 299.1C147.7000000000001 289.2 139.7000000000001 276.7 137.3000000000001 254.6C137.1000000000001 252.3 137.3000000000001 253.1 136.4000000000001 251.4C125.4000000000001 231.6 125.2000000000001 216.7 136.4000000000001 196.5C137.4000000000001 194.8 137.1000000000001 195.6 137.3000000000001 193.3C139.7000000000001 170.5 148.2000000000001 158.5 168.7000000000001 148.8C170.1000000000001 148.1 169.6000000000001 148.5 170.6000000000001 147.3C186.4000000000001 129.1 201.1000000000001 125 222.7000000000001 129.7C224.3000000000001 130 223.6000000000001 130.1 225.3000000000001 129.7C246.9000000000001 125 261.6000000000001 129.1 277.4000000000001 147.3C278.4000000000001 148.5 278.0000000000001 148.1 279.3000000000001 148.8C300.4000000000001 158.7 308.4000000000001 171.2 310.8000000000001 193.3C311.0000000000001 195.6 310.8000000000001 194.8 311.7000000000001 196.5C322.6 216.2 322.9000000000001 231.1 311.7000000000001 251.4C310.8000000000001 253.1 311.1 252.3 310.8000000000001 254.6zM280.4000000000001 204.9C278.4000000000001 198.4 279.6 190.2 275.8 184.8C272 179.4 264.1 178 258.9000000000001 174C253.7000000000001 170.1 250.1 162.6 243.9000000000001 160.5C237.9000000000001 158.5 230.7000000000001 162.1999999999999 224.1 162.1999999999999C217.5 162.1999999999999 210.3 158.5 204.3 160.5C198.1 162.6 194.4 170 189.3 174C184.1 178 176.2 179.3 172.4 184.8C168.6 190.1999999999999 169.8 198.4 167.8 204.9C165.9 211.0999999999999 160.2 217.0999999999999 160.2 224C160.2 230.9 165.9 236.8 167.8 243.1C169.8 249.6 168.6 257.8 172.4 263.2C176.2 268.5999999999999 184.1 270 189.3 274C194.5 277.9 198.1 285.4 204.3 287.5C210.3 289.5 217.5 285.8 224.1 285.8C230.7 285.8 237.9000000000001 289.5 243.9000000000001 287.5C250.1 285.4 253.8000000000001 278 258.9000000000001 274C264.1 270 272.0000000000001 268.7 275.8 263.2C279.6 257.8 278.4000000000001 249.6 280.4000000000001 243.1C282.3 236.9 288.0000000000001 230.9 288.0000000000001 224S282.3000000000001 211.1999999999999 280.4000000000001 204.9zM448 224C448 239.3 443.3 253.8 434.8 265.9C438 280.3 436.8 295.6 431 309.7C425.1 324.1 414.9 335.8 402.2 343.7C399.8 358.3 393 371.8 382.4 382.4C371.9 392.9 358.4 399.8 343.7 402.2C335.8 414.9 324.1 425 309.7 431C291.1 438.7 274.6 436.8 265.9 434.8C253.8 443.3 239.3 448 224 448S194.2 443.3 182.1 434.8C173.4 436.7 156.9 438.7 138.3 431C124 425.1 112.3 415 104.4 402.2C89.7 399.8 76.3 393 65.7 382.4C55 371.8 48.3 358.3 45.8 343.7C33.1 335.8 23 324.1 17 309.7C11.2 295.6 9.9 280.3 13.2 265.9C4.7 253.8 0 239.3 0 224C0 208.7 4.7 194.2 13.2 182.1C10 167.7000000000001 11.2 152.4 17 138.3C22.9 124.1 33 112.4 45.7 104.6C48.1 89.9 54.9 76.3 65.5 65.6C78.1 53.1 94.1 48 112 48V-30.6C112 -40.1 115.6 -49.6 122.7 -55.9C131.3 -63.5000000000001 143.2 -66 155.2 -61.9L224 -33.3L293.9 -62.3C297.2 -63.4 300.6 -63.9 304 -63.9C310.7 -63.9 317.2 -61.8 322.8 -57.9C331.1 -51.9 336.1 -42.2 336.1 -31.9V48.1C353.9000000000001 48.1 369.9000000000001 53.1 382.5 65.7C393.2 76.4 399.9 90 402.3 104.7C415.1 112.6 425.1 124.2 431 138.4C436.8 152.5 438 167.8 434.8 182.2C443.3 194.2 448 208.7 448 224zM224 1.3L144 -32L142.9 64.4L224 30.7L304 64L305.1 -32.4L224 1.3zM397.2 189.5C404.8 178.4 406.9 163.8 401.4 150.5C395.8 136.9 383.6 128.4 370.1 126.1C373 112.8 370.1 98.5 359.8 88.2000000000001C352.4 80.8000000000001 342.9 77.2000000000001 333.2 76.6C330.8999999999999 81.8 327.5 86.5 322.7 89.9C314.3999999999999 95.9 303.7 97.6 293.8999999999999 94.3L223.9999999999999 65.3L154.0999999999999 94.3C144.1999999999999 97.6 133.4999999999999 95.9 125.2999999999999 89.9C120.5999999999999 86.5000000000001 117.0999999999999 81.8 114.7999999999999 76.6C105.0999999999999 77.2000000000001 95.5999999999999 80.8 88.1999999999999 88.2000000000001C77.8999999999999 98.5000000000001 74.8999999999999 112.8000000000001 77.8999999999999 126.1C64.3999999999999 128.4 52.1999999999999 136.9 46.5999999999999 150.5C41.0999999999999 163.9 43.0999999999999 178.4 50.7999999999999 189.5C39.4999999999999 196.9 31.9999999999999 209.5 31.9999999999999 224S39.4999999999999 251.1 50.7999999999999 258.5C43.1999999999999 269.6 41.0999999999999 284.2 46.5999999999999 297.5C52.1999999999999 311.1 64.2999999999999 320 77.7999999999999 322.2C74.9999999999999 335.4 77.9999999999999 349.5 88.1999999999999 359.8C103 374.6 121.8 371 125.8 370.2C128.1 383.7 136.9 395.8 150.5 401.4C164.6 407.2 179.1 404.4 189.5 397.2C196.8 408.5 209.5 416 224 416S251.1 408.5 258.5 397.2C269 404.4 283.5 407.1 297.5 401.3C311.1 395.7 319.9 383.6 322.2 370.1C326.2 371 345 374.5 359.8 359.7C370 349.5 373 335.3 370.2 322.2C383.7 319.9 395.8 311.1 401.4 297.5C406.9 284.1 404.9 269.6 397.2 258.5C408.5 251.2 416 238.5 416 224S408.5 196.9 397.2 189.5z" />
+    <glyph glyph-name="wrench"
+      unicode="&#xF0AD;"
+      horiz-adv-x="512" d=" M507.42 333.51C505.08 342.98 497.76 350.49 488.36 353.12C478.89 355.73 468.71 353.12 461.71 346.14L397.8400000000001 282.27L353.5900000000001 289.63L346.2100000000001 333.87L410.0800000000001 397.74C417.0200000000001 404.6600000000001 419.7000000000001 414.8300000000001 417.0800000000001 424.2800000000001C414.4600000000001 433.7500000000001 406.8900000000001 441.11 397.3300000000001 443.48C345.6 456.31 291.95 441.46 254.14 403.7C216.3 365.8300000000001 201.93 311.18 215.52 259L22.19 65.71C-7.4 36.08 -7.4 -12.12 22.19 -41.74C36.54 -56.09 55.63 -64 75.94 -64S115.31 -56.09 129.65 -41.74L322.79 151.37C374.82 137.64 429.59 152.09 467.6799999999999 190.19C505.49 228 520.3599999999999 281.58 507.42 333.51zM445.06 212.81C413.19 181 366.63 170.18 323.29 184.58L313.9100000000001 187.72L107.03 -19.12C90.41 -35.74 61.44 -35.74 44.82 -19.12C27.7 -1.98 27.7 25.94 44.82 43.09L251.83 250.07L248.74 259.41C234.43 302.86 245.18 349.47 276.77 381.08C299.48 403.8 329.44 416 360.56 416C367.43 416 374.37 415.41 381.28 414.19L311.97 344.8400000000001L325.78 261.82L408.84 248L478.14 317.35C484.86 279.1 472.8 240.56 445.06 212.81zM80 32C71.16 32 64 24.84 64 16S71.16 0 80 0S96 7.16 96 16S88.84 32 80 32z" />
+    <glyph glyph-name="x-ray"
+      unicode="&#xF497;"
+      horiz-adv-x="640" d=" M168 224H304V192H200C195.6 192 192 188.4 192 184V168C192 163.6 195.6 160 200 160H304V128H240C213.5 128 192 106.5 192 80S213.5 32 240 32S288 53.5 288 80V96H352V80C352 53.5 373.5 32 400 32S448 53.5 448 80S426.5 128 400 128H336V160H440C444.4 160 448 163.6 448 168V184C448 188.4 444.4 192 440 192H336V224H472C476.4 224 480 227.6 480 232V248C480 252.4 476.4 256 472 256H336V288H440C444.4 288 448 291.6 448 296V312C448 316.4 444.4 320 440 320H336V344C336 348.4 332.4 352 328 352H312C307.6 352 304 348.4 304 344V320H200C195.6 320 192 316.4 192 312V296C192 291.6 195.6 288 200 288H304V256H168C163.6 256 160 252.4 160 248V232C160 227.6 163.6 224 168 224zM240 64C231.2 64 224 71.2 224 80S231.2 96 240 96S256 88.8 256 80S248.8 64 240 64zM400 96C408.8 96 416 88.8 416 80S408.8 64 400 64S384 71.2 384 80S391.2 96 400 96zM632 416C636.4 416 640 419.6 640 424V440C640 444.4 636.4 448 632 448H8C3.6 448 0 444.4 0 440V424C0 419.6 3.6 416 8 416H64V-32H8C3.6 -32 0 -35.6 0 -40V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-40C640 -35.6 636.4 -32 632 -32H576V416H632zM544 -32H96V416H544V-32z" />
+    <glyph glyph-name="yen-sign"
+      unicode="&#xF157;"
+      horiz-adv-x="320" d=" M307.9820000000001 416H285.4570000000001A12 12 0 0 1 275.0590000000001 409.99L187.722 256.684C174.34 231.192 160.3200000000001 199.966 160.3200000000001 199.966H159.0460000000001S145.0260000000001 231.192 131.6430000000001 256.6840000000001L45.038 409.958A12 12 0 0 1 34.621 416H12.018C2.781 416 -2.992 406.002 1.624 398.002L100.974 224H44C37.373 224 32 218.627 32 212V204C32 197.373 37.373 192 44 192H119.442L138.015 159.818V128H44C37.373 128 32 122.627 32 116V108C32 101.373 37.373 96 44 96H138.014V-20C138.014 -26.627 143.387 -32 150.014 -32H170.622C177.249 -32 182.622 -26.627 182.622 -20V96H276C282.627 96 288 101.373 288 108V116C288 122.627 282.627 128 276 128H182.623V159.818L200.323 192H276C282.627 192 288 197.373 288 204V212C288 218.627 282.627 224 276 224H217.938L318.35 397.958C323.012 405.958 317.2410000000001 416 307.9820000000001 416z" />
+    <glyph glyph-name="yin-yang"
+      unicode="&#xF6AD;"
+      horiz-adv-x="496" d=" M232 256C258.4700000000001 256 280 277.53 280 304S258.4700000000001 352 232 352S184 330.4700000000001 184 304S205.53 256 232 256zM232 320C240.81 320 248 312.8300000000001 248 304S240.81 288 232 288S216 295.17 216 304S223.19 320 232 320zM264 128C237.53 128 216 106.47 216 80S237.53 32 264 32S312 53.53 312 80S290.4700000000001 128 264 128zM264 64C255.19 64 248 71.17 248 80S255.19 96 264 96S280 88.83 280 80S272.81 64 264 64zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56C384.75 -56 496 55.25 496 192S384.75 440 248 440zM32 192C32 311.1 128.9 408 248 408C303.12 408 348 363.14 348 308S303.12 208 248 208C175.22 208 116 148.78 116 76C116 51.04 123.37 27.92 135.46 7.99C73.53 46.01 32 114.16 32 192zM248 -24C192.88 -24 148 20.86 148 76S192.88 176 248 176C320.78 176 380 235.22 380 308C380 332.83 373.12 356.08 361.1600000000001 375.94C422.81 337.86 464 269.66 464 192C464 72.89 367.0900000000001 -24 248 -24z" />
+  </font>
+</defs>
+</svg>
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.ttf b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..86d2ba4d22416410b3ba4f08793d42d9e33354b5
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.ttf differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff
new file mode 100644
index 0000000000000000000000000000000000000000..e65ffcef730432912b467199dcd93a30914218d8
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff2 b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..e7fdd5307bd7f775c97404c6ab8832d0a555d0ce
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-light-300.woff2 differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.eot b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.eot
new file mode 100644
index 0000000000000000000000000000000000000000..4fe5a6edb904bb01732b4abed4a54e7fb506f4c2
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.eot differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.svg b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cdc8bad35e5b156224c9d06d063d8ca5b8ae0029
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.svg
@@ -0,0 +1,4445 @@
+<?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">
+<defs>
+  <font id="fontawesome-pro" horiz-adv-x="640.002">
+    <font-face font-family="Font Awesome 5 Pro"
+      units-per-em="512" ascent="448"
+      descent="64"
+      font-weight="400"
+      font-style="Regular" />
+    <missing-glyph horiz-adv-x="0" />
+    <glyph glyph-name="abacus"
+      unicode="&#xF640;"
+      horiz-adv-x="576" d=" M552 448C538.75 448 528 437.26 528 424V376H480V400C480 408.8400000000001 472.84 416 464 416H448C439.1600000000001 416 432 408.8400000000001 432 400V376H240V400C240 408.8400000000001 232.84 416 224 416H208C199.16 416 192 408.8400000000001 192 400V376H144V400C144 408.8400000000001 136.84 416 128 416H112C103.16 416 96 408.8400000000001 96 400V376H48V424C48 437.26 37.25 448 24 448S0 437.26 0 424V-52C0 -58.63 5.37 -64 12 -64H36C42.63 -64 48 -58.63 48 -52V8H96V-16C96 -24.84 103.16 -32 112 -32H128C136.84 -32 144 -24.84 144 -16V8H192V-16C192 -24.84 199.16 -32 208 -32H224C232.84 -32 240 -24.84 240 -16V8H432V-16C432 -24.84 439.1600000000001 -32 448 -32H464C472.84 -32 480 -24.84 480 -16V8H528V-52C528 -58.63 533.37 -64 540 -64H564C570.63 -64 576 -58.63 576 -52V424C576 437.26 565.25 448 552 448zM96 328V304C96 295.16 103.16 288 112 288H128C136.84 288 144 295.16 144 304V328H192V304C192 295.16 199.16 288 208 288H224C232.84 288 240 295.16 240 304V328H432V304C432 295.16 439.1600000000001 288 448 288H464C472.84 288 480 295.16 480 304V328H528V216H336V240C336 248.84 328.84 256 320 256H304C295.1600000000001 256 288 248.84 288 240V216H240V240C240 248.84 232.84 256 224 256H208C199.16 256 192 248.84 192 240V216H144V240C144 248.84 136.84 256 128 256H112C103.16 256 96 248.84 96 240V216H48V328H96zM480 56V80C480 88.84 472.84 96 464 96H448C439.1600000000001 96 432 88.84 432 80V56H240V80C240 88.84 232.84 96 224 96H208C199.16 96 192 88.84 192 80V56H144V80C144 88.84 136.84 96 128 96H112C103.16 96 96 88.84 96 80V56H48V168H96V144C96 135.16 103.16 128 112 128H128C136.84 128 144 135.16 144 144V168H192V144C192 135.16 199.16 128 208 128H224C232.84 128 240 135.16 240 144V168H288V144C288 135.16 295.1600000000001 128 304 128H320C328.84 128 336 135.16 336 144V168H528V56H480z" />
+    <glyph glyph-name="acorn"
+      unicode="&#xF6AE;"
+      horiz-adv-x="448" d=" M352 384H251.5C254.9 393.4 259.9700000000001 402.18 266.6600000000001 410.04C272.2200000000001 416.56 271.9700000000001 425.95 266.04 431.9L254.69 443.2200000000001C251.57 446.38 246.97 448.36 242.72 447.94C238.34 447.8 234.22 445.86 231.41 442.64C216.66 425.84 206.86 405.58 202.02 383.99H96C42.98 383.99 0 341.01 0 287.99V255.99C0 238.32 14.33 223.99 32 223.99V191.99C32 93.93 87.4 4.29 175.11 -39.56L224 -64L272.89 -39.55C360.6 4.3 416 93.94 416 192V224C433.67 224 448 238.33 448 256V288C448 341.02 405.02 384 352 384zM48 288C48 314.4700000000001 69.53 336 96 336H352C378.4700000000001 336 400 314.4700000000001 400 288V272H48V288zM368 192C368 111.61 323.33 39.33 251.43 3.38L224 -10.33L196.57 3.38C124.67 39.33 80 111.61 80 192V224H368V192z" />
+    <glyph glyph-name="ad"
+      unicode="&#xF641;"
+      horiz-adv-x="512" d=" M101.42 96H118.36C125.17 96 131.24 100.32 133.48 106.75L140.86 128H211.15L218.53 106.75A16 16 0 0 1 233.65 96H250.59C261.6 96 269.32 106.85 265.71 117.25L212 271.87A24.004 24.004 0 0 1 189.33 288H162.67C152.45 288 143.35 281.53 140 271.88L86.31 117.25C82.7 106.85 90.42 96 101.42 96zM176 229.22L194.48 176H157.52L176 229.22zM352 96C361.93 96 371.4 98.02 380.02 101.68C382.96 98.27 387.15 96 392 96H408C416.84 96 424 103.16 424 112V272C424 280.8400000000001 416.84 288 408 288H392C383.1600000000001 288 376 280.8400000000001 376 272V235.58C368.46 238.27 360.46 240 352 240C312.3 240 280 207.7 280 168S312.3 96 352 96zM352 192C365.23 192 376 181.23 376 168S365.23 144 352 144S328 154.77 328 168S338.77 192 352 192zM464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM464 48H48V336H464V48z" />
+    <glyph glyph-name="address-book"
+      unicode="&#xF2B9;"
+      horiz-adv-x="448" d=" M436 288C442.6 288 448 293.4 448 300V340C448 346.6 442.6 352 436 352H416V400C416 426.5 394.5 448 368 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H368C394.5 -64 416 -42.5 416 -16V32H436C442.6 32 448 37.4 448 44V84C448 90.6 442.6 96 436 96H416V160H436C442.6 160 448 165.4 448 172V212C448 218.6 442.6 224 436 224H416V288H436zM368 -16H48V400H368V-16zM208 192C243.3 192 272 220.7 272 256S243.3 320 208 320S144 291.3 144 256S172.7 192 208 192zM118.4 64H297.6C310 64 320 72.6 320 83.2V102.4C320 134.2 289.9 160 252.8 160C242 160 234.1 152 208 152C181.1 152 174.6 160 163.2 160C126.1 160 96 134.2 96 102.4V83.2C96 72.6 106 64 118.4 64z" />
+    <glyph glyph-name="address-card"
+      unicode="&#xF2BB;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM528 16H48V368H528V16zM208 192C243.3 192 272 220.7 272 256S243.3 320 208 320S144 291.3 144 256S172.7 192 208 192zM118.4 64H297.6C310 64 320 72.6 320 83.2V102.4C320 134.2 289.9 160 252.8 160C242 160 234.1 152 208 152C181.1 152 174.6 160 163.2 160C126.1 160 96 134.2 96 102.4V83.2C96 72.6 106 64 118.4 64zM360 128H472C476.4 128 480 131.6 480 136V152C480 156.4 476.4 160 472 160H360C355.6 160 352 156.4 352 152V136C352 131.6 355.6 128 360 128zM360 192H472C476.4 192 480 195.6 480 200V216C480 220.4 476.4 224 472 224H360C355.6 224 352 220.4 352 216V200C352 195.6 355.6 192 360 192zM360 256H472C476.4 256 480 259.6 480 264V280C480 284.4 476.4 288 472 288H360C355.6 288 352 284.4 352 280V264C352 259.6 355.6 256 360 256z" />
+    <glyph glyph-name="adjust"
+      unicode="&#xF042;"
+      horiz-adv-x="512" d=" M256 392C366.549 392 456 302.532 456 192C456 81.451 366.532 -8 256 -8C145.451 -8 56 81.468 56 192C56 302.549 145.468 392 256 392M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 344C172.053 344 104 275.947 104 192S172.053 40 256 40V344z" />
+    <glyph glyph-name="air-freshener"
+      unicode="&#xF5D0;"
+      horiz-adv-x="384" d=" M373.02 162.2L323.66 204.98C333.54 208.48 341.72 215.79 346.07 225.51C352.13 239.09 349.69 254.46 339.69 265.63L236.18 381.2200000000001A47.92 47.92 0 0 1 240 400C240 426.51 218.51 448 192 448S144 426.51 144 400C144 393.33 145.37 386.99 147.83 381.2200000000001L44.31 265.64C34.31 254.47 31.87 239.09 37.93 225.52C42.27 215.8 50.46 208.49 60.34 204.99L10.98 162.19C0.07 150.89 -2.99 135.07 3.04 120.89C9.45 105.78 24.79 96.01 42.1 96.01H168V64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H336C344.84 -64 352 -56.84 352 -48V48C352 56.84 344.84 64 336 64H216V96.02H341.89C359.2 96.02 374.55 105.79 380.95 120.9C386.98 135.06 383.92 150.89 373.02 162.2zM192 415.98C200.83 415.98 207.98 408.82 207.98 400S200.83 384.02 192 384.02S176.02 391.17 176.02 400S183.17 415.98 192 415.98zM304 16V-16H80V16H304zM60.17 144.02L171.37 250.69H95.34L186.58 352.55C188.38 352.3400000000001 190.14 352.01 192 352.01S195.62 352.35 197.42 352.55L288.66 250.69H212.63L323.83 144.02H60.17z" />
+    <glyph glyph-name="alarm-clock"
+      unicode="&#xF34E;"
+      horiz-adv-x="512" d=" M459.7 253.4C482 273.9 496 303.3 496 336C496 397.9 445.9 448 384 448C338.7 448 299.7 421.2 282.1 382.5C264.8 384.5 247.2 384.5 229.9000000000001 382.5C212.3 421.2 173.3 448 128 448C66.1 448 16 397.9 16 336C16 303.3 30 273.9 52.3 253.4C39.3 225 32 193.3 32 160C32 106.8 50.6 57.9 81.5 19.5L39 -23C29.6 -32.4 29.6 -47.6 39 -56.9C48.4 -66.2999999999999 63.6 -66.2999999999999 72.9 -56.9L115.4 -14.4C196.9 -80.1 314.1 -80.7999999999999 396.4 -14.4L439 -57C448.4 -66.4 463.6 -66.4 472.9 -57C482.3 -47.6 482.3 -32.4 472.9 -23.1L430.4 19.4C461.4 57.8 479.9 106.7 479.9 159.9C480 193.3 472.7 225 459.7 253.4zM384 400C419.3 400 448 371.3 448 336C448 320.9 442.7 307 434 296.1C407.8 330.3 372 356.7 330.7 371.3C342.1 388.6 361.7 400 384 400zM64 336C64 371.3 92.7 400 128 400C150.3 400 169.9 388.6 181.4 371.3C140 356.7 104.2 330.3 78.1 296.1C69.3 307 64 320.9 64 336zM256 -16C158.7 -16 80 62.7 80 160C80 257 158.4 336 256 336C353.4 336 432 257.2 432 160C432 62.7 353.3 -16 256 -16zM302.2 79.7L233.2 127.2C229.9 129.4 228 133.1 228 137.1V268C228 274.6 233.4 280 240 280H272C278.6 280 284 274.6 284 268V160.3L334 125.9C339.5 122.1 340.8 114.7000000000001 337.1 109.2000000000001L319 82.8C315.2 77.4 307.7 76 302.2 79.7z" />
+    <glyph glyph-name="alicorn"
+      unicode="&#xF6B0;"
+      horiz-adv-x="640" d=" M448 352C448 360.8400000000001 440.84 368 432 368S416 360.8400000000001 416 352S423.1600000000001 336 432 336S448 343.16 448 352zM631.98 384H526.61L511.33 402.57C527.7 407.8 540.36 421.29 543.84 438.36C544.85 443.32 540.96 448 535.9 448H399.95C331.73 448 274.47 400.29 259.69 336.5C222.79 337.73 185.8 349.8400000000001 161.37 377.44C157.35 381.98 152.2 384 147.16 384C137.38 384 128 376.4 128 364.94C128 278.85 187.76 202.22 268.01 181.73C278.12 179.15 288 186.92 288 197.36V213.72C288 220.68 283.56 227.0600000000001 276.85 228.9300000000001C239.51 239.3900000000001 207.93 266.6 190.53 302.2700000000001C213.91 292.9000000000001 239.36 288 265.7700000000001 288H303.9500000000001V304C303.9500000000001 357.0200000000001 346.9300000000001 400 399.9500000000001 400H451.28L495.95 345.7200000000001L496.0000000000001 280.37C496.0000000000001 275.6 492.9700000000001 271.36 488.46 269.8200000000001L457.4400000000001 259.23C455.9300000000001 258.7100000000001 447.7300000000001 256.2800000000001 440.9600000000001 263.0600000000001L416 288H384V208C384 181.91 371.32 158.97 352 144.36V-16H304V128L196.09 158.83L167.44 79.05L191.53 -16H150L128.87 71.86A31.697999999999997 31.697999999999997 0 0 0 129.24 88.04L151.94 164.76C128.54 174.28 112 197.17 112 224C112 238.93 117.32 252.49 125.9 263.38C116.85 277.75 110.09 293.46 105.03 309.92C97.12 303.36 89.86 296.06 83.99 287.6C37.36 285.45 0 247.16 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.6 229.09 64 226.63 64 224C64 193.87 75.9 165.91 96.16 145.42L83.21 101.66A78.913 78.913 0 0 1 82.16 60.8200000000001L106.28 -39.47C109.74 -53.85 122.6 -63.9899999999999 137.39 -63.9899999999999H212.09C232.95 -63.9899999999999 248.23 -44.35 243.11 -24.1299999999999L217.58 76.6300000000001L226.09 100.34L256 91.8V-32C256 -49.67 270.33 -64 288 -64H368C385.67 -64 400 -49.67 400 -32V123.65C420.57 146.8 432 176.45 432 208V213.62C452.95 206.65 470.32 212.9 472.93 213.79L503.96 224.38C527.9200000000001 232.56 544.01 255.08 544 280.39L543.96 332.67L636.4200000000001 369.34C643.0100000000001 373.73 639.9000000000001 384 631.98 384z" />
+    <glyph glyph-name="align-center"
+      unicode="&#xF037;"
+      horiz-adv-x="448" d=" M352 400V368C352 361.373 346.627 356 340 356H108C101.373 356 96 361.373 96 368V400C96 406.627 101.373 412 108 412H340C346.627 412 352 406.627 352 400zM12 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H12C5.373 284 0 278.627 0 272V240C0 233.373 5.373 228 12 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM340 156H108C101.373 156 96 150.627 96 144V112C96 105.373 101.373 100 108 100H340C346.627 100 352 105.373 352 112V144C352 150.627 346.627 156 340 156z" />
+    <glyph glyph-name="align-justify"
+      unicode="&#xF039;"
+      horiz-adv-x="448" d=" M0 368V400C0 406.627 5.373 412 12 412H436C442.627 412 448 406.627 448 400V368C448 361.373 442.627 356 436 356H12C5.373 356 0 361.373 0 368zM12 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H12C5.373 284 0 278.627 0 272V240C0 233.373 5.373 228 12 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM12 100H436C442.627 100 448 105.373 448 112V144C448 150.627 442.627 156 436 156H12C5.373 156 0 150.627 0 144V112C0 105.373 5.373 100 12 100z" />
+    <glyph glyph-name="align-left"
+      unicode="&#xF036;"
+      horiz-adv-x="448" d=" M288 400V368C288 361.373 282.627 356 276 356H12C5.373 356 0 361.373 0 368V400C0 406.627 5.373 412 12 412H276C282.627 412 288 406.627 288 400zM12 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H12C5.373 284 0 278.627 0 272V240C0 233.373 5.373 228 12 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM276 156H12C5.373 156 0 150.627 0 144V112C0 105.373 5.373 100 12 100H276C282.627 100 288 105.373 288 112V144C288 150.627 282.627 156 276 156z" />
+    <glyph glyph-name="align-right"
+      unicode="&#xF038;"
+      horiz-adv-x="448" d=" M160 368V400C160 406.627 165.373 412 172 412H436C442.627 412 448 406.627 448 400V368C448 361.373 442.627 356 436 356H172C165.373 356 160 361.373 160 368zM12 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H12C5.373 284 0 278.627 0 272V240C0 233.373 5.373 228 12 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM172 100H436C442.627 100 448 105.373 448 112V144C448 150.627 442.627 156 436 156H172C165.373 156 160 150.627 160 144V112C160 105.373 165.373 100 172 100z" />
+    <glyph glyph-name="allergies"
+      unicode="&#xF461;"
+      horiz-adv-x="480" d=" M256 144C247.2 144 240 136.8 240 128S247.2 112 256 112S272 119.2 272 128S264.8 144 256 144zM192 160C183.2 160 176 152.8 176 144S183.2 128 192 128S208 135.2 208 144S200.8 160 192 160zM256 48C247.2 48 240 40.8 240 32S247.2 16 256 16S272 23.2 272 32S264.8 48 256 48zM408 336C405.3 336 402.6 335.8 400 335.6V344C400 383.7 367.7 416 328 416C321.6 416 315.3 415.2 309.4 413.6C296.7 434.2 273.9 448 248 448S199.3 434.2 186.6 413.6C180.7 415.2 174.4 416 168 416C128.3 416 96 383.7 96 344V251.9C85.5 255.6 57.9 262.1 30.7 243C-1.8 220.2 -9.8 175.2 13 142.7L126.5 -28.3C141.4 -50.7 166.3 -64 193.1 -64H373.7C411.7 -64 444.7 -37 452.2 0.3L472.8 103.5C477.5 127.2 479.9 151.5 479.9 175.7V264C480.0000000000001 303.7 447.7000000000001 336 408 336zM432 175.7C432 154.6 429.9 133.6 425.8 112.9L405.2 9.7C402.2 -5.3 389.1 -16 373.8 -16H193.1C182.4 -16 172.4 -10.6 166.4 -1.7L52.3 170.2C34.3 195.9 73 224.3 91.6 197.7L129.4 143.3C133.9 136.8 144 140.1 144 147.9V344C144 375.8 192 375.7 192 344V200C192 195.6 195.6 192 200 192H216C220.4 192 224 195.6 224 200V376C224 407.8 272 407.7 272 376V200C272 195.6 275.6 192 280 192H296C300.4 192 304 195.6 304 200V344C304 375.8 352 375.7 352 344V200C352 195.6 355.6 192 360 192H376C380.4 192 384 195.6 384 200V264C384 295.8 432 295.7 432 264V175.7zM192 80C183.2 80 176 72.8 176 64S183.2 48 192 48S208 55.2 208 64S200.8 80 192 80zM384 160C375.2 160 368 152.8 368 144S375.2 128 384 128S400 135.2 400 144S392.8 160 384 160zM352 48C343.2 48 336 40.8 336 32S343.2 16 352 16S368 23.2 368 32S360.8 48 352 48zM320 112C311.2 112 304 104.8 304 96S311.2 80 320 80S336 87.2 336 96S328.8 112 320 112z" />
+    <glyph glyph-name="ambulance"
+      unicode="&#xF0F9;"
+      horiz-adv-x="640" d=" M296 288H240V344C240 348.4 236.4 352 232 352H184C179.6 352 176 348.4 176 344V288H120C115.6 288 112 284.4 112 280V232C112 227.6 115.6 224 120 224H176V168C176 163.6 179.6 160 184 160H232C236.4 160 240 163.6 240 168V224H296C300.4 224 304 227.6 304 232V280C304 284.4 300.4 288 296 288zM624 80H608V196.1C608 215.1 600.3 233.6 586.9 247L503 330.9C489.6 344.3 471 352 452.1 352H416V392C416 422.9 390.9 448 360 448H56C25.1 448 0 422.9 0 392V88C0 57.1 25.1 32 56 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM368 80H242.7C226.1 108.6 195.5 128 160 128S93.9 108.6 77.3 80H56C51.6 80 48 83.6 48 88V392C48 396.4 51.6 400 56 400H360C364.4 400 368 396.4 368 392V80zM416 304H452.1C458.4 304 464.6 301.4 469.1 297L542.1 224H416V304zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 84.9C542.8 110.8 513.4 128 480 128C455.3 128 433 118.4 416 103.1V176H560V84.9z" />
+    <glyph glyph-name="american-sign-language-interpreting"
+      unicode="&#xF2A3;"
+      horiz-adv-x="640" d=" M635.124 237.182C635.0640000000001 237.306 594.934 317.551 594.934 317.551C583.563 340.288 555.0509999999999 351.131 530.502 338.86L530.454 338.836L478.877 312.947S402.5079999999999 319.987 401.521 319.987C382.818 319.987 364.883 315.687 348.826 307.477C342.204 316.299 334.552 321.537 325.336 325.752C336.731 361.37 310.53 399.211 271.832 398.944C268.554 425.447 245.872 448 216.271 448A56.09599999999999 56.09599999999999 0 0 1 180.617 435.176C135.228 397.903 106.219 345.584 98.226 288.616L68.558 235.109S23.866 209.667 23.749 209.599C2.06 196.887 -6.128 169.537 4.874 146.802C4.935 146.677 45.064 66.431 45.064 66.431C56.526 43.5170000000001 85.116 32.936 109.497 45.122L109.545 45.146L161.139 71.043C238.0180000000001 63.994 238.087 63.994 239.979 63.994C258.053 63.994 275.562 68.453 291.1600000000001 76.521C297.7870000000001 67.686 305.4430000000001 62.447 314.6620000000001 58.229C302.814 21.196 331.79 -15.6199999999999 368.1900000000001 -15.1469999999999C371.632 -42.225 394.936 -64 423.76 -64C436.768 -64 449.416 -59.451 459.393 -51.186C504.777 -13.913 533.781 38.405 541.7729999999999 95.365L571.4409999999999 148.872S616.1329999999999 174.314 616.2489999999999 174.382C637.9409999999999 187.095 646.1289999999999 214.447 635.1239999999999 237.182zM297.0350000000001 259.411C277.134 269.348 253.635 270.755 232.5530000000001 263.2770000000001C224.128 260.288 226.2680000000001 247.737 235.2280000000001 247.737C267.629 247.737 292.418 233.195 305.0350000000001 206.781C314.0470000000001 187.98 285.276 173.925 276.225 193.148L276.173 193.255C269.316 207.277 255.446 215.989 239.979 215.989C217.918 215.989 199.971 198.046 199.971 175.99C199.971 151.284 220.738 135.991 239.979 135.991C255.447 135.991 269.316 144.702 276.173 158.725L276.225 158.831C285.2770000000001 178.0579999999999 314.043 163.991 305.0300000000001 145.189C293.1210000000001 120.254 267.73 104.11 240.283 103.9929999999999C235.682 104.3809999999999 178.037 109.6589999999999 155.687 111.709A7.972999999999999 7.972999999999999 0 0 1 151.368 110.8919999999999L91.615 80.9C87.138 78.662 82.537 80.933 80.841 84.323L40.858 164.263C38.979 168.196 40.326 172.923 43.934 175.065L96.149 204.786A8.003 8.003 0 0 1 99.188 207.859L136.197 274.606A7.984000000000001 7.984000000000001 0 0 1 137.151 277.597C142.714 327.403 167.181 372.399 206.076 404.3210000000001C212.795 409.891 222.963 409.087 228.498 402.213C234.5480000000001 394.711 232.898 385.0510000000001 226.318 379.5940000000001C214.109 369.288 203.777 357.98 195.608 345.985C190.664 338.725 199.436 329.918 206.715 334.8640000000001C226.048 348 247.323 356.05 270.033 358.802C278.279 359.887 286.459 354.702 287.812 344.9360000000001C288.961 336.241 283.0350000000001 328.198 274.0300000000001 327.178C259.04 325.37 244.6080000000001 320.385 231.134 312.36C223.381 307.7430000000001 228.098 295.741 236.937 297.6710000000001C260.5610000000001 302.837 288.249 299.329 310.9220000000001 288.331C330.0650000000001 278.7620000000001 315.99 250.1840000000001 297.0350000000001 259.411zM596.0640000000001 208.913L543.8530000000001 179.193A8 8 0 0 1 540.8140000000001 176.121L503.8030000000001 109.374A7.989 7.989 0 0 1 502.849 106.382C497.287 56.576 472.8200000000001 11.581 433.9100000000001 -20.3530000000001C417.8750000000001 -33.7140000000001 397.1060000000001 -9.3570000000001 413.6840000000001 4.3849999999999C425.8940000000001 14.694 436.2260000000001 26.0009999999999 444.3920000000001 37.9939999999999C449.4280000000001 45.3909999999999 440.4420000000001 53.9799999999999 433.2850000000001 49.1139999999999C413.9520000000001 35.9809999999999 392.6770000000001 27.9309999999999 370.0510000000001 25.1899999999999C348.8230000000001 22.6069999999999 345.1720000000001 54.449 365.9700000000001 56.8029999999999C380.9600000000001 58.612 395.3920000000001 63.5969999999999 408.8660000000001 71.62C416.6200000000001 76.2389999999999 411.8990000000001 88.2389999999999 403.0630000000001 86.309C379.4420000000001 81.142 351.7510000000001 84.65 329.0780000000001 95.65C309.8990000000001 105.237 324.0830000000001 133.813 342.9310000000001 124.586C362.8390000000001 114.637 386.3540000000001 113.221 407.4480000000001 120.702C415.8890000000001 123.699 413.7140000000001 136.242 404.7730000000001 136.242C372.3710000000001 136.242 347.5820000000001 150.783 334.9660000000001 177.198C325.9500000000001 196.011 354.7310000000001 210.049 363.7760000000001 190.831L363.8280000000001 190.726C370.6840000000001 176.7029999999999 384.5530000000001 167.9909999999999 400.0210000000001 167.9909999999999C422.0820000000001 167.9909999999999 440.0300000000001 185.9339999999999 440.0300000000001 207.9899999999999C440.0300000000001 232.6969999999999 419.2620000000001 247.9889999999999 400.0210000000001 247.9889999999999C384.5520000000001 247.9889999999999 370.6830000000001 239.2779999999999 363.8270000000001 225.2539999999999L363.7760000000001 225.1479999999999C354.7250000000001 205.9249999999999 325.9550000000001 219.9809999999999 334.9710000000001 238.7909999999999C347.0700000000001 264.1219999999999 372.4050000000001 279.882 401.1560000000001 279.9859999999999L484.3050000000001 272.2709999999999A8 8 0 0 1 488.633 273.0869999999999L548.3870000000001 303.08C552.864 305.315 557.466 303.046 559.1590000000001 299.657L599.142 219.7159999999999C601.022 215.7839999999999 599.6750000000001 211.0549999999999 596.0640000000001 208.9129999999999z" />
+    <glyph glyph-name="analytics"
+      unicode="&#xF643;"
+      horiz-adv-x="608" d=" M416 128H352C334.33 128 320 113.67 320 96V-32C320 -49.67 334.33 -64 352 -64H416C433.67 -64 448 -49.67 448 -32V96C448 113.67 433.67 128 416 128zM400 -16H368V80H400V-16zM576 256H512C494.33 256 480 241.67 480 224V-32C480 -49.67 494.33 -64 512 -64H576C593.67 -64 608 -49.67 608 -32V224C608 241.67 593.67 256 576 256zM560 -16H528V208H560V-16zM256 256H192C174.33 256 160 241.67 160 224V-32C160 -49.67 174.33 -64 192 -64H256C273.67 -64 288 -49.67 288 -32V224C288 241.67 273.67 256 256 256zM240 -16H208V208H240V-16zM96 96H32C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H96C113.67 -64 128 -49.67 128 -32V64C128 81.67 113.67 96 96 96zM80 -16H48V48H80V-16zM64 192C90.51 192 112 213.49 112 240C112 244.27 111.26 248.34 110.22 252.28L211.72 353.78C215.66 352.74 219.73 352 224 352C230.15 352 235.97 353.26 241.38 355.37L336.7200000000001 279.1C336.37 276.77 336.0100000000001 274.4300000000001 336.0100000000001 272C336.0100000000001 245.4900000000001 357.5000000000001 224 384.0100000000001 224S432.0100000000001 245.4900000000001 432.0100000000001 272C432.0100000000001 274.4300000000001 431.6400000000001 276.76 431.3000000000001 279.0900000000001L526.6400000000001 355.36C532.03 353.26 537.85 352 544 352C570.51 352 592 373.49 592 400S570.51 448 544 448S496 426.51 496 400C496 397.57 496.37 395.24 496.71 392.91L401.37 316.64C395.9700000000001 318.75 390.14 320.01 383.99 320.01S372.02 318.75 366.61 316.64L271.29 392.9C271.6400000000001 395.23 272 397.57 272 400C272 426.51 250.51 448 224 448S176 426.51 176 400C176 395.73 176.74 391.66 177.78 387.7200000000001L76.28 286.2200000000001C72.34 287.26 68.27 288 64 288C37.49 288 16 266.51 16 240S37.49 192 64 192z" />
+    <glyph glyph-name="anchor"
+      unicode="&#xF13D;"
+      horiz-adv-x="576" d=" M571.515 116.485L504.486 183.514C499.8 188.2 492.202 188.2 487.515 183.514L420.486 116.485C412.926 108.925 418.28 96 428.971 96H473.239C453.531 30.674 380.693 -8.315 312 -14.865V232H372C378.627 232 384 237.373 384 244V268C384 274.627 378.627 280 372 280H312V291.668C344.456 301.863 368 332.18 368 368C368 412.183 332.183 448 288 448S208 412.183 208 368C208 332.18 231.544 301.862 264 291.668V280H204C197.373 280 192 274.627 192 268V244C192 237.373 197.373 232 204 232H264V-14.865C195.192 -8.304 122.424 30.824 102.762 96H147.03C157.721 96 163.075 108.926 155.515 116.485L88.486 183.514C83.8 188.2 76.202 188.2 71.515 183.514L4.485 116.485C-3.074 108.926 2.28 96 12.971 96H53.255C73.657 -3.556 181.238 -64 288 -64C401.135 -64 503.338 1.3 522.745 96H563.029C573.72 96 579.074 108.926 571.515 116.485zM288 400C305.645 400 320 385.645 320 368S305.645 336 288 336S256 350.355 256 368S270.355 400 288 400z" />
+    <glyph glyph-name="angel"
+      unicode="&#xF779;"
+      horiz-adv-x="576" d=" M571.7 -5.1L533.5 73.5C526.9 87 526.9 103.1 533.5 116.6C549.7 150 559.9 154.1 559.9 191.9C559.9 243.0000000000001 513 287.9000000000001 459.5 287.9000000000001C434.4 287.9000000000001 410.8 277.9000000000001 393.2 259.8000000000001L320.5 186.4C310.2 189.8 299.3 191.8 288 191.8C276.8 191.8 265.9 189.8 255.6 186.4L182.9 259.7000000000001C165.3 277.7000000000001 141.7 287.8000000000001 116.6 287.8000000000001C63.1 287.8000000000001 16.2 242.9000000000001 16.2 191.8000000000001C16.2 153.9000000000001 26.4 149.8000000000001 42.6 116.5000000000001C49.2 103.0000000000001 49.2 86.9 42.6 73.4L4.4 -5.1C-10.1 -34.9 13.7 -64 40.7 -64H535.4C563 -64 585.8 -34.1 571.6999999999999 -5.1zM52.4 -16L85.8 52.6C98.7 79.2000000000001 98.7 111.1 85.8 137.7000000000001C80.4 148.9 75.9 156.6 72.3 162.8000000000001C65.1 175.2000000000001 64.2 176.8000000000001 64.2 192.0000000000001C64.2 216.7000000000001 89.7 240.0000000000001 116.6 240.0000000000001C128.7 240.0000000000001 140.1 235.1000000000001 148.7 226.3000000000001L213.9 160.5000000000001C206.6 153.0000000000001 200.3 144.4 195.5 134.8000000000001L120.1 -16H52.4zM173.8 -16L238.4 113.3C247.9 132.2 266.9 144 288.1 144C309.3 144 328.3 132.2 337.8 113.3L402.3 -16H173.8zM455.9 -16L380.6 134.8C375.8 144.5 369.5 153 362.2000000000001 160.5L427.4000000000001 226.3C436.0000000000001 235.2 447.4000000000001 240 459.5000000000001 240C486.5000000000001 240 511.9 216.7 511.9 192C511.9 176.8 511.0000000000001 175.2 503.8 162.8C500.2 156.6 495.7 148.9 490.3 137.7C477.4 111.1 477.4 79.2 490.3 52.6L523.7 -16H455.9zM208 304C208 259.8 243.8 224 288 224S368 259.8 368 304S332.2 384 288 384S208 348.2 208 304zM320 304C320 286.4 305.6 272 288 272S256 286.4 256 304S270.4 336 288 336S320 321.6 320 304zM176.7 310.7L176.9 310.8C177.7 323.8 180.8 336 185.7 347.4C174.7 353.4 168.1 360.4 168.1 368C168.1 390.1 221.8 408 288.1 408S408.1 390.1 408.1 368C408.1 360.4 401.4000000000001 353.4 390.5 347.4C395.4 336 398.5 323.8 399.3 310.8L399.5 310.7C429.3 325.2 448 345.5 448 368C448 412.2 376.4 448 288 448S128 412.2 128 368C128 345.5 146.7 325.2 176.7 310.7z" />
+    <glyph glyph-name="angle-double-down"
+      unicode="&#xF103;"
+      horiz-adv-x="320" d=" M151.5 20.2L3.5 167C-1.2 171.7 -1.2 179.3 3.5 184L23.3 203.8C28 208.5 35.6 208.5 40.3 203.8L160 85.3L279.7 203.8C284.4 208.5 292 208.5 296.7 203.8L316.5 184C321.2 179.3 321.2 171.7 316.5 167L168.5 20.2C163.8 15.5 156.2 15.5 151.5 20.2zM168.5 180.2L316.5 327C321.2 331.7 321.2 339.3 316.5 344L296.7 363.8C292 368.5 284.4 368.5 279.7 363.8L160 245.3L40.3 363.8C35.6 368.5 28 368.5 23.3 363.8L3.5 344C-1.2 339.3 -1.2 331.7 3.5 327L151.5 180.2C156.2 175.5 163.8 175.5 168.5 180.2z" />
+    <glyph glyph-name="angle-double-left"
+      unicode="&#xF100;"
+      horiz-adv-x="384" d=" M20.2 200.5L167 348.5C171.7 353.2 179.3 353.2 184 348.5L203.8 328.7C208.5 324 208.5 316.4 203.8 311.7L85.3 192L203.8 72.3C208.5 67.6 208.5 60 203.8 55.3L184 35.5C179.3 30.8 171.7 30.8 167 35.5L20.2 183.5C15.5 188.2 15.5 195.8 20.2 200.5zM180.2 183.5L327 35.5C331.7 30.8 339.3 30.8 344 35.5L363.8 55.3C368.5 60 368.5 67.6 363.8 72.3L245.3 192L363.8 311.7C368.5 316.4 368.5 324 363.8 328.7L344 348.5C339.3 353.2 331.7 353.2 327 348.5L180.2 200.5C175.5 195.8 175.5 188.2 180.2 183.5z" />
+    <glyph glyph-name="angle-double-right"
+      unicode="&#xF101;"
+      horiz-adv-x="384" d=" M363.8 183.5L217 35.5C212.3 30.8 204.7 30.8 200 35.5L180.2 55.3C175.5 60 175.5 67.6 180.2 72.3L298.7 192L180.2 311.7C175.5 316.4 175.5 324 180.2 328.7L200 348.5C204.7 353.2 212.3 353.2 217 348.5L363.8 200.5C368.5 195.8 368.5 188.2 363.8 183.5zM203.8 200.5L57 348.5C52.3 353.2 44.7 353.2 40 348.5L20.2 328.7C15.5 324 15.5 316.4 20.2 311.7L138.7 192L20.2 72.3C15.5 67.6 15.5 60 20.2 55.3L40 35.5C44.7 30.8 52.3 30.8 57 35.5L203.8 183.5C208.5 188.2 208.5 195.8 203.8 200.5z" />
+    <glyph glyph-name="angle-double-up"
+      unicode="&#xF102;"
+      horiz-adv-x="320" d=" M168.5 363.8L316.5 217C321.2 212.3 321.2 204.7 316.5 200L296.7 180.2C292 175.5 284.4 175.5 279.7 180.2L160 298.7L40.3 180.2C35.6 175.5 28 175.5 23.3 180.2L3.5 200C-1.2 204.7 -1.2 212.3 3.5 217L151.5 363.8C156.2 368.5 163.8 368.5 168.5 363.8zM151.5 203.8L3.5 57C-1.2 52.3 -1.2 44.7 3.5 40L23.3 20.2C28 15.5 35.6 15.5 40.3 20.2L160 138.7L279.7 20.2C284.4 15.5 292 15.5 296.7 20.2L316.5 40C321.2 44.7 321.2 52.3 316.5 57L168.5 203.8C163.8 208.5 156.2 208.5 151.5 203.8z" />
+    <glyph glyph-name="angle-down"
+      unicode="&#xF107;"
+      horiz-adv-x="320" d=" M151.5 100.2L3.5 247C-1.2 251.7 -1.2 259.3 3.5 264L23.3 283.8C28 288.5 35.6 288.5 40.3 283.8L160 165.3L279.7 283.8C284.4 288.5 292 288.5 296.7 283.8L316.5 264C321.2 259.3 321.2 251.7 316.5 247L168.5 100.2C163.8 95.5 156.2 95.5 151.5 100.2z" />
+    <glyph glyph-name="angle-left"
+      unicode="&#xF104;"
+      horiz-adv-x="192" d=" M4.2 200.5L151 348.5C155.7 353.2 163.3 353.2 168 348.5L187.8 328.7C192.5 324 192.5 316.4 187.8 311.7L69.3 192L187.8 72.3C192.5 67.6 192.5 60 187.8 55.3L168 35.5C163.3 30.8 155.7 30.8 151 35.5L4.2 183.5C-0.5 188.2 -0.5 195.8 4.2 200.5z" />
+    <glyph glyph-name="angle-right"
+      unicode="&#xF105;"
+      horiz-adv-x="192" d=" M187.8 183.5L41 35.5C36.3 30.8 28.7 30.8 24 35.5L4.2 55.3C-0.5 60 -0.5 67.6 4.2 72.3L122.7 192L4.2 311.7C-0.5 316.4 -0.5 324 4.2 328.7L24 348.5C28.7 353.2 36.3 353.2 41 348.5L187.8 200.5C192.5 195.8 192.5 188.2 187.8 183.5z" />
+    <glyph glyph-name="angle-up"
+      unicode="&#xF106;"
+      horiz-adv-x="320" d=" M168.5 283.8L316.5 137C321.2 132.3 321.2 124.7 316.5 120L296.7 100.2C292 95.5 284.4 95.5 279.7 100.2L160 218.7L40.3 100.2C35.6 95.5 28 95.5 23.3 100.2L3.5 120C-1.2 124.7 -1.2 132.3 3.5 137L151.5 283.8C156.2 288.5 163.8 288.5 168.5 283.8z" />
+    <glyph glyph-name="angry"
+      unicode="&#xF556;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM248 136C214.4 136 182.8 121.2 161.2 95.4C152.7 85.2 154.1 70.1 164.3 61.6S189.6 54.4 198.1 64.6C222.9 94.3 273.1 94.3 297.9 64.6C306 54.9 321.1 52.7 331.7 61.6C341.9 70.1 343.2 85.2 334.8 95.4C313.2 121.2 281.6 136 248 136zM200 208C210.3 208 219.9 214.7 223 225.1C226.8 237.8 219.6 251.2 206.9 255L126.9 279C114.1 282.9 100.8 275.6 97 262.9C93.2 250.2 100.4 236.8 113.1 233L141.3 224.5C138.2 219.6 136 214.1 136 207.9C136 190.2 150.3 175.9 168 175.9S200 190.3 200 208zM399 262.9C395.2 275.6 381.9 282.8 369.1 279L289.1 255C276.4000000000001 251.2 269.2000000000001 237.8 273 225.1C276.1 214.7 285.7 208 296 208C296 190.3 310.3 176 328 176S360 190.3 360 208C360 214.2 357.8 219.7 354.7 224.6L382.9 233.1C395.6 236.8 402.8 250.2 399 262.9z" />
+    <glyph glyph-name="ankh"
+      unicode="&#xF644;"
+      horiz-adv-x="320" d=" M304 176H227.08C256.54 212.35 281.9 263.85 281.9 310.86C281.9 395.02 227.33 448 160 448S38.1 395.02 38.1 310.86C38.1 263.86 63.46 212.35 92.92 176H16C7.16 176 0 168.84 0 160V144C0 135.16 7.16 128 16 128H136V-48C136 -56.84 143.16 -64 152 -64H168C176.84 -64 184 -56.84 184 -48V128H304C312.84 128 320 135.16 320 144V160C320 168.84 312.84 176 304 176zM160 400C204.21 400 233.9 364.18 233.9 310.86C233.9 257.0300000000001 184.21 191.37 160 177.51C135.79 191.36 86.1 257.03 86.1 310.86C86.1 364.18 115.8 400 160 400z" />
+    <glyph glyph-name="apple-alt"
+      unicode="&#xF5D1;"
+      horiz-adv-x="448" d=" M415.2200000000001 270.38C396.6900000000001 296.85 371.23 313.55 341.6400000000001 318.66H341.6100000000001C307.1200000000001 324.64 255.4700000000001 309.5 224.0100000000001 294.89C192.5500000000001 309.5 141.0600000000001 324.66 106.3700000000001 318.66C76.7800000000001 313.55 51.3200000000001 296.85 32.7900000000001 270.38C4.85 230.5 -6.55 167.88 3.73 110.83C18.97 26.31 69.96 -64 167.23 -64C180.67 -64 194.85 -59.97 209.44 -52.03C218.44 -47.15 229.56 -47.15 238.56 -52.03C253.15 -59.97 267.3400000000001 -64 280.77 -64C378.03 -64 429.02 26.31 444.27 110.84C454.55 167.8800000000001 443.15 230.5000000000001 415.22 270.38zM397.0300000000001 119.36C392.9700000000001 96.75 368.19 -16 280.77 -16C275.52 -16 268.87 -13.88 261.49 -9.88C249.93 -3.58 236.96 -0.43 224 -0.43S198.07 -3.59 186.51 -9.88C179.14 -13.88 172.48 -16 167.23 -16C79.81 -16 55.03 96.75 50.97 119.34C42.97 163.73 51.47 213.37 72.09 242.8400000000001C83.28 258.8200000000001 97.55 268.42 114.52 271.3400000000001C127.07 273.5 168.35 271.4100000000001 224 240.5900000000001C279.68 271.4300000000001 321 273.5300000000001 333.48 271.3400000000001C350.4500000000001 268.4200000000001 364.7200000000001 258.8200000000001 375.9100000000001 242.8400000000001C396.5300000000001 213.38 405.0300000000001 163.73 397.0300000000001 119.36zM222.41 336C241.07 336 274.5 339.26 295.61 360.38C326.17 390.94 319.32 447.35 319.32 447.35S313.93 448 305.57 448C286.91 448 253.48 444.73 232.38 423.62C201.82 393.05 208.67 336.65 208.67 336.65S214.06 336 222.41 336z" />
+    <glyph glyph-name="apple-crate"
+      unicode="&#xF6B1;"
+      horiz-adv-x="576" d=" M434.2200000000001 397.53C445.5100000000001 409.7200000000001 448.6500000000001 429.56 447.4400000000001 447.75C434.5600000000001 448.61 411.7700000000001 447.87 397.4200000000001 434.4700000000001C380.8900000000001 417.87 383.6500000000001 388.11 384.2000000000001 384.25C402.6700000000001 383.02 421.9700000000001 386.1 434.2200000000001 397.53zM242.5300000000001 397.53C253.82 409.7200000000001 256.9600000000001 429.56 255.7500000000001 447.75C242.8700000000001 448.61 220.0800000000001 447.87 205.73 434.4700000000001C189.2 417.87 191.96 388.11 192.51 384.25C210.98 383.02 230.2800000000001 386.1 242.5300000000001 397.53zM560 256H510.29C514.26 282.9700000000001 510.73 319.55 493.0700000000001 345.06C481.8200000000001 361.37 465.9800000000001 371.76 447.2900000000001 375.12L447.0000000000001 375.17C428.7800000000001 378.19 403.4400000000001 372.15 384.0000000000001 363.76C364.5000000000001 372.15 339.0900000000001 378.15 320.7200000000001 375.12C308.37 372.89 297.42 367.3 288.04 359.2200000000001C278.6500000000001 367.31 267.68 372.89 255.2800000000001 375.12L255.0000000000001 375.17C236.7800000000001 378.19 211.44 372.15 192 363.76C172.53 372.17 147 378.12 128.72 375.12C110.1 371.76 94.28 361.39 83.03 345.0900000000001C65.27 319.38 61.71 282.62 65.69 256H16C7.16 256 0 248.84 0 240V-48C0 -56.84 7.16 -64 16 -64H560C568.84 -64 576 -56.84 576 -48V240C576 248.84 568.84 256 560 256zM314.5 317.8C319.75 325.4100000000001 325.4100000000001 327.2100000000001 328.94 327.8300000000001C335.72 329 357.44 324.4600000000001 372.32 316.14L384.01 309.5900000000001L395.73 316.15C410.51 324.42 431.92 328.9600000000001 438.98 327.8400000000001C442.79 327.14 448.42 325.28 453.6 317.78C463.72 303.12 465.8200000000001 277.14 462.6 259.75C462.37 258.38 461.84 257.3300000000001 461.58 256H318.29C320.93 273.95 319.7700000000001 296.01 313.82 316.38C314.09 316.8 314.22 317.39 314.5 317.8zM122.53 317.8C127.78 325.4100000000001 133.44 327.2100000000001 136.91 327.8300000000001C143.94 328.7800000000001 165.41 324.4700000000001 180.29 316.1600000000001L192.01 309.6L203.73 316.1600000000001C218.51 324.43 239.89 328.9700000000001 246.98 327.85C252.98 326.73 257.67 323.5200000000001 261.64 317.76C271.76 303.12 273.83 277.1500000000001 270.61 259.76C270.38 258.39 269.85 257.3400000000001 269.5900000000001 256.01H114.4900000000001C114.2 257.48 113.62 258.63 113.37 260.15C110.19 277.0900000000001 112.34 303.0800000000001 122.53 317.8zM528 -16H48V72H528V-16zM528 120H48V208H528V120zM96 144C104.84 144 112 151.16 112 160S104.84 176 96 176S80 168.84 80 160S87.16 144 96 144zM480 16C488.84 16 496 23.16 496 32S488.84 48 480 48S464 40.84 464 32S471.16 16 480 16zM96 16C104.84 16 112 23.16 112 32S104.84 48 96 48S80 40.84 80 32S87.16 16 96 16zM480 144C488.84 144 496 151.16 496 160S488.84 176 480 176S464 168.84 464 160S471.16 144 480 144z" />
+    <glyph glyph-name="archive"
+      unicode="&#xF187;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V288C0 279.2 7.2 272 16 272H32V0C32 -17.7 46.3 -32 64 -32H448C465.7 -32 480 -17.7 480 0V272H496C504.8 272 512 279.2 512 288V368C512 394.5 490.5 416 464 416zM432 16H80V272H432V16zM464 320H48V368H464V320zM204 176H308C314.6 176 320 181.4 320 188V212C320 218.6 314.6 224 308 224H204C197.4 224 192 218.6 192 212V188C192 181.4 197.4 176 204 176z" />
+    <glyph glyph-name="archway"
+      unicode="&#xF557;"
+      horiz-adv-x="576" d=" M560 400C568.84 400 576 407.16 576 416V432C576 440.84 568.84 448 560 448H16C7.16 448 0 440.84 0 432V416C0 407.16 7.16 400 16 400H32V-16H16.02C7.18 -16 0.02 -23.16 0.02 -32V-48C0.02 -56.84 7.18 -64 16.02 -64H176C184.84 -64 192 -56.84 192 -48V128C192 181.02 234.98 224 288 224S384 181.02 384 128V-32H384.02V-48C384.02 -56.84 391.18 -64 400.02 -64H560C568.84 -64 576 -56.84 576 -48V-32C576 -23.16 568.84 -16 560 -16H544V400H560zM496 400V360H80V400H496zM432 -16V128C432 207.4 367.4 272 288 272S144 207.4 144 128V-16H80V312H496V-16H432z" />
+    <glyph glyph-name="arrow-alt-circle-down"
+      unicode="&#xF358;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM224 308V192H157C146.3 192 141 179.1 148.5 171.5L247.5 72.5C252.2 67.8 259.8 67.8 264.5 72.5L363.5 171.5C371.1 179.1 365.7 192 355 192H288V308C288 314.6 282.6 320 276 320H236C229.4 320 224 314.6 224 308z" />
+    <glyph glyph-name="arrow-alt-circle-left"
+      unicode="&#xF359;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM456 192C456 81.5 366.5 -8 256 -8S56 81.5 56 192S145.5 392 256 392S456 302.5 456 192zM384 212V172C384 165.4 378.6 160 372 160H256V93C256 82.3 243.1 77 235.5 84.5L136.5 183.5C131.8 188.2 131.8 195.8 136.5 200.5L235.5 299.5C243.1 307.1 256 301.7 256 291V224H372C378.6 224 384 218.6 384 212z" />
+    <glyph glyph-name="arrow-alt-circle-right"
+      unicode="&#xF35A;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM56 192C56 302.5 145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192zM128 172V212C128 218.6 133.4 224 140 224H256V291C256 301.7 268.9 307 276.5 299.5L375.5 200.5C380.2 195.8 380.2 188.2 375.5 183.5L276.5 84.5C268.9 76.9 256 82.3 256 93V160H140C133.4 160 128 165.4 128 172z" />
+    <glyph glyph-name="arrow-alt-circle-up"
+      unicode="&#xF35B;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM256 392C366.5 392 456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192S145.5 392 256 392zM276 64H236C229.4 64 224 69.4 224 76V192H157C146.3 192 141 204.9 148.5 212.5L247.5 311.5C252.2 316.2 259.8 316.2 264.5 311.5L363.5 212.5C371.1 204.9 365.7 192 355 192H288V76C288 69.4 282.6 64 276 64z" />
+    <glyph glyph-name="arrow-alt-down"
+      unicode="&#xF354;"
+      horiz-adv-x="448" d=" M400 240H326.2V368C326.2 394.5 304.7 416 278.2 416H169.8C143.3 416 121.8 394.5 121.8 368V240H48.1C5.5 240 -16.1 188.3 14.2 158.1L190.1 -17.9C208.8 -36.6 239.2 -36.6 258 -17.9L434 158.1C464 188.2000000000001 442.7 240.0000000000001 400 240.0000000000001zM224 16L48 192H169.8V368H278.1V192H400L224 16z" />
+    <glyph glyph-name="arrow-alt-from-bottom"
+      unicode="&#xF346;"
+      horiz-adv-x="384" d=" M384 4V-20C384 -26.6 378.6 -32 372 -32H12C5.4 -32 0 -26.6 0 -20V4C0 10.6 5.4 16 12 16H372C378.6 16 384 10.6 384 4zM14.1 257.9L158.1 401.9C176.8 420.6 207.2 420.6 226 401.9L369.9 257.9C400.1 227.7 378.6 176 336 176H284.4V96C284.4 69.5 262.9 48 236.4 48H147.8C121.3 48 99.8 69.5 99.8 96V176H48C5.3 176 -16 227.8 14.1 257.9zM48 224H147.7V96H236.3V224H336L192 368L48 224z" />
+    <glyph glyph-name="arrow-alt-from-left"
+      unicode="&#xF347;"
+      horiz-adv-x="448" d=" M36 0H12C5.4 0 0 5.4 0 12V372C0 378.6 5.4 384 12 384H36C42.6 384 48 378.6 48 372V12C48 5.4 42.6 0 36 0zM289.9 369.9L433.9 225.9C452.6 207.2 452.6 176.8 433.9 158L289.9 14.1C259.7 -16.1 208 5.4 208 48V99.6H128C101.5 99.6 80 121.1 80 147.6V236.2C80 262.7000000000001 101.5 284.2000000000001 128 284.2000000000001H208V336C208 378.7 259.8 400 289.9 369.9zM256 336V236.3H128V147.7000000000001H256V48L400 192L256 336z" />
+    <glyph glyph-name="arrow-alt-from-right"
+      unicode="&#xF348;"
+      horiz-adv-x="448" d=" M412 384H436C442.6 384 448 378.6 448 372V12C448 5.4 442.6 0 436 0H412C405.4 0 400 5.4 400 12V372C400 378.6 405.4 384 412 384zM158.1 14.1L14.1 158.1C-4.6 176.8 -4.6 207.2 14.1 226.0000000000001L158.1 369.9000000000001C188.3 400.1 240 378.6 240 336V284.4H320C346.5 284.4 368 262.9 368 236.4V147.8C368 121.3 346.5 99.8 320 99.8H240V48C240 5.3 188.2 -16 158.1 14.1zM192 48V147.7H320V236.3H192V336L48 192L192 48z" />
+    <glyph glyph-name="arrow-alt-from-top"
+      unicode="&#xF349;"
+      horiz-adv-x="384" d=" M0 380V404C0 410.6 5.4 416 12 416H372C378.6 416 384 410.6 384 404V380C384 373.4 378.6 368 372 368H12C5.4 368 0 373.4 0 380zM369.9 126.1L225.9 -17.9C207.2 -36.6 176.8 -36.6 158 -17.9L14.1 126.1C-16.1 156.3 5.4 208 48.1 208H99.7V288C99.7 314.5 121.2 336 147.7 336H236.3C262.8 336 284.3 314.5 284.3 288V208H336C378.7 208 400 156.2000000000001 369.9 126.1zM336 160H236.3V288H147.7V160H48L192 16L336 160z" />
+    <glyph glyph-name="arrow-alt-left"
+      unicode="&#xF355;"
+      horiz-adv-x="448" d=" M272 16.048V89.846H400C426.51 89.846 448 111.336 448 137.846V246.154C448 272.664 426.51 294.154 400 294.154H272V367.943C272 410.581 220.269 432.093 190.059 401.884L14.059 225.941C-4.686 207.196 -4.687 176.804 14.059 158.059L190.059 -17.893C220.208 -48.042 272 -26.675 272 16.048zM48 192L224 368V246.154H400V137.846H224V16L48 192z" />
+    <glyph glyph-name="arrow-alt-right"
+      unicode="&#xF356;"
+      horiz-adv-x="448" d=" M176 367.952V294.154H48C21.49 294.154 0 272.664 0 246.154V137.846C0 111.336 21.49 89.846 48 89.846H176V16.057C176 -26.581 227.731 -48.094 257.9410000000001 -17.884L433.9410000000001 158.059C452.686 176.804 452.687 207.196 433.9410000000001 225.941L257.9410000000001 401.893C227.792 432.042 176 410.675 176 367.952zM400 192L224 16V137.846H48V246.154H224V368L400 192z" />
+    <glyph glyph-name="arrow-alt-square-down"
+      unicode="&#xF350;"
+      horiz-adv-x="448" d=" M204 320H244C250.6 320 256 314.6 256 308V192H323C333.7 192 339 179.1 331.5 171.5L232.5 72.5C227.8 67.8 220.2 67.8 215.5 72.5L116.5 171.5C108.9 179.1 114.3 192 125 192H192V308C192 314.6 197.4 320 204 320zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-alt-square-left"
+      unicode="&#xF351;"
+      horiz-adv-x="448" d=" M352 212V172C352 165.4 346.6 160 340 160H224V93C224 82.3 211.1 77 203.5 84.5L104.5 183.5C99.8 188.2 99.8 195.8 104.5 200.5L203.5 299.5C211.1 307.1 224 301.7 224 291V224H340C346.6 224 352 218.6 352 212zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-alt-square-right"
+      unicode="&#xF352;"
+      horiz-adv-x="448" d=" M96 172V212C96 218.6 101.4 224 108 224H224V291C224 301.7 236.9 307 244.5 299.5L343.5 200.5C348.2 195.8 348.2 188.2 343.5 183.5L244.5 84.5C236.9 76.9 224 82.3 224 93V160H108C101.4 160 96 165.4 96 172zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-alt-square-up"
+      unicode="&#xF353;"
+      horiz-adv-x="448" d=" M244 64H204C197.4 64 192 69.4 192 76V192H125C114.3 192 109 204.9 116.5 212.5L215.5 311.5C220.2 316.2 227.8 316.2 232.5 311.5L331.5 212.5C339.1 204.9 333.7 192 323 192H256V76C256 69.4 250.6 64 244 64zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-alt-to-bottom"
+      unicode="&#xF34A;"
+      horiz-adv-x="384" d=" M336 272H284.4V368C284.4 394.5 262.9 416 236.4 416H147.8C121.3 416 99.8 394.5 99.8 368V272H48.1C5.5 272 -16.1 220.3 14.2 190.1L158.1 46.1C176.8 27.4 207.2 27.4 226.0000000000001 46.1L370 190.1C400 220.2 378.7 272 336 272zM192 80L48 224H147.7V368H236.3V224H336L192 80zM384 4V-20C384 -26.6 378.6 -32 372 -32H12C5.4 -32 0 -26.6 0 -20V4C0 10.6 5.4 16 12 16H372C378.6 16 384 10.6 384 4z" />
+    <glyph glyph-name="arrow-alt-to-left"
+      unicode="&#xF34B;"
+      horiz-adv-x="448" d=" M304 48V99.6H400C426.5 99.6 448 121.1 448 147.6V236.2C448 262.7000000000001 426.5 284.2000000000001 400 284.2000000000001H304V335.8C304 378.4 252.3 400 222.1 369.7000000000001L78.1 225.8C59.4 207.1 59.4 176.7 78.1 157.9L222.1 13.9C252.2 -16 304 5.3 304 48zM112 192L256 336V236.3H400V147.7000000000001H256V48L112 192zM36 0H12C5.4 0 0 5.4 0 12V372C0 378.6 5.4 384 12 384H36C42.6 384 48 378.6 48 372V12C48 5.4 42.6 0 36 0z" />
+    <glyph glyph-name="arrow-alt-to-right"
+      unicode="&#xF34C;"
+      horiz-adv-x="448" d=" M144 336V284.4H48C21.5 284.4 0 262.9 0 236.4V147.8C0 121.3 21.5 99.8 48 99.8H144V48.2C144 5.6 195.7 -16 225.9 14.3L369.9 158.2000000000001C388.6 176.9 388.6 207.3000000000001 369.9 226.1000000000001L225.9 370.1C195.8 400 144 378.7 144 336zM336 192L192 48V147.7H48V236.3H192V336L336 192zM412 384H436C442.6 384 448 378.6 448 372V12C448 5.4 442.6 0 436 0H412C405.4 0 400 5.4 400 12V372C400 378.6 405.4 384 412 384z" />
+    <glyph glyph-name="arrow-alt-to-top"
+      unicode="&#xF34D;"
+      horiz-adv-x="384" d=" M48 112H99.6V16C99.6 -10.5 121.1 -32 147.6 -32H236.2C262.7 -32 284.2 -10.5 284.2 16V112H335.8C378.4000000000001 112 400 163.7 369.7 193.9L225.8 337.9C207.1 356.6 176.7 356.6 157.9 337.9L13.9 193.9C-16 163.8 5.3 112 48 112zM192 304L336 160H236.3V16H147.7V160H48L192 304zM0 380V404C0 410.6 5.4 416 12 416H372C378.6 416 384 410.6 384 404V380C384 373.4 378.6 368 372 368H12C5.4 368 0 373.4 0 380z" />
+    <glyph glyph-name="arrow-alt-up"
+      unicode="&#xF357;"
+      horiz-adv-x="448" d=" M48.048 144H121.846V16C121.846 -10.51 143.336 -32 169.846 -32H278.154C304.664 -32 326.154 -10.51 326.154 16V144H399.943C442.581 144 464.094 195.731 433.884 225.941L257.9410000000001 401.9410000000001C239.1960000000001 420.686 208.804 420.687 190.059 401.9410000000001L14.107 225.941C-16.042 195.792 5.325 144 48.048 144zM224 368L400 192H278.154V16H169.846V192H48L224 368z" />
+    <glyph glyph-name="arrow-circle-down"
+      unicode="&#xF0AB;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM385.9 198.1L366.3 217.7C361.5 222.5 353.8 222.4 349.1 217.5L282 147.2V308C282 314.6 276.6 320 270 320H242C235.4 320 230 314.6 230 308V147.2L162.9 217.5C158.2 222.4 150.5 222.5 145.7 217.7L126.1 198.1C121.4 193.4 121.4 185.8 126.1 181.1L247.5000000000001 59.7000000000001C252.2 55.0000000000001 259.8 55.0000000000001 264.5 59.7000000000001L385.9 181.1C390.6 185.8 390.6 193.4 385.9 198.1z" />
+    <glyph glyph-name="arrow-circle-left"
+      unicode="&#xF0A8;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM56 192C56 302.5 145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192zM245.1 62.1L123.7 183.5C119 188.2 119 195.8 123.7 200.5L245.1 321.9C249.8 326.6 257.4000000000001 326.6 262.1 321.9L281.7000000000001 302.3C286.5000000000001 297.5 286.4000000000001 289.8 281.5000000000001 285.1L211.2 218H372C378.6 218 384 212.6 384 206V178C384 171.4 378.6 166 372 166H211.2L281.5 98.9C286.4 94.2 286.5 86.5 281.7 81.7L262.1 62.1C257.4 57.4 249.8 57.4 245.1 62.1z" />
+    <glyph glyph-name="arrow-circle-right"
+      unicode="&#xF0A9;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM456 192C456 81.5 366.5 -8 256 -8S56 81.5 56 192S145.5 392 256 392S456 302.5 456 192zM266.9 321.9L388.3 200.5C393 195.8 393 188.2 388.3 183.5L266.9 62.1C262.2 57.4 254.6 57.4 249.9 62.1L230.3 81.7000000000001C225.5 86.5000000000001 225.6 94.2000000000001 230.5 98.9L300.8 166H140C133.4 166 128 171.4 128 178V206C128 212.6 133.4 218 140 218H300.8L230.5 285.1C225.6 289.8 225.5 297.5 230.3 302.3L249.9 321.9C254.6 326.6 262.2 326.6 266.9 321.9z" />
+    <glyph glyph-name="arrow-circle-up"
+      unicode="&#xF0AA;"
+      horiz-adv-x="512" d=" M256 -56C393 -56 504 55 504 192S393 440 256 440S8 329 8 192S119 -56 256 -56zM256 392C366.5 392 456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192S145.5 392 256 392zM126.1 202.9L247.5 324.3C252.2 329 259.8 329 264.5 324.3L385.9 202.9C390.6 198.2 390.6 190.6 385.9 185.9L366.3 166.3C361.5 161.5 353.8 161.6 349.1 166.5L282 236.8V76C282 69.4 276.6 64 270 64H242C235.4 64 230 69.4 230 76V236.8L162.9 166.5C158.2 161.6 150.5 161.5 145.7 166.3L126.1 185.9C121.4 190.6 121.4 198.2000000000001 126.1 202.9z" />
+    <glyph glyph-name="arrow-down"
+      unicode="&#xF063;"
+      horiz-adv-x="448" d=" M441.9 197.9L422.1 217.7C417.4 222.4 409.8 222.4 405.1 217.7L250 62.6V404C250 410.6 244.6 416 238 416H210C203.4 416 198 410.6 198 404V62.6L42.9 217.7C38.2 222.4 30.6 222.4 25.9 217.7L6.1 197.9C1.4 193.2 1.4 185.6 6.1 180.9L215.5 -28.5C220.2 -33.2 227.8 -33.2 232.5 -28.5L441.9 180.9C446.6 185.6 446.6 193.2 441.9 197.9z" />
+    <glyph glyph-name="arrow-from-bottom"
+      unicode="&#xF342;"
+      horiz-adv-x="384" d=" M35.5 264.1L183.5 412.5C188.2 417.2 195.8 417.2 200.5 412.5L348.5 264.1C353.2 259.4 353.2 251.8 348.5 247.1L328.9 227.5C324.1 222.7 316.4 222.8 311.8 227.7L218 324.8V76C218 69.4 212.6 64 206 64H178C171.4 64 166 69.4 166 76V324.8L72.3 227.7C67.6 222.9 59.9 222.8 55.2 227.5L35.6 247.1C30.8 251.8 30.8 259.4 35.5 264.1zM372 20H12C5.4 20 0 14.6 0 8V-20C0 -26.6 5.4 -32 12 -32H372C378.6 -32 384 -26.6 384 -20V8C384 14.6 378.6 20 372 20z" />
+    <glyph glyph-name="arrow-from-left"
+      unicode="&#xF343;"
+      horiz-adv-x="448" d=" M296.1 348.5L444.5 200.5C449.2 195.8 449.2 188.2 444.5 183.5L296.1 35.5C291.4000000000001 30.8 283.8 30.8 279.1 35.5L259.5 55.1C254.7 59.9 254.8 67.6 259.7 72.2000000000001L356.8 165.9H108C101.4 165.9 96 171.3 96 177.9V205.9C96 212.5 101.4 217.9 108 217.9H356.8L259.7000000000001 311.6C254.9000000000001 316.3 254.8000000000001 324 259.5000000000001 328.7000000000001L279.1000000000001 348.3C283.8000000000001 353.2000000000001 291.4000000000001 353.2000000000001 296.1000000000001 348.5zM52 12V372C52 378.6 46.6 384 40 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0H40C46.6 0 52 5.4 52 12z" />
+    <glyph glyph-name="arrow-from-right"
+      unicode="&#xF344;"
+      horiz-adv-x="448" d=" M151.9 35.5L3.5 183.5C-1.2 188.2 -1.2 195.8 3.5 200.5L151.9 348.5C156.6 353.2 164.2 353.2 168.9 348.5L188.5 328.9C193.3 324.1 193.2 316.4 188.3 311.8L91.2 218H340C346.6 218 352 212.6 352 206V178C352 171.4 346.6 166 340 166H91.2L188.3 72.3C193.1 67.6 193.2 59.9 188.5 55.2L168.9 35.6C164.2 30.8 156.6 30.8 151.9 35.4999999999999zM396 372V12C396 5.4 401.4 0 408 0H436C442.6 0 448 5.4 448 12V372C448 378.6 442.6 384 436 384H408C401.4 384 396 378.6 396 372z" />
+    <glyph glyph-name="arrow-from-top"
+      unicode="&#xF345;"
+      horiz-adv-x="384" d=" M348.5 119.9L200.5 -28.5C195.8 -33.2 188.2 -33.2 183.5 -28.5L35.5 119.9C30.8 124.6 30.8 132.2 35.5 136.9L55.1 156.5C59.9 161.3 67.6 161.2 72.2 156.3L165.9 59.2000000000001V308C165.9 314.6 171.3 320 177.9 320H205.9C212.5 320 217.9 314.6 217.9 308V59.2L311.6 156.3C316.3 161.1 324 161.1999999999999 328.7000000000001 156.5L348.3000000000001 136.8999999999999C353.2000000000001 132.1999999999999 353.2000000000001 124.5999999999999 348.5000000000001 119.8999999999999zM12 364H372C378.6 364 384 369.4 384 376V404C384 410.6 378.6 416 372 416H12C5.4 416 0 410.6 0 404V376C0 369.4 5.4 364 12 364z" />
+    <glyph glyph-name="arrow-left"
+      unicode="&#xF060;"
+      horiz-adv-x="448" d=" M229.9 -25.899L249.699 -6.1C254.385 -1.414 254.385 6.184 249.699 10.871L94.569 166H436C442.627 166 448 171.373 448 178V206C448 212.627 442.627 218 436 218H94.569L249.699 373.13C254.385 377.8160000000001 254.385 385.414 249.699 390.101L229.9 409.899C225.214 414.585 217.616 414.585 212.929 409.899L3.515 200.485C-1.171 195.799 -1.171 188.201 3.515 183.514L212.929 -25.9C217.615 -30.586 225.213 -30.586 229.9 -25.899z" />
+    <glyph glyph-name="arrow-right"
+      unicode="&#xF061;"
+      horiz-adv-x="448" d=" M218.101 409.899L198.302 390.1C193.616 385.414 193.616 377.8160000000001 198.302 373.129L353.432 218H12C5.373 218 0 212.627 0 206V178C0 171.373 5.373 166 12 166H353.432L198.302 10.87C193.616 6.184 193.616 -1.414 198.302 -6.101L218.101 -25.9C222.787 -30.586 230.385 -30.586 235.0720000000001 -25.9L444.486 183.514C449.172 188.2 449.172 195.798 444.486 200.485L235.071 409.899C230.385 414.586 222.787 414.586 218.101 409.899z" />
+    <glyph glyph-name="arrow-square-down"
+      unicode="&#xF339;"
+      horiz-adv-x="448" d=" M353.9 181.1L232.5 59.7C227.8 55 220.2 55 215.5 59.7L94.1 181.1C89.4 185.8 89.4 193.4 94.1 198.1L113.7 217.7C118.5 222.5 126.2 222.4 130.9 217.5L198 147.2000000000001V308C198 314.6 203.4 320 210 320H238C244.6 320 250 314.6 250 308V147.2L317.1 217.5C321.8 222.4 329.5 222.5 334.3 217.7L353.9 198.1C358.6 193.4 358.6 185.8 353.9 181.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-square-left"
+      unicode="&#xF33A;"
+      horiz-adv-x="448" d=" M213.1 62.1L91.7 183.5C87 188.2 87 195.8 91.7 200.5L213.1 321.9C217.8 326.6 225.4000000000001 326.6 230.1 321.9L249.7 302.3C254.5000000000001 297.5 254.4 289.8 249.5000000000001 285.1L179.2 218H340C346.6 218 352 212.6 352 206V178C352 171.4 346.6 166 340 166H179.2L249.5 98.9C254.4 94.2 254.5 86.5 249.7 81.7L230.1 62.1C225.4 57.4 217.8 57.4 213.1 62.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-square-right"
+      unicode="&#xF33B;"
+      horiz-adv-x="448" d=" M234.9 321.9L356.3 200.5C361 195.8 361 188.2 356.3 183.5L234.9 62.1C230.2 57.4 222.6 57.4 217.9 62.1L198.3 81.7000000000001C193.5 86.5000000000001 193.6 94.2000000000001 198.5 98.9L268.8 166H108C101.4 166 96 171.4 96 178V206C96 212.6 101.4 218 108 218H268.8L198.5 285.1C193.6 289.8 193.5 297.5 198.3 302.3L217.9 321.9C222.6 326.6 230.2 326.6 234.9 321.9zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-square-up"
+      unicode="&#xF33C;"
+      horiz-adv-x="448" d=" M94.1 202.9L215.5 324.3C220.2 329 227.8 329 232.5 324.3L353.9 202.9C358.6 198.2 358.6 190.6 353.9 185.9L334.3 166.3C329.5 161.5 321.8 161.6 317.1 166.5L250 236.8V76C250 69.4 244.6 64 238 64H210C203.4 64 198 69.4 198 76V236.8L130.9 166.5C126.2 161.6 118.5 161.5 113.7 166.3L94.1 185.9C89.4 190.6 89.4 198.2000000000001 94.1 202.9zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="arrow-to-bottom"
+      unicode="&#xF33D;"
+      horiz-adv-x="384" d=" M348.5 215.9L200.5 67.5C195.8 62.8 188.2 62.8 183.5 67.5L35.5 215.9C30.8 220.6 30.8 228.2 35.5 232.9L55.1 252.5C59.9 257.3 67.6 257.2 72.2 252.3L165.9 155.2000000000001V404C165.9 410.6 171.3 416 177.9 416H205.9C212.5 416 217.9 410.6 217.9 404V155.2L311.6 252.3C316.3 257.1 324 257.2 328.7000000000001 252.5L348.3000000000001 232.9C353.2000000000001 228.2 353.2000000000001 220.6 348.5000000000001 215.9zM372 20H12C5.4 20 0 14.6 0 8V-20C0 -26.6 5.4 -32 12 -32H372C378.6 -32 384 -26.6 384 -20V8C384 14.6 378.6 20 372 20z" />
+    <glyph glyph-name="arrow-to-left"
+      unicode="&#xF33E;"
+      horiz-adv-x="448" d=" M247.9 35.5L99.5 183.5C94.8 188.2 94.8 195.8 99.5 200.5L247.9 348.5C252.6 353.2 260.2 353.2 264.9 348.5L284.5 328.9C289.3 324.1 289.2 316.4 284.3 311.8L187.2 218H436C442.6 218 448 212.6 448 206V178C448 171.4 442.6 166 436 166H187.2L284.3 72.3C289.1 67.6 289.2 59.9 284.5 55.2L264.8999999999999 35.6C260.2 30.8 252.5999999999999 30.8 247.8999999999999 35.4999999999999zM52 12V372C52 378.6 46.6 384 40 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0H40C46.6 0 52 5.4 52 12z" />
+    <glyph glyph-name="arrow-to-right"
+      unicode="&#xF340;"
+      horiz-adv-x="448" d=" M200.1 348.5L348.5 200.5C353.2 195.8 353.2 188.2 348.5 183.5L200.1 35.5C195.4 30.8 187.8 30.8 183.1 35.5L163.5 55.1C158.7 59.9 158.8 67.6 163.7 72.2000000000001L260.8 165.9H12C5.4 165.9 0 171.3 0 177.9V205.9C0 212.5 5.4 217.9 12 217.9H260.8L163.7 311.6C158.9 316.3 158.8 324 163.5 328.7000000000001L183.1 348.3C187.8 353.2000000000001 195.4 353.2000000000001 200.1 348.5zM396 372V12C396 5.4 401.4 0 408 0H436C442.6 0 448 5.4 448 12V372C448 378.6 442.6 384 436 384H408C401.4 384 396 378.6 396 372z" />
+    <glyph glyph-name="arrow-to-top"
+      unicode="&#xF341;"
+      horiz-adv-x="384" d=" M35.5 168.1L183.5 316.5C188.2 321.2000000000001 195.8 321.2000000000001 200.5 316.5L348.5 168.1C353.2 163.4 353.2 155.8 348.5 151.1L328.9 131.5C324.1 126.7 316.4 126.8 311.8 131.7L218 228.8V-20C218 -26.6 212.6 -32 206 -32H178C171.4 -32 166 -26.6 166 -20V228.8L72.3 131.7000000000001C67.6 126.9 59.9 126.8000000000001 55.2 131.5000000000001L35.6 151.1000000000001C30.8 155.8000000000001 30.8 163.4000000000001 35.5 168.1000000000001zM12 364H372C378.6 364 384 369.4 384 376V404C384 410.6 378.6 416 372 416H12C5.4 416 0 410.6 0 404V376C0 369.4 5.4 364 12 364z" />
+    <glyph glyph-name="arrow-up"
+      unicode="&#xF062;"
+      horiz-adv-x="448" d=" M6.101 186.101L25.9 166.302C30.586 161.6160000000001 38.184 161.6160000000001 42.871 166.302L198 321.432V-20C198 -26.627 203.373 -32 210 -32H238C244.627 -32 250 -26.627 250 -20V321.432L405.13 166.302C409.816 161.6160000000001 417.414 161.6160000000001 422.101 166.302L441.9 186.101C446.586 190.787 446.586 198.385 441.9 203.072L232.485 412.485C227.799 417.171 220.201 417.171 215.514 412.485L6.101 203.071C1.414 198.385 1.414 190.787 6.101 186.101z" />
+    <glyph glyph-name="arrows-alt-h"
+      unicode="&#xF337;"
+      horiz-adv-x="512" d=" M508.485 200.485L409.4550000000001 299.514C401.8950000000001 307.074 388.9700000000001 301.7200000000001 388.9700000000001 291.029V220H123.03V291.03C123.03 301.721 110.104 307.075 102.545 299.515L3.515 200.486C-1.171 195.8 -1.171 188.202 3.515 183.515L102.545 84.486C110.105 76.926 123.03 82.28 123.03 92.971V164H388.971V92.97C388.971 82.2790000000001 401.897 76.925 409.456 84.485L508.486 183.514C513.172 188.201 513.172 195.799 508.485 200.485z" />
+    <glyph glyph-name="arrows-alt-v"
+      unicode="&#xF338;"
+      horiz-adv-x="256" d=" M227.03 59.03H156V324.9700000000001H227.03C237.721 324.9700000000001 243.075 337.896 235.515 345.455L136.486 444.485C131.8 449.171 124.202 449.171 119.515 444.485L20.486 345.455C12.926 337.895 18.28 324.9700000000001 28.971 324.9700000000001H100V59.03H28.97C18.279 59.03 12.925 46.104 20.485 38.545L119.514 -60.485C124.2 -65.171 131.798 -65.171 136.485 -60.485L235.514 38.545C243.074 46.104 237.72 59.03 227.03 59.03z" />
+    <glyph glyph-name="arrows-alt"
+      unicode="&#xF0B2;"
+      horiz-adv-x="512" d=" M276 211.925H391.85V288.0750000000001C391.85 298.766 404.776 304.12 412.3350000000001 296.56L508.484 200.411C513.1700000000001 195.725 513.1700000000001 188.127 508.484 183.44L412.3350000000001 87.291C404.7750000000001 79.731 391.85 85.085 391.85 95.776V171.925H275.999V56.149H352.149C362.84 56.149 368.194 43.223 360.634 35.664L264.485 -60.486C259.7990000000001 -65.172 252.201 -65.172 247.514 -60.486L151.365 35.663C143.805 43.223 149.159 56.148 159.85 56.148H236V171.925H120.149V95.776C120.149 85.085 107.223 79.731 99.664 87.291L3.515 183.44C-1.171 188.126 -1.171 195.724 3.515 200.411L99.664 296.56C107.224 304.12 120.149 298.766 120.149 288.075V211.925H236V327.85H159.851C149.16 327.85 143.806 340.776 151.366 348.335L247.515 444.484C252.201 449.17 259.799 449.17 264.486 444.484L360.635 348.335C368.195 340.775 362.841 327.85 352.15 327.85H276V211.925z" />
+    <glyph glyph-name="arrows-h"
+      unicode="&#xF07E;"
+      horiz-adv-x="512" d=" M347.404 305.14C342.651 300.387 342.729 292.656 347.577 288L420.78 218H91.22L164.423 288C169.272 292.656 169.35 300.387 164.596 305.14L144.97 324.766C140.284 329.452 132.686 329.452 127.999 324.766L3.515 200.485C-1.171 195.799 -1.171 188.201 3.515 183.514L128 59.234C132.686 54.548 140.284 54.548 144.971 59.234L164.597 78.86C169.35 83.6129999999999 169.272 91.3439999999999 164.424 95.9999999999999L91.22 166H420.78L347.577 96C342.728 91.344 342.65 83.613 347.404 78.86L367.03 59.234C371.716 54.5480000000001 379.314 54.5480000000001 384.001 59.234L508.486 183.5150000000001C513.172 188.201 513.172 195.799 508.486 200.4860000000001L384 324.766C379.314 329.452 371.716 329.452 367.029 324.766L347.404 305.14z" />
+    <glyph glyph-name="arrows-v"
+      unicode="&#xF07D;"
+      horiz-adv-x="320" d=" M273.1 100.6C268.3 105.4 260.6 105.3 256 100.4L186 27.2V356.8L256 283.6C260.7 278.8 268.4 278.7 273.1 283.4L292.7000000000001 303C297.4000000000001 307.7 297.4000000000001 315.3 292.7000000000001 320L168.5 444.5C163.8 449.2 156.2 449.2 151.5 444.5L27.2 320C22.5 315.3 22.5 307.7 27.2 303L46.8 283.4C51.6 278.6 59.3 278.7000000000001 63.9 283.6L133.9 356.8V27.2L63.9 100.4C59.2 105.2 51.5 105.3 46.8 100.6L27.2 81C22.5 76.3 22.5 68.7 27.2 64L151.5 -60.5C156.2 -65.2 163.8 -65.2 168.5 -60.5L292.8 64C297.5 68.7 297.5 76.3 292.8 81L273.1 100.6z" />
+    <glyph glyph-name="arrows"
+      unicode="&#xF047;"
+      horiz-adv-x="512" d=" M360.549 35.784L264.485 -60.485C259.7990000000001 -65.171 252.201 -65.171 247.514 -60.485L151.45 35.784C146.764 40.47 146.764 48.068 151.45 52.755L171.076 72.381C175.829 77.134 183.56 77.056 188.216 72.208L230 27.22H232V168H91.22V166L136.206 124.217C141.055 119.561 141.133 111.83 136.379 107.077L116.753 87.451C112.067 82.765 104.469 82.765 99.782 87.451L3.515 183.515C-1.171 188.201 -1.171 195.799 3.515 200.486L99.784 296.55C104.47 301.236 112.068 301.236 116.754 296.55L136.38 276.924C141.133 272.171 141.055 264.44 136.207 259.784L91.22 218V216H232V356.78H230L188.217 311.794C183.561 306.9450000000001 175.83 306.867 171.077 311.621L151.451 331.247C146.765 335.933 146.765 343.531 151.451 348.218L247.515 444.487C252.201 449.173 259.799 449.173 264.486 444.487L360.55 348.218C365.236 343.5320000000001 365.236 335.9340000000001 360.55 331.247L340.924 311.621C336.171 306.868 328.44 306.9460000000001 323.784 311.794L282 356.78H280V216H420.78V218L375.794 259.783C370.945 264.439 370.867 272.17 375.621 276.923L395.247 296.549C399.933 301.235 407.531 301.235 412.218 296.549L508.487 200.485C513.173 195.799 513.173 188.201 508.487 183.514L412.218 87.4500000000001C407.532 82.7640000000001 399.934 82.7640000000001 395.247 87.4500000000001L375.621 107.076C370.868 111.829 370.946 119.56 375.794 124.216L420.78 166V168H280V27.22H282L323.783 72.206C328.439 77.055 336.17 77.133 340.923 72.379L360.549 52.753C365.236 48.068 365.236 40.47 360.549 35.7840000000001z" />
+    <glyph glyph-name="assistive-listening-systems"
+      unicode="&#xF2A2;"
+      horiz-adv-x="512" d=" M189.149 -64C175.894 -64 165.149 -53.255 165.149 -40S175.894 -16 189.149 -16C225.542 -16 255.149 14.016 255.149 50.909L255.151 51.243C256.157 123.38 328 135.176 328 184C328 250.918 274.503 304 208 304C141.62 304 88 251.05 88 184C88 170.745 77.255 160 64 160S40 170.745 40 184C40 277.338 114.866 352 208 352C300.9700000000001 352 376 277.516 376 184C376 109.341 303.901 96.165 303.149 50.718C303.043 -12.554 251.944 -64 189.149 -64zM296 184C296 232.523 256.523 272 208 272S120 232.523 120 184C120 170.745 130.745 160 144 160S168 170.745 168 184C168 206.056 185.944 224 208 224S248 206.056 248 184C248 170.745 258.745 160 272 160S296 170.745 296 184zM426.99 255C438.93 260.755 443.945 275.1 438.19 287.04C420.984 322.739 395.261 354.444 363.805 378.728C353.31 386.827 338.241 384.888 330.141 374.395S323.981 348.832 334.473 340.731C360.0540000000001 320.983 380.966 295.21 394.95 266.199C400.709 254.253 415.059 249.248 426.99 255zM498.394 290.37C510.339 296.1140000000001 515.368 310.453 509.624 322.399C485.742 372.077 453.811 412.64 414.7080000000001 442.964C404.233 451.086 389.1590000000001 449.182 381.0340000000001 438.706C372.9120000000001 428.232 374.8180000000001 413.156 385.2920000000001 405.033C418.4620000000001 379.31 445.735 344.511 466.365 301.601C472.109 289.652 486.449 284.629 498.394 290.37zM208 168C194.745 168 184 157.255 184 144S194.745 120 208 120S232 130.745 232 144S221.255 168 208 168zM144 104C130.745 104 120 93.255 120 80S130.745 56 144 56S168 66.745 168 80S157.255 104 144 104zM24 -16C10.745 -16 0 -26.745 0 -40S10.745 -64 24 -64S48 -53.255 48 -40S37.255 -16 24 -16zM128.971 0.971L64.971 64.971L31.03 31.03L95.03 -32.97L128.971 0.971z" />
+    <glyph glyph-name="asterisk"
+      unicode="&#xF069;"
+      horiz-adv-x="512" d=" M479.31 90.784L303.999 192L479.309 293.2150000000001C485.049 296.529 487.015 303.868 483.701 309.607L471.701 330.392C468.387 336.132 461.048 338.098 455.309 334.784L280 233.569V436C280 442.627 274.627 448 268 448H244C237.373 448 232 442.627 232 436V233.569L56.69 334.785C50.95 338.099 43.611 336.132 40.298 330.3930000000001L28.298 309.608C24.984 303.868 26.951 296.529 32.69 293.216L208 192L32.69 90.784C26.95 87.47 24.984 80.131 28.298 74.392L40.298 53.608C43.612 47.869 50.951 45.902 56.69 49.216L232 150.431V-52C232 -58.627 237.373 -64 244 -64H268C274.627 -64 280 -58.627 280 -52V150.431L455.31 49.216C461.05 45.902 468.388 47.869 471.702 53.608L483.702 74.392C487.016 80.131 485.049 87.471 479.31 90.784z" />
+    <glyph glyph-name="at"
+      unicode="&#xF1FA;"
+      horiz-adv-x="512" d=" M504 216C504 352.249 394.053 440 256 440C118.94 440 8 329.081 8 192C8 54.941 118.919 -56 256 -56C308.926 -56 360.681 -38.921 403.096 -7.679C408.597 -3.627 409.519 4.245 405.1910000000001 9.532L389.9670000000001 28.129C385.9120000000001 33.083 378.718 33.932 373.5390000000001 30.17C339.5470000000001 5.483 298.238 -8 256 -8C145.72 -8 56 81.72 56 192S145.72 392 256 392C365.469 392 456 326.98 456 216C456 152.894 413.522 117.71 372.98 117.71C353.475 117.71 352.8470000000001 130.33 356.6140000000001 149.173L385.235 297.73C386.661 305.132 380.99 312 373.452 312H334.277A12.005 12.005 0 0 1 322.493 302.265C321.391 296.542 320.832 293.929 320.213 288.272C308.29 307.82 284.3350000000001 319.3400000000001 255.011 319.3400000000001C183.412 319.3400000000001 120 256.851 120 166.47C120 105.311 152.877 64.36 213.18 64.36C242.983 64.36 274.524 81.193 292.929 106.599C297.074 75.753 321.426 68.589 352.301 68.589C451.467 68.59 504 132.214 504 216zM230.1 118.65C201.628 118.65 184.63 138.108 184.63 170.7C184.63 228.214 224.19 264.11 259.24 264.11C289.36 264.11 304.711 242.578 304.711 212.53C304.711 165.666 271.534 118.65 230.1 118.65z" />
+    <glyph glyph-name="atlas"
+      unicode="&#xF558;"
+      horiz-adv-x="448" d=" M224 128C290.28 128 344 181.73 344 248C344 314.28 290.28 368 224 368C157.73 368 104 314.28 104 248C104 181.73 157.73 128 224 128zM310.38 264H275.79C274.4 287.68 270.04 308.99 263.52 326.19C287.57 313.98 305.33 291.32 310.38 264zM275.79 232H310.38C305.33 204.68 287.56 182.02 263.52 169.81C270.05 187.02 274.4 208.32 275.79 232zM224 333.76C230.91 325.39 241.51 301.37 243.96 264H204.03C206.49 301.37 217.09 325.39 224 333.76zM243.96 232C241.51 194.63 230.91 170.61 224 162.24C217.09 170.61 206.49 194.63 204.04 232H243.96zM184.47 326.19C177.95 308.99 173.6 287.68 172.2 264H137.61C142.67 291.32 160.43 313.98 184.47 326.19zM172.21 232C173.61 208.32 177.96 187.02 184.48 169.81C160.44 182.02 142.68 204.68 137.62 232H172.21zM448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96z" />
+    <glyph glyph-name="atom-alt"
+      unicode="&#xF5D3;"
+      horiz-adv-x="448" d=" M424.99 392.9700000000001C385.37 432.57 307.46 419.52 224 365.92C140.54 419.49 62.65 432.51 23.01 392.9700000000001C-16.57 353.42 -3.54 275.58 50.11 192.16C-3.53 108.75 -16.56 30.91 23.01 -8.65C84.05 -69.64 205.87 6.72 224 18.35C242.19 6.67 363.91 -69.61 424.99 -8.65C464.57 30.9 451.54 108.74 397.89 192.16C451.53 275.5800000000001 464.56 353.42 424.99 392.9700000000001zM391.01 359.03C407.77 342.29 401.59 294.38 367.3 234.7C327.27 285.03 289.07 317.49 266.5300000000001 335.37C308.6400000000001 359.54 368.7600000000001 381.2 391.0100000000001 359.03zM56.99 359.03C79.33 381.3 139.66 359.37 181.46 335.38C131.08 295.38 98.57 257.17 80.7 234.7C46.41 294.38 40.23 342.29 56.99 359.03zM56.99 25.3099999999999C40.23 42.05 46.41 89.9599999999999 80.7 149.6399999999999C121.23 98.67 158.89 67.0299999999999 181.52 49.0699999999999C121.78 14.7799999999999 73.8 8.5899999999999 56.99 25.3099999999999zM223.99 77.31C178.94 110.74 143.02 146.44 109.03 192.16C128.27 218.0399999999999 164.96 263.68 223.99 307.51C283.04 263.67 319.81 217.9199999999999 338.95 192.16C305.25 146.81 269.4 110.99 223.99 77.31zM391.01 25.3099999999999C374.18 8.5799999999999 326.21 14.7699999999999 266.47 49.0599999999999C289.1 67.0099999999999 326.77 98.68 367.3 149.6399999999999C401.59 89.9599999999999 407.77 42.04 391.01 25.3099999999999zM224 224.18C206.31 224.18 191.96 209.85 191.96 192.17S206.3 160.16 224 160.16S256.04 174.49 256.04 192.17S241.6900000000001 224.18 224 224.18z" />
+    <glyph glyph-name="atom"
+      unicode="&#xF5D2;"
+      horiz-adv-x="448" d=" M439.2200000000001 319.69C409.26 373.35 326.9700000000001 359.2 316.7 357.64C296.45 410.86 265.31 448 224 448S151.56 410.87 131.31 357.66C121.02 359.2200000000001 38.74 373.33 8.78 319.69C-10.17 285.7100000000001 2.39 239.18 38.5 192C2.39 144.82 -10.17 98.29 8.78 64.31C39.28 9.69 123.53 25.32 131.25 26.49C151.5 -26.8 182.65 -64 224 -64S296.5 -26.79 316.75 26.49C324.5 25.32 408.7200000000001 9.7 439.2200000000001 64.31C458.17 98.28 445.61 144.82 409.49 192C445.61 239.18 458.17 285.71 439.2200000000001 319.69zM50.7600000000001 87.69C43.3700000000001 100.92 50.3300000000001 125.99 71.2300000000001 155.51C82.39 144.6 94.7300000000001 133.86 108.14 123.37C110.3 106.1 113.35 89.26 117.1300000000001 73.11C96.74 70.69 60.79 69.66 50.76 87.69zM108.14 260.64C94.7300000000001 250.15 82.39 239.4 71.2300000000001 228.5C50.3300000000001 258.02 43.3700000000001 283.0900000000001 50.7600000000001 296.32C54.4400000000001 302.94 68.2800000000001 316.79 117.1500000000001 310.98A487.708 487.708 0 0 1 108.14 260.64zM224 400C238.28 400 255.68 380.73 269.82 346.4700000000001C254.85 341.89 239.6 336.46 224.02 329.7C208.43 336.4700000000001 193.17 341.91 178.19 346.49C192.33 380.74 209.73 400 224 400zM224 -16C209.74 -16 192.37 3.22 178.24 37.39C193.16 41.96 208.47 47.66 224 54.4C239.53 47.66 254.83 41.96 269.76 37.39C255.63 3.22 238.26 -16 224 -16zM294.36 149.26C264.4100000000001 127.88 242.6 116.37 224 107.25C205.43 116.36 183.61 127.86 153.64 149.26C152.27 166.34 150.57 196.38 153.64 234.74C183.66 256.18 205.34 267.5900000000001 224 276.74C242.72 267.56 264.39 256.14 294.36 234.74C295.73 217.66 297.43 187.62 294.36 149.26zM397.24 87.69C387.2200000000001 69.68 351.32 70.69 330.87 73.11C334.65 89.26 337.7 106.1 339.86 123.37C353.2700000000001 133.86 365.61 144.61 376.77 155.51C397.67 125.99 404.62 100.92 397.24 87.69zM376.76 228.49C365.6 239.4 353.26 250.14 339.85 260.63A486.5520000000001 486.5520000000001 0 0 1 330.8400000000001 310.96C379.7100000000001 316.77 393.55 302.92 397.23 296.3C404.62 283.08 397.67 258.01 376.76 228.49zM224 224C206.31 224 191.96 209.67 191.96 192S206.3 160 224 160S256.04 174.33 256.04 192S241.6900000000001 224 224 224z" />
+    <glyph glyph-name="audio-description"
+      unicode="&#xF29E;"
+      horiz-adv-x="512" d=" M464 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V336C512 362.51 490.51 384 464 384zM458 48H54A6 6 0 0 0 48 54V330A6 6 0 0 0 54 336H458A6 6 0 0 0 464 330V54A6 6 0 0 0 458 48zM245.459 111.861L188.362 279.861A12.001000000000001 12.001000000000001 0 0 1 177 288H141.106A12.001000000000001 12.001000000000001 0 0 1 129.744 279.861L72.647 111.861C70.003 104.078 75.789 96 84.009 96H113.142A12 12 0 0 1 124.677 104.693L133.251 134.599H184.618L193.411 104.622A12 12 0 0 1 204.926 96H234.098C242.318 96 248.104 104.078 245.459 111.861zM162.925 209.291L171.747 178.636H146.141L155.182 209.288C156.459 213.709 157.833 219.282 159.054 224.533C160.274 219.282 161.648 213.71 162.9250000000001 209.291zM331.2 288H273.834C267.207 288 261.834 282.627 261.834 276V108C261.834 101.373 267.207 96 273.834 96H331.2C392.241 96 430.16 132.933 430.16 192.386C430.16 251.363 392.241 288 331.2 288zM329.399 142.61H314.876V241.39H329.399C358.084 241.39 375.574 224.623 375.574 192.385C375.574 160.287 359.175 142.61 329.399 142.61z" />
+    <glyph glyph-name="award"
+      unicode="&#xF559;"
+      horiz-adv-x="448" d=" M446.34 14.79L383.99 152.39C388.43 163.82 392.31 166.56 406.33 180.58A44.715 44.715 0 0 1 417.8999999999999 223.76C409.6099999999999 254.71 409.5999999999999 250.41 417.8999999999999 281.38A44.721 44.721 0 0 1 406.33 324.56C383.6499999999999 347.26 385.81 343.5 377.51 374.48A44.68 44.68 0 0 1 345.8999999999999 406.0900000000001C314.94 414.38 318.68 412.2200000000001 296 434.9A44.714 44.714 0 0 1 252.81 446.48C221.94 438.21 226.12 438.19 195.19 446.48A44.72 44.72 0 0 1 152 434.9C129.34 412.24 133.07 414.39 102.1 406.0900000000001A44.68 44.68 0 0 1 70.49 374.48C62.2 343.52 64.36 347.26 41.68 324.5800000000001C30.39 313.29 25.97 296.8200000000001 30.11 281.4C38.4 250.45 38.41 254.75 30.11 223.78A44.715 44.715 0 0 1 41.68 180.6C56.78 165.49 59.7 163.54 64.02 152.41L1.66 14.79C-4.3 1.64 6.51 -12.65 22.11 -12.65C22.4 -12.65 22.7 -12.64 22.99 -12.63L95.85 -10.12L145.98 -57.77C150.45 -62 156.26 -64 162 -64C170.53 -64 178.92 -59.61 182.55 -51.6L224 39.87L265.45 -51.6C269.08 -59.61 277.47 -64 286 -64C291.75 -64 297.56 -62 302.01 -57.77L352.14 -10.12L425 -12.63C425.3 -12.64 425.59 -12.65 425.88 -12.65C441.48 -12.64 452.3 1.64 446.34 14.79zM153.73 1.1L114.33 38.54L64.34 36.82L94.06 102.41C96.65 101.13 99.24 99.84 102.1 99.07C127.24 92.33 128.89 93.37 145.16 77.1C153.79 68.47 165.23 64 176.79 64C178.74 64 180.66 64.55 182.6 64.8L153.73 1.1zM177.28 112.86C155.26 134.94 143.54 137.66 116.36 144.9500000000001C105.02 187.2500000000001 99.32 190.8300000000001 76.96 213.1900000000001C88.47 256.1200000000001 84.85 262.5700000000001 76.96 291.9800000000001C107.92 322.9400000000001 108.18 329.6700000000001 116.37 360.2200000000001C145.46 368.0000000000001 153.44 368.4400000000001 184.62 399.6200000000001C227.24 388.2000000000001 233.81 391.6800000000001 263.4100000000001 399.6200000000001C284.7000000000001 378.3300000000001 289.06 371.6400000000001 331.6500000000001 360.2200000000001C342.99 317.9200000000001 348.6900000000001 314.3400000000001 371.05 291.9700000000001C359.7200000000001 249.6700000000001 362.86 243.7100000000001 371.05 213.1600000000001C349.76 191.8700000000001 343.07 187.5000000000001 331.6500000000001 144.9100000000001C305.3800000000001 137.8700000000001 293.37 135.4700000000001 270.7200000000001 112.8200000000001C239.5800000000001 131.0000000000001 203.7000000000001 128.2700000000001 177.28 112.8600000000001zM353.79 37.85L333.67 38.54L294.27 1.1L265.4 64.8C267.34 64.54 269.26 64 271.21 64C282.76 64 294.21 68.47 302.84 77.1C319.25 93.5100000000001 320.65 92.3 345.9 99.0700000000001C348.75 99.83 351.34 101.1300000000001 353.94 102.41L383.66 36.83L353.79 37.85zM320 256C320 309.02 277.02 352 224 352S128 309.02 128 256S170.98 160 224 160S320 202.98 320 256zM224 208C197.53 208 176 229.53 176 256S197.53 304 224 304S272 282.4700000000001 272 256S250.47 208 224 208z" />
+    <glyph glyph-name="axe-battle"
+      unicode="&#xF6B3;"
+      horiz-adv-x="512" d=" M512 271.62C508.27 339.6600000000001 480.81 400.44 438.45 443.29C435.26 446.52 431.41 447.99 427.62 447.99C420.54 447.99 413.6600000000001 442.85 411.61 434.33C406.92 414.81 381.07 328.03 280 328.03V368C280 376.8400000000001 272.84 384 264 384H248C239.16 384 232 376.8400000000001 232 368V328.04C131.99 328.04 105.83 414.85 101.15 434.34C99.1 442.85 92.21 448 85.13 448C81.34 448 77.49 446.52 74.3 443.3C28.71 397.17 0 330.38 0 256C0 181.62 28.71 114.8300000000001 74.31 68.7C77.5 65.48 81.35 64 85.14 64C92.22 64 99.1 69.14 101.15 77.66C105.84 97.16 131.99 183.96 232 183.96V-48C232 -56.84 239.16 -64 248 -64H264C272.84 -64 280 -56.84 280 -48V183.97C381.07 183.97 406.91 97.1900000000001 411.61 77.67C413.6600000000001 69.15 420.54 64.01 427.62 64.01C431.4100000000001 64.01 435.26 65.49 438.45 68.71C480.81 111.56 508.27 172.34 512 240.38L496.73 256L512 271.62zM76.88 144.47C58.27 177.35 48.07 216.04 48.07 256C48.07 295.9700000000001 58.27 334.65 76.88 367.53C108.64 314.07 161.08 280.03 232 280.03V231.96C161.31 231.97 108.77 198.14 76.88 144.47zM462.04 222.7700000000001C458.08 194.56 449.17 168.0000000000001 435.87 144.46C404.39 197.47 352.4100000000001 231.9700000000001 280 231.9700000000001V280.04C351.15 280.04 403.69 313.37 435.87 367.54C449.1600000000001 344 458.08 317.4400000000001 462.04 289.23L429.56 256L462.04 222.77z" />
+    <glyph glyph-name="axe"
+      unicode="&#xF6B2;"
+      horiz-adv-x="640" d=" M525.74 288L467.15 346.5900000000001L507.07 386.51C513.3199999999999 392.76 513.3199999999999 402.89 507.07 409.14L473.13 443.07C466.88 449.32 456.75 449.32 450.5 443.07L410.58 403.15L375.12 438.63C368.87 444.88 360.68 448 352.49 448S336.11 444.88 329.86 438.63L233.37 342.14C220.87 329.64 220.87 309.38 233.37 296.89L268.8400000000001 261.42L4.69 -2.74C-1.56 -8.99 -1.56 -19.12 4.69 -25.37L38.63 -59.31C44.88 -65.5599999999999 55.01 -65.5599999999999 61.26 -59.31L325.42 204.85L384 146.26V32H416C539.71 32 640 132.29 640 256V288H525.74zM432 80.72V166.1400000000001L427.31 170.8300000000001L278.63 319.5100000000001L352.48 393.3800000000001L501.18 244.6800000000001L505.87 239.9900000000001H591.29C583.65 155.6900000000001 516.31 88.3500000000001 432 80.72z" />
+    <glyph glyph-name="baby-carriage"
+      unicode="&#xF77D;"
+      horiz-adv-x="512" d=" M496 352H456C425.1 352 400 326.9 400 296V256H293.2L189.1 419.8C179.9 434.3 164.7 444.2 147.3 447.1C130.1 449.9 112.9 445.5 99.8 435.1C41.1 388.2 -0.3 309.2 0 232C0.2 181.9 17.6 132.5 60.3 93.3C25.7 84.4 0 53.3 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 24.9 158.2 33.2 155.6 41.2C177.2 35.3 200.2 32 224 32S270.9 35.3 292.4 41.2C289.7 33.2 288 24.9 288 16C288 -28.2 323.8 -64 368 -64S448 -28.2 448 16C448 53.3 422.3 84.4 387.7 93.3C425 127.6 448 173.4 448 224V296C448 300.4 451.6 304 456 304H496C504.8 304 512 311.2 512 320V336C512 344.8 504.8 352 496 352zM129.8 397.6C133.3 400.3 137.3 400.1 139.5 399.8C143.3 399.2 146.8 397 148.7 394.1L236.3 256H49.4C55.9 310.7 84.4 361.4 129.8 397.6zM80 -16C62.4 -16 48 -1.6 48 16S62.4 48 80 48S112 33.6 112 16S97.6 -16 80 -16zM400 16C400 -1.6 385.6 -16 368 -16S336 -1.6 336 16S350.4 48 368 48S400 33.6 400 16zM224 80C133.6 80 58.8 136.1 49.1 208H398.9C389.2 136.1 314.4 80 224 80z" />
+    <glyph glyph-name="baby"
+      unicode="&#xF77C;"
+      horiz-adv-x="384" d=" M192 288C236.2 288 272 323.8 272 368S236.2 448 192 448S112 412.2 112 368S147.8 288 192 288zM327.6 231.8L370.4000000000001 261.8C384.9000000000001 271.9 388.4000000000001 291.9 378.2000000000001 306.4C368.1 320.9 348.1 324.4 333.6 314.2000000000001L290.8 284.2000000000001C231.9 242.9000000000001 151.9 242.9000000000001 93 284.2000000000001L50.2 314.2000000000001C35.7 324.4000000000001 15.7 320.8 5.6 306.4C-4.6 291.9 -1.1 272 13.4 261.8L56.2 231.8C73.6 219.6 92.4 210.4 111.8 203.3V163.1C102.4 157.5 95.8 147.7000000000001 95.8 136V117.3C95.8 111.1 98.1 105.4 101.4 100.3L63 52C53.9 40.6 53.7 24.5 62.4 12.8L110.4 -51.2C116.7 -59.6 126.3 -64 136 -64C142.7 -64 149.4 -61.9 155.2 -57.6C169.4 -47 172.2 -26.9 161.6 -12.8L128.5 31.4L146.8 54.3C158.1 45.3 172 40.1 186.6 40.1H197.6C212.2 40.1 226.1 45.3 237.4000000000001 54.3L255.7000000000001 31.4L222.6000000000001 -12.8C212.0000000000001 -26.9 214.8000000000001 -47 229.0000000000001 -57.6C234.8000000000001 -61.9 241.5000000000001 -64 248.2000000000001 -64C258.0000000000001 -64 267.5000000000001 -59.6 273.8000000000001 -51.2L321.8000000000001 12.8C330.6000000000001 24.5 330.3000000000001 40.6 321.2000000000001 52L282.6 100.3C285.9000000000001 105.4 288.2000000000001 111.1 288.2000000000001 117.3V136C288.2000000000001 147.7 281.6 157.5 272.2000000000001 163.1V203.3C291.5000000000001 210.4 310.2000000000001 219.6 327.6 231.8zM256 117.3L220.1 81.4C214.1 75.4 206 72.0000000000001 197.5 72.0000000000001H186.5C178 72.0000000000001 169.9 75.3000000000001 163.9 81.4L128 117.3V136H256V117.3z" />
+    <glyph glyph-name="backpack"
+      unicode="&#xF5D4;"
+      horiz-adv-x="448" d=" M320 368H312V392C312 422.88 286.88 448 256 448H192C161.12 448 136 422.88 136 392V368H128C57.31 368 0 310.69 0 240V0C0 -35.35 28.65 -64 64 -64H384C419.35 -64 448 -35.35 448 0V240C448 310.69 390.69 368 320 368zM184 392C184 396.41 187.59 400 192 400H256C260.4100000000001 400 264 396.41 264 392V368H184V392zM320 -16H128V48H320V-16zM320 96H128V128C128 145.67 142.33 160 160 160H288C305.67 160 320 145.67 320 128V96zM400 0C400 -8.82 392.82 -16 384 -16H368V128C368 172.11 332.11 208 288 208H160C115.89 208 80 172.11 80 128V-16H64C55.18 -16 48 -8.82 48 0V240C48 284.11 83.89 320 128 320H320C364.11 320 400 284.11 400 240V0zM304 288H144C135.16 288 128 280.8400000000001 128 272V256C128 247.16 135.16 240 144 240H304C312.84 240 320 247.16 320 256V272C320 280.8400000000001 312.84 288 304 288z" />
+    <glyph glyph-name="backspace"
+      unicode="&#xF55A;"
+      horiz-adv-x="640" d=" M469.65 266.35L458.34 277.66C452.09 283.91 441.96 283.91 435.71 277.66L384 225.94L332.28 277.66C326.03 283.91 315.9 283.91 309.65 277.66L298.34 266.35C292.09 260.1 292.09 249.97 298.34 243.72L350.06 192L298.3400000000001 140.28C292.0900000000001 134.03 292.0900000000001 123.9 298.3400000000001 117.65L309.6500000000001 106.34C315.9000000000001 100.09 326.0300000000001 100.09 332.2800000000001 106.34L384 158.06L435.7200000000001 106.34C441.9700000000001 100.09 452.1 100.09 458.35 106.34L469.66 117.65C475.91 123.9 475.91 134.03 469.66 140.28L417.94 192L469.66 243.72C475.9 249.97 475.9 260.1 469.65 266.35zM576 384H205.26C188.28 384 172 377.26 160 365.26L9.37 214.63C-3.13 202.13 -3.13 181.87 9.37 169.38L160 18.75C172 6.75 188.28 0 205.25 0H576C611.35 0 640 28.65 640 64V320C640 355.35 611.35 384 576 384zM592 64C592 55.18 584.82 48 576 48H205.26C200.99 48 196.97 49.66 193.95 52.69L54.63 192L193.94 331.31C196.96 334.33 200.98 336 205.25 336H576C584.82 336 592 328.82 592 320V64z" />
+    <glyph glyph-name="backward"
+      unicode="&#xF04A;"
+      horiz-adv-x="512" d=" M267.5 166.8L459.5 7.4C480.1 -9.8 512 4.6 512 32V352C512 379.4 480.1 393.8 459.5 376.6L267.5 216C252.2 203.2 252.2 179.6 267.5 166.8zM464 317.7V66L313 191.4L464 317.7zM11.5 166.8L203.5 7.4C224.1 -9.8 256 4.6 256 32V352C256 379.4 224.1 393.8 203.5 376.6L11.5 216C-3.8 203.2 -3.8 179.6 11.5 166.8zM208 317.7V66L57 191.4L208 317.7z" />
+    <glyph glyph-name="badge-check"
+      unicode="&#xF336;"
+      horiz-adv-x="512" d=" M332.73 269.63C328.88 273.51 322.62 273.53 318.75 269.69L231.39 183.03L193.51 221.22C189.67 225.1 183.4 225.12 179.53 221.28L156.13 198.07C152.25 194.22 152.23 187.96 156.07 184.09L224.12 115.49C227.97 111.61 234.23 111.59 238.1 115.43L355.88 232.26C359.76 236.11 359.78 242.37 355.94 246.24L332.73 269.63zM512 192C512 228.5 493.2 260.4 465.3 278.7C472.1 311.6 462.6 347.4 437 373C411.4 398.7 375.5 408.1 342.7 401.3C324.2 429.3 292.3 448 256 448S187.7 429.3 169.3 401.3C136.4 408.1 100.6 398.6 75 373C49.3 347.4 39.9 311.5 46.7 278.7C18.6 260.2 0 228.2 0 192C0 155.7 18.7 123.7 46.7 105.3C39.9 72.4 49.4 36.6 75 11C100.6 -14.7 136.2 -24.1 169.3 -17.3C187.8 -45.4 219.8 -64 256 -64C292.4 -64 324.3 -45.2 342.7 -17.3C375.8 -24.1 411.4 -14.6 437 11C462.7 36.6 472.1 72.5 465.3 105.3C493.4 123.8 512 155.8 512 192zM403.7 130.7C412.8 110.8 434 75.9 403 44.9C375 16.9 347.7 30.4 317.2 44.2C309.5 23.6 299.9 -16 256 -16C210.7 -16 201.3 26.8 194.8 44.2C173.7 34.6 139.9 14 108.9 45C76.9 77 100.5 113.9 108.2 130.8C87.6 138.5 48 148.1 48 192C48 237.3 90.8 246.7 108.3 253.3C99.2 273.2000000000001 78 308.1 109 339.1C141 371.1 177.9 347.5 194.8 339.8C202.5 360.4 212.1 400 256 400C301.3 400 310.7 357.2 317.2 339.6C337.1 348.7 372 369.9 403 338.9C435 306.9 411.4 270 403.7 253.1C424.3 245.4 463.9 235.8 463.9 191.9C463.9 146.6 421.1 137.2 403.7 130.7z" />
+    <glyph glyph-name="badge-dollar"
+      unicode="&#xF645;"
+      horiz-adv-x="512" d=" M286.4100000000001 208.28L236.3400000000001 222.58A8.46 8.46 0 0 0 230.2200000000001 230.69C230.2200000000001 235.33 234.0000000000001 239.11 238.6600000000001 239.11H271.4400000000001C275.0400000000001 239.11 278.5200000000001 238.34 281.7000000000001 236.89C286.5000000000001 234.68 292.0700000000001 235.18 295.8100000000001 238.92L313.3300000000001 256.44C318.6 261.7100000000001 318.0000000000001 270.7200000000001 311.7800000000001 274.82C302.2800000000001 281.0900000000001 291.43 284.93 280 286.28V304C280 312.8400000000001 272.84 320 264 320H248C239.16 320 232 312.8400000000001 232 304V286.44C201.71 282.82 178.63 255.46 182.68 223.39C185.58 200.44 203.34 182.08 225.59 175.72L275.6600000000001 161.42A8.46 8.46 0 0 0 281.7800000000001 153.31C281.7800000000001 148.67 278.0000000000001 144.8899999999999 273.3400000000001 144.8899999999999H240.5600000000001C236.9600000000001 144.8899999999999 233.48 145.6599999999999 230.3000000000001 147.11C225.5000000000001 149.3199999999999 219.93 148.8199999999999 216.1900000000001 145.08L198.6700000000001 127.56C193.4 122.29 194.0000000000001 113.28 200.2200000000001 109.18C209.7200000000001 102.91 220.5700000000001 99.07 232.0000000000001 97.72V80C232.0000000000001 71.16 239.1600000000001 64 248.0000000000001 64H264.0000000000001C272.8400000000001 64 280.0000000000001 71.16 280.0000000000001 80V97.56C310.2900000000001 101.18 333.3700000000001 128.54 329.3200000000001 160.61C326.4200000000001 183.56 308.6600000000001 201.92 286.4100000000001 208.28zM512 192C512 228.5 493.2 260.4 465.3 278.7C472.1 311.6 462.6 347.4 437 373C411.4 398.7 375.5 408.1 342.7 401.3C324.2 429.3 292.3 448 256 448S187.7 429.3 169.3 401.3C136.4 408.1 100.6 398.6 75 373C49.3 347.4 39.9 311.5 46.7 278.7C18.6 260.2 0 228.2 0 192C0 155.7 18.7 123.7 46.7 105.3C39.9 72.4 49.4 36.6 75 11C100.6 -14.7 136.2 -24.1 169.3 -17.3C187.8 -45.4 219.8 -64 256 -64C292.4 -64 324.3 -45.2 342.7 -17.3C375.8 -24.1 411.4 -14.6 437 11C462.7 36.6 472.1 72.5 465.3 105.3C493.4 123.8 512 155.8 512 192zM403.7 130.7C412.8 110.8 434 75.9 403 44.9C375 16.9 347.7 30.4 317.2 44.2C309.5 23.6 299.9 -16 256 -16C210.7 -16 201.3 26.8 194.8 44.2C173.7 34.6 139.9 14 108.9 45C76.9 77 100.5 113.9 108.2 130.8C87.6 138.5 48 148.1 48 192C48 237.3 90.8 246.7 108.3 253.3C99.2 273.2000000000001 78 308.1 109 339.1C141 371.1 177.9 347.5 194.8 339.8C202.5 360.4 212.1 400 256 400C301.3 400 310.7 357.2 317.2 339.6C337.1 348.7 372 369.9 403 338.9C435 306.9 411.4 270 403.7 253.1C424.3 245.4 463.9 235.8 463.9 191.9C463.9 146.6 421.1 137.2 403.7 130.7z" />
+    <glyph glyph-name="badge-percent"
+      unicode="&#xF646;"
+      horiz-adv-x="512" d=" M341.65 266.35L330.34 277.66C324.09 283.91 313.96 283.91 307.71 277.66L170.35 140.28C164.1 134.03 164.1 123.9 170.35 117.65L181.66 106.34C187.91 100.09 198.04 100.09 204.29 106.34L341.66 243.71C347.9 249.97 347.9 260.1 341.65 266.35zM192 224C209.67 224 224 238.33 224 256S209.67 288 192 288S160 273.67 160 256S174.33 224 192 224zM320 160C302.33 160 288 145.67 288 128S302.33 96 320 96S352 110.33 352 128S337.67 160 320 160zM512 192C512 228.5 493.2 260.4 465.3 278.7C472.1 311.6 462.6 347.4 437 373C411.4 398.7 375.5 408.1 342.7 401.3C324.2 429.3 292.3 448 256 448S187.7 429.3 169.3 401.3C136.4 408.1 100.6 398.6 75 373C49.3 347.4 39.9 311.5 46.7 278.7C18.6 260.2 0 228.2 0 192C0 155.7 18.7 123.7 46.7 105.3C39.9 72.4 49.4 36.6 75 11C100.6 -14.7 136.2 -24.1 169.3 -17.3C187.8 -45.4 219.8 -64 256 -64C292.4 -64 324.3 -45.2 342.7 -17.3C375.8 -24.1 411.4 -14.6 437 11C462.7 36.6 472.1 72.5 465.3 105.3C493.4 123.8 512 155.8 512 192zM403.7 130.7C412.8 110.8 434 75.9 403 44.9C375 16.9 347.7 30.4 317.2 44.2C309.5 23.6 299.9 -16 256 -16C210.7 -16 201.3 26.8 194.8 44.2C173.7 34.6 139.9 14 108.9 45C76.9 77 100.5 113.9 108.2 130.8C87.6 138.5 48 148.1 48 192C48 237.3 90.8 246.7 108.3 253.3C99.2 273.2000000000001 78 308.1 109 339.1C141 371.1 177.9 347.5 194.8 339.8C202.5 360.4 212.1 400 256 400C301.3 400 310.7 357.2 317.2 339.6C337.1 348.7 372 369.9 403 338.9C435 306.9 411.4 270 403.7 253.1C424.3 245.4 463.9 235.8 463.9 191.9C463.9 146.6 421.1 137.2 403.7 130.7z" />
+    <glyph glyph-name="badge"
+      unicode="&#xF335;"
+      horiz-adv-x="512" d=" M256 -64C219.8 -64 187.8 -45.4 169.3 -17.3C136.2 -24.1 100.6 -14.7 75 11C49.4 36.6 39.9 72.4 46.7 105.3C18.7 123.7 0 155.7 0 192C0 228.2 18.6 260.2 46.7 278.7C39.9 311.5 49.3 347.4 75 373C100.6 398.6 136.4 408.1 169.3 401.3C187.7 429.3 219.7 448 256 448C292.3 448 324.2 429.3 342.7 401.3C375.5 408.1 411.4 398.7 437 373C462.6 347.4 472.1 311.6 465.3 278.7C493.2 260.4 512 228.5 512 192C512 155.8 493.4 123.8 465.3 105.3C472.1 72.5 462.7 36.6 437 11C411.4 -14.6 375.8 -24.1 342.7 -17.3C324.3 -45.2 292.4 -64 256 -64zM194.8 44.2C201.3 26.8 210.7 -16 256 -16C299.9 -16 309.5 23.6 317.2 44.2C347.7 30.4 375 16.9 403 44.9C434 75.9 412.8 110.8 403.7 130.7C421.1 137.2 463.9 146.6 463.9 191.9C463.9 235.8 424.3 245.4 403.7 253.1C411.4 270 435 306.9 403 338.9C372 369.9 337.1 348.7 317.2 339.6C310.7 357.2 301.3 400 256 400C212.1 400 202.5 360.4 194.8 339.8C177.9 347.5 141 371.1 109 339.1C78 308.1 99.2 273.2 108.3 253.3C90.8 246.7 48 237.3 48 192C48 148.1 87.6 138.5 108.2 130.8C100.5 113.9 76.9 77 108.9 45C139.9 14 173.7 34.6 194.8 44.2z" />
+    <glyph glyph-name="badger-honey"
+      unicode="&#xF6B4;"
+      horiz-adv-x="640" d=" M622.25 305.54C596.61 320.06 579.5 331.96 551.5699999999999 350.91C537.3599999999999 360.55 521.8299999999999 368.92 506.6899999999999 375.46C493.37 381.21 479.4 384 465.45 384C446.4 384 427.36 378.79 409.98 368.79C392.89 358.96 374.06 352 354.96 352H128C57.31 352 0 294.69 0 224V208C0 199.16 7.16 192 16 192H36.03C43.12 161.6 59.84 136.11 81.96 118.92L69.57 85.89C63.32 69.06 62.29 51.01 67.6 30.66L81.26 -3.57C86.32 -20.4 101.79 -31.9900000000001 119.54 -31.9900000000001H182.64C194.89 -31.9900000000001 206.68 -26.7100000000001 214.38 -17.1900000000001C222.37 -7.32 225.16 5.4599999999999 222.1 17.73L209.38 51.87L231.14 96H286.22L305.4 0.14C309.15 -18.48 325.62 -32 344.62 -32H407.28C419.01 -32 430.35 -27.18 438.07 -18.35C446.3 -8.93 449.63 3.6 447.21 15.84L421.77 143.1C474.7 174.91 512.8299999999999 189.9500000000001 541.12 197.7700000000001L560 160L583.06 206.11C605.4599999999999 208.93 616.01 208.93 623.8499999999999 225.11C631.17 240.2200000000001 640.0099999999999 260.9 640.0099999999999 272.73C639.9999999999999 286.6600000000001 633.1199999999999 299.38 622.2499999999999 305.54zM128 304H354.9600000000001C380.6300000000001 304 407.2000000000001 311.8 433.9300000000001 327.19C443.9500000000001 332.96 454.8500000000001 336 465.46 336C473.11 336 480.58 334.45 487.6800000000001 331.38C512.1400000000001 320.82 521.19 312.76 536.1500000000001 304H460C428.31 304 398.5 290.95 366.88 275.67L266.26 214.65C257.04 210.23 247.35 207.99 237.51 207.99H192C155.06 207.99 120.19 251.96 113.42 302.62C118.15 303.51 123.02 304 128 304zM584.6700000000001 254.68C485.9400000000001 242.37 421.7400000000001 199.09 368.0700000000001 166.84C376.9200000000001 122.5600000000001 373.0000000000001 142.1900000000001 398.2300000000001 16.01H351.1800000000001C328.8200000000001 127.77 335.5000000000001 94.36 325.5700000000001 144.01H201.29C170.52 81.62 177.4 95.57 157.16 54.52C165.04 33.37 162.24 40.89 171.51 16.01H125.12L113.43 45.31C110.89 56.84 112.66 64.09 114.5 69.04C129.39 108.71 122.83 91.23 139.31 135.16L111.4 156.84C97.32 167.78 87.15 184.1400000000001 82.77 202.92L74.12 240H49.61C53.83 260.73 66.27 278.3400000000001 83.16 289.88C94.18 231.33 135.67 176 192 176H237.5C252.19 176 266.5 179.3 281.44 186.55L382.1 247.57C408.9100000000001 260.44 435.03 272 460 272H476.81C478.72 262.94 486.37 256 496 256S513.29 262.94 515.19 272H595.6400000000001C592.2400000000001 266.81 586.6500000000001 259.0900000000001 584.6700000000001 254.68z" />
+    <glyph glyph-name="balance-scale-left"
+      unicode="&#xF515;"
+      horiz-adv-x="640" d=" M512 64C582.69 64 640 99.82 640 144H639.98C639.98 160.18 641.32 152.73 554.9300000000001 325.51C546.11 343.16 529.04 352 511.99 352C494.95 352 477.91 343.18 469.07 325.51C381.94 151.25 384.02 159.67 384.02 144H384C384 99.82 441.31 64 512 64zM584.25 160H439.83C446.02 172.68 511.83 304 511.98 304L512 304.04C531.82 264.4 578.4 171.96 584.25 160zM130.36 269.65L261.65 313.5800000000001C270.93 303.63 282.71 296.27 295.99 292.0700000000001V-48C295.99 -56.84 303.1500000000001 -64 311.99 -64H527.99C536.83 -64 543.99 -56.84 543.99 -48V-32C543.99 -23.16 536.83 -16 527.99 -16H344V292.07C373.77 301.49 395.76 327.61 399.15 359.59L524.86 401.65C533.24 404.45 537.76 413.52 534.96 421.9L529.88 437.07C527.08 445.45 518.01 449.97 509.63 447.17L389.4700000000001 406.96C375.76 431.34 349.96 448 320 448C275.82 448 240 412.18 240 368C240 364.3400000000001 240.6 360.8400000000001 241.08 357.31L115.13 315.17C106.75 312.37 102.23 303.3 105.03 294.92L110.11 279.75C112.92 271.37 121.98 266.85 130.36 269.6500000000001zM288 368C288 385.64 302.36 400 320 400S352 385.64 352 368S337.64 336 320 336S288 350.35 288 368zM0 16C0 -28.18 57.31 -64 128 -64S256 -28.18 256 16H255.98C255.98 32.18 257.32 24.73 170.93 197.51C162.1 215.16 145.04 224 127.98 224C110.94 224 93.9 215.18 85.06 197.51C-2.06 23.25 0.02 31.67 0.02 16H0zM55.83 32C62.02 44.68 109.26 138.56 127.7 175.97C127.73 175.98 127.83 176 127.99 176L128.01 176.04C147.83 136.4 194.41 43.96 200.26 32H55.83z" />
+    <glyph glyph-name="balance-scale-right"
+      unicode="&#xF516;"
+      horiz-adv-x="640" d=" M256 144H255.98C255.98 159.67 258.06 151.25 170.93 325.51C162.1 343.18 145.05 352 128.01 352C110.95 352 93.89 343.16 85.06 325.51C-1.32 152.73 0.02 160.18 0.02 144H0C0 99.82 57.31 64 128 64S256 99.82 256 144zM128 304.04L128.02 304C128.17 304 193.98 172.68 200.17 160H55.75C61.6 171.96 108.18 264.4 128 304.04zM529.89 279.75L534.97 294.92C537.77 303.3 533.25 312.37 524.87 315.17L398.92 357.31C399.4 360.8400000000001 400 364.3400000000001 400 368C400 412.18 364.18 448 320 448C290.04 448 264.24 431.34 250.53 406.96L130.36 447.17C121.98 449.9700000000001 112.91 445.45 110.11 437.07L105.03 421.9C102.23 413.52 106.75 404.45 115.13 401.65L240.84 359.5900000000001C244.23 327.61 266.2200000000001 301.49 295.99 292.07V-16H112C103.16 -16 96 -23.16 96 -32V-48C96 -56.84 103.16 -64 112 -64H328C336.84 -64 344 -56.84 344 -48V292.07C357.29 296.27 369.06 303.64 378.3400000000001 313.58L509.63 269.65C518.02 266.85 527.08 271.37 529.89 279.75zM320 336C302.36 336 288 350.36 288 368S302.36 400 320 400S352 385.64 352 368S337.64 336 320 336zM639.98 16C639.98 31.67 642.0600000000001 23.25 554.9300000000001 197.51C546.09 215.18 529.0500000000001 224.01 512.0100000000001 224C494.9500000000001 224 477.8900000000001 215.16 469.0600000000001 197.51C382.6800000000001 24.73 384.0200000000001 32.18 384.0200000000001 16H384C384 -28.18 441.31 -64 512 -64S640 -28.18 640 16H639.98zM439.75 32C445.6 43.96 492.18 136.4 512 176.04L512.02 176C512.17 176 512.28 175.97 512.31 175.97C530.75 138.56 577.9799999999999 44.68 584.18 32H439.75z" />
+    <glyph glyph-name="balance-scale"
+      unicode="&#xF24E;"
+      horiz-adv-x="640" d=" M256 112H255.98C255.98 128.18 257.32 120.73 170.93 293.51C162.1 311.16 145.04 320 127.98 320C110.94 320 93.9 311.18 85.06 293.51C-2.06 119.25 0.02 127.67 0.02 112H0C0 67.82 57.31 32 128 32S256 67.82 256 112zM83.24 182.87C94.64 205.52 109.26 234.56 127.7 271.9700000000001C127.73 271.98 127.83 272 127.99 272L128.01 272.04C147.83 232.4 163.04 202.23 174.71 179.08C185.99 156.7 194.41 139.96 200.26 128H55.83C62.03 140.68 71.07 158.69 83.24 182.87zM528 -16H344V292.07C371.42 300.74 392.5900000000001 323.43 398.39 352H528C536.84 352 544 359.16 544 368V384C544 392.8400000000001 536.84 400 528 400H393.25C380.89 428.23 352.79 448 320 448S259.11 428.23 246.75 400H112C103.16 400 96 392.8400000000001 96 384V368C96 359.16 103.16 352 112 352H241.61C247.4100000000001 323.43 268.5800000000001 300.74 296 292.07V-16H112C103.16 -16 96 -23.16 96 -32V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-32C544 -23.16 536.84 -16 528 -16zM320 336C302.36 336 288 350.36 288 368S302.36 400 320 400S352 385.64 352 368S337.64 336 320 336zM639.98 112C639.98 128.18 641.32 120.73 554.9300000000001 293.51C546.1 311.16 529.0400000000001 320 511.9800000000001 320C494.9400000000001 320 477.9000000000001 311.18 469.0600000000001 293.51C381.9400000000001 119.25 384.0200000000001 127.67 384.0200000000001 112H384C384 67.82 441.31 32 512 32S640 67.82 640 112H639.98zM439.8300000000001 128C446.0200000000001 140.68 455.0600000000001 158.69 467.23 182.87C478.63 205.52 493.25 234.56 511.69 271.9700000000001C511.72 271.98 511.82 272 511.98 272L512 272.04C531.82 232.4 547.03 202.23 558.7 179.08C569.98 156.7 578.4000000000001 139.96 584.25 128H439.83z" />
+    <glyph glyph-name="ball-pile"
+      unicode="&#xF77E;"
+      horiz-adv-x="576" d=" M480 128C469.6 128 459.7 125.9 450.3 122.8C468.5 140.3 480 164.7 480 192C480 245 437 288 384 288C373.6 288 363.7 285.9 354.3 282.8C372.6 300.3 384 324.8 384 352C384 405 341 448 288 448S192 405 192 352C192 324.8 203.4 300.3 221.7 282.8C212.3 285.9 202.5 288 192 288C139 288 96 245 96 192C96 164.8 107.4 140.3 125.7 122.8C116.3 125.9 106.5 128 96 128C43 128 0 85 0 32S43 -64 96 -64S192 -21 192 32C192 59.2 180.6 83.7 162.3 101.2C171.7 98.1 181.5 96 192 96S212.3 98.1 221.7 101.2C203.4 83.7 192 59.2 192 32C192 -21 235 -64 288 -64S384 -21 384 32C384 59.2 372.6 83.7 354.3 101.2C363.7 98.1 373.5 96 384 96S404.3 98.1 413.7 101.2C395.4 83.7 384 59.2 384 32C384 -21 427 -64 480 -64S576 -21 576 32S533 128 480 128zM288 400C314.5 400 336 378.5 336 352S314.5 304 288 304S240 325.5 240 352S261.5 400 288 400zM317.7 122.8C308.3 125.9 298.5 128 288 128S267.7 125.9 258.3 122.8C276.5 140.3 288 164.7 288 192S276.6 243.7 258.3 261.2C267.7 258.1 277.5 256 288 256S308.3 258.1 317.7 261.2C299.4 243.7 288 219.2 288 192S299.4 140.3 317.7 122.8zM96 -16C69.5 -16 48 5.5 48 32S69.5 80 96 80S144 58.5 144 32S122.5 -16 96 -16zM192 144C165.5 144 144 165.5 144 192S165.5 240 192 240S240 218.5 240 192S218.5 144 192 144zM288 -16C261.5 -16 240 5.5 240 32S261.5 80 288 80S336 58.5 336 32S314.5 -16 288 -16zM384 144C357.5 144 336 165.5 336 192S357.5 240 384 240S432 218.5 432 192S410.5 144 384 144zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16z" />
+    <glyph glyph-name="ballot-check"
+      unicode="&#xF733;"
+      horiz-adv-x="448" d=" M344 88H200C195.6 88 192 84.4 192 80V48C192 43.6 195.6 40 200 40H344C348.4 40 352 43.6 352 48V80C352 84.4 348.4 88 344 88zM112 32H144C152.8 32 160 39.2 160 48V80C160 88.8 152.8 96 144 96H112C103.2 96 96 88.8 96 80V48C96 39.2 103.2 32 112 32zM112 288H144C152.8 288 160 295.2 160 304V336C160 344.8 152.8 352 144 352H112C103.2 352 96 344.8 96 336V304C96 295.2 103.2 288 112 288zM200 296H344C348.4 296 352 299.6 352 304V336C352 340.4 348.4 344 344 344H200C195.6 344 192 340.4 192 336V304C192 299.6 195.6 296 200 296zM416 448H32C14.3 448 0 433.7 0 416V-32C0 -49.7 14.3 -64 32 -64H416C433.7 -64 448 -49.7 448 -32V416C448 433.7 433.7 448 416 448zM400 -16H48V400H400V-16zM134.6 161.6C136.7 159.5 140.1 159.5 142.2 161.6L206.4 225.2C208.5 227.3 208.5 230.7 206.4 232.8L193.8 245.5C191.7 247.6 188.3 247.6 186.2 245.5L138.6 198.3L118 219.2C115.9 221.3 112.5 221.3 110.4 219.2L97.7 206.6C95.6 204.5 95.6 201.1 97.7 199L134.6 161.6zM344 216H237.4C235.5 211 232.8 206.3 228.9 202.5L194.2 168H344C348.4 168 352 171.6 352 176V208C352 212.4 348.4 216 344 216z" />
+    <glyph glyph-name="ballot"
+      unicode="&#xF732;"
+      horiz-adv-x="448" d=" M200 40H344C348.4 40 352 43.6 352 48V80C352 84.4 348.4 88 344 88H200C195.6 88 192 84.4 192 80V48C192 43.6 195.6 40 200 40zM112 32H144C152.8 32 160 39.2 160 48V80C160 88.8 152.8 96 144 96H112C103.2 96 96 88.8 96 80V48C96 39.2 103.2 32 112 32zM112 160H144C152.8 160 160 167.2 160 176V208C160 216.8 152.8 224 144 224H112C103.2 224 96 216.8 96 208V176C96 167.2 103.2 160 112 160zM200 168H344C348.4 168 352 171.6 352 176V208C352 212.4 348.4 216 344 216H200C195.6 216 192 212.4 192 208V176C192 171.6 195.6 168 200 168zM112 288H144C152.8 288 160 295.2 160 304V336C160 344.8 152.8 352 144 352H112C103.2 352 96 344.8 96 336V304C96 295.2 103.2 288 112 288zM200 296H344C348.4 296 352 299.6 352 304V336C352 340.4 348.4 344 344 344H200C195.6 344 192 340.4 192 336V304C192 299.6 195.6 296 200 296zM416 448H32C14.3 448 0 433.7 0 416V-32C0 -49.7 14.3 -64 32 -64H416C433.7 -64 448 -49.7 448 -32V416C448 433.7 433.7 448 416 448zM400 -16H48V400H400V-16z" />
+    <glyph glyph-name="ban"
+      unicode="&#xF05E;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM397.421 333.421C470.597 260.246 474.471 146.12 413.385 68.556L132.556 349.385C210.144 410.49 324.265 406.578 397.4210000000001 333.421zM114.579 50.579C41.403 123.754 37.529 237.88 98.615 315.444L379.444 34.615C301.856 -26.49 187.735 -22.578 114.579 50.579z" />
+    <glyph glyph-name="band-aid"
+      unicode="&#xF462;"
+      horiz-adv-x="640" d=" M552 352H88C39.5 352 0 312.5 0 264V120C0 71.5 39.5 32 88 32H552C600.5 32 640 71.5 640 120V264C640 312.5 600.5 352 552 352zM88 80C65.9 80 48 97.9 48 120V264C48 286.1 65.9 304 88 304H192V80H88zM272 168C285.3 168 296 157.3 296 144S285.3 120 272 120S248 130.7 248 144S258.7 168 272 168zM248 240C248 253.3 258.7 264 272 264S296 253.3 296 240S285.3 216 272 216S248 226.7 248 240zM344 144C344 157.3 354.7 168 368 168S392 157.3 392 144S381.3 120 368 120S344 130.7 344 144zM368 216C354.7 216 344 226.7 344 240S354.7 264 368 264S392 253.3 392 240S381.3 216 368 216zM592 120C592 97.9 574.1 80 552 80H448V304H552C574.1 304 592 286.1 592 264V120z" />
+    <glyph glyph-name="barcode-alt"
+      unicode="&#xF463;"
+      horiz-adv-x="640" d=" M360 64H408C412.4 64 416 67.6 416 72V312C416 316.4 412.4 320 408 320H360C355.6 320 352 316.4 352 312V72C352 67.6 355.6 64 360 64zM456 64H504C508.4 64 512 67.6 512 72V312C512 316.4 508.4 320 504 320H456C451.6 320 448 316.4 448 312V72C448 67.6 451.6 64 456 64zM296 64H312C316.4 64 320 67.6 320 72V312C320 316.4 316.4 320 312 320H296C291.6 320 288 316.4 288 312V72C288 67.6 291.6 64 296 64zM592 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V400C640 426.5 618.5 448 592 448zM592 -16H48V400H592V-16zM136 64H184C188.4 64 192 67.6 192 72V312C192 316.4 188.4 320 184 320H136C131.6 320 128 316.4 128 312V72C128 67.6 131.6 64 136 64zM232 64H248C252.4 64 256 67.6 256 72V312C256 316.4 252.4 320 248 320H232C227.6 320 224 316.4 224 312V72C224 67.6 227.6 64 232 64z" />
+    <glyph glyph-name="barcode-read"
+      unicode="&#xF464;"
+      horiz-adv-x="640" d=" M248 320H232C227.6 320 224 316.4 224 312V72C224 67.6 227.6 64 232 64H248C252.4 64 256 67.6 256 72V312C256 316.4 252.4 320 248 320zM184 320H136C131.6 320 128 316.4 128 312V72C128 67.6 131.6 64 136 64H184C188.4 64 192 67.6 192 72V312C192 316.4 188.4 320 184 320zM144 -16H48V80C48 88.8 40.8 96 32 96H16C7.2 96 0 88.8 0 80V-48C0 -56.8 7.2 -64 16 -64H144C152.8 -64 160 -56.8 160 -48V-32C160 -23.2 152.8 -16 144 -16zM16 288H32C40.8 288 48 295.2 48 304V400H144C152.8 400 160 407.2 160 416V432C160 440.8 152.8 448 144 448H16C7.2 448 0 440.8 0 432V304C0 295.2 7.2 288 16 288zM512 72V312C512 316.4 508.4 320 504 320H456C451.6 320 448 316.4 448 312V72C448 67.6 451.6 64 456 64H504C508.4 64 512 67.6 512 72zM312 320H296C291.6 320 288 316.4 288 312V72C288 67.6 291.6 64 296 64H312C316.4 64 320 67.6 320 72V312C320 316.4 316.4 320 312 320zM624 96H608C599.2 96 592 88.8 592 80V-16H496C487.2 -16 480 -23.2 480 -32V-48C480 -56.8 487.2 -64 496 -64H624C632.8 -64 640 -56.8 640 -48V80C640 88.8 632.8 96 624 96zM624 448H496C487.2 448 480 440.8 480 432V416C480 407.2 487.2 400 496 400H592V304C592 295.2 599.2 288 608 288H624C632.8 288 640 295.2 640 304V432C640 440.8 632.8 448 624 448zM408 320H360C355.6 320 352 316.4 352 312V72C352 67.6 355.6 64 360 64H408C412.4 64 416 67.6 416 72V312C416 316.4 412.4 320 408 320z" />
+    <glyph glyph-name="barcode-scan"
+      unicode="&#xF465;"
+      horiz-adv-x="640" d=" M632 216H8C3.6 216 0 213.3 0 210V174C0 170.7 3.6 168 8 168H632C636.4 168 640 170.7 640 174V210C640 213.3 636.4 216 632 216zM288 440C288 444.4 284.4 448 280 448H232C227.6 448 224 444.4 224 440V288H288V440zM384 440C384 444.4 380.4 448 376 448H360C355.6 448 352 444.4 352 440V288H384V440zM480 440C480 444.4 476.4 448 472 448H424C419.6 448 416 444.4 416 440V288H480V440zM160 440C160 444.4 156.4 448 152 448H72C67.6 448 64 444.4 64 440V288H160V440zM576 440C576 444.4 572.4 448 568 448H520C515.6 448 512 444.4 512 440V288H576V440zM512 -56C512 -60.4 515.6 -64 520 -64H568C572.4 -64 576 -60.4 576 -56V96H512V-56zM352 -56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V96H352V-56zM416 -56C416 -60.4 419.6 -64 424 -64H472C476.4 -64 480 -60.4 480 -56V96H416V-56zM224 -56C224 -60.4 227.6 -64 232 -64H280C284.4 -64 288 -60.4 288 -56V96H224V-56zM64 -56C64 -60.4 67.6 -64 72 -64H152C156.4 -64 160 -60.4 160 -56V96H64V-56z" />
+    <glyph glyph-name="barcode"
+      unicode="&#xF02A;"
+      horiz-adv-x="512" d=" M0 0V384H18V0H0zM26.857 0.273V384H36V0.273H26.857zM54 0.273V384H62.857V0.273H54zM98.857 0.273V384H107.714V0.273H98.857zM134.857 0.273V384H152.571V0.273H134.857zM179.714 0.273V384H188.571V0.273H179.714zM197.714 0.273V384H206.571V0.273H197.714zM215.714 0.273V384H224.571V0.273H215.714zM251.429 0.273V384H269.429V0.273H251.429zM296.286 0.273V384H314.286V0.273H296.286zM332.2850000000001 0.273V384H350.286V0.273H332.2850000000001zM368.286 0.273V384H386.287V0.273H368.286zM395.1430000000001 0.273V384H413.1430000000001V0.273H395.1430000000001zM440.2860000000001 0.273V384H467.143V0.273H440.2860000000001zM476.0000000000001 0.273V384H485.143V0.273H476zM494.0000000000001 0V384H512V0H494z" />
+    <glyph glyph-name="bars"
+      unicode="&#xF0C9;"
+      horiz-adv-x="448" d=" M436 324H12C5.373 324 0 329.373 0 336V368C0 374.627 5.373 380 12 380H436C442.627 380 448 374.627 448 368V336C448 329.373 442.627 324 436 324zM436 164H12C5.373 164 0 169.373 0 176V208C0 214.627 5.373 220 12 220H436C442.627 220 448 214.627 448 208V176C448 169.373 442.627 164 436 164zM436 4H12C5.373 4 0 9.373 0 16V48C0 54.627 5.373 60 12 60H436C442.627 60 448 54.627 448 48V16C448 9.373 442.627 4 436 4z" />
+    <glyph glyph-name="baseball-ball"
+      unicode="&#xF433;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM114 44C126 58.4 136.5 74 144.8 91.1L118 104.1C111.2 90.2000000000001 102.7 77.6 93.1 65.7000000000001C37.7 133.4 28.3 239.1000000000001 93.1 318.4000000000001C102.7 306.6 111.2 294 117.9 280.2000000000001L144.7 293.3000000000001C136.4 310.3000000000001 126 325.8000000000001 114 340.1C187.3 406.5000000000001 302.4000000000001 412.1 382 340.1C370 325.8000000000001 359.6 310.2000000000001 351.3 293.1L378.1 280.1C384.9000000000001 294 393.4000000000001 306.6 402.9000000000001 318.4000000000001C458.7 250.1 467.3000000000001 144.5 403.0000000000001 65.7000000000001C393.4000000000001 77.5000000000001 384.9000000000001 90.1 378.1000000000001 104.0000000000001L351.3000000000001 90.9C359.6000000000001 73.9 370.0000000000001 58.3 382.1000000000001 44.0000000000001C308.5000000000001 -22.6999999999999 193.3000000000001 -27.9 114.0000000000001 44.0000000000001zM156.7 120.5L128.4 129.7C140.6 167.2 142.4 211.2 128.3 254.4L156.6 263.6C172.9 213.6 170.6 163.1999999999999 156.7 120.5zM367.7 129.7L339.4 120.5C323.1 170.5 325.4 221 339.3 263.6L367.6 254.4C355.4 217 353.6 172.9 367.7 129.7z" />
+    <glyph glyph-name="baseball"
+      unicode="&#xF432;"
+      horiz-adv-x="640" d=" M625.6 393.5L608.9 415.5C581.8 452.5 531.3 457.4 496.6 432.4L308.8 295.8C260.7 261.1 216.8 222.5 177.8 178C123 115.4 71.8 76.8 42.2 55.5C33.8 65.3 19.2 66.8 9 58.8C-1.3 50.5 -3 35.4 5.3 25.1L69.3 -54.9C77.1 -64.6999999999999 92.2 -67.2999999999999 103.1 -58.6C112.4 -51.1 114.3 -38.2 108.5 -28.2C137.6 -7.2 190.4 28.4 264.5 59.7000000000001C319.2 82.8000000000001 371 111.9 419.1 146.6L605 282C640.9 307.9 651.7 357.9 625.6 393.5zM78.6 10.1L71.5 19C107.4 46 148.9 80.6 183.1 114.1L204.7 84.6C161.9 63.1 115.6 35.5 78.6 10.1zM576 319.6L390.9 184C315.9 131.2 254.5 108 229.2 96.4L202.1 133.5C221 153.7 261.9 202.8 336.9 256.9L524.7 393.1C538.3000000000001 402.9 559 402 570.2 386.8L583.2 365.3C593.5 351 590.4000000000001 331.3 576 319.6zM512 128C459.1 128 416 84.9 416 32S459.1 -64 512 -64S608 -20.9 608 32S564.9 128 512 128zM512 -16C485.5 -16 464 5.5 464 32S485.5 80 512 80S560 58.5 560 32S538.5 -16 512 -16z" />
+    <glyph glyph-name="basketball-ball"
+      unicode="&#xF434;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329.1 0 192C0 54.1 111.6 -56 248 -56C384.2 -56 496 54 496 192C496 329 385.2 440 248 440zM234.1 -7.3C195.2 -4.6 157 9.4 124.7 34.7L248 158L291 115C261.8 79.9 242.1 37.6 234.1 -7.3zM325.6 80.4L371.3 34.7C345.2 14.2 315.2 1.1 284.1 -4.6C291.4000000000001 26.5 305.7000000000001 55.3 325.6 80.4zM359.6 114.3C384.6 134.3 413.5 148.5 444.7000000000001 155.8C438.9000000000001 123.9 425.5000000000001 94.1 405.3000000000001 68.4999999999999L359.6000000000001 114.3zM447.3 205.9C402.3 197.8 360.1 178.1 324.9 148.9L281.9 191.9L405.2 315.3C430 283.9 444.6 246.1 447.3 205.9zM139 267C113.2 246.4 83.2 232 50.9 224.9C56.4 257.9 69.9 288.8 90.7 315.3L139 267zM124.7 349.3C151.1 370.1 182 383.6 215 389.1C207.9 356.8 193.5 326.8 172.9 301L124.7 349.3zM264.9 391.2C304 387.9 340.7 373.4 371.3 349.3L248 225.9L207.6 266.3C237.3 302.1 257.2 345.2000000000001 264.9 391.2000000000001zM48.8 175C94.8 182.8 137.9 202.6 173.6 232.3L214 191.9L90.7 68.6C66.6 99.3 52.1 136 48.8 175z" />
+    <glyph glyph-name="basketball-hoop"
+      unicode="&#xF435;"
+      horiz-adv-x="640" d=" M639.9 111.1C639.9 88.3 626.3 67.9 605.1999999999999 59.3L501.6999999999999 16.8L505.4999999999999 70.2L586.9 103.7C589.9 104.9 591.9 107.9 591.9 111.1V229.4C509.1 446.4 133.4 447.3 48 229.3V111C48 107.7 50 104.8 53 103.6L134.4 70.1L138.2 16.7L34.7 59.2000000000001C13.6 67.9 0 88.2 0 111.1L1.2 241C1.8 243 68.7 440 320 440S638.1 243 638.8 241C640.4 230.8 639.9 249.5 639.9 111.1zM461.2 -64L385.8 7.6L320 -64L254.2 7.6L178.8 -64L160.6 160H136C131.6 160 128 163.6 128 168V200C128 204.4 131.6 208 136 208H504C508.4 208 512 204.4 512 200V168C512 163.6 508.4 160 504 160H479.4L461.2 -64zM206.7 95.6L253.4 52L297.4 96L255.3 138.1L206.7 95.6zM320 118.6L361.4 160H278.6L320 118.6zM342.6 96L386.6 52L433.3 95.6L384.7 138.1L342.6 96zM447.3 160H408.3L444.8 128.1L447.3 160zM192.7 160L195.3 128.1L231.8 160H192.7zM230.8 29.4L200.9 57.3L205.2 3.8L230.8 29.4zM363.2000000000001 30.2L320 73.4L276.8 30.2L320 -10.1L363.2 30.2zM434.8000000000001 3.8L439.1000000000001 57.3L409.2000000000001 29.4L434.8000000000002 3.8zM464 240V320H176V240H208V288H432V240H464z" />
+    <glyph glyph-name="bat"
+      unicode="&#xF6B5;"
+      horiz-adv-x="640" d=" M638.61 160.75L568.3 318.3C562.8299999999999 330.57 550.4499999999999 337.7000000000001 537.63 337.7000000000001C531.82 337.7000000000001 525.92 336.24 520.53 333.13L415.63 272.6900000000001L384 384L325.88 336H314.11L256 384L224.38 272.7L119.48 333.14A34.122 34.122 0 0 1 102.38 337.71C89.55 337.71 77.18 330.58 71.71 318.31L1.39 160.75C-3.52 149.76 5.29 138.41 16.6 138.41C18.35 138.41 20.15 138.68 21.98 139.2600000000001L38.46 144.54A69.085 69.085 0 0 0 59.53 147.8300000000001C81.36 147.8300000000001 102.38 137.5000000000001 114.99 119.3200000000001L153.39 64.0000000000001L165.7 75.8200000000001C178.81 88.41 195.84 94.5700000000001 212.78 94.5700000000001C232.9100000000001 94.5700000000001 252.9300000000001 85.8800000000001 266.1400000000001 68.97L320 0L373.86 68.97C387.07 85.8800000000001 407.0900000000001 94.5700000000001 427.2200000000001 94.5700000000001C444.17 94.5700000000001 461.2 88.41 474.3100000000001 75.8200000000001L486.6100000000001 64.0000000000001L525.0200000000001 119.3300000000001C537.6300000000001 137.5000000000001 558.6500000000001 147.84 580.4800000000001 147.84C587.5000000000001 147.84 594.6100000000001 146.7700000000001 601.5500000000002 144.55L618.0300000000002 139.2700000000001C619.8500000000003 138.6900000000001 621.6600000000002 138.42 623.4100000000002 138.42C634.7100000000002 138.41 643.5200000000002 149.76 638.6100000000002 160.75zM485.59 146.7L475.51 132.19C460.56 138.99 444.15 142.57 427.21 142.57C391.13 142.57 357.89 126.51 336.02 98.51L320 77.98L303.9700000000001 98.51C282.1 126.51 248.8700000000001 142.57 212.78 142.57C195.84 142.57 179.43 138.99 164.48 132.19L154.41 146.7C134.92 174.78 103.67 192.53 69.43 195.42L108.89 283.84L200.42 231.1L253.74 200.38L270.56 259.58L282.1 300.2L283.56 299L296.85 288H343.1400000000001L356.4500000000001 298.99L357.9100000000001 300.19L369.4500000000001 259.57L386.2700000000001 200.37L439.5900000000001 231.09L531.12 283.8300000000001L570.58 195.4C536.33 192.53 505.09 174.78 485.59 146.7z" />
+    <glyph glyph-name="bath"
+      unicode="&#xF2CD;"
+      horiz-adv-x="512" d=" M500 192H80V336C80 353.645 94.355 368 112 368C123.351 368 133.332 362.055 139.015 353.12C122.523 327.913 124.328 293.544 145.853 270.0850000000001C141.677 265.372 141.832 258.169 146.344 253.657L157.658 242.343C162.344 237.657 169.942 237.657 174.629 242.343L269.659 337.372C274.345 342.058 274.345 349.656 269.659 354.343L258.345 365.6570000000001C253.833 370.169 246.63 370.323 241.917 366.148C223.968 382.617 199.623 387.577 177.739 381.5130000000001C163.281 402.333 139.212 416 112 416C67.888 416 32 380.112 32 336V192H12C5.373 192 0 186.627 0 180V156C0 149.373 5.373 144 12 144H32V96C32 63.881 47.777 35.45 72 18.023V-20C72 -26.627 77.373 -32 84 -32H108C114.627 -32 120 -26.627 120 -20V0.334C122.638 0.116 125.305 0 128 0H384C386.695 0 389.362 0.117 392 0.334V-20C392 -26.627 397.373 -32 404 -32H428C434.627 -32 440 -26.627 440 -20V18.023C464.223 35.45 480 63.881 480 96V144H500C506.627 144 512 149.373 512 156V180C512 186.627 506.627 192 500 192zM176.202 335.799C186.598 346.1960000000001 202.755 346.525 213.54 337.824L174.177 298.461C165.452 309.274 165.829 325.427 176.202 335.799zM432 96C432 69.533 410.467 48 384 48H128C101.533 48 80 69.533 80 96V144H432V96z" />
+    <glyph glyph-name="battery-bolt"
+      unicode="&#xF376;"
+      horiz-adv-x="640" d=" M445.394 224.478L304.616 -21.519C301.094 -28.173 294.673 -32 287.993 -32C275.727 -32 266.44 -19.443 269.316 -6.157L306.163 160.225H211.202C199.602 160.225 190.636 171.411 192.1709999999999 184L217.768 397.775C219.04 408.208 227.177 416 236.8 416H345.6C358.204 416 367.4000000000001 402.913 364.1520000000001 389.589L336.4580000000001 256H428.779C443.564 256 452.79 238.45 445.394 224.478zM48 304H158.197L163.944 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H228.604L239.234 80H48V304zM616 288H608V304C608 330.51 586.51 352 560 352H405.38L395.429 304H560V240H592V144H560V80H418.017L390.548 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288z" />
+    <glyph glyph-name="battery-empty"
+      unicode="&#xF244;"
+      horiz-adv-x="640" d=" M560 304V240H592V144H560V80H48V304H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352z" />
+    <glyph glyph-name="battery-full"
+      unicode="&#xF240;"
+      horiz-adv-x="640" d=" M560 304V240H592V144H560V80H48V304H560M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM512 256H96V128H512V256z" />
+    <glyph glyph-name="battery-half"
+      unicode="&#xF242;"
+      horiz-adv-x="640" d=" M320 128H96V256H320V128zM560 304H48V80H560V144H592V240H560V304M560 352C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H560z" />
+    <glyph glyph-name="battery-quarter"
+      unicode="&#xF243;"
+      horiz-adv-x="640" d=" M224 128H96V256H224V128zM560 304H48V80H560V144H592V240H560V304M560 352C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H560z" />
+    <glyph glyph-name="battery-slash"
+      unicode="&#xF377;"
+      horiz-adv-x="640" d=" M313.616 80L349.229 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H111.81L147.423 304H48V80H313.616zM640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H468.422L514.951 -30.713C518.9 -36.035 517.7860000000001 -43.551 512.464 -47.5L493.412 -61.636A11.95 11.95 0 0 0 486.271 -64C482.601 -64 478.979 -62.323 476.624 -59.149L125.049 414.714C121.1 420.037 122.214 427.553 127.536 431.501L146.588 445.636A11.944 11.944 0 0 0 153.729 448C157.399 448 161.021 446.323 163.376 443.149L231.002 352H560C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264zM592 240H560V304H266.615L432.809 80H560V144H592V240z" />
+    <glyph glyph-name="battery-three-quarters"
+      unicode="&#xF241;"
+      horiz-adv-x="640" d=" M416 128H96V256H416V128zM560 304H48V80H560V144H592V240H560V304M560 352C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H560z" />
+    <glyph glyph-name="bed"
+      unicode="&#xF236;"
+      horiz-adv-x="640" d=" M168 144C216.52 144 256 183.48 256 232S216.52 320 168 320S80 280.52 80 232S119.48 144 168 144zM168 272C190.06 272 208 254.06 208 232S190.06 192 168 192S128 209.94 128 232S145.94 272 168 272zM528 320H304C295.1600000000001 320 288 312.8400000000001 288 304V112H48V368C48 376.8400000000001 40.84 384 32 384H16C7.16 384 0 376.8400000000001 0 368V16C0 7.16 7.16 0 16 0H32C40.84 0 48 7.16 48 16V64H592V16C592 7.16 599.16 0 608 0H624C632.84 0 640 7.16 640 16V208C640 269.86 589.86 320 528 320zM592 112H336V272H528C563.29 272 592 243.29 592 208V112z" />
+    <glyph glyph-name="beer"
+      unicode="&#xF0FC;"
+      horiz-adv-x="448" d=" M152 296V88C152 74.745 141.255 64 128 64S104 74.745 104 88V296C104 309.255 114.745 320 128 320S152 309.255 152 296zM224 320C210.745 320 200 309.255 200 296V88C200 74.745 210.745 64 224 64S248 74.745 248 88V296C248 309.255 237.255 320 224 320zM448 280V134.712C448 106.727 431.582 81.066 406.173 69.339L352 44.336V16C352 -10.51 330.51 -32 304 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H304C330.51 416 352 394.51 352 368V352H376C415.701 352 448 319.701 448 280zM298 368H54C50.686 368 48 365.322 48 362.008V21.992A5.993 5.993 0 0 1 54 16H298A6 6 0 0 1 304 22V362A6 6 0 0 1 298 368zM400 280C400 293.233 389.233 304 376 304H352V97.202L386.058 112.921C394.528 116.83 400 125.384 400 134.712V280z" />
+    <glyph glyph-name="bell-school-slash"
+      unicode="&#xF5D6;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM576 112C576 138.51 554.51 160 528 160C515.14 160 503.53 154.88 494.91 146.64L569.4499999999999 88.36C573.4999999999999 95.34 575.9999999999999 103.33 575.9999999999999 112zM272 80C183.78 80 112 151.78 112 240C112 247.37 113.21 254.42 114.18 261.53L71.58 294.8400000000001C66.78 277.3300000000001 64 259 64 240C64 181.2 88.64 128.13 128 90.26V-32C128 -49.67 142.33 -64 160 -64H384C401.67 -64 416 -49.67 416 -32V25.56L331.39 91.71C312.99 84.31 293.01 80 272 80zM368 -16H176V55.67C204.75 40.63 237.37 32 272 32S339.25 40.63 368 55.67V-16zM272 400C360.2200000000001 400 432 328.2200000000001 432 240C432 226.19 429.69 213.01 426.39 200.22L467 168.47C475.25 190.8 480 214.82 480 240.0000000000001C480 354.69 386.69 448 272 448C228.8 448 188.65 434.74 155.36 412.11L196.32 380.0900000000001C218.95 392.38 244.48 400 272 400zM254.92 334.27L367.36 246.36C364.01 296.29 322.76 336 272 336C266.15 336 260.48 335.28 254.92 334.27z" />
+    <glyph glyph-name="bell-school"
+      unicode="&#xF5D5;"
+      horiz-adv-x="512" d=" M208 336C155.06 336 112 292.94 112 240S155.06 144 208 144S304 187.06 304 240S260.94 336 208 336zM208 192C181.53 192 160 213.53 160 240S181.53 288 208 288S256 266.4700000000001 256 240S234.47 192 208 192zM464 160C437.49 160 416 138.51 416 112C416 95.57 424.27 81.11 436.86 72.45C430.78 58.1 416.55 48 400 48H352V90.26C391.36 128.13 416 181.2 416 240C416 354.69 322.69 448 208 448S0 354.69 0 240C0 181.2 24.64 128.12 64 90.26V-32C64 -49.67 78.33 -64 96 -64H320C337.67 -64 352 -49.67 352 -32V0H400C442.2 0 477.48 29.87 485.98 69.56C501.37 77.56 512 93.46 512 112C512 138.51 490.51 160 464 160zM304 -16H112V55.67C140.75 40.63 173.37 32 208 32S275.25 40.63 304 55.67V-16zM208 80C119.78 80 48 151.78 48 240S119.78 400 208 400S368 328.2200000000001 368 240S296.2200000000001 80 208 80z" />
+    <glyph glyph-name="bell-slash"
+      unicode="&#xF1F6;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM163.53 80C180.24 102.03 198.01 135.8 204.93 190.58L159.46 226.13C156.19 135.4 122.99 105.45 104.62 85.71C98.62 79.2600000000001 95.96 71.55 96.01 64.0000000000001C96.12 47.6000000000001 108.99 32.0000000000001 128.11 32.0000000000001H407.7700000000001L346.3700000000001 80.0000000000001H163.53zM320 352C381.86 352 432 301.86 432 240C432 239.8 431.94 239.62 431.94 239.42C431.96 222.58 433.1 207.65 434.73 193.69L494.26 147.15C485.95 169.28 479.92 198.64 479.92 240C479.92 317.7 425.44 379.9 351.98 395.16V416C351.98 433.67 337.6600000000001 448 320 448S288.02 433.67 288.02 416V395.16C262 389.75 238.57 378.2200000000001 218.89 362.44L257.06 332.6C275 344.82 296.65 352 320 352zM320 -64C355.32 -64 383.9700000000001 -35.35 383.9700000000001 0H256.03C256.03 -35.35 284.68 -64 320 -64z" />
+    <glyph glyph-name="bell"
+      unicode="&#xF0F3;"
+      horiz-adv-x="448" d=" M439.39 85.71C420.07 106.47 383.92 137.7 383.92 240C383.92 317.7 329.44 379.9 255.98 395.16V416C255.98 433.67 241.66 448 224 448S192.02 433.67 192.02 416V395.16C118.56 379.9 64.08 317.7 64.08 240C64.08 137.7 27.93 106.47 8.61 85.71C2.61 79.2600000000001 -0.05 71.55 0 64.0000000000001C0.11 47.6000000000001 12.98 32.0000000000001 32.1 32.0000000000001H415.9000000000001C435.0200000000001 32.0000000000001 447.9000000000001 47.6000000000001 448.0000000000001 64.0000000000001C448.0500000000001 71.5500000000001 445.3900000000001 79.27 439.3900000000001 85.71zM67.53 80C88.75 107.97 111.95 154.33 112.06 239.42C112.06 239.62 112 239.8 112 240C112 301.86 162.14 352 224 352S336 301.86 336 240C336 239.8 335.94 239.62 335.94 239.42C336.05 154.32 359.25 107.96 380.4700000000001 80H67.53zM224 -64C259.32 -64 287.9700000000001 -35.35 287.9700000000001 0H160.03C160.03 -35.35 188.68 -64 224 -64z" />
+    <glyph glyph-name="bells"
+      unicode="&#xF77F;"
+      horiz-adv-x="640" d=" M638.4 134.1C636.3 140 632 145.3 625.5 148.6C604.5 159.4 567.2 173.5 538.1 253.6C537.3000000000001 255.8 523.4 294.1 522.7 296.2000000000001C503 350.4 451.8 384 397.4 384C382.3 384 366.9 381.4 351.8 375.9C348.2 374.6 345.2 372.6 341.8 371.1C327.6 387.1 309.7 400.1 288.3 407.9C273.3 413.4 257.8 416 242.7 416C188.2 416 137.1 382.4 117.4 328.2000000000001C116.6 326.1 102.8 287.8 102 285.6C72.8 205.5 35.6 191.3 14.6 180.6C8.1 177.3 3.8 172 1.7 166.1C-2.9 153.2000000000001 2.7 137.3 17.7 131.9L99.5 102C97.4 95 96 87.7 96 80C96 35.8 131.8 0 176 0C208.6 0 236.5 19.6 248.9 47.6L291 32.3C288.2 25.8 283.5 17.5 287.6 6.3C292.5 -6.8 307.2000000000001 -15 321.9000000000001 -9.6L398.2000000000001 18.2C410 -11.1 438.4 -32 472 -32C516.2 -32 552 3.8 552 48C552 56.7 550.1 64.8 547.5 72.6L622.5 99.9C637.4 105.3 643 121.2000000000001 638.4 134.1zM176 48C158.4 48 144 62.4 144 80C144 81.9 144.6 83.7 144.9 85.5L203.3 64.3C197.7 54.7 187.8 48 176 48zM76.1 161.6C99.3 179.8 125.8 210.9 147 269.1C156.1 294.1 152.6 284.7000000000001 162.4 311.7000000000001C174.6 345.3 206.9 367.9000000000001 242.6 367.9000000000001C264.1 367.9000000000001 285.1 360.1 302 343.1C267.6 307.6 254 254.5000000000001 272 204.9C272.8 202.8000000000001 286.8 164.5000000000001 287.6 162.3C300.7000000000001 126.2 303.8 99.7 302.6 79L76.1 161.6zM504 48C504 30.4 489.6 16 472 16C459.2 16 448.5 23.8 443.6 34.7L502.5 56.2C503.3 53.6 504 50.9 504 48zM347.5 50.9C353.5 79.7 353.9 120.6 332.7 178.9C324.1 202.4 327.2 193.9 317.1 221.5C301 265.7 323.9 314.8 368.1 330.9C412.7 347.1 461.5 323.8 477.5 279.9C487.2 253.2 482.5 266.1 492.9 237.3C514.1 179 540.6999999999999 148 563.8 129.7L347.5 50.9z" />
+    <glyph glyph-name="bezier-curve"
+      unicode="&#xF55B;"
+      horiz-adv-x="640" d=" M576 272C611.35 272 640 300.65 640 336S611.35 400 576 400C549.2 400 526.55 383.39 517.05 360H400V384C400 401.67 385.67 416 368 416H272C254.33 416 240 401.67 240 384V360H122.95C113.45 383.39 90.8 400 64 400C28.65 400 0 371.35 0 336S28.65 272 64 272C90.8 272 113.45 288.61 122.95 312H203C138.68 274.2200000000001 94.2 206.48 88.81 128H64C46.33 128 32 113.67 32 96V0C32 -17.67 46.33 -32 64 -32H160C177.67 -32 192 -17.67 192 0V96C192 113.67 177.67 128 160 128H136.81C142.6 194.78 184.2 251.33 242.28 278.54C246.33 265.62 257.73 256 272 256H368C382.27 256 393.67 265.62 397.7200000000001 278.54C455.8 251.33 497.4 194.78 503.19 128H480C462.33 128 448 113.67 448 96V0C448 -17.67 462.33 -32 480 -32H576C593.67 -32 608 -17.67 608 0V96C608 113.67 593.67 128 576 128H551.19C545.8000000000001 206.48 501.3200000000001 274.2200000000001 437.0100000000001 312H517.0600000000001C526.5500000000001 288.61 549.2 272 576 272zM560 337.5900000000001L560.62 339.99C562.45 347.06 568.78 352 576 352C584.82 352 592 344.82 592 336S584.82 320 576 320C568.78 320 562.45 324.94 560.62 332.01L560 334.4100000000001V337.5900000000001zM80 334.41L79.38 332.01C77.55 324.94 71.22 320 64 320C55.18 320 48 327.18 48 336S55.18 352 64 352C71.22 352 77.55 347.06 79.38 339.99L80 337.6V334.41zM144 80V16H80V80H144zM352 304H288V368H352V304zM560 80V16H496V80H560z" />
+    <glyph glyph-name="bible"
+      unicode="&#xF647;"
+      horiz-adv-x="448" d=" M160 240H208V144C208 135.16 215.16 128 224 128H256C264.84 128 272 135.16 272 144V240H320C328.84 240 336 247.16 336 256V288C336 296.8400000000001 328.84 304 320 304H272V352C272 360.8400000000001 264.84 368 256 368H224C215.16 368 208 360.8400000000001 208 352V304H160C151.16 304 144 296.8400000000001 144 288V256C144 247.16 151.16 240 160 240zM448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96z" />
+    <glyph glyph-name="bicycle"
+      unicode="&#xF206;"
+      horiz-adv-x="640" d=" M514.115 255.983C496.478 256.2680000000001 479.646 252.978 464.283 246.802L384.993 374.548A20 20 0 0 1 368 384H300C293.373 384 288 378.627 288 372V356C288 349.373 293.373 344 300 344H356.874L389.1500000000001 292H256V308C256 314.627 250.627 320 244 320H148C136.954 320 128 311.046 128 300S136.954 280 148 280H209.187L183.537 243.356C166.74 251.458 147.903 255.999 128.005 256C57.375 256.002 -0.443 197.804 0.003 127.176C0.446 56.863 57.583 0 128 0C186.192 0 235.306 38.835 250.859 92H284A20.005000000000003 20.005000000000003 0 0 1 300.385 100.53L410.423 257.727L429.962 226.247C401.826 202.728 383.941 167.355 384 127.802C384.104 58.922 441.908 0.644 510.785 0.005C582.386 -0.659 640.572 57.472 639.995 129.053C639.439 198.205 583.259 254.865 514.115 255.983zM128 40C79.477 40 40 79.477 40 128S79.477 216 128 216A87.55199999999999 87.55199999999999 0 0 0 160.134 209.925L99.615 123.47C90.342 110.219 99.857 92 116 92H208.294C194.509 61.375 163.705 40 128 40zM154.413 132L193.054 187.201C206.463 172.4790000000001 214.952 153.204 215.906 132H154.413zM273.587 132H255.932C254.863 166.805 239.906 198.113 216.408 220.563L238.413 252H357.587L273.587 132zM507.871 40.095C462.357 42.187 425.655 79.314 424.056 124.847C423.132 151.1490000000001 433.82 175.0240000000001 451.384 191.735L499.227 114.655C502.722 109.024 510.121 107.293 515.751 110.788L529.345 119.226C534.976 122.721 536.707 130.119 533.212 135.75L485.861 212.037C494.873 214.846 504.502 216.242 514.487 215.965C560.284 214.695 597.8009999999999 177.895 599.905 132.128C602.284 80.353 559.6469999999999 37.715 507.871 40.095z" />
+    <glyph glyph-name="binoculars"
+      unicode="&#xF1E5;"
+      horiz-adv-x="512" d=" M511.67 60C508.21 189.77 450.61 210.16 448.0900000000001 303.98C447.61 321.63 433.8100000000001 336 416.1600000000001 336H416V384C416 401.67 401.67 416 384 416H304C286.33 416 272 401.67 272 384V336H240V384C240 401.67 225.67 416 208 416H128C110.33 416 96 401.67 96 384V336H95.84C78.19 336 64.39 321.62 63.91 303.98C61.39 210.16 3.79 189.77 0.33 60L0 16C0 -10.51 21.49 -32 48 -32H176C202.51 -32 224 -10.51 224 16V160H288V16C288 -10.51 309.49 -32 336 -32H464C490.51 -32 512 -10.51 512 16L511.67 60zM320 368H368V336H320V368zM144 368H192V336H144V368zM176 16L48 15.64L48.31 58.72C49.92 118.96 64.38 150.19 79.7 183.26C92.75 211.43 107.37 242.99 111.1 288H176V16zM224 208V288H288V208H224zM336 16V288H400.9C404.63 242.99 419.25 211.42 432.3 183.26C447.62 150.19 462.0799999999999 118.96 463.67 59.65L464 16H336z" />
+    <glyph glyph-name="biohazard"
+      unicode="&#xF780;"
+      horiz-adv-x="576" d=" M287.9 336C306.5 336 324.1 332.2 340.7 326.4C354 336.7 364.3 350.7 370.2 367.1C345 378 317.2 384.1 288 384.1C258.9 384.1 231.1 378.1 205.9 367.2000000000001C211.8 350.8 222.1 336.8 235.4 326.5C251.9 332.2000000000001 269.4 336 287.9 336zM163.6 9.3C175.6 21.1 184 35.7 188.1 51.7C155.2 78.1 133.3 117 129.2 161.3C120.7 164.1 112 165.9 102.8 165.9C95.2 165.9 87.6 164.9 80.3 162.8C84.4 99.9999999999999 116.1 44.8 163.6 9.3zM387.8 51.9C391.9 35.9 400.3 21.2 412.3 9.4C459.6999999999999 44.9 491.4 100.1 495.3 162.9C488.1 164.9 480.6 165.9 473.1 165.9C463.9 165.9 455.1 164.0000000000001 446.5 161.2000000000001C442.3999999999999 117.0000000000001 420.5 78.3000000000001 387.8 51.9zM501.3 256.9000000000001C483.6999999999999 267.3000000000001 464.9999999999999 273.5 446 276.8000000000001C451.9999999999999 294.5 455.9999999999999 313.2000000000001 455.9999999999999 333.0000000000001C455.9999999999999 374.0000000000001 441.5 413.8000000000001 415 445.2000000000001C412.5 448.2000000000001 408.3999999999999 448.9000000000001 405 447.0000000000001C401.7 445.1 400.2 441.0000000000001 401.3999999999999 437.3000000000001C405.8999999999999 423.5000000000001 408 411.0000000000001 408 398.8000000000001C408 331.0000000000001 354.2 275.9000000000001 288 275.9000000000001S168 331 168 398.8C168 410.9 170.2 423.5 174.6 437.3C175.8 441 174.3 445.1 171 447C167.6 448.9 163.5 448.2 161 445.2C134.6 413.8 120 374 120 333C120 313.2 123.9 294.5 130 276.8C111.1 273.5 92.3 267.3 74.7 256.9C40.1 236.4 13.7 203.6 0.4 164.5C-0.9 160.8 0.6 156.8 3.9 154.7C7.2 152.7 11.4 153.4 13.9 156.3C23.3 167.1 32.9 175.4 43.1 181.4C100.4 215.3000000000001 173.9 195.1 207 136.4C240.1 77.7000000000001 220.4 2.4 163.1 -31.5C152.9 -37.6 141.1 -41.9 127.3 -44.9C123.6 -45.7 120.9 -49.1 120.9 -53C121 -57 123.6 -60.3 127.4 -61C167.1 -68.7999999999999 208 -61.8 242.6 -41.3C260.6 -30.7 275.5 -16.8 287.9 -1.2C300.3 -16.8 315.2 -30.7 333.2 -41.3C367.8 -61.8 408.7 -68.7999999999999 448.4 -61C452.2 -60.3 454.8 -57 454.9 -53C454.9 -49.1 452.3 -45.7 448.5 -44.9C434.6 -42 422.9 -37.6 412.7 -31.5C355.4 2.4 335.7 77.7 368.8 136.4S475.4 215.3 532.7 181.4C542.9000000000001 175.3 552.5 167.1 561.9000000000001 156.3C564.4000000000001 153.4 568.6000000000001 152.6999999999999 571.9000000000001 154.6999999999999S576.7 160.8 575.4000000000001 164.5C562.3000000000001 203.5999999999999 535.9000000000001 236.5 501.3000000000001 256.9zM287.9 127.9C261.4 127.9 239.9 149.4 239.9 175.9S261.4 223.9 287.9 223.9S335.9 202.4 335.9 175.9S314.4 127.9 287.9 127.9z" />
+    <glyph glyph-name="birthday-cake"
+      unicode="&#xF1FD;"
+      horiz-adv-x="448" d=" M192 384C192 415 224 407 224 448C236 448 256 418.5 256 392S241.75 352 224 352S192 366.25 192 384zM352 352C369.75 352 384 365.5 384 392S364 448 352 448C352 407 320 415 320 384C320 366.25 334.25 352 352 352zM448 176V-64H0V176C0 202.5 21.5 224 48 224H72V336H120V224H200V336H248V224H328V336H376V224H400C426.5 224 448 202.5 448 176zM48 170V113.169C56.352 106.169 63.27 100 74.75 100C100.128 100 104.88 132 149.5 132C193.474 132 199.254 100 224 100C249.588 100 254.061 132 298.75 132C343.223 132 348.079 100 373.5 100C384.758 100 391.635 106.18 400 113.187V169.992A6 6 0 0 1 394 175.992L54 176A6 6 0 0 1 48 170zM400 -16V64.87C392.999 61.956 384.46 60 373.5 60C328.956 60 324.111 92 298.75 92C273.606 92 268.421 60 224 60C180.026 60 174.245 92 149.5 92C123.913 92 119.438 60 74.75 60C63.666 60 55.052 61.974 48 64.911V-16H400zM96 352C113.75 352 128 365.5 128 392S108 448 96 448C96 407 64 415 64 384C64 366.25 78.25 352 96 352z" />
+    <glyph glyph-name="blanket"
+      unicode="&#xF498;"
+      horiz-adv-x="512" d=" M440 80H112C103.2 80 96 72.8 96 64V48C96 39.2 103.2 32 112 32H440C479.8 32 511.7 64.5 511.6 104.4L512 104V360C512 408.5 472.5 448 424 448H88C39.5 448 0 408.5 0 360V56L0.3 56.5C0.3 48.1 0.8 39.5 2.6 30.8C14.1 -25.3 66.2 -64 123.4 -64H496C504.8 -64 512 -56.8 512 -48V-32C512 -23.2 504.8 -16 496 -16H120C77.8 -16 44 20.5 48.4 63.5C52.2 101 86.6 128 124.3 128H440C453.2 128 464 117.2 464 104S453.2 80 440 80zM435.7 176H120C93 176 68.1 166.8 48 151.7V360C48 382.1 65.9 400 88 400H424C446.1 400 464 382.1 464 360V170.7C455.1 174.1 445.6 176 435.7 176z" />
+    <glyph glyph-name="blender-phone"
+      unicode="&#xF6B6;"
+      horiz-adv-x="576" d=" M352 56C338.74 56 328 45.26 328 32C328 18.75 338.74 8 352 8S376 18.75 376 32C376 45.26 365.26 56 352 56zM489.91 117.99L576 448H192L220.43 121.01C185.06 106.86 160 72.43 160 32V-32C160 -49.67 174.33 -64 192 -64H512C529.67 -64 544 -49.67 544 -32V32C544 69.92 521.83 102.39 489.91 117.99zM513.87 400L501.35 352H360C355.58 352 352 348.42 352 344V328C352 323.58 355.58 320 360 320H493L476.3 256H360C355.58 256 352 252.42 352 248V232C352 227.58 355.58 224 360 224H467.96L442.92 128H268.01L244.36 400H513.87zM496 -16H208V32C208 58.47 229.53 80 256 80H448C474.47 80 496 58.47 496 32V-16zM115.78 325.39C123.21 324.66 130.24 328.85 133.02 335.65L158.8 398.9100000000001C161.82 406.3 159 414.76 152.12 418.98L112.84 443.08C98.51 451.87 80.09 448.5 68.95 436.03C-23.62 332.43 -23.05 176.48 71.05 73.54C80.92 62.74 100.17 61.06 112.7 68.74L152.11 92.92C158.99 97.14 161.81 105.59 158.79 112.99L133.01 176.25C130.23 183.06 123.21 187.24 115.77 186.5099999999999L70.74 182.0899999999999C53.46 229.0299999999999 53.09 281.8699999999999 70.74 329.81L115.78 325.39z" />
+    <glyph glyph-name="blender"
+      unicode="&#xF517;"
+      horiz-adv-x="512" d=" M425.9100000000001 117.99L512 448H48C21.49 448 0 426.51 0 400V240C0 213.49 21.49 192 48 192H150.26L156.43 121.01C121.06 106.86 96 72.43 96 32V-32C96 -49.67 110.33 -64 128 -64H448C465.67 -64 480 -49.67 480 -32V32C480 69.92 457.83 102.39 425.91 117.99zM48 240V400H132.17L146.08 240H48zM449.87 400L437.35 352H296C291.58 352 288 348.42 288 344V328C288 323.58 291.58 320 296 320H429L412.3 256H296C291.58 256 288 252.42 288 248V232C288 227.58 291.58 224 296 224H403.96L378.92 128H204.01L180.36 400H449.87zM432 -16H144V32C144 58.47 165.53 80 192 80H384C410.4700000000001 80 432 58.47 432 32V-16zM288 56C274.74 56 264 45.26 264 32C264 18.75 274.74 8 288 8S312 18.75 312 32C312 45.26 301.26 56 288 56z" />
+    <glyph glyph-name="blind"
+      unicode="&#xF29D;"
+      horiz-adv-x="384" d=" M192.913 -62.276C180.588 -67.205 166.632 -61.197 161.717 -48.906L111.178 77.435L134.154 149.236L206.283 -31.08C211.206 -43.3870000000001 205.22 -57.354 192.913 -62.2760000000001zM96 448C71.699 448 52 428.301 52 404S71.699 360 96 360S140 379.699 140 404S120.301 448 96 448zM108.53 307.397A4.002 4.002 0 0 0 114.135 306.5950000000001L219.2 166.4C224.629 159.161 234.714 158.036 241.599 163.2C248.65 168.488 250.071 178.573 244.799 185.599L124.799 345.599C121.659 349.787 116.86 351.984 111.999 351.985L80 352V351.991C75.31 351.988 70.664 349.942 67.506 345.995L0 261.612V176.451C0 167.835 6.621 160.422 15.227 160.018C24.416 159.586 32 166.907 32 176V250.388L64 290.3880000000001V113.7480000000001L17.142 -32.679C13.103 -45.303 20.062 -58.8119999999999 32.686 -62.852C45.316 -66.893 58.82 -59.928 62.859 -47.308L128 156.254V274.6670000000001L107.725 301.799A4.003 4.003 0 0 0 108.53 307.3970000000001zM382.837 -51.848L252.28 163.187A24.013 24.013 0 0 0 239.61 153.227L369.161 -60.15A8 8 0 0 1 380.15 -62.837A7.997999999999999 7.997999999999999 0 0 1 382.837 -51.848z" />
+    <glyph glyph-name="blog"
+      unicode="&#xF781;"
+      horiz-adv-x="512" d=" M208.8 352C199.7 352.7 192 345 192 335.8V319.8C192 311.2000000000001 198.8 304.5 207.4 304C292.7 298.1 360.6 228.7 367.8 143.3C368.5 134.8 375.1 128.1 383.6 128.1H399.8C408.9000000000001 128.1 416.6 135.8 416 144.9C407.7 255.3000000000001 319.3 343.8000000000001 208.8 352zM208.7 448C199.6 448.4 192 440.8 192 431.7V415.7C192 407.1 198.8 400.4 207.4 399.9C345.6 392.2 457.2 281.6 464 143.5C464.4 134.9 471.2 128 479.8 128H495.8C504.9 128 512.5 135.6 512.1 144.7C503.5 308.1 372.1 439.5 208.7 448zM137 224H128C119.2 224 112 216.8 112 208V176C112 167.2 119.2 160 128 160H138.9C185.9 160 226.9 121.6 223.8 74.7C221.2 34.8 189.2 2.9 149.4 0.2C102.4 -3 64 38 64 85.1V336C64 344.8 56.8 352 48 352H16C7.2 352 0 344.8 0 336V87C0 4.4 66.5 -66.7 149 -63.9C224.4 -61.2999999999999 285.3 -0.4 287.9 75C290.8 157.5 219.6 224 137 224z" />
+    <glyph glyph-name="bold"
+      unicode="&#xF032;"
+      horiz-adv-x="384" d=" M292 204.467C330.106 223.094 350.232 259.7200000000001 350.232 301.779C350.232 350.005 324.216 386.81 288.68 402.674C266.471 412.827 242.357 416 209.995 416H28C21.373 416 16 410.627 16 404V380C16 373.373 21.373 368 28 368H62.142V16H28C21.373 16 16 10.627 16 4V-20C16 -26.627 21.373 -32 28 -32H218.244C242.992 -32 263.932 -30.731 285.508 -23.751C331.83 -7.887 368 36.533 368 95.547C368 153.798 334.025 194.649 292 204.4670000000001zM125.598 363.966H209.994C229.031 363.966 243.625 361.428 256.317 355.082C275.637 344.134 285.808 321.421 285.5 294.902C285.066 257.429 253.97 227.535 216.495 227.535H125.598V363.966zM260.759 26.38C248.703 21.303 233.473 20.034 220.782 20.034H125.598V175.501H225.859C272.8160000000001 175.501 303.275 145.043 303.275 98.72C303.275 65.088 286.776 37.168 260.759 26.38z" />
+    <glyph glyph-name="bolt"
+      unicode="&#xF0E7;"
+      horiz-adv-x="384" d=" M377.8 280.1C369.6 294.4 354.7 303 338.2 303H243.8L272.5 390.5C276.2 404.3 273.3 418.8 264.6 430.2C255.8 441.5 242.5 448 228.2 448H97.7C74.9 448 55.4 430.9 52.9 410.9L0.5 198.7C-1.4 184.9 2.7 171 11.8 160.5C20.9 150 34.1 144 48 144H146.1L111.2 -7.7C108 -21.4 111.1 -35.6 119.8 -46.6C128.5 -57.7 141.6 -63.9999999999999 155.7 -63.9999999999999C172 -63.9999999999999 187.2 -55.1999999999999 194.5 -42.3999999999999L377.7 234.3000000000001C386.1 248.6000000000001 386.1 265.8000000000001 377.8 280.1000000000001zM160.1 -9.4L206.4 192H47.5L97.7 400L225.3 400.9L177.5 255H334L160.1 -9.4z" />
+    <glyph glyph-name="bomb"
+      unicode="&#xF1E2;"
+      horiz-adv-x="512" d=" M384.5 303.5L440.5 359.5L423.5 376.5L367.5 320.5L315.3 372.7C309.1 378.9 298.9000000000001 378.9 292.7 372.7L264.3 344.3C246.4 349.3 227.5 352 208 352C93.1 352 0 258.9 0 144S93.1 -64 208 -64S416 29.1 416 144C416 163.5 413.3 182.4 408.3 200.3L436.7 228.7C442.9 234.9 442.9 245.1 436.7 251.3L384.5 303.5zM354.5 214.4C362.4 186.2 368 170.5 368 144C368 55.6 296.4 -16 208 -16S48 55.6 48 144S119.6 304 208 304C234.3 304 249.4 298.6 278.4 290.5L304 316.1L380.1 240L354.5 214.4zM512 376C512 369.4 506.6 364 500 364H476C469.4 364 464 369.4 464 376S469.4 388 476 388H500C506.6 388 512 382.6 512 376zM452 436V412C452 405.4 446.6 400 440 400S428 405.4 428 412V436C428 442.6 433.4 448 440 448S452 442.6 452 436zM457 393C452.3 397.7 452.3 405.3 457 410L474 427C478.7 431.7 486.3 431.7 491 427C495.7 422.3 495.7 414.7 491 410L474 393C469.3 388.3 461.7 388.3 457 393zM389.1 409.9C384.4000000000001 414.6 384.4000000000001 422.2 389.1 426.9C393.8 431.6 401.4000000000001 431.6 406.1 426.9L423.1 409.9C427.8 405.2 427.8 397.6 423.1 392.9C418.4000000000001 388.2 410.8 388.2 406.1 392.9L389.1 409.9zM490.9 342.1C495.6 337.4 495.6 329.8 490.9 325.1C486.2 320.4 478.6 320.4 473.9 325.1L456.9 342.1C452.2 346.8 452.2 354.4 456.9 359.1C461.6 363.8 469.2 363.8 473.9 359.1L490.9 342.1zM216 240C216 226.7 205.3 216 192 216C161.1 216 136 190.9 136 160C136 146.7 125.3 136 112 136S88 146.7 88 160C88 217.3 134.7 264 192 264C205.3 264 216 253.3 216 240z" />
+    <glyph glyph-name="bone-break"
+      unicode="&#xF5D8;"
+      horiz-adv-x="640" d=" M640 360.77C640 408.86 598.37 448 547.19 448C507.47 448 472.1900000000001 424.27 459.35 388.94C458.23 385.7 452.72 368 448 368H368C341.49 368 320 346.51 320 320H448C463.36 320 485.83 318.81 504.47 372.58C510.44 388.98 527.59 400 547.19 400C571.91 400 592 382.41 592 360.77C592 343.29 587.72 328.61 567.94 319.54C555.2800000000001 313.71 547.44 301.65 547.44 288.01S555.32 262.29 567.94 256.48C587.2800000000001 247.6 592 233.36 592 215.25C592 193.61 571.91 176.02 547.19 176.02C527.6 176.02 510.4400000000001 187.04 504.47 203.43C494.42 233.34 483.78 256 448 256H432C405.49 256 384 234.51 384 208H448C452.45 208 458.25 190.27 459.34 187.05C472.1799999999999 151.74 507.46 128 547.18 128C598.3699999999999 128 639.99 167.14 639.99 215.23C639.99 244.46 632.0600000000001 268.42 607.65 288C631.91 307.43 640 331.31 640 360.77zM234.24 124.99C223.38 114.13 206.64 99.08 231.49 47.88C238.87 32.06 234.53 12.14 220.67 -1.72C203.19 -19.2 176.54 -20.97 161.24 -5.67C148.88 6.69 141.53 20.1 149.1 40.5C153.93 53.57 150.95 67.65 141.3 77.29S117.54 89.91 104.51 85.09C84.56 77.6900000000001 71.15 84.42 58.34 97.23C43.04 112.53 44.81 139.18 62.29 156.66C76.14 170.5100000000001 96.07 174.86 111.88 167.49C140.15 153.43 163.7 144.93 189 170.23L247.4500000000001 228.68C266.1900000000001 247.42 266.1900000000001 277.82 247.4500000000001 296.56L155.0700000000001 204.18C151.9200000000001 201.03 135.2800000000001 209.46 132.2300000000001 210.97C98.1800000000001 226.86 56.4500000000001 218.69 28.36 190.61C-7.84 154.42 -9.59 97.31 24.41 63.3C45.08 42.63 67.63 31.3 98.73 34.72C95.32 3.83 106.49 -18.78 127.31 -39.6C161.32 -73.61 218.43 -71.8499999999999 254.6200000000001 -35.66C282.7100000000001 -7.57 290.87 34.16 274.9700000000001 68.22C273.4700000000001 71.29 264.85 87.71 268.1900000000001 91.05L294.6300000000001 117.49C313.3800000000001 136.24 313.3800000000001 166.63 294.6300000000001 185.37L234.2400000000001 124.99z" />
+    <glyph glyph-name="bone"
+      unicode="&#xF5D7;"
+      horiz-adv-x="640" d=" M640 264.77C640 312.86 598.38 352 547.19 352C507.47 352 472.1900000000001 328.27 459.35 292.94C458.23 289.7 452.72 272 448 272H192C187.28 272 181.77 289.7 180.66 292.94C167.81 328.27 132.53 352 92.81 352C41.62 352 0 312.86 0 264.77C0 235.32 8.09 211.43 32.34 192C7.93 172.43 0 148.46 0 119.23C0 71.14 41.62 32 92.81 32C132.53 32 167.81 55.73 180.65 91.05C181.74 94.28 187.54 112 191.99 112H447.99C452.44 112 458.24 94.27 459.33 91.05C472.17 55.74 507.45 32 547.17 32C598.3599999999999 32 639.98 71.14 639.98 119.23C639.98 148.46 632.0500000000001 172.42 607.64 192C631.91 211.43 640 235.31 640 264.77zM567.94 160.47C587.2800000000001 151.59 592 137.35 592 119.24C592 97.6 571.91 80.01 547.19 80.01C527.6 80.01 510.4400000000001 91.03 504.47 107.42C494.42 137.34 483.78 160 448 160H192C156.22 160 145.58 137.34 135.53 107.41C129.56 91.02 112.41 79.9999999999999 92.81 79.9999999999999C68.09 80 48 97.59 48 119.23C48 137.35 52.72 151.59 72.06 160.46C84.68 166.2700000000001 92.56 178.35 92.56 191.99S84.72 217.69 72.06 223.52C52.28 232.61 48 247.28 48 264.77C48 286.41 68.09 304 92.81 304C112.4 304 129.56 292.98 135.53 276.58C154.17 222.81 176.64 224 192 224H448C463.36 224 485.83 222.81 504.47 276.58C510.4400000000001 292.99 527.59 304 547.19 304C571.9100000000001 304 592 286.41 592 264.77C592 247.29 587.72 232.61 567.94 223.54C555.2800000000001 217.71 547.44 205.65 547.44 192.01S555.3100000000001 166.28 567.94 160.47z" />
+    <glyph glyph-name="bong"
+      unicode="&#xF55C;"
+      horiz-adv-x="448" d=" M443.31 230.63L390.62 283.32C384.37 289.57 374.24 289.57 367.99 283.32L356.68 272.01C350.43 265.76 350.43 255.63 356.68 249.38L366.06 240L326.65 200.59C315.09 211.96 302.12 221.92 288 230.1V400.26L303.9700000000001 400.28C312.79 400.29 319.9400000000001 407.44 319.9500000000001 416.26L319.9900000000001 431.98C320 440.83 312.82 448.01 303.9700000000001 448L80.03 447.74C71.21 447.73 64.06 440.58 64.05 431.76L64.01 416.03C64 407.18 71.18 400.01 80.03 400.02L96 400.04V230.11C38.67 196.9 0 135.03 0 64C0 20.19 14.8 -20.07 39.52 -52.35C45.34 -59.96 54.73 -64 64.31 -64H319.68C329.26 -64 338.65 -59.96 344.4700000000001 -52.35C369.21 -20.07 384 20.2 384 64C384 100.12 373.92 133.81 356.56 162.62L400 206.06L409.38 196.68C415.63 190.43 425.76 190.43 432.01 196.68L443.31 208C449.56 214.25 449.56 224.38 443.31 230.63zM120.06 188.57L144 202.44V400.01H240V202.44L263.94 188.57C288.75 174.2 308.06 152.84 320.5 128H63.5C75.95 152.84 95.25 174.2 120.06 188.57zM311.53 -16H72.47C56.43 7.75 48 35.23 48 64C48 69.39 48.47 74.71 49.07 80H334.92C335.5200000000001 74.71 335.99 69.39 335.99 64C336 35.23 327.57 7.75 311.5300000000001 -16z" />
+    <glyph glyph-name="book-alt"
+      unicode="&#xF5D9;"
+      horiz-adv-x="448" d=" M435.1 48.3C430.9000000000001 35.3 430.9000000000001 -3.3 435.1 -16.3C442.4000000000001 -17.6999999999999 448 -24.1999999999999 448 -31.9999999999999V-47.9999999999999C448 -56.7999999999999 440.8 -63.9999999999999 432 -63.9999999999999H80C35.8 -63.9999999999999 0 -28.1999999999999 0 16.0000000000001V368C0 412.2 35.8 448 80 448H432C440.8 448 448 440.8 448 432V64C448 56.2 442.5 49.8 435.1 48.3zM394 48H80C62.4 48 48 33.6 48 16C48 -1.7 62.3 -16 80 -16H394C391.3 1.3 391.3 30.7 394 48zM400 400H80C62.3 400 48 385.7 48 368V89.3C57.8 93.6 68.6 96 80 96H400V400z" />
+    <glyph glyph-name="book-dead"
+      unicode="&#xF6B7;"
+      horiz-adv-x="448" d=" M128.3 150.36L132.61 134.12C133.8 129.64 138.13 127.05 142.28 128.33L240 158.44L337.71 128.33C341.86 127.05 346.19 129.64 347.38 134.12L351.69 150.36C352.88 154.84 350.48 159.5200000000001 346.32 160.8L296.99 176L346.32 191.2C350.48 192.48 352.88 197.15 351.69 201.64L347.38 217.88C346.19 222.36 341.86 224.95 337.71 223.67L240 193.56L142.29 223.67C138.14 224.95 133.81 222.36 132.62 217.88L128.31 201.64C127.12 197.16 129.5200000000001 192.48 133.68 191.2L183.0100000000001 176L133.6800000000001 160.8C129.5200000000001 159.5200000000001 127.1100000000001 154.85 128.3000000000001 150.36zM192 253.09V240C192 231.16 199.16 224 208 224H272C280.84 224 288 231.16 288 240V253.09C307.32 264.77 320 283.13 320 304C320 339.35 284.18 368 240 368S160 339.35 160 304C160 283.13 172.68 264.77 192 253.09zM272 320C280.84 320 288 312.8400000000001 288 304S280.84 288 272 288S256 295.16 256 304S263.1600000000001 320 272 320zM208 320C216.84 320 224 312.8400000000001 224 304S216.84 288 208 288S192 295.16 192 304S199.16 320 208 320zM448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96z" />
+    <glyph glyph-name="book-heart"
+      unicode="&#xF499;"
+      horiz-adv-x="448" d=" M448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96zM215.5 163.5C220.2 158.9 227.8 158.9 232.5 163.5L305.1 234.8C326.2000000000001 255.5 324.9000000000001 289.9 301.4000000000001 309S247.1 319.6 231.4000000000001 304.2L224 296.9L216.6 304.2C201.3 319.3 170.4 328.3 146.6 309C123 289.9 121.8 255.5 142.9 234.8L215.5 163.5z" />
+    <glyph glyph-name="book-open"
+      unicode="&#xF518;"
+      horiz-adv-x="640" d=" M561.91 448C549.44 448 406.51 441.51 320 391.11C233.49 441.51 90.56 448 78.09 448C35.03 448 0 413.66 0 371.45V57.73C0 16.9999999999999 32.47 -16.57 73.92 -18.6800000000001C110.7 -20.5900000000001 202.73 -28.1800000000001 261.65 -57.3700000000001C269.84 -61.4200000000001 278.9 -63.6600000000001 287.99 -63.95V-64H352.01V-63.95C361.0999999999999 -63.66 370.1599999999999 -61.42 378.3499999999999 -57.37C437.2699999999999 -28.18 529.3 -20.59 566.0799999999999 -18.68C607.53 -16.57 640 17 640 57.73V371.45C640 413.66 604.97 448 561.91 448zM296 9.85C296 -1.24 285.04 -9.06 274.67 -5.11C210.14 19.4300000000001 120.71 26.96 76.36 29.27C60.46 30.0700000000001 48 42.5700000000001 48 57.73V371.45C48 387.19 61.5 400 78.06 400C97.99 399.9 204.61 392.19 276.5900000000001 359.51C288.2200000000001 354.23 295.86 342.85 295.87 330.07L296 224V9.85zM592 57.73C592 42.57 579.54 30.07 563.64 29.26C519.29 26.96 429.86 19.43 365.33 -5.12C354.96 -9.06 344 -1.25 344 9.84V224L344.14 330.08C344.16 342.86 351.79 354.23 363.42 359.52C435.4 392.19 542.02 399.9 561.94 400C578.5 400 592 387.19 592 371.45V57.73z" />
+    <glyph glyph-name="book-reader"
+      unicode="&#xF5DA;"
+      horiz-adv-x="512" d=" M459.91 255.98C459.21 255.98 458.52 255.96 457.85 255.93C408.05 253.09 317.3400000000001 242.93 256.01 208.36C194.68 242.93 103.96 253.09 54.17 255.93C53.5 255.97 52.81 255.98 52.11 255.98C31.71 255.99 0 241.64 0 205.78V27.73C0 1.04 21.25 -20.97 48.34 -22.39C82.75 -24.2 168.9 -31.47 225.34 -59.86C230.81 -62.63 236.68 -64 242.53 -64H269.4700000000001C275.31 -64 281.1900000000001 -62.63 286.6600000000001 -59.86C343.1 -31.47 429.25 -24.21 463.66 -22.39C490.75 -20.97 512 1.05 512 27.73V205.78C512 241.64 480.29 255.98 459.91 255.98zM232 -10.43C171.37 15.37 93.83 23.28 50.86 25.54C49.15 25.6299999999999 48 26.7499999999999 48 27.73L47.54 206.18C48.3 206.94 50.83 207.92 51.42 208.02C87.28 205.98 176.51 197.84 232.0000000000001 166.7599999999999V-10.4300000000001zM464 27.73C464 26.75 462.85 25.63 461.13 25.54C418.19 23.28 340.7 15.38 280 -10.44V166.76C335.32 197.74 424.17 205.92 459.93 207.98C461.33 207.85 463.71 206.89 464 205.78V27.73zM256 256.01C309.02 256.01 352 298.99 352 352S309.02 448 256 448S160 405.02 160 352.01S202.98 256.01 256 256.01zM256 400C282.4700000000001 400 304 378.4700000000001 304 352S282.4700000000001 304 256 304S208 325.53 208 352S229.53 400 256 400z" />
+    <glyph glyph-name="book-spells"
+      unicode="&#xF6B8;"
+      horiz-adv-x="448" d=" M448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96zM245.34 181.33L272 128L298.6600000000001 181.33L352 208L298.66 234.67L272 288L245.34 234.67L192 208L245.34 181.33zM160 248L178.66 285.33L216 304L178.66 322.67L160 360L141.33 322.67L104 304L141.33 285.33L160 248z" />
+    <glyph glyph-name="book"
+      unicode="&#xF02D;"
+      horiz-adv-x="448" d=" M128 296V328C128 332.4 131.6 336 136 336H344C348.4 336 352 332.4 352 328V296C352 291.6 348.4 288 344 288H136C131.6 288 128 291.6 128 296zM136 208H344C348.4 208 352 211.6 352 216V248C352 252.4 348.4 256 344 256H136C131.6 256 128 252.4 128 248V216C128 211.6 131.6 208 136 208zM435.1 48.3C430.9000000000001 35.3 430.9000000000001 -3.3 435.1 -16.3C442.4000000000001 -17.6999999999999 448 -24.1999999999999 448 -31.9999999999999V-47.9999999999999C448 -56.7999999999999 440.8 -63.9999999999999 432 -63.9999999999999H80C35.8 -63.9999999999999 0 -28.1999999999999 0 16.0000000000001V368C0 412.2 35.8 448 80 448H432C440.8 448 448 440.8 448 432V64C448 56.2 442.5 49.8 435.1 48.3zM394 48H80C62.4 48 48 33.6 48 16C48 -1.7 62.3 -16 80 -16H394C391.3 1.3 391.3 30.7 394 48zM400 400H80C62.3 400 48 385.7 48 368V89.3C57.8 93.6 68.6 96 80 96H400V400z" />
+    <glyph glyph-name="bookmark"
+      unicode="&#xF02E;"
+      horiz-adv-x="384" d=" M336 448H48C21.49 448 0 426.51 0 400V-64L192 48L384 -64V400C384 426.51 362.51 448 336 448zM336 19.57L192 103.57L48 19.57V394A6 6 0 0 0 54 400H330C333.314 400 336 397.317 336 394.004V19.57z" />
+    <glyph glyph-name="books"
+      unicode="&#xF5DB;"
+      horiz-adv-x="576" d=" M575.46 -6.59L458.55 436.14C456.27 444.64 447.45 449.73 438.95 447.45L423.5 443.32C415.96 441.3 411.13 434.21 411.67 426.79C400.2 419.37 347.4500000000001 405.24 333.8200000000001 405.93C330.5800000000001 412.62 322.85 416.35 315.3200000000001 414.33L304 411.3V416C304 433.67 289.67 448 264 448H24C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 24 -64H264C289.67 -64 304 -49.67 304 -32V332.06L405.45 -52.14C407.73 -60.64 416.55 -65.73 425.05 -63.45L440.51 -59.31C448.05 -57.29 452.88 -50.2 452.34 -42.79C463.81 -35.37 516.55 -21.24 530.1899999999999 -21.93C533.43 -28.62 541.16 -32.35 548.6899999999999 -30.33L564.15 -26.19C572.64 -23.91 577.73 -15.09 575.4599999999999 -6.59zM128 -16H48V32H128V-16zM128 80H48V304H128V80zM128 352H48V400H128V352zM256 -16H176V32H256V-16zM256 80H176V304H256V80zM256 352H176V400H256V352zM441.98 -3.01L344.74 366.31C361.5 368.11 405.48 379.7 422.02 387.02L519.26 17.7C502.5 15.89 458.52 4.3 441.98 -3.01z" />
+    <glyph glyph-name="boot"
+      unicode="&#xF782;"
+      horiz-adv-x="512" d=" M415 184.2L352 200V304C369.7 304 384 318.3 384 336V416C384 433.7 369.7 448 352 448H32C14.3 448 0 433.7 0 416V-18.7C0 -27.2 3.4 -35.3 9.4 -41.3L32 -64H96L128 -32L160 -64H224L256 -32L288 -64H352L384 -32L416 -64H480L502.6 -41.4C508.6 -35.4 512 -27.3 512 -18.8V60C512 118.8 472 170 415 184.2zM48 400H336V352H48V400zM464 32H48V304H304V256H232C227.6 256 224 252.4 224 248V232C224 227.6 227.6 224 232 224H304V192H232C227.6 192 224 188.4 224 184V168C224 163.6 227.6 160 232 160H314.1L403.4000000000001 137.7C439.1 128.8 464.0000000000001 96.9 464.0000000000001 60.1V32z" />
+    <glyph glyph-name="booth-curtain"
+      unicode="&#xF734;"
+      horiz-adv-x="512" d=" M0 416V-48C0 -56.8 7.2 -64 16 -64H32C40.8 -64 48 -56.8 48 -48V400H104V72C104 32.3 136.3 0 176 0C192.3 0 207.7 5.5 220 15C244.7 -4.1 283.3 -4.1 308 15C332.7 -4.1 371.3 -4.1 396 15C408.3 5.5 423.7 0 440 0C448.5 0 456.5 1.7 464 4.4V-48C464 -56.8 471.2 -64 480 -64H496C504.8 -64 512 -56.8 512 -48V424C512 437.2 501.2 448 488 448H32C14.3 448 0 433.7 0 416zM152 400H464V72C464 58.8 453.2 48 440 48C430.5 48 421.8 53.7 418 62.5C410.4 80 381.6 80 374 62.5C366.4 44.9 337.6 44.9 330 62.5C322.4 80 293.6 80 286 62.5C278.4 44.9 249.6 44.9 242 62.5C238.2 71.3 229.6 76.9 220 76.9S201.8 71.2 198 62.5C194.2 53.7 185.5 48 176 48C162.8 48 152 58.8 152 72V400z" />
+    <glyph glyph-name="bow-arrow"
+      unicode="&#xF6B9;"
+      horiz-adv-x="512" d=" M145.78 161.35L179.72 195.25L80.18 294.67C114.01 319.13 154.44 332.52 197.03 332.52C231.04 332.52 263.73 324.02 292.76 308.15L327.72 343.06C288.84 367.27 244 380.4600000000001 197.03 380.4600000000001C141.59 380.4600000000001 89.07 362.2 45.91 328.9L38.63 336.17C32.38 342.41 22.25 342.41 16 336.17L4.69 324.87C-1.56 318.63 -1.56 308.51 4.69 302.27L145.78 161.35zM493.2 447.7L364.62 422.02C352.33 419.57 347.74 404.42 356.6 395.57L391.0700000000001 361.15L140.4400000000001 110.82L90.7400000000001 127.37C88.8100000000001 128.01 78.3500000000001 131.05 69.7100000000001 122.41L6.0300000000001 58.81C-4.7699999999999 48.02 -0.4299999999999 29.64 14.0700000000001 24.82L69.7200000000001 6.29L88.2700000000001 -49.29C91.2600000000001 -58.26 99.4600000000001 -63.34 107.8400000000001 -63.34C112.9800000000001 -63.34 118.2000000000001 -61.42 122.3100000000001 -57.32L185.9800000000001 6.27A20.51 20.51 0 0 1 190.9500000000001 27.28L174.3800000000001 76.92L425 327.25L459.46 292.83C468.38 283.92 483.5 288.63 485.94 300.84L511.66 429.27C514.02 441 503.46 449.74 493.2 447.7zM116.27 -6.85L101.34 37.87L56.56 52.78L89.48 85.66L134.26 70.75L149.19 26.03L116.27 -6.85zM455.64 353.14L417 391.74L465.3 401.39L455.64 353.14zM407.07 264.14L372.11 229.23C388.3 200.02 397.01 167.09 397.01 132.78C397.01 90.25 383.59 49.88 359.1 16.09L258.9 116.17L224.96 82.27L366.71 -59.3099999999999C372.96 -65.5499999999999 383.09 -65.5499999999999 389.33 -59.3099999999999L400.64 -48.0099999999999C406.89 -41.7699999999999 406.89 -31.6499999999999 400.64 -25.4099999999999L393.36 -18.1399999999999C426.7100000000001 24.9600000000001 445 77.4100000000001 445 132.7800000000001C445.01 180.0100000000001 431.64 225.1100000000001 407.07 264.1400000000001z" />
+    <glyph glyph-name="bowling-ball"
+      unicode="&#xF436;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM152 288C134.3 288 120 273.7 120 256S134.3 224 152 224S184 238.3 184 256S169.7 288 152 288zM264 320C264 337.7 249.7 352 232 352S200 337.7 200 320S214.3 288 232 288S264 302.3 264 320zM248 256C230.3 256 216 241.7 216 224S230.3 192 248 192S280 206.3 280 224S265.7 256 248 256z" />
+    <glyph glyph-name="bowling-pins"
+      unicode="&#xF437;"
+      horiz-adv-x="496" d=" M491 139.8C477.6 193.8 441.6 227.2 437.2 271.8C434.2 302.3 458.6 324.9 456 367.6C453.1 414 419.5 447.9 376 448C332.6 447.9 299 414 296.1 367.5C293.3 324.8 317.8 302.2 314.8 271.7C310.4000000000001 227.2 274.3 193.6 261.1 139.8C248.1 87.3 261.4000000000001 -0.3000000000001 290.2000000000001 -51.7L297.1 -64H455.2L462.1 -51.7C490.7 -0.3 504 87.4 491 139.8zM408.1 364.5C409.6 340.3 393.2000000000001 321.1 389.7000000000001 287.9H362.3000000000001C358.8000000000001 321.3 342.4000000000001 340.1 343.9000000000001 364.5C346.9000000000001 412 405.1000000000001 412 408.1000000000001 364.5zM426.2000000000001 -15.9H325.9C307.1 26.3 298.5 91.1 307.7 128.3C318.4 171.4 351.2 203.3 360.6 256H391.6C401 203.3 433.8 171.4 444.5 128.3C453.6 91.1 444.8999999999999 26.3 426.2 -15.9zM181.2000000000001 271.7000000000001C178.2000000000001 302.2000000000001 202.6000000000001 324.8000000000001 199.9 367.5000000000001C197 414 163.4 447.8 119.9 447.9C76.5 447.8 42.9 414 40 367.5C37.3 324.7 61.8 302.3 58.7 271.7C54.3 227 18.4 193.8 5 139.8C-8 87.3 5.3 -0.4 34 -51.7L40.9 -64H199L205.9 -51.7C234.6 -0.4 247.9 87.3 234.9 139.8C221.6 193.8 185.6 227 181.2 271.7000000000001zM152 364.5C153.5 340.2 137.1 321.3 133.6 288H106.2C102.7 321.5 86.3 340 87.8 364.5C90.9 411.9 149.1 411.9 152 364.5zM170.1 -16H69.8C51 26.3 42.4 91.1 51.6 128.3C62.2 171.3 95 203.1 104.5 256H135.4C144.9 203 177.7 171.3 188.3 128.2C197.5 91 188.9 26.3 170.1 -16z" />
+    <glyph glyph-name="box-alt"
+      unicode="&#xF49A;"
+      horiz-adv-x="448" d=" M447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM350.8 368L393.6 288H278.4L254.4 368H350.8zM97.2 368H193.6L169.6 288H54.4L97.2 368zM48 16C48 58.3 48.1 173.9 48.1 240H160V176C160 167.2 167.2 160 176 160H272C280.8 160 288 167.2 288 176V240H399.9C399.9 173.9 399.9 58.2 400 16H48z" />
+    <glyph glyph-name="box-ballot"
+      unicode="&#xF735;"
+      horiz-adv-x="576" d=" M573.8 165.5L520 299.7C515.2 312 503.4 320 490.2 320H448V416C448 433.7 433.7 448 416 448H160C142.3 448 128 433.7 128 416V320H85.8C72.6 320 60.8 311.9 56 299.7L2.2 165.6C0.8 161.9 0 158 0 154L0.2 -31.9C0.1 -49.6 14.5 -64.1 32.2 -64.1H543.8000000000001C561.5000000000001 -64.1 575.9000000000001 -49.7 575.8000000000001 -31.9L576 154C576 158 575.2 161.9 573.8 165.5zM176 400H400V256H176V400zM96.7 272H128V208H448V272H479.3L520 168H55.9L96.7 272zM48.3 -16L49 120H527L527.8 -16H48.3z" />
+    <glyph glyph-name="box-check"
+      unicode="&#xF467;"
+      horiz-adv-x="640" d=" M492.5 314.6L458.9 415.2C452.4 434.8 434.1 448 413.4 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C0.9 258.5 0 253.4 0 248.2V-16C0 -42.5 21.5 -64 48 -64H448C554 -64 640 22 640 128C640 218.7 577 294.5 492.5 314.6zM280 400H413.4L440.2 319.6C390.4 317.6 345.5 296.9 312.5 264H280V400zM98.6 400H232V264H53.3L98.6 400zM48 -16V216H277.5C263.9 189.6 256 159.7 256 128C256 70.6 281.3 19.2 321.3 -16H48zM448 -16C368.6 -16 304 48.6 304 128S368.6 272 448 272S592 207.4 592 128S527.4 -16 448 -16zM512.6 189.7C509.5 192.8 504.5 192.8 501.4 189.7L431.5 120.4L401.2 151C398.1 154.1 393.1 154.1 390 151L371.3 132.4C368.2 129.3 368.2 124.3 371.3 121.2L425.7 66.3C428.8 63.2 433.8 63.2 436.9 66.3L531.1 159.8C534.2 162.9 534.2 167.9 531.1 171L512.6 189.7z" />
+    <glyph glyph-name="box-fragile"
+      unicode="&#xF49B;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H448C483.3 -64 512 -35.3 512 0V384C512 419.3 483.3 448 448 448zM464 0C464 -8.8 456.8 -16 448 -16H64C55.2 -16 48 -8.8 48 0V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V0zM336 352H292.1L315 315.6L251 283.6L288 224L197 292.4L261 324.4L236.4 352H176C167.2 352 160 344.8 160 336V238.4C160 193.7 190.7 156.8 232 146.1V80H208C199.2 80 192 72.8 192 64V48C192 39.2 199.2 32 208 32H304C312.8 32 320 39.2 320 48V64C320 72.8 312.8 80 304 80H280V146.1C321.3 156.8 352 193.7 352 238.4000000000001V336C352 344.8 344.8 352 336 352z" />
+    <glyph glyph-name="box-full"
+      unicode="&#xF49C;"
+      horiz-adv-x="640" d=" M638.3 208.2L586.8 311C582.8 319.1 574.6999999999999 320.5 570.0999999999999 319.9L519.3999999999999 313.4L541.5 374C545.2 384 544.7 394.9 540.2 404.6C535.7 414.3 527.7 421.6 517.6 425.3L462.1 445.6C441.4000000000001 453.2 418.4000000000001 442.4 410.8 421.7L379.9000000000001 336.8C365 400.5 308.2 448 240 448C164.7 448 103.6 390 97.2 316.4L69.8 319.9C65.2 320.5 57.2 319 53.1 311L1.7 208.2C-2.9 199 2 188 11.8 185.2L64 170.3V23C64 8.3 74 -4.5 88.2 -8L304.4 -62.1C318 -65.5 329.4 -63.6 335.4 -62.1L551.8 -8C566 -4.4 576 8.4 576 23V170.3L628.1 185.2C638 188 642.8000000000001 199 638.3000000000001 208.2zM453.2 397.7L493.7 383L465.9 306.6L417.7 300.5L453.2 397.7zM61.7 220.8L86 269.4L240.8 249.7L199.6 181.4L61.7 220.8000000000001zM296 -10.5L112 35.5V156.6L209.8 128.7000000000001C217.8 126.4 225 130.5000000000001 228.3 136.0000000000001L296 248.2V-10.5zM334.6 289.9L320 288L144.6 310.3C148 360.3 189.2 400 240 400C292.9 400 336 356.9 336 304C336 299.2 335.3 294.5 334.6 289.9zM528 35.5L344 -10.5V248.2L411.7 135.9C415 130.4 422.3 126.3 430.2 128.6L528 156.5V35.4999999999999zM440.3 181.4L399.1 249.7L554 269.4L578.3 220.8L440.3 181.4z" />
+    <glyph glyph-name="box-heart"
+      unicode="&#xF49D;"
+      horiz-adv-x="448" d=" M301.3 205C277.8 224.1 247 215.6 231.3 200.2L223.9 192.9L216.5 200.2C201.2 215.3 170.3 224.3 146.5 205C122.9 185.9 121.7 151.5 142.8 130.8L215.4 59.5C220.1 54.9 227.7 54.9 232.4 59.5L305 130.8C326.1 151.5 324.9 185.9 301.3 205zM447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM248 368H350.8L385 304H248V368zM97.2 368H200V304H63L97.2 368zM48 16C48 52.5 48.1 179.5 48.1 256H399.9000000000001C399.9000000000001 179.5 400.0000000000001 52.5 400.0000000000001 16H48z" />
+    <glyph glyph-name="box-open"
+      unicode="&#xF49E;"
+      horiz-adv-x="640" d=" M638.3 304.2L586.8 407C582.8 415 574.6999999999999 416.5 570.0999999999999 415.9L320 384L69.8 415.9C65.2 416.5 57.2 415 53.2 407L1.7 304.2C-2.9 295 2 284 11.8 281.2L64 266.3V55C64 40.3 74 27.5 88.2 24L304.4 -30.1C310.4 -31.6 321.8 -33.5 335.4 -30.1L551.8 24C566 27.6 576 40.4 576 55V266.3L628.1 281.2000000000001C638 284 642.8000000000001 295 638.3000000000001 304.2000000000001zM86 365.4L240.8 345.7L199.6 277.4L61.6 316.8L86 365.4zM112 252.6L209.8 224.7C217.8 222.4 225 226.5000000000001 228.3 232.0000000000001L296 344.2V21.5L112 67.5V252.6zM528 67.5L344 21.5V344.2L411.7 231.9C415 226.4 422.3 222.3 430.2 224.6L528 252.5V67.5zM440.3 277.4L399.1 345.7L554 365.4L578.3 316.8L440.3 277.4z" />
+    <glyph glyph-name="box-up"
+      unicode="&#xF49F;"
+      horiz-adv-x="512" d=" M400 80H112C103.2 80 96 72.8 96 64V48C96 39.2 103.2 32 112 32H400C408.8 32 416 39.2 416 48V64C416 72.8 408.8 80 400 80zM448 448H64C28.7 448 0 419.3 0 384V0C0 -35.3 28.7 -64 64 -64H448C483.3 -64 512 -35.3 512 0V384C512 419.3 483.3 448 448 448zM464 0C464 -8.8 456.8 -16 448 -16H64C55.2 -16 48 -8.8 48 0V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V0zM358.2 349C355.1 352.8 348.8 352.8 345.7 349L281.7 269C277.5 263.7 281.3 256 287.9 256H319.9V144C319.9 135.2 327.1 128 335.9 128H367.9C376.7 128 383.9 135.2 383.9 144V256H415.9C422.6 256 426.3 263.7 422.1 269L358.2 349zM128 256V144C128 135.2 135.2 128 144 128H176C184.8 128 192 135.2 192 144V256H224C230.7 256 234.4 263.7 230.2 269L166.2 349C163.1 352.8 156.8 352.8 153.7 349L89.7 269C85.5 263.7 89.3 256 95.9 256H128z" />
+    <glyph glyph-name="box-usd"
+      unicode="&#xF4A0;"
+      horiz-adv-x="448" d=" M447.9 272C447.9 282.6 445.3 293 440.3 302.3L391.2 394.2000000000001C386.8999999999999 407.2000000000001 374.7 416 360.8999999999999 416H87.1C73.3 416 61.1 407.2000000000001 56.7 394.1L7.6 302.2C2.6 292.9 0 282.5 0 271.9C0.1 211.4 0 0 0 0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0C448 0 447.9 211.4 447.9 272zM248 368H350.8L385 304H248V368zM97.2 368H200V304H63L97.2 368zM48 16C48 52.5 48.1 179.5 48.1 256H399.9000000000001C399.9000000000001 179.5 400.0000000000001 52.5 400.0000000000001 16H48zM249.3 145.7L207.1 157.1C202.9 158.2 200 161.6 200 165.4C200 170.2 204.5 174.1 210.1 174.1H236.4000000000001C240.5000000000001 174.1 244.6 173.1 248.2000000000001 171.1C251.3000000000001 169.4 255.0000000000001 169.7 257.4000000000001 172.3L269.5000000000001 185C272.6000000000001 188.3 272.1000000000001 193.5999999999999 268.4000000000001 196.1999999999999C260.1 201.8999999999999 250.3000000000001 205.0999999999999 240.1 205.6999999999999V216C240.1 220.4 236.5000000000001 224 232.1 224H216.1C211.7 224 208.1 220.4 208.1 216V205.8C185.9 204.7 168.1 187.2 168.1 165.5C168.1 147.3 180.7 131.2 198.8 126.3L241 114.9C245.2 113.8 248.1 110.4 248.1 106.6C248.1 101.8 243.6 97.9 238 97.9H211.7C207.6 97.9 203.5 98.9 199.9 100.9C196.8 102.6 193.1 102.3 190.7 99.7000000000001L178.6 87C175.5 83.7 176 78.4 179.7 75.8C188 70.1 197.8 66.9 208 66.3V56C208 51.6 211.6 48 216 48H232C236.4 48 240 51.6 240 56V66.2C262.2 67.3 280 84.8 280 106.5C280 124.7 267.4 140.8 249.3 145.7z" />
+    <glyph glyph-name="box"
+      unicode="&#xF466;"
+      horiz-adv-x="512" d=" M509.5 263.4L458.9 415.2C452.4 434.8 434.1 448 413.4 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C0.9 258.5 0 253.4 0 248.2V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V248.2C512 253.4 511.2 258.5 509.5 263.4zM461.4 256H280V400H413.4L461.4 256zM98.6 400H232V256H50.6L98.6 400zM48 -16V208H464V-16H48z" />
+    <glyph glyph-name="boxes-alt"
+      unicode="&#xF4A1;"
+      horiz-adv-x="640" d=" M592 224H480V400C480 426.5 458.5 448 432 448H208C181.5 448 160 426.5 160 400V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V176C640 202.5 618.5 224 592 224zM208 400H288V328C288 323.6 291.6 320 296 320H344C348.4 320 352 323.6 352 328V400H432V224H208V400zM296 -16H48V176H144V104C144 99.6 147.6 96 152 96H200C204.4 96 208 99.6 208 104V176H296V-16zM592 -16H344V176H432V104C432 99.6 435.6 96 440 96H488C492.4 96 496 99.6 496 104V176H592V-16z" />
+    <glyph glyph-name="boxes"
+      unicode="&#xF468;"
+      horiz-adv-x="640" d=" M592 224H480V400C480 426.5 458.5 448 432 448H208C181.5 448 160 426.5 160 400V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V176C640 202.5 618.5 224 592 224zM208 400H272V309.3L320 330.6L368 309.3V400H432V224H208V400zM296 -16H48V176H128V85.3L176 106.6L224 85.3V176H296V-16zM592 -16H344V176H416V85.3L464 106.6L512 85.3V176H592V-16z" />
+    <glyph glyph-name="boxing-glove"
+      unicode="&#xF438;"
+      horiz-adv-x="448" d=" M252.4 87.2L259.6 72.9C261.6 68.9 260 64.1 256 62.2L227.8 48L256 33.9C260 31.9 261.6 27.1 259.6 23.2L252.4000000000001 8.9C250.4000000000001 4.9 245.6 3.3 241.7000000000001 5.3L192 30.1L142.3 5.3C138.3 3.3 133.5 4.9 131.6 8.9L124.4 23.2C122.4 27.2 124 32.0000000000001 128 33.9L156.2 48.0000000000001L128 62.1000000000001C124 64.1000000000001 122.4 68.9000000000001 124.4 72.8000000000001L131.6 87.1000000000001C133.6 91.1000000000001 138.4 92.7000000000001 142.3 90.7000000000001L192 65.9000000000001L241.7 90.7000000000001C245.6 92.7000000000001 250.4 91.1000000000001 252.4 87.2000000000001zM448 218.5C448 162.8 424.7 108.3 384.1 68.9L368 53.3V-24.6C368 -46.4 350.1 -64.1 328 -64.1H72C49.9 -64.1 32 -46.4 32 -24.6V58.2L15 160.2C5 218.5 0 278 0 337C0 398.2 50.8 448 113.2 448H288C349.8 448 400 398.2 400 337V303.8C428.8 285.7000000000001 448 254.3 448 218.5zM400 218.5C400 248 374.9 272 344 272H312.7C291.2 272 272.5 254.4 272 232.9C271.5 212.7 286.2 195.7 305.4 192.5C309.2 191.9 312 188.5 312 184.6V152.3C312 147.6 307.9 143.9 303.2 144.3C258.8 148.7 224 186.3 224 231.9C224 240.3 225.6 248.2 227.7 255.9H157.2C126.6 255.9 97.7 266.8 74.9 286.7000000000001C71.4 289.8 71.2 295.1 74.5 298.4L85.8 309.7000000000001C88.8 312.7000000000001 93.5 312.8 96.7 310.1C113.6 295.7000000000001 134.8 287.8 157.2 287.8H244.6C260.8 307.2000000000001 284.8 319.8 311.9 319.8H343.9C354.1 319.8 351.9 313.8 351.9 336.8C351.9 372.1 323.8 399.8 287.9 399.8H113.2C77.2 400 48 371.8 48 337C48 241.1 59.4 186 79.4 64H104C108.4 64 112 60.4 112 56V40C112 35.6 108.4 32 104 32H80V-16H320V32H296C291.6 32 288 35.6 288 40V56C288 60.4 291.6 64 296 64H320C320 70.2 322.5 76.1 326.9 80.4L350.7 103.5C382.5 134.2 400 175.1 400 218.5z" />
+    <glyph glyph-name="braille"
+      unicode="&#xF2A1;"
+      horiz-adv-x="640" d=" M112 192C112 165.49 90.51 144 64 144S16 165.49 16 192S37.49 240 64 240S112 218.51 112 192zM64 56C50.745 56 40 45.255 40 32S50.745 8 64 8S88 18.745 88 32S77.255 56 64 56zM64 400C37.49 400 16 378.51 16 352S37.49 304 64 304S112 325.49 112 352S90.51 400 64 400zM224 216C210.745 216 200 205.255 200 192S210.745 168 224 168S248 178.745 248 192S237.255 216 224 216zM224 56C210.745 56 200 45.255 200 32S210.745 8 224 8S248 18.745 248 32S237.255 56 224 56zM224 400C197.49 400 176 378.51 176 352S197.49 304 224 304S272 325.49 272 352S250.51 400 224 400zM448 216C434.745 216 424 205.255 424 192S434.745 168 448 168S472 178.745 472 192S461.255 216 448 216zM448 56C434.745 56 424 45.255 424 32S434.745 8 448 8S472 18.745 472 32S461.255 56 448 56zM448 400C421.49 400 400 378.51 400 352S421.49 304 448 304S496 325.49 496 352S474.51 400 448 400zM608 216C594.745 216 584 205.255 584 192S594.745 168 608 168S632 178.745 632 192S621.255 216 608 216zM608 56C594.745 56 584 45.255 584 32S594.745 8 608 8S632 18.745 632 32S621.255 56 608 56zM608 376C594.745 376 584 365.255 584 352S594.745 328 608 328S632 338.745 632 352S621.255 376 608 376z" />
+    <glyph glyph-name="brain"
+      unicode="&#xF5DC;"
+      horiz-adv-x="544" d=" M511.92 219.78A91.623 91.623 0 0 1 514.84 242.75C514.84 275.75 498.15 305.75 471.1 323.36C470.69 363.0900000000001 441.69 396.16 403.6400000000001 403.14C389.87 430.23 361.78 448 330.32 448C307.56 448 286.93 438.78 272 423.9C257.07 438.78 236.44 448 213.68 448C182.23 448 154.13 430.23 140.37 403.14C102.32 396.16 73.31 363.0900000000001 72.91 323.36C45.85 305.75 29.17 275.75 29.17 242.75C29.17 235.02 30.14 227.33 32.09 219.78C11.94 201.67 0 175.8 0 148.5C0 115.52 16.72 85.47 43.74 67.86C44.21 20.36 82.2 -18.39 129.59 -20.42C145.52 -47.08 174.46 -63.9999999999999 206.39 -63.9999999999999C232.36 -63.9999999999999 255.6 -52.8 272 -35.2099999999999C288.4 -52.8 311.64 -64 337.61 -64C369.54 -64 398.48 -47.08 414.4100000000001 -20.42C461.8 -18.39 499.79 20.36 500.26 67.86C527.28 85.47 544 115.52 544 148.5C544 175.8 532.06 201.67 511.92 219.78zM247.87 309.93C247.87 283.8400000000001 229.78 262.05 205.44 255.89C201.96 255.01 199.6 251.8 199.6 248.23V232.05C199.6 226.98 204.3 223.14 209.3 224.16C223.76 227.1 236.89 233.57 247.87 242.55V25.25C247.87 2.5 229.27 -16 206.39 -16C173.46 -16 166.92 13.45 160.76 31.62L140.49 28.26C116.48 24.31 92 43.59 92 68.74C92 71.52 96.65 96.16 96.65 96.16L78.4 103.7C41.49 118.91 37.13 169.83 72.93 190.31L92.47 201.5L82.57 221.64C65.02 257.34 93.98 281.97 107.71 287.58L126.63 295.31C121.6 317.21 121.16 318.11 121.16 322.5C121.16 341.25 136.49 356.5 153.02 356.64L175.9 355.44L180.74 374.39C184.61 389.4700000000001 198.15 400 213.68 400C232.54 400 247.87 384.75 247.87 366V309.93zM465.6 103.7L447.3400000000001 96.17S451.99 71.53 451.99 68.75C451.99 43.59 427.51 24.31 403.5 28.27L383.23 31.63C377.0800000000001 13.46 370.5300000000001 -15.99 337.6 -15.99C314.7200000000001 -15.99 296.12 2.51 296.12 25.26V242.56C307.0900000000001 233.58 320.23 227.11 334.69 224.17C339.69 223.15 344.39 226.99 344.39 232.06V248.24C344.39 251.81 342.03 255.02 338.55 255.9C314.2200000000001 262.06 296.12 283.85 296.12 309.94V366C296.12 384.75 311.45 400 330.31 400C345.83 400 359.38 389.4700000000001 363.24 374.39L368.08 355.44L390.96 356.64C407.49 356.5 422.82 341.25 422.82 322.5C422.82 318.11 422.38 317.2100000000001 417.35 295.31L436.27 287.5800000000001C450 281.98 478.96 257.35 461.41 221.64L451.51 201.5L471.05 190.31C506.87 169.83 502.51 118.91 465.6 103.7z" />
+    <glyph glyph-name="briefcase-medical"
+      unicode="&#xF469;"
+      horiz-adv-x="512" d=" M344 160H288V216C288 220.4 284.4 224 280 224H232C227.6 224 224 220.4 224 216V160H168C163.6 160 160 156.4 160 152V104C160 99.6 163.6 96 168 96H224V40C224 35.6 227.6 32 232 32H280C284.4 32 288 35.6 288 40V96H344C348.4 96 352 99.6 352 104V152C352 156.4 348.4 160 344 160zM464 320H352V368C352 394.5 330.5 416 304 416H208C181.5 416 160 394.5 160 368V320H48C21.5 320 0 298.5 0 272V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V272C512 298.5 490.5 320 464 320zM208 368H304V320H208V368zM464 -10C464 -13.3 461.3 -16 458 -16H54C50.7 -16 48 -13.3 48 -10V266C48 269.3 50.7 272 54 272H458C461.3 272 464 269.3 464 266V-10z" />
+    <glyph glyph-name="briefcase"
+      unicode="&#xF0B1;"
+      horiz-adv-x="512" d=" M464 320H384V368C384 394.51 362.51 416 336 416H176C149.49 416 128 394.51 128 368V320H48C21.49 320 0 298.51 0 272V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V272C512 298.51 490.51 320 464 320zM176 368H336V320H176V368zM54 272H458C461.31 272 464 269.31 464 266V192H48V266C48 269.31 50.69 272 54 272zM458 16H54C50.69 16 48 18.69 48 22V144H192V120C192 106.75 202.75 96 216 96H296C309.25 96 320 106.75 320 120V144H464V22C464 18.69 461.31 16 458 16z" />
+    <glyph glyph-name="broadcast-tower"
+      unicode="&#xF519;"
+      horiz-adv-x="640" d=" M168.67 256C179.67 256 187.28 266.8300000000001 183.52 277.18C178.59 290.76 175.97 305.16 175.97 320S178.59 349.24 183.52 362.82C187.29 373.17 179.68 384 168.67 384H150.94C143.93 384 137.48 379.51 135.53 372.77C130.64 355.79 128 338.12 128 320C128 301.88 130.64 284.2100000000001 135.54 267.24C137.48 260.5 143.93 256 150.94 256H168.67zM47.87 320C47.87 357.81 57.33 393.41 73.92 424.66C79.56 435.28 71.97 448 59.97 448H40.61C34.34 448 28.48 444.4100000000001 25.88 438.69C8.22 399.87 -1.31 356.5900000000001 0.15 310.88C1.39 271.99 10.93 234.94 26.68 201.15C29.3 195.52 35.09 192.01 41.29 192.01H60.16C72.18 192.01 79.76 204.75 74.1 215.38C57.43 246.61 47.87 282.16 47.87 320zM614.07 438.71C611.46 444.42 605.61 448 599.34 448H579.9100000000001C567.9300000000001 448 560.2500000000001 435.34 565.8900000000001 424.75C589.1500000000001 381.08 598.45 328.92 587.4200000000001 274.0900000000001C583.2600000000001 253.37 575.9300000000001 233.74 566.1600000000001 215.52C560.44 204.84 567.96 192 580.07 192H599.3100000000001C605.58 192 611.44 195.58 614.0400000000001 201.29C630.57 237.52 640 277.64 640 320S630.58 402.48 614.07 438.71zM489.06 384H471.33C460.32 384 452.72 373.17 456.47 362.82C461.4 349.24 464.02 334.84 464.02 320S461.4 290.76 456.47 277.18C452.71 266.8300000000001 460.32 256 471.33 256H489.06C496.07 256 502.52 260.49 504.47 267.24C509.37 284.2100000000001 512 301.88 512 320C512 338.12 509.36 355.79 504.46 372.76C502.52 379.51 496.07 384 489.06 384zM372.7 260.24C389.31 274.9 400 296.11 400 320C400 364.18 364.18 400 319.99 400C314.4700000000001 400 309.07 399.44 303.87 398.38A79.525 79.525 0 0 1 275.26 386.3400000000001C253.98 371.9600000000001 239.99 347.62 239.99 320C239.99 296.14 250.82 275.14 267.39 260.48L143.98 -35.68C140.58 -43.84 144.44 -53.2 152.6 -56.6L167.38 -62.76C175.54 -66.1600000000001 184.91 -62.3000000000001 188.31 -54.14L245.26 80H394.73L451.69 -54.15C455.09 -62.31 464.46 -66.17 472.62 -62.77L487.4 -56.61C495.56 -53.21 499.41 -43.84 496.02 -35.6899999999999L372.7 260.24zM320 352C337.65 352 352 337.64 352 320S337.64 288 320 288S288 302.36 288 320S302.35 352 320 352zM265.65 128L313.49 240.66C315.68 240.48 317.77 240 320 240C322.23 240 324.33 240.48 326.52 240.66L374.35 128H265.6500000000001z" />
+    <glyph glyph-name="broom"
+      unicode="&#xF51A;"
+      horiz-adv-x="640" d=" M636.52 416.98L616.6 441.98C611.1 448.88 601.03 450.03 594.11 444.54L363.38 266.62L328.66 310.18C323.84 316.23 314.63 316.2000000000001 309.85 310.12L252.24 236.94C221.15 236.2 148.2599999999999 230.29 100.37 192.28C38.28 143.01 0 -63.31 0 -63.31C15.1 -63.97 212.37 -70.66 272.15 -23.21C319.86 14.66 342.15 84.18 349.94 114.42L434.28 153.94C441.3 157.23 443.41 166.22 438.57 172.29L403.23 216.63L633.96 394.5300000000001C640.88 400.0300000000001 642.02 410.0700000000001 636.52 416.98zM242.27 14.27C225.63 1.06 167.98 -14.24 59.47 -15.94C64.23 3.16 69.57 22.24 75.27 40.41L120.56 76.36C125.52 80.3 121.79 88.24 115.59 86.93L89.53 81.43C102.96 116.71 117.26 144.48 130.25 154.79C157.29 176.25 201.57 185.8300000000001 239.99 188.3200000000001L299.8 113.2900000000001C290.36 82.3500000000001 271.6600000000001 37.6000000000001 242.27 14.2700000000001zM330.3300000000001 158.15L290.5500000000001 208.06L314.7700000000001 238.83C317.1600000000001 241.87 321.7700000000001 241.88 324.1800000000001 238.86L367.9500000000001 183.95C370.3700000000001 180.92 369.3200000000001 176.42 365.8000000000002 174.78L330.3300000000002 158.15z" />
+    <glyph glyph-name="browser"
+      unicode="&#xF37E;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM48 356C48 362.6 53.4 368 60 368H100C106.6 368 112 362.6 112 356V332C112 325.4 106.6 320 100 320H60C53.4 320 48 325.4 48 332V356zM464 22C464 18.7 461.3 16 458 16H54C50.7 16 48 18.7 48 22V280H464V22zM464 332C464 325.4 458.6 320 452 320H172C165.4 320 160 325.4 160 332V356C160 362.6 165.4 368 172 368H452C458.6 368 464 362.6 464 356V332z" />
+    <glyph glyph-name="brush"
+      unicode="&#xF55D;"
+      horiz-adv-x="384" d=" M352 448H32C14.33 448 0 433.67 0 416V128C0 92.65 28.65 64 64 64H112V16C112 -28.18 147.82 -64 192 -64S272 -28.18 272 16V64H320C355.35 64 384 92.65 384 128V416C384 433.67 369.67 448 352 448zM336 400V224H48V400H336zM320 112H224V16C224 -1.64 209.64 -16 192 -16S160 -1.64 160 16V112H64C55.18 112 48 119.18 48 128V176H336V128C336 119.18 328.82 112 320 112z" />
+    <glyph glyph-name="bug"
+      unicode="&#xF188;"
+      horiz-adv-x="576" d=" M536 184H472V278.059L512.971 319.03C522.343 328.403 522.343 343.599 512.971 352.971C503.598 362.343 488.403 362.343 479.03 352.971L438.0590000000001 312H425C425 387.13 364.091 448 289 448C213.87 448 153 387.091 153 312H137.941L96.971 352.971C87.598 362.343 72.403 362.343 63.03 352.971C53.657 343.598 53.657 328.402 63.03 319.03L104 278.059V184H40C26.745 184 16 173.255 16 160S26.745 136 40 136H104V112C104 82.725 111.91 55.267 125.694 31.635L71.029 -23.03C61.656 -32.403 61.656 -47.598 71.029 -56.971C80.4 -66.343 95.597 -66.344 104.97 -56.971L155.999 -5.942C184.482 -32.046 222.411 -48 264 -48H312C353.589 -48 391.5180000000001 -32.046 420.001 -5.942L471.03 -56.971C480.402 -66.343 495.598 -66.344 504.971 -56.971C514.343 -47.598 514.343 -32.403 504.971 -23.03L450.306 31.6350000000001C464.09 55.266 472 82.725 472 112V136H536C549.255 136 560 146.745 560 160S549.255 184 536 184zM289 400C337.601 400 377 360.601 377 312H201C201 360.601 240.399 400 289 400zM312 0V188C312 194.627 306.627 200 300 200H276C269.373 200 264 194.627 264 188V0C202.243 0 152 50.243 152 112V264H424V112C424 50.243 373.757 0 312 0z" />
+    <glyph glyph-name="building"
+      unicode="&#xF1AD;"
+      horiz-adv-x="448" d=" M128 300V340C128 346.6 133.4 352 140 352H180C186.6 352 192 346.6 192 340V300C192 293.4 186.6 288 180 288H140C133.4 288 128 293.4 128 300zM268 288H308C314.6 288 320 293.4 320 300V340C320 346.6 314.6 352 308 352H268C261.4 352 256 346.6 256 340V300C256 293.4 261.4 288 268 288zM140 192H180C186.6 192 192 197.4 192 204V244C192 250.6 186.6 256 180 256H140C133.4 256 128 250.6 128 244V204C128 197.4 133.4 192 140 192zM268 192H308C314.6 192 320 197.4 320 204V244C320 250.6 314.6 256 308 256H268C261.4 256 256 250.6 256 244V204C256 197.4 261.4 192 268 192zM192 108V148C192 154.6 186.6 160 180 160H140C133.4 160 128 154.6 128 148V108C128 101.4 133.4 96 140 96H180C186.6 96 192 101.4 192 108zM268 96H308C314.6 96 320 101.4 320 108V148C320 154.6 314.6 160 308 160H268C261.4 160 256 154.6 256 148V108C256 101.4 261.4 96 268 96zM448 -28V-64H0V-28C0 -21.4 5.4 -16 12 -16H31.5V424C31.5 437.3 42.2 448 55.5 448H392.5C405.8 448 416.5 437.3 416.5 424V-16H436C442.6 -16 448 -21.4 448 -28zM79.5 -15H192V52C192 58.6 197.4 64 204 64H244C250.6 64 256 58.6 256 52V-15H368.5V399L80 400L79.5 -15z" />
+    <glyph glyph-name="bullhorn"
+      unicode="&#xF0A1;"
+      horiz-adv-x="576" d=" M544 263.12V415.99C544 424.74 537.02 448 512.01 448H512C504.88 448 497.81 445.62 492.02 440.98L406.99 372.95C364.28 338.81 310.6600000000001 320 256 320H64C28.65 320 0 291.35 0 256V160C0 124.65 28.65 96 64 96L63.52 64C63.52 24.23 72.78 -13.35 89.08 -46.94C94.27 -57.63 105.6 -64 117.48 -64H223.76C249.81 -64 265.45 -34.16 249.66 -13.44C233.26 8.08 223.51 34.92 223.51 64C223.51 75.11 225.13 85.79 227.92 96H256C310.66 96 364.28 77.19 406.98 43.05L492.01 -24.98A32.023 32.023 0 0 1 511.99 -32C536.91 -32 543.99 -9.22 543.99 0V152.87C563.04 163.96 575.99 184.36 575.99 207.99C576 231.63 563.05 252.03 544 263.12zM127.73 -16C116.97 9.45 111.52 36.31 111.52 64C111.52 78.22 113.24 89.34 114.12 96H179.03C176.94 85.3 175.51 74.59 175.51 64C175.51 35.78 182.09 8.6 194.72 -16H127.73zM240 144H64C55.18 144 48 151.18 48 160V256C48 264.82 55.18 272 64 272H240V144zM496 33.3L436.96 80.54C394.16 114.76 342.17 135.91 288 141.99V274.01C342.17 280.0900000000001 394.16 301.24 436.9700000000001 335.4700000000001L496 382.7V33.3z" />
+    <glyph glyph-name="bullseye-arrow"
+      unicode="&#xF648;"
+      horiz-adv-x="496" d=" M305.05 349.26L321.62 299.56L231.03 208.97C221.65 199.59 221.65 184.41 231.03 175.03C240.4 165.66 255.59 165.65 264.9700000000001 175.03L355.5600000000001 265.62L405.2600000000001 249.05C412.6500000000001 246.59 420.79 248.51 426.3000000000001 254.01L489.9700000000001 317.68C500.7700000000001 328.48 496.4300000000001 346.88 481.9300000000001 351.7200000000001L426.2700000000001 370.27L407.7200000000001 425.92C402.8900000000001 440.42 384.4900000000001 444.76 373.6800000000001 433.96L310.02 370.3A20.582 20.582 0 0 1 305.05 349.26zM248 296C255.66 296 263.08 295.04 270.27 293.4600000000001L285.01 308.2000000000001L274.69 339.1500000000001C274.45 339.88 274.49 340.62 274.28 341.36C265.71 342.86 257 344.01 247.99 344.01C163.97 344.01 95.99 276.01 95.99 192.01C95.99 107.99 163.99 40.01 247.99 40.01C332.01 40.01 399.99 108.01 399.99 192.01C399.99 201.04 398.8400000000001 209.76 397.3400000000001 218.35C396.62 218.56 395.85 218.47 395.1400000000001 218.71L364.2000000000001 229.02L349.4600000000001 214.28C351.04 207.09 351.99 199.67 351.99 192.01C351.99 134.66 305.3400000000001 88.01 247.99 88.01S143.99 134.66 143.99 192.01S190.65 296 248 296zM484.43 266.9L448.93 231.4C447.5900000000001 230.06 446.06 229.02 444.61 227.85C446.73 216.2 448 204.26 448 192.01C448 81.73 358.28 -7.99 248 -7.99S48 81.73 48 192.01S137.72 392.01 248 392.01C260.34 392.01 272.37 390.73 284.1 388.58C285.2600000000001 390 286.0800000000001 391.62 287.4000000000001 392.94L322.9000000000001 428.44A248.15500000000003 248.15500000000003 0 0 1 248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192C496 218.11 491.91 243.26 484.43 266.9z" />
+    <glyph glyph-name="bullseye-pointer"
+      unicode="&#xF649;"
+      horiz-adv-x="496" d=" M242.16 207.33L27.98 146.45C12.81 142.14 11.03 121.35 25.25 114.53L93.72 81.64L4.55 -7.53C-1.52 -13.59 -1.52 -23.43 4.55 -29.49L26.51 -51.45C32.58 -57.51 42.41 -57.51 48.47 -51.45L137.64 37.72L170.53 -30.75C177.36 -44.97 198.14 -43.19 202.45 -28.02L263.32 186.16C267 199.07 255.07 210.99 242.16 207.3300000000001zM269.52 90.3L255.44 40.75C335.92 44.7 400 110.54 400 192C400 276.02 332 344 248 344C166.53 344 100.7 279.9 96.75 199.43L146.3 213.51C156.25 260.56 198.04 296 248 296C305.35 296 352 249.35 352 192C352 142.04 316.56 100.25 269.52 90.3zM248 440C111.03 440 0 328.9700000000001 0 192C0 184.7 0.47 177.51 1.09 170.37C4.55 172.34 8.09 174.24 12.08 175.37L48.32 185.67C48.25 187.79 48 189.86 48 192C48 302.2800000000001 137.72 392 248 392S448 302.2800000000001 448 192S358.28 -8 248 -8C245.86 -8 243.79 -7.75 241.67 -7.68L231.37 -43.92C230.23 -47.94 228.22 -51.42 226.23 -54.9C233.42 -55.53 240.65 -56.0000000000001 248 -56.0000000000001C384.9700000000001 -56.0000000000001 496 55.03 496 192S384.9700000000001 440 248 440z" />
+    <glyph glyph-name="bullseye"
+      unicode="&#xF140;"
+      horiz-adv-x="496" d=" M248 344C163.98 344 96 276 96 192C96 107.98 164 40 248 40C332.02 40 400 108 400 192C400 276.02 332 344 248 344zM248 88C190.65 88 144 134.65 144 192S190.65 296 248 296S352 249.35 352 192S305.35 88 248 88zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8zM248 248C217.12 248 192 222.88 192 192S217.12 136 248 136S304 161.12 304 192S278.88 248 248 248z" />
+    <glyph glyph-name="burn"
+      unicode="&#xF46A;"
+      horiz-adv-x="384" d=" M192 448C86.2 354.5 0 233.6 0 149.9C0 24 79 -64 192 -64S384 24 384 149.9C384 233.9 296.7 355.5 192 448zM192 382.8C243.4 331.7 336 224.3 336 149.9C336 120.4 330.4 94.3 320.9 71.5C317.4 146.2 237.2 229.4 192 280.3C146.2 228.8 66.6 146.5 63.1 71.5C53.7 94.3 48 120.5 48 149.9C48 224.1 140.6 331.6 192 382.8zM173.9 -14.2C135.8 -6.7 110.5 24.5 110.5 66.9C110.5 87.5 124 131.5 192 208C260 131.5 273.5 87.5 273.5 66.9C273.5 24.5 248.2 -6.8 210.1 -14.2C189.2 -16.6 194.7 -16.6 173.9 -14.2z" />
+    <glyph glyph-name="bus-alt"
+      unicode="&#xF55E;"
+      horiz-adv-x="512" d=" M144 144C126.33 144 112 129.67 112 112S126.33 80 144 80S176 94.33 176 112S161.67 144 144 144zM488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H112C129.67 -64 144 -49.67 144 -32V0H368V-32C368 -49.67 382.33 -64 400 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM80 288H232V224H80V288zM432 48H80V176H432V48zM432 224H280V288H432V224zM432 336H336C336 353.67 321.67 368 304 368H208C190.33 368 176 353.67 176 336H80V362.57C94.18 376.4 156.69 400 256 400S417.82 376.4 432 362.57V336zM368 80C385.67 80 400 94.33 400 112S385.67 144 368 144S336 129.67 336 112S350.33 80 368 80z" />
+    <glyph glyph-name="bus-school"
+      unicode="&#xF5DD;"
+      horiz-adv-x="512" d=" M488 320H464V368C464 412.8 371.89 448 256 448S48 412.8 48 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H40.91C25.59 174.99 16 152.7 16 128V64C16 34.05 36.65 9.12 64.43 2.13C64.38 1.39 64 0.76 64 0V-32C64 -49.67 78.33 -64 96 -64H128C145.67 -64 160 -49.67 160 -32V0H352V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V0C448 0.76 447.62 1.39 447.57 2.13C475.35 9.12 496 34.05 496 64V128C496 152.7 486.41 174.99 471.09 192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM96 363.6C108.24 376.92 164.99 400 256 400S403.76 376.92 416 363.6V336H336C336 353.67 321.67 368 304 368H208C190.33 368 176 353.67 176 336H96V363.6zM416 288V224H272V288H416zM96 288H240V224H96V288zM448 64C448 55.18 440.82 48 432 48H80C71.18 48 64 55.18 64 64V128C64 154.47 85.53 176 112 176H400C426.4700000000001 176 448 154.47 448 128V64zM368 144C350.33 144 336 129.67 336 112S350.33 80 368 80S400 94.33 400 112S385.67 144 368 144zM144 144C126.33 144 112 129.67 112 112S126.33 80 144 80S176 94.33 176 112S161.67 144 144 144z" />
+    <glyph glyph-name="bus"
+      unicode="&#xF207;"
+      horiz-adv-x="512" d=" M368 80C385.67 80 400 94.33 400 112S385.67 144 368 144S336 129.67 336 112S350.33 80 368 80zM144 80C161.67 80 176 94.33 176 112S161.67 144 144 144S112 129.67 112 112S126.33 80 144 80zM488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H112C129.67 -64 144 -49.67 144 -32V0H368V-32C368 -49.67 382.33 -64 400 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM432 48H80V176H432V48zM432 224H80V288H432V224zM432 336H80V362.57C94.18 376.4 156.69 400 256 400S417.82 376.4 432 362.57V336z" />
+    <glyph glyph-name="business-time"
+      unicode="&#xF64A;"
+      horiz-adv-x="640" d=" M496 224C416.41 224 352 159.59 352 80S416.41 -64 496 -64S640 0.41 640 80S575.59 224 496 224zM560 73.71C560 68.3700000000001 555.63 64.0000000000001 550.29 64.0000000000001H489.72C484.38 64.0000000000001 480.01 68.3700000000001 480.01 73.71V150.28C480.01 155.62 484.38 159.99 489.72 159.99H502.29C507.6299999999999 159.99 511.9999999999999 155.62 511.9999999999999 150.28V96H550.29C555.63 96 560 91.63 560 86.29V73.71zM216 128H296C309.25 128 320 138.75 320 152V176H348.68A177.277 177.277 0 0 0 395.13 224H48V298C48 301.31 50.69 304 54 304H458C461.31 304 464 301.31 464 298V252.94C474.39 254.86 485.06 256 496 256C501.4 256 506.72 255.67 512 255.19V304C512 330.51 490.51 352 464 352H384V400C384 426.51 362.51 448 336 448H176C149.49 448 128 426.51 128 400V352H48C21.49 352 0 330.51 0 304V48C0 21.49 21.49 0 48 0H339.43A174.578 174.578 0 0 0 323.06 48H54C50.69 48 48 50.69 48 54V176H192V152C192 138.75 202.75 128 216 128zM176 400H336V352H176V400z" />
+    <glyph glyph-name="cabinet-filing"
+      unicode="&#xF64B;"
+      horiz-adv-x="512" d=" M464 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V400C512 426.51 490.51 448 464 448zM464 -16H48V168H464V-16zM464 216H48V400H464V216zM160 272H176C184.84 272 192 279.16 192 288V296H320V288C320 279.16 327.1600000000001 272 336 272H352C360.84 272 368 279.16 368 288V312C368 329.67 353.67 344 336 344H176C158.33 344 144 329.67 144 312V288C144 279.16 151.16 272 160 272zM160 40H176C184.84 40 192 47.16 192 56V64H320V56C320 47.16 327.1600000000001 40 336 40H352C360.84 40 368 47.16 368 56V80C368 97.67 353.67 112 336 112H176C158.33 112 144 97.67 144 80V56C144 47.16 151.16 40 160 40z" />
+    <glyph glyph-name="calculator-alt"
+      unicode="&#xF64C;"
+      horiz-adv-x="512" d=" M477.71 448H34.29C15.35 448 0 432.65 0 413.71V-29.72C0 -48.65 15.35 -64 34.29 -64H477.72C496.66 -64 512.01 -48.65 512.01 -29.71V413.71C512 432.65 496.65 448 477.71 448zM232 -16H48V168H232V-16zM232 216H48V400H232V216zM464 -16H280V168H464V-16zM464 216H280V400H464V216zM104 288H184C188.42 288 192 291.5800000000001 192 296V312C192 316.42 188.42 320 184 320H104C99.58 320 96 316.42 96 312V296C96 291.5800000000001 99.58 288 104 288zM328 40H408C412.42 40 416 43.58 416 48V64C416 68.42 412.42 72 408 72H328C323.58 72 320 68.42 320 64V48C320 43.58 323.58 40 328 40zM328 88H408C412.42 88 416 91.58 416 96V112C416 116.42 412.42 120 408 120H328C323.58 120 320 116.42 320 112V96C320 91.58 323.58 88 328 88zM328 288H352V264C352 259.5800000000001 355.58 256 360 256H376C380.42 256 384 259.5800000000001 384 264V288H408C412.42 288 416 291.5800000000001 416 296V312C416 316.42 412.42 320 408 320H384V344C384 348.42 380.42 352 376 352H360C355.58 352 352 348.42 352 344V320H328C323.58 320 320 316.42 320 312V296C320 291.5800000000001 323.58 288 328 288zM104.4 51.72L115.71 40.41C118.83 37.29 123.9 37.29 127.02 40.41L144 57.37L160.97 40.4C164.09 37.28 169.16 37.28 172.28 40.4L183.59 51.71C186.71 54.83 186.71 59.9 183.59 63.02L166.63 80L183.6 96.97C186.72 100.09 186.72 105.16 183.6 108.28L172.29 119.59C169.17 122.71 164.1 122.71 160.98 119.59L144 102.63L127.03 119.6C123.91 122.72 118.84 122.72 115.72 119.6L104.41 108.29C101.29 105.17 101.29 100.1 104.41 96.98L121.37 80L104.4 63.03C101.28 59.91 101.28 54.84 104.4 51.72z" />
+    <glyph glyph-name="calculator"
+      unicode="&#xF1EC;"
+      horiz-adv-x="448" d=" M400 448H48C22.4 448 0 425.6 0 400V-16C0 -41.6 22.4 -64 48 -64H400C425.6 -64 448 -41.6 448 -16V400C448 425.6 425.6 448 400 448zM400 -16H48V240H400V-16zM400 288H48V400H400V288zM108.8 128H147.2C153.6 128 160 134.4 160 140.8V179.2C160 185.6 153.6 192 147.2 192H108.8C102.4 192 96 185.6 96 179.2V140.8C96 134.4 102.4 128 108.8 128zM300.8 32H339.2C345.6 32 352 38.4 352 44.8V179.2C352 185.6 345.6 192 339.2 192H300.8C294.4000000000001 192 288 185.6 288 179.2V44.8C288 38.4 294.4 31.9999999999999 300.8 31.9999999999999zM108.8 32H147.2C153.6 32 160 38.4 160 44.8V83.2C160 89.6 153.6 96 147.2 96H108.8C102.4 96 96 89.6 96 83.2V44.8C96 38.4 102.4 32 108.8 32zM204.8 128H243.2C249.6 128 256 134.4 256 140.8V179.2C256 185.6 249.6 192 243.2 192H204.8C198.4 192 192 185.6 192 179.2V140.8C192 134.4 198.4 128 204.8 128zM204.8 32H243.2C249.6 32 256 38.4 256 44.8V83.2C256 89.6 249.6 96 243.2 96H204.8C198.4 96 192 89.6 192 83.2V44.8C192 38.4 198.4 32 204.8 32z" />
+    <glyph glyph-name="calendar-alt"
+      unicode="&#xF073;"
+      horiz-adv-x="448" d=" M400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM400 288V208H304V288H400zM176 96V176H272V96H176zM272 64V-16H176V64H272zM144 96H48V176H144V96zM176 208V288H272V208H176zM304 176H400V96H304V176zM144 288V208H48V288H144zM48 -10V64H144V-16H54C50.7 -16 48 -13.3 48 -10zM394 -16H304V64H400V-10C400 -13.3 397.3 -16 394 -16z" />
+    <glyph glyph-name="calendar-check"
+      unicode="&#xF274;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.627 346.627 448 340 448H300C293.373 448 288 442.627 288 436V384H160V436C160 442.627 154.627 448 148 448H108C101.373 448 96 442.627 96 436V384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V336C448 362.51 426.51 384 400 384zM394 -16H54A6 6 0 0 0 48 -10V288H400V-10A6 6 0 0 0 394 -16zM341.151 184.65L198.842 43.481C194.137 38.814 186.539 38.844 181.871 43.549L106.78 119.248C102.113 123.953 102.143 131.551 106.848 136.219L129.567 158.755C134.272 163.422 141.87 163.392 146.537 158.686L190.641 114.225L301.713 224.406C306.418 229.073 314.016 229.043 318.6840000000001 224.3379999999999L341.2200000000001 201.62C345.887 196.9149999999999 345.8560000000001 189.317 341.151 184.65z" />
+    <glyph glyph-name="calendar-day"
+      unicode="&#xF783;"
+      horiz-adv-x="448" d=" M112 80H208C216.8 80 224 87.2 224 96V192C224 200.8 216.8 208 208 208H112C103.2 208 96 200.8 96 192V96C96 87.2 103.2 80 112 80zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM400 -10C400 -13.3 397.3 -16 394 -16H54C50.7 -16 48 -13.3 48 -10V288H400V-10z" />
+    <glyph glyph-name="calendar-edit"
+      unicode="&#xF333;"
+      horiz-adv-x="448" d=" M243.1 213.9L289.9 167.1C291.9 165.1 291.9 161.9 289.9 159.9L175.4 45.4L127.2 40C120.8 39.3 115.3 44.7 116 51.2L121.4 99.4L235.9 213.9C237.9 215.9 241.1 215.9 243.1 213.9zM326.1 224.7L300.7000000000001 250.1C292.8000000000001 258 280.0000000000001 258 272.1 250.1L252.6 230.6C250.6 228.6 250.6 225.4000000000001 252.6 223.4L299.4000000000001 176.6C301.4000000000001 174.6 304.6 174.6 306.6 176.6L326.1 196.1C334 204 334 216.8 326.1 224.7zM448 336V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336zM400 -10V288H48V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10z" />
+    <glyph glyph-name="calendar-exclamation"
+      unicode="&#xF334;"
+      horiz-adv-x="448" d=" M188.6 235.3L195.1 131.3C195.5 125 200.7 120 207.1 120H240.9C247.2 120 252.5 124.9 252.9 131.3L259.4 235.3C259.8 242.2 254.3 248 247.4 248H200.6C193.7 248 188.2 242.2 188.6 235.3zM264 64C264 41.9 246.1 24 224 24S184 41.9 184 64S201.9 104 224 104S264 86.1 264 64zM400 384H352V436C352 442.6 346.6 448 340 448H300C293.4 448 288 442.6 288 436V384H160V436C160 442.6 154.6 448 148 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM394 -16H54C50.7 -16 48 -13.3 48 -10V288H400V-10C400 -13.3 397.3 -16 394 -16z" />
+    <glyph glyph-name="calendar-minus"
+      unicode="&#xF272;"
+      horiz-adv-x="448" d=" M124 120C117.4 120 112 125.4 112 132V156C112 162.6 117.4 168 124 168H324C330.6 168 336 162.6 336 156V132C336 125.4 330.6 120 324 120H124zM448 336V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336zM400 -10V288H48V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10z" />
+    <glyph glyph-name="calendar-plus"
+      unicode="&#xF271;"
+      horiz-adv-x="448" d=" M336 156V132C336 125.4 330.6 120 324 120H248V44C248 37.4 242.6 32 236 32H212C205.4 32 200 37.4 200 44V120H124C117.4 120 112 125.4 112 132V156C112 162.6 117.4 168 124 168H200V244C200 250.6 205.4 256 212 256H236C242.6 256 248 250.6 248 244V168H324C330.6 168 336 162.6 336 156zM448 336V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336zM400 -10V288H48V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10z" />
+    <glyph glyph-name="calendar-star"
+      unicode="&#xF736;"
+      horiz-adv-x="448" d=" M167 116.6L157.6 62C155.9 52.1 166.3 44.8 175 49.4L223.9 75.2L272.8 49.4C281.5 44.8 291.9000000000001 52.2 290.2 62L280.8 116.6L320.4000000000001 155.2000000000001C327.5000000000001 162.1 323.6 174.2000000000001 313.8 175.7000000000001L259.1 183.7000000000001L234.6 233.3000000000001C230.2 242.1000000000001 217.5 242.3000000000001 213.1 233.3000000000001L188.6 183.7000000000001L133.9 175.7000000000001C124.1 174.3000000000001 120.2 162.2000000000001 127.3000000000001 155.2000000000001L167.0000000000001 116.6zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM400 -10C400 -13.3 397.3 -16 394 -16H54C50.7 -16 48 -13.3 48 -10V288H400V-10z" />
+    <glyph glyph-name="calendar-times"
+      unicode="&#xF273;"
+      horiz-adv-x="448" d=" M311.7 73.3L294.7 56.3C290 51.6 282.4 51.6 277.7 56.3L224 110.1L170.3 56.4C165.6 51.7 158 51.7 153.3 56.4L136.3 73.4C131.6 78.1 131.6 85.7000000000001 136.3 90.4L190 144.1L136.3 197.8C131.6 202.5 131.6 210.1 136.3 214.8L153.3 231.8C158 236.5 165.6 236.5 170.3 231.8L224 178.1L277.7 231.8C282.4 236.5 290 236.5 294.7 231.8L311.7 214.8C316.4 210.1 316.4 202.5 311.7 197.8L257.9 144L311.6 90.3C316.4 85.6 316.4 78 311.7 73.3zM448 336V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336zM400 -10V288H48V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10z" />
+    <glyph glyph-name="calendar-week"
+      unicode="&#xF784;"
+      horiz-adv-x="448" d=" M112 144H336C344.8 144 352 151.2 352 160V224C352 232.8 344.8 240 336 240H112C103.2 240 96 232.8 96 224V160C96 151.2 103.2 144 112 144zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM400 -10C400 -13.3 397.3 -16 394 -16H54C50.7 -16 48 -13.3 48 -10V288H400V-10z" />
+    <glyph glyph-name="calendar"
+      unicode="&#xF133;"
+      horiz-adv-x="448" d=" M400 384H352V436C352 442.6 346.6 448 340 448H300C293.4 448 288 442.6 288 436V384H160V436C160 442.6 154.6 448 148 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V336C448 362.5 426.5 384 400 384zM394 -16H54C50.7 -16 48 -13.3 48 -10V288H400V-10C400 -13.3 397.3 -16 394 -16z" />
+    <glyph glyph-name="camera-alt"
+      unicode="&#xF332;"
+      horiz-adv-x="512" d=" M256 40C189.8 40 136 93.8 136 160S189.8 280 256 280S376 226.2 376 160S322.2 40 256 40zM256 232C216.3 232 184 199.7 184 160S216.3 88 256 88S328 120.3 328 160S295.7 232 256 232zM232 160C232 173.2 242.8 184 256 184C264.8 184 272 191.2 272 200S264.8 216 256 216C225.1 216 200 190.9 200 160C200 151.2 207.2 144 216 144S232 151.2 232 160zM342.7 305H464V17H48V305H169.3L193.3 369H318.8L342.7 305zM324.3 417H193.3C173.3 417 155.4 404.6 148.4 385.9L136 353H48C21.5 353 0 331.5 0 305V17C0 -9.5 21.5 -31 48 -31H464C490.5 -31 512 -9.5 512 17V305C512 331.5 490.5 353 464 353H376L361.7 391C355.9 406.7 341 417 324.3 417z" />
+    <glyph glyph-name="camera-retro"
+      unicode="&#xF083;"
+      horiz-adv-x="512" d=" M154 368H38C34.7 368 32 370.7 32 374V410C32 413.3 34.7 416 38 416H154C157.3 416 160 413.3 160 410V374C160 370.7 157.3 368 154 368zM512 368V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V304C0 330.5 21.5 352 48 352H184L217.6 396.8C226.7 408.9 240.9 416 256 416H464C490.5 416 512 394.5 512 368zM464 304H48V16H464V304zM464 368H256L244 352H464V368zM376 160C376 226.2 322.2 280 256 280S136 226.2 136 160S189.8 40 256 40S376 93.8 376 160zM328 160C328 120.3 295.7 88 256 88S184 120.3 184 160S216.3 232 256 232S328 199.7 328 160zM232 160C232 173.2 242.8 184 256 184C264.8 184 272 191.2 272 200S264.8 216 256 216C225.1 216 200 190.9 200 160C200 151.2 207.2 144 216 144S232 151.2 232 160z" />
+    <glyph glyph-name="camera"
+      unicode="&#xF030;"
+      horiz-adv-x="512" d=" M342.7 304H464V16H48V304H169.3L193.3 368H318.8L342.7 304zM324.3 416H193.3C173.3 416 155.4 403.6 148.4 384.9L136 352H48C21.5 352 0 330.5 0 304V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V304C512 330.5 490.5 352 464 352H376L361.7 390C355.9 405.7 341 416 324.3 416zM256 40C189.8 40 136 93.8 136 160S189.8 280 256 280S376 226.2 376 160S322.2 40 256 40zM256 232C216.3 232 184 199.7 184 160S216.3 88 256 88S328 120.3 328 160S295.7 232 256 232z" />
+    <glyph glyph-name="campfire"
+      unicode="&#xF6BA;"
+      horiz-adv-x="512" d=" M256 128C335.53 128 400 192.47 400 272C400 305.29 366.58 373.96 320 416C306.63 403.94 294.55 391.25 283.86 378.52C266.34 401.99 244.61 425.79 220 448C156.83 391.02 112 316.78 112 272C112 192.47 176.47 128 256 128zM220.26 380.13C229.39 370.11 237.84 359.92 245.4 349.8L281.66 301.24L318.51 345.13C339.82 314.7100000000001 352 282.93 352 272C352 219.07 308.94 176 256 176C203.07 176 160 219.07 160 272C160 291.32 180.77 335.38 220.26 380.13zM500.9 -17.46L335.49 34.86L500.9 87.18C509.23 89.82 513.88 98.79 511.28 107.22L506.57 122.49C503.97 130.92 495.1 135.63 486.77 132.99L256 60.01L25.24 133C16.91 135.64 8.04 130.93 5.44 122.5L0.73 107.23C-1.87 98.8 2.77 89.82 11.1 87.19L176.51 34.87L11.1 -17.46C2.77 -20.09 -1.88 -29.07 0.73 -37.5L5.44 -52.77C8.04 -61.21 16.91 -65.91 25.24 -63.27L256 9.72L486.76 -63.27C495.09 -65.9 503.96 -61.2 506.56 -52.77L511.27 -37.5C513.88 -29.06 509.24 -20.09 500.9 -17.46z" />
+    <glyph glyph-name="campground"
+      unicode="&#xF6BB;"
+      horiz-adv-x="640" d=" M624 -16H595.47L349.5700000000001 325.21L412.9000000000001 413.09C418.1200000000001 420.21 416.5800000000001 430.23 409.4600000000001 435.45L396.58 444.9C389.45 450.13 379.44 448.59 374.21 441.46L320 366.24L265.79 441.46C260.57 448.59 250.55 450.13 243.42 444.9L230.54 435.45C223.42 430.23 221.87 420.21 227.1 413.0900000000001L290.43 325.2100000000001L44.53 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM320 284.18L536.33 -16H436.36L320 144L203.64 -16H103.67L320 284.18z" />
+    <glyph glyph-name="candle-holder"
+      unicode="&#xF6BC;"
+      horiz-adv-x="448" d=" M160 256C205.93 256 238 288.61 238 335.29C238 365.28 205.41 410.18 160 448C114.38 410 82 365.16 82 335.29C82 288.61 114.07 256 160 256zM160 381.83C180.01 359.76 189.44 341.8400000000001 190 335.3C190 323.61 186.1 304.01 160 304.01S130 323.62 129.99 335.01C130.55 341.75 139.99 359.74 160 381.83zM376 80C336.3 80 304 47.7 304 8C304 -0.46 305.73 -8.46 308.42 -16H272V192C272 209.67 257.67 224 240 224H80C62.33 224 48 209.67 48 192V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H376C415.7 -64 448 -31.7 448 8S415.7 80 376 80zM224 -16H96V176H128V120C128 106.75 138.75 96 152 96S176 106.75 176 120V176H224V-16zM376 -16C362.77 -16 352 -5.23 352 8S362.77 32 376 32S400 21.23 400 8S389.23 -16 376 -16z" />
+    <glyph glyph-name="candy-cane"
+      unicode="&#xF786;"
+      horiz-adv-x="512" d=" M497.1 352.6C469.2 411.4 411.5 448 346.5 448C316.6 448 287.3 439.9 261.5 424.5L235.7 409.1C213.9 396.1 206.8 367.8 219.8 346L250.6 294.5C262.7 274.3 290.5 264.8 313.7 278.6L339.5 294C355.5 303.6 369.6 279.4 353.9 270L22.5 73C11.9 66.7 4.5 56.6 1.5 44.7S0.3 20.4 6.6 9.9L37.4 -41.6C45.7 -55.4 60.8 -64 76.9 -64C85.2 -64 93.3 -61.7 100.5 -57.5L426.2 136.1C501.9 181.4 533.1 276.5 497.1 352.6zM212.4 64.7L156 96.5L220.2 134.7L276.6 102.9L212.4 64.7zM324.2 131.2L267.8 163L327.2 198.3L383.5 166.6L324.2 131.2000000000001zM395.1 320C391.9000000000001 324.1 388.3 327.7 384.2000000000001 330.8V393.7C414.3000000000001 383.7 439.5000000000001 362.1 453.7 332C455.6 328.1 456.6 324 458.0000000000001 319.9H395.1000000000001zM336.1 399.3V342.6C320.2000000000001 339.8 316.8 336.4 291 320.6L262.1 368.9C289.7000000000001 385.4 304.7000000000001 396.5 336.1 399.3zM108.4 68.2L164.9 36.4L77.7 -15.5L48.8 32.8L108.4 68.2zM426.6 197.4L374.8 226.6C392.7 237.2 404 249.8 407.7 272H463.1C459.9999999999999 244.5 447.2 218.1 426.6 197.4z" />
+    <glyph glyph-name="candy-corn"
+      unicode="&#xF6BD;"
+      horiz-adv-x="640" d=" M480 448C314.19 446.38 315.52 408.46 322.11 375.53C352.45 223.98 416.18 32 479.91 32H480C543.77 32.18 607.53 223.9 637.89 375.53C644.48 408.46 645.81 446.38 480 448zM479.93 82.38C467.87 92.68 450.66 121.94 432.33 166.49C463.58 168.32 496.36 168.32 527.61 166.49C509.26 121.93 492.02 92.67 479.93 82.38zM591 385C587.73 368.69 584.27 353.07 580.71 337.8400000000001C516.94 345.91 443.0600000000001 345.91 379.2900000000001 337.8400000000001C375.73 353.07 372.26 368.69 369 385C368.88 385.62 368.77 386.19 368.67 386.7200000000001C378.87 391.06 407.5800000000001 399.24 480.01 399.98C552.43 399.24 581.14 391.06 591.35 386.7200000000001C591.24 386.19 591.13 385.62 591 385zM84.94 242.19C-31.16 123.79 -3.41 97.93 24.54 79.3C153.16 -6.41 333.9700000000001 -97.1 379.0300000000001 -52.04L379.0900000000001 -51.98C424.05 -6.76 333.5700000000001 173.8900000000001 247.82 302.5800000000001C229.2 330.5400000000001 203.34 358.2900000000001 84.94 242.1900000000001zM91.63 93.07C78.34 101.33 64.85 109.92 51.01 119.14C50.48 119.49 50 119.82 49.56 120.12C53.7 130.4 68.22 156.49 118.91 208.22C170.65 258.91 196.73 273.43 207.01 277.57C207.31 277.13 207.64 276.64 207.99 276.12C217.22 262.28 225.8 248.78 234.06 235.49C183.25 196.12 131.01 143.88 91.63 93.0700000000001zM317.67 76.8C336.2 32.31 344.7 -0.57 343.43 -16.4C327.62 -17.64 294.75 -9.12 250.3 9.42C271.11 32.81 294.28 55.99 317.67 76.8z" />
+    <glyph glyph-name="cannabis"
+      unicode="&#xF55F;"
+      horiz-adv-x="544" d=" M516.88 135.92C514.72 136.97 504.98 141.56 489.69 146.88C528.7 204.49 541.94 257.8 542.67 260.83C546.52 276.78 541.89 293.57 530.4 305.37C521.1899999999999 314.82 508.6 320.01 495.62 320.01C492.41 320.01 489.17 319.69 485.96 319.04C482.86 318.41 430.42 307.48 371.59 275.57C357.11 361.38 313.99 424.17 311.8 427.31C302.76 440.26 287.89 448 272 448S241.24 440.26 232.21 427.3C230.02 424.1600000000001 186.9 361.38 172.42 275.56C113.59 307.4700000000001 61.15 318.41 58.05 319.03A48.7 48.7 0 0 1 48.39 320C35.41 320 22.82 314.81 13.61 305.36C2.11 293.5700000000001 -2.52 276.7800000000001 1.33 260.8300000000001C2.06 257.8 15.31 204.49 54.31 146.88C39.02 141.56 29.28 136.97 27.12 135.92C10.54 127.87 0.01 111.15 0 92.83C-0.01 74.51 10.49 57.78 27.06 49.71C29.23 48.66 73.34 27.47 132.52 21.04A47.751 47.751 0 0 1 145.61 -17.11C154.87 -26.76 167.59 -32 180.64 -32C185.11 -32 189.61 -31.38 194.04 -30.12C197.71 -29.07 219.87 -22.35 248 -7.85V-48C248 -56.84 255.16 -64 264 -64H280C288.84 -64 296 -56.84 296 -48V-7.85C324.13 -22.35 346.29 -29.07 349.96 -30.12C354.38 -31.39 358.89 -32 363.36 -32C376.41 -32 389.13 -26.76 398.39 -17.11C408.3 -6.79 412.95 7.21 411.48 21.04C470.66 27.48 514.77 48.66 516.9399999999999 49.71C533.51 57.78 544.01 74.51 543.9999999999999 92.83C543.9899999999999 111.15 533.4599999999999 127.87 516.8799999999999 135.92zM378.2200000000001 67.2C360.92 67.2 347.0900000000001 68.06 335.8 69.53C335.58 69.42 335.4000000000001 69.38 335.18 69.26C354.95 40.45 363.36 16 363.36 16S315.36 29.73 272 64.48C228.63 29.73 180.64 16 180.64 16S189.06 40.45 208.82 69.26C208.6 69.37 208.42 69.41 208.2 69.53C196.91 68.07 183.08 67.2 165.78 67.2C100.94 67.2 48.38 92.8 48.38 92.8S89.26 112.64 143.35 117.36C142.5 118.13 141.78 118.66 140.92 119.45C69.37 184.98 48.38 272 48.38 272S143.4 252.78 214.95 187.25C215.88 186.4 216.52 185.68 217.43 184.84C216.58 195.67 216.1 207.56 216.1 220.8C216.1 319.77 272 400 272 400S327.9 319.77 327.9 220.8C327.9 207.57 327.42 195.67 326.57 184.84C327.48 185.68 328.11 186.4 329.05 187.2500000000001C400.6 252.78 495.62 272 495.62 272S474.63 184.98 403.08 119.45C402.22 118.66 401.5 118.13 400.65 117.36C454.74 112.65 495.62 92.8 495.62 92.8S443.06 67.2 378.2200000000001 67.2z" />
+    <glyph glyph-name="capsules"
+      unicode="&#xF46B;"
+      horiz-adv-x="544" d=" M529 151.2L417.5 344.2C386.8 397.6 318.6 415.8 265.3 385C244.1 372.7 228.7 354.5 219.5 333.7C206.4 381 163.5 416 112 416C50.1 416 0 365.9 0 304V80C0 18.1 50.1 -32 112 -32S224 18.1 224 80V234C224.2 233.6 224.3 233.2 224.5 232.8L336 39.8C366.8 -13.5 434.9 -31.8 488.3 -1S559.8 97.9 529 151.2zM176 192H48V304C48 388.7 176 388.7 176 304V192zM265.9 256.7C223.8 329.7 334.1 393.4 376.2 320.4L420 244.6L309.7 180.9L265.9 256.7z" />
+    <glyph glyph-name="car-alt"
+      unicode="&#xF5DE;"
+      horiz-adv-x="480" d=" M438.73 238.74L400.43 333.88C388.24 364.16 358.87 384 326.2200000000001 384H153.78C121.14 384 91.76 364.16 79.57 333.88L41.26 238.74C16.37 221.4 0 192.65 0 160.01V24C0 10.75 10.75 0 24 0H40C53.25 0 64 10.75 64 24V48H416V24C416 10.75 426.75 0 440 0H456C469.25 0 480 10.75 480 24V160C480 192.65 463.63 221.4 438.73 238.74zM124.1 315.95C129 328.13 140.65 336 153.78 336H326.2200000000001C339.35 336 351 328.13 355.9000000000001 315.95L380.0300000000001 256.01H99.97L124.1 315.95zM432 112C432 103.18 424.82 96 416 96H64C55.18 96 48 103.18 48 112V160C48 186.47 69.53 208 96 208H384C410.4700000000001 208 432 186.47 432 160V112zM112 184.01C92.8 184.01 80 171.25 80 152.1S92.8 120.19 112 120.19S160 117 160 136.1499999999999C160 155.2899999999999 131.2 184.0099999999999 112 184.0099999999999zM368 184.01C348.8 184.01 320 155.29 320 136.15C320 117 348.8 120.19 368 120.19S400 132.95 400 152.1C400 171.24 387.2 184.0100000000001 368 184.0100000000001z" />
+    <glyph glyph-name="car-battery"
+      unicode="&#xF5DF;"
+      horiz-adv-x="512" d=" M480 352H432V368C432 376.8400000000001 424.84 384 416 384H320C311.1600000000001 384 304 376.8400000000001 304 368V352.02L208 352V368C208 376.8400000000001 200.84 384 192 384H96C87.16 384 80 376.8400000000001 80 368V352H32C14.33 352 0 337.67 0 320V32C0 14.33 14.33 0 32 0H480C497.67 0 512 14.33 512 32V320C512 337.67 497.67 352 480 352zM464 48H48V304H464V48zM200 216H88C83.58 216 80 212.42 80 208V176C80 171.58 83.58 168 88 168H200C204.42 168 208 171.58 208 176V208C208 212.42 204.42 216 200 216zM424 216H392V248C392 252.42 388.42 256 384 256H352C347.58 256 344 252.42 344 248V216H312C307.58 216 304 212.42 304 208V176C304 171.58 307.58 168 312 168H344V136C344 131.58 347.58 128 352 128H384C388.42 128 392 131.58 392 136V168H424C428.42 168 432 171.58 432 176V208C432 212.42 428.42 216 424 216z" />
+    <glyph glyph-name="car-bump"
+      unicode="&#xF5E0;"
+      horiz-adv-x="576" d=" M101.98 139.88C84.29 131.86 77.99 115.07 86.21 97.92C94.43 80.77 111.71 74.68 129.39 82.7C147.08 90.72 174.98 99.9 166.76 117.05C158.54 134.21 119.67 147.91 101.98 139.88zM337.81 246.85C320.12 238.83 305.93 201.06 314.15 183.91C322.37 166.76 347.53 181.65 365.22 189.67C382.91 197.69 389.21 214.48 380.99 231.63C372.7699999999999 248.78 355.49 254.87 337.81 246.85zM116.19 -2.03L440.45 145.0500000000001L450.76 123.5400000000001C456.45 111.6600000000001 470.97 106.5300000000001 483.18 112.0600000000001L497.92 118.7500000000001C510.13 124.2900000000001 515.41 138.4100000000001 509.72 150.2800000000001L465.05 243.4700000000001L451.3 272.1400000000001C437.2800000000001 301.3900000000001 409.85 320.3000000000001 379.4700000000001 325.4400000000001L303.3200000000001 394.6800000000001C279.0800000000001 416.7200000000001 243.5000000000001 422.2200000000001 213.4300000000001 408.5800000000001L54.57 336.54C24.5 322.9 5.96 292.85 7.73 260.62L13.31 159.37C-2.17 133.43 -4.91 100.83 9.12 71.58L67.54 -50.28C73.23 -62.16 87.75 -67.3000000000001 99.96 -61.76L114.7 -55.07C126.91 -49.53 132.19 -35.41 126.5 -23.5400000000001L116.19 -2.0300000000001zM75.19 293.5300000000001L234.04 365.5800000000001C246.13 371.0700000000001 260.25 368.88 270 360.0200000000001L317.98 316.4000000000001L195.17 260.6900000000001L59.97 199.37L56.45 263.1600000000001C55.74 276.12 63.09 288.04 75.19 293.5300000000001zM95.57 40.98C87.44 37.29 77.75 40.73 73.96 48.63L53.34 91.64C41.97 115.36 52.56 143.65 76.94 154.71L342.24 275.04C366.62 286.1 395.7100000000001 275.8 407.07 252.09L427.69 209.08C431.48 201.17 427.95 191.74 419.82 188.06L95.57 40.98zM464 64C402.25 64 352 17.35 352 -40C352 -53.25 362.75 -64 376 -64S400 -53.25 400 -40C400 -9.13 428.7200000000001 16 464 16S528 -9.12 528 -40C528 -53.25 538.75 -64 552 -64S576 -53.25 576 -40C576 17.34 525.75 64 464 64z" />
+    <glyph glyph-name="car-crash"
+      unicode="&#xF5E1;"
+      horiz-adv-x="640" d=" M136.89 324.93A31.77 31.77 0 0 1 149.55 347.38L151.71 369.3300000000001L163.9 350.9700000000001A31.944000000000003 31.944000000000003 0 0 1 185.65 337.11C194.65 335.8300000000001 203.59 338.2800000000001 210.62 344L262.78 386.94C273.03 395.36 274.5 410.49 266.06 420.7200000000001C257.5899999999999 430.95 242.5 432.38 232.28 424L193.97 392.4500000000001L166.5 433.76C159.09 444.98 145.28 450.32 132.25 447.03C119.19 443.75 109.59 432.56 108.34 419.25L103.53 369.8400000000001L54.87 379.65C41.78 382.2100000000001 28.21 376.35 21.31 364.81C14.37 353.28 15.5 338.58 24.03 328.25L55.56 289.94L14.22 262.4600000000001C2.88 254.9 -2.31 241.48 1 228.26C4.28 215.04 15.19 205.64 28.78 204.29L78.19 199.51L68.38 150.85C65.76 137.87 74.16 125.21 87.16 122.5800000000001C88.78 122.2700000000001 90.38 122.11 91.94 122.11C103.13 122.11 113.13 129.97 115.44 141.38L128.78 207.65C130.53 216.45 128.47 225.62 123.16 232.82C117.82 240.02 109.63 244.66 100.66 245.55L78.72 247.67L97.03 259.84C104.53 264.79 109.59 272.73 110.94 281.62A32.06999999999999 32.06999999999999 0 0 1 104.03 306.59L90.03 323.61L111.65 319.25C120.33 317.49 129.64 319.57 136.89 324.93zM534.75 137.3300000000001C516.21 142.3000000000001 480.95 122.0200000000001 476 103.52S499.69 80.65 518.23 75.6900000000001C536.77 70.72 552.44 79.7300000000001 557.4 98.2300000000001S553.29 132.3600000000001 534.75 137.3300000000001zM617.24 171.8900000000001L604.86 273.7C600.92 306.11 577.6800000000001 332.87 546.15 341.32L379.59 385.94C348.06 394.39 314.55 382.83 294.94 356.73L233.32 274.75C204.78 264.44 181.53 240.91 173.0799999999999 209.38L137.88 78.01C134.4499999999999 65.21 142.0499999999999 52.05 154.8499999999999 48.62L170.2999999999999 44.48C183.0999999999999 41.05 196.2599999999999 48.65 199.69 61.4500000000001L205.9 84.6300000000001L545.91 -6.48L539.6999999999999 -29.66C536.27 -42.46 543.8699999999999 -55.6199999999999 556.67 -59.0499999999999L572.13 -63.1899999999999C584.93 -66.6199999999999 598.09 -59.0199999999999 601.52 -46.2199999999999L628.4399999999999 54.2400000000001L636.7199999999999 85.1500000000001C645.17 116.6900000000001 636.8 148.6900000000001 617.2399999999999 171.8900000000001zM333.31 327.9C341.2 338.4 354.49 342.98 367.17 339.5800000000001L533.73 294.9500000000001C546.41 291.55 555.63 280.9400000000001 557.21 267.9100000000001L565.01 203.7700000000001L294.48 276.2600000000001L333.31 327.9000000000001zM590.36 97.58L577.94 51.21C575.6600000000001 42.6900000000001 566.87 37.61 558.34 39.9L218.33 131C209.81 133.28 204.73 142.07 207.02 150.6L219.44 196.97C226.29 222.53 252.66 237.76 278.23 230.9100000000001L556.4200000000001 156.37C581.98 149.52 597.21 123.15 590.3600000000001 97.58zM287.4700000000001 203.59C268.93 208.56 253.26 199.54 248.3 181.05S252.4100000000001 146.92 270.95 141.95C289.5 136.98 316.49 126.45 321.44 144.94C326.4 163.43 306.02 198.62 287.4700000000001 203.59z" />
+    <glyph glyph-name="car-garage"
+      unicode="&#xF5E2;"
+      horiz-adv-x="640" d=" M631.76 279.76L331.67 444.98A24.06 24.06 0 0 1 308.32 444.98L8.24 279.76C0.5 275.46 -2.28 265.71 2.01 257.9700000000001L9.79 243.96C14.09 236.22 23.84 233.44 31.58 237.73L320 396.4700000000001L608.4100000000001 237.74C616.1500000000001 233.44 625.9000000000001 236.23 630.2 243.97L637.98 257.98C642.28 265.71 639.49 275.4700000000001 631.76 279.76zM192 120C172.8 120 160 107.24 160 88.09C160 68.95 172.8 56.18 192 56.18S240 52.99 240 72.1399999999999C240 91.2799999999999 211.2 120 192 120zM448 120C428.8 120 400 91.28 400 72.14S428.8 56.18 448 56.18S480 68.94 480 88.09S467.2 120 448 120zM506.21 181.83L480.42 245.87C468.23 276.15 438.86 295.99 406.21 295.99H233.78C201.13 295.99 171.76 276.15 159.57 245.87L133.78 181.83C102.04 166.17 80 133.8 80 96V-40C80 -53.25 90.75 -64 104 -64H120C133.25 -64 144 -53.25 144 -40V-16H496V-40C496 -53.25 506.75 -64 520 -64H536C549.25 -64 560 -53.25 560 -40V96C560 133.8 537.96 166.17 506.21 181.83zM204.1 227.94C209 240.12 220.66 247.99 233.79 247.99H406.23C419.36 247.99 431.01 240.12 435.92 227.94L450.37 192H189.63L204.1 227.94zM512 48C512 39.18 504.82 32 496 32H144C135.18 32 128 39.18 128 48V96C128 122.47 149.53 144 176 144H464C490.47 144 512 122.47 512 96V48z" />
+    <glyph glyph-name="car-mechanic"
+      unicode="&#xF5E3;"
+      horiz-adv-x="512" d=" M503.91 344H447.93L423.93 368L447.93 392H503.9C509.85 392 513.8 398.31 511.15 403.64C495.96 434.1600000000001 462.14 453.68 424.31 446.52C398.66 441.65 377.5899999999999 423.5300000000001 367.26 400H145.01C132.63 428.17 104.81 448 72.07 448C40.75 448 13.9 429.88 0.84 403.63C-1.81 398.3 2.15 392 8.09 392H64.07L88.07 368L64.07 344H8.09C2.14 344 -1.81 337.69 0.84 332.36C16.03 301.8400000000001 49.85 282.32 87.68 289.48C113.33 294.3400000000001 134.41 312.4700000000001 144.73 336H366.98C379.36 307.83 407.18 288 439.92 288C471.24 288 498.09 306.12 511.15 332.38C513.8100000000001 337.69 509.85 344 503.91 344zM434.2100000000001 181.8300000000001L408.42 245.8700000000001C396.24 276.1600000000001 366.87 296.0000000000001 334.2200000000001 296.0000000000001H161.78C129.13 296.0000000000001 99.76 276.1600000000001 87.57 245.8800000000001L61.78 181.84C30.04 166.17 8 133.8 8 96V-40C8 -53.25 18.75 -64 32 -64H48C61.25 -64 72 -53.25 72 -40V-16H424V-40C424 -53.25 434.75 -64 448 -64H464C477.25 -64 488 -53.25 488 -40V96C488 133.8 465.96 166.17 434.21 181.83zM132.1 227.95C137 240.13 148.66 248 161.79 248H334.23C347.36 248 359.01 240.13 363.92 227.95L378.3900000000001 192.01H117.63L132.1 227.95zM440 48C440 39.18 432.82 32 424 32H72C63.18 32 56 39.18 56 48V96C56 122.47 77.53 144 104 144H392C418.4700000000001 144 440 122.47 440 96V48zM120 120.01C100.8 120.01 88 107.25 88 88.1S100.8 56.1899999999999 120 56.1899999999999S168 52.9999999999999 168 72.1499999999999S139.2 120.0099999999999 120 120.0099999999999zM376 120.01C356.8 120.01 328 91.29 328 72.15S356.8 56.19 376 56.19S408 68.95 408 88.1S395.2 120.0100000000001 376 120.0100000000001z" />
+    <glyph glyph-name="car-side"
+      unicode="&#xF5E4;"
+      horiz-adv-x="640" d=" M544 256H528L419.21 391.98A63.99 63.99 0 0 1 369.24 416H155.33C129.16 416 105.63 400.07 95.91 375.77L48 256V253.74C20.44 246.6 0 221.79 0 192V80C0 71.16 7.16 64 16 64H64C64 10.98 106.98 -32 160 -32S256 10.98 256 64H384C384 10.98 426.98 -32 480 -32S576 10.98 576 64H624C632.84 64 640 71.16 640 80V160C640 213.02 597.02 256 544 256zM280 368H369.24C374.13 368 378.68 365.81 381.73 362L466.53 256H280V368zM140.47 357.94C142.92 364.05 148.75 368 155.33 368H232V256H99.7L140.47 357.94zM160 16C133.49 16 112 37.49 112 64S133.49 112 160 112S208 90.51 208 64S186.51 16 160 16zM480 16C453.49 16 432 37.49 432 64S453.49 112 480 112S528 90.51 528 64S506.51 16 480 16zM592 112H562.69C546.0600000000001 140.57 515.45 160 480.0000000000001 160S413.9500000000001 140.57 397.3100000000001 112H242.69C226.06 140.57 195.45 160 160 160S93.95 140.57 77.31 112H48V192C48 200.82 55.18 208 64 208H544C570.47 208 592 186.47 592 160V112z" />
+    <glyph glyph-name="car-tilt"
+      unicode="&#xF5E5;"
+      horiz-adv-x="640" d=" M198.33 133.95C184.85 120.47 184.82 102.52 198.27 89.08C211.71 75.64 229.6600000000001 75.66 243.14 89.14C256.62 102.62 279.0800000000001 120.6 265.64 134.04C252.19 147.49 211.81 147.43 198.33 133.95zM378.06 313.67C364.58 300.19 364.52 259.81 377.96 246.37C391.4 232.93 409.38 255.39 422.86 268.87C436.34 282.35 436.37 300.29 422.92 313.74C409.49 327.17 391.54 327.15 378.06 313.67zM624 -16H280.38L260.12 4.77L507.24 251.89L524.09 235.04C533.39 225.74 548.48 225.74 557.7900000000001 235.04L569.0200000000001 246.27C578.32 255.57 578.32 270.66 569.0200000000001 279.97L473.5400000000001 375.45C450.6200000000001 398.37 418.9500000000001 407.05 389.3000000000001 401.75L295.6200000000001 441.65C265.8 454.35 231.25 447.6600000000001 208.33 424.74L87.27 303.68C64.35 280.76 57.66 246.22 70.36 216.4L110.26 122.72C104.96 93.0700000000001 113.64 61.4 136.56 38.48L191.03 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM114.2 235.06C109.09 247.05 111.75 260.76 120.96 269.9700000000001L242.03 391.04C251.25 400.26 264.95 402.91 276.94 397.81L335.96 372.67L139.34 176.05L114.2 235.06zM203.95 38.47L170.25 72.17C151.67 90.75 151.67 120.98 170.25 139.56L372.44 341.75C391.02 360.33 421.26 360.33 439.8400000000001 341.75L473.54 308.05C479.73 301.86 479.73 291.78 473.54 285.5900000000001L226.42 38.47C220.22 32.28 210.14 32.28 203.95 38.47z" />
+    <glyph glyph-name="car-wash"
+      unicode="&#xF5E6;"
+      horiz-adv-x="480" d=" M80 320C103.56 320 122.67 339.1 122.67 362.67S80 448 80 448S37.33 386.23 37.33 362.67S56.44 320 80 320zM240 320C263.56 320 282.67 339.1 282.67 362.67S240 448 240 448S197.33 386.23 197.33 362.67S216.44 320 240 320zM400 320C423.56 320 442.67 339.1 442.67 362.67S400 448 400 448S357.33 386.23 357.33 362.67S376.44 320 400 320zM426.21 181.8300000000001L400.42 245.8700000000001C388.24 276.1600000000001 358.87 296.0000000000001 326.22 296.0000000000001H153.78C121.13 296.0000000000001 91.76 276.1600000000001 79.57 245.8800000000001L53.78 181.84C22.04 166.17 0 133.8 0 96V-40C0 -53.25 10.75 -64 24 -64H40C53.25 -64 64 -53.25 64 -40V-16H416V-40C416 -53.25 426.75 -64 440 -64H456C469.25 -64 480 -53.25 480 -40V96C480 133.8 457.96 166.17 426.21 181.83zM124.1 227.95C129 240.13 140.66 248 153.79 248H326.23C339.36 248 351.01 240.13 355.92 227.95L370.3900000000001 192.01H109.63L124.1 227.95zM432 48C432 39.18 424.82 32 416 32H64C55.18 32 48 39.18 48 48V96C48 122.47 69.53 144 96 144H384C410.4700000000001 144 432 122.47 432 96V48zM368 120.01C348.8 120.01 320 91.29 320 72.15S348.8 56.19 368 56.19S400 68.95 400 88.1S387.2 120.0100000000001 368 120.0100000000001zM112 120.01C92.8 120.01 80 107.25 80 88.1S92.8 56.1899999999999 112 56.1899999999999S160 52.9999999999999 160 72.1499999999999S131.2 120.0099999999999 112 120.0099999999999z" />
+    <glyph glyph-name="car"
+      unicode="&#xF1B9;"
+      horiz-adv-x="512" d=" M499.99 255.99H447.7800000000001L416.42 333.87C404.24 364.16 374.86 384 342.2200000000001 384H169.78C137.14 384 107.76 364.16 95.57 333.88L64.21 256H12.01C4.2 256 -1.53 248.66 0.37 241.09L6.37 217.09A12.01 12.01 0 0 1 18.01 208H29.32C21.04 193.84 16 177.59 16 160.01V24C16 10.75 26.75 0 40 0H56C69.25 0 80 10.75 80 24V48H432V24C432 10.75 442.75 0 456 0H472C485.25 0 496 10.75 496 24V160C496 177.59 490.96 193.84 482.69 207.99H494C499.51 207.99 504.31 211.74 505.64 217.08L511.64 241.08C513.53 248.6600000000001 507.8 255.99 499.99 255.99zM140.1 315.95C145 328.13 156.65 336 169.78 336H342.2200000000001C355.35 336 367 328.13 371.9000000000001 315.95L396.0300000000001 256.01H115.97L140.1 315.95zM448 112C448 103.18 440.82 96 432 96H80C71.18 96 64 103.18 64 112V160C64 186.47 85.53 208 112 208H400C426.4700000000001 208 448 186.47 448 160V112zM128 184.01C108.8 184.01 96 171.25 96 152.1S108.8 120.19 128 120.19S176 117 176 136.1499999999999C176 155.2899999999999 147.2 184.0099999999999 128 184.0099999999999zM384 184.01C364.8 184.01 336 155.29 336 136.15C336 117 364.8 120.19 384 120.19S416 132.95 416 152.1C416 171.24 403.2 184.0100000000001 384 184.0100000000001z" />
+    <glyph glyph-name="caret-circle-down"
+      unicode="&#xF32D;"
+      horiz-adv-x="512" d=" M157.1 232H354.9C365.6 232 371 219 363.4 211.5L264.5 113.2C259.8 108.5 252.3 108.5 247.6 113.2L148.7 211.5C141 219 146.4 232 157.1 232zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM456 192C456 302.5 366.5 392 256 392S56 302.5 56 192S145.5 -8 256 -8S456 81.5 456 192z" />
+    <glyph glyph-name="caret-circle-left"
+      unicode="&#xF32E;"
+      horiz-adv-x="512" d=" M296 290.9V93.1C296 82.4 283 77 275.5 84.6L177.2 183.5C172.5 188.2 172.5 195.7 177.2 200.4L275.5 299.3C283 307 296 301.6 296 290.9zM256 -56C119 -56 8 55 8 192S119 440 256 440S504 329 504 192S393 -56 256 -56zM256 -8C366.5 -8 456 81.5 456 192S366.5 392 256 392S56 302.5 56 192S145.5 -8 256 -8z" />
+    <glyph glyph-name="caret-circle-right"
+      unicode="&#xF330;"
+      horiz-adv-x="512" d=" M216 93.1V290.9C216 301.6 229 307 236.5 299.4L334.8 200.5C339.5 195.8 339.5 188.3 334.8 183.6L236.5 84.7000000000001C229 77.0000000000001 216 82.4 216 93.1zM256 440C393 440 504 329 504 192S393 -56 256 -56S8 55 8 192S119 440 256 440zM256 392C145.5 392 56 302.5 56 192S145.5 -8 256 -8S456 81.5 456 192S366.5 392 256 392z" />
+    <glyph glyph-name="caret-circle-up"
+      unicode="&#xF331;"
+      horiz-adv-x="512" d=" M354.9 152H157.1C146.4 152 141 165 148.6 172.5L247.5 270.8C252.2 275.5 259.7 275.5 264.4 270.8L363.3 172.5C371 165 365.6 152 354.9 152zM8 192C8 329 119 440 256 440S504 329 504 192S393 -56 256 -56S8 55 8 192zM56 192C56 81.5 145.5 -8 256 -8S456 81.5 456 192S366.5 392 256 392S56 302.5 56 192z" />
+    <glyph glyph-name="caret-down"
+      unicode="&#xF0D7;"
+      horiz-adv-x="320" d=" M272 288H48.1C5.5 288 -16.1 236.3 14.2 206.1L126.1 94.1C144.8 75.4 175.2 75.4 194 94.1L306 206.1C336 236.2 314.7 288 272 288zM160 128L48 240H272L160 128z" />
+    <glyph glyph-name="caret-left"
+      unicode="&#xF0D9;"
+      horiz-adv-x="224" d=" M224 80.048V303.943C224 346.581 172.269 368.094 142.059 337.884L30.059 225.9410000000001C11.314 207.196 11.313 176.804 30.059 158.059L142.059 46.107C172.208 15.958 224 37.325 224 80.048zM64 192L176 304V80L64 192z" />
+    <glyph glyph-name="caret-right"
+      unicode="&#xF0DA;"
+      horiz-adv-x="224" d=" M0 303.952V80.057C0 37.419 51.731 15.906 81.941 46.116L193.941 158.059C212.686 176.804 212.687 207.196 193.941 225.941L81.941 337.893C51.792 368.0420000000001 0 346.675 0 303.952zM160 192L48 80V304L160 192z" />
+    <glyph glyph-name="caret-square-down"
+      unicode="&#xF150;"
+      horiz-adv-x="448" d=" M125.1 240H322.9C333.6 240 339 227 331.4 219.5L232.5 121.2C227.8 116.5 220.3 116.5 215.6 121.2L116.7 219.5C109 227 114.4 240 125.1 240zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="caret-square-left"
+      unicode="&#xF191;"
+      horiz-adv-x="448" d=" M272 290.9V93.1C272 82.4 259 77 251.5 84.6L153.2 183.5C148.5 188.2 148.5 195.7 153.2 200.4L251.5 299.3C259 307 272 301.6 272 290.9zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="caret-square-right"
+      unicode="&#xF152;"
+      horiz-adv-x="448" d=" M176 93.1V290.9C176 301.6 189 307 196.5 299.4L294.8 200.5C299.5 195.8 299.5 188.3 294.8 183.6L196.5 84.7000000000001C189 77.0000000000001 176 82.4 176 93.1zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="caret-square-up"
+      unicode="&#xF151;"
+      horiz-adv-x="448" d=" M322.9 144H125.1C114.4 144 109 157 116.6 164.5L215.5 262.8C220.2 267.5 227.7 267.5 232.4 262.8L331.3 164.5C339 157 333.6 144 322.9000000000001 144zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="caret-up"
+      unicode="&#xF0D8;"
+      horiz-adv-x="320" d=" M48.048 96H271.943C314.581 96 336.094 147.731 305.884 177.941L193.941 289.9410000000001C175.196 308.6860000000001 144.804 308.687 126.059 289.9410000000001L14.107 177.941C-16.042 147.792 5.325 96 48.048 96zM160 256L272 144H48L160 256z" />
+    <glyph glyph-name="carrot"
+      unicode="&#xF787;"
+      horiz-adv-x="512" d=" M369.8 305.8C392.5 353.3 380.8 409.6 334.4000000000001 448C289.9000000000001 411.1 277.7000000000001 358 297.0000000000001 311.9C283.0000000000001 316.8 268.7000000000001 320 254.5000000000001 320C206.5000000000001 320 160.4000000000001 293.2 137.9000000000001 247.2L2.4 -30.3C-0.6 -36.5 -0.9 -44.1 2.4 -50.8C6.5 -59.1 14.8 -63.9 23.4 -63.9C26.8 -63.9 30.3 -63.1 33.7 -61.5000000000001L311.3 74C336.3 86.2 357.7 106.6 370.9000000000001 133.6C386.6 165.7000000000001 387.8 201.2 377.0000000000001 232.5000000000001C422.9000000000001 213.8000000000001 475.4000000000001 226.2 512.1 270.4000000000001C473.5 316.8000000000001 417.3 328.5 369.8 305.8000000000001zM327.7 154.6C319.6 138.1 306.7 125.1 290.2 117.1L232.9 89.1L209 113C199.6 122.4 184.4 122.4 175.1 113S165.7 88.4 175.1 79.1L187.3 66.9L76.9 12.9L173 209.7L207 175C211.7 170.3 217.8 168 224 168S236.3 170.3 241 175C250.4 184.4 250.4 199.6 241 208.9L199.4 249.8C214.2 263.5 233.4 271.9 254.5 271.9C266.9 271.9 278.9 269.1 290.2 263.6C309.8 254 324.5 237.4 331.6 216.8C338.6 196.3 337.3 174.1 327.7 154.6z" />
+    <glyph glyph-name="cart-arrow-down"
+      unicode="&#xF218;"
+      horiz-adv-x="576" d=" M551.991 384H144.28L135.554 428.608C133.35 439.872 123.478 448 112 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H92.24L161.834 44.299C150.796 32.799 144 17.198 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64C499.3469999999999 -64 528.001 -35.346 528.001 0C528.001 18.136 520.4449999999999 34.496 508.325 46.142L509.36 50.899C512.614 65.859 501.218 80 485.908 80H203.76L194.37 128H506.775C518.0649999999999 128 527.829 135.869 530.227 146.902L575.443 354.902C578.695 369.861 567.299 384 551.991 384zM208 -24C194.766 -24 184 -13.234 184 0S194.766 24 208 24S232 13.234 232 0S221.234 -24 208 -24zM464 -24C450.766 -24 440 -13.234 440 0S450.766 24 464 24S488 13.234 488 0S477.234 -24 464 -24zM487.438 176H184.98L153.67 336H522.218L487.438 176zM395.515 235.515L344.486 184.486C339.8 179.8 332.202 179.8 327.515 184.486L276.486 235.515C268.926 243.075 274.28 256 284.971 256H312V308C312 314.627 317.373 320 324 320H348C354.627 320 360 314.627 360 308V256H387.029C397.72 256 403.074 243.074 395.515 235.515z" />
+    <glyph glyph-name="cart-plus"
+      unicode="&#xF217;"
+      horiz-adv-x="576" d=" M551.991 384H144.28L135.554 428.608C133.35 439.872 123.478 448 112 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H92.24L161.834 44.299C150.796 32.799 144 17.198 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64S528.001 -35.346 528.001 0C528.001 18.136 520.4449999999999 34.496 508.325 46.142L509.36 50.899C512.614 65.859 501.218 80 485.908 80H203.76L194.37 128H506.775C518.0649999999999 128 527.829 135.869 530.227 146.902L575.443 354.902C578.695 369.861 567.299 384 551.991 384zM464 24C477.234 24 488 13.234 488 0S477.234 -24 464 -24S440 -13.234 440 0S450.766 24 464 24zM208 24C221.234 24 232 13.234 232 0S221.234 -24 208 -24S184 -13.234 184 0S194.766 24 208 24zM487.438 176H184.98L153.67 336H522.218L487.438 176zM272 248V264C272 270.627 277.373 276 284 276H316V308C316 314.627 321.373 320 328 320H344C350.627 320 356 314.627 356 308V276H388C394.627 276 400 270.627 400 264V248C400 241.373 394.627 236 388 236H356V204C356 197.373 350.627 192 344 192H328C321.373 192 316 197.373 316 204V236H284C277.373 236 272 241.373 272 248z" />
+    <glyph glyph-name="cash-register"
+      unicode="&#xF788;"
+      horiz-adv-x="512" d=" M168 152H152C143.2 152 136 144.8 136 136V120C136 111.2 143.2 104 152 104H168C176.8 104 184 111.2 184 120V136C184 144.8 176.8 152 168 152zM136 200C136 208.8 128.8 216 120 216H104C95.2 216 88 208.8 88 200V184C88 175.2 95.2 168 104 168H120C128.8 168 136 175.2 136 184V200zM232 200C232 208.8 224.8 216 216 216H200C191.2 216 184 208.8 184 200V184C184 175.2 191.2 168 200 168H216C224.8 168 232 175.2 232 184V200zM360 152H344C335.2 152 328 144.8 328 136V120C328 111.2 335.2 104 344 104H360C368.8 104 376 111.2 376 120V136C376 144.8 368.8 152 360 152zM408 216H392C383.2 216 376 208.8 376 200V184C376 175.2 383.2 168 392 168H408C416.8 168 424 175.2 424 184V200C424 208.8 416.8 216 408 216zM511.4 68.5L485.9 246.8C482.5 270.4 462.3 288 438.4 288H208V320H304C312.8 320 320 327.2 320 336V432C320 440.8 312.8 448 304 448H48C39.2 448 32 440.8 32 432V336C32 327.2 39.2 320 48 320H144V288H73.6C49.7 288 29.5 270.4 26.1 246.8L0.6 68.5C0.2 65.5 0 62.5 0 59.4V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V59.5C512 62.5 511.8 65.5 511.4 68.5zM80 368V400H272V368H80zM73.6 240H438.3L461.1999999999999 80H50.8L73.6 240zM464 -16H48V32H464V-16zM328 200C328 208.8 320.8 216 312 216H296C287.2 216 280 208.8 280 200V184C280 175.2 287.2 168 296 168H312C320.8 168 328 175.2 328 184V200zM264 152H248C239.2 152 232 144.8 232 136V120C232 111.2 239.2 104 248 104H264C272.8 104 280 111.2 280 120V136C280 144.8 272.8 152 264 152z" />
+    <glyph glyph-name="cat"
+      unicode="&#xF6BE;"
+      horiz-adv-x="576" d=" M416 320C407.1600000000001 320 400 312.8400000000001 400 304S407.1600000000001 288 416 288S432 295.16 432 304S424.84 320 416 320zM547.53 443.85A47.971 47.971 0 0 1 528.01 448C516.37 448 504.88 443.77 495.89 435.68L456.25 400H439.76L400.12 435.68A48.032000000000004 48.032000000000004 0 0 1 348.4700000000001 443.85C331.1600000000001 436.13 320 418.96 320 400V288C320 283.76 320.85 279.76 321.25 275.62L274.25 268.5C206.77 258.27 149.63 222.1 112 170.98V264C112 312.53 72.53 352 24 352C10.75 352 0 341.25 0 328C0 314.53 11.12 303.63 24.68 304.01C47.02 304.63 64 283.43 64 261.0800000000001V48.7C64 -24.71 103.4 -64 152 -64H336C344.84 -64 352 -56.84 352 -48C352 -30.33 337.67 -16 320 -16H303.86C303.75 -8.63 303.0800000000001 -1.37 302.01 5.81L384 54.05V-32C384 -49.67 398.33 -64 416 -64H480C497.67 -64 512 -49.67 512 -32V177.8C550.07 200 576 240.83 576 287.99V400C576 418.95 564.84 436.13 547.53 443.85zM464 -16H432V82.02C432 93.47 425.84 104.11 415.9100000000001 109.79C406 115.48 393.6900000000001 115.41 383.79 109.6L287.4400000000001 52.92C275.3600000000001 77.9 257.2100000000001 99.8 233.9900000000001 116.03C226.4700000000001 121.29 215.9200000000001 118.24 211.4600000000001 110.22L204.0200000000001 96.83C200.0500000000001 89.68 201.4700000000001 80.34 208.0900000000001 75.54C237.3100000000001 54.37 254.9600000000001 20.4999999999999 255.7200000000001 -16.0000000000001H152C129.94 -16.0000000000001 112 1.9399999999999 112 23.9999999999999C112 123.28 183.25 206.16 281.44 221.03L335.01 229.15C356.4 188.26 398.75 160 448 160C453.48 160 458.7 160.95 464 161.62V-16zM528 288C528 243.82 492.18 208 448 208S368 243.82 368 288V400L421.33 352H474.66L528 400V288zM464 304C464 295.16 471.16 288 480 288S496 295.16 496 304S488.84 320 480 320S464 312.8400000000001 464 304z" />
+    <glyph glyph-name="cauldron"
+      unicode="&#xF6BF;"
+      horiz-adv-x="448" d=" M448 252V276C448 282.63 441.73 288 434 288H14C6.27 288 0 282.63 0 276V252C0 245.37 6.27 240 14 240H43.63C16.35 197.54 0 148.45 0 102.4C0 63.32 11.82 31.75 32 6.87V-40C32 -53.25 42.75 -64 56 -64S80 -53.25 80 -40V-32.51C118.95 -53.81 169.14 -64 224 -64S329.05 -53.81 368 -32.51V-40C368 -53.25 378.75 -64 392 -64S416 -53.25 416 -40V6.87C436.18 31.75 448 63.32 448 102.4C448 148.44 431.65 197.53 404.37 240H434C441.73 240 448 245.37 448 252zM393.49 64H392C392.49 64 392.89 63.75 393.37 63.72C367.36 -7.26 269.65 -16 224 -16S80.64 -7.26 54.63 63.72C55.11 63.75 55.51 64 56 64H54.51C50.44 75.22 48 87.86 48 102.4C48 148.01 69.15 200.23 102.92 240H345.09C378.85 200.23 400 148.01 400 102.4C400 87.86 397.56 75.22 393.49 64zM160 384C177.67 384 192 398.33 192 416S177.67 448 160 448S128 433.67 128 416S142.33 384 160 384zM272 320C298.51 320 320 341.49 320 368S298.51 416 272 416S224 394.51 224 368S245.49 320 272 320z" />
+    <glyph glyph-name="certificate"
+      unicode="&#xF0A3;"
+      horiz-adv-x="512" d=" M489.199 192.073C530.24 232.246 513.462 294.563 458.054 308.707C473.43 362.711 427.935 410 372.589 394.225C358.4100000000001 449.828 295.346 465.915 256 425.379C242.445 439.3450000000001 226.954 447.981 205.706 447.9820000000001C176.318 447.983 148.562 430.114 139.411 394.225C84.461 409.8880000000001 38.435 363.183 53.946 308.707C-1.349 294.592 -18.328 232.333 22.801 192.073C-18.145 151.993 -1.566 89.609 53.946 75.439C38.434 20.958 84.536 -25.719 139.411 -10.0790000000001C153.747 -66.2999999999999 216.434 -81.714 256 -41.25C295.511 -81.658 358.326 -66.009 372.589 -10.079C427.596 -25.757 473.526 21.098 458.054 75.439C513.3489999999999 89.554 530.328 151.813 489.199 192.073zM457.994 155.499C469.127 144.96 463.944 126.2190000000001 449.329 122.7240000000001L398.426 109.732L412.775 59.345C416.83 44.854 403.168 31.18 388.676 35.237L338.306 49.591L325.319 -1.329C321.794 -16.079 302.711 -20.955 292.555 -9.997L256 27.379L219.446 -9.997C209.183 -20.8459999999999 190.288 -16.4179999999999 186.682 -1.329L173.695 49.5910000000001L123.325 35.2370000000001C108.836 31.1810000000001 95.171 44.8520000000001 99.226 59.3450000000001L113.575 109.7320000000001L62.672 122.7240000000001C48.063 126.2180000000001 42.869 144.9550000000001 54.007 155.4990000000001L91.37 192.0650000000001L54.007 228.6310000000001C42.874 239.1700000000001 48.057 257.9110000000001 62.672 261.4060000000001L113.575 274.3980000000001L99.226 324.7850000000001C95.172 339.2750000000001 108.831 352.9510000000001 123.325 348.8930000000001L173.695 334.5390000000001L186.682 385.4590000000001C190.158 400.0050000000001 209.185 404.9730000000001 219.446 394.1270000000001L256 356.475L292.554 394.127C302.936 405.101 321.882 399.837 325.318 385.459L338.305 334.539L388.675 348.893C403.163 352.949 416.829 339.278 412.774 324.785L398.425 274.398L449.3280000000001 261.406C463.937 257.912 469.1300000000001 239.175 457.9930000000001 228.631L420.6300000000001 192.065L457.994 155.499z" />
+    <glyph glyph-name="chair-office"
+      unicode="&#xF6C1;"
+      horiz-adv-x="448" d=" M64 224V288C64 305.67 49.67 320 32 320S0 305.67 0 288V224C0 206.33 14.33 192 32 192S64 206.33 64 224zM416 320C398.33 320 384 305.67 384 288V224C384 206.33 398.33 192 416 192S448 206.33 448 224V288C448 305.67 433.67 320 416 320zM402.4700000000001 153.7C395.1300000000001 175.73 375.0100000000001 190.45 352 191.58V384C352 419.35 323.35 448 288 448H160C124.65 448 96 419.35 96 384V191.5800000000001C72.99 190.46 52.87 175.7400000000001 45.57 153.74L34.85 121.7C29.19 104.67 32.07 85.81 42.57 71.26C53.07 56.69 70.04 48 88.01 48H200V-2.01C168.07 -6.98 142.01 -21.44 130.15 -40.57C123.74 -50.91 132.56 -64 145.17 -64H302.8300000000001C315.4400000000001 -64 324.2700000000001 -50.91 317.85 -40.57C305.99 -21.44 279.93 -6.98 248.0000000000001 -2.01V48H360C377.9700000000001 48 394.94 56.69 405.45 71.27C415.95 85.82 418.83 104.68 413.14 121.74L402.47 153.7zM144 384C144 392.82 151.18 400 160 400H288C296.82 400 304 392.82 304 384V192H144V384zM360 96H88.01C82.59 96 78.68 101.28 80.39 106.52L91.11 138.55C92.17 141.8199999999999 95.23 144 98.67 144H349.34C352.78 144 355.84 141.81 356.94 138.5199999999999L367.6 106.55C369.37 101.1999999999999 365.3400000000001 95.9999999999999 360 95.9999999999999z" />
+    <glyph glyph-name="chair"
+      unicode="&#xF6C0;"
+      horiz-adv-x="448" d=" M445.13 121.73L434.47 153.7000000000001C427.14 175.72 407.03 190.4400000000001 384.03 191.5700000000001L384 320C384 390.69 326.69 448 256 448H192C121.31 448 64 390.69 64 320L63.97 191.57C40.97 190.44 20.86 175.72 13.56 153.73L2.85 121.7C-2.81 104.67 0.07 85.81 10.57 71.26C16.14 63.53 23.59 57.61 31.98 53.61L32 -48C32 -56.84 39.16 -64 48 -64H64C72.84 -64 80 -56.84 80 -48V48H368.04L368 -48C368 -56.84 375.1600000000001 -64 384 -64H400C408.84 -64 416 -56.84 416 -48L416.04 53.61C424.43 57.61 431.88 63.53 437.4500000000001 71.26C447.9400000000001 85.81 450.8200000000001 104.67 445.1300000000001 121.73zM296 388.87C319.8 374.99 336 349.48 336 320V192H296V388.87zM200 400H248V192H200V400zM152 388.87V192H112V320C112 349.48 128.2 374.99 152 388.87zM48.38 106.52L59.1 138.55C60.16 141.8199999999999 63.22 144 66.66 144H381.35C384.79 144 387.85 141.81 388.94 138.5199999999999L399.6 106.55C401.37 101.22 397.36 95.9999999999999 392.0100000000001 95.9999999999999H56C50.58 95.9999999999999 46.67 101.2799999999999 48.38 106.5199999999999z" />
+    <glyph glyph-name="chalkboard-teacher"
+      unicode="&#xF51C;"
+      horiz-adv-x="640" d=" M226.79 105.98C199 105.98 192.02 96 160 96C128.03 96 121.05 105.98 93.21 105.98C21.12 105.98 0 45 0 13.33V-24C0 -46.09 17.91 -64 40 -64H280C302.09 -64 320 -46.09 320 -24V13.33C320 56.05 289.42 105.98 226.79 105.98zM272 -16H48V13.33C48 27.34 56.15 57.98 93.21 57.98C110.45 57.98 122.77 47.9999999999999 160 47.9999999999999C197.37 47.9999999999999 209.49 57.98 226.79 57.98C263.81 57.98 272 27.4 272 13.33V-16zM160 128C213.02 128 256 170.98 256 224S213.02 320 160 320S64 277.02 64 224S106.98 128 160 128zM160 272C186.47 272 208 250.47 208 224S186.47 176 160 176S112 197.53 112 224S133.53 272 160 272zM592 448H208C181.53 448 160 425.75 160 398.41V352C169.69 352 192.27 348.87 208 342.48V400H592V80H544V128C544 145.67 529.67 160 512 160H384C366.33 160 352 145.67 352 128V32H592C618.47 32 640 54.25 640 81.59V398.41C640 425.75 618.47 448 592 448zM496 80H400V112H496V80z" />
+    <glyph glyph-name="chalkboard"
+      unicode="&#xF51B;"
+      horiz-adv-x="640" d=" M80 400H560V32H608V408C608 430.06 590.06 448 568 448H72C49.94 448 32 430.06 32 408V32H80V400zM624 -16H512V64C512 81.67 497.67 96 480 96H288C270.33 96 256 81.67 256 64V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM464 -16H304V48H464V-16z" />
+    <glyph glyph-name="charging-station"
+      unicode="&#xF5E7;"
+      horiz-adv-x="576" d=" M120.57 224H162.96L154.18 169.23C152.9 164.49 157.04 160 162.52 160C165.5 160 168.37 161.37 169.94 163.74L236.87 263.02C240.17 268.01 236.05 274.28 229.45 274.28H188.23L196.51 310.56C197.96 315.32 193.85 319.99 188.23 319.99H139.66C135.36 319.99 131.73 317.2100000000001 131.16 313.48L112.06 232.48C111.39 227.99 115.39 224 120.57 224zM560 320H544V368C544 376.8400000000001 536.84 384 528 384S512 376.8400000000001 512 368V320H480V368C480 376.8400000000001 472.84 384 464 384S448 376.8400000000001 448 368V320H432C423.1600000000001 320 416 312.8400000000001 416 304V256C416 220.24 439.62 190.31 472 180.07V76C472 60.56 459.44 48 444 48S416 60.56 416 76V104C416 152.53 376.53 192 328 192H320V400C320 426.51 298.51 448 272 448H80C53.49 448 32 426.51 32 400V-16H8C3.58 -16 0 -19.58 0 -24V-56C0 -60.42 3.58 -64 8 -64H344C348.42 -64 352 -60.42 352 -56V-24C352 -19.58 348.42 -16 344 -16H320V144H328C350.06 144 368 126.06 368 104V76C368 34.09 402.0900000000001 0 444 0S520 34.09 520 76V180.07C552.38 190.31 576 220.24 576 256V304C576 312.8400000000001 568.84 320 560 320zM272 -16H80V400H272V-16zM528 256C528 238.36 513.64 224 496 224S464 238.36 464 256V272H528V256z" />
+    <glyph glyph-name="chart-area"
+      unicode="&#xF1FE;"
+      horiz-adv-x="512" d=" M500 48C506.6 48 512 42.6 512 36V12C512 5.4 506.6 0 500 0H12C5.4 0 0 5.4 0 12V372C0 378.6 5.4 384 12 384H36C42.6 384 48 378.6 48 372V48H500zM372 319.3L288 263.3L202.9 348.4C197.4 353.9 188.1 352.8 184.1 346.1L96 192V96H480L389.7 314.1C386.7 321 378.2 323.5 372 319.3zM144 178.7L201.5 281.9L281.9 201.5C353.7 249.4 290.1 206.9 362.6 255.3L407.2 144H144V178.7z" />
+    <glyph glyph-name="chart-bar"
+      unicode="&#xF080;"
+      horiz-adv-x="512" d=" M396.8 96H419.2C425.6 96 432 102.4 432 108.8V339.2C432 345.6 425.6 352 419.2 352H396.8C390.4000000000001 352 384 345.6 384 339.2V108.8C384 102.4 390.4 96 396.8 96zM204.8 96H227.2C233.6 96 240.0000000000001 102.4 240.0000000000001 108.8V307.2C240.0000000000001 313.6 233.6 320 227.2 320H204.8C198.4 320 192 313.6 192 307.2V108.8C192 102.4 198.4 95.9999999999999 204.8 95.9999999999999zM300.8 96H323.2C329.6 96 336 102.4 336 108.8V243.2C336 249.6 329.6 256 323.2 256H300.8C294.4000000000001 256 288 249.6 288 243.2V108.8C288 102.4 294.4 95.9999999999999 300.8 95.9999999999999zM496 48H48V368C48 376.8400000000001 40.84 384 32 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V32C512 40.84 504.84 48 496 48zM108.8 96H131.2C137.6 96 144 102.4 144 108.8V179.2000000000001C144 185.6 137.6 192.0000000000001 131.2 192.0000000000001H108.8C102.4 192.0000000000001 96 185.6000000000001 96 179.2000000000001V108.8000000000001C96 102.4000000000001 102.4 96.0000000000001 108.8 96.0000000000001z" />
+    <glyph glyph-name="chart-line-down"
+      unicode="&#xF64D;"
+      horiz-adv-x="512" d=" M180.69 201.38C186.94 195.13 197.07 195.13 203.32 201.38L288 286.06L375.6 198.46L346.1 168.97C330.98 153.85 341.69 128 363.0700000000001 128H464C472.84 128 480 135.16 480 144V244.93C480 266.31 454.15 277.02 439.03 261.9L409.54 232.4L299.31 342.62C293.06 348.87 282.93 348.87 276.68 342.62L192 257.94L140.28 309.66C134.03 315.91 123.9 315.91 117.65 309.66L106.34 298.35C100.09 292.1 100.09 281.9700000000001 106.34 275.7200000000001L180.69 201.38zM496 48H48V368C48 376.8400000000001 40.84 384 32 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V32C512 40.84 504.84 48 496 48z" />
+    <glyph glyph-name="chart-line"
+      unicode="&#xF201;"
+      horiz-adv-x="512" d=" M117.65 170.35C123.9 164.1 134.03 164.1 140.28 170.35L192 222.06L276.69 137.37C282.94 131.12 293.07 131.12 299.32 137.37L409.54 247.6L439.0300000000001 218.1C454.15 202.98 480 213.69 480 235.07V336C480 344.8400000000001 472.84 352 464 352H363.07C341.69 352 330.98 326.15 346.1 311.03L375.6 281.54L288 193.94L203.31 278.63C197.06 284.88 186.93 284.88 180.68 278.63L106.34 204.29C100.09 198.04 100.09 187.91 106.34 181.66L117.65 170.35zM496 48H48V368C48 376.8400000000001 40.84 384 32 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V32C512 40.84 504.84 48 496 48z" />
+    <glyph glyph-name="chart-network"
+      unicode="&#xF78A;"
+      horiz-adv-x="640" d=" M568 80C548.9 80 531.7 72.4 518.8 60.3L440.6 105C445.1 117.2 448 130.2 448 144C448 205.9 397.9 256 336 256C327.6 256 319.4 254.9 311.6 253.1L279.4000000000001 322.1C294.4000000000001 335.3 304.0000000000001 354.4 304.0000000000001 375.9C304.0000000000001 415.7 271.8000000000001 447.9 232.0000000000001 447.9S160.0000000000001 415.7 160.0000000000001 375.9S192.2000000000001 303.9 232.0000000000001 303.9C232.9000000000001 303.9 233.8000000000001 304.1 234.7000000000001 304.2L268.2000000000001 232.5C241.5 212.1 224 180.2 224 144C224 82.1 274.1 32 336 32C366.7 32 394.6 44.4 414.8 64.5L497 17.5C496.6 14.4 496 11.2 496 8C496 -31.8 528.2 -64 568 -64S640 -31.8 640 8S607.8 80 568 80zM232 352C218.8 352 208 362.8 208 376S218.8 400 232 400S256 389.2 256 376S245.2 352 232 352zM336 80C300.7 80 272 108.7 272 144S300.7 208 336 208S400 179.3 400 144S371.3 80 336 80zM568 -16C554.8 -16 544 -5.2 544 8S554.8 32 568 32S592 21.2 592 8S581.2 -16 568 -16zM513.6 245.2L494.4 270.8L446.4000000000001 234.8L465.6 209.2L513.6 245.2zM576 256C611.3 256 640 284.7 640 320S611.3 384 576 384S512 355.3 512 320S540.7 256 576 256zM152 128H200V160H152V128zM64 208C28.7 208 0 179.3 0 144S28.7 80 64 80S128 108.7 128 144S99.3 208 64 208z" />
+    <glyph glyph-name="chart-pie-alt"
+      unicode="&#xF64E;"
+      horiz-adv-x="512" d=" M461.29 160H224V397.29C224 406.12 216.82 413.5 208.26 413.5C207.56 413.5 206.86 413.45 206.15 413.35C87.08 396.53 -3.96 292.57 0.13 167.93C4.2 43.9 107.91 -59.8 231.93 -63.87C234.62 -63.96 237.32 -64 240 -64C361.04 -64 460.89 25.66 477.35 142.16C478.68 151.61 470.83 160 461.29 160zM240 -16C237.85 -16 235.67 -15.96 233.5 -15.89C134.52 -12.64 51.35 70.53 48.1 169.51C45.31 254.78 98.36 329.65 176 356.86V112H420.78C394.15 36.94 322.06 -16 240 -16zM288.8 447.96C288.45 447.99 288.1 448 287.76 448C279.1 448 272 440.56 272 431.77V208H495.77C504.91 208 512.59 215.69 511.97 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96z" />
+    <glyph glyph-name="chart-pie"
+      unicode="&#xF200;"
+      horiz-adv-x="544" d=" M511.96 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96C288.45 447.99 288.1 448 287.76 448C279.11 448 272 440.56 272 431.77V208H495.77C504.91 208 512.59 215.68 511.96 224.8zM320 256V394.49C387.56 377.05 441.05 323.56 458.49 256H320zM224 160V397.28C224 406.11 216.82 413.49 208.26 413.49C207.56 413.49 206.86 413.44 206.15 413.3400000000001C86.99 396.51 -4.1 292.4 0.14 167.63C4.47 40.47 113.18 -64 240.12 -64C241.1 -64 242.05 -63.99 243.03 -63.98C293.43 -63.35 340 -47.11 378.29 -19.95C386.19 -14.35 386.71 -2.72 379.86 4.1299999999999L224 160zM242.44 -15.99L240.13 -16C139.47 -16 51.54 68.84 48.12 169.26C45.21 254.66 98.27 329.63 176 356.86V140.12L190.06 126.06L316.28 -0.16C293.12 -10.26 268.12 -15.66 242.44 -15.99zM527.79 160H290.5L448.53 1.97C451.7 -1.2 455.94 -2.84 460.15 -2.84C463.97 -2.84 467.77 -1.49 470.72 1.29C509.42 37.75 536.04 86.9 543.8499999999999 142.15C545.1899999999999 151.61 537.3399999999999 160.0000000000001 527.79 160.0000000000001z" />
+    <glyph glyph-name="check-circle"
+      unicode="&#xF058;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 392C366.532 392 456 302.549 456 192C456 81.468 366.549 -8 256 -8C145.468 -8 56 81.451 56 192C56 302.532 145.451 392 256 392M396.204 261.733L373.668 284.451C369.0010000000001 289.156 361.403 289.187 356.698 284.519L215.346 144.303L155.554 204.58C150.887 209.285 143.289 209.316 138.584 204.649L115.865 182.113C111.16 177.446 111.129 169.848 115.797 165.142L206.578 73.6259999999999C211.245 68.9209999999999 218.843 68.8899999999999 223.548 73.5579999999999L396.1370000000001 244.762C400.8410000000001 249.43 400.8710000000001 257.0279999999999 396.2040000000001 261.733z" />
+    <glyph glyph-name="check-double"
+      unicode="&#xF560;"
+      horiz-adv-x="448" d=" M444.09 281.01L416.7 309.38C414.1 311.3400000000001 411.17 312.31 407.9 312.31C404.63 312.31 402.03 311.3300000000001 400.08 309.38L142.81 51.14L47.93 146.02C45.97 148.63 43.38 149.93 40.11 149.93C36.84 149.93 33.9 148.63 31.31 146.02L3.91 118.64C1.31 116.03 0 113.09 0 109.84S1.31 103.97 3.91 102.02L134.01 -29.05C136.61 -31.01 139.54 -31.99 142.81 -31.99C146.08 -31.99 148.68 -31.01 150.63 -29.05L444.08 264.4C446.68 267.01 447.99 269.9500000000001 447.99 273.2000000000001C448 276.4400000000001 446.69 279.0600000000001 444.0900000000001 281.01zM131.88 162.96C134.5 160.99 137.46 160 140.76 160S146.68 160.99 148.65 162.96L353.34 367.65C355.96 370.29 357.29 373.25 357.29 376.53C357.29 379.81 355.96 382.45 353.34 384.42L325.71 413.04C323.09 415.01 320.13 416 316.83 416S310.91 415.01 308.94 413.04L140.76 243.88L80.35 304.29C78.38 306.93 75.76 308.24 72.46 308.24S66.2 306.93 63.58 304.29L35.95 276.66C33.33 274.02 32 271.06 32 267.78C32 264.49 33.33 261.86 35.95 259.89L131.88 162.96z" />
+    <glyph glyph-name="check-square"
+      unicode="&#xF14A;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM400 16H48V368H400V16zM364.136 257.724L191.547 86.52C186.842 81.853 179.244 81.883 174.577 86.588L83.796 178.104C79.129 182.809 79.159 190.407 83.865 195.075L106.584 217.611C111.289 222.278 118.887 222.248 123.554 217.542L183.346 157.265L324.698 297.481C329.403 302.148 337.001 302.118 341.668 297.413L364.204 274.695C368.871 269.9890000000001 368.841 262.391 364.136 257.724z" />
+    <glyph glyph-name="check"
+      unicode="&#xF00C;"
+      horiz-adv-x="512" d=" M435.848 364.534L172.804 101.49L76.152 198.142C71.466 202.828 63.868 202.828 59.181 198.142L30.897 169.858C26.211 165.172 26.211 157.574 30.897 152.887L164.318 19.466C169.004 14.78 176.602 14.78 181.289 19.466L481.102 319.279C485.788 323.9650000000001 485.788 331.563 481.102 336.25L452.818 364.534C448.132 369.2200000000001 440.534 369.2200000000001 435.848 364.534z" />
+    <glyph glyph-name="chess-bishop-alt"
+      unicode="&#xF43B;"
+      horiz-adv-x="256" d=" M232 33.234V60C232 66.627 226.627 72 220 72H209.325C197.539 102.064 197.653 131.502 197.805 152H212C218.627 152 224 157.373 224 164V188C224 194.627 218.627 200 212 200H197.82V204.097C213.738 213.566 227.615 231.217 227.615 263.967C227.615 310.249 192.465 378.1810000000001 154.673 400.17C166.599 401.5660000000001 175.855 411.699 175.855 424C175.855 437.255 165.11 448 151.855 448H104C90.745 448 80 437.255 80 424C80 411.661 89.313 401.502 101.292 400.156C62.956 377.827 28.368 309.49 28.368 263.967C28.368 231.219 42.243 213.57 58.158 204.1V200H44C37.373 200 32 194.6270000000001 32 188V164C32 157.373 37.373 152 44 152H58.209C58.403 132.857 58.633 102.632 46.642 72H36C29.373 72 24 66.627 24 60V33.234L5.89 22.522A12 12 0 0 1 0 12.193V-52C0 -58.627 5.373 -64 12 -64H244C250.627 -64 256 -58.627 256 -52V12.193C256 16.435 253.761 20.362 250.11 22.521L232 33.234zM76.368 263.967C76.368 298.875 110.633 355.044 127.993 359.932C131.638 358.909 141.463 351.759 152.768 335.396L120.929 303.5560000000001A6 6 0 0 1 120.929 295.0710000000001L135.071 280.9290000000001A6 6 0 0 1 143.556 280.9290000000001L168.877 306.25C175.61 290.7680000000001 179.615 275.427 179.615 263.9670000000001C179.615 243.3120000000001 174.166 244.8420000000001 149.82 237.9880000000001V200H106.158V237.988C81.824 244.841 76.368 243.308 76.368 263.967zM106.212 152H149.803C149.713 139.551 148.66 106.879 158.694 72H97.26C106.548 104.308 106.396 133.727 106.212 152zM208 -16H48V-8.338L72 5.859V24H184V5.859L208 -8.338V-16z" />
+    <glyph glyph-name="chess-bishop"
+      unicode="&#xF43A;"
+      horiz-adv-x="320" d=" M0 152.127C0 225.772 55.103 334.509 113.211 375.1330000000001C102.813 382.356 96 394.38 96 408C96 430.091 113.909 448 136 448H183.795C205.886 448 223.795 430.091 223.795 408C223.795 394.43 217.031 382.4460000000001 206.697 375.214C265.002 334.551 320 225.593 320 152.127C320 94.943 294.324 64.989 256.001 51.824V0H64V51.827C25.684 64.993 0 94.947 0 152.127zM48 152.127C48 98.429 75.608 97.144 112 89.988V48H208.001V89.987C244.695 97.2000000000001 272.011 98.631 272.011 152.127C272.011 174.895 264.565 204.344 251.908 233.967L177.456 159.515C172.77 154.829 165.172 154.829 160.485 159.515L143.514 176.486C138.828 181.172 138.828 188.77 143.514 193.457L228.716 278.659V278.66C199.702 325.504 172.266 344 160.005 344C124.074 344 48 229.772 48 152.127zM320 -52V-28C320 -21.373 314.627 -16 308 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H308C314.627 -64 320 -58.627 320 -52z" />
+    <glyph glyph-name="chess-board"
+      unicode="&#xF43C;"
+      horiz-adv-x="512" d=" M0 448V-64H512V448H0zM464 -16H48V400H464V-16zM128 0H64V64H128V0zM192 64H256V0H192V64zM320 64H384V0H320V64zM192 64H128V128H192V64zM320 128V64H256V128H320zM384 64V128H448V64H384zM128 192V128H64V192H128zM256 128H192V192H256V128zM320 192H384V128H320V192zM192 192H128V256H192V192zM256 192V256H320V192H256zM384 192V256H448V192H384zM128 320V256H64V320H128zM192 256V320H256V256H192zM320 256V320H384V256H320zM192 320H128V384H192V320zM320 320H256V384H320V320zM448 320H384V384H448V320z" />
+    <glyph glyph-name="chess-clock-alt"
+      unicode="&#xF43E;"
+      horiz-adv-x="640" d=" M600 320H488V368H516C522.627 368 528 373.373 528 380V404C528 410.627 522.627 416 516 416H412C405.373 416 400 410.627 400 404V380C400 373.373 405.373 368 412 368H440V320H228C234.627 320 240 325.373 240 332V356C240 362.627 234.627 368 228 368H124C117.373 368 112 362.627 112 356V332C112 325.373 117.373 320 124 320H40C17.909 320 0 302.091 0 280V8C0 -14.091 17.909 -32 40 -32H600C622.091 -32 640 -14.091 640 8V280C640 302.091 622.091 320 600 320zM592 16H48V272H592V16zM464 32C525.856 32 576 82.144 576 144S525.856 256 464 256S352 205.856 352 144S402.144 32 464 32zM448 212C448 218.627 453.373 224 460 224H468C474.627 224 480 218.627 480 212V140C480 133.373 474.627 128 468 128H460C453.373 128 448 133.373 448 140V212zM176 32C237.856 32 288 82.144 288 144S237.856 256 176 256S64 205.856 64 144S114.144 32 176 32zM161.858 152.485L212.769 203.396C217.456 208.082 225.053 208.082 229.74 203.396L235.396 197.74C240.0830000000001 193.054 240.0830000000001 185.456 235.396 180.769L184.485 129.858C179.798 125.172 172.201 125.172 167.514 129.858L161.858 135.514C157.172 140.201 157.172 147.799 161.858 152.485z" />
+    <glyph glyph-name="chess-clock"
+      unicode="&#xF43D;"
+      horiz-adv-x="640" d=" M600 320H516C522.627 320 528 325.373 528 332V356C528 362.627 522.627 368 516 368H412C405.373 368 400 362.627 400 356V332C400 325.373 405.373 320 412 320H200V368H228C234.627 368 240 373.373 240 380V404C240 410.627 234.627 416 228 416H124C117.373 416 112 410.627 112 404V380C112 373.373 117.373 368 124 368H152V320H40C17.909 320 0 302.091 0 280V8C0 -14.091 17.909 -32 40 -32H600C622.091 -32 640 -14.091 640 8V280C640 302.091 622.091 320 600 320zM592 16H48V272H592V16zM176 32C237.856 32 288 82.144 288 144S237.856 256 176 256S64 205.856 64 144S114.144 32 176 32zM160 212C160 218.627 165.373 224 172 224H180C186.627 224 192 218.627 192 212V140C192 133.373 186.627 128 180 128H172C165.373 128 160 133.373 160 140V212zM464 32C525.856 32 576 82.144 576 144S525.856 256 464 256S352 205.856 352 144S402.144 32 464 32zM449.858 152.485L500.769 203.396C505.456 208.082 513.053 208.082 517.74 203.396L523.396 197.74C528.083 193.054 528.083 185.456 523.396 180.769L472.485 129.858C467.7979999999999 125.172 460.201 125.172 455.514 129.858L449.858 135.514C445.172 140.201 445.172 147.799 449.858 152.485z" />
+    <glyph glyph-name="chess-king-alt"
+      unicode="&#xF440;"
+      horiz-adv-x="256" d=" M232 33.234V60C232 66.627 226.627 72 220 72H205.047C193.575 111.612 193.907 155.039 194.121 182.259L194.134 184H220C226.627 184 232 189.373 232 196V220C232 226.627 226.627 232 220 232H201.366L231.013 320.366C236.23 335.916 224.66 352 208.259 352H153.798V379.234H173.569A6 6 0 0 1 179.569 385.234V407.637A5.98 5.98 0 0 1 173.589 413.617H145.201V442.02A5.98 5.98 0 0 1 139.221 448H116.8A5.98 5.98 0 0 1 110.82 442.02V413.617H82.401A5.98 5.98 0 0 1 76.421 407.637V385.213A5.98 5.98 0 0 1 82.401 379.233H102.225V352H47.732C31.33 352 19.761 335.914 24.979 320.365L54.631 232H36C29.373 232 24 226.627 24 220V196C24 189.373 29.373 184 36 184H61.878L61.896 182.208C62.156 156.9040000000001 62.603 112.3 50.954 72H36C29.373 72 24 66.627 24 60V33.234L5.89 22.522A12 12 0 0 1 0 12.193V-52C0 -58.627 5.373 -64 12 -64H244C250.627 -64 256 -58.627 256 -52V12.193C256 16.435 253.761 20.362 250.11 22.521L232 33.234zM174.894 304L150.738 232H105.262L81.102 304H174.894zM109.894 182.7L109.88 184H146.133L146.122 182.637C145.909 155.513 145.582 113.9 155.429 72H100.561C110.591 114.763 110.153 157.401 109.894 182.7zM208 -16H48V-8.338L72 5.859V24H184V5.859L208 -8.338V-16z" />
+    <glyph glyph-name="chess-king"
+      unicode="&#xF43F;"
+      horiz-adv-x="448" d=" M416 -28V-52C416 -58.627 410.627 -64 404 -64H44C37.373 -64 32 -58.627 32 -52V-28C32 -21.373 37.373 -16 44 -16H404C410.627 -16 416 -21.373 416 -28zM445.705 242.741L360.418 0H87.582L2.295 242.741C-6.846 268.756 12.459 296 40.033 296H200V344H150A6 6 0 0 0 144 350V386A6 6 0 0 0 150 392H200V442A6 6 0 0 0 206 448H242A6 6 0 0 0 248 442V392H298A6 6 0 0 0 304 386V350A6 6 0 0 0 298 344H248V296H407.967C435.541 296 454.846 268.756 445.705 242.741zM396.677 248H51.323L121.593 48H326.406L396.677 248z" />
+    <glyph glyph-name="chess-knight-alt"
+      unicode="&#xF442;"
+      horiz-adv-x="320" d=" M296 37.712V223.5C296 306.387 230.161 383.8 135.602 384H58.289C17.846 384 -7.273 345.298 4.46 310.0420000000001A66.636 66.636 0 0 1 0 286.111V185.932C0 164.952 11.313 143.2530000000001 36.616 132.4070000000001A85.427 85.427 0 0 1 24 87.706V37.712L5.906 27.046A11.999000000000002 11.999000000000002 0 0 1 0 16.708V-52C0 -58.627 5.373 -64 12 -64H308C314.627 -64 320 -58.627 320 -52V16.708C320 20.956 317.754 24.888 314.094 27.046L296 37.712zM72 87.706A37.501 37.501 0 0 0 92.882 121.323L139.118 144.427A37.501 37.501 0 0 1 160 178.044V236L132.926 226.809A18.75 18.75 0 0 1 120.604 213.316L111.506 174.65A9.376 9.376 0 0 0 106.573 168.412L95.639 162.945A9.378 9.378 0 0 0 87.753 162.713L53.682 177.315A9.375 9.375 0 0 0 48 185.932V286.111A18.751 18.751 0 0 0 55.722 301.275L60.5 304.75S54.485 316.78 50.562 323.913C47.437 329.596 51.871 336.402 58.289 336.402H58.308L135.501 336.239C197.67 336.107 248 285.671 248 223.5V88L232 72H88L72 87.706zM272 -16H48V-3.859L72 10.288V24H248V10.288L272 -3.859V-16zM93.63 267.5560000000001C93.63 258.5560000000001 86.334 251.26 77.334 251.26S61.038 258.5560000000001 61.038 267.5560000000001S68.334 283.852 77.334 283.852S93.63 276.5560000000001 93.63 267.5560000000001z" />
+    <glyph glyph-name="chess-knight"
+      unicode="&#xF441;"
+      horiz-adv-x="384" d=" M160 368C239.529 368 304 303.529 304 224V48H80V50.334A47.998000000000005 47.998000000000005 0 0 0 106.534 93.266L165.467 122.732A48.003 48.003 0 0 1 192 165.666V240L156.705 228.235A23.997 23.997 0 0 1 140.933 210.964L129.288 161.471A11.998 11.998 0 0 0 122.974 153.487L108.979 146.49A12.005 12.005 0 0 0 98.885 146.193L55.273 164.884A12 12 0 0 0 48 175.914V304.142A24 24 0 0 0 57.884 323.552L64 328L51.213 353.574C48.145 359.709 52.228 368 60.129 368H160M160 416H60.129C18.129 416 -9.539 372.88 6.953 334.95A71.95 71.95 0 0 1 0 304.142V175.913A59.932 59.932 0 0 1 36.364 120.765L55.059 112.753C32.62 86.524 32 57.976 32 50.334V0H352V224C352 329.975 266.116 416 160 416zM384 -52V-28C384 -21.373 378.627 -16 372 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52zM84 304C72.954 304 64 295.046 64 284S72.954 264 84 264S104 272.954 104 284S95.046 304 84 304z" />
+    <glyph glyph-name="chess-pawn-alt"
+      unicode="&#xF444;"
+      horiz-adv-x="320" d=" M296 37.712V60C296 66.627 290.627 72 284 72H248.531C236.005 108.287 234.064 141.215 233.866 168H252C258.627 168 264 173.373 264 180V204C264 210.627 258.627 216 252 216H241.92C256.317 234.387 264.67 257.722 263.958 282.9890000000001C262.423 337.414 218.509 381.817 164.103 383.921C104.897 386.21 56 338.708 56 280C56 255.884 64.253 233.66 78.08 216H68C61.373 216 56 210.627 56 204V180C56 173.373 61.373 168 68 168H86.153C85.995 142.122 84.064 108.593 71.462 72H36C29.373 72 24 66.627 24 60V37.712L5.906 27.046A11.999000000000002 11.999000000000002 0 0 1 0 16.708V-52C0 -58.627 5.373 -64 12 -64H308C314.627 -64 320 -58.627 320 -52V16.708C320 20.956 317.754 24.888 314.094 27.046L296 37.712zM160 336C190.879 336 216 310.878 216 280S190.879 224 160 224S104 249.122 104 280S129.121 336 160 336zM134.154 168H185.863C186.041 142.002 187.73 108.93 198.227 72H121.748C132.322 109.307 134.01 142.86 134.154 168zM272 -16H48V-3.859L72 10.288V24H248V10.288L272 -3.859V-16z" />
+    <glyph glyph-name="chess-pawn"
+      unicode="&#xF443;"
+      horiz-adv-x="320" d=" M320 -28V-52C320 -58.627 314.627 -64 308 -64H12C5.373 -64 0 -58.627 0 -52V-28C0 -21.373 5.373 -16 12 -16H308C314.627 -16 320 -21.373 320 -28zM40 0S78.248 51.057 91.523 144H56C49.373 144 44 149.373 44 156V180C44 186.627 49.373 192 56 192H81.703C60.92 212.344 48 240.69 48 272C48 333.757 98.243 384 160 384S272 333.757 272 272C272 240.69 259.08 212.344 238.297 192H264C270.627 192 276 186.627 276 180V156C276 149.373 270.627 144 264 144H228.477C241.752 51.057 280 0 280 0H40zM202.965 48C187.25 91.507 180.966 131.472 178.257 160H141.743C139.034 131.469 132.75 91.505 117.035 48H202.965zM96 272C96 236.71 124.71 208 160 208S224 236.71 224 272S195.29 336 160 336S96 307.29 96 272z" />
+    <glyph glyph-name="chess-queen-alt"
+      unicode="&#xF446;"
+      horiz-adv-x="256" d=" M99.824 420C99.824 435.464 112.36 448 127.824 448S155.824 435.464 155.824 420S143.288 392 127.824 392S99.824 404.536 99.824 420zM250.11 22.522A12 12 0 0 0 256 12.194V-52C256 -58.627 250.627 -64 244 -64H12C5.373 -64 0 -58.627 0 -52V12.193C0 16.435 2.239 20.362 5.89 22.521L24 33.234V60C24 66.627 29.373 72 36 72H50.712C62.609 114.774 62.158 162.127 61.896 188.942L61.867 192H36C29.373 192 24 197.373 24 204V228C24 234.627 29.373 240 36 240H49.233L3.669 352.775A6 6 0 0 0 6.431 360.329L25.992 370.653A5.99 5.99 0 0 0 28.793 371.349A5.983 5.983 0 0 0 33.939 368.431C39.234 359.545 45.787 349.451 56.115 349.451C70.465 349.451 71.408 359.379 71.934 378.16A6.003 6.003 0 0 0 77.931 384H98.389A6.001 6.001 0 0 0 104.077 379.887C108.515 366.554 117.093 359.423 128.002 359.423C138.91 359.423 147.488 366.553 151.927 379.887A6 6 0 0 0 157.615 384.001H178.074A6.005 6.005 0 0 0 184.072 378.162C184.602 359.333 185.56 349.452 199.89 349.452C210.525 349.452 217.577 360.561 221.879 368.307A5.998 5.998 0 0 0 229.925 370.702L249.574 360.331A6 6 0 0 0 252.337 352.778L206.798 240H220C226.627 240 232 234.627 232 228V204C232 197.373 226.627 192 220 192H194.143L194.121 188.99C193.905 160.144 193.571 114.049 205.289 72H220C226.627 72 232 66.627 232 60V33.234L250.11 22.522zM75.118 304.067L101.003 240H155.033L180.902 304.063C171.756 306.703 163.607 311.283 156.882 317.532C148.038 313.548 138.296 311.422 128.002 311.422S107.967 313.547 99.123 317.532C92.402 311.286 84.258 306.708 75.118 304.067zM100.227 72H155.764C145.575 116.325 145.908 160.614 146.122 189.35L146.142 192H109.87L109.894 189.411C110.155 162.62 110.598 117.217 100.227 72zM208 -8.338L184 5.859V24H72V5.859L48 -8.338V-16H208V-8.338z" />
+    <glyph glyph-name="chess-queen"
+      unicode="&#xF445;"
+      horiz-adv-x="512" d=" M64 -52V-28C64 -21.373 69.373 -16 76 -16H436C442.627 -16 448 -21.373 448 -28V-52C448 -58.627 442.627 -64 436 -64H76C69.373 -64 64 -58.627 64 -52zM255.579 336C286.507 336 311.579 361.072 311.579 392S286.507 448 255.579 448S199.579 422.928 199.579 392S224.651 336 255.579 336zM112 0L6.986 257.448A12 12 0 0 0 12.496 272.593L51.675 293.2720000000001C57.317 296.25 64.309 294.299 67.574 288.819C78.182 271.019 91.309 250.794 111.999 250.794C140.752 250.794 142.634 270.692 143.687 308.3330000000001C143.869 314.826 149.187 320 155.682 320H196.687C201.862 320 206.441 316.6720000000001 208.075 311.7620000000001C216.965 285.053 234.149 270.7700000000001 256 270.7700000000001S295.034 285.053 303.924 311.7620000000001C305.558 316.6720000000001 310.137 320 315.312 320H356.318C362.812 320 368.13 314.8280000000001 368.313 308.336C369.375 270.5980000000001 371.286 250.7940000000001 399.999 250.7940000000001C421.317 250.7940000000001 435.448 273.0790000000001 444.064 288.596C447.23 294.298 454.378 296.4110000000001 460.146 293.3660000000001L499.5029999999999 272.5930000000001A12 12 0 0 0 505.0129999999999 257.4480000000001L400 0H112zM77.96 210.54L144.26 48H367.74L434.044 210.55C396.39 192.642 342.302 204.278 326.487 255.144C288.757 211.834 223.194 211.897 185.518 255.139C169.541 203.809 115.184 192.834 77.96 210.54z" />
+    <glyph glyph-name="chess-rook-alt"
+      unicode="&#xF448;"
+      horiz-adv-x="320" d=" M183.999 136H136.001V184.421C136.001 197.444 146.558 208 159.581 208H160.42C173.443 208 184 197.443 184 184.421V136zM314.094 27.046A11.999000000000002 11.999000000000002 0 0 0 320 16.708V-52C320 -58.627 314.627 -64 308 -64H12C5.373 -64 0 -58.627 0 -52V16.708C0 20.956 2.246 24.888 5.906 27.046L24 37.712V60C24 66.627 29.373 72 36 72H44.854C49.921 96.814 56.192 139.806 56.054 212.421L25.007 237.259A24 24 0 0 0 16 256V360C16 373.255 26.745 384 40 384H280C293.255 384 304 373.255 304 360V256A24 24 0 0 0 294.993 237.259L263.948 212.423C263.824 139.718 270.083 96.771 275.142 72H284C290.627 72 296 66.627 296 60V37.712L314.094 27.046zM93.592 72H226.404C214.648 137.261 215.9 197.159 216.036 235.564L256 267.535V336H224V296H184V336H136V296H96V336H64V267.535L103.963 235.565C104.099 197.938 105.456 137.853 93.592 72zM272 -3.859L248 10.288V24H72V10.288L48 -3.859V-16H272V-3.859z" />
+    <glyph glyph-name="chess-rook"
+      unicode="&#xF447;"
+      horiz-adv-x="384" d=" M31.892 0H352.089C315.718 110.821 319.802 170.807 320 208L360.971 248.971A23.999000000000002 23.999000000000002 0 0 1 368 265.942V392C368 405.255 357.255 416 344 416H40C26.745 416 16 405.255 16 392V265.9410000000001A23.998000000000005 23.998000000000005 0 0 1 23.029 248.971L64 207.999C64.204 171.038 68.295 111.234 31.892 0zM64 368H104V320H152V368H232V320H280V368H320V275.882L272.106 227.988S271.946 202.427 271.904 199.219C271.499 168.241 270.877 120.753 288.452 48H95.503C113.137 121.001 112.507 168.401 112.097 199.307C112.055 202.487 111.89 227.99 111.89 227.99L64 275.882V368zM220 160H164V216C164 231.464 176.536 244 192 244S220 231.464 220 216V160zM384 -28V-52C384 -58.627 378.627 -64 372 -64H12C5.373 -64 0 -58.627 0 -52V-28C0 -21.373 5.373 -16 12 -16H372C378.627 -16 384 -21.373 384 -28z" />
+    <glyph glyph-name="chess"
+      unicode="&#xF439;"
+      horiz-adv-x="512" d=" M402.239 93.76H365.76V130.241C365.76 140.314 373.926 148.48 383.999 148.48S402.238 140.314 402.238 130.241V93.76zM512 13.902V-52C512 -58.627 506.627 -64 500 -64H268C261.373 -64 256 -58.627 256 -52C256 -58.627 250.627 -64 244 -64H12C5.373 -64 0 -58.627 0 -52V12.193C0 16.435 2.239 20.362 5.89 22.521L24 33.234V60C24 66.627 29.373 72 36 72H50.954C62.603 112.3 62.157 156.904 61.897 182.208L61.878 184H36C29.373 184 24 189.373 24 196V220C24 226.627 29.373 232 36 232H54.631L24.979 320.365C19.761 335.914 31.331 352 47.732 352H102.224V379.234H82.4A5.98 5.98 0 0 0 76.421 385.214V407.637A5.98 5.98 0 0 0 82.4 413.617H110.82V442.02A5.98 5.98 0 0 0 116.799 448H139.223A5.98 5.98 0 0 0 145.202 442.02V413.617H173.59A5.98 5.98 0 0 0 179.5690000000001 407.637V385.234A6 6 0 0 0 173.5690000000001 379.2340000000001H153.7980000000001V352H208.2580000000001C224.6590000000001 352 236.2280000000001 335.916 231.0120000000001 320.366L201.366 232H220C226.627 232 232 226.627 232 220V196C232 189.373 226.627 184 220 184H194.135L194.121 182.259C193.907 155.04 193.575 111.612 205.047 72H220C226.627 72 232 66.627 232 60V33.234L250.11 22.521A12 12 0 0 0 256 12.193V13.901C256 17.622 257.727 21.133 260.674 23.405L274.353 33.95V60C274.353 66.627 279.726 72 286.353 72H291.881C298.491 105.066 299.258 132.888 299.263 151.44L269.347 171.372A12 12 0 0 0 264 181.358V264C264 277.255 274.745 288 288 288H480C493.255 288 504 277.255 504 264V181.359C504 177.346 501.994 173.598 498.653 171.373L468.74 151.443C468.748 132.853 469.518 104.997 476.116 72.001H481.647C488.274 72.001 493.647 66.628 493.647 60.001V33.951L507.326 23.406A12.002 12.002 0 0 0 511.9999999999999 13.9019999999999zM81.102 304L105.262 232H150.738L174.894 304H81.102zM100.561 72H155.429C145.582 113.899 145.909 155.513 146.122 182.637L146.133 184H109.88L109.894 182.7C110.153 157.401 110.591 114.763 100.561 72zM208 -8.338L184 5.859V24H72V5.859L48 -8.338V-16H208V-8.338zM312 200.632L347.157 177.209L347.2 164.412C347.204 163.064 347.215 161.616 347.225 160.072C347.352 141.739 347.569 110.737 340.731 72H427.265C420.442 110.673 420.651 141.729 420.775 160.094C420.786 161.628 420.796 163.069 420.799 164.409L420.841 177.208L456 200.632V240H431V215.36H401V240H367V215.36H337V240H312V200.632zM464 -3.803L445.647 10.344V24H322.353V10.345L304 -3.803V-16H464V-3.803z" />
+    <glyph glyph-name="chevron-circle-down"
+      unicode="&#xF13A;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM264.5 99.5L387.3 222.3C392 227 392 234.6 387.3 239.3L364.7 261.9C360 266.6 352.4 266.6 347.7 261.9L256 170.2L164.3 261.9C159.6 266.6 152 266.6 147.3 261.9L124.7 239.3C120 234.6 120 227 124.7 222.3L247.5 99.5C252.2 94.8 259.8 94.8 264.5 99.5z" />
+    <glyph glyph-name="chevron-circle-left"
+      unicode="&#xF137;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM56 192C56 302.5 145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192zM163.5 200.5L286.3 323.3C291 328 298.6 328 303.3 323.3L325.9000000000001 300.7C330.6 296 330.6 288.4 325.9000000000001 283.7L234.2 192L325.9 100.3C330.6 95.6 330.6 88 325.9 83.3L303.3 60.7C298.6 56 291 56 286.3 60.7L163.5 183.5C158.8 188.2 158.8 195.8 163.5 200.5z" />
+    <glyph glyph-name="chevron-circle-right"
+      unicode="&#xF138;"
+      horiz-adv-x="512" d=" M8 192C8 55 119 -56 256 -56S504 55 504 192S393 440 256 440S8 329 8 192zM456 192C456 81.5 366.5 -8 256 -8S56 81.5 56 192S145.5 392 256 392S456 302.5 456 192zM348.5 183.5L225.7 60.7C221 56 213.4 56 208.7 60.7L186.1 83.3C181.4 88 181.4 95.6 186.1 100.3L277.8 192L186.1 283.7C181.4 288.4 181.4 296 186.1 300.7L208.7 323.3C213.4 328 221 328 225.7 323.3L348.5 200.5C353.2 195.8 353.2 188.2 348.5 183.5z" />
+    <glyph glyph-name="chevron-circle-up"
+      unicode="&#xF139;"
+      horiz-adv-x="512" d=" M264.5 284.5L387.3 161.7C392 157 392 149.4 387.3 144.7L364.7 122.1C360 117.4 352.4 117.4 347.7 122.1L256 213.8L164.3 122.1C159.6 117.4 152 117.4 147.3 122.1L124.7 144.7000000000001C120 149.4 120 157.0000000000001 124.7 161.7000000000001L247.5 284.5000000000001C252.2 289.2000000000001 259.8 289.2000000000001 264.5 284.5000000000001zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM456 192C456 302.5 366.5 392 256 392S56 302.5 56 192S145.5 -8 256 -8S456 81.5 456 192z" />
+    <glyph glyph-name="chevron-double-down"
+      unicode="&#xF322;"
+      horiz-adv-x="448" d=" M441.9 358.3L232.5 148.9C227.8 144.2 220.2 144.2 215.5 148.9L6.1 358.3C1.4 363 1.4 370.6 6.1 375.3L25.9 395.1C30.6 399.8 38.2 399.8 42.9 395.1L224 214.4L405.1 395.1C409.8 399.8 417.4000000000001 399.8 422.1 395.1L441.9000000000001 375.3C446.6 370.6 446.6 363 441.9000000000001 358.3zM441.9 215.3L422.1 235.1C417.4 239.8 409.8 239.8 405.1 235.1L224 54.4L42.9 235.1C38.2 239.8 30.6 239.8 25.9 235.1L6.1 215.3C1.4 210.6 1.4 203 6.1 198.3L215.5 -11.1C220.2 -15.8 227.8 -15.8 232.5 -11.1L441.9 198.3C446.6 203 446.6 210.6 441.9 215.3z" />
+    <glyph glyph-name="chevron-double-left"
+      unicode="&#xF323;"
+      horiz-adv-x="448" d=" M390.3 -25.9L180.9 183.5C176.2 188.2 176.2 195.8 180.9 200.5L390.3 409.9C395 414.6 402.6 414.6 407.3 409.9L427.1 390.1C431.8 385.4 431.8 377.8 427.1 373.1L246.4 192L427.1 10.9C431.8 6.2 431.8 -1.4 427.1 -6.1L407.3 -25.9C402.6 -30.6 395 -30.6 390.3 -25.9zM247.3 -25.9L267.1 -6.1C271.8 -1.4 271.8 6.2 267.1 10.9L86.4 192L267.1 373.1C271.8 377.8 271.8 385.4 267.1 390.1L247.3 409.9C242.6 414.6 235 414.6 230.3 409.9L20.9 200.5C16.2 195.8 16.2 188.2 20.9 183.5L230.3 -25.9C235 -30.6 242.6 -30.6 247.3 -25.9z" />
+    <glyph glyph-name="chevron-double-right"
+      unicode="&#xF324;"
+      horiz-adv-x="448" d=" M57.7 409.9L267.1 200.5C271.8 195.8 271.8 188.2 267.1 183.5L57.7 -25.9C53 -30.6 45.4 -30.6 40.7 -25.9L20.9 -6.1C16.2 -1.4 16.2 6.2 20.9 10.9L201.6 192L20.9 373.1C16.2 377.8 16.2 385.4 20.9 390.1L40.7 409.9C45.4 414.6 53 414.6 57.7 409.9zM200.7 409.9L180.9 390.1C176.2 385.4 176.2 377.8 180.9 373.1L361.6 192L180.9 10.9C176.2 6.2 176.2 -1.4 180.9 -6.1L200.7 -25.9C205.4 -30.6 213 -30.6 217.7 -25.9L427.1 183.5C431.8 188.2 431.8 195.8 427.1 200.5L217.7 409.9C213 414.6 205.4 414.6 200.7 409.9z" />
+    <glyph glyph-name="chevron-double-up"
+      unicode="&#xF325;"
+      horiz-adv-x="448" d=" M6.1 25.7L215.5 235.1C220.2 239.8 227.8 239.8 232.5 235.1L441.9 25.7C446.6 21 446.6 13.4 441.9 8.7L422.1 -11.1C417.4 -15.8 409.8 -15.8 405.1 -11.1L224 169.6L42.9 -11.1C38.2 -15.8 30.6 -15.8 25.9 -11.1L6.1 8.7C1.4 13.4 1.4 21 6.1 25.7zM6.1 168.7L25.9 148.9C30.6 144.2 38.2 144.2 42.9 148.9L224 329.6L405.1 148.9C409.8 144.2 417.4000000000001 144.2 422.1 148.9L441.9000000000001 168.7C446.6 173.4 446.6 181 441.9000000000001 185.7L232.5 395.1C227.8 399.8 220.2 399.8 215.5 395.1L6.1 185.7C1.4 181 1.4 173.4 6.1 168.7z" />
+    <glyph glyph-name="chevron-down"
+      unicode="&#xF078;"
+      horiz-adv-x="448" d=" M441.9 280.7L422.1 300.5C417.4 305.2 409.8 305.2 405.1 300.5L224 119.8L42.9 300.5C38.2 305.2 30.6 305.2 25.9 300.5L6.1 280.7C1.4 276 1.4 268.4 6.1 263.7L215.5 54.3C220.2 49.6 227.8 49.6 232.5 54.3L441.9 263.7C446.6 268.4 446.6 276 441.9 280.7z" />
+    <glyph glyph-name="chevron-left"
+      unicode="&#xF053;"
+      horiz-adv-x="256" d=" M231.293 -25.899L251.092 -6.1C255.778 -1.414 255.778 6.184 251.092 10.871L70.393 192L251.092 373.13C255.778 377.8160000000001 255.778 385.414 251.092 390.101L231.293 409.9C226.607 414.586 219.009 414.586 214.322 409.9L4.908 200.485C0.222 195.799 0.222 188.201 4.908 183.514L214.322 -25.9C219.009 -30.586 226.607 -30.586 231.293 -25.899z" />
+    <glyph glyph-name="chevron-right"
+      unicode="&#xF054;"
+      horiz-adv-x="256" d=" M24.707 409.899L4.908 390.101C0.222 385.415 0.222 377.817 4.908 373.13L185.607 192L4.908 10.87C0.222 6.184 0.222 -1.414 4.908 -6.101L24.707 -25.9C29.393 -30.586 36.991 -30.586 41.678 -25.9L251.092 183.514C255.778 188.2 255.778 195.798 251.092 200.485L41.678 409.899C36.991 414.586 29.393 414.586 24.707 409.899z" />
+    <glyph glyph-name="chevron-square-down"
+      unicode="&#xF329;"
+      horiz-adv-x="448" d=" M215.5 99.5L92.7 222.3C88 227 88 234.6 92.7 239.3L115.3 261.9C120 266.6 127.6 266.6 132.3 261.9L224 170.2L315.7 261.9C320.4 266.6 328 266.6 332.7 261.9L355.3 239.3C360 234.6 360 227 355.3 222.3L232.5 99.5C227.8 94.8 220.2 94.8 215.5 99.5zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="chevron-square-left"
+      unicode="&#xF32A;"
+      horiz-adv-x="448" d=" M131.5 200.5L254.3 323.3C259 328 266.6 328 271.3 323.3L293.9000000000001 300.7C298.6 296 298.6 288.4 293.9000000000001 283.7L202.2 192L293.9 100.3C298.6 95.6 298.6 88 293.9 83.3L271.3 60.7C266.6 56 259 56 254.3 60.7L131.5 183.5C126.8 188.2 126.8 195.8 131.5 200.5zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="chevron-square-right"
+      unicode="&#xF32B;"
+      horiz-adv-x="448" d=" M316.5 183.5L193.7 60.7C189 56 181.4 56 176.7 60.7L154.1 83.3C149.4 88 149.4 95.6 154.1 100.3L245.8 192L154.1 283.7C149.4 288.4 149.4 296 154.1 300.7L176.7 323.3C181.4 328 189 328 193.7 323.3L316.5 200.5C321.2 195.8 321.2 188.2 316.5 183.5zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="chevron-square-up"
+      unicode="&#xF32C;"
+      horiz-adv-x="448" d=" M232.5 284.5L355.3 161.7C360 157 360 149.4 355.3 144.7L332.7 122.1C328 117.4 320.4 117.4 315.7 122.1L224 213.8L132.3 122.1C127.6 117.4 120 117.4 115.3 122.1L92.7 144.7000000000001C88 149.4 88 157.0000000000001 92.7 161.7000000000001L215.5 284.5000000000001C220.2 289.2000000000001 227.8 289.2000000000001 232.5 284.5000000000001zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="chevron-up"
+      unicode="&#xF077;"
+      horiz-adv-x="448" d=" M6.101 88.707L25.9 68.908C30.586 64.222 38.184 64.222 42.871 68.908L224 249.607L405.13 68.909C409.816 64.223 417.414 64.223 422.101 68.909L441.9 88.708C446.586 93.394 446.586 100.992 441.9 105.679L232.485 315.092C227.799 319.778 220.201 319.778 215.514 315.092L6.101 105.678C1.414 100.991 1.414 93.393 6.101 88.707z" />
+    <glyph glyph-name="child"
+      unicode="&#xF1AE;"
+      horiz-adv-x="448" d=" M410.947 346.911C388.514 369.342 355.7680000000001 373.3690000000001 329.885 361.4410000000001C320.167 409.943 277.177 448 224 448C170.821 448 127.832 409.94 118.115 361.4410000000001C92.186 373.391 59.451 369.307 37.055 346.914C8.981 318.839 8.981 273.1620000000001 37.052 245.089L96 186.177V8C96 -31.701 128.299 -64 168 -64H176C194.423 -64 211.253 -57.045 224 -45.622C236.747 -57.045 253.577 -64 272 -64H280C319.701 -64 352 -31.701 352 8V186.177L410.9460000000001 245.0890000000001C439.0180000000001 273.1620000000001 439.0180000000001 318.8390000000001 410.947 346.9110000000001zM224 400C257.137 400 284 373.137 284 340S257.137 280 224 280S164 306.863 164 340S190.863 400 224 400zM376.971 279.029L304 206.059V8C304 -5.255 293.255 -16 280 -16H272C258.745 -16 248 -5.255 248 8V104H200V8C200 -5.255 189.255 -16 176 -16H168C154.745 -16 144 -5.255 144 8V206.059L71.029 279.03C61.657 288.403 61.657 303.599 71.029 312.972C80.402 322.344 95.597 322.344 104.97 312.972L177.941 240H270.058L343.029 312.971C352.402 322.343 367.597 322.343 376.9700000000001 312.971C386.343 303.598 386.343 288.4020000000001 376.971 279.029z" />
+    <glyph glyph-name="chimney"
+      unicode="&#xF78B;"
+      horiz-adv-x="512" d=" M480 448H32C14.3 448 0 433.7 0 416V256C0 238.3 14.3 224 32 224V-32C32 -49.7 46.3 -64 64 -64H448C465.7 -64 480 -49.7 480 -32V224C497.7 224 512 238.3 512 256V416C512 433.7 497.7 448 480 448zM304 -16H80V64H304V-16zM80 112V224H160V112H80zM432 -16H352V64H432V-16zM432 112H208V224H432V112zM464 272H48V400H464V272z" />
+    <glyph glyph-name="church"
+      unicode="&#xF51D;"
+      horiz-adv-x="576" d=" M281.71 127.7C248.44 124.53 224 94.68 224 61.25V-48C224 -56.84 231.16 -64 240 -64H336C344.84 -64 352 -56.84 352 -48V64C352 101.42 319.88 131.34 281.71 127.7zM558.5699999999999 108.01L448 155.42V189.88C448 201.12 442.1 211.54 432.46 217.32L312 289.6V336H372C378.63 336 384 341.37 384 348V372C384 378.63 378.63 384 372 384H312V436C312 442.63 306.63 448 300 448H276C269.37 448 264 442.63 264 436V384H204C197.37 384 192 378.63 192 372V348C192 341.37 197.37 336 204 336H264V289.6L143.54 217.32A31.997 31.997 0 0 1 128 189.88V155.41L17.43 108.01C6.96 103.01 0 90.11 0 75.68V-46.76C0 -56.28 5.97 -64 13.33 -64H32C40.84 -64 48 -56.84 48 -48V68.89L128 103.19V-48C128 -56.84 135.16 -64 144 -64H160C168.84 -64 176 -56.84 176 -48V180.83L288 248.03L400 180.83V-48C400 -56.84 407.1600000000001 -64 416 -64H432C440.84 -64 448 -56.84 448 -48V103.19L528 68.89V-48C528 -56.84 535.16 -64 544 -64H562.67C570.04 -64 576 -56.29 576 -46.77V75.68C576 90.11 569.04 103.01 558.57 108.01z" />
+    <glyph glyph-name="circle-notch"
+      unicode="&#xF1CE;"
+      horiz-adv-x="512" d=" M288 419.023V402.632C288 395.155 293.182 388.687 300.474 387.034C389.568 366.838 456 287.2580000000001 456 192C456 81.468 366.549 -8 256 -8C145.468 -8 56 81.451 56 192C56 287.2440000000001 122.422 366.837 211.526 387.034C218.818 388.687 224 395.155 224 402.632V419.019C224 429.16 214.678 436.779 204.754 434.694C91.959 410.996 7.373 310.655 8.004 190.668C8.724 53.616 119.481 -56.288 256.5350000000001 -55.999C393.255 -55.711 504 55.212 504 192C504 311.349 419.692 411.003 307.3830000000001 434.665C297.403 436.7680000000001 288 429.221 288 419.023z" />
+    <glyph glyph-name="circle"
+      unicode="&#xF111;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8z" />
+    <glyph glyph-name="city"
+      unicode="&#xF64F;"
+      horiz-adv-x="640" d=" M244 64H204C197.37 64 192 58.63 192 52V12C192 5.37 197.37 0 204 0H244C250.63 0 256 5.37 256 12V52C256 58.63 250.63 64 244 64zM244 256H204C197.37 256 192 250.63 192 244V204C192 197.37 197.37 192 204 192H244C250.63 192 256 197.37 256 204V244C256 250.63 250.63 256 244 256zM148 256H108C101.37 256 96 250.63 96 244V204C96 197.37 101.37 192 108 192H148C154.63 192 160 197.37 160 204V244C160 250.63 154.63 256 148 256zM148 64H108C101.37 64 96 58.63 96 52V12C96 5.37 101.37 0 108 0H148C154.63 0 160 5.37 160 12V52C160 58.63 154.63 64 148 64zM148 160H108C101.37 160 96 154.63 96 148V108C96 101.37 101.37 96 108 96H148C154.63 96 160 101.37 160 108V148C160 154.63 154.63 160 148 160zM244 160H204C197.37 160 192 154.63 192 148V108C192 101.37 197.37 96 204 96H244C250.63 96 256 101.37 256 108V148C256 154.63 250.63 160 244 160zM532 64H492C485.37 64 480 58.63 480 52V12C480 5.37 485.37 0 492 0H532C538.63 0 544 5.37 544 12V52C544 58.63 538.63 64 532 64zM532 160H492C485.37 160 480 154.63 480 148V108C480 101.37 485.37 96 492 96H532C538.63 96 544 101.37 544 108V148C544 154.63 538.63 160 532 160zM616 256H512V424C512 437.26 501.26 448 488 448H280C266.74 448 256 437.26 256 424V352H224V432C224 440.84 216.84 448 208 448H192C183.16 448 176 440.84 176 432V352H112V432C112 440.84 104.84 448 96 448H80C71.16 448 64 440.84 64 432V352H24C10.74 352 0 341.26 0 328V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V304H304V400H464V208H592V-48C592 -56.84 599.16 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V232C640 245.26 629.25 256 616 256zM404 352H364C357.37 352 352 346.63 352 340V300C352 293.37 357.37 288 364 288H404C410.63 288 416 293.37 416 300V340C416 346.63 410.63 352 404 352zM404 160H364C357.37 160 352 154.63 352 148V108C352 101.37 357.37 96 364 96H404C410.63 96 416 101.37 416 108V148C416 154.63 410.63 160 404 160zM404 256H364C357.37 256 352 250.63 352 244V204C352 197.37 357.37 192 364 192H404C410.63 192 416 197.37 416 204V244C416 250.63 410.63 256 404 256z" />
+    <glyph glyph-name="claw-marks"
+      unicode="&#xF6C2;"
+      horiz-adv-x="512" d=" M7.11 223.49C2.12 225.86 -2.28 219.4 1.62 215.49L86.73 130.36C92.73 124.36 96.1 116.22 96.1 107.73V64H139.83C148.32 64 156.45 60.63 162.45 54.63L279.5800000000001 -62.53C283.4400000000001 -66.39 289.8900000000001 -61.97 287.5600000000001 -57.04C206.47 114.89 63.46 196.74 7.11 223.49zM246.69 418.37C252.69 412.37 256.06 404.23 256.06 395.74V352H299.79C308.2800000000001 352 316.4100000000001 348.63 322.4100000000001 342.63L374.6600000000001 290.37C380.6600000000001 284.37 384.0300000000001 276.23 384.0300000000001 267.74V224H427.75C436.24 224 444.37 220.63 450.37 214.63L503.51 161.47C507.37 157.61 513.8199999999999 162.03 511.49 166.96C430.42 338.89 287.4100000000001 420.74 231.05 447.49C226.06 449.86 221.66 443.4 225.56 439.49L246.69 418.37zM508.94 -18.53L507.5 -15.5C453.42 100.23 321.51 313.94 45.64 444.86C31.74 451.47 15.02 447.11 6.06 434.4700000000001C-2.97 421.7 -1.51 404.41 7.8 395.26L152.08 215.56V152H214.13L280.05 86.06V24H344.4700000000001L459.4400000000001 -56.47A31.741 31.741 0 0 1 479.9400000000001 -63.95C486.3800000000001 -63.95 492.8100000000001 -62.03 498.4 -58.09C511.09 -49.16 515.5300000000001 -32.53 508.9400000000001 -18.53zM359.6 72H328.04V105.94L234 200H200.07V232.44L92.85 365.8400000000001C277.03 259.07 382.78 112.65 435.9 18.57L359.6 72z" />
+    <glyph glyph-name="clipboard-check"
+      unicode="&#xF46C;"
+      horiz-adv-x="384" d=" M269.3 222.2C265.4000000000001 226.1 259.1 226.1 255.2 222.3L167.2 135L129.1 173.5C125.2 177.4 118.9 177.4 115 173.6L91.4 150.2000000000001C87.5 146.3000000000001 87.5 140.0000000000001 91.3 136.1L159.8000000000001 67C163.7000000000001 63.1 170 63.1 173.9 66.9L292.5 184.5C296.4 188.4 296.4 194.7 292.6 198.6L269.3 222.2zM336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 400C200.8 400 208 392.8 208 384S200.8 368 192 368S176 375.2 176 384S183.2 400 192 400zM336 -8C336 -12.4 332.4 -16 328 -16H56C51.6 -16 48 -12.4 48 -8V328C48 332.4 51.6 336 56 336H96V304C96 295.2 103.2 288 112 288H272C280.8 288 288 295.2 288 304V336H328C332.4 336 336 332.4 336 328V-8z" />
+    <glyph glyph-name="clipboard-list-check"
+      unicode="&#xF737;"
+      horiz-adv-x="384" d=" M126.2 161.6L190.4 225.2C192.5 227.3 192.5 230.7 190.4 232.8L177.8 245.5C175.7 247.6 172.3 247.6 170.2 245.5L122.6 198.3L102 219.2C99.9 221.3 96.5 221.3 94.4 219.2L81.7 206.6C79.6 204.5 79.6 201.1 81.7 199L118.8000000000001 161.6C120.7000000000001 159.5 124.1 159.5 126.2000000000001 161.6zM336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 400C200.8 400 208 392.8 208 384S200.8 368 192 368S176 375.2 176 384S183.2 400 192 400zM336 -8C336 -12.4 332.4 -16 328 -16H56C51.6 -16 48 -12.4 48 -8V328C48 332.4 51.6 336 56 336H96V304C96 295.2 103.2 288 112 288H272C280.8 288 288 295.2 288 304V336H328C332.4 336 336 332.4 336 328V-8zM112 120C98.7 120 88 109.3 88 96S98.7 72 112 72S136 82.7 136 96S125.3 120 112 120zM280 208H216.7C215.4 206.2 214.6 204.1 213 202.5L186.2 176H280C284.4 176 288 179.6 288 184V200C288 204.4 284.4 208 280 208zM280 112H168C163.6 112 160 108.4 160 104V88C160 83.6 163.6 80 168 80H280C284.4 80 288 83.6 288 88V104C288 108.4 284.4 112 280 112z" />
+    <glyph glyph-name="clipboard-list"
+      unicode="&#xF46D;"
+      horiz-adv-x="384" d=" M280 208H168C163.6 208 160 204.4 160 200V184C160 179.6 163.6 176 168 176H280C284.4 176 288 179.6 288 184V200C288 204.4 284.4 208 280 208zM280 112H168C163.6 112 160 108.4 160 104V88C160 83.6 163.6 80 168 80H280C284.4 80 288 83.6 288 88V104C288 108.4 284.4 112 280 112zM112 216C98.7 216 88 205.3 88 192S98.7 168 112 168S136 178.7 136 192S125.3 216 112 216zM112 120C98.7 120 88 109.3 88 96S98.7 72 112 72S136 82.7 136 96S125.3 120 112 120zM336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 400C200.8 400 208 392.8 208 384S200.8 368 192 368S176 375.2 176 384S183.2 400 192 400zM336 -8C336 -12.4 332.4 -16 328 -16H56C51.6 -16 48 -12.4 48 -8V328C48 332.4 51.6 336 56 336H96V304C96 295.2 103.2 288 112 288H272C280.8 288 288 295.2 288 304V336H328C332.4 336 336 332.4 336 328V-8z" />
+    <glyph glyph-name="clipboard-prescription"
+      unicode="&#xF5E8;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.35 227.35 448 192 448S128 419.35 128 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V336C384 362.51 362.51 384 336 384zM192 400C200.82 400 208 392.82 208 384S200.82 368 192 368S176 375.18 176 384S183.18 400 192 400zM336 -8C336 -12.42 332.42 -16 328 -16H56C51.58 -16 48 -12.42 48 -8V328C48 332.42 51.58 336 56 336H96V304C96 295.16 103.16 288 112 288H272C280.84 288 288 295.16 288 304V336H328C332.42 336 336 332.42 336 328V-8zM285.66 119.03C288.78 122.15 288.78 127.22 285.66 130.34L274.35 141.65C271.23 144.77 266.16 144.77 263.04 141.65L226.35 104.96C225.44 104.05 225.36 102.8 224.98 101.65L192.68 133.95C211.17 143.1 224 161.97 224 184C224 214.93 198.93 240 168 240H104C99.58 240 96 236.42 96 232V88C96 83.58 99.58 80 104 80H120C124.42 80 128 83.58 128 88V128H153.37L202.34 79.03C201.19 78.65 199.94 78.57 199.03 77.66L162.34 40.97C159.22 37.85 159.22 32.78 162.34 29.66L173.65 18.35C176.77 15.23 181.84 15.23 184.96 18.35L221.65 55.04C222.57 55.96 222.64 57.2 223.02 58.35L263.02 18.35C266.14 15.23 271.21 15.23 274.33 18.35L285.64 29.66C288.76 32.78 288.76 37.85 285.64 40.97L245.64 80.97C246.79 81.35 248.04 81.43 248.95 82.34L285.66 119.03zM168 160H128V208H168C181.23 208 192 197.23 192 184S181.23 160 168 160z" />
+    <glyph glyph-name="clipboard"
+      unicode="&#xF328;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.29 227.29 448 192 448S128 419.29 128 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V336C384 362.51 362.51 384 336 384zM330 -16H54A6 6 0 0 0 48 -10V330A6 6 0 0 0 54 336H96V300C96 293.373 101.373 288 108 288H276C282.627 288 288 293.373 288 300V336H330A6 6 0 0 0 336 330V-10A6 6 0 0 0 330 -16zM192 408C205.255 408 216 397.255 216 384S205.255 360 192 360S168 370.745 168 384S178.745 408 192 408" />
+    <glyph glyph-name="clock"
+      unicode="&#xF017;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM317.8 96.4L232.9 158.1C229.8 160.4 228 164 228 167.8V332C228 338.6 233.4 344 240 344H272C278.6 344 284 338.6 284 332V190.3L350.8 141.7C356.2 137.8 357.3 130.3 353.4000000000001 124.9L334.6 99C330.7000000000001 93.7 323.2000000000001 92.5 317.8 96.4z" />
+    <glyph glyph-name="clone"
+      unicode="&#xF24D;"
+      horiz-adv-x="512" d=" M464 448H144C117.49 448 96 426.51 96 400V352H48C21.49 352 0 330.51 0 304V-16C0 -42.51 21.49 -64 48 -64H368C394.51 -64 416 -42.51 416 -16V32H464C490.51 32 512 53.49 512 80V400C512 426.51 490.51 448 464 448zM362 -16H54A6 6 0 0 0 48 -10V298A6 6 0 0 0 54 304H96V80C96 53.49 117.49 32 144 32H368V-10A6 6 0 0 0 362 -16zM458 80H150A6 6 0 0 0 144 86V394A6 6 0 0 0 150 400H458A6 6 0 0 0 464 394V86A6 6 0 0 0 458 80z" />
+    <glyph glyph-name="closed-captioning"
+      unicode="&#xF20A;"
+      horiz-adv-x="512" d=" M464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM458 48H54C50.7 48 48 50.7 48 54V330C48 333.3 50.7 336 54 336H458C461.3 336 464 333.3 464 330V54C464 50.7 461.3 48 458 48zM246.9 133.7C248.6 131.3 248.4 128.1 246.4 126C192.8 69.2 73.6 93.9 73.6 193.9C73.6 291.2 195.3 313.4 246.1 264C248.2 262 248.6 260.8 247.1 258.3L229.6 227.8C227.7 224.7 223.4 223.8 220.5 226.1C179.7 258.1 125.9 241.0000000000001 125.9 194.9C125.9 146.9 176.9 124.4 218.1 162.3C220.9 164.8 225.2 164.4 227.3 161.4L246.9 133.7000000000001zM437.3 133.7C439 131.3 438.8 128.1 436.8 126C383.2 69.1 264 93.9 264 193.9C264 291.2 385.7 313.4 436.5 264C438.6 262 439 260.8 437.5 258.3L420 227.8C418.1 224.7 413.8 223.8 410.9 226.1C370.1 258.1 316.3 241.0000000000001 316.3 194.9C316.3 146.9 367.3 124.4 408.5 162.3C411.3 164.8 415.6 164.4 417.7 161.4L437.3 133.7000000000001z" />
+    <glyph glyph-name="cloud-download-alt"
+      unicode="&#xF381;"
+      horiz-adv-x="640" d=" M543.7 247.9C539.7 305.9 491.4 352 432 352C424.4 352 416.9 351.2 409.6 349.7C377.7 389.7 328.1 416 272 416C187.4 416 116.5 356.3 99.7 276.2C39.9 251.9 0 193.6 0 128C0 39.6 71.6 -32 160 -32H496C575.5 -32 640 32.5 640 112C640 173.8 600.8 227.8 543.7 247.9zM496 16H160C98.1 16 48 66.1 48 128C48 184.4 89.7 231.1 144 238.9V240C144 310.7 201.3 368 272 368C325.5 368 371.3 335.2 390.4 288.6C401.6 298.2 416.1 304 432 304C467.3 304 496 275.3 496 240C496 228.2 492.8 217.1 487.2 207.6C490.1 207.9 493.1 208 496 208C549 208 592 165 592 112S549 16 496 16zM387 192H320V276C320 282.6 314.6 288 308 288H268C261.4 288 256 282.6 256 276V192H189C178.3 192 173 179.1 180.5 171.5L279.5 72.5C284.2 67.8 291.8 67.8 296.5 72.5L395.5 171.5C403.1 179.1 397.7 192 387 192z" />
+    <glyph glyph-name="cloud-download"
+      unicode="&#xF0ED;"
+      horiz-adv-x="640" d=" M543.7 247.9C539.7 305.9 491.4 352 432 352C424.4 352 416.9 351.2 409.6 349.7C377.7 389.7 328.1 416 272 416C187.4 416 116.5 356.3 99.7 276.2C39.9 251.9 0 193.6 0 128C0 39.6 71.6 -32 160 -32H496C575.5 -32 640 32.5 640 112C640 173.8 600.8 227.8 543.7 247.9zM496 16H160C98.1 16 48 66.1 48 128C48 184.4 89.7 231.1 144 238.9V240C144 310.7 201.3 368 272 368C325.5 368 371.3 335.2 390.4 288.6C401.6 298.2 416.1 304 432 304C467.3 304 496 275.3 496 240C496 228.2 492.8 217.1 487.2 207.6C490.1 207.9 493.1 208 496 208C549 208 592 165 592 112S549 16 496 16zM383.6 192.4C378.9000000000001 197.1 371.2000000000001 197.1 366.5 192.3L312 136.5V276C312 282.6 306.6 288 300 288H276C269.4 288 264 282.6 264 276V136.5L209.5 192.3C204.8 197.1 197.2 197.1 192.4 192.4L175.5 175.5C170.8 170.8 170.8 163.2 175.5 158.5L279.5 54.5C284.2 49.8 291.8 49.8 296.5 54.5L400.5 158.5C405.2 163.2 405.2 170.8 400.5 175.5L383.6 192.4z" />
+    <glyph glyph-name="cloud-drizzle"
+      unicode="&#xF738;"
+      horiz-adv-x="512" d=" M48 88C39.2 88 32 80.8 32 72V32C32 23.2 39.2 16 48 16S64 23.2 64 32V72C64 80.8 56.8 88 48 88zM144 8C135.2 8 128 0.8 128 -8V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V-8C160 0.8 152.8 8 144 8zM240 88C231.2 88 224 80.8 224 72V32C224 23.2 231.2 16 240 16S256 23.2 256 32V72C256 80.8 248.8 88 240 88zM336 8C327.2 8 320 0.8 320 -8V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V-8C352 0.8 344.8 8 336 8zM432 88C423.2 88 416 80.8 416 72V32C416 23.2 423.2 16 432 16S448 23.2 448 32V72C448 80.8 440.8 88 432 88zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176z" />
+    <glyph glyph-name="cloud-hail-mixed"
+      unicode="&#xF73A;"
+      horiz-adv-x="512" d=" M410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176zM87.2 78.3C79.3 82.2 69.7 79.1 65.7 71.1L49.7 39.1C45.8 31.2 48.9 21.6 56.9 17.6C59.2 16.5 61.7 15.9 64.1 15.9C69.9 15.9 75.6 19.1 78.4 24.7L94.4 56.7000000000001C98.2 64.8000000000001 95.1 74.4 87.2 78.3000000000001zM471.2 78.3C463.3 82.2 453.7 79.1 449.7 71.1L433.7 39.1C429.8 31.2 432.9 21.6 440.9 17.6C443.2 16.5 445.7 15.9 448.1 15.9C453.9 15.9 459.6 19.1 462.4 24.7L478.4 56.7000000000001C482.2 64.8000000000001 479.1 74.4 471.2 78.3000000000001zM375.9 77.9C368.3 82.3 358.5 79.7000000000001 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.2999999999999 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9zM279.2 78.3C271.3 82.2 261.7 79.1 257.7 71.1L241.7 39.1C237.8 31.2 240.9 21.6 248.9 17.6C251.2 16.5 253.7 15.9 256.1 15.9C261.9 15.9 267.6 19.1 270.4 24.7L286.4 56.7000000000001C290.2 64.8000000000001 287.1 74.4 279.2 78.3000000000001zM183.9 77.9C176.3 82.3 166.5 79.7000000000001 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.2999999999999 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM32 0C14.3 0 0 -14.3 0 -32S14.3 -64 32 -64S64 -49.7 64 -32S49.7 0 32 0zM224 0C206.3 0 192 -14.3 192 -32S206.3 -64 224 -64S256 -49.7 256 -32S241.7 0 224 0zM416 0C398.3 0 384 -14.3 384 -32S398.3 -64 416 -64S448 -49.7 448 -32S433.7 0 416 0z" />
+    <glyph glyph-name="cloud-hail"
+      unicode="&#xF739;"
+      horiz-adv-x="512" d=" M384 96C366.3 96 352 81.7 352 64S366.3 32 384 32S416 46.3 416 64S401.7 96 384 96zM192 0C174.3 0 160 -14.3 160 -32S174.3 -64 192 -64S224 -49.7 224 -32S209.7 0 192 0zM320 0C302.3 0 288 -14.3 288 -32S302.3 -64 320 -64S352 -49.7 352 -32S337.7 0 320 0zM256 96C238.3 96 224 81.7 224 64S238.3 32 256 32S288 46.3 288 64S273.7 96 256 96zM64 0C46.3 0 32 -14.3 32 -32S46.3 -64 64 -64S96 -49.7 96 -32S81.7 0 64 0zM128 96C110.3 96 96 81.7 96 64S110.3 32 128 32S160 46.3 160 64S145.7 96 128 96zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176z" />
+    <glyph glyph-name="cloud-meatball"
+      unicode="&#xF73B;"
+      horiz-adv-x="576" d=" M384.5 72.4L367.8 81.1L373.5 99.1C379.6 118.3 366 135 348.2 135C342.2 135 339.7 133.8 321.1 127.8999999999999L312.4 144.5999999999999C301.6 165.2999999999999 274.3 165.1999999999999 263.6 144.5999999999999L254.9 127.8999999999999C237.2 133.5 234.1 135 227.8 135C210 135 196.4 118.3 202.5 99.1L208.2 81.1L191.5 72.4C171 61.7 170.7 34.4 191.5 23.6L208.2 14.9L202.5 -3.1C196.2 -23 211.1 -39.5 228.6 -39.5C232.3 -39.5 241.1 -36.3 254.9 -31.9L263.6 -48.6C274.4 -69.2999999999999 301.7 -69.1999999999999 312.4 -48.6L321.1 -31.9C335 -36.3 343.7 -39.5 347.4 -39.5C365 -39.5 379.8 -23.1 373.5 -3.1L367.8 14.9L384.5 23.6C405.2 34.4 405.1 61.7 384.5 72.4zM576 192C576 251.2 534.5 302.1 478.4 315.8C468.9 372.6 419.4 416 360 416C347.2 416 334.4 413.8 322 409.5C293.6 434.5 258 448 220 448C137.7 448 70.1 383.9 64.4 303C24.8 280.4 0 238.4 0 192C0 121.4 57.4 64 128 64H146.5C150.3 77.1 158.5 88.8 170.2 96.8C169.2 101.9 169.1 107 169.4 112H128C83.9 112 48 147.9 48 192C48 224.5 67.4 253.5 97.6 265.9L113.2 272.3L112.4 289.2000000000001C112.3 290.6 112.2 292 112 292C112 351.5 160.4 400 220 400C250.1 400 278.2 387.6 299.1 365L311.4000000000001 351.7000000000001L327.6 359.9000000000001C376.6 384.8 431.1 347.3000000000001 432 297.4000000000001L429.2 273.3000000000001L454.1 271.4000000000001C495.6 268.2000000000001 528 233.4000000000001 528 192.1C528 148 492.1 112.1 448 112.1H406.6C406.9000000000001 107.1 406.8 102 405.9000000000001 96.9C417.6 88.9 425.8 77.2000000000001 429.6 64.1H448C518.6 64 576 121.4 576 192zM64 32C46.3 32 32 17.7 32 0S46.3 -32 64 -32S96 -17.7 96 0S81.7 32 64 32zM512 32C494.3 32 480 17.7 480 0S494.3 -32 512 -32S544 -17.7 544 0S529.7 32 512 32z" />
+    <glyph glyph-name="cloud-moon-rain"
+      unicode="&#xF73C;"
+      horiz-adv-x="640" d=" M268.5 29.9C260.9 34.2 251.1 31.7 246.7 23.9L210.1 -40.1C205.7 -47.8 208.4 -57.5 216.1 -61.9C218.6 -63.3 221.3 -64 224 -64C229.5 -64 234.9 -61.1 237.9 -55.9L274.5 8.1C278.8 15.8 276.2 25.5 268.5 29.9zM172.5 29.9C164.9 34.2 155.1 31.7 150.7 23.9L114.1 -40.1C109.7 -47.8 112.4 -57.5 120.1 -61.9C122.6 -63.3 125.3 -64 128 -64C133.5 -64 138.9 -61.1 141.9 -55.9L178.5 8.1C182.8 15.8 180.2 25.5 172.5 29.9zM76.5 29.9C68.9 34.2 59.1 31.7 54.7 23.9L18.1 -40.1C13.7 -47.8 16.4 -57.5 24.1 -61.9C26.6 -63.3 29.3 -64 32 -64C37.5 -64 42.9 -61.1 45.9 -55.9L82.5 8.1C86.8 15.8 84.2 25.5 76.5 29.9zM364.5 29.9C356.9 34.2 347.1 31.7 342.7 23.9L306.1 -40.1C301.7 -47.8 304.4 -57.5 312.1 -61.9C314.6 -63.3 317.3 -64 320 -64C325.5 -64 330.8999999999999 -61.1 333.8999999999999 -55.9L370.5 8.1C374.8 15.8 372.2 25.5 364.5 29.9zM363.4 264.6C351.4 301.4 316.7 328 276 328C272.9 328 269.9 327.8 266.9 327.5C245.3 343.3 219.2 352 192 352C139.6 352 94.4 320.7 74.8 274.8C31.4 260.7 0 220 0 172C0 112.4 48.4 64 108 64H308C367.6 64 416 112.4 416 172C416 210.8 395.2 245.6 363.4 264.6zM308 112H108C74.9 112 48 138.9 48 172S74.9 232 108 232C109.6 232 111.2 231.6 112.8 231.5C116.6 272.1 150.4 304 192 304C217.2 304 239.4 292.1 254.1 273.9C260.6 277.7000000000001 268 280 276 280C300.3 280 320 260.3 320 236C320 234.2 319.7 232.6 319.5 230.8C347.1 225.4 368 201.2 368 172C368 138.9 341.1 112 308 112zM637.8 211.3C634 219.2 626 224.3 617.3 224.3H615.8L613 223.9C606.9 222.7 600.7 222.1 594.6 222.1C541.4 222.1 498.1 265.5 498.1 318.9C498.1 353.6 516.9 385.9 547.1 403.1C555.5 407.9 559.9 417.1 558.3000000000001 426.7C556.7 436.2 549.5000000000001 443.5 540.0000000000001 445.3C530.3 447.1 520.5 448 510.7 448C437.1 448 375.6 397.7 357.1 329.8C370.9000000000001 317.9 382.1 303 389.7000000000001 285.7C390.3000000000001 285.3 390.7000000000001 284.8 391.3000000000001 284.4C391.3000000000001 285.6 390.9000000000001 286.8 390.9000000000001 288C390.9000000000001 346.9 433.5000000000001 396 489.5000000000001 406.1C469.6000000000001 381.9 458.2000000000001 351.2 458.2000000000001 319C458.2000000000001 251.6 507.0000000000001 195.5 571.1000000000001 184.1999999999999C553.1000000000001 173.6999999999999 532.4000000000001 168 510.9000000000001 168C487.5000000000002 168 465.8000000000001 175 447.3000000000002 186.6999999999999C447.8000000000002 181.8 448.2000000000001 176.8999999999999 448.2000000000001 172C448.2000000000001 161.8999999999999 446.9000000000001 152.1999999999999 444.9000000000001 142.6999999999999C465.1000000000001 133.5 487.3000000000001 128 511.0000000000001 128C559.4000000000001 128 604.6000000000001 149.6 635.2000000000002 187.1999999999999C640.5000000000001 194.0999999999999 641.6000000000001 203.2999999999999 637.8000000000002 211.2999999999999z" />
+    <glyph glyph-name="cloud-moon"
+      unicode="&#xF6C3;"
+      horiz-adv-x="640" d=" M390.8 151.6C383.3 201.6 340 240 288 240C282.9 240 277.8 239.6 272.8 238.9C248.5 260 217.2 272 184 272C120 272 65.7 226.8 51.6 166.7C19.6 142.9 0 105 0 64C0 -6.6 57.4 -64 128 -64H332C396 -64 448 -12 448 52C448 93.8 425.2 131.3 390.8 151.6zM332 -16H128C83.8 -16 48 19.8 48 64C48 96.8 67.8 125 96.1 137.3C96.8 185.3 135.8 224 184 224C215.2 224 242.4 207.7 258.1 183.2C266.8 188.7 277 192 288 192C318.9 192 344 166.9 344 136C344 130.1 342.8 124.5 341.1 119.1C374.3 114.6 400 86.5 400 52C400 14.4 369.5 -16 332 -16zM637.6 160.8C633.5 169.4 625.2 174.7 615.8000000000001 174.7C614.3000000000001 174.7 612.8000000000001 174.6 611.2 174.3C603.5 172.8 595.7 172.1 588 172.1C521 172.1 466.5 226.8 466.5 294C466.5 337.7000000000001 490.1 378.3 528.1 400C537 405.1 541.7 415 540 425.1C538.3 435.3 530.6 443 520.5 444.9000000000001C509 446.9000000000001 497.3 448.0000000000001 485.5 448.0000000000001C385 448.0000000000001 302.4 370.1 294.5 271.4000000000001C311.3 270.6 327.3 266.6 342.1 260.1C344 326.4000000000001 390.6 381.7000000000001 452.9 396.2000000000001C431.0000000000001 367.1 418.5000000000001 331.3 418.5000000000001 293.8C418.5000000000001 212.7 475.5000000000001 144.7000000000001 551.4000000000001 127.9C531.3000000000001 117.5 508.8000000000001 111.9 485.5000000000001 111.9C478.8000000000001 111.9 472.4000000000001 113 465.9000000000001 113.9C473.2000000000001 98.4 477.7000000000001 81.6 479.2000000000001 64.2C481.3000000000001 64.1 483.4000000000001 63.9 485.5000000000001 63.9C543.6000000000001 63.9 597.9000000000001 89.8 634.5000000000001 135C640.5000000000001 142.4 641.7000000000002 152.3 637.6000000000001 160.8z" />
+    <glyph glyph-name="cloud-rain"
+      unicode="&#xF73D;"
+      horiz-adv-x="512" d=" M88 73.8C75.2 29.4 48 17.4 48 -13.9C48 -41.6 69.5 -64 96 -64S144 -41.6 144 -13.9C144 17.5 116.8 29.2 104 73.8C101.8 81.9 90.5 82.3 88 73.8zM248 73.8C235.2 29.4 208 17.4 208 -13.9C208 -41.6 229.5 -64 256 -64S304 -41.6 304 -13.9C304 17.5 276.8 29.2 264 73.8C261.8 81.9 250.5 82.3 248 73.8zM408 73.8C395.2 29.4 368 17.4 368 -13.9C368 -41.6 389.5 -64 416 -64S464 -41.6 464 -13.9C464 17.5 436.8 29.2 424 73.8C421.8 81.9 410.5 82.3 408 73.8zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176z" />
+    <glyph glyph-name="cloud-rainbow"
+      unicode="&#xF73E;"
+      horiz-adv-x="576" d=" M560.6 400C569.2 400.4 576 407.1 576 415.7V431.8C576 440.8 568.4 448.4 559.4 448C419.2 442 298.5 360.7 235.9 243.8C220 251.6 202.4 256 184 256C120 256 67.6 205.7 64.2 142.6C25.6 125.6 0 87.5 0 44C0 -15.5 48.4 -64 108 -64H404C463.6 -64 512 -15.5 512 44C512 82.5 491.6 115.9 461.2 135.1C484.9 165.8 520.3 187.1 560.9 191.3C569.3 192.2 576 198.7 576 207.2V223.3C576 232.5 568.3 240.2 559.2 239.4C498.2 234.1 445.4000000000001 200.2 413.7000000000001 151.5C412.7000000000001 151.6 411.8000000000001 151.9 410.7000000000001 152C405.1 169.8 394.7000000000001 185.1 381.4000000000001 197.2C422.6 253.2 487.1 291.1 560.7 295.7C569.2 296.2 576 302.9 576 311.5V327.5C576 336.6 568.4 344.2 559.3 343.7C468.1999999999999 338.5 388.6 290.7 339.2 220.3C330.5 222.7 321.3999999999999 224.2 312 224.2C300 224.2 288.2 221.8 277 217.7C331.2 321.5 436.9 394.4 560.6 400zM312 176C340.6 176 364.4 154.3 367.3 125.6L369.5 104H404C437.1 104 464 77.1 464 44S437.1 -16 404 -16H108C74.9 -16 48 10.9 48 44C48 72 67.1 96 94.4 102.3L115.2 107.1L112.4 132C112.2 133.3 112 134.6 112 136C112 175.7 144.3 208 184 208C209.2 208 232.2 194.9 245.4 172.9L258.7 150.8L279.8 165.6999999999999C289.4000000000001 172.3999999999999 300.5 176 312 176z" />
+    <glyph glyph-name="cloud-showers-heavy"
+      unicode="&#xF740;"
+      horiz-adv-x="512" d=" M87.9 77.9C80.3 82.3 70.5 79.7 66.1 71.9L2.1 -40.1C-2.3 -47.8 0.4 -57.6 8.1 -61.9C10.6 -63.3 13.3 -64 16 -64C21.5 -64 26.9 -61.1 29.9 -55.9L93.9 56.1C98.3 63.7000000000001 95.6 73.5 87.9 77.9zM471.9 77.9C464.3 82.3 454.5 79.7 450.1 71.9L386.1 -40.1C381.7 -47.8 384.4 -57.6 392.1 -61.9C394.6 -63.3 397.3 -64 400 -64C405.5 -64 410.8999999999999 -61.1 413.8999999999999 -55.9L477.8999999999999 56.1C482.2999999999999 63.7000000000001 479.5999999999999 73.5 471.8999999999999 77.9zM375.9 77.9C368.3 82.3 358.5 79.7 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.3 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9zM279.9 77.9C272.3 82.3 262.5 79.7 258.1 71.9L194.1 -40.1C189.7 -47.8 192.4 -57.6 200.1 -61.9C202.6 -63.3 205.3 -64 208 -64C213.5 -64 218.9 -61.1 221.9 -55.9L285.9 56.1C290.3 63.7000000000001 287.6 73.5 279.9 77.9zM183.9 77.9C176.3 82.3 166.5 79.7 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.3 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.1 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176z" />
+    <glyph glyph-name="cloud-showers"
+      unicode="&#xF73F;"
+      horiz-adv-x="512" d=" M48 80C39.2 80 32 72.8 32 64V-16C32 -24.8 39.2 -32 48 -32S64 -24.8 64 -16V64C64 72.8 56.8 80 48 80zM144 48C135.2 48 128 40.8 128 32V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V32C160 40.8 152.8 48 144 48zM240 80C231.2 80 224 72.8 224 64V-16C224 -24.8 231.2 -32 240 -32S256 -24.8 256 -16V64C256 72.8 248.8 80 240 80zM336 48C327.2 48 320 40.8 320 32V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V32C352 40.8 344.8 48 336 48zM432 80C423.2 80 416 72.8 416 64V-16C416 -24.8 423.2 -32 432 -32S448 -24.8 448 -16V64C448 72.8 440.8 80 432 80zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8zM404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176z" />
+    <glyph glyph-name="cloud-sleet"
+      unicode="&#xF741;"
+      horiz-adv-x="512" d=" M87.2 94.3C79.3 98.2 69.7 95 65.7 87.1L1.7 -40.9C-2.2 -48.8 0.9 -58.4 8.9 -62.4C11.2 -63.5 13.7 -64.1 16.1 -64.1C21.9 -64.1 27.6 -60.9 30.4 -55.3L94.4 72.7C98.2 80.8 95.1 90.4 87.2 94.3zM343.2 94.3C335.3 98.2 325.7 95 321.7 87.1L257.7 -40.9C253.8 -48.8 256.9 -58.4 264.9 -62.4C267.2 -63.5 269.7 -64.1 272.1 -64.1C277.9 -64.1 283.6 -60.9 286.4 -55.3L350.4 72.7C354.2 80.8 351.1 90.4 343.2 94.3zM494.9 58.9L486.9 72.8C484.7 76.6 479.8 77.9 476 75.7L448 59.6V88C448 92.4 444.4 96 440 96H424C419.6 96 416 92.4 416 88V59.6L388 75.7000000000001C384.2 77.9 379.3 76.6 377.1 72.8000000000001L369.1 58.9000000000001C366.9000000000001 55.1000000000001 368.2000000000001 50.2000000000001 372 48.0000000000001L399.9 32.0000000000001L372 16.0000000000001C368.2 13.8000000000001 366.9 8.9000000000001 369.1 5.1000000000001L377.1 -8.7999999999998C379.3 -12.5999999999999 384.2000000000001 -13.8999999999999 388 -11.6999999999998L416 4.4000000000002V-24C416 -28.4 419.6 -32 424 -32H440C444.4 -32 448 -28.4 448 -24V4.4L476 -11.7C479.8 -13.9 484.7 -12.6 486.9 -8.8000000000001L494.9 5.0999999999999C497.1 8.8999999999999 495.8 13.7999999999999 492 15.9999999999999L464.1 31.9999999999999L492 47.9999999999999C495.8 50.1999999999999 497.1 55.0999999999999 494.9 58.8999999999999zM238.9 58.9L230.9 72.8C228.7 76.6 223.8 77.9 220 75.7L192 59.6V88C192 92.4 188.4 96 184 96H168C163.6 96 160 92.4 160 88V59.6L132 75.7000000000001C128.2 77.9 123.3 76.6 121.1 72.8000000000001L113.1 58.9000000000001C110.9 55.1000000000001 112.2 50.2000000000001 116 48.0000000000001L143.9 32.0000000000001L116 16.0000000000001C112.2 13.8000000000001 110.9 8.9000000000001 113.1 5.1000000000001L121.1 -8.7999999999998C123.3 -12.5999999999999 128.2 -13.8999999999999 132 -11.6999999999998L160 4.4000000000002V-24C160 -28.4 163.6 -32 168 -32H184C188.4 -32 192 -28.4 192 -24V4.4L220 -11.7C223.8 -13.9 228.7 -12.6 230.9 -8.8000000000001L238.9 5.0999999999999C241.1 8.8999999999999 239.8 13.7999999999999 236 15.9999999999999L208.1 31.9999999999999L236 47.9999999999999C239.8 50.1999999999999 241.1 55.0999999999999 238.9 58.8999999999999zM512 236C512 293.3 467.1 340.3 410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H404C463.6 128 512 176.5 512 236zM48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176H108C74.9 176 48 202.9 48 236z" />
+    <glyph glyph-name="cloud-snow"
+      unicode="&#xF742;"
+      horiz-adv-x="512" d=" M510.9 58.9L502.9 72.8C500.7 76.6 495.8 77.9 492 75.6999999999999L464 59.5999999999999V88C464 92.4 460.4 96 456 96H440C435.6 96 432 92.4 432 88V59.6L404 75.7000000000001C400.2 77.9 395.3 76.6 393.1 72.8000000000001L385.1 58.9000000000001C382.9000000000001 55.1000000000001 384.2000000000001 50.2000000000001 388 48.0000000000001L415.9 32.0000000000001L388 16.0000000000001C384.2 13.8000000000001 382.9 8.9000000000001 385.1 5.1000000000001L393.1 -8.7999999999998C395.3 -12.5999999999999 400.2000000000001 -13.8999999999999 404 -11.6999999999998L432 4.4000000000002V-24C432 -28.4 435.6 -32 440 -32H456C460.4 -32 464 -28.4 464 -24V4.4L492 -11.7C495.8 -13.9 500.7 -12.6 502.9 -8.8000000000001L510.9 5.0999999999999C513.1 8.8999999999999 511.8 13.7999999999999 508 15.9999999999999L480.1 31.9999999999999L508 47.9999999999999C511.8 50.1999999999999 513.1 55.0999999999999 510.9 58.8999999999999zM126.9 58.9L118.9 72.8C116.7 76.6 111.8 77.9 108 75.6999999999999L80 59.5999999999999V88C80 92.4 76.4 96 72 96H56C51.6 96 48 92.4 48 88V59.6L20 75.7000000000001C16.2 77.9 11.3 76.6 9.1 72.8000000000001L1.1 58.9000000000001C-1.1 55.1000000000001 0.2 50.2000000000001 4 48.0000000000001L31.9 32.0000000000001L4 16C0.2 13.8 -1.1 8.9 1.1 5.1L9.1 -8.8C11.3 -12.6 16.2 -13.9 20 -11.6999999999999L48 4.4000000000001V-24C48 -28.4 51.6 -32 56 -32H72C76.4 -32 80 -28.4 80 -24V4.4L108 -11.7C111.8 -13.9 116.7 -12.6 118.9 -8.8000000000001L126.9 5.0999999999999C129.1 8.8999999999999 127.8 13.7999999999999 124 15.9999999999999L96.1 31.9999999999999L124 47.9999999999999C127.8 50.1999999999999 129.1 55.0999999999999 126.9 58.8999999999999zM318.9 26.9L310.9 40.8C308.7 44.6 303.8 45.9 300 43.6999999999999L272 27.5999999999999V56C272 60.4 268.4 64 264 64H248C243.6 64 240 60.4 240 56V27.6L212 43.7C208.2 45.9 203.3 44.6 201.1 40.8000000000001L193.1 26.9000000000001C190.9 23.1000000000001 192.2 18.2000000000001 196 16.0000000000001L223.9 1e-13L196 -15.9999999999999C192.2 -18.1999999999999 190.9 -23.0999999999999 193.1 -26.8999999999999L201.1 -40.7999999999998C203.3 -44.5999999999998 208.2 -45.8999999999999 212 -43.6999999999998L240 -27.5999999999998V-56C240 -60.4 243.6 -64 248 -64H264C268.4 -64 272 -60.4 272 -56V-27.6L300 -43.7C303.8 -45.9 308.7 -44.6 310.9 -40.8000000000001L318.9 -26.9000000000001C321.1 -23.1000000000001 319.8 -18.2000000000001 316 -16.0000000000001L288.1 -1e-13L316 15.9999999999999C319.8 18.1999999999999 321.1 23.0999999999999 318.9 26.8999999999999zM108 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128zM94.4 294.3L115.1 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3z" />
+    <glyph glyph-name="cloud-sun-rain"
+      unicode="&#xF743;"
+      horiz-adv-x="640" d=" M588.5 29.9C580.9 34.2 571.1 31.7 566.7 23.9L530.1 -40.1C525.7 -47.8 528.4 -57.5 536.1 -61.9C538.6 -63.3 541.3000000000001 -64 544 -64C549.5 -64 554.9 -61.1 557.9 -55.9L594.5 8.1C598.8 15.8 596.2 25.5 588.5 29.9zM492.5 29.9C484.9 34.2 475.1 31.7 470.7 23.9L434.1 -40.1C429.7 -47.8 432.4 -57.5 440.1 -61.9C442.6 -63.3 445.3 -64 448 -64C453.4999999999999 -64 458.8999999999999 -61.1 461.8999999999999 -55.9L498.4999999999999 8.1C502.8 15.8 500.1999999999999 25.5 492.4999999999999 29.9zM396.5 29.9C388.9 34.2 379.1 31.7 374.7 23.9L338.1 -40.1C333.7 -47.8 336.4 -57.5 344.1 -61.9C346.6 -63.3 349.3 -64 352 -64C357.5 -64 362.8999999999999 -61.1 365.8999999999999 -55.9L402.5 8.1C406.8 15.8 404.2 25.5 396.5 29.9zM300.5 29.9C292.9 34.2 283.1 31.7 278.7 23.9L242.1 -40.1C237.7 -47.8 240.4 -57.5 248.1 -61.9C250.6 -63.3 253.3 -64 256 -64C261.5 -64 266.9 -61.1 269.9 -55.9L306.5 8.1C310.8 15.8 308.2 25.5 300.5 29.9zM587.4 264.6C575.4 301.4 540.6999999999999 328 500 328C496.9 328 493.9 327.8 490.9 327.5C469.3 343.3 443.2 352 416 352C363.6 352 318.4 320.7 298.8 274.8C255.4 260.7 224 220 224 172C224 112.4 272.4 64 332 64H532C591.6 64 640 112.4 640 172C640 210.8 619.2 245.6 587.4 264.6zM532 112H332C298.9 112 272 138.9 272 172S298.9 232 332 232C333.6 232 335.2 231.6 336.8 231.5C340.6 272.1 374.4000000000001 304 416 304C441.2 304 463.4 292.1 478.1 273.9C484.6 277.7000000000001 492 280 500 280C524.3 280 544 260.3 544 236C544 234.2 543.7 232.6 543.5 230.8C571.1 225.4 592 201.2 592 172C592 138.9 565.1 112 532 112zM192.9 184.3L187 175.6L176.2 159.6L165 176.3L147.2 202.6L116 196.6L96.6 192.8L100.4 212.4L106.4 243.5L80.2 261.3L63.7 272.5L80.2 283.7L106.4 301.5L100.4 332.6L96.6 352.1L116 348.3L147.2 342.3L165 368.5L175.8 384.5L187 367.7L204.8 341.4L236 347.4L255.4 351.1L251.6 331.5L245.6 300.4L259.1 291.2000000000001C264.4000000000001 294.4 269.8 297.4 275.5 299.9C282.5 312.9 291.2 324.7 301.2 335.1L308.2 371.2000000000001C310 380.3 307.1 389.6 300.6 396.2000000000001C295.4 401.5 288.3 404.4000000000001 281 404.4000000000001C279.2 404.4000000000001 277.3999999999999 404.2000000000001 275.7 403.9000000000001L227 394.5L199 435.8C193.9 443.4 185.2 448 176 448C167.1 448 158.1 444.2 153 436.5L125.2 395.3L76.5 404.7C74.7 405 72.9 405.2 71.2 405.2C63.9 405.2 56.9 402.3 51.6 397C45.1 390.4 42.2 381.1 44 372L53.4 323.2L12.3 295.3C4.6 290.2 0 281.6 0 272.4S4.6 254.5 12.2 249.3L53.3 221.5L43.9 172.7C42.1 163.6 45 154.3 51.5 147.7C56.7 142.4 63.8 139.5 71.1 139.5C72.9 139.5 74.7 139.7 76.4 140L125.1 149.4L152.9 108.2C158.1 100.5 166.7 95.9 175.9 95.9C184.8 95.9 193.8 99.7 198.9 107.4L204.1 115.2C196.3 132.6 191.8 151.7 191.8 171.9C192 176.2 192.5 180.2 192.9 184.3zM176 312C153.9 312 136 294.1 136 272S153.9 232 176 232S216 249.9 216 272S198.1 312 176 312z" />
+    <glyph glyph-name="cloud-sun"
+      unicode="&#xF6C4;"
+      horiz-adv-x="640" d=" M582.8 151.6C575.3 201.6 532 240 480 240C474.9 240 469.8 239.6 464.8 238.9C440.5 260 409.2 272 376 272C312 272 257.7 226.8 243.6 166.7C211.6 142.9 192 105 192 64C192 -6.6 249.4 -64 320 -64H524C588 -64 640 -12 640 52C640 93.8 617.2 131.3 582.8 151.6zM524 -16H320C275.8 -16 240 19.8 240 64C240 96.8 259.8 125 288.1 137.3C288.8 185.3 327.8 224 376 224C407.2 224 434.4 207.7 450.1 183.2C458.8 188.7 469 192 480 192C510.9 192 536 166.9 536 136C536 130.1 534.8 124.5 533.1 119.1C566.3000000000001 114.6 592 86.5 592 52C592 14.4 561.6 -16 524 -16zM106.5 106.7L115 150.6L121 181.7L94.8 199.5L57.8 224.6L94.8 249.7L121 267.5L115 298.6L106.5 342.5L150.2 334L181.4 328L199.2 354.3L224 391V390L248.9 353.1L266.7 326.8L297.9 332.8L341.5 341.3L333.1 297.7C347 301.5 361.3 304 376 304C378.4 304 380.7 303.5 383 303.4L392.1 350.4C394.3 362 390.7000000000001 373.9 382.4000000000001 382.2C375.7000000000001 388.9 366.8 392.6 357.4000000000001 392.6C355.2000000000001 392.6 352.9000000000001 392.4 350.6 392L288.6 380L253.2 432.4C246.7 442.2 235.8 448 224 448C212.6 448 201.3 443.1 194.7 433.3L159.3 380.9L97.3 392.9C95 393.3 92.8 393.6 90.5 393.6C81.2 393.6 72.2 389.9 65.5 383.2C57.2 374.8 53.6 363 55.8 351.4L67.8 289.3L15.5 253.8C5.8 247.2 0 236.2 0 224.5C0 212.7 5.8 201.8 15.6 195.2L67.9 159.8L55.9 97.7C53.7 86.1 57.3 74.2 65.6 65.9C72.3 59.2 81.2 55.5 90.6 55.5C92.8 55.5 95.1 55.7 97.4 56.1L159.4 68.1L160.2 66.8C160.5 84.8 164 102.4 170.1 119L150.3 115.2L106.5 106.7zM215.7 185.7C197.7 189.6 184 204.9 184 224C184 246.1 201.9 264 224 264C236 264 246.4 258.5 253.7 250.1C264.7 261.9 277.4 271.8 291.2 280C275.1 299.4 251.1 312 224 312C175.5 312 136 272.5 136 224C136 190.3 155.2 161.3 183.1 146.5C191.8 160.9 202.6 173.9 215.5 185C215.6 185.3 215.7 185.5 215.7 185.7z" />
+    <glyph glyph-name="cloud-upload-alt"
+      unicode="&#xF382;"
+      horiz-adv-x="640" d=" M395.5 180.5L296.5 279.5C291.8 284.2 284.2 284.2 279.5 279.5L180.5 180.5C172.9 172.9 178.3 160 189 160H256V76C256 69.4 261.4 64 268 64H308C314.6 64 320 69.4 320 76V160H387C397.7 160 403.1 172.9 395.5 180.5zM543.7 247.9C539.7 305.9 491.4 352 432 352C424.4 352 416.9 351.2 409.6 349.7C377.7 389.7 328.1 416 272 416C187.4 416 116.5 356.3 99.7 276.2C39.9 251.9 0 193.6 0 128C0 39.6 71.6 -32 160 -32H496C575.5 -32 640 32.5 640 112C640 173.8 600.8 227.8 543.7 247.9zM496 16H160C98.1 16 48 66.1 48 128C48 184.4 89.7 231.1 144 238.9V240C144 310.7 201.3 368 272 368C325.5 368 371.3 335.2 390.4 288.6C401.6 298.2 416.1 304 432 304C467.3 304 496 275.3 496 240C496 228.2 492.8 217.1 487.2 207.6C490.1 207.9 493.1 208 496 208C549 208 592 165 592 112S549 16 496 16z" />
+    <glyph glyph-name="cloud-upload"
+      unicode="&#xF0EE;"
+      horiz-adv-x="640" d=" M543.7 247.9C539.7 305.9 491.4 352 432 352C424.4 352 416.9 351.2 409.6 349.7C377.7 389.7 328.1 416 272 416C187.4 416 116.5 356.3 99.7 276.2C39.9 251.9 0 193.6 0 128C0 39.6 71.6 -32 160 -32H496C575.5 -32 640 32.5 640 112C640 173.8 600.8 227.8 543.7 247.9zM496 16H160C98.1 16 48 66.1 48 128C48 184.4 89.7 231.1 144 238.9V240C144 310.7 201.3 368 272 368C325.5 368 371.3 335.2 390.4 288.6C401.6 298.2 416.1 304 432 304C467.3 304 496 275.3 496 240C496 228.2 492.8 217.1 487.2 207.6C490.1 207.9 493.1 208 496 208C549 208 592 165 592 112S549 16 496 16zM296.5 297.5C291.8 302.2 284.2 302.2 279.5 297.5L175.5 193.5C170.8 188.8 170.8 181.2 175.5 176.5L192.4 159.6C197.1 154.9 204.8 154.9 209.5 159.7000000000001L264 215.5000000000001V76C264 69.4 269.4 64 276 64H300C306.6 64 312 69.4 312 76V215.5L366.5 159.7C371.2 154.9 378.8 154.9 383.6 159.6L400.5 176.5C405.2 181.1999999999999 405.2 188.8 400.5 193.5L296.5 297.5z" />
+    <glyph glyph-name="cloud"
+      unicode="&#xF0C2;"
+      horiz-adv-x="640" d=" M543.7 247.9C539.7 305.9 491.4 352 432 352C424.4 352 416.9 351.2 409.6 349.7C377.7 389.7 328.1 416 272 416C187.4 416 116.5 356.3 99.7 276.2C39.9 251.9 0 193.6 0 128C0 39.6 71.6 -32 160 -32H496C575.5 -32 640 32.5 640 112C640 173.8 600.8 227.8 543.7 247.9zM496 16H160C98.1 16 48 66.1 48 128C48 184.4 89.7 231.1 144 238.9V240C144 310.7 201.3 368 272 368C325.5 368 371.3 335.2 390.4 288.6C401.6 298.2 416.1 304 432 304C467.3 304 496 275.3 496 240C496 228.2 492.8 217.1 487.2 207.6C490.1 207.9 493.1 208 496 208C549 208 592 165 592 112S549 16 496 16z" />
+    <glyph glyph-name="clouds-moon"
+      unicode="&#xF745;"
+      horiz-adv-x="640" d=" M382.8 174.1C379 179.9 374.3 184.8 369.6 189.7000000000001C377 203.8000000000001 381.5 219.6000000000001 381.5 236.7000000000001C381.5 292.8000000000001 337.1 338.7000000000001 281.8 340.6C258.1 370.3000000000001 221.8 388.7000000000001 182.8 388.7000000000001C142.7 388.7000000000001 105.6 369.7000000000001 81.9 338.4000000000001C35.1 328.5 0 286.6 0 236.7C0 199.7 19.5 167.6 48.6 149.2C21.4 127.3 4.2 93.7 4.2 56C4.2 -10.2 57.7 -64 123.4 -64H361.8C427.5 -64 481 -10.2 481 56C481 115 438.6 164.2 382.8 174.1zM47.7 236.7C47.7 267.6 72.6 292.7 103.3 292.7H110C122.3 320.9 150.2 340.7 182.8 340.7C217 340.7 245.8 318.9 257.1 288.5C263.6 291.2 270.7000000000001 292.7 278.2000000000001 292.7C308.9000000000001 292.7 333.8000000000001 267.6 333.8000000000001 236.7C333.8000000000001 229.3 332.0000000000001 222.5 329.4000000000001 216C317.1000000000001 220.7 304.2000000000001 224 290.4000000000001 224C280.8000000000001 224 271.4000000000001 222.8 262.3000000000001 220.4C242.3000000000001 233.1 219.0000000000001 240 195.1000000000001 240C151.6000000000001 240 112.3000000000001 217.6 89.3000000000001 182.8C65.3000000000001 189.1 47.7000000000001 210.7 47.7000000000001 236.7zM361.8 -16H123.4C83.9 -16 51.9 16.2 51.9 56C51.9 93.6 80.6 124 117 127.3C124.1 164.1 156.3 192 194.9 192C218.6 192 239.7 181.3 254.3 164.7C264.5 171.8 276.9000000000001 176 290.3 176C320.3 176 345.2 155.1 351.9000000000001 127C355.2000000000001 127.5 358.4000000000001 128 361.8 128C401.3 128 433.3 95.8 433.3 56C433.4000000000001 16.2 401.3 -16 361.8 -16zM637.7 186C633.8000000000001 194.2 625.6 199.4 616.7 199.4H615.2L612.3000000000001 199C605.4000000000001 197.7 598.5000000000001 197 591.6 197C531.9 197 483.3 246.1 483.3 306.4C483.3 345.6 504.3 382.1 538.2 401.5C546.8000000000001 406.4 551.3000000000001 416 549.6 425.8C547.9 435.6 540.6 443.2 530.8000000000001 445C520.5000000000001 447 509.7 448 499.1000000000001 448C432.5000000000001 448 374.5000000000001 410.2 345.1000000000001 354.9C359.7000000000001 346.6 372.4000000000001 335.5 382.9000000000001 322.5C397.7000000000001 356.9 426.6000000000001 383.7 462.7000000000001 394.6C445.5000000000001 369 435.8000000000002 338.3 435.8000000000002 306.4C435.8000000000002 234.1 484.3000000000001 173.1 550.2000000000002 154.7C534.3000000000002 147.7 517.0000000000001 144 499.2000000000002 144C493.8000000000002 144 488.8000000000002 145.1 483.6000000000001 145.8C494.3000000000001 131.1 502.1000000000001 114.4 507.1000000000001 96.5C557.0000000000001 98.7 603.2000000000002 121.9 634.9000000000001 161.2C640.5000000000001 168.3 641.6000000000001 177.8 637.7 186z" />
+    <glyph glyph-name="clouds-sun"
+      unicode="&#xF746;"
+      horiz-adv-x="640" d=" M640 211.2C640 262 601.5 304.1 552.2 309.8C532 344.6 494.4 368 452 368C406 368 366.1 341.6 347.5 302C315.8 288.2 293.1 258.4 288.9 223C266.6 210.3 248.2 191.2 236.8 167.7C191.4 150.4 160 106.9 160 56C160 -10.2 213.8 -64 280 -64H520C586.2 -64 640 -10.2 640 56C640 88 627.2 116.8 606.7 138.3C626.8000000000001 156.4 640 182 640 211.2zM520 -16H280C240.2 -16 208 16.2 208 56C208 93.6 236.9 124 273.5 127.3C280.7 164.1 313 192 352 192C375.9 192 397.1 181.3 411.8 164.7C422.1 171.8 434.6 176 448 176C478.2 176 503.3 155.1 510 127C513.3 127.5 516.5 128 520 128C559.8 128 592 95.8 592 56S559.8 -16 520 -16zM565.6 166.7C557.8000000000001 169.9 549.7 172.7 541.1 174.2C520.8000000000001 204.7 486.4 224 448 224C438.4 224 428.8 222.8 419.7 220.4C399.5 233.1 376.1 240 352 240C349.8 240 347.8 239.6 345.6 239.5C354.4000000000001 252.4 368.4000000000001 261.4 385 262.1C389.9 294.8 417.9 319.9 452 319.9C487.8 319.9 516.8 292.1 519.5 257C526 260.1 533.1 262.3 540.8 262.3C569.0999999999999 262.3 592 239.4 592 211.1C592 192 581.3 175.4 565.6 166.7zM115 150.6L121 181.7000000000001L94.8 199.5000000000001L57.8 224.6000000000001L94.8 249.7000000000001L121 267.5000000000001L115 298.6L106.5 342.5000000000001L150.2 334.0000000000001L181.4 328.0000000000001L199.2 354.3000000000001L224 391V390L248.9 353.1L266.7 326.8L297.9 332.8L333 339.6C346.1 357.6 362.9 372.1 382.2 382.4C375.6 388.9 366.8 392.6 357.6 392.6C355.4 392.6 353.1 392.4 350.8 392L288.8 380L253.4 432.4C246.7 442.2 235.8 448 224 448C212.6 448 201.3 443.1 194.7 433.3L159.3 380.9L97.3 392.9C95 393.3 92.8 393.6 90.5 393.6C81.2 393.6 72.2 389.9 65.5 383.2C57.2 374.8 53.6 363 55.8 351.4L67.8 289.3L15.5 253.8C5.8 247.2 0 236.2 0 224.5C0 212.7 5.8 201.8 15.6 195.2L67.9 159.8L55.9 97.7C53.7 86.1 57.3 74.2 65.6 65.9C72.3 59.2 81.2 55.5 90.6 55.5C92.8 55.5 95.1 55.7 97.4 56.1L128.5 62.1C129.2 80 132.9 97.2000000000001 139.3 113.1L106.6 106.8L115 150.6zM224 264C239.5 264 252.7 254.9 259.3 241.9C259.6 242.1 259.9000000000001 242.3 260.1 242.5C264.3 259.6 271.7000000000001 275.6 282.1 289.6C266.6 303.3 246.4000000000001 312 224 312C175.5 312 136 272.5 136 224C136 197.3 148.2 173.7 167 157.5C178.1 169.8 191.4 180.2 206.5 188.5C193.3 195 184 208.3 184 224C184 246.1 201.9 264 224 264z" />
+    <glyph glyph-name="clouds"
+      unicode="&#xF744;"
+      horiz-adv-x="640" d=" M538.7 151.8C525.2 194.2 486 224 440 224C426.5 224 413.2 221.4 400.8 216.3C399 218.4 396.7 219.9 394.8 221.8C411.8 240.8 421.3 265.4 421.3 290.7000000000001C421.3 348 374.6 394.7000000000001 317.3 394.7000000000001C310.3 394.7000000000001 303.4000000000001 394 296.6 392.6C275.5 426.4 238 448 197.3 448C146.1 448 101.3 414.1 86 366.4C37.2 357.9 0 315.2 0 264C0 206.7 46.7 160 104 160H194.8C193.6 154.3 192.5 148.6 192.1 142.6C153.5 125.6 127.9 87.5 127.9 44C127.9 -15.5 176.3 -64 235.9000000000001 -64H531.9000000000001C591.5000000000001 -64 639.9000000000001 -15.5 639.9000000000001 44C640.0000000000001 101.3 595.1000000000001 148.3 538.7 151.8zM104 208C73.1 208 48 233.1 48 264C48 294.4 72.4 319.3 102.7 320L126.1 319.2L129.1 340.5C133.9 374.4 163.3 400 197.3 400C226.3 400 251.6 382.3 261.9 355L270.9 331L294.2 341.6C301.7 345 309.4 346.7 317.2 346.7C348.1 346.7 373.2 321.6 373.2 290.7C373.2 274.9 366.5 260.2 354.4 249.3L353.1 248.1C340.1 252.9 326.3 256 311.8 256C272.7 256 238 237.1 216.1 208H104zM532 -16H236C202.9 -16 176 10.9 176 44C176 72 195.1 96 222.4 102.3L243.2 107.1L240.4 132C240.2 133.3 240 134.6 240 136C240 175.7 272.3 208 312 208C337.2 208 360.2 194.9 373.4 172.9L386.7 150.8L407.8 165.6999999999999C417.4000000000001 172.5 428.5 176 440 176C468.6 176 492.4 154.3 495.3 125.6L497.5 103.9999999999999H532C565.1 103.9999999999999 592 77.1 592 43.9999999999999S565.1 -16.0000000000001 532 -16.0000000000001z" />
+    <glyph glyph-name="club"
+      unicode="&#xF327;"
+      horiz-adv-x="512" d=" M256 400C316.3 400 357.3 339.1 335.6 283.5L321 246.1C319.4 242.1 322.4 237.9 326.6 237.9C326.9000000000001 237.9 327.1 237.9 327.4000000000001 238L367.2000000000001 243.3C371.1 243.8 374.9000000000001 244.1 378.7000000000001 244.1C425.5000000000001 244.1 464.2 205.9 464.0000000000001 158.3C463.8000000000001 111 424.6000000000001 73.2000000000001 377.4000000000001 73.2000000000001H376.6000000000001C338.5000000000001 73.5000000000001 327.7000000000001 79.2000000000001 298.2000000000001 109.4C297.0000000000001 110.7000000000001 295.5000000000001 111.2000000000001 294.0000000000001 111.2000000000001C290.9000000000001 111.2000000000001 288.0000000000001 108.8000000000001 288.0000000000001 105.2000000000001V88C288.0000000000001 50.3 285.7000000000001 39.2 312.7000000000001 5.1C319.5000000000001 -3.4 313.4000000000001 -16 302.5000000000001 -16H209.4000000000001C198.5000000000001 -16 192.5000000000001 -3.4 199.2000000000001 5.1C226.2000000000001 39.1 223.9000000000001 50.3 223.9000000000001 88V105.1C223.9000000000001 108.7000000000001 220.9000000000001 111.1 217.9000000000001 111.1C216.4000000000001 111.1 214.9000000000001 110.5 213.7000000000001 109.3C184.5000000000001 79.4 173.6000000000001 73.5 135.4000000000001 73.1H134.6000000000001C87.4000000000001 73.1 48.1000000000001 111 48.0000000000001 158.3C47.9000000000001 205.8 86.6000000000001 243.9 133.3000000000001 243.9C137.1000000000001 243.9 140.9000000000001 243.7 144.8000000000001 243.1L184.6000000000001 237.8C184.9000000000001 237.8 185.1000000000001 237.7 185.4000000000001 237.7C189.5000000000001 237.7 192.5000000000001 241.9 191.0000000000001 245.9L176.4000000000001 283.3C154.6 339.2 195.8 400 256 400M256 448C233.6 448 211.5 442.4 192.1 431.8C173.8 421.8 157.8 407.2 145.9 389.8C134 372.4 126.3 352.2 123.6 331.4C121.9 318.2000000000001 122.2 304.8 124.5 291.7C109.7 290.7 95.2 287.3 81.4 281.4C65.5 274.6 51.2 265 39 252.7C13.8 227.4 -0.1 193.9 0 158.2C0.2 84.8 60.5 25.1 134.6 25.1H135.8C142.7 25.2 149.3 25.4 155.7 25.9C151.8 18.7 149.4 10.7 148.6 2.4C147.6 -8.6 149.6 -19.7 154.5 -29.6C159.3 -39.6 166.7 -47.9999999999999 175.9 -54.1C185.8 -60.6 197.4 -64.0999999999999 209.4 -64.0999999999999H302.5C314.5 -64.0999999999999 326.1 -60.5999999999999 336 -54.0999999999999C345.2 -47.9999999999999 352.6 -39.5999999999999 357.4 -29.5999999999999C362.2 -19.5999999999999 364.2 -8.5999999999999 363.3 2.4000000000001C362.6 10.7000000000001 360.1 18.6000000000001 356.2 25.9000000000001C362.5999999999999 25.4000000000001 369.2 25.1000000000001 376.2 25.1000000000001H377.3999999999999C451.3 25.1000000000001 511.6999999999999 84.7000000000001 511.9999999999999 158.0000000000001C512.0999999999999 193.7000000000001 498.2999999999999 227.3000000000002 473.0999999999999 252.6000000000001C460.7999999999999 264.9000000000001 446.5999999999999 274.6000000000002 430.5999999999999 281.3000000000001C416.7999999999999 287.2000000000001 402.2999999999999 290.6000000000002 387.4999999999999 291.6000000000002C389.7999999999999 304.7000000000001 390.0999999999999 318.1000000000002 388.3999999999999 331.3000000000002C385.6999999999999 352.1000000000002 377.9999999999999 372.3000000000002 366.0999999999999 389.7000000000001S338.1999999999999 421.6000000000002 319.8999999999999 431.6000000000002C300.5 442.4 278.4 448 256 448z" />
+    <glyph glyph-name="cocktail"
+      unicode="&#xF561;"
+      horiz-adv-x="576" d=" M296 -16H232V101.22L408.74 277.9500000000001C424.26 293.4700000000001 413.27 320 391.32 320H24.68C2.73 320 -8.26 293.4700000000001 7.26 277.9500000000001L184 101.22V-16H120C97.91 -16 80 -33.91 80 -56C80 -60.42 83.58 -64 88 -64H328C332.42 -64 336 -60.42 336 -56C336 -33.91 318.09 -16 296 -16zM81.1 272H334.9L208 145.1L81.1 272zM432 448C369.39 448 316.65 407.8 296.82 352H349.36C366.01 380.55 396.63 400 432 400C484.93 400 528 356.94 528 304S484.93 208 432 208C417.96 208 404.71 211.2 392.68 216.64L357.42 181.38C379.23 168.08 404.59 160 432 160C511.53 160 576 224.47 576 304S511.53 448 432 448z" />
+    <glyph glyph-name="code-branch"
+      unicode="&#xF126;"
+      horiz-adv-x="384" d=" M384 304C384 348.2 348.2 384 304 384S224 348.2 224 304C224 267.6 248.3 236.9 281.5 227.2C280.9 211.1 277.3 198.7 270.5 190.3C255.1 171.1 221.2 167.9 185.3 164.6C157.1 162 127.9 159.2000000000001 104 147.7000000000001V291.7000000000001C136.5 301.9000000000001 160 332.2000000000001 160 368.0000000000001C160 412.2000000000001 124.2 448.0000000000001 80 448.0000000000001S0 412.2 0 368C0 332.2 23.5 301.9 56 291.7V92.4C23.5 82.1 0 51.8 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 50 138.8 79.1 108.8 90.6C111.9 95.8 116.6 100.4 123.7 104C139.9 112.2 164.1 114.4 189.8 116.8C232 120.7 279.8 125.2 308 160.3C322 177.7 329.1 200.1 329.6 228.2C361.2000000000001 238.9 384 268.8 384 304zM80 400C97.6 400 112 385.6 112 368S97.6 336 80 336S48 350.4 48 368S62.4 400 80 400zM80 -16C62.4 -16 48 -1.6 48 16S62.4 48 80 48S112 33.6 112 16S97.6 -16 80 -16zM304 272C286.4 272 272 286.4 272 304S286.4 336 304 336S336 321.6 336 304S321.6 272 304 272z" />
+    <glyph glyph-name="code-commit"
+      unicode="&#xF386;"
+      horiz-adv-x="640" d=" M128 192C128 181.2 128.9 170.5 130.6 160H12C5.4 160 0 165.4 0 172V212C0 218.6 5.4 224 12 224H130.6C128.9 213.5 128 202.8 128 192zM628 224H509.4C511.2 213.5 512 202.8 512 192S511.1 170.5 509.4 160H628C634.6 160 640 165.4 640 172V212C640 218.6 634.6 224 628 224zM320 304C290.1 304 262 292.3 240.8 271.2C219.6 250 208 221.9 208 192S219.6 134 240.8 112.8C262 91.7 290.1 80 320 80S378 91.7 399.2 112.8C420.4 134 432 162.1 432 192S420.4 250 399.2 271.2C378 292.3 349.9 304 320 304M320 352C408.4 352 480 280.4 480 192S408.4 32 320 32S160 103.6 160 192S231.6 352 320 352z" />
+    <glyph glyph-name="code-merge"
+      unicode="&#xF387;"
+      horiz-adv-x="384" d=" M304 256C266 256 234.2 229.5 226.1 194C202.2 197.5 168.1 206.9 142.2 231.6C125.6 247.5 114.3 268.1 108.5 293.2C138.6 304.7 160 333.9 160 368C160 412.2 124.2 448 80 448S0 412.2 0 368C0 332.2 23.5 301.9 56 291.7V92.4C23.5 82.1 0 51.8 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 51.8 136.5 82.1 104 92.3V201.9C105.6 200.2 107.3 198.5 109 196.9C148.3 159.4 199.4 148.3 230.2 145.1C242.3 116.2000000000001 270.8 95.9 304 95.9C348.2 95.9 384 131.7000000000001 384 175.9S348.2 256 304 256zM80 400C97.6 400 112 385.6 112 368S97.6 336 80 336S48 350.4 48 368S62.4 400 80 400zM80 -16C62.4 -16 48 -1.6 48 16S62.4 48 80 48S112 33.6 112 16S97.6 -16 80 -16zM304 144C286.4 144 272 158.4 272 176S286.4 208 304 208S336 193.6 336 176S321.6 144 304 144z" />
+    <glyph glyph-name="code"
+      unicode="&#xF121;"
+      horiz-adv-x="576" d=" M234.8 -63.7L196 -52.4C191.8 -51.2 189.3 -46.7 190.5 -42.5L331.3 442.2C332.5 446.4 337 448.9 341.2 447.7L380 436.4C384.2 435.2 386.7 430.7 385.5 426.5L244.7 -58.2C243.5 -62.5 239.1 -64.9 234.8 -63.7zM151.6 57.4L178.8 86.4C181.9 89.7 181.6 94.9 178.3 97.9L72.2 192L178.3 286.1C181.7 289.1 181.9 294.3 178.8 297.6L151.6 326.6C148.6 329.8 143.5 330 140.3 327L2.5 197.8C-0.9 194.6 -0.9 189.3 2.5 186.1L140.3 57C143.5 54 148.5 54.2 151.6 57.4zM435.7000000000001 57L573.4000000000001 186.1C576.8000000000001 189.3 576.8000000000001 194.6 573.4000000000001 197.8L435.7 327C432.5 330 427.4 329.9 424.4 326.6L397.2 297.6C394.1 294.3 394.4 289.1 397.7 286.1L503.8 192L397.7000000000001 97.9C394.3000000000001 94.9 394.1 89.7 397.2000000000001 86.4L424.4000000000001 57.4C427.5000000000001 54.2 432.5000000000001 54 435.7000000000001 57z" />
+    <glyph glyph-name="coffee-togo"
+      unicode="&#xF6C5;"
+      horiz-adv-x="448" d=" M432 352H416L391.29 426.12C386.94 439.19 374.71 448 360.94 448H86.94C73.16 448 61.07 439.19 56.71 426.12L32 352H16C7.16 352 0 344.8400000000001 0 336V304C0 295.16 7.16 288 16 288H35.84L61.64 -34.55C62.97 -51.18 76.86 -64 93.54 -64H354.4600000000001C371.1400000000001 -64 385.0300000000001 -51.18 386.36 -34.55L412.1600000000001 288H432C440.84 288 448 295.16 448 304V336C448 344.8400000000001 440.84 352 432 352zM98.6 400H349.4L370.73 336H77.26L98.6 400zM108.31 -16L100.63 80H347.36L339.68 -16H108.31zM358.89 224H89.11L83.99 288H364L358.89 224z" />
+    <glyph glyph-name="coffee"
+      unicode="&#xF0F4;"
+      horiz-adv-x="640" d=" M512 416H112C103.2 416 96 408.8 96 400V144C96 99.8 131.8 64 176 64H400C444.2 64 480 99.8 480 144V160H512C582.6 160 640 217.4 640 288S582.6 416 512 416zM432 144C432 126.4 417.6 112 400 112H176C158.4 112 144 126.4 144 144V368H432V144zM512 208H480V368H512C556.1 368 592 332.1 592 288S556.1 208 512 208zM567.8 -32H40.2C2.9 -32 -10 16 8.2 16H599.9000000000001C618.0000000000001 16 605.1000000000001 -32 567.8000000000001 -32z" />
+    <glyph glyph-name="coffin"
+      unicode="&#xF6C6;"
+      horiz-adv-x="384" d=" M374.45 332.81L266.71 438.63C260.6 444.63 252.31 448 243.67 448H140.33C131.69 448 123.4 444.63 117.29 438.63L9.55 332.81C1.46 324.86 -1.8 313.3300000000001 0.98 302.42L88.09 -39.76C91.71 -54.01 104.75 -64 119.7 -64H264.32C279.27 -64 292.3 -54.01 295.93 -39.76L383.04 302.42C385.8 313.3300000000001 382.55 324.86 374.4500000000001 332.81zM252.44 -16H131.56L49.82 305.0900000000001L146.46 400H237.54L334.18 305.0900000000001L252.44 -16zM216 336C216 344.8400000000001 208.84 352 200 352H184C175.16 352 168 344.8400000000001 168 336V288H112C103.16 288 96 280.8400000000001 96 272V256C96 247.16 103.16 240 112 240H168V112C168 103.16 175.16 96 184 96H200C208.84 96 216 103.16 216 112V240H272C280.84 240 288 247.16 288 256V272C288 280.8400000000001 280.84 288 272 288H216V336z" />
+    <glyph glyph-name="cog"
+      unicode="&#xF013;"
+      horiz-adv-x="512" d=" M452.515 211L484.358 229.382C493.784 234.823 498.354 245.924 495.535 256.4360000000001C484.131 298.967 461.693 336.983 431.4770000000001 367.233C423.7970000000001 374.921 411.9020000000001 376.479 402.492 371.044L370.707 352.6860000000001A196.276 196.276 0 0 1 337.808 371.706V408.459A24.016000000000002 24.016000000000002 0 0 1 319.966 431.665C278.205 442.772 233.849 442.786 192.036 431.666C181.517 428.868 174.192 419.3450000000001 174.192 408.4600000000001V371.707A196.276 196.276 0 0 1 141.293 352.687L109.508 371.045C100.098 376.48 88.203 374.9220000000001 80.523 367.2340000000001C50.307 336.9840000000001 27.869 298.969 16.465 256.437C13.646 245.925 18.216 234.824 27.642 229.383L59.485 211A197.715 197.715 0 0 1 59.485 173.001L27.642 154.619C18.216 149.178 13.646 138.077 16.465 127.565C27.869 85.034 50.307 47.018 80.523 16.768C88.203 9.08 100.098 7.522 109.508 12.9570000000001L141.293 31.3150000000001A196.20199999999997 196.20199999999997 0 0 1 174.192 12.296V-24.4569999999999A24.016000000000002 24.016000000000002 0 0 1 192.034 -47.663C233.795 -58.77 278.151 -58.785 319.964 -47.6639999999999C330.483 -44.8659999999999 337.808 -35.3429999999999 337.808 -24.4579999999999V12.2950000000001A196.34 196.34 0 0 1 370.707 31.3140000000001L402.492 12.9560000000001C411.9020000000001 7.5210000000001 423.7970000000001 9.0790000000001 431.4770000000001 16.7670000000001C461.693 47.0170000000001 484.131 85.0330000000001 495.535 127.5640000000001C498.354 138.0760000000001 493.784 149.1770000000001 484.358 154.6180000000001L452.515 173C453.735 185.65 453.735 198.35 452.515 211zM399.836 147.981L443.6550000000001 122.692A200.138 200.138 0 0 0 409.8060000000001 64.164L365.9770000000001 89.473C333.9930000000001 62.076 329.3180000000001 59.396 289.8090000000001 45.444V-5.155A200.917 200.917 0 0 0 222.191 -5.155V45.444C182.6870000000001 59.394 177.995 62.086 146.023 89.473L102.194 64.164A200.14999999999998 200.14999999999998 0 0 0 68.345 122.692L112.164 147.981C104.534 189.28 104.53 194.7 112.164 236.019L68.345 261.308C76.195 282.537 87.655 302.357 102.194 319.837L146.023 294.528C178.007 321.925 182.683 324.606 222.191 338.557V389.155A200.917 200.917 0 0 0 289.8090000000001 389.155V338.5560000000001C329.3130000000001 324.606 334.005 321.914 365.9770000000001 294.5270000000001L409.8060000000001 319.836A200.143 200.143 0 0 0 443.6550000000001 261.307L399.836 236.0180000000001C407.467 194.718 407.4700000000001 189.3 399.836 147.981zM256 288C203.065 288 160 244.935 160 192S203.065 96 256 96S352 139.065 352 192S308.935 288 256 288zM256 144C229.532 144 208 165.532 208 192C208 218.467 229.532 240 256 240S304 218.467 304 192C304 165.532 282.468 144 256 144z" />
+    <glyph glyph-name="cogs"
+      unicode="&#xF085;"
+      horiz-adv-x="640" d=" M217.1 -30.1C193.3 -30.1 175.5 -26.6 159.6 -22.6C149 -19.9 141.5 -10.3 141.5 0.7V32.4C132.1 36.8 123.1 42 114.6 48L87.9 32.6C78.3 27 66 28.8 58.4 36.9C23 74.5000000000001 14.2 95.5000000000001 1.2 135.4C-2.4 146.3 2.3 158.1 12.2 163.8L39 178.8C38.1 189.1 38.1 199.5 39 209.9L12.2 225C2.2 230.6 -2.4 242.5 1.2 253.4C14.3 293.4 23.1 314.3 58.4 351.9C66 360 78.2 361.8 87.9 356.2L114.6 340.8C123.1 346.8 132.1 352 141.5 356.4V386.6C141.5 397.7 149.1 407.4 159.9 409.9C204.1 420.4 229.9 420.4 274.2 409.9C285 407.3 292.6 397.7 292.6 386.6V356.2000000000001C302 351.8 311 346.6 319.5 340.6L346.2 356C355.9 361.6 368.1 359.7 375.8 351.6C401.9000000000001 323.7 424.2 293.1 432.6 251.3C434.6 241.5 430.2000000000001 231.5 421.7000000000001 226.2L395.1 209.7C396 199.4 396 189 395.1 178.6L421.7000000000001 162.1C430.1 156.9 434.6 146.9 432.6 137.2000000000001C424.5 96.7000000000001 403 65.9 375.7000000000001 36.6C368.1 28.5 355.9000000000001 26.7 346.2000000000001 32.3L319.5000000000001 47.7C311.0000000000001 41.7 302.0000000000001 36.5 292.6000000000001 32.1V0.4C292.6000000000001 -10.6 285.2000000000001 -20.2 274.5000000000001 -22.9C258.7000000000001 -26.7 240.9000000000001 -30.1 217.1000000000001 -30.1zM189.5 20.6C207.8 17.7 226.4 17.7 244.6 20.6V65.4L260.6 71.1C275.8 76.4999999999999 289.7000000000001 84.4999999999999 301.9000000000001 94.9999999999999L314.8 105.9999999999999L353.6 83.6C365.3 97.9999999999999 374.6 114.1 381.2000000000001 131.3L342.4000000000001 153.6999999999999L345.5000000000001 170.3999999999999C348.4000000000001 186.2999999999999 348.4000000000001 202.3999999999999 345.5000000000001 218.2999999999999L342.4000000000001 234.9999999999999L381.2000000000001 257.3999999999999C374.6 274.5999999999999 365.3000000000001 290.7 353.6 305.0999999999999L314.8 282.7L301.9000000000001 293.7C289.6 304.2 275.7000000000001 312.2999999999999 260.6 317.5999999999999L244.6 323.2999999999999V368C226.3 370.9 207.7 370.9 189.5 368V323.2L173.5 317.5C158.3000000000001 312.1 144.4 304.1 132.2000000000001 293.6L119.3000000000001 282.6L80.5 305C68.8 290.6 59.5 274.5 52.9 257.3L91.7 234.9L88.6 218.2C85.7 202.3 85.7 186.2000000000001 88.6 170.3L91.7 153.6L52.9 131.2000000000001C59.5 114.0000000000001 68.8 97.8000000000001 80.5 83.5000000000001L119.3 105.9L132.2 94.9C144.5 84.4 158.4 76.3 173.5 71.0000000000001L189.5 65.3000000000001V20.6000000000001zM216.6 105.6999999999999C194 105.6999999999999 171.4 114.3 154.2 131.5C119.8 165.8999999999999 119.8 221.9 154.2 256.3C188.6 290.7 244.6 290.7 279 256.3C313.4 221.9 313.4 165.9 279 131.5C261.7 114.3 239.1 105.6999999999999 216.6 105.6999999999999zM216.6 234.1C206.3 234.1 196 230.2 188.1 222.2999999999999C172.4 206.5999999999999 172.4 181.0999999999999 188.1 165.3999999999999C203.8 149.6999999999999 229.3 149.6999999999999 245 165.3999999999999C260.7 181.0999999999999 260.7 206.5999999999999 245 222.2999999999999C237.2 230.2 226.9 234.1 216.6 234.1zM638.5 363C637.5 368.8 632.5 373 626.6 373H610.5C607 382.9 601.7 392 595 399.8L603 413.7C605.9 418.8 604.8 425.3 600.3 429C591 436.7 580.5 442.9 569 447.2C563.5 449.3 557.2 447.1 554.3 441.9L546.3 428C536.0999999999999 429.9 525.5999999999999 429.9 515.4 428L507.4 441.9C504.4 447 498.2 449.2 492.7 447.2C481.2 442.9 470.6 436.7 461.3 429C456.8 425.3 455.6 418.8 458.6 413.7L466.6 399.8C459.9 392 454.6 382.9 451.1 373H435C429.1 373 424 368.7 423.1 362.8C421.1 350.6 421.2000000000001 338.3 423.1 326.6C424.1 320.8 429.1 316.6 435 316.6H451.1C454.6 306.7 459.9 297.6 466.6 289.8L458.6 275.9C455.7 270.8 456.8 264.3 461.3 260.6C470.6 252.9 481.2 246.7 492.7 242.4C498.2 240.3 504.5 242.5 507.4 247.7L515.4 261.6C525.6 259.7 536.1 259.7 546.3 261.6L554.3 247.7C557.3 242.6 563.5 240.4 569 242.4C580.5 246.7 591.1 252.9 600.4 260.6C604.9 264.3 606.1 270.8 603.1 275.9L595.1 289.8C601.8000000000001 297.6 607.1 306.7 610.6 316.6H626.7C632.6 316.6 637.7 320.9 638.6 326.8C640.5 339 640.5 351.2 638.5 363zM530.7 312.8C513 312.8 498.7 327.1 498.7 344.8S513 376.8 530.7 376.8S562.7 362.5 562.7 344.8S548.4000000000001 312.8 530.7 312.8zM638.5 57.4C637.5 63.2 632.5 67.4 626.6 67.4H610.5C607 77.3 601.7 86.4 595 94.2L603 108.1C605.9 113.2 604.8 119.7 600.3 123.4C591 131.1 580.4 137.3 568.9 141.6C563.4 143.7 557.1 141.5 554.1999999999999 136.3L546.1999999999999 122.4C535.9999999999999 124.3 525.4999999999999 124.3 515.3 122.4L507.3 136.3C504.3 141.4 498.1 143.6 492.6 141.6C481.1 137.3 470.4999999999999 131.1 461.2 123.4C456.7 119.7 455.5 113.2 458.5 108.1L466.5 94.2C459.8 86.4 454.5 77.3 451 67.4H434.9C429 67.4 423.9 63.1 423 57.2C421 45 421.1 32.7 423 21C424 15.2 429 11 434.9 11H451C454.5 1.1 459.8 -8 466.5 -15.8L458.5 -29.7C455.6 -34.8 456.7 -41.3 461.2 -45C470.5 -52.7 481.1 -58.9 492.6 -63.2C498.1 -65.2999999999999 504.4 -63.1 507.3 -57.9L515.3 -44C525.5 -45.9 536 -45.9 546.1999999999999 -44L554.1999999999999 -57.9C557.1999999999999 -63 563.4 -65.1999999999999 568.9 -63.2C580.4 -58.9 591 -52.7 600.3 -45C604.8 -41.3 606 -34.8 603 -29.7L595 -15.8C601.7 -8 607 1.1 610.5 11H626.6C632.5 11 637.6 15.3 638.5 21.2C640.5 33.3 640.5 45.6 638.5 57.4zM530.7 7.2C513 7.2 498.7 21.5 498.7 39.2S513 71.2 530.7 71.2S562.7 56.9 562.7 39.2S548.4000000000001 7.2 530.7 7.2z" />
+    <glyph glyph-name="coins"
+      unicode="&#xF51E;"
+      horiz-adv-x="512" d=" M320 448C214 448 128 412.2 128 368V315.4C53.5 304.4 0 274.8 0 240V16C0 -28.2 86 -64 192 -64S384 -28.2 384 16V68.7C458.5 79.7 512 109.2 512 144V368C512 412.2 426 448 320 448zM336 19.7C326 8 275.6 -16 192 -16S58 8 48 19.7V59.2C83.2 42.6 134.6 32 192 32S300.8 42.6 336 59.2V19.7zM336 115.7C326 104 275.6 80 192 80S58 104 48 115.7V160.6C83.2 140.6 134.6 128 192 128S300.8 140.6999999999999 336 160.6V115.7zM192 176C112.5 176 48 197.5 48 224S112.5 272 192 272S336 250.5 336 224S271.5 176 192 176zM464 147.7C456.9 139.4 429.1 125.1 384 117.3V165C415 169.6 442.7 177.1 464 187.2V147.7zM464 243.7C456.9 235.4 429.1 221.1 384 213.3V240C384 247.2 381.5 254.2 377.2 260.9C411 266.2000000000001 441.2 275.7000000000001 464 288.7000000000001V243.7zM320 304C315 304 310.2 304.3 305.3 304.5C279.3 312.4 248.5 317.7 214.9 319.4C191 328 176 339.4 176 352C176 378.5 240.5 400 320 400S464 378.5 464 352S399.5 304 320 304z" />
+    <glyph glyph-name="columns"
+      unicode="&#xF0DB;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM232 16H54A6 6 0 0 0 48 22V336H232V16zM458 16H280V336H464V22A6 6 0 0 0 458 16z" />
+    <glyph glyph-name="comment-alt-check"
+      unicode="&#xF4A2;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM332.7 317.6C328.9 321.5 322.6 321.5 318.7 317.7L231.4 231L193.5 269.2C189.7 273.1 183.4 273.1 179.5 269.3L156.1 246.1C152.2 242.3 152.2 236 156 232.1L224.1 163.5C227.9 159.6 234.2 159.6 238.1 163.4L355.9 280.2C359.8 284 359.8 290.3 356 294.2L332.7 317.6z" />
+    <glyph glyph-name="comment-alt-dollar"
+      unicode="&#xF650;"
+      horiz-adv-x="512" d=" M448 448H64C28.65 448 0 419.35 0 384V96C0 60.65 28.65 32 64 32H160V-51.98C160 -59.08 165.83 -64 172.05 -64C174.46 -64 176.93 -63.26 179.13 -61.63L304 32H448C483.35 32 512 60.65 512 96V384C512 419.35 483.35 448 448 448zM464 96C464 87.18 456.82 80 448 80H288L275.2 70.4L208 20.01V80H64C55.18 80 48 87.18 48 96V384C48 392.82 55.18 400 64 400H448C456.82 400 464 392.82 464 384V96zM286.4100000000001 256.28L236.3400000000001 270.5800000000001A8.46 8.46 0 0 0 230.2200000000001 278.69C230.2200000000001 283.33 234.0000000000001 287.11 238.6600000000001 287.11H271.4400000000001C275.0400000000001 287.11 278.5200000000001 286.34 281.7000000000001 284.89C286.5000000000001 282.68 292.0700000000001 283.18 295.8100000000001 286.92L313.3300000000001 304.44C318.6 309.7100000000001 318.0000000000001 318.7200000000001 311.7800000000001 322.82C302.2800000000001 329.09 291.43 332.93 280 334.28V352C280 360.8400000000001 272.84 368 264 368H248C239.16 368 232 360.8400000000001 232 352V334.44C201.71 330.82 178.63 303.4600000000001 182.68 271.39C185.58 248.44 203.34 230.08 225.59 223.72L275.6600000000001 209.42A8.46 8.46 0 0 0 281.7800000000001 201.31C281.7800000000001 196.67 278.0000000000001 192.89 273.3400000000001 192.89H240.5600000000001C236.9600000000001 192.89 233.48 193.66 230.3000000000001 195.11C225.5000000000001 197.32 219.93 196.82 216.1900000000001 193.08L198.6700000000001 175.56C193.4 170.29 193.9900000000001 161.28 200.2200000000001 157.18C209.7200000000001 150.91 220.5700000000001 147.0699999999999 232.0000000000001 145.72V128C232.0000000000001 119.16 239.1600000000001 112 248.0000000000001 112H264.0000000000001C272.8400000000001 112 280.0000000000001 119.16 280.0000000000001 128V145.56C310.2900000000001 149.18 333.3700000000001 176.54 329.3200000000001 208.61C326.4200000000001 231.56 308.6600000000001 249.92 286.4100000000001 256.2800000000001z" />
+    <glyph glyph-name="comment-alt-dots"
+      unicode="&#xF4A3;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM128 272C110.3 272 96 257.7 96 240S110.3 208 128 208S160 222.3 160 240S145.7 272 128 272zM256 272C238.3 272 224 257.7 224 240S238.3 208 256 208S288 222.3 288 240S273.7 272 256 272zM384 272C366.3 272 352 257.7 352 240S366.3 208 384 208S416 222.3 416 240S401.7 272 384 272z" />
+    <glyph glyph-name="comment-alt-edit"
+      unicode="&#xF4A4;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM164.9 204.8L160.1 162C159.5 156.3 164.3 151.4 170.1 152L212.9 156.8L298.4 242.3L250.4 290.3L164.9 204.8zM324.2000000000001 338.7000000000001C317.2000000000001 345.7000000000001 305.8000000000001 345.7000000000001 298.8000000000001 338.7000000000001L270.5000000000001 310.4L318.5000000000001 262.4L346.8000000000001 290.7000000000001C353.8000000000001 297.7000000000001 353.8000000000001 309.1 346.8000000000001 316.1L324.2000000000001 338.7000000000001z" />
+    <glyph glyph-name="comment-alt-exclamation"
+      unicode="&#xF4A5;"
+      horiz-adv-x="512" d=" M256 192C238.3 192 224 177.7 224 160S238.3 128 256 128S288 142.3 288 160S273.7 192 256 192zM448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM284.7 352H227.3C217.3 352 209.7 342.9 211.6 333.1L229.6 237.1C231 229.5 237.6 224 245.3 224H266.7C274.4 224 281 229.5 282.4 237.1L300.4 333.1C302.3 342.9 294.7 352 284.7 352z" />
+    <glyph glyph-name="comment-alt-lines"
+      unicode="&#xF4A6;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM368 312H144C135.2 312 128 304.8 128 296V280C128 271.2 135.2 264 144 264H368C376.8 264 384 271.2 384 280V296C384 304.8 376.8 312 368 312zM272 216H144C135.2 216 128 208.8 128 200V184C128 175.2 135.2 168 144 168H272C280.8 168 288 175.2 288 184V200C288 208.8 280.8 216 272 216z" />
+    <glyph glyph-name="comment-alt-minus"
+      unicode="&#xF4A7;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM336 264H176C167.2 264 160 256.8 160 248V232C160 223.2 167.2 216 176 216H336C344.8 216 352 223.2 352 232V248C352 256.8 344.8 264 336 264z" />
+    <glyph glyph-name="comment-alt-plus"
+      unicode="&#xF4A8;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM336 264H280V320C280 328.8 272.8 336 264 336H248C239.2 336 232 328.8 232 320V264H176C167.2 264 160 256.8 160 248V232C160 223.2 167.2 216 176 216H232V160C232 151.2 239.2 144 248 144H264C272.8 144 280 151.2 280 160V216H336C344.8 216 352 223.2 352 232V248C352 256.8 344.8 264 336 264z" />
+    <glyph glyph-name="comment-alt-slash"
+      unicode="&#xF4A9;"
+      horiz-adv-x="640" d=" M634 -23L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L64 361.7L105.6 329.2L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23zM512 400C520.8 400 528 392.8 528 384V120.8L574.8 84.2C575.5 88 576 92 576 96V384C576 419.3 547.3 448 512 448H128C122.5 448 117.3 447.1 112.2 445.8L170.8 400H512zM339.2 70.4L272 20V80H128C119.2 80 112 87.2 112 96V263.2L64 300.7V96C64 60.7 92.7 32 128 32H224V-52C224 -59.1 229.8 -64 236 -64C238.4 -64 240.9 -63.3 243.1 -61.6L368 32H407.8L349.2 77.8L339.2 70.4z" />
+    <glyph glyph-name="comment-alt-smile"
+      unicode="&#xF4AA;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM325.8 207.8C308.5 187.6 283.1 176 256 176S203.5 187.6 186.2 207.8C177.6 217.9 162.4 219.1 152.4 210.5S141.2 186.7 149.7 176.7C176.2 145.7 214.9 128 256 128S335.8 145.8 362.2 176.7C370.8 186.8 369.6 201.9 359.5 210.5C349.5 219.1 334.4 217.9 325.8 207.8zM192 256C209.7 256 224 270.3 224 288S209.7 320 192 320S160 305.7 160 288S174.3 256 192 256zM320 256C337.7 256 352 270.3 352 288S337.7 320 320 320S288 305.7 288 288S302.3 256 320 256z" />
+    <glyph glyph-name="comment-alt-times"
+      unicode="&#xF4AB;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96zM329.5 302.2L318.2 313.5C312 319.7 301.8 319.7 295.6 313.5L256 273.9L216.4 313.5C210.2 319.7 200 319.7 193.8 313.5L182.5 302.2C176.3 296 176.3 285.8 182.5 279.6L222.1 240L182.5 200.4C176.3 194.2 176.3 184 182.5 177.8L193.8 166.5C200 160.3 210.2 160.3 216.4 166.5L256 206.1L295.6 166.5C301.8 160.3 312 160.3 318.2000000000001 166.5L329.5000000000001 177.8C335.7000000000001 184 335.7000000000001 194.2 329.5000000000001 200.4L289.9 240L329.5 279.6C335.8 285.8 335.8 296 329.5 302.2z" />
+    <glyph glyph-name="comment-alt"
+      unicode="&#xF27A;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -59.1 165.8 -64 172 -64C174.4 -64 176.9 -63.3 179.1 -61.6L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM464 96C464 87.2 456.8 80 448 80H288L275.2 70.4L208 20V80H64C55.2 80 48 87.2 48 96V384C48 392.8 55.2 400 64 400H448C456.8 400 464 392.8 464 384V96z" />
+    <glyph glyph-name="comment-check"
+      unicode="&#xF4AC;"
+      horiz-adv-x="512" d=" M332.7 285.6C328.9 289.5 322.6 289.5 318.7 285.7L231.4 199L193.5 237.2C189.7 241.1 183.4 241.1 179.5 237.3L156.1 214.1C152.2 210.3 152.2 204 156 200.1L224.1 131.5C227.9 127.6 234.2 127.6 238.1 131.4L355.9 248.2C359.8 252 359.8 258.3 356 262.2L332.7 285.6zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-dollar"
+      unicode="&#xF651;"
+      horiz-adv-x="512" d=" M256 416C114.62 416 0 322.87 0 208C0 160.45 19.86 116.77 52.9 81.73C38 42.28 6.97 8.94 6.54 8.5C-0.02 1.55 -1.84 -8.69 1.95 -17.48S14.39 -32 23.98 -32C85.49 -32 134 -6.28 163.13 14.33C191.95 5.2 223.2 0 256 0C397.38 0 512 93.12 512 208S397.38 416 256 416zM256 48C229.31 48 202.95 52.07 177.63 60.09L154.89 67.3L135.41 53.52C121.07 43.37 101.53 32.07 77.94 24.55C85.23 36.61 92.32 50.2499999999999 97.8 64.77L108.41 92.84L87.82 114.67C69.65 133.93 48 165.75 48 208C48 296.2200000000001 141.31 368 256 368S464 296.2200000000001 464 208S370.69 48 256 48zM286.4100000000001 224.28L236.3400000000001 238.58A8.46 8.46 0 0 0 230.2200000000001 246.69C230.2200000000001 251.33 234.0000000000001 255.11 238.6600000000001 255.11H271.4400000000001C275.0400000000001 255.11 278.5200000000001 254.34 281.7000000000001 252.89C286.5000000000001 250.68 292.0700000000001 251.18 295.8100000000001 254.92L313.3300000000001 272.44C318.6 277.7100000000001 318.0000000000001 286.7200000000001 311.7800000000001 290.82C302.2800000000001 297.0900000000001 291.43 300.93 280 302.28V320C280 328.8400000000001 272.84 336 264 336H248C239.16 336 232 328.8400000000001 232 320V302.44C201.71 298.82 178.63 271.4600000000001 182.68 239.39C185.58 216.44 203.34 198.08 225.59 191.72L275.6600000000001 177.42A8.46 8.46 0 0 0 281.7800000000001 169.31C281.7800000000001 164.67 278.0000000000001 160.8899999999999 273.3400000000001 160.8899999999999H240.5600000000001C236.9600000000001 160.8899999999999 233.48 161.6599999999999 230.3000000000001 163.11C225.5000000000001 165.3199999999999 219.93 164.8199999999999 216.1900000000001 161.08L198.6700000000001 143.56C193.4 138.29 193.9900000000001 129.28 200.2200000000001 125.18C209.7200000000001 118.91 220.5700000000001 115.07 232.0000000000001 113.72V96C232.0000000000001 87.16 239.1600000000001 80 248.0000000000001 80H264.0000000000001C272.8400000000001 80 280.0000000000001 87.16 280.0000000000001 96V113.56C310.2900000000001 117.18 333.3700000000001 144.54 329.3200000000001 176.61C326.4200000000001 199.56 308.6600000000001 217.92 286.4100000000001 224.28z" />
+    <glyph glyph-name="comment-dots"
+      unicode="&#xF4AD;"
+      horiz-adv-x="512" d=" M144 240C126.3 240 112 225.7 112 208S126.3 176 144 176S176 190.3 176 208S161.7 240 144 240zM256 240C238.3 240 224 225.7 224 208S238.3 176 256 176S288 190.3 288 208S273.7 240 256 240zM368 240C350.3 240 336 225.7 336 208S350.3 176 368 176S400 190.3 400 208S385.7 240 368 240zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-edit"
+      unicode="&#xF4AE;"
+      horiz-adv-x="512" d=" M164.9 172.8L160.1 130C159.5 124.3 164.3 119.4 170.1 120L212.9 124.8L298.4 210.3L250.4 258.3L164.9 172.8zM324.2000000000001 306.7000000000001C317.2000000000001 313.7000000000001 305.8000000000001 313.7000000000001 298.8000000000001 306.7000000000001L270.5000000000001 278.4L318.5000000000001 230.4L346.8000000000001 258.7000000000001C353.8000000000001 265.7000000000001 353.8000000000001 277.1 346.8000000000001 284.1L324.2000000000001 306.7000000000001zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-exclamation"
+      unicode="&#xF4AF;"
+      horiz-adv-x="512" d=" M256 160C238.3 160 224 145.7 224 128S238.3 96 256 96S288 110.3 288 128S273.7 160 256 160zM284.7 320H227.3C217.3 320 209.7 310.9 211.6 301.1L229.6 205.1C231 197.5 237.6 192 245.3 192H266.7C274.4 192 281 197.5 282.4 205.1L300.4 301.1C302.3 310.9 294.7 320 284.7 320zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-lines"
+      unicode="&#xF4B0;"
+      horiz-adv-x="512" d=" M368 280H144C135.2 280 128 272.8 128 264V248C128 239.2 135.2 232 144 232H368C376.8 232 384 239.2 384 248V264C384 272.8 376.8 280 368 280zM272 184H144C135.2 184 128 176.8 128 168V152C128 143.2 135.2 136 144 136H272C280.8 136 288 143.2 288 152V168C288 176.8 280.8 184 272 184zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-minus"
+      unicode="&#xF4B1;"
+      horiz-adv-x="512" d=" M336 232H176C167.2 232 160 224.8 160 216V200C160 191.2 167.2 184 176 184H336C344.8 184 352 191.2 352 200V216C352 224.8 344.8 232 336 232zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-plus"
+      unicode="&#xF4B2;"
+      horiz-adv-x="512" d=" M336 232H280V288C280 296.8 272.8 304 264 304H248C239.2 304 232 296.8 232 288V232H176C167.2 232 160 224.8 160 216V200C160 191.2 167.2 184 176 184H232V128C232 119.2 239.2 112 248 112H264C272.8 112 280 119.2 280 128V184H336C344.8 184 352 191.2 352 200V216C352 224.8 344.8 232 336 232zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-slash"
+      unicode="&#xF4B3;"
+      horiz-adv-x="640" d=" M320 368C434.7 368 528 296.2 528 208C528 182.7 520.1 158.9 506.5 137.6L544.4 108C564.5 137.6 576 171.7 576 208C576 322.9 461.4 416 320 416C271.8 416 227 405 188.5 386.2L231.5 352.6C258.4 362.4 288.3 368 320 368zM320 48C293.3 48 266.9 52.1 241.6 60.1L218.9 67.3L199.4 53.5C185.1 43.4 165.5 32.1 141.9 24.5C149.2 36.6 156.3 50.2 161.8 64.7L172.4 92.8L151.8 114.6C133.7 133.9 112 165.8 112 208C112 224.6 115.3 240.7 121.5 255.8L82.8 286C70.8 261.9 64 235.6 64 208C64 160.4 83.9 116.8 116.9 81.7C102 42.3 71 8.9 70.5 8.5C63.9 1.5 62.1 -8.7 65.9 -17.5S78.4 -32 88 -32C149.5 -32 198 -6.3 227.1 14.3C256 5.2 287.2 0 320 0C357.5 0 393 6.7 425.1 18.5L378.9000000000001 54.7C360.2000000000001 50.4 340.4000000000001 48 320.0000000000001 48zM634 -23L481.6 96.2L474.8 101.5L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23z" />
+    <glyph glyph-name="comment-smile"
+      unicode="&#xF4B4;"
+      horiz-adv-x="512" d=" M325.8 175.8C308.5 155.6 283.1 144 256 144S203.5 155.6 186.2 175.8C177.6 185.9 162.4 187 152.4 178.5C142.3 169.9 141.2 154.7 149.7 144.7C176.2 113.7 214.9 96 256 96S335.8 113.8 362.2 144.7C370.8 154.8 369.6 169.9 359.5 178.5C349.5 187.1 334.4 185.9 325.8 175.8zM192 224C209.7 224 224 238.3 224 256S209.7 288 192 288S160 273.7 160 256S174.3 224 192 224zM320 224C337.7 224 352 238.3 352 256S337.7 288 320 288S288 273.7 288 256S302.3 224 320 224zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment-times"
+      unicode="&#xF4B5;"
+      horiz-adv-x="512" d=" M329.5 270.2L318.2 281.5C312 287.7 301.8 287.7 295.6 281.5L256 241.9L216.4 281.5C210.2 287.7 200 287.7 193.8 281.5L182.5 270.2C176.3 264 176.3 253.8 182.5 247.6L222.1 208L182.5 168.4C176.3 162.2 176.3 152 182.5 145.8L193.8 134.5C200 128.3 210.2 128.3 216.4 134.5L256 174.1L295.6 134.5C301.8 128.3 312 128.3 318.2000000000001 134.5L329.5000000000001 145.8C335.7000000000001 152 335.7000000000001 162.1999999999999 329.5000000000001 168.4L289.9 208L329.5 247.6C335.8 253.8 335.8 264 329.5 270.2zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comment"
+      unicode="&#xF075;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5S14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="comments-alt-dollar"
+      unicode="&#xF652;"
+      horiz-adv-x="576" d=" M512 288H416V384C416 419.35 387.35 448 352 448H64C28.65 448 0 419.35 0 384V176C0 140.65 28.65 112 64 112H96V60.02C96 52.92 101.83 48 108.05 48C110.46 48 112.92 48.74 115.13 50.37L192 93.88V64C192 28.65 220.65 0 256 0H352L460.87 -61.63C463.08 -63.26 465.55 -64 467.95 -64C474.17 -64 480 -59.08 480 -51.98V0H512C547.35 0 576 28.65 576 64V224C576 259.35 547.35 288 512 288zM200.35 153.77L144 121.87V160H64C55.18 160 48 167.18 48 176V384C48 392.82 55.18 400 64 400H352C360.82 400 368 392.82 368 384V176C368 167.18 360.82 160 352 160H211.36L200.35 153.77zM528 64C528 55.18 520.82 48 512 48H432V9.87L375.65 41.77L364.65 48H256C247.18 48 240 55.18 240 64V112H352C387.35 112 416 140.65 416 176V240H512C520.82 240 528 232.82 528 224V64zM233.28 289.7200000000001L191.09 301.16C186.9 302.3 184 305.7100000000001 184 309.4600000000001C184 314.26 188.5 318.16 194.06 318.16H220.4C224.55 318.16 228.63 317.12 232.17 315.2100000000001C235.2500000000001 313.55 239.01 313.8400000000001 241.4100000000001 316.39L253.48 329.12C256.5900000000001 332.4000000000001 256.0800000000001 337.76 252.35 340.31C244.05 345.9600000000001 234.29 349.19 224 349.8300000000001V360C224 364.42 220.42 368 216 368H200C195.5800000000001 368 192 364.42 192 360V349.75C169.82 348.65 152 331.18 152 309.45C152 291.28 164.62 275.17 182.72 270.28L224.91 258.84C229.1 257.7 232.0000000000001 254.29 232.0000000000001 250.54C232.0000000000001 245.74 227.5000000000001 241.84 221.94 241.84H195.6C191.45 241.84 187.37 242.88 183.83 244.79C180.75 246.46 176.99 246.16 174.59 243.61L162.52 230.88C159.41 227.6 159.92 222.24 163.65 219.69C171.95 214.04 181.71 210.81 192 210.17V200C192 195.58 195.58 192 200 192H216C220.42 192 224 195.58 224 200V210.25C246.18 211.35 264 228.82 264 250.55C264 268.7200000000001 251.38 284.8300000000001 233.28 289.7200000000001z" />
+    <glyph glyph-name="comments-alt"
+      unicode="&#xF4B6;"
+      horiz-adv-x="576" d=" M512 288H416V384C416 419.3 387.3 448 352 448H64C28.7 448 0 419.3 0 384V224C0 188.7 28.7 160 64 160H96V108C96 100.9 101.8 96 108 96C110.4 96 112.9 96.7 115.1 98.4L192 141.9V64C192 28.7 220.7 0 256 0H352L460.9 -61.6C463.1 -63.2 465.6 -64 468 -64C474.2 -64 480 -59.1 480 -52V0H512C547.3 0 576 28.7 576 64V224C576 259.3 547.3 288 512 288zM96 208H64C55.2 208 48 215.2 48 224V384C48 392.8 55.2 400 64 400H352C360.8 400 368 392.8 368 384V224C368 215.2 360.8 208 352 208H211.4L200.4 201.8L144 169.9V208H96zM528 64C528 55.2 520.8 48 512 48H432V9.9L375.6 41.8L364.6 47.9999999999999H256C247.2 47.9999999999999 240 55.1999999999999 240 63.9999999999999V160H352C387.3 160 416 188.6999999999999 416 224V240H512C520.8 240 528 232.8 528 224V63.9999999999999z" />
+    <glyph glyph-name="comments-dollar"
+      unicode="&#xF653;"
+      horiz-adv-x="576" d=" M532.01 61.83C559.48 88.95 576 122.96 576 160C576 240.02 499.55 306.13 399.82 317.94C368.35 375.54 294.32 416 208 416C93.12 416 0 344.36 0 256C0 218.96 16.52 184.95 43.99 157.83C28.69 127.09 6.65 103.3 6.29 102.94C-0.02 96.25 -1.76 86.41 1.87 77.95A23.085 23.085 0 0 1 23.06 64C76.6 64 119.73 84.24 148.23 102.78C157.44 100.66 166.92 99.04 176.6 97.89C208.11 40.42 281.8 0 368 0C388.79 0 408.83 2.41 427.77 6.78C456.27 -11.76 499.4 -32 552.94 -32C562.1600000000001 -32 570.49 -26.5 574.12 -18.04C577.76 -9.58 576.01 0.26 569.7 6.95C569.35 7.31 547.3100000000001 31.09 532.01 61.83zM159.02 149.55L139.15 154.13L122.06 143.0099999999999C107.99 133.86 93.6 126.7199999999999 78.96 121.5999999999999A258.5 258.5 0 0 1 86.96 136.4399999999999L102.45 167.5599999999999L77.71 191.9799999999999C64.16 205.37 48 227.34 48 256C48 316.7100000000001 121.27 368 208 368S368 316.7100000000001 368 256S294.73 144 208 144C191.48 144 175 145.87 159.02 149.55zM498.29 95.99L473.55 71.5699999999999L489.04 40.4499999999999C491.6 35.3 494.3 30.3399999999999 497.04 25.61C482.4 30.72 468.01 37.87 453.9399999999999 47.0099999999999L436.85 58.1299999999999L416.98 53.55A218.576 218.576 0 0 0 368 48C314.04 48 265.78 68.06 236.7 97.7C337.96 108.47 416 175.14 416 256C416 259.37 415.61 262.66 415.35 265.9700000000001C479.7 251.51 528 209.15 528 160C528 131.34 511.84 109.37 498.29 95.99zM233.28 265.7200000000001L191.09 277.16C186.9 278.3 184 281.7100000000001 184 285.4600000000001C184 290.26 188.5 294.16 194.06 294.16H220.4C224.55 294.16 228.63 293.12 232.17 291.2100000000001C235.2500000000001 289.55 239.01 289.8400000000001 241.4100000000001 292.39L253.48 305.12C256.5900000000001 308.4 256.0800000000001 313.76 252.35 316.31C244.05 321.9600000000001 234.29 325.19 224 325.83V336C224 340.42 220.42 344 216 344H200C195.5800000000001 344 192 340.42 192 336V325.75C169.82 324.65 152 307.18 152 285.45C152 267.28 164.62 251.17 182.72 246.28L224.91 234.84C229.1 233.7 232.0000000000001 230.29 232.0000000000001 226.54C232.0000000000001 221.74 227.5000000000001 217.84 221.94 217.84H195.6C191.45 217.84 187.37 218.88 183.83 220.79C180.75 222.46 176.99 222.16 174.59 219.61L162.52 206.88C159.41 203.6 159.92 198.24 163.65 195.69C171.95 190.04 181.71 186.81 192 186.17V176C192 171.58 195.58 168 200 168H216C220.42 168 224 171.58 224 176V186.25C246.18 187.35 264 204.82 264 226.55C264 244.7200000000001 251.38 260.8300000000001 233.28 265.7200000000001z" />
+    <glyph glyph-name="comments"
+      unicode="&#xF086;"
+      horiz-adv-x="576" d=" M532 61.8C559.5 88.9 576 122.9 576 160C576 240 499.5 306.1 399.8 317.9C368.3 375.5 294.3 416 208 416C93.1 416 0 344.4 0 256C0 219 16.5 185 44 157.8C28.7 127.1 6.7 103.3 6.3 102.9C0 96.2000000000001 -1.8 86.4 1.9 77.9C5.5 69.4 13.9 63.9 23.1 63.9C76.6 63.9 119.8 84.1 148.3 102.7000000000001C157.5 100.6 167 99.0000000000001 176.7 97.8000000000001C208.1 40.4 281.8 0 368 0C388.8 0 408.8 2.4 427.8 6.8C456.3 -11.7 499.4 -32 553 -32C562.2 -32 570.5 -26.5 574.2 -18C577.8000000000001 -9.5 576.1 0.3 569.8000000000001 7C569.4000000000001 7.3 547.3000000000001 31.1 532.0000000000001 61.8zM139.2 154.1L122.1 143C108 133.9 93.6 126.7 79 121.6C81.7 126.3 84.4 131.3 87 136.4L102.5 167.5000000000001L77.7 192C64.2 205.4 48 227.3 48 256C48 316.7 121.3 368 208 368S368 316.7 368 256S294.7 144 208 144C191.5 144 175 145.9 159 149.6L139.2 154.1zM498.3 96L473.6 71.6L489.1 40.5C491.7 35.4 494.4 30.4 497.1 25.7C482.5 30.8 468.1 38 454 47.1L436.9 58.2L417 53.6C401 49.9 384.5 47.9999999999999 368 47.9999999999999C314 47.9999999999999 265.8 68.1 236.7 97.6999999999999C338 108.5 416 175.1 416 256C416 259.4 415.6 262.7 415.3 266C479.7 251.5 528 209.2 528 160C528 131.3 511.8 109.4 498.3 96z" />
+    <glyph glyph-name="compact-disc"
+      unicode="&#xF51F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM248 352C159.8 352 88 280.2 88 192H120C120 262.6 177.4 320 248 320V352zM248 280C199.4 280 160 240.6 160 192S199.4 104 248 104S336 143.4 336 192S296.6 280 248 280zM248 160C230.3 160 216 174.3 216 192S230.3 224 248 224S280 209.7 280 192S265.7 160 248 160z" />
+    <glyph glyph-name="compass-slash"
+      unicode="&#xF5E9;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM320 392C430.28 392 520 302.28 520 192C520 171.77 516.93 152.25 511.31 133.82L551.15 102.67C561.88 130.42 568 160.47 568 192C568 328.9700000000001 456.97 440 320 440C266.92 440 217.85 423.18 177.51 394.79L217.57 363.4700000000001C247.58 381.46 282.54 392 320 392zM419.94 318.14L328.82 276.49L410.05 212.98L446.14 291.94C453.75 308.6 436.6 325.75 419.94 318.14zM220.06 65.86L311.19 107.51L229.96 171.02L193.87 92.06C186.25 75.41 203.4 58.25 220.06 65.86zM320 -8C209.72 -8 120 81.72 120 192C120 212.24 123.08 231.76 128.69 250.18L88.85 281.3300000000001C78.12 253.58 72 223.53 72 192C72 55.03 183.03 -56 320 -56C373.08 -56 422.15 -39.18 462.49 -10.78L422.43 20.54C392.42 2.54 357.46 -8 320 -8z" />
+    <glyph glyph-name="compass"
+      unicode="&#xF14E;"
+      horiz-adv-x="496" d=" M347.94 318.14L203.6 252.17A31.938 31.938 0 0 1 187.83 236.4L121.86 92.06C114.25 75.41 131.4 58.2499999999999 148.06 65.86L292.4 131.8299999999999A31.938 31.938 0 0 1 308.17 147.5999999999999L374.14 291.94C381.75 308.5999999999999 364.6 325.7499999999999 347.94 318.1399999999999zM270.58 169.42C258.11 156.9499999999999 237.89 156.9499999999999 225.42 169.42C212.95 181.89 212.95 202.11 225.42 214.58C237.89 227.05 258.11 227.05 270.58 214.58C283.05 202.11 283.05 181.89 270.58 169.42zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8z" />
+    <glyph glyph-name="compress-alt"
+      unicode="&#xF422;"
+      horiz-adv-x="448" d=" M224 216V311.005C224 332.387 249.851 343.0950000000001 264.971 327.976L292.675 300.272L404.888 412.485C409.574 417.171 417.172 417.171 421.859 412.485L444.486 389.858C449.172 385.1720000000001 449.172 377.574 444.486 372.887L332.272 260.674L359.976 232.97C375.0950000000001 217.851 364.387 192 343.005 192H248C234.745 192 224 202.745 224 216zM43.112 -28.485L155.325 83.728L183.029 56.0239999999999C198.149 40.905 224 51.6129999999999 224 72.995V168C224 181.255 213.255 192 200 192H104.995C83.613 192 72.905 166.149 88.024 151.029L115.728 123.325L3.515 11.112C-1.171 6.426 -1.171 -1.172 3.515 -5.859L26.142 -28.486C30.828 -33.172 38.426 -33.172 43.112 -28.485z" />
+    <glyph glyph-name="compress-arrows-alt"
+      unicode="&#xF78C;"
+      horiz-adv-x="512" d=" M300 224H436C446.7 224 452 236.9 444.4 244.5L393.5 295.5L507.3 409.4C513.5 415.6 513.5 425.8 507.3 432L496 443.3C489.8 449.5 479.6 449.5 473.4 443.3L359.5 329.4L308.5 380.4C300.9 388 288 382.7 288 372V236C288 229.4 293.4 224 300 224zM393.4 88.5L444.4 139.5C451.9 147.1 446.6 160 435.9 160H300C293.4 160 288 154.6 288 148V12C288 1.3 300.9 -4 308.5 3.6L359.5 54.5L473.4 -59.4C479.6 -65.6 489.8 -65.6 496 -59.4L507.3 -48.1C513.5 -41.9 513.5 -31.7 507.3 -25.4999999999999L393.4 88.5000000000001zM212 160H76C65.3 160 60 147.1 67.6 139.5L118.5 88.5L4.7 -25.4C-1.5 -31.6 -1.5 -41.8 4.7 -48L16 -59.3C22.2 -65.5 32.4 -65.5 38.6 -59.3L152.5 54.6L203.5 3.6C211.1 -3.9 224 1.4 224 12.1V148C224 154.6 218.6 160 212 160zM118.6 295.5L67.6 244.5C60 236.9 65.3 224 76 224H212C218.6 224 224 229.4 224 236V372C224 382.7 211.1 388 203.5 380.4L152.5 329.5L38.6 443.3C32.4 449.5 22.2 449.5 16 443.3L4.7 432C-1.5 425.8 -1.5 415.6 4.7 409.4L118.6 295.5z" />
+    <glyph glyph-name="compress-wide"
+      unicode="&#xF326;"
+      horiz-adv-x="512" d=" M500 224H376C362.7 224 352 234.7 352 248V372C352 378.6 357.4 384 364 384H388C394.6 384 400 378.6 400 372V272H500C506.6 272 512 266.6 512 260V236C512 229.4 506.6 224 500 224zM160 248V372C160 378.6 154.6 384 148 384H124C117.4 384 112 378.6 112 372V272H12C5.4 272 0 266.6 0 260V236C0 229.4 5.4 224 12 224H136C149.3 224 160 234.7 160 248zM160 12V136C160 149.3 149.3 160 136 160H12C5.4 160 0 154.6 0 148V124C0 117.4 5.4 112 12 112H112V12C112 5.4 117.4 0 124 0H148C154.6 0 160 5.4 160 12zM400 12V112H500C506.6 112 512 117.4 512 124V148C512 154.6 506.6 160 500 160H376C362.7 160 352 149.3 352 136V12C352 5.4 357.4 0 364 0H388C394.6 0 400 5.4 400 12z" />
+    <glyph glyph-name="compress"
+      unicode="&#xF066;"
+      horiz-adv-x="448" d=" M436 256H312C298.7 256 288 266.7 288 280V404C288 410.6 293.4 416 300 416H324C330.6 416 336 410.6 336 404V304H436C442.6 304 448 298.6 448 292V268C448 261.4 442.6 256 436 256zM160 280V404C160 410.6 154.6 416 148 416H124C117.4 416 112 410.6 112 404V304H12C5.4 304 0 298.6 0 292V268C0 261.4 5.4 256 12 256H136C149.3 256 160 266.7 160 280zM160 -20V104C160 117.3 149.3 128 136 128H12C5.4 128 0 122.6 0 116V92C0 85.4 5.4 80 12 80H112V-20C112 -26.6 117.4 -32 124 -32H148C154.6 -32 160 -26.6 160 -20zM336 -20V80H436C442.6 80 448 85.4 448 92V116C448 122.6 442.6 128 436 128H312C298.7 128 288 117.3 288 104V-20C288 -26.6 293.4 -32 300 -32H324C330.6 -32 336 -26.6 336 -20z" />
+    <glyph glyph-name="concierge-bell"
+      unicode="&#xF562;"
+      horiz-adv-x="512" d=" M496 48H480V96C480 208.82 396.51 301.89 288 317.4600000000001V336H336C344.84 336 352 343.16 352 352V368C352 376.8400000000001 344.84 384 336 384H176C167.16 384 160 376.8400000000001 160 368V352C160 343.16 167.16 336 176 336H224V317.4600000000001C115.49 301.89 32 208.82 32 96V48H16C7.16 48 0 40.84 0 32V16C0 7.16 7.16 0 16 0H496C504.84 0 512 7.16 512 16V32C512 40.84 504.84 48 496 48zM432 48H80V96C80 193.05 158.95 272 256 272S432 193.05 432 96V48z" />
+    <glyph glyph-name="container-storage"
+      unicode="&#xF4B7;"
+      horiz-adv-x="640" d=" M640 384V400C640 408.8 632.8 416 624 416H16C7.2 416 0 408.8 0 400V384C0 375.2 7.2 368 16 368V16C7.2 16 0 8.8 0 0V-16C0 -24.8 7.2 -32 16 -32H624C632.8 -32 640 -24.8 640 -16V0C640 8.8 632.8 16 624 16V368C632.8 368 640 375.2 640 384zM576 16H64V368H576V16zM136 64H168C172.4 64 176 67.6 176 72V312C176 316.4 172.4 320 168 320H136C131.6 320 128 316.4 128 312V72C128 67.6 131.6 64 136 64zM360 64H392C396.4 64 400 67.6 400 72V312C400 316.4 396.4 320 392 320H360C355.6 320 352 316.4 352 312V72C352 67.6 355.6 64 360 64zM472 64H504C508.4 64 512 67.6 512 72V312C512 316.4 508.4 320 504 320H472C467.6 320 464 316.4 464 312V72C464 67.6 467.6 64 472 64zM248 64H280C284.4 64 288 67.6 288 72V312C288 316.4 284.4 320 280 320H248C243.6 320 240 316.4 240 312V72C240 67.6 243.6 64 248 64z" />
+    <glyph glyph-name="conveyor-belt-alt"
+      unicode="&#xF46F;"
+      horiz-adv-x="640" d=" M544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM544 -16H96C69.5 -16 48 5.5 48 32S69.5 80 96 80H544C570.5 80 592 58.5 592 32S570.5 -16 544 -16zM128 64C110.3 64 96 49.7 96 32S110.3 0 128 0S160 14.3 160 32S145.7 64 128 64zM512 64C494.3 64 480 49.7 480 32S494.3 0 512 0S544 14.3 544 32S529.7 64 512 64zM320 64C302.3 64 288 49.7 288 32S302.3 0 320 0S352 14.3 352 32S337.7 64 320 64zM112 160H528C536.8 160 544 167.2 544 176V368C544 376.8 536.8 384 528 384H384V432C384 440.8 376.8 448 368 448H112C103.2 448 96 440.8 96 432V176C96 167.2 103.2 160 112 160zM384 336H496V208H384V336zM144 400H336V208H144V400z" />
+    <glyph glyph-name="conveyor-belt"
+      unicode="&#xF46E;"
+      horiz-adv-x="640" d=" M544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM544 -16H96C69.5 -16 48 5.5 48 32S69.5 80 96 80H544C570.5 80 592 58.5 592 32S570.5 -16 544 -16zM128 64C110.3 64 96 49.7 96 32S110.3 0 128 0S160 14.3 160 32S145.7 64 128 64zM512 64C494.3 64 480 49.7 480 32S494.3 0 512 0S544 14.3 544 32S529.7 64 512 64zM320 64C302.3 64 288 49.7 288 32S302.3 0 320 0S352 14.3 352 32S337.7 64 320 64zM144 160H496C504.8 160 512 167.2 512 176V432C512 440.8 504.8 448 496 448H144C135.2 448 128 440.8 128 432V176C128 167.2 135.2 160 144 160zM176 400H256V288L320 320L384 288V400H464V208H176V400z" />
+    <glyph glyph-name="cookie-bite"
+      unicode="&#xF564;"
+      horiz-adv-x="512" d=" M352 128C334.33 128 320 113.67 320 96S334.33 64 352 64S384 78.33 384 96S369.67 128 352 128zM192 256C192 273.67 177.67 288 160 288S128 273.67 128 256S142.33 224 160 224S192 238.33 192 256zM192 128C174.33 128 160 113.67 160 96S174.33 64 192 64S224 78.33 224 96S209.67 128 192 128zM288 224C270.33 224 256 209.67 256 192S270.33 160 288 160S320 174.33 320 192S305.67 224 288 224zM510.52 192.18C440.55 193.03 384.05 249.87 384.05 320.04C313.88 320.04 257.05 376.53 256.19 446.49C249.57 447.5 242.9 448 236.26 448C215.58 448 195.08 443.15 176.47 433.67L107.34 398.45A132.221 132.221 0 0 1 49.55 340.64L14.45 271.76A132.645 132.645 0 0 1 1.63 190.81L13.71 114.53A132.555 132.555 0 0 1 50.87 41.57L105.64 -13.19A132.036 132.036 0 0 1 178.35 -50.25L255.06 -62.39C261.92 -63.48 268.82 -64.01 275.7 -64.01C296.42 -64.01 316.95 -59.13 335.59 -49.63L404.72 -14.41A132.221 132.221 0 0 1 462.51 43.4L497.61 112.28C510.17 136.91 514.62 164.85 510.52 192.18zM454.84 134.08L419.74 65.2C411.6 49.23 398.87 36.5 382.93 28.37L313.8 -6.85C302.06 -12.83 288.88 -16 275.7 -16C271.32 -16 266.8999999999999 -15.65 262.57 -14.97L185.86 -2.83C168.22 -0.04 152.22 8.1199999999999 139.58 20.7599999999999L84.81 75.5199999999999C72.12 88.2099999999999 63.93 104.2899999999999 61.12 122.0399999999999L49.04 198.3099999999999C46.23 216.0799999999999 49.05 233.9299999999999 57.22 249.9499999999999L92.32 318.8299999999999C100.46 334.7999999999999 113.19 347.5399999999999 129.13 355.6599999999999L198.2599999999999 390.8799999999999C203.78 393.6899999999999 209.62 395.8799999999999 215.6399999999999 397.3999999999999C233.4699999999999 338.5199999999999 281.4899999999999 292.4399999999999 341.33 277.3099999999999C356.45 217.4599999999999 402.55 169.4399999999998 461.4399999999999 151.6199999999999A83.48499999999999 83.48499999999999 0 0 0 454.8399999999999 134.0799999999999z" />
+    <glyph glyph-name="cookie"
+      unicode="&#xF563;"
+      horiz-adv-x="512" d=" M352 128C334.33 128 320 113.67 320 96S334.33 64 352 64S384 78.33 384 96S369.67 128 352 128zM320 288C337.67 288 352 302.3300000000001 352 320S337.67 352 320 352S288 337.67 288 320S302.33 288 320 288zM192 256C192 273.67 177.67 288 160 288S128 273.67 128 256S142.33 224 160 224S192 238.33 192 256zM192 128C174.33 128 160 113.67 160 96S174.33 64 192 64S224 78.33 224 96S209.67 128 192 128zM288 224C270.33 224 256 209.67 256 192S270.33 160 288 160S320 174.33 320 192S305.67 224 288 224zM510.37 193.21L498.29 269.4700000000001A132.493 132.493 0 0 1 461.13 342.42L406.37 397.17C386.64 416.8900000000001 361.19 429.87 333.6600000000001 434.2200000000001L256.9600000000001 446.37A131.26 131.26 0 0 1 236.34 448C215.62 448 195.09 443.12 176.45 433.62L107.33 398.41A132.25 132.25 0 0 1 49.54 340.61L14.44 271.74A132.602 132.602 0 0 1 1.62 190.8L13.7 114.53A132.493 132.493 0 0 1 50.86 41.58L105.62 -13.17A132.087 132.087 0 0 1 178.33 -50.22L255.03 -62.36C261.89 -63.4499999999999 268.78 -63.98 275.66 -63.98C296.38 -63.98 316.91 -59.1 335.54 -49.6L404.66 -14.39A132.302 132.302 0 0 1 462.45 43.41L497.55 112.28A132.56 132.56 0 0 1 510.37 193.21zM454.78 134.06L419.68 65.18C411.55 49.21 398.82 36.48 382.87 28.36L313.75 -6.85C302 -12.83 288.83 -16 275.6600000000001 -16A84.8 84.8 0 0 0 262.54 -14.97L185.85 -2.83C168.22 -0.04 152.21 8.1199999999999 139.57 20.7599999999999L84.81 75.5199999999999C72.12 88.1999999999999 63.93 104.2899999999999 61.12 122.0299999999999L49.04 198.3C46.23 216.06 49.05 233.92 57.22 249.94L92.32 318.82C100.45 334.79 113.18 347.52 129.13 355.64L198.25 390.85C210 396.83 223.17 400 236.35 400C240.73 400 245.14 399.65 249.47 398.9700000000001L326.17 386.82C343.8 384.03 359.8 375.87 372.44 363.23L427.2 308.48C439.89 295.79 448.08 279.7100000000001 450.89 261.9600000000001L462.97 185.7C465.77 167.94 462.95 150.08 454.78 134.06z" />
+    <glyph glyph-name="copy"
+      unicode="&#xF0C5;"
+      horiz-adv-x="448" d=" M433.941 382.059L382.059 433.941A48 48 0 0 1 348.118 448H176C149.49 448 128 426.51 128 400V352H48C21.49 352 0 330.51 0 304V-16C0 -42.51 21.49 -64 48 -64H272C298.51 -64 320 -42.51 320 -16V32H400C426.51 32 448 53.49 448 80V348.118A48 48 0 0 1 433.941 382.059zM266 -16H54A6 6 0 0 0 48 -10V298A6 6 0 0 0 54 304H128V80C128 53.49 149.49 32 176 32H272V-10A6 6 0 0 0 266 -16zM394 80H182A6 6 0 0 0 176 86V394A6 6 0 0 0 182 400H288V312C288 298.745 298.745 288 312 288H400V86A6 6 0 0 0 394 80zM400 336H336V400H345.632C347.223 400 348.749 399.368 349.875 398.243L398.243 349.875A6 6 0 0 0 400 345.632V336z" />
+    <glyph glyph-name="copyright"
+      unicode="&#xF1F9;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -8C145.468 -8 56 81.451 56 192C56 302.531 145.451 392 256 392C366.532 392 456 302.549 456 192C456 81.468 366.549 -8 256 -8zM363.351 93.064C353.737 83.352 317.8210000000001 51.668 259.286 51.668C176.856 51.668 118.802 113.093 118.802 193.235C118.802 272.387 179.077 332.636 258.564 332.636C314.095 332.636 347.302 306.016 356.157 297.857A11.965 11.965 0 0 0 358.093 282.535L339.938 254.422C336.097 248.472 327.972 247.14 322.439 251.501C313.844 258.277 290.625 274.039 260.731 274.039C212.428 274.039 182.815 238.709 182.815 193.957C182.815 152.368 209.703 110.265 261.092 110.265C293.749 110.265 317.935 129.304 326.818 137.49C332.088 142.347 340.414 141.529 344.638 135.752L364.503 108.582A11.947000000000001 11.947000000000001 0 0 0 363.351 93.064z" />
+    <glyph glyph-name="corn"
+      unicode="&#xF6C7;"
+      horiz-adv-x="512" d=" M441.79 447.68C439.7200000000001 447.88 437.2200000000001 448 434.75 448C422.65 448 411.02 445.18 400.62 439.99C397.0900000000001 440.49 393.51 440.74 389.9 440.74C382.63 440.74 375.38 439.69 368.37 437.62A76.524 76.524 0 0 1 342.92 424.83C333.75 424.4100000000001 324.81 422.38 316.29 418.76C307.3900000000001 414.75 299.5200000000001 409.36 292.9100000000001 402.9A76.43799999999999 76.43799999999999 0 0 1 266.85 393.32C259.25 389.02 252.5300000000001 383.36 246.9400000000001 376.7100000000001C238.2500000000001 374.36 230.01 370.4600000000001 222.54 365.13C217.53 361.6 213.69 356.89 209.73 352.3300000000001C204.94 358.01 200.23 363.7200000000001 194.79 369.15L152.63 411.3C143.62 420.31 128.2 415.64 125.7 403.15L98.51 267.28L37.03 205.82C-10.22 158.59 -12.12 83.68 30.52 34.36L91.22 -27.61C118.61 -54.99 156.81 -68.02 196.63 -62.91C225.88 -59.16 252.52 -44.01 273.38 -23.16L331.21 34.65L467.14 61.83C479.64 64.33 484.31 79.74 475.29 88.75L433.13 130.9C427.81 136.22 422.24 141.18 416.51 145.86C420.12 149.2599999999999 424.12 152.21 427.06 156.3199999999999C432.35 163.7199999999999 436.19 171.87 438.55 180.36A76.011 76.011 0 0 1 455.94 201.17C460.54 208.91 463.63 217.36 465.18 226.08A76.238 76.238 0 0 1 480.73 248.63C484.7 257.45 486.92 266.75 487.41 276.08A77.528 77.528 0 0 1 500.29 300.78A78.082 78.082 0 0 1 502.9 332.48A77.244 77.244 0 0 1 511.83 365.42L511.8700000000001 366.42V367.42C514.2700000000001 408.5199999999999 483.5300000000001 444.03 441.7900000000001 447.68zM64.38 68.21C40.31 98.83 42.68 143.79 70.88 171.99L142.61 243.69L160.94 335.33C206.9 289.39 223.21 233.24 209.89 180.1C176.1 168.09 144.41 148.21 117.12 120.93L64.38 68.21zM307.62 78.74L235.89 7.04C205.51 -23.33 155.45 -24.14 125.07 6.23L97.57 33.72L150.96 87.09C188.88 125 237.02 145.48 284.44 145.48C325.6499999999999 145.48 366.32 130.0099999999999 399.28 97.06L307.62 78.74zM447.95 342.6C454.4 335.4700000000001 457.38 325.13 454.4 315.02C451.4 305.37 443.81 298.24 434.85 295.49C439.9 287.67 441.06 277.56 436.92 268.37C432.78 259.18 424.5 253.43 415.31 251.82C419.45 243.55 419.22 233.44 414.17 224.93C409.33 216.42 400.6 211.37 391.4 210.68C394.62 202.18 393.7 192.3 387.96 184.25C383.84 178.48 377.91 175.48 371.67 173.81C344.48 186.4599999999999 314.93 193.34 284.45 193.34C276.5399999999999 193.34 268.6599999999999 192.87 260.83 192.02C265.6699999999999 230.98 258.4699999999999 270.58 239.54 307.64C240.9 314.83 244.2 321.63 250.47 326.05C259.9599999999999 332.83 270.49 332.01 277.13 329.51C277.82 338.4699999999999 282.88 347.2099999999999 291.39 352.04C304.9699999999999 360.0899999999999 317.93 353.35 318.2899999999999 353.18C319.8999999999999 362.15 325.8799999999999 370.42 335.07 374.56C346.63 379.4599999999999 356.8999999999999 375.69 362.2 372.26C364.9599999999999 381.45 372.31 388.8 381.9699999999999 391.56C384.5499999999999 392.32 397.9799999999999 395.87 409.5599999999999 384.67C432.9299999999999 429.35 494.9599999999999 366.7199999999999 447.9499999999999 342.5999999999999z" />
+    <glyph glyph-name="couch"
+      unicode="&#xF4B8;"
+      horiz-adv-x="640" d=" M576 251.4V320C576 373 533 416 480 416H160C107 416 64 373 64 320V251.4C29.4 240.7 3.1 211.1 0.3 175C-2 146 9.9 118.5 32 100.4V8C32 -14.1 49.9 -32 72 -32H160C164 -32 190.2 -31.1 191.9 0H448.1C449.5 -30.8 476.1 -32 480 -32H568C590.1 -32 608 -14.1 608 8V100.4C630 118.5 642 145.9 639.7 175C636.9000000000001 211.1 610.6 240.7 576 251.4zM144 16H80V126.7L68.1 133.7C54.6 141.5 47 156 48.2 171.3C49.7 191.5 69.4 208 92 208H104C126.1 208 144 190.1 144 168V16zM448 144V48H192V144H448zM451.7 192H188.2C178.4 226.3 148.5 251.8 112 255.2V320C112 346.5 133.5 368 160 368H480C506.5 368 528 346.5 528 320V255.2C491.4 251.8 461.5 226.3 451.7 192zM571.9 133.6L560 126.6V16H496V168C496 190.1 513.9 208 536 208H548C570.6 208 590.3 191.5 591.9 171.2C593 155.9 585.4 141.5 571.9 133.6z" />
+    <glyph glyph-name="cow"
+      unicode="&#xF6C8;"
+      horiz-adv-x="640" d=" M624.48 210.01L607.97 229.16V271.98C607.97 283.87 595.45 291.61 584.82 286.29C578.74 283.25 573.5 279.19 568.72 274.71L508.73 344.31A96.044 96.044 0 0 1 430.96 384H111.99C63.39 384 23.99 344.6 23.99 296V209.59C9.48 197.86 0 180.12 0 160V128C39.76 128 72 160.24 72 200V296C72 312.88 82.57 327.18 97.38 333.04C96.51 328.83 96.03 324.4700000000001 96.03 320V32C96.03 14.33 110.36 0 128.03 0H192.03C209.7 0 224.03 14.33 224.03 32V71.98C226.58 71.11 229.43 70.68 232.07 69.93V56C232.07 47.16 239.23 40 248.07 40S264.07 47.16 264.07 56V64.68C266.75 64.53 277.34 64.54 280.07 64.69V56C280.07 47.16 287.23 40 296.07 40S312.07 47.16 312.07 56V69.98C314.69 70.72 317.51 71.15 320.03 72.01V32C320.03 14.33 334.36 0 352.03 0H415.99C433.66 0 447.98 14.32 447.99 31.99L448.03 175.96L463.97 160V118.02C463.97 105.7 467.53 93.64 474.21 83.29L509.67 28.4A62.07999999999999 62.07999999999999 0 0 1 561.8100000000001 0H576C611.34 0 640 28.65 640 64V168.22C640 183.56 634.49 198.3900000000001 624.48 210.01zM210.11 127.43C217.06 155.25 242.08 176 272.01 176C301.93 176 326.93 155.27 333.9 127.47C272.6 106.54 271.71 106.4400000000001 210.11 127.43zM592 64C592 55.18 584.82 48 576 48H561.81C557.01 48 552.5899999999999 50.41 549.9799999999999 54.44L514.5199999999999 109.34C513.6499999999999 112.29 512.8299999999998 115.06 511.9599999999999 118.02V179.89L436.1899999999999 255.66C422.8399999999999 269.01 400.0199999999999 259.56 400.0199999999999 240.68L399.98 48H368.01V112C368.01 157.59 329.87 208 272.02 208C213.87 208 176.03 157.31 176.03 112V48H144.03V320C144.03 328.82 151.21 336 160.03 336H164.35C165.15 334.5 189.71 301.18 189.71 301.18C211.52 272.25 241.1 256 271.94 256H272.11C302.95 256 332.5300000000001 272.25 354.3400000000001 301.18C354.3400000000001 301.18 378.9000000000001 334.5 379.7000000000001 336H430.9700000000001C446.31 336 460.84 328.58 469.84 316.15L588.12 178.66C590.62 175.75 592 172.04 592 168.2V64zM560 144C551.16 144 544 136.84 544 128S551.16 112 560 112S576 119.16 576 128S568.84 144 560 144z" />
+    <glyph glyph-name="credit-card-blank"
+      unicode="&#xF389;"
+      horiz-adv-x="576" d=" M527.9 416H48.1C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48.1 -32H527.9C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 527.9 416zM521.9 16H54.1C50.8 16 48.1 18.7 48.1 22V362C48.1 365.3 50.8 368 54.1 368H521.9C525.1999999999999 368 527.9 365.3 527.9 362V22C527.9 18.7 525.1999999999999 16 521.9 16zM192 84V76C192 69.4 186.6 64 180 64H108C101.4 64 96 69.4 96 76V84C96 90.6 101.4 96 108 96H180C186.6 96 192 90.6 192 84zM384 84V76C384 69.4 378.6 64 372 64H236C229.4 64 224 69.4 224 76V84C224 90.6 229.4 96 236 96H372C378.6 96 384 90.6 384 84z" />
+    <glyph glyph-name="credit-card-front"
+      unicode="&#xF38A;"
+      horiz-adv-x="576" d=" M527.9 416H48.1C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48.1 -32H527.9C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 527.9 416zM521.9 16H54.1C50.8 16 48.1 18.7 48.1 22V362C48.1 365.3 50.8 368 54.1 368H521.9C525.1999999999999 368 527.9 365.3 527.9 362V22C527.9 18.7 525.1999999999999 16 521.9 16zM192 84V76C192 69.4 186.6 64 180 64H108C101.4 64 96 69.4 96 76V84C96 90.6 101.4 96 108 96H180C186.6 96 192 90.6 192 84zM384 84V76C384 69.4 378.6 64 372 64H236C229.4 64 224 69.4 224 76V84C224 90.6 229.4 96 236 96H372C378.6 96 384 90.6 384 84zM260 128H204C197.4 128 192 133.4 192 140V180C192 186.6 197.4 192 204 192H260C266.6 192 272 186.6 272 180V140C272 133.4 266.6 128 260 128zM288 140V180C288 186.6 293.4 192 300 192H356C362.6 192 368 186.6 368 180V140C368 133.4 362.6 128 356 128H300C293.4 128 288 133.4 288 140zM96 140V180C96 186.6 101.4 192 108 192H164C170.6 192 176 186.6 176 180V140C176 133.4 170.6 128 164 128H108C101.4 128 96 133.4 96 140zM480 180V140C480 133.4 474.6 128 468 128H396C389.4 128 384 133.4 384 140V180C384 186.6 389.4 192 396 192H468C474.6 192 480 186.6 480 180zM480 312V264C480 250.7 469.3 240 456 240H376C362.7 240 352 250.7 352 264V312C352 325.3 362.7 336 376 336H456C469.3 336 480 325.3 480 312z" />
+    <glyph glyph-name="credit-card"
+      unicode="&#xF09D;"
+      horiz-adv-x="576" d=" M527.9 416H48.1C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48.1 -32H527.9C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 527.9 416zM54.1 368H521.9C525.1999999999999 368 527.9 365.3 527.9 362V320H48.1V362C48.1 365.3 50.8 368 54.1 368zM521.9 16H54.1C50.8 16 48.1 18.7 48.1 22V192H527.9V22C527.9 18.7 525.1999999999999 16 521.9 16zM192 116V76C192 69.4 186.6 64 180 64H108C101.4 64 96 69.4 96 76V116C96 122.6 101.4 128 108 128H180C186.6 128 192 122.6 192 116zM384 116V76C384 69.4 378.6 64 372 64H236C229.4 64 224 69.4 224 76V116C224 122.6 229.4 128 236 128H372C378.6 128 384 122.6 384 116z" />
+    <glyph glyph-name="cricket"
+      unicode="&#xF449;"
+      horiz-adv-x="640" d=" M635.7 416.1L620.5 437.7C612.9 448.5 597.9 451.2 587.1 443.6L442.6 342.1C428.1 332 408.2000000000001 335.5 398.1 349.9L385.4 368C375.5 382 355.7 386.2 340.9 375.8L13.8 147.3C4.9 141.1 -0.7 130.8 0.1 120C5.7 40.7 54.8 -29.2 127.5 -61.6C142.9 -68.5 156.4 -59.1 157.9 -58.1L485 170.4C499.5 180.5 503 200.4 492.9 214.8L477.6 236.6C467.4999999999999 251 470.9999999999999 270.9 485.4999999999999 281L629.8 382.8C640.5999999999999 390.4 643.3 405.3 635.6999999999999 416.1zM138 -13.5C89.2 11.8 56 59.1 48.9 113.4L273.7000000000001 270.5L254.6000000000001 162.6L362.8000000000001 143.6L138 -13.5zM437.8 196L399.9000000000001 169.5L291.7000000000001 188.5L310.8000000000001 296.4L348.7000000000001 322.9C352.3000000000001 325.4 357.3000000000001 324.5 359.8000000000001 320.9L439.7 207C442.3 203.5 441.4 198.5 437.8 196zM511.6 127.5C458.7 127.5 415.7000000000001 84.6 415.7000000000001 31.8S458.7 -63.9 511.6 -63.9S607.5 -21 607.5 31.8S564.5 127.5 511.6 127.5zM511.6 -16.1C485.2 -16.1 463.6 5.4 463.6 31.8S485.1 79.6999999999999 511.6 79.6999999999999C538 79.6999999999999 559.6 58.1999999999999 559.6 31.8C559.6 5.3 538.1 -16.1 511.6 -16.1z" />
+    <glyph glyph-name="crop-alt"
+      unicode="&#xF565;"
+      horiz-adv-x="512" d=" M160 432C160 440.84 152.84 448 144 448H112C103.16 448 96 440.84 96 432V352H16C7.16 352 0 344.8400000000001 0 336V304C0 295.16 7.16 288 16 288H96V64C96 46.33 110.33 32 128 32H320V96H160V432zM496 96H416V320C416 337.67 401.67 352 384 352H192V288H352V-48C352 -56.84 359.1600000000001 -64 368 -64H400C408.84 -64 416 -56.84 416 -48V32H496C504.84 32 512 39.16 512 48V80C512 88.84 504.84 96 496 96z" />
+    <glyph glyph-name="crop"
+      unicode="&#xF125;"
+      horiz-adv-x="512" d=" M496 96H416V306.75L507.31 398.06C513.56 404.31 513.56 414.44 507.31 420.69L484.69 443.31C478.44 449.56 468.31 449.56 462.06 443.31L370.75 352H192V288H306.75L160 141.25V432C160 440.84 152.84 448 144 448H112C103.16 448 96 440.84 96 432V352H16C7.16 352 0 344.8400000000001 0 336V304C0 295.16 7.16 288 16 288H96V64C96 46.33 110.33 32 128 32H320V96H205.25L352 242.75V-48C352 -56.84 359.1600000000001 -64 368 -64H400C408.84 -64 416 -56.84 416 -48V32H496C504.84 32 512 39.16 512 48V80C512 88.84 504.84 96 496 96z" />
+    <glyph glyph-name="cross"
+      unicode="&#xF654;"
+      horiz-adv-x="384" d=" M344 344H280V408C280 430.06 262.06 448 240 448H144C121.94 448 104 430.06 104 408V344H40C17.94 344 0 326.06 0 304V208C0 185.94 17.94 168 40 168H104V-24C104 -46.06 121.94 -64 144 -64H240C262.06 -64 280 -46.06 280 -24V168H344C366.06 168 384 185.94 384 208V304C384 326.06 366.06 344 344 344zM336 216H232V-16H152V216H48V296H152V400H232V296H336V216z" />
+    <glyph glyph-name="crosshairs"
+      unicode="&#xF05B;"
+      horiz-adv-x="512" d=" M500 216H470.666C459.597 316.115 380.115 395.597 280 406.666V436C280 442.627 274.627 448 268 448H244C237.373 448 232 442.627 232 436V406.666C131.885 395.597 52.403 316.115 41.334 216H12C5.373 216 0 210.627 0 204V180C0 173.373 5.373 168 12 168H41.334C52.403 67.885 131.885 -11.597 232 -22.666V-52C232 -58.627 237.373 -64 244 -64H268C274.627 -64 280 -58.627 280 -52V-22.666C380.115 -11.597 459.597 67.885 470.666 168H500C506.627 168 512 173.373 512 180V204C512 210.627 506.627 216 500 216zM280 25.699V68C280 74.627 274.627 80 268 80H244C237.373 80 232 74.627 232 68V25.699C158.427 36.16 100.154 94.468 89.699 168H132C138.627 168 144 173.373 144 180V204C144 210.627 138.627 216 132 216H89.699C100.16 289.573 158.468 347.846 232 358.301V316C232 309.373 237.373 304 244 304H268C274.627 304 280 309.373 280 316V358.301C353.573 347.8400000000001 411.846 289.5320000000001 422.301 216H380C373.373 216 368 210.627 368 204V180C368 173.373 373.373 168 380 168H422.301C411.84 94.427 353.532 36.154 280 25.699zM288 192C288 174.327 273.673 160 256 160S224 174.327 224 192C224 209.673 238.327 224 256 224S288 209.673 288 192z" />
+    <glyph glyph-name="crow"
+      unicode="&#xF520;"
+      horiz-adv-x="640" d=" M448 376C434.75 376 424 365.26 424 352C424 338.75 434.75 328 448 328S472 338.75 472 352C472 365.26 461.25 376 448 376zM544 416H519.09C501.51 435.51 476.32 448 448 448C394.98 448 352 405.02 352 352V321.8400000000001L12.09 54.43A30.216 30.216 0 0 1 0 30.26C0 12.74 14.37 0 30.23 0C34.71 0 39.31 1.02 43.73 3.23L165.27 64H261.76L306.17 -56.1C308.44 -62.33 315.32 -65.5400000000001 321.55 -63.27L344.1 -55.0600000000001C350.33 -52.7900000000001 353.54 -45.9100000000001 351.27 -39.6800000000001L312.94 64H352C353.9100000000001 64 355.76 64.23 357.6600000000001 64.29L402.17 -56.09C404.44 -62.32 411.32 -65.53 417.55 -63.26L440.1 -55.05C446.3300000000001 -52.78 449.54 -45.9 447.2700000000001 -39.67L406.0300000000001 71.86C485.74 95.2 544 168.74 544 256V336L640 352C640 387.35 597.02 416 544 416zM496 256C496 176.6 431.4 112 352 112H274.26L319.59 124.95C367.62 138.68 408 172.18 430.31 216.84C434.25 224.75 431.06 234.36 423.1499999999999 238.31C415.2399999999999 242.22 405.6499999999999 239.04 401.68 231.15C383.37 194.49 350.24 166.99 310.77 155.73L165.84 114.3199999999999L381.67 284.12L400 298.53V352C400 378.4700000000001 421.53 400 448 400S496 378.4700000000001 496 352V256z" />
+    <glyph glyph-name="crown"
+      unicode="&#xF521;"
+      horiz-adv-x="640" d=" M528 -16H112C103.2 -16 96 -23.2 96 -32V-48C96 -56.8 103.2 -64 112 -64H528C536.8 -64 544 -56.8 544 -48V-32C544 -23.2 536.8 -16 528 -16zM592 320C565.5 320 544 298.5 544 272C544 264.9 545.6 258.3 548.4 252.2L476 208.8C470.8 205.7 465.2 204.2 459.6 204.2C448.5 204.2 437.7000000000001 210 431.8 220.3L350.3 363C361 371.8 368 385 368 400C368 426.5 346.5 448 320 448S272 426.5 272 400C272 385 279 371.8 289.7 363L208.2 220.4C202.3 210 191.5 204.3 180.4 204.3C174.8 204.3 169.1 205.8 164 208.9L91.7 252.3C94.4 258.3 96.1 265 96.1 272.1C96.1 298.6 74.6 320.1 48.1 320.1S0 298.5 0 272S21.5 224 48 224C50.6 224 53.2 224.4 55.7 224.8L128 32H512L584.3 224.8C586.8 224.4 589.4 224 592 224C618.5 224 640 245.5 640 272S618.5 320 592 320zM478.7 80H161.3L125.3 176.1L139.3 167.7000000000001C151.7 160.2000000000001 166 156.3000000000001 180.4 156.3000000000001C209.1 156.3000000000001 235.7 171.7000000000001 249.9 196.6000000000001L320 319.3L390.1 196.6C404.3 171.7000000000001 430.9000000000001 156.3 459.6 156.3C474.1 156.3 488.3 160.2 500.7 167.7L514.7 176.1L478.7 80z" />
+    <glyph glyph-name="cube"
+      unicode="&#xF1B2;"
+      horiz-adv-x="512" d=" M239.1 440.5L31.1 362.5C12.4 355.5 0 337.5 0 317.5V92.4C0 74.2 10.3 57.6 26.5 49.5L234.5 -54.5C248 -61.3 263.9 -61.3 277.4 -54.5L485.4 49.5C501.7 57.6 511.9 74.3 511.9 92.4V317.5C511.9 337.5 499.5 355.4 480.8 362.4L272.8 440.4C262 444.6 250 444.6 239.1 440.5zM256 395.5L464 317.5V317.2L256 232.7L48 317.2V317.5L256 395.5zM48 265.4L232 190.6V0.4L48 92.4V265.4000000000001zM280 0.5V190.6L464 265.4000000000001V92.5L280 0.5z" />
+    <glyph glyph-name="cubes"
+      unicode="&#xF1B3;"
+      horiz-adv-x="512" d=" M384 232.9V345.5C384 360.5 374.7 373.9 360.6 379.2L268.6 413.7C260.5 416.8 251.5000000000001 416.8 243.3 413.7L151.3 379.2C137.2 373.9 127.9 360.5 127.9 345.5V232.9L23.4 193.6C9.3 188.4 0 174.9 0 159.9V53.3C0 39.6999999999999 7.7 27.1999999999999 19.9 21.1L118.5 -28.2C128.6 -33.3000000000001 140.6 -33.3000000000001 150.7 -28.2L256 24.4L361.3 -28.2C371.4000000000001 -33.3000000000001 383.4000000000001 -33.3000000000001 393.5 -28.2L492.1 21.1C504.3 27.2 512 39.7 512 53.3V159.9C512 174.9 502.7 188.3 488.6 193.6L384 232.9zM268 198.1V296L360 327.7V230.1L268 198.1zM152 353.8L256 392.8L360 353.8V353.6L256 317L152 353.7V353.8zM152 327.7L244 296V198.1L152 230.1V327.7zM122 -1.7L25.2 46.7V140L122 100.7V-1.7zM25.2 167.2V167.4L134.6 208.4L242.7 167.9V166.7L134.6 122.8L25.2 167.2zM147.2 100.7L242.7 139.5V46L147.2 -1.8V100.7zM364.8 -1.7L269.3 46V139.4L364.8 100.6V-1.7zM486.8 46.6999999999999L390 -1.7V100.7L486.8 140V46.7zM486.8 167.1999999999999L377.4 122.8L269.3 166.6999999999999V167.8999999999999L377.4 208.3999999999999L486.8 167.3999999999999V167.1999999999999z" />
+    <glyph glyph-name="curling"
+      unicode="&#xF44A;"
+      horiz-adv-x="640" d=" M540.5 248.3C529.7 289.5 492.6 320 448 320H288V336C288 362.5 309.5 384 336 384H464C472.8 384 480 391.2 480 400V432C480 440.8 472.8 448 464 448H336C274.1 448 224 397.9 224 336V320H192C147.4 320 110.3 289.5 99.5 248.3C41.9 229.4 0 175.9 0 112V80C0 0.5 64.5 -64 144 -64H496C575.5 -64 640 0.5 640 80V112C640 175.9 598.1 229.4 540.5 248.3zM144 208H496C548.9 208 592 164.9 592 112H48C48 164.9 91.1 208 144 208zM496 -16H144C91.1 -16 48 27.1 48 80H592C592 27.1 548.9 -16 496 -16z" />
+    <glyph glyph-name="cut"
+      unicode="&#xF0C4;"
+      horiz-adv-x="448" d=" M263.39 192L445.6600000000001 374.63C448.7800000000001 377.75 448.7800000000001 382.82 445.6600000000001 385.94C426.92 404.68 396.5200000000001 404.68 377.7800000000001 385.94L223.82 231.65L180.72 274.8300000000001C187.92 288.29 192 303.67 192 320C192 373.02 149.02 416 96 416S0 373.02 0 320S42.98 224 96 224C112.31 224 127.66 228.07 141.11 235.24L184.26 192L141.11 148.76C127.66 155.93 112.31 160 96 160C42.98 160 0 117.02 0 64S42.98 -32 96 -32S192 10.98 192 64C192 80.33 187.92 95.71 180.72 109.17L223.82 152.35L377.77 -1.9399999999999C396.51 -20.6799999999999 426.91 -20.6799999999999 445.65 -1.9399999999999C448.77 1.1800000000001 448.77 6.2500000000001 445.65 9.3700000000001L263.39 192zM96 272C69.53 272 48 293.53 48 320S69.53 368 96 368S144 346.4700000000001 144 320S122.47 272 96 272zM96 16C69.53 16 48 37.53 48 64S69.53 112 96 112S144 90.47 144 64S122.47 16 96 16z" />
+    <glyph glyph-name="dagger"
+      unicode="&#xF6CB;"
+      horiz-adv-x="384" d=" M344 352H216V432C216 440.84 208.84 448 200 448H184C175.16 448 168 440.84 168 432V352H40C17.91 352 0 334.0900000000001 0 312S17.91 272 40 272C59.25 272 74.57 285.88 78.38 304H112V39.95L175.36 -55.09C179.32 -61.03 185.66 -64 192 -64S204.68 -61.03 208.64 -55.09L272 39.95V304H305.62C309.43 285.88 324.75 272 344 272C366.09 272 384 289.91 384 312S366.09 352 344 352zM224 54.48L192 6.48L160 54.48V304H224V54.48z" />
+    <glyph glyph-name="database"
+      unicode="&#xF1C0;"
+      horiz-adv-x="448" d=" M224 400C321.1670000000001 400 400 372.277 400 338.286V333.7150000000001C400 299.723 321.167 272 224 272S48 299.723 48 333.714V338.285C48 372.277 126.833 400 224 400M400 264.982V238.583C400 204.592 321.1670000000001 176.869 224 176.869S48 204.592 48 238.583V264.982C85.813 237.018 155.021 224 224 224S362.187 237.018 400 264.982M400 168.982V142.148C400 108.157 321.1670000000001 80.434 224 80.434S48 108.158 48 142.149V168.983C85.813 141.018 155.021 128 224 128S362.187 141.018 400 168.982M400 72.982V45.7139999999999C400 11.723 321.167 -16 224 -16S48 11.723 48 45.714V72.982C85.813 45.018 155.021 32 224 32S362.187 45.018 400 72.982M224 448C137.052 448 0 424.74 0 338.286V45.715C0 -40.758 137.03 -64 224 -64C310.948 -64 448 -40.74 448 45.714V338.286C448 424.758 310.9700000000001 448 224 448z" />
+    <glyph glyph-name="deaf"
+      unicode="&#xF2A4;"
+      horiz-adv-x="512" d=" M404.486 323.515L387.515 340.486C382.829 345.1720000000001 382.829 352.77 387.515 357.457L474.544 444.486C479.23 449.1720000000001 486.828 449.1720000000001 491.515 444.486L508.486 427.515C513.172 422.829 513.172 415.231 508.486 410.544L421.457 323.515C416.77 318.828 409.172 318.828 404.486 323.515zM37.456 -60.485L188.485 90.544C193.171 95.23 193.171 102.828 188.485 107.515L171.514 124.486C166.828 129.172 159.23 129.172 154.543 124.486L3.515 -26.544C-1.171 -31.23 -1.171 -38.828 3.515 -43.515L20.486 -60.486C25.172 -65.172 32.77 -65.172 37.456 -60.485zM351.15 50.718C351.901 96.165 424 109.341 424 184C424 277.516 348.9700000000001 352 256 352C162.866 352 88 277.338 88 184C88 170.745 98.745 160 112 160S136 170.745 136 184C136 251.05 189.62 304 256 304C322.503 304 376 250.918 376 184C376 135.176 304.157 123.38 303.151 51.243L303.149 50.909C303.149 14.015 273.5420000000001 -16 237.149 -16C223.894 -16 213.149 -26.745 213.149 -40S223.894 -64 237.149 -64C299.945 -64 351.043 -12.554 351.15 50.718zM320 160C306.745 160 296 170.745 296 184C296 206.056 278.056 224 256 224S216 206.056 216 184C216 170.745 205.255 160 192 160S168 170.745 168 184C168 232.523 207.477 272 256 272S344 232.523 344 184C344 170.745 333.255 160 320 160z" />
+    <glyph glyph-name="deer-rudolph"
+      unicode="&#xF78F;"
+      horiz-adv-x="576" d=" M400 288C391.2 288 384 280.8 384 272S391.2 256 400 256S416 263.2 416 272S408.8 288 400 288zM536 352C520.5 352 507.5 342.9 500.8 330C495 334.1 488.5 337.4 481.4 339.4L412.7000000000001 358.8C415.7000000000001 362.1 418.9000000000001 365.1 421.4000000000001 368.8L439.5 396C444.4 403.4 442.4 413.3 435.1 418.2L421.8 427.1C414.4000000000001 432 404.5 430 399.6 422.7L381.5 395.5C377.6 389.7 372.3 385 366.1 381.9L317.3 357.5L316 356.9L307 359.4L307.7 360.3C315.6 370.2000000000001 320 382.6 320 395.3V432C320 440.8 312.8 448 304 448H288C279.2 448 272 440.8 272 432V395.2C272 393.4 271.4 391.6 270.3 390.2L256.9000000000001 373.4L245.9000000000001 376.5C242.5000000000001 377.5 240.1 380.6 240.1 384.2V432C240.1 440.8 232.9000000000001 448 224.1 448H208.1C199.3 448 192.1 440.8 192.1 432V384.2C192.1 359.2 208.9 337 233.0000000000001 330.3L296.8 312.4L282.3 288H88C39.5 288 0 248.5 0 200V136H48V128.8L37.6 101C31.4 84.2 30.3 66.1 35 47.7L59.5 -33.8C64 -51.6 79.9 -64.1 98.3 -64.1H162.1C174.5 -64.1 186 -58.5 193.6 -48.8C201.2 -39 203.9 -26.5 200.6 -13.4L176.6 67.3L187.3 95.9H256V-24.1C256 -46.2 273.9 -64.1 296 -64.1H360C382.1 -64.1 400 -46.2 400 -24.1V145.6L421.9 184H464C499.3 184 528 212.7 528 248V273.6C530.7 273 533.2 272 536 272C558.1 272 576 289.9 576 312S558.1 352 536 352zM480 248C480 239.2 472.8 232 464 232H394.1L352 158.4V-16H304V144H154L125.9 69.2L151.3 -16H104.2L81.1 60.5C79.1 68.4 79.6 76.6 82.4 84.2L96.5 116L96 184H48V200C48 222.1 65.9 240 88 240H309.7L344.2 298.8C351.7 313.8 368.8 321.3 385 316.8L468.3 293.3C475.2 291.4 480 285 480 277.9V248z" />
+    <glyph glyph-name="deer"
+      unicode="&#xF78E;"
+      horiz-adv-x="512" d=" M384 288C375.2 288 368 280.8 368 272S375.2 256 384 256S400 263.2 400 272S392.8 288 384 288zM465.4 339.5L396.7 358.9C399.7 362.2 402.9 365.2 405.4 368.9L423.5 396C428.4 403.3 426.4 413.3 419.1 418.2L405.8 427.1C398.4000000000001 432 388.5 430 383.6 422.7L365.5 395.5C361.6 389.7 356.3 385 350.1 381.9L301.3 357.5L291.8 360.3C299.7 370.2 304.1 382.6 304.1 395.3V432C304.1 440.8 296.9000000000001 448 288.1 448H272.1C263.3 448 256.1 440.8 256.1 432V395.2C256.1 393.4 255.5000000000001 391.6 254.4000000000001 390.2L241 373.4L230 376.5C226.6 377.5 224.2 380.6 224.2 384.2V432C224.2 440.8 217 448 208.2 448H192.2C183.4 448 176.2 440.8 176.2 432V384.2C176.2 359.2 193 337 217.1 330.3L280.9 312.4L266.3 288H88C39.5 288 0 248.5 0 200V136H48V128.8L37.6 101C31.4 84.2 30.3 66.1 35 47.7L59.5 -33.8C64 -51.6 79.9 -64.1 98.3 -64.1H162.1C174.5 -64.1 186 -58.5 193.6 -48.8C201.2 -39 203.9 -26.5 200.6 -13.4L176.6 67.3L187.3 95.9H240V-24.1C240 -46.2 257.9 -64.1 280 -64.1H344C366.1 -64.1 384 -46.2 384 -24.1V152.7L404.8 184H448C483.3 184 512 212.7 512 248V277.9C512 306.4 492.8 331.7 465.4 339.5zM464 248C464 239.2 456.8 232 448 232H379.2L336 167.3V-16H288V144H154L125.9 69.2L151.3 -16H104.2L81.1 60.5C79.1 68.4 79.6 76.6 82.4 84.2L96.5 116L96 184H48V200C48 222.1 65.9 240 88 240H293.7L328.2 298.8C335.7 313.8 352.8 321.3 369 316.8L452.3 293.3C459.2 291.4 464 285 464 277.9V248z" />
+    <glyph glyph-name="democrat"
+      unicode="&#xF747;"
+      horiz-adv-x="640" d=" M638.7 226.8L619 256.3C593.8 294.1 552.5 317.5 507.4 320H288.4L214.8 381.2000000000001C226.1 400.4000000000001 226.3 424.3 213.9 443.1C210.5 448.3 203.1 449 198.7 444.6L157.8 403.8L115.9 445.6C112.3 449.2 106.3 448.6 103.5 444.4000000000001C92.1 427.2000000000001 93.6 404.7 106.6 388.4000000000001L13.6 279.7000000000001C-1.1 262.6 -4 238.4 6.1 218.3L19.8 190.9C29.4 171.8 48.6 160.0000000000001 69.9 160.0000000000001H100.9C115.7 160.0000000000001 130.1 166.0000000000001 139.1 175.1000000000001L149.4 183.8000000000001L175.7000000000001 115.5000000000001V-24C175.7000000000001 -46.1 193.7000000000001 -64 215.7000000000001 -64H287.8000000000001C309.9000000000001 -64 327.8000000000001 -46.1 327.8000000000001 -24V16H423.9000000000001V-24C423.9000000000001 -46.1 441.9000000000001 -64 463.9000000000001 -64H536C558.1 -64 576 -46.1 576 -24V232C576 232.5 575.9 233 575.8 233.5C576.8 232.1 578.0999999999999 231.1 579.0999999999999 229.6L598.6999999999999 200.2C599.9 198.4 601.6999999999999 197.2 603.8 196.8C606 196.3 608 196.8 609.8 198L636.5 215.7C640.1 218.2 641.1 223.2 638.7 226.8zM527.9 -16H471.8V48C471.8 56.8 464.6 64 455.8 64H295.7C286.9 64 279.7 56.8 279.7 48V-16H223.6V96H527.9V-16zM527.9 144H214.7L177.8 242.8C173.9 253.2 160.9 256.6 152.4 249.4L106.4 210.3C104.9 208.8 102.8 208 100.7 208H69.7C66.6 208 63.9 209.7 62.5 212.4L48.8 239.7C47.4 242.6 47.8 246.0000000000001 49.9 248.5000000000001L138.6 352H174.9L271 272H487.9C510 272 527.9 254.1 527.9 232V144zM283.7 221.2L275.5 237.7C274 240.7 269.8 240.7 268.3 237.7L260.1 221.2L241.8 218.5C238.5 218 237.2 214 239.6 211.7L252.8 198.8L249.7 180.6C249.1 177.3 252.6 174.8 255.5000000000001 176.4L271.8 185L288.1 176.4C291 174.9 294.5 177.3 293.9000000000001 180.6L290.8 198.8L304 211.7C306.4 214 305.1 218 301.8 218.5L283.7 221.2zM379.5 221.2L371.3 237.7C369.8 240.7 365.6 240.7 364.1 237.7L355.9000000000001 221.2L337.6 218.5C334.3 218 333 214 335.4000000000001 211.7L348.6 198.8L345.5 180.6C344.9 177.3 348.4 174.8 351.3 176.4L367.6 185L383.9000000000001 176.4C386.8 174.9 390.3 177.3 389.7000000000001 180.6L386.6 198.8L399.8 211.7C402.2 214 400.9000000000001 218 397.6 218.5L379.5 221.2zM475.7 221.2L467.5 237.7C466 240.7 461.8 240.7 460.3 237.7L452.1 221.2L433.8 218.5C430.5 218 429.2 214 431.6 211.7L444.8 198.8L441.7 180.6C441.1 177.3 444.6 174.8 447.5 176.4L463.8 185L480.1 176.4C483 174.9 486.5 177.3 485.9 180.6L482.8 198.8L496 211.7C498.4 214 497.1 218 493.8 218.5L475.7 221.2z" />
+    <glyph glyph-name="desktop-alt"
+      unicode="&#xF390;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V112C0 85.5 21.5 64 48 64H528C554.5 64 576 85.5 576 112V400C576 426.5 554.5 448 528 448zM48 394C48 397.3 50.7 400 54 400H522C525.3 400 528 397.3 528 394V160H48V394zM480 -40C480 -53.3 469.3 -64 456 -64H120C106.7 -64 96 -53.3 96 -40S106.7 -16 120 -16H218.7L237.3 39.8C238.9 44.7 243.5 48 248.7 48H327.4C332.6 48 337.2 44.7 338.8 39.8L357.4 -16H456C469.3 -16 480 -26.7 480 -40z" />
+    <glyph glyph-name="desktop"
+      unicode="&#xF108;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V112C0 85.5 21.5 64 48 64H528C554.5 64 576 85.5 576 112V400C576 426.5 554.5 448 528 448zM522 112H54C50.7 112 48 114.7 48 118V394C48 397.3 50.7 400 54 400H522C525.3 400 528 397.3 528 394V118C528 114.7 525.3 112 522 112zM480 -40C480 -53.3 469.3 -64 456 -64H120C106.7 -64 96 -53.3 96 -40S106.7 -16 120 -16H218.7L237.3 39.8C238.9 44.7 243.5 48 248.7 48H327.4C332.6 48 337.2 44.7 338.8 39.8L357.4 -16H456C469.3 -16 480 -26.7 480 -40z" />
+    <glyph glyph-name="dewpoint"
+      unicode="&#xF748;"
+      horiz-adv-x="448" d=" M176 448C163.6 448 151.3 441.2 146.8 427.3C100 279.4 0 207.2 0 103C0 10.7 78.7 -64 176 -64S352 10.7 352 103C352 207.8 252.2 278.8 205.2 427.3C201.2 440.9 188.6 448 176 448zM304 103C304 37.4 246.6 -16 176 -16S48 37.4 48 103C48 145.9 73.1 185.9 104.8 236.5C128.5 274.3 154.7 316.1 176 367.5C197.4 315.8 223.6 274.1 247.4 236.3C279 185.9 304 146.1 304 103zM368 448C323.9 448 288 412.1 288 368S323.9 288 368 288S448 323.9 448 368S412.1 448 368 448zM368 336C350.3 336 336 350.3 336 368S350.3 400 368 400S400 385.7 400 368S385.7 336 368 336z" />
+    <glyph glyph-name="dharmachakra"
+      unicode="&#xF655;"
+      horiz-adv-x="512" d=" M499.23 215.99L478.77 215.37C474.17 259.7 456.61 300.15 429.99 332.9600000000001L444.95 347.03C450.08 351.75 450.25 359.79 445.32 364.7200000000001L428.72 381.32C423.79 386.25 415.75 386.08 411.03 380.95L396.96 365.99C364.15 392.61 323.7 410.17 279.37 414.77L279.99 435.23C280.28 442.2 274.71 448 267.74 448H244.26C237.29 448 231.7200000000001 442.2 232.01 435.23L232.63 414.77C188.3 410.17 147.86 392.61 115.04 365.99L100.97 380.95C96.25 386.08 88.21 386.25 83.28 381.32L66.68 364.7200000000001C61.75 359.79 61.92 351.75 67.05 347.03L82.0100000000001 332.9600000000001C55.39 300.15 37.8300000000001 259.7 33.23 215.37L12.77 215.99C5.8 216.28 0 210.71 0 203.74V180.26C0 173.29 5.8 167.72 12.77 168.01L33.23 168.63C37.83 124.3 55.39 83.86 82.01 51.04L67.05 36.97C61.92 32.2499999999999 61.75 24.21 66.68 19.28L83.28 2.68C88.21 -2.2500000000001 96.25 -2.08 100.97 3.05L115.04 18.0099999999999C147.85 -8.6100000000001 188.3 -26.1700000000001 232.63 -30.7700000000001L232.01 -51.2300000000001C231.72 -58.19 237.29 -64.0000000000001 244.26 -64.0000000000001H267.74C274.7100000000001 -64.0000000000001 280.2800000000001 -58.1900000000001 279.99 -51.2300000000001L279.37 -30.7700000000001C323.7 -26.1700000000001 364.14 -8.6100000000001 396.9600000000001 18.0099999999999L411.0300000000001 3.0499999999999C415.7500000000001 -2.0800000000001 423.79 -2.2500000000001 428.7200000000001 2.6799999999999L445.3200000000001 19.2799999999999C450.2500000000001 24.2099999999999 450.0800000000001 32.2499999999999 444.9500000000001 36.9699999999999L429.9900000000001 51.0399999999999C456.6100000000001 83.8499999999999 474.1700000000001 124.2999999999999 478.7700000000001 168.6299999999999L499.2300000000001 168.0099999999999C506.2000000000001 167.7199999999999 512.0000000000001 173.2899999999999 512.0000000000001 180.2599999999999V203.7399999999999C512.0000000000001 210.7099999999999 506.2000000000001 216.2799999999999 499.2300000000001 215.9899999999999zM430.49 213.89L350.01 211.43C347.52 223.49 342.68 234.68 336.12 244.63L394.79 299.83C413.7700000000001 275.46 426.4700000000001 246.04 430.49 213.89zM256 144C229.49 144 208 165.49 208 192S229.49 240 256 240S304 218.51 304 192S282.51 144 256 144zM363.8400000000001 330.79L308.6400000000001 272.12C298.6900000000001 278.68 287.5000000000001 283.52 275.4400000000001 286.01L277.9000000000001 366.49C310.04 362.48 339.4600000000001 349.77 363.8400000000001 330.79zM234.1100000000001 366.49L236.5700000000001 286.01C224.5100000000001 283.52 213.3200000000001 278.68 203.3700000000001 272.12L148.1700000000001 330.79C172.5400000000001 349.77 201.9600000000001 362.48 234.1100000000001 366.49zM117.21 299.84L175.8800000000001 244.64C169.3200000000001 234.69 164.4800000000001 223.5 161.9900000000001 211.44L81.5100000000001 213.9C85.5300000000001 246.04 98.2300000000001 275.4600000000001 117.2100000000001 299.8400000000001zM81.51 170.11L161.9900000000001 172.57C164.4800000000001 160.51 169.3200000000001 149.32 175.8800000000001 139.37L117.2100000000001 84.17C98.2300000000001 108.54 85.5200000000001 137.96 81.5100000000001 170.11zM148.16 53.21L203.36 111.8800000000001C213.31 105.3200000000001 224.5 100.4800000000001 236.56 97.9900000000001L234.1 17.51C201.96 21.52 172.54 34.23 148.16 53.21zM277.89 17.51L275.43 97.9900000000001C287.49 100.4800000000001 298.68 105.3200000000001 308.63 111.8800000000001L363.83 53.21C339.46 34.23 310.04 21.52 277.89 17.51zM394.79 84.1600000000001L336.12 139.3600000000001C342.68 149.3100000000001 347.5199999999999 160.5000000000001 350.01 172.5600000000001L430.49 170.1000000000001C426.48 137.9600000000001 413.77 108.5400000000001 394.79 84.1600000000001z" />
+    <glyph glyph-name="diagnoses"
+      unicode="&#xF470;"
+      horiz-adv-x="640" d=" M632 -16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-24C640 -19.6 636.4 -16 632 -16zM256 144C256 135.2 263.2 128 272 128S288 135.2 288 144S280.8 160 272 160S256 152.8 256 144zM496 192C504.8 192 512 199.2 512 208S504.8 224 496 224S480 216.8 480 208S487.2 192 496 192zM96 176C104.8 176 112 183.2 112 192S104.8 208 96 208S80 200.8 80 192S87.2 176 96 176zM584.6 119.6L566.8000000000001 92.9C563.7 88.3 558.7 85.7000000000001 553.5000000000001 85.7000000000001C543.7000000000002 85.7000000000001 497.9000000000001 120.6 416.0000000000001 144.6V32H464.0000000000001V75.8C490.3000000000001 64.1 510.7000000000001 52.7 521.0000000000001 46.6C530.9000000000001 40.8 542.1000000000001 37.7 553.5000000000001 37.7C574.9000000000001 37.7 594.8000000000001 48.4 606.7000000000002 66.3000000000001L624.5000000000001 93.0000000000001C634.2000000000002 107.6000000000001 637.6000000000001 125.7000000000001 633.7000000000002 142.7000000000001C629.9000000000002 159.6 619.2000000000002 174.4 604.3000000000002 183.3000000000001C590.5000000000002 191.6000000000001 569.0000000000002 203.4000000000001 543.1000000000001 215.6000000000001C547.3000000000002 189.1000000000001 529.8000000000002 174.1000000000001 525.7000000000002 170.7000000000001C548.9000000000002 159.6000000000001 567.9000000000002 149.1000000000001 579.6000000000001 142.1000000000001C587.6000000000001 137.4000000000001 589.7000000000002 127.2000000000001 584.6000000000001 119.6000000000001zM33.2 66.3C45.1 48.4 65 37.7 86.4 37.7C97.8 37.7 109.1 40.8 118.9 46.6C129.2 52.7 149.6 64.1 175.9 75.8V32H223.9V144.6C142.8 120.8 96 85.7 86.4 85.7C81.2 85.7 76.2 88.2 73.1 92.9L55.3 119.6C50.2 127.2 52.4 137.4 60.2 142.1C63.8 144.3 68.7 147 73.6 149.8C58.9 157.6 48.7 172.8 48.1 190.5C43.7 188 39 185.3999999999999 35.5 183.3C20.6 174.4 9.9 159.6 6.1 142.6999999999999C2.3 125.6999999999999 5.6 107.5999999999999 15.3 92.9999999999999L33.2 66.3zM143.2 183.6C192.7 204.5 255.7 224 320 224C364.9 224 409 214.4 448.6 201.6C445 228.2 462.7 242.7 466.9 246C447.0000000000001 252.6 425.8 258.3 403.9000000000001 262.8C421.1 282.5 431.9000000000001 307.9 431.9000000000001 336.1C432 397.8 381.8 448 320 448C258.2 448 208 397.8 208 336C208 308 218.7 282.6 235.8 262.9C196 254.8 158.7 242.1 126.5 228.7C141.8 216 145.8 198.5 143.2 183.6zM320 400C355.3 400 384 371.3 384 336S355.3 272 320 272S256 300.7 256 336S284.7 400 320 400zM352 64C352 55.2 359.2 48 368 48S384 55.2 384 64S376.8 80 368 80S352 72.8 352 64z" />
+    <glyph glyph-name="diamond"
+      unicode="&#xF219;"
+      horiz-adv-x="448" d=" M189.5 -48L11 162.3C-3.6 179.5 -3.6 204.5 11 221.8L189.5 432C207.6 453.4 240.4 453.3 258.5 432L437 221.7C451.6 204.5 451.6 179.5 437 162.2L258.5 -48C240.4 -69.4 207.6 -69.2999999999999 189.5 -48zM48 192L224 -14.5L400 192L224 398.5L48 192z" />
+    <glyph glyph-name="dice-d10"
+      unicode="&#xF6CD;"
+      horiz-adv-x="512" d=" M503.88 186.71L279.8 437.36C273.45 444.45 264.73 448 256 448S238.55 444.45 232.2 437.36L8.12 186.71C-3.69 173.5 -2.48 153.21 10.81 141.49L234.89 -56.03C240.92 -61.35 248.46 -64 256 -64S271.08 -61.34 277.11 -56.03L501.19 141.5C514.48 153.21 515.68 173.51 503.88 186.71zM256 160.17L189.92 204.22L256 358.4L322.08 204.22L256 160.17zM142.63 215.73L85.73 201.5L183.31 310.6500000000001L142.63 215.73zM155.53 169.47L232 118.49V10.52L74.61 149.24L155.53 169.47zM280 118.49L356.4700000000001 169.47L437.3900000000001 149.25L280 10.51V118.49zM369.37 215.73L328.69 310.6500000000001L426.27 201.5L369.37 215.73z" />
+    <glyph glyph-name="dice-d12"
+      unicode="&#xF6CE;"
+      horiz-adv-x="512" d=" M508.62 262.76L452.77 374.46A32.06 32.06 0 0 1 438.46 388.77L326.76 444.62A32.066 32.066 0 0 1 312.45 448H199.55C194.58 448 189.68 446.84 185.24 444.62L73.54 388.77A32.06 32.06 0 0 1 59.23 374.4600000000001L3.38 262.76A32.066 32.066 0 0 1 0 248.45V135.56C0 130.59 1.16 125.69 3.38 121.25L59.23 9.55A32.06 32.06 0 0 1 73.54 -4.76L185.24 -60.61C189.68 -62.83 194.58 -63.99 199.55 -63.99H312.44C317.4100000000001 -63.99 322.31 -62.83 326.75 -60.61L438.45 -4.76A32.06 32.06 0 0 1 452.76 9.55L508.61 121.25C510.83 125.69 511.99 130.59 511.99 135.56V248.45C512 253.41 510.84 258.31 508.62 262.76zM455 262.66L376.82 158.42L280 206.83V300.3300000000001L420.7200000000001 328.4700000000001L419.79 333.0800000000001L455 262.66zM300.56 -16H211.45L158.49 116.41L256 165.17L353.52 116.41L300.56 -16zM203.33 400H308.67L372.9500000000001 367.86L256 344.4700000000001L139.06 367.86L203.33 400zM92.21 333.08L91.28 328.4700000000001L232 300.32V206.82L135.18 158.41L57 262.66L92.21 333.08zM48 139.33V194.68L106.9 116.15L148.86 11.24L99.78 35.78L48 139.33zM412.2200000000001 35.78L363.1400000000001 11.24L405.1 116.15L464 194.68V139.33L412.2200000000001 35.78z" />
+    <glyph glyph-name="dice-d20"
+      unicode="&#xF6CF;"
+      horiz-adv-x="448" d=" M431.88 331.87L239.88 443.7A31.478000000000005 31.478000000000005 0 0 1 208.12 443.7L16.12 331.86C6.15 326.06 0 315.25 0 303.55V80.46C0 68.7500000000001 6.15 57.9500000000001 16.12 52.14L208.12 -59.6999999999999A31.478000000000005 31.478000000000005 0 0 1 239.88 -59.6999999999999L431.88 52.1400000000001C441.85 57.9500000000001 448 68.7600000000001 448 80.4600000000001V303.55C448 315.25 441.85 326.06 431.88 331.87zM224 360.13L296.4700000000001 264H151.53L224 360.13zM224 108.71L155.72 216H292.28L224 108.71zM113.12 193.53L176.49 93.9500000000001L93.07 113.3200000000001L113.12 193.53zM334.88 193.53L354.93 113.3200000000001L271.51 93.9500000000001L334.88 193.53zM351.48 270.75L281.0700000000001 364.1600000000001L387.0900000000001 302.4000000000001L351.48 270.75zM96.52 270.75L60.91 302.4L166.93 364.16L96.52 270.75zM72.28 228.0900000000001L48 130.95V249.67L72.28 228.09zM200 39.22V0.58L89.71 64.82L200 39.22zM248 39.22L358.29 64.83L248 0.58V39.22zM400 130.9500000000001L375.7200000000001 228.0800000000001L400 249.67V130.95z" />
+    <glyph glyph-name="dice-d4"
+      unicode="&#xF6D0;"
+      horiz-adv-x="512" d=" M504.9 158.97L280.85 436.14C274.45 444.04 265.23 448 256 448S237.55 444.04 231.15 436.14L7.1 158.97C-4.21 144.97 -1.74 124.4 12.57 113.48L236.62 -57.46A31.870000000000005 31.870000000000005 0 0 1 256 -64.01C262.83 -64.01 269.6600000000001 -61.83 275.38 -57.46L499.43 113.48C513.74 124.4 516.21 144.98 504.9 158.97zM232 360.83V6.45L54.81 141.63L232 360.83zM280 6.45V360.83L457.19 141.63L280 6.45z" />
+    <glyph glyph-name="dice-d6"
+      unicode="&#xF6D1;"
+      horiz-adv-x="448" d=" M431.88 331.87L239.88 443.7A31.478000000000005 31.478000000000005 0 0 1 208.12 443.7L16.12 331.86C6.15 326.06 0 315.25 0 303.55V80.46C0 68.7500000000001 6.15 57.9500000000001 16.12 52.14L208.12 -59.6999999999999A31.478000000000005 31.478000000000005 0 0 1 239.88 -59.6999999999999L431.88 52.1400000000001C441.85 57.9500000000001 448 68.7600000000001 448 80.4600000000001V303.55C448 315.25 441.85 326.06 431.88 331.87zM224 397.4L376.35 308.66L224 219.78L71.65 308.66L224 397.4zM48 266.88L200 178.22V0.58L48 89.12V266.88zM248 0.58V178.22L400 266.88V89.12L248 0.58z" />
+    <glyph glyph-name="dice-d8"
+      unicode="&#xF6D2;"
+      horiz-adv-x="512" d=" M502.12 215.86L279.86 438.12C273.27 444.71 264.64 448 256 448S238.73 444.71 232.14 438.12L9.88 215.86C-3.3 202.68 -3.3 181.31 9.88 168.13L232.13 -54.12C238.72 -60.71 247.36 -64 255.99 -64S273.26 -60.71 279.85 -54.12L502.1 168.13C515.2900000000001 181.32 515.2900000000001 202.68 502.12 215.86zM280 370.1L446.38 203.72L280 132.4V370.1zM232 132.4L65.62 203.71L232 370.1V132.4zM232 80.18V13.91L116.04 129.87L232 80.18zM280 80.18L395.9700000000001 129.87L280 13.9V80.18z" />
+    <glyph glyph-name="dice-five"
+      unicode="&#xF523;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM128 320C110.33 320 96 305.67 96 288S110.33 256 128 256S160 270.3300000000001 160 288S145.67 320 128 320zM224 224C206.33 224 192 209.67 192 192S206.33 160 224 160S256 174.33 256 192S241.67 224 224 224zM128 128C110.33 128 96 113.67 96 96S110.33 64 128 64S160 78.33 160 96S145.67 128 128 128zM320 320C302.33 320 288 305.67 288 288S302.33 256 320 256S352 270.3300000000001 352 288S337.67 320 320 320zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128z" />
+    <glyph glyph-name="dice-four"
+      unicode="&#xF524;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM128 320C110.33 320 96 305.67 96 288S110.33 256 128 256S160 270.3300000000001 160 288S145.67 320 128 320zM128 128C110.33 128 96 113.67 96 96S110.33 64 128 64S160 78.33 160 96S145.67 128 128 128zM320 320C302.33 320 288 305.67 288 288S302.33 256 320 256S352 270.3300000000001 352 288S337.67 320 320 320zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128z" />
+    <glyph glyph-name="dice-one"
+      unicode="&#xF525;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM224 224C206.33 224 192 209.67 192 192S206.33 160 224 160S256 174.33 256 192S241.67 224 224 224z" />
+    <glyph glyph-name="dice-six"
+      unicode="&#xF526;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM128 320C110.33 320 96 305.67 96 288S110.33 256 128 256S160 270.3300000000001 160 288S145.67 320 128 320zM128 224C110.33 224 96 209.67 96 192S110.33 160 128 160S160 174.33 160 192S145.67 224 128 224zM320 224C302.33 224 288 209.67 288 192S302.33 160 320 160S352 174.33 352 192S337.67 224 320 224zM128 128C110.33 128 96 113.67 96 96S110.33 64 128 64S160 78.33 160 96S145.67 128 128 128zM320 320C302.33 320 288 305.67 288 288S302.33 256 320 256S352 270.3300000000001 352 288S337.67 320 320 320zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128z" />
+    <glyph glyph-name="dice-three"
+      unicode="&#xF527;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM128 320C110.33 320 96 305.67 96 288S110.33 256 128 256S160 270.3300000000001 160 288S145.67 320 128 320zM224 224C206.33 224 192 209.67 192 192S206.33 160 224 160S256 174.33 256 192S241.67 224 224 224zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128z" />
+    <glyph glyph-name="dice-two"
+      unicode="&#xF528;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM400 32C400 23.18 392.82 16 384 16H64C55.18 16 48 23.18 48 32V352C48 360.82 55.18 368 64 368H384C392.82 368 400 360.82 400 352V32zM128 320C110.33 320 96 305.67 96 288S110.33 256 128 256S160 270.3300000000001 160 288S145.67 320 128 320zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128z" />
+    <glyph glyph-name="dice"
+      unicode="&#xF522;"
+      horiz-adv-x="640" d=" M480 120C466.75 120 456 109.26 456 96C456 82.75 466.75 72 480 72S504 82.75 504 96C504 109.26 493.25 120 480 120zM576 256H439.38V255.99C436.49 261.16 433.12 266.14 428.72 270.54L270.54 428.7200000000001C257.69 441.58 240.84 448 224 448S190.31 441.58 177.46 428.7200000000001L19.28 270.54C-6.42 244.84 -6.42 203.16 19.28 177.46L177.46 19.28C190.31 6.43 207.16 0 224 0S257.69 6.43 270.54 19.28L320 68.74V0C320 -35.35 348.65 -64 384 -64H576C611.35 -64 640 -35.35 640 0V192C640 227.35 611.35 256 576 256zM235.63 54.18C231.44 49.99 226.54 49.36 224 49.36S216.56 49.99 212.37 54.18L54.18 212.37C47.76 218.79 47.76 229.23 54.18 235.64L212.37 393.82C216.56 398.01 221.46 398.64 224 398.64S231.44 398.01 235.63 393.82L393.82 235.64C400.24 229.23 400.24 218.79 393.82 212.37L235.63 54.18zM592 0C592 -8.82 584.82 -16 576 -16H384C375.18 -16 368 -8.82 368 0V116.74L428.7200000000001 177.46C437.4500000000001 186.1900000000001 442.98 196.8300000000001 445.7700000000001 208H576C584.82 208 592 200.82 592 192V0zM224 248C210.75 248 200 237.26 200 224C200 210.75 210.75 200 224 200S248 210.75 248 224C248 237.26 237.25 248 224 248zM320 248C306.75 248 296 237.26 296 224C296 210.75 306.75 200 320 200S344 210.75 344 224C344 237.26 333.25 248 320 248zM128 248C114.75 248 104 237.26 104 224C104 210.75 114.75 200 128 200S152 210.75 152 224C152 237.26 141.25 248 128 248zM224 152C210.75 152 200 141.26 200 128C200 114.75 210.75 104 224 104S248 114.75 248 128C248 141.26 237.25 152 224 152zM224 344C210.75 344 200 333.26 200 320C200 306.75 210.75 296 224 296S248 306.75 248 320C248 333.26 237.25 344 224 344z" />
+    <glyph glyph-name="digital-tachograph"
+      unicode="&#xF566;"
+      horiz-adv-x="640" d=" M608 352H32C14.33 352 0 337.67 0 320V64C0 46.33 14.33 32 32 32H608C625.67 32 640 46.33 640 64V320C640 337.67 625.67 352 608 352zM592 80H48V304H592V80zM96 208H288C296.84 208 304 215.16 304 224V256C304 264.8400000000001 296.84 272 288 272H96C87.16 272 80 264.8400000000001 80 256V224C80 215.16 87.16 208 96 208zM88 104H296C300.42 104 304 107.58 304 112V120C304 124.42 300.42 128 296 128H88C83.58 128 80 124.42 80 120V112C80 107.58 83.58 104 88 104zM344 104H552C556.42 104 560 107.58 560 112V120C560 124.42 556.42 128 552 128H344C339.58 128 336 124.42 336 120V112C336 107.58 339.58 104 344 104zM96 184C91.58 184 88 180.42 88 176V160C88 155.58 91.58 152 96 152H112C116.42 152 120 155.58 120 160V176C120 180.42 116.42 184 112 184H96zM154.67 184C150.25 184 146.67 180.42 146.67 176V160C146.67 155.58 150.25 152 154.67 152H170.67C175.09 152 178.67 155.58 178.67 160V176C178.67 180.42 175.09 184 170.67 184H154.67zM213.33 184C208.91 184 205.33 180.42 205.33 176V160C205.33 155.58 208.91 152 213.33 152H229.33C233.75 152 237.33 155.58 237.33 160V176C237.33 180.42 233.75 184 229.33 184H213.33zM272 184C267.58 184 264 180.42 264 176V160C264 155.58 267.58 152 272 152H288C292.42 152 296 155.58 296 160V176C296 180.42 292.42 184 288 184H272z" />
+    <glyph glyph-name="diploma"
+      unicode="&#xF5EA;"
+      horiz-adv-x="640" d=" M608.64 368.42C603.02 377.9600000000001 591.58 383.98 579.26 383.98C571.91 383.98 581.24 386.44 444.64 340.42A390.517 390.517 0 0 0 319.99 319.98C277.61 319.98 235.51 326.88 195.34 340.42C58.15 386.64 68.05 383.9700000000001 60.74 383.9700000000001C48.43 383.9700000000001 36.99 377.96 31.36 368.41C-10.45 297.48 -10.45 150.47 31.36 79.54C36.99 69.9999999999999 48.42 63.98 60.74 63.98C68.09 63.98 58.76 61.52 195.36 107.54C202.9 110.08 210.57 112.15 218.24 114.23L160.84 15.3199999999999C157.79 7.8299999999999 163.49 -0.3100000000001 171.57 -1e-13L208.21 -0.01L233.42 -28.53C238.98 -34.4 248.75 -32.57 251.81 -25.08L320 95.99L388.2 -25.07C391.25 -32.56 401.03 -34.39 406.59 -28.52L431.79 0L468.4299999999999 0.01C476.5099999999999 -0.3 482.2099999999999 7.84 479.16 15.33L421.76 114.25C429.43 112.18 437.1 110.1 444.65 107.56C581.85 61.33 571.95 64 579.27 64C591.5799999999999 64 603.02 70.01 608.65 79.56C650.4499999999999 150.48 650.4499999999999 297.48 608.64 368.42zM180.02 153.04L67.02 114.97C41.53 171.4500000000001 41.53 276.5300000000001 67.02 333.01L180.02 294.9400000000001C204.83 286.5800000000001 230.25 280.7100000000001 256 276.9100000000001V179.3300000000001L250.85 170.4500000000001C226.86 166.6100000000001 203.19 160.84 180.02 153.04zM572.98 114.96L459.98 153.03C436.82 160.8300000000001 413.14 166.6 389.1600000000001 170.43L384.0100000000001 179.31V276.9C409.7500000000001 280.7000000000001 435.1700000000001 286.57 459.9900000000001 294.93L572.99 333C598.46 276.52 598.46 171.44 572.98 114.96z" />
+    <glyph glyph-name="directions"
+      unicode="&#xF5EB;"
+      horiz-adv-x="512" d=" M502.61 214.68L278.68 438.61C272.42 444.87 264.21 448 256 448S239.58 444.87 233.32 438.61L9.39 214.68C-3.13 202.15 -3.13 181.85 9.39 169.32L233.32 -54.61C239.58 -60.87 247.79 -64 256 -64S272.42 -60.87 278.68 -54.61L502.61 169.32C515.13 181.85 515.13 202.15 502.61 214.68zM256 -9.4L54.6 192L256 393.4L457.4 192L256 -9.4zM160 200V120C160 115.58 163.58 112 168 112H200C204.42 112 208 115.58 208 120V184H288V130.27C288 125.47 291.93 122.25 296.05 122.25C297.92 122.25 299.83 122.91 301.43 124.39L385.64 202.12C389.07 205.29 389.07 210.71 385.64 213.88L301.43 291.61C299.83 293.0800000000001 297.92 293.75 296.05 293.75C291.93 293.75 288 290.53 288 285.73V232H192C174.33 232 160 217.67 160 200z" />
+    <glyph glyph-name="divide"
+      unicode="&#xF529;"
+      horiz-adv-x="384" d=" M192 288C218.51 288 240 309.49 240 336S218.51 384 192 384S144 362.51 144 336S165.49 288 192 288zM368 224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H368C376.84 160 384 167.16 384 176V208C384 216.84 376.84 224 368 224zM192 96C165.49 96 144 74.51 144 48S165.49 0 192 0S240 21.49 240 48S218.51 96 192 96z" />
+    <glyph glyph-name="dizzy"
+      unicode="&#xF567;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM214.2 209.9C222 217.7 222 230.4 214.2 238.2L196.3 256L214.2 273.9C222 281.7000000000001 222 294.4 214.2 302.2000000000001C206.4 310 193.7 310 185.9 302.2000000000001L168 284.3L150.2 302.1C142.4 309.9000000000001 129.7 309.9000000000001 121.9 302.1C114.1 294.3 114.1 281.6 121.9 273.8L139.8 255.9L121.9 238C114.1 230.2 114.1 217.5 121.9 209.7C129.7 201.9 142.4 201.9 150.2 209.7L168 227.5L185.8 209.7C193.7 202 206.3 202 214.2 209.9zM374.2 302.1C366.4 309.9000000000001 353.7 309.9000000000001 345.9 302.1L328 284.3L310.2 302.1C302.4 309.9000000000001 289.7 309.9000000000001 281.9 302.1C274.1 294.3 274.1 281.6 281.9 273.8L299.8 255.9L281.9 238C274.1 230.2 274.1 217.5 281.9 209.7C289.7 201.9 302.4 201.9 310.2 209.7L328 227.5L345.8 209.7C353.6 201.9 366.3 201.9 374.1 209.7C381.9000000000001 217.5 381.9000000000001 230.2 374.1 238L356.3 256L374.2 273.9C381.9 281.7000000000001 381.9 294.3 374.2 302.1zM248 176C212.7 176 184 147.3 184 112S212.7 48 248 48S312 76.7 312 112S283.3 176 248 176z" />
+    <glyph glyph-name="dna"
+      unicode="&#xF471;"
+      horiz-adv-x="384" d=" M0 -47.1C-0.5 -55 5.2 -64 15.4 -64H30.8C38.9 -64 45.5 -57.8 46.1 -49.6C46.4 -45.1 47.1 -39.1 48.3 -32H335.3C336.5 -39.1 337.4000000000001 -45.4 337.8 -49.7C338.5 -57.8 345.1 -64 353.1 -64H368.6C380.1 -64 384.4000000000001 -53.3 383.9000000000001 -47.2C381.8 -17.7 367.6 79.6 275.4000000000001 161.6C262.8 152.3 249.2000000000001 143.4 234.5000000000001 134.9C243.6 127.4 251.5000000000001 119.7000000000001 259.1 111.9H123.6C144.2 132.8 170 153.2000000000001 202.9 171.2000000000001C359.8 257.5 381.2 392 384 431.1C384.5 439 378.8 448 368.6 448H353.2000000000001C345.1 448 338.5000000000001 441.8 337.9000000000001 433.6C337.6 429.1 336.9000000000001 423.1 335.7000000000001 416H48.6C47.3 423.1 46.6 429.2 46.2 433.7C45.5 441.8 38.9 448 30.9 448H15.4C5.2 448 -0.5 438.9 0 431.1C2.6 395.4 21.2 278.1 147.9 192.2C21.3 106.6 2.6 -10.9 0 -47.1zM322.4 368C316.7 353 308.8 336.7 298.2 320H86.3C75.7 336.7 67.8 353 62 368H322.4zM192 219.2C164.6 235.5 142.6 253.5 124.5 272H259.9C241.7 253.6 219.6 235.6 192 219.2zM61.4 16C67.1 30.9 74.9 47.2 85.5 64H297.2C307.8 47.2 315.8 31 321.6 16H61.4z" />
+    <glyph glyph-name="do-not-enter"
+      unicode="&#xF5EC;"
+      horiz-adv-x="496" d=" M394.67 256H101.33C93.97 256 88 248.84 88 240V144C88 135.16 93.97 128 101.33 128H394.66C402.02 128 407.99 135.16 407.99 144V240C408 248.84 402.03 256 394.67 256zM360 176H136V208H360V176zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8z" />
+    <glyph glyph-name="dog-leashed"
+      unicode="&#xF6D4;"
+      horiz-adv-x="576" d=" M416 336C407.1600000000001 336 400 328.8400000000001 400 320S407.1600000000001 304 416 304S432 311.16 432 320S424.84 336 416 336zM536 384H486.84L486.3100000000001 385.02C476.78 404.12 457.59 416 436.2200000000001 416H360C359.4700000000001 416 358.99 415.86 358.46 415.8400000000001L358.6 416L331.31 443.2800000000001C321.23 453.36 304 446.2200000000001 304 431.9700000000001V267.78L67.16 444.81C60.08 450.1 50.06 448.65 44.77 441.58L35.19 428.77C29.9 421.69 31.34 411.66 38.42 406.37L239.59 256H184C152.72 256 124.44 243.68 103.05 224H88C65.94 224 48 241.94 48 264C48 277.25 37.25 288 24 288S0 277.25 0 264C0 220.99 31.04 185.24 71.88 177.63C67.03 164.61 64 150.69 64 136V-32C64 -49.64 78.34 -64 96 -64H176C193.66 -64 208 -49.64 208 -32V64H336V-32C336 -49.64 350.34 -64 368 -64H448C465.66 -64 480 -49.64 480 -32V208H488C536.53 208 576 247.47 576 296V344C576 366.06 558.06 384 536 384zM280 112H160V-16H112V136C112 175.7 144.31 208 184 208H280V112zM432 -16H384V112H328V205.27L432 179.27V-16zM528 296C528 273.94 510.06 256 488 256H432V228.73L352 248.73V360C352 364.41 355.59 368 360 368H436.2200000000001C439.2800000000001 368 442 366.31 443.3800000000001 363.58L457.16 336H528V296z" />
+    <glyph glyph-name="dog"
+      unicode="&#xF6D3;"
+      horiz-adv-x="576" d=" M416 336C407.1600000000001 336 400 328.8400000000001 400 320S407.1600000000001 304 416 304S432 311.16 432 320S424.84 336 416 336zM536 384H486.84L486.3100000000001 385.02C476.78 404.12 457.59 416 436.2200000000001 416H360C359.4700000000001 416 358.99 415.86 358.46 415.8400000000001L358.6 416L331.31 443.2800000000001C321.23 453.36 304 446.2200000000001 304 431.9700000000001V256H184C152.72 256 124.44 243.68 103.05 224H88C65.94 224 48 241.94 48 264C48 277.25 37.25 288 24 288S0 277.25 0 264C0 220.99 31.04 185.24 71.88 177.63C67.03 164.61 64 150.69 64 136V-32C64 -49.64 78.34 -64 96 -64H176C193.66 -64 208 -49.64 208 -32V64H336V-32C336 -49.64 350.34 -64 368 -64H448C465.66 -64 480 -49.64 480 -32V208H488C536.53 208 576 247.47 576 296V344C576 366.06 558.06 384 536 384zM432 -16H384V112H160V-16H112V136C112 175.7 144.31 208 184 208H317.06L432 179.27V-16zM528 296C528 273.94 510.06 256 488 256H432V228.73L352 248.73V360C352 364.41 355.59 368 360 368H436.2200000000001C439.2800000000001 368 442 366.31 443.3800000000001 363.58L457.16 336H528V296z" />
+    <glyph glyph-name="dollar-sign"
+      unicode="&#xF155;"
+      horiz-adv-x="288" d=" M211.9 205.9L95.6 239.1C79.8 243.6 67 256.3 64.5 272.6C60.6 298 80.3 320 105 320H178.8C194.7 320 210.3 315 223.2 305.9C229.6 301.4 238.2 302.1 243.7 307.6L266.6 330.5C273.4000000000001 337.3 272.7000000000001 348.7 265.1 354.6C240.4 373.7 210.4 384 178.8 384H176V432C176 440.8 168.8 448 160 448H128C119.2 448 112 440.8 112 432V384H109.5C60.3 384 14.9 352.2 3.1 304.4C-10.8 248.2 23.3 193.2 76.1 178.1L192.4 144.9C208.2 140.4 221 127.7000000000001 223.5 111.4C227.4 86 207.7 64 183 64H109.2C93.3 64 77.7 69 64.8 78.1C58.4 82.6 49.8 81.9 44.3 76.4L21.4 53.5000000000001C14.6 46.7 15.3 35.3000000000001 22.9 29.4C47.5 10.3 77.5 1e-13 109.2 1e-13H112V-47.9999999999999C112 -56.7999999999999 119.2 -63.9999999999999 128 -63.9999999999999H160C168.8 -63.9999999999999 176 -56.7999999999999 176 -47.9999999999999V1e-13H178.5C227.7 1e-13 273.1 31.8000000000001 284.9 79.6C298.8 135.8 264.7 190.8 211.9 205.9z" />
+    <glyph glyph-name="dolly-empty"
+      unicode="&#xF473;"
+      horiz-adv-x="576" d=" M575.2 138.1L570.1 153.3C567.3000000000001 161.7 558.2 166.2 549.9 163.4L331.6 90.5C314 113.2 286.9 128 256 128C254.7 128 253.4 127.7 252.1 127.6L158.1 409.7000000000001C150.4 432.6 129 448 105 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H104.9C108.3 400 111.4 397.8 112.5 394.5L206.1 113.7C178.5 96.8 159.9 66.7 159.9 32C159.9 -21 202.9 -64 255.9 -64S351.9 -21 351.9 32C351.9 36.9 351.2 41.5 350.5 46.2L565 117.8C573.4 120.6 578 129.7 575.2 138.1zM256 -16C229.5 -16 208 5.5 208 32S229.5 80 256 80S304 58.5 304 32S282.5 -16 256 -16z" />
+    <glyph glyph-name="dolly-flatbed-alt"
+      unicode="&#xF475;"
+      horiz-adv-x="640" d=" M208 96H592C600.8 96 608 103.2 608 112V240C608 248.8 600.8 256 592 256H544V368C544 376.8 536.8 384 528 384H208C199.2 384 192 376.8 192 368V112C192 103.2 199.2 96 208 96zM416 336H496V256H416V336zM416 208H560V144H416V208zM240 336H368V144H240V336zM624 48H144V432C144 440.8 136.8 448 128 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H96V16C96 7.2 103.2 0 112 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V32C640 40.8 632.8 48 624 48z" />
+    <glyph glyph-name="dolly-flatbed-empty"
+      unicode="&#xF476;"
+      horiz-adv-x="640" d=" M624 48H144V432C144 440.8 136.8 448 128 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H96V16C96 7.2 103.2 0 112 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V32C640 40.8 632.8 48 624 48z" />
+    <glyph glyph-name="dolly-flatbed"
+      unicode="&#xF474;"
+      horiz-adv-x="640" d=" M208 96H592C600.8 96 608 103.2 608 112V368C608 376.8 600.8 384 592 384H208C199.2 384 192 376.8 192 368V112C192 103.2 199.2 96 208 96zM240 336H352V224L400 256L448 224V336H560V144H240V336zM624 48H144V432C144 440.8 136.8 448 128 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H96V16C96 7.2 103.2 0 112 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V32C640 40.8 632.8 48 624 48z" />
+    <glyph glyph-name="dolly"
+      unicode="&#xF472;"
+      horiz-adv-x="576" d=" M575.2 138.1L570.1 153.3C567.3000000000001 161.7 558.2 166.2 549.9 163.4L531 157L459.1 372.7C455.7 382.8 448.6 391 439 395.8C429.5 400.5 418.6 401.3 408.5 398L186.6 324L158 409.7C150.4 432.6 129 448 105 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H104.9C108.3 400 111.4 397.8 112.5 394.5L206.1 113.7C178.5 96.8 159.9 66.7 159.9 32C159.9 -21 202.9 -64 255.9 -64S351.9 -21 351.9 32C351.9 36.9 351.2 41.5 350.5 46.2L565 117.8C573.4 120.6 578 129.7 575.2 138.1zM256 -16C229.5 -16 208 5.5 208 32S229.5 80 256 80S304 58.5 304 32S282.5 -16 256 -16zM331.6 90.5C314 113.2 286.9 128 256 128C254.7 128 253.4 127.7 252.1 127.6L201.8 278.4000000000001L288.3 307.2000000000001L308.2 247.5000000000001C311 239.1000000000001 320.1 234.6000000000001 328.4 237.4000000000001L343.6 242.5000000000001C352 245.3000000000001 356.5 254.4000000000001 353.7 262.7000000000001L333.8 322.4000000000001L416.1 349.8000000000001L485.5 141.7000000000001L331.6 90.5000000000001z" />
+    <glyph glyph-name="donate"
+      unicode="&#xF4B9;"
+      horiz-adv-x="512" d=" M225.6 215.7L275.7 201.4C279.3 200.4 281.8 197 281.8 193.3C281.8 188.7 278 184.9 273.4000000000001 184.9H240.6C237.0000000000001 184.9 233.5000000000001 185.7 230.3 187.1C225.5 189.3 219.9 188.8 216.2 185.1L198.7 167.6C193.4 162.3 194 153.3 200.2 149.2C209.7 142.9 220.6 139.1 232.0000000000001 137.7V120C232.0000000000001 111.2 239.2 104 248.0000000000001 104H264C272.8 104 280 111.2 280 120V137.6C310.3 141.2000000000001 333.4 168.6 329.3 200.6C326.4000000000001 223.6 308.6 241.9000000000001 286.4000000000001 248.3L236.3000000000001 262.6C232.7000000000001 263.6 230.2000000000001 267 230.2000000000001 270.7000000000001C230.2000000000001 275.3 234.0000000000001 279.1 238.6000000000001 279.1H271.4000000000001C275.0000000000001 279.1 278.5000000000001 278.3 281.7000000000001 276.9000000000001C286.5000000000001 274.7000000000001 292.1 275.2000000000001 295.8000000000001 278.9000000000001L313.3000000000001 296.4000000000001C318.6000000000001 301.7000000000001 318.0000000000001 310.7000000000001 311.8000000000001 314.8000000000001C302.3000000000001 321.1 291.4000000000001 324.9000000000001 280.0000000000001 326.3000000000001V344C280.0000000000001 352.8 272.8000000000001 360 264.0000000000001 360H248.0000000000001C239.2000000000001 360 232.0000000000001 352.8 232.0000000000001 344V326.4C201.7000000000001 322.8 178.6000000000001 295.4 182.7000000000001 263.4C185.6000000000001 240.4 203.3000000000001 222.1 225.6000000000001 215.7zM480 128H445.3C462.3 158.9 472 194.3 472 232C472 351.3 375.3 448 256 448S40 351.3 40 232C40 194.3 49.7 158.9 66.7 128H32C14.3 128 0 110.8 0 89.6V-25.6C0 -46.8 14.3 -64 32 -64H480C497.7 -64 512 -46.8 512 -25.6V89.6C512 110.8 497.7 128 480 128zM256 400C348.6 400 424 324.6 424 232S348.6 64 256 64S88 139.4 88 232S163.4 400 256 400zM464 -16H48V80H102.6C114.8 67.7 128.5 57.1 143.3 48H104C99.6 48 96 44.4 96 40V24C96 19.6 99.6 16 104 16H408C412.4 16 416 19.6 416 24V40C416 44.4 412.4 48 408 48H368.7C383.5 57.1 397.2 67.7 409.4 80H464V-16z" />
+    <glyph glyph-name="door-closed"
+      unicode="&#xF52A;"
+      horiz-adv-x="640" d=" M624 -16H512V416C512 433.67 497.67 448 480 448H160C142.33 448 128 433.67 128 416V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM464 -16H176V400H464V-16zM400 160C417.67 160 432 174.33 432 192S417.67 224 400 224S368 209.67 368 192S382.33 160 400 160z" />
+    <glyph glyph-name="door-open"
+      unicode="&#xF52B;"
+      horiz-adv-x="640" d=" M288 160C301.25 160 312 174.33 312 192S301.25 224 288 224S264 209.67 264 192S274.75 160 288 160zM624 -16H512V334.55C512 361.81 490.47 384 464 384H384V414.82C384 433.58 369.21 448 352.06 448C349.49 448 346.87 447.68 344.23 446.99L152.23 397.25C137.99 393.56 128 380.3 128 365.08V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM336 -16H176V353.82L336 395.27V-16zM464 -16H384V336H464V-16z" />
+    <glyph glyph-name="dot-circle"
+      unicode="&#xF192;"
+      horiz-adv-x="512" d=" M256 392C366.532 392 456 302.549 456 192C456 81.468 366.549 -8 256 -8C145.468 -8 56 81.451 56 192C56 302.532 145.451 392 256 392M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 272C211.817 272 176 236.183 176 192S211.817 112 256 112S336 147.817 336 192S300.183 272 256 272z" />
+    <glyph glyph-name="dove"
+      unicode="&#xF4BA;"
+      horiz-adv-x="512" d=" M368 287.8C368 279 375.2 271.8 384 271.8S400 279 400 287.8S392.8 303.8 384 303.8C375.1 303.8 368 296.6 368 287.8zM384 384C337.8 384 299.2 351.2 290.1 307.6C261.1 344.2 241.1 387.4 233.9000000000001 434.1C231.8 447.4 215 453.1 206 442.5C180.9 412.9 161.7 377.4 151 337.4C149.4 331.6 148.6 325.7 147.6 319.9C122.2 344.3 101.3 373.4 87 406.2C81.5 418.8 63.7 419.3 57.9 406.9C41.8 372.8 32.6 334.9 32 294.9C30.7 198.8 86.8 131.8 127.9 95.5L13.8 57C1.6 53.7 -3.9 38.8 3 27.7C22.8 -4.6 71.9 -59.3 177.8 -63.9C191.3 -64.5 195.4 -59.2999999999999 203 -54.5L279.4 -0.4H320C408.4 -0.4 480 71.3 480 159.7000000000001V288.1L512 384H384zM197.4 325C200 334.7 203.2 344.1 207 353.2C222.9 314.8 246.9 280.3 276.3 250.8C246.1 257.6 217.7 269 192.2 284.9C192.6 298.6 194 312.1 197.4 325zM432 295.9V159.8C432 98 381.8 48.1 320 48.1H264.1L174.7 -15.6C122.4 -12.3 88.8 5.8 67.7 24.6L221.7 76.6C165.9 123.1 78.6 186.9 80 294.3C80.1 303.3 80.8 311.3 81.9 320C174.6 198.9 320 192 336 192V287.8C336 314.4 357.5 335.9 384 335.9H445.4L432 295.9z" />
+    <glyph glyph-name="download"
+      unicode="&#xF019;"
+      horiz-adv-x="576" d=" M528 160H435.9L482 206.1C512.1 236.2 490.8 288 448.1 288H384.1V400C384.1 426.5 362.6 448 336.1 448H240.1C213.6 448 192.1 426.5 192.1 400V288H128.1C85.5 288 63.9 236.3 94.2 206.1L140.3 160H48C21.5 160 0 138.5 0 112V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V112C576 138.5 554.5 160 528 160zM128 240H240V400H336V240H448L288 80L128 240zM528 -16H48V112H188.1L254 46.1C272.8 27.3 303.1 27.4 321.9 46.1L387.8 112H528V-16zM440 48C440 61.3 450.7 72 464 72S488 61.3 488 48S477.3 24 464 24S440 34.7 440 48z" />
+    <glyph glyph-name="drafting-compass"
+      unicode="&#xF568;"
+      horiz-adv-x="512" d=" M450.33 151.64C464.65 165.56 477.84 180.79 489.03 197.75C494.05 205.35 491.26 215.81 483.39 220.37L469.6 228.37C462.21 232.65 453.0599999999999 230.14 448.31 223.03C441.79 213.28 434.39 204.33 426.58 195.79L350.2799999999999 337.55C351 342.3 351.7299999999999 347.06 351.7299999999999 352.01C351.7200000000001 405.02 308.86 448 256 448S160.28 405.02 160.28 352.01C160.28 347.06 161.01 342.3 161.73 337.55L85.46 195.84C77.61 204.33 70.22 213.28 63.7 223.03C58.95 230.14 49.8 232.66 42.41 228.37L28.62 220.37C20.75 215.81 17.96 205.35 22.98 197.75C34.15 180.83 47.66 166.09 62.04 152.31L0 37.06L7.91 -28.69C9.41 -41.31 16.54 -52.2 27.51 -58.58C33.71 -62.17 40.57 -64 47.45 -64C52.75 -64 58.11 -62.92 63.19 -60.73L124.63 -34.4L186.83 81.17C209.2 75.34 232.37 72.04 256 72.04C279.65 72.04 302.91 75.11 325.31 80.91L387.36 -34.39L448.8400000000001 -60.73C453.92 -62.9 459.2500000000001 -63.98 464.54 -63.98C471.43 -63.98 478.28 -62.15 484.48 -58.56C495.45 -52.19 502.58 -41.3 504.05 -28.73L512 37.08L450.33 151.64zM256 400C282.43 400 303.86 378.51 303.86 352S282.43 304 256 304S208.14 325.49 208.14 352S229.57 400 256 400zM90.48 3.15L54.18 -12.41L49.35 27.68L187.73 284.83C198.89 273.42 213 265.17 228.6600000000001 260.4599999999999L228.8100000000001 260.18L90.48 3.15zM256 120.02C240.5 120.02 225.29 121.87 210.42 124.99L256 209.68L301.56 125.03C286.67 122 271.49 120.02 256 120.02zM283.18 260.19L283.33 260.47C299 265.18 313.1 273.43 324.26 284.84L389.83 162.99C376.79 153.72 362.69 146.1 348.03 139.69L283.18 260.19zM457.82 -12.4100000000001L421.52 3.1499999999999L370.76 97.4599999999999C385.32 104.0699999999999 399.36 111.7099999999999 412.59 120.6999999999999L462.65 27.67L457.82 -12.41z" />
+    <glyph glyph-name="dragon"
+      unicode="&#xF6D5;"
+      horiz-adv-x="640" d=" M481.12 328.02C496.04 327.17 508.48 337.91 512 352.61L453.57 367.98C447.07 340.85 469.08 328.7100000000001 481.12 328.02zM563.67 191.12L469.48 235.33A9.876 9.876 0 0 0 464.8799999999999 240.02H483.5599999999999C488.4599999999999 236.9 492.47 234.3 495.8099999999999 232.13C512.3299999999999 221.4 520.6199999999999 216.01 538.4599999999999 216.01H566.3299999999999C589.3599999999999 216.01 610.1299999999999 228.6 620.55 248.86L633.43 273.9C643.92 294.29 641.62 319.2200000000001 627.5899999999999 337.41L560.5 424.35C549.07 439.1600000000001 530.99 448 512.12 448H298.42C261.14 448 245.49 401.23 273.43 378.99L285.95 369.05C281.51 367.25 282.39 367.62 281.2 367.04C251.83 352.76 251.96 311.17 281.21 296.96L320 281.99V269.04L152.31 310.88C130.28 316.36 106.81 307.6 93.78 289.11L5.03 162.87C-9.36 140.27 9.08 110.48 38.09 114.62L129.61 131.83C114.9 108.55 134.88 79.8 161.43 83.47L342.19 107.7C347.1 97.47 352.77 87.71 359.2 78.53C212.12 68.45 112 46.0599999999999 37.74 30.01C15.88 25.29 0 5.76 0 -16.42C0 -42.63 21.52 -63.96 47.98 -63.96L497.15 -64C573.22 -64.01 635.88 -8.16 639.8000000000001 63.15C642.7600000000001 116.96 612.8700000000001 167.19 563.6700000000001 191.12zM68.03 169.05L133.03 261.49C134.69 263.87 137.62 265.15 140.72 264.3L210.54 246.9700000000001L169.14 188.1L68.03 169.05zM191.06 135.87L260.44 234.54L320 219.53C320 198.28 320.13 182.76 326.7200000000001 154.05L191.06 135.87zM497.15 -16L47.89 -16.9C139.91 2.98 244.73 26.66 431.07 34.12C447.65 34.79 454.45 55.88 440.36 65.91C367.78 117.62 368 189.26 368 208.97V315.02L322.89 332.24L380.23 355.48L324.1600000000001 400H512.38C516.34 400 520.08 398.16 522.5 395.03L589.63 308.02C592.33 304.52 592.76 299.79 590.74 295.86L577.86 270.82C575.74 266.69 571.21 264.03 566.33 264.03H538.46C534.85 264.03 534.85 264.03 521.96 272.4C516.84 275.73 497.4 288.04 497.4 288.04H416V243.93C416 221.74 428.6 201.84 449.08 191.89L542.67 147.97C574.9399999999999 132.28 593.79 100.79 591.87 65.81C589.39 20.68 546.9 -16.01 497.15 -16.0000000000001z" />
+    <glyph glyph-name="draw-circle"
+      unicode="&#xF5ED;"
+      horiz-adv-x="512" d=" M512 192C512 222.3 490.89 247.54 462.61 254.17C441.76 323.2800000000001 387.2800000000001 377.77 318.17 398.62C311.54 426.89 286.3 448 256 448S200.46 426.89 193.83 398.61C124.72 377.76 70.23 323.28 49.39 254.1600000000001C21.12 247.54 0 222.3 0 192C0 161.7 21.12 136.46 49.39 129.83C70.24 60.72 124.72 6.23 193.83 -14.62C200.46 -42.89 225.7 -64 256 -64S311.54 -42.89 318.17 -14.61C387.2800000000001 6.24 441.77 60.72 462.61 129.84C490.89 136.46 512 161.7 512 192zM448 176C439.18 176 432 183.18 432 192S439.18 208 448 208S464 200.82 464 192S456.82 176 448 176zM256 400C264.82 400 272 392.82 272 384S264.82 368 256 368S240 375.18 240 384S247.18 400 256 400zM64 208C72.82 208 80 200.82 80 192S72.82 176 64 176S48 183.18 48 192S55.18 208 64 208zM256 -16C247.18 -16 240 -8.82 240 0S247.18 16 256 16S272 8.82 272 0S264.82 -16 256 -16zM309.89 34.28C298.53 52.1 278.71 64 256 64C233.3 64 213.47 52.1 202.11 34.28A166.552 166.552 0 0 0 98.28 138.11C116.1 149.47 128 169.3 128 192C128 214.71 116.1 234.53 98.28 245.89A166.56700000000004 166.56700000000004 0 0 0 202.12 349.7200000000001C213.47 331.9 233.3 320 256 320C278.71 320 298.53 331.9 309.89 349.7200000000001A166.614 166.614 0 0 0 413.73 245.89C395.9 234.53 384 214.71 384 192C384 169.3 395.9 149.47 413.7200000000001 138.11A166.52900000000002 166.52900000000002 0 0 0 309.8900000000001 34.28z" />
+    <glyph glyph-name="draw-polygon"
+      unicode="&#xF5EE;"
+      horiz-adv-x="448" d=" M384 96C380.64 96 377.4100000000001 95.51 374.19 95.01L338.98 153.69C347.05 164.4 352 177.57 352 192S347.05 219.6 338.99 230.31L374.2 288.99C377.42 288.49 380.65 288 384.01 288C419.36 288 448.01 316.65 448.01 352S419.36 416 384.01 416C357.17 416 334.26 399.44 324.76 376H123.25C113.75 399.44 90.85 416 64 416C28.65 416 0 387.35 0 352C0 325.16 16.56 302.25 40 292.75V91.26C16.56 81.75 0 58.85 0 32C0 -3.35 28.65 -32 64 -32C90.85 -32 113.75 -15.44 123.25 8H324.74C334.24 -15.44 357.15 -32 383.99 -32C419.3400000000001 -32 447.99 -3.35 447.99 32C448 67.35 419.35 96 384 96zM88 91.25V292.75A64.053 64.053 0 0 1 123.25 328H324.74C326.8400000000001 322.81 329.7 318.0800000000001 333.02 313.68L297.81 255.01C294.59 255.51 291.36 256 287.99 256C252.64 256 223.99 227.35 223.99 192S252.64 128 287.99 128C291.35 128 294.58 128.49 297.81 128.99L333.02 70.32C329.7 65.92 326.84 61.18 324.74 56H123.25A64.053 64.053 0 0 1 88 91.25zM288 208C296.82 208 304 200.82 304 192S296.82 176 288 176S272 183.18 272 192S279.18 208 288 208zM384 368C392.82 368 400 360.82 400 352S392.82 336 384 336S368 343.18 368 352S375.18 368 384 368zM64 368C72.82 368 80 360.82 80 352S72.82 336 64 336S48 343.18 48 352S55.18 368 64 368zM64 16C55.18 16 48 23.18 48 32S55.18 48 64 48S80 40.82 80 32S72.82 16 64 16zM384 16C375.18 16 368 23.18 368 32S375.18 48 384 48S400 40.82 400 32S392.82 16 384 16z" />
+    <glyph glyph-name="draw-square"
+      unicode="&#xF5EF;"
+      horiz-adv-x="448" d=" M408 91.25V292.75C431.44 302.25 448 325.16 448 352C448 387.35 419.35 416 384 416C357.1600000000001 416 334.25 399.44 324.75 376H123.25C113.75 399.44 90.85 416 64 416C28.65 416 0 387.35 0 352C0 325.16 16.56 302.25 40 292.75V91.26C16.56 81.75 0 58.85 0 32C0 -3.35 28.65 -32 64 -32C90.85 -32 113.75 -15.44 123.25 8H324.74C334.24 -15.44 357.15 -32 383.99 -32C419.3400000000001 -32 447.99 -3.35 447.99 32C448 58.85 431.44 81.75 408 91.25zM88 91.25V292.75A64.053 64.053 0 0 1 123.25 328H324.74A64.053 64.053 0 0 1 359.99 292.75V91.26A64.053 64.053 0 0 1 324.74 56.01H123.25A64.066 64.066 0 0 1 88 91.25zM384 368C392.82 368 400 360.82 400 352S392.82 336 384 336S368 343.18 368 352S375.18 368 384 368zM64 368C72.82 368 80 360.82 80 352S72.82 336 64 336S48 343.18 48 352S55.18 368 64 368zM64 16C55.18 16 48 23.18 48 32S55.18 48 64 48S80 40.82 80 32S72.82 16 64 16zM384 16C375.18 16 368 23.18 368 32S375.18 48 384 48S400 40.82 400 32S392.82 16 384 16z" />
+    <glyph glyph-name="dreidel"
+      unicode="&#xF792;"
+      horiz-adv-x="448" d=" M443.3 400L432 411.3C425.8 417.5 415.6 417.5 409.4 411.3L294.7 296.6L217.1 374.2C210.6 380.7 202 384 193.5 384C184.9 384 176.4 380.7 169.9 374.2L19.6 224C7 211.5 0 194.5 0 176.7V34.9C0 -2.1 29.9 -32 66.9 -32H208.7C226.4 -32 243.4000000000001 -25 256 -12.4L406.2 137.8C419.3 150.9 419.3 172 406.2 185.1L328.6 262.7000000000001L443.3 377.4C449.6 383.6 449.6 393.8 443.3 400zM222.1 21.5C218.5 17.9 213.8 16 208.8 16H66.9C56.5 16 48 24.5 48 34.9V176.7C48 181.7 50 186.5 53.5 190L106.7 243.2L275.2000000000001 74.7L222.1000000000001 21.5zM309.2 108.7L140.7 277.2L193.4 329.9L362 161.4L309.2 108.7z" />
+    <glyph glyph-name="drum-steelpan"
+      unicode="&#xF56A;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 358.69 0 288V96C0 25.31 128.94 -32 288 -32S576 25.31 576 96V288C576 358.69 447.06 416 288 416zM288 368C312.31 368 335.75 366.77 357.87 364.53L346.37 319.82C341.86 302.27 315.67 288 288 288C260.33 288 234.14 302.27 229.63 319.82L218.13 364.53C240.25 366.77 263.69 368 288 368zM229.62 272.45C245.95 262.0800000000001 266.6600000000001 256 288 256C309.02 256 329.4700000000001 261.87 345.68 271.95C348.5 250.19 357.17 230.01 370.32 212.94C344.61 209.8 316.9700000000001 208 288 208C258.68 208 230.72 209.84 204.75 213.05C217.86 230.34 226.72 250.6600000000001 229.62 272.4500000000001zM174.51 358.49L187.53 312.41C197.35 277.64 184.16 241.83 157.2 220.97C91.51 235.25 48 259.91 48 288C48 318.5 99.21 344.99 174.51 358.49zM528 96C528 68.53 434.54 16 288 16C141.46 16 48 68.53 48 96V217.3C99.59 182.78 187.77 160 288 160S476.41 182.78 528 217.3V96zM418.1600000000001 220.85C409.7800000000001 227.01 402.5100000000001 234.7 396.8400000000001 243.79C385.11 262.61 381.42 284.88 386.4400000000001 306.49L398.6300000000001 358.9500000000001C475.46 345.61 528 318.87 528 288C528 259.82 484.2 235.1 418.16 220.85z" />
+    <glyph glyph-name="drum"
+      unicode="&#xF569;"
+      horiz-adv-x="576" d=" M452.66 328.92L565.3100000000001 404.02C576.34 411.38 579.3100000000001 426.27 571.97 437.3C564.63 448.32 549.72 451.35 538.69 443.96L388.48 343.82C357.1500000000001 349.01 323.4000000000001 351.99 288 351.99C128.94 351.99 0 294.69 0 223.99V63.99C0 -6.7 128.94 -64.01 288 -64.01S576 -6.7 576 63.99V223.99C576 267.4500000000001 527.16 305.7800000000001 452.66 328.92zM96 21.21C65.13 36.02 48 52.28 48 64V153.3C61.57 144.22 77.81 136.04 96 128.79V21.21zM264 -15.47C217.39 -13.6 176.95 -6.4400000000001 144 3.2V113.26C179.86 104.03 220.51 98.13 264 96.53V-15.47zM432 3.2C399.05 -6.44 358.61 -13.6 312 -15.47V96.53C355.49 98.13 396.14 104.02 432 113.26V3.2zM528 64C528 52.29 510.87 36.02 480 21.21V128.78C498.19 136.03 514.43 144.22 528 153.29V64zM288 143.99C155.45 143.99 48 179.81 48 223.99S155.45 303.99 288 303.99C301.32 303.99 314.29 303.54 327.01 302.8400000000001L250.69 251.96C239.66 244.6 236.69 229.71 244.03 218.68C248.65 211.74 256.28 207.99 264.03 207.99C268.59 207.99 273.22 209.29 277.31 212.02L401.0899999999999 294.54C476.5999999999999 281.0600000000001 527.9899999999999 254.54 527.9899999999999 223.99C527.9999999999999 179.81 420.5499999999999 143.99 287.9999999999999 143.99z" />
+    <glyph glyph-name="drumstick-bite"
+      unicode="&#xF6D7;"
+      horiz-adv-x="512" d=" M471.15 390.35C439.49 426.01 395.79 446.46 348.19 447.93C300.96 449.26 255.21 431.26 221.98 398.21C195.38 371.79 160.03 328.54 160.03 258.19V197.77L116.3000000000001 154.04C114.5200000000001 152.31 110.99 152.88 108.55 153.87A79.071 79.071 0 0 1 23.22 136.42C8.25 121.43 0 101.52 0 80.35S8.25 39.27 23.22 24.3C35.1 12.42 50.35 5.03 66.79 2.71C69.1 -13.73 76.51 -28.98 88.36 -40.84C103.83 -56.28 124.12 -64 144.43 -64C164.72 -64 185 -56.28 200.47 -40.84C222.85 -18.46 229.72 15.04 217.94 44.49C216.94 46.99 216.38 50.52 218.1 52.24L261.89 96H323.03C340.19 96 356.79 98.27 373.79 102.94C388.97 107.08 396.03 124.48 388.29 137.99C368.91 171.9 373.69 213.9 399.92 240.15C420.89 261.12 451.4 268.73 481.6199999999999 260.38C497.1299999999999 256.17 512.13 267.92 511.9999999999999 283.76C511.6199999999999 323.85 497.4999999999999 360.71 471.1499999999999 390.35zM184.16 86.18C168.91 70.95 164.78 48.15 173.38 26.68C178.01 15.07 175.32 1.91 166.53 -6.87C154.37 -19.03 134.52 -19.1 122.3 -6.89C112.02 3.41 113.71 16.83 114.93 22.13L123.43 59.46L86.14 50.87C80.83 49.65 67.45 47.95 57.17 58.26C44.96 70.44 44.95 90.26 57.17 102.45A31.065999999999995 31.065999999999995 0 0 0 90.77 109.29C112.18 100.76 135.06 104.85 150.25 120.1L170.71 140.56A84.98 84.98 0 0 1 204.68 106.6899999999999L184.16 86.18zM365.9700000000001 274.0800000000001C332.12 240.2200000000001 320.5900000000001 190.25 333.8100000000001 144.41C330.2200000000001 144.1400000000001 326.6500000000001 144 323.0300000000001 144H245.2C224.7 144 208.04 160.5 208.04 180.8V258.19C208.04 299.2100000000001 222.33 330.9 255.83 364.18C313.53 421.57 395.73 402.99 435.27 358.48C447.43 344.79 455.87 328.89 460.34 311.57C425.36 312.63 390.85 298.96 365.97 274.08z" />
+    <glyph glyph-name="drumstick"
+      unicode="&#xF6D6;"
+      horiz-adv-x="512" d=" M471.06 390.35C439.4 426.01 395.7200000000001 446.46 348.12 447.93C300.9 449.26 255.15 431.26 221.93 398.21C195.34 371.79 160 328.54 160 258.19V197.77L116.28 154.04C114.5 152.31 110.97 152.88 108.53 153.87C79.09 165.6499999999999 45.62 158.79 23.22 136.42C8.25 121.43 0 101.52 0 80.35C0 57.07 15.28 10 66.78 2.7C72.65 -39.04 108.69 -64 144.4 -64C164.68 -64 184.96 -56.28 200.43 -40.84C222.8 -18.46 229.68 15.04 217.9 44.49C216.9 46.99 216.34 50.52 218.06 52.24L261.84 96H322.97C361.69 96 395.72 106.17 427 127.08C473.22 157.96 503.69 206.44 510.56 260.07C516.78 308.4 502.75 354.66 471.06 390.35zM184.12 86.17C168.87 70.94 164.75 48.14 173.34 26.67C177.96 15.06 175.28 1.9 166.5 -6.88C154.34 -19.04 134.5 -19.11 122.28 -6.9C112 3.4 113.69 16.8200000000001 114.91 22.12L123.41 59.45L86.13 50.86C80.82 49.64 67.44 47.94 57.16 58.25C44.95 70.43 44.94 90.25 57.16 102.44C65.97 111.22 79.1 113.96 90.75 109.28C112.19 100.75 135 104.84 150.22 120.09L170.67 140.55C178.51 126.22 190.26 114.5099999999999 204.64 106.68L184.12 86.17zM400.31 166.99C377.18 151.52 351.87 144 322.9700000000001 144H245.1600000000001C224.66 144 208 160.5 208 180.8V258.19C208 299.2100000000001 222.28 330.89 255.7800000000001 364.18C313.4700000000001 421.57 395.6400000000001 403 435.1800000000001 358.48C497.1100000000001 288.66 449.4900000000001 199.83 400.3100000000001 166.99z" />
+    <glyph glyph-name="duck"
+      unicode="&#xF6D8;"
+      horiz-adv-x="576" d=" M416 304C416 312.8400000000001 408.84 320 400 320S384 312.8400000000001 384 304S391.1600000000001 288 400 288S416 295.16 416 304zM464 208C525.86 208 576 258.14 576 320H510.43C509.97 323.32 509.83 326.58 509.07 329.95C499.92 370.56 467.1 403.65 426.53 412.95C417.53 415.02 408.65 416 400 416C338.14 416 288 365.86 288 304V224H233.77C194.77 224 155.59 237.76 128.98 266.28C125.02 270.53 120.04 272.42 115.16 272.42C105.38 272.42 96 264.83 96 253.36C96 158.65 168.21 74.97 260.5800000000001 65.34C270.0500000000001 64.35 278.35 71.83 278.35 81.35V97.4399999999999C278.35 105.4599999999999 272.4100000000001 112.3 264.4500000000001 113.2099999999999C218.68 118.4099999999999 178.9200000000001 148.9099999999999 158.5400000000001 190.6999999999999C181.9200000000001 181.3299999999999 207.3700000000001 176.43 233.7800000000001 176.43L336 176V304C336 339.29 364.71 368 400 368C405.19 368 410.5 367.38 415.79 366.17C438.4500000000001 360.9700000000001 457.11 342.18 462.25 319.4C470.15 284.3400000000001 450.4 257.53 427.33 246.51L400 233.46V161.8300000000001L411.86 148.2600000000001C420.75 138.0800000000001 431.4700000000001 121.0500000000001 431.98 97.72C432.4100000000001 78.15 424.37 58.9 409.3400000000001 43.53C392.2200000000001 26.03 368.75 15.99 344.9500000000001 15.99H253.7800000000001C247.7500000000001 15.99 241.6800000000001 16.3 235.1200000000001 16.96C146.29 24.86 71.75 90.47 51.36 176H80.64A190.546 190.546 0 0 0 66.49 224H32.25C12.96 224 -2.39 206.97 0.31 187.87C16.82 71.06 112.22 -20.3 230.87 -30.84C238.4 -31.61 246.05 -32 253.78 -32H344.95C416.91 -32 481.56 26.84 479.97 98.78C479.28 129.91 467.11 157.99 448 179.85V208H464z" />
+    <glyph glyph-name="dumbbell"
+      unicode="&#xF44B;"
+      horiz-adv-x="640" d=" M632 224H608V296C608 326.9 582.9 352 552 352H520C517.3 352 514.6 351.6 512 351.2V360C512 390.9 486.9 416 456 416H424C393.1 416 368 390.9 368 360V224H272V360C272 390.9 246.9 416 216 416H184C153.1 416 128 390.9 128 360V351.2C125.4 351.6 122.7 352 120 352H88C57.1 352 32 326.9 32 296V224H8C3.6 224 0 220.4 0 216V168C0 163.6 3.6 160 8 160H32V88C32 57.1 57.1 32 88 32H120C122.7 32 125.4 32.4 128 32.8V24C128 -6.9 153.1 -32 184 -32H216C246.9 -32 272 -6.9 272 24V160H368V24C368 -6.9 393.1 -32 424 -32H456C486.9 -32 512 -6.9 512 24V32.8C514.6 32.4 517.3 32 520 32H552C582.9 32 608 57.1 608 88V160H632C636.4 160 640 163.6 640 168V216C640 220.4 636.4 224 632 224zM120 80H88C83.6 80 80 83.6 80 88V296C80 300.4 83.6 304 88 304H120C124.4 304 128 300.4 128 296V88C128 83.6 124.4 80 120 80zM224 24C224 19.6 220.4 16 216 16H184C179.6 16 176 19.6 176 24V360C176 364.4 179.6 368 184 368H216C220.4 368 224 364.4 224 360V24zM464 24C464 19.6 460.4 16 456 16H424C419.6 16 416 19.6 416 24V360C416 364.4 419.6 368 424 368H456C460.4 368 464 364.4 464 360V24zM560 88C560 83.6 556.4 80 552 80H520C515.6 80 512 83.6 512 88V296C512 300.4 515.6 304 520 304H552C556.4 304 560 300.4 560 296V88z" />
+    <glyph glyph-name="dumpster-fire"
+      unicode="&#xF794;"
+      horiz-adv-x="640" d=" M418.7 343.9L418.9 344.1L404.5 416.1H304V288.1H364.8C381 307.4000000000001 399 326.3 418.7 343.9000000000001zM461.3 343.9C479.5 327.6 496.8 310.2 512.4 292.4C518.1 298 523.8 303.5 529.6999999999999 308.7000000000001L550.9999999999999 327.7000000000001L572.2999999999998 308.7000000000001C573.3999999999999 307.8 574.3999999999999 306.6 575.3999999999999 305.6C575.2999999999998 306.4000000000001 575.5999999999999 307.1 575.3999999999999 307.9000000000001L551.3999999999999 403.9000000000001C549.7 411 543.3 416 536 416H437.1L449.4000000000001 354.5L461.3 343.9zM272 416H171.5L145.9 288H272V416zM106.4 48L86.4 208H311.7000000000001C319.6 223.7 329.3000000000001 239.9 340.6 256H32L36 224H16C7.2 224 0 216.8 0 208V192C0 183.2 7.2 176 16 176H42L64 0V-16C64 -24.8 71.2 -32 80 -32H112C120.8 -32 128 -24.8 128 -16V0H336.8C324 14.3 313.3 30.4 305.2 48H106.4zM16 288H113.3L138.9 416H40C32.7 416 26.3 411 24.5 403.9L0.5 307.9C-2 297.8 5.6 288 16 288zM551.1 284.8C536.2 271.5 522.8000000000001 257.6 510.9 243.6C491.4 269.4000000000001 467.3 295.6 439.9000000000001 320C369.7000000000001 257.3 319.9000000000001 175.7000000000001 319.9000000000001 126.4C319.9000000000001 38.9 391.5 -32 479.9 -32S639.9000000000001 38.9 639.9000000000001 126.4C640.0000000000001 163 602.9000000000001 238.6 551.1000000000001 284.8zM480 16C418.2 16 368 65.5 368 126.4C368 149 392.9 201.1 440.2 252.8C462.6 229.1 470.7 217.1 508.7 166.7C549.3 214.5 547.8 212.8 549.8 215.1C576.1999999999999 179.8 592 141.1 592 126.3C592 65.5 541.8 16 480 16z" />
+    <glyph glyph-name="dumpster"
+      unicode="&#xF793;"
+      horiz-adv-x="576" d=" M560 288C570.4 288 578 297.8 575.5 307.9L551.5 403.9C549.7 411 543.3 416 536 416H437.1L462.7 288H560zM404.5 416H304V288H430.1L404.5 416zM560 224H540L544 256H32L36 224H16C7.2 224 0 216.8 0 208V192C0 183.2 7.2 176 16 176H42L64 0V-16C64 -24.8 71.2 -32 80 -32H112C120.8 -32 128 -24.8 128 -16V0H448V-16C448 -24.8 455.2 -32 464 -32H496C504.8 -32 512 -24.8 512 -16V0L534 176H560C568.8 176 576 183.2 576 192V208C576 216.8 568.8 224 560 224zM469.6 48H106.4L86.4 208H489.7L469.6 48zM16 288H113.3L138.9 416H40C32.7 416 26.3 411 24.5 403.9L0.5 307.9C-2 297.8 5.6 288 16 288zM272 416H171.5L145.9 288H272V416z" />
+    <glyph glyph-name="dungeon"
+      unicode="&#xF6D9;"
+      horiz-adv-x="512" d=" M512 152.57C512 161.04 510.09 169.08 506.67 176.27C510.33 184.17 512.15 192.9 511.81 201.69C510.49 236.89 502.04 270.88 486.72 302.69C482.4 311.66 475.75 319.14 467.7 324.54C466.3000000000001 334.11 462.41 343.24 456.29 350.94C434.9600000000001 377.78 408.94 399.75 378.9600000000001 416.24A55.498 55.498 0 0 1 352.3200000000001 423.08C351.8800000000001 423.08 351.4400000000001 423.08 351.0100000000001 423.06C344.29 430.1 335.7700000000001 435.33 326.2700000000001 438.06C303.32 444.65 279.67 448 256 448S208.68 444.65 185.71 438.05C176.22 435.33 167.71 430.1 160.99 423.06C160.55 423.07 160.11 423.08 159.68 423.08C150.39 423.08 141.19 420.7200000000001 133.06 416.25C103.07 399.75 77.05 377.78 55.71 350.93A55.208 55.208 0 0 1 44.3 324.54C36.25 319.15 29.6 311.67 25.28 302.7000000000001C9.95 270.88 1.51 236.9 0.18 201.68C-0.15 192.91 1.66 184.18 5.32 176.28A55.223 55.223 0 0 1 0 152.57V95.43C0 87.06 1.86 79.12 5.2 72C1.86 64.88 0 56.94 0 48.57V-8.57C0 -39.13 24.87 -64 55.43 -64H456.57C487.13 -64 512 -39.13 512 -8.57V48.57C512 56.94 510.14 64.88 506.8 72C510.13 79.12 512 87.06 512 95.43V152.57zM112 -8.57C112 -12.67 108.67 -16 104.57 -16H55.43C51.33 -16 48 -12.67 48 -8.57V48.57C48 52.67 51.33 56 55.43 56H104.57C108.67 56 112 52.67 112 48.57V-8.57zM112 95.43C112 91.33 108.67 88 104.57 88H55.43C51.33 88 48 91.33 48 95.43V152.57C48 156.67 51.33 160 55.43 160H104.57C108.67 160 112 156.67 112 152.57V95.43zM133.22 243.83C127.24 229.9100000000001 123.37 214.9 122.48 199.04C122.26 195.12 119.22 192 115.29 192H55.81C51.56 192 47.99 195.62 48.15 199.8600000000001C49.25 229.1400000000001 56.48 256.86 68.52 281.85C69.81 284.52 72.53 286.02 75.32 286.02C76.71 286.02 78.12 285.65 79.37 284.87L130.48 252.93C133.57 251 134.66 247.18 133.22 243.83zM150.16 276.94C148.86 276.94 147.56 277.29 146.37 278.03L95.3 309.95C91.52 312.31 90.51 317.57 93.28 321.06C110.47 342.68 131.82 360.78 156.17 374.18A7.2299999999999995 7.2299999999999995 0 0 0 159.67 375.07C162.7 375.07 165.66 373.22 166.84 370.21L188.94 313.97C190.25 310.64 188.91 306.97 185.87 305.08A133.5 133.5 0 0 1 155.78 279.53C154.31 277.85 152.25 276.94 150.16 276.94zM208 -8C208 -12.42 204.42 -16 200 -16H184C179.58 -16 176 -12.42 176 -8V244.87C184.16 257.17 195.22 267.19 208 274.65V-8zM272 -8C272 -12.42 268.42 -16 264 -16H248C243.58 -16 240 -12.42 240 -8V286.38C245.23 287.27 250.52 288 256 288S266.77 287.27 272 286.38V-8zM288.88 321.27C288.24 321.27 287.58 321.35 286.94 321.51C275.95 324.32 265.95 325.71 255.99 325.71C245.97 325.71 235.99 324.3 225.07 321.51C224.42 321.34 223.77 321.26 223.12 321.26C220.14 321.26 217.33 322.96 216.21 325.82L194.17 381.91C192.57 385.99 194.76 390.7 198.97 391.91C217.1 397.13 236.21 400 256 400S294.9 397.13 313.03 391.92C317.24 390.71 319.43 386 317.83 381.92L295.79 325.82C294.67 322.96 291.86 321.27 288.88 321.27zM336 -8C336 -12.42 332.42 -16 328 -16H312C307.58 -16 304 -12.42 304 -8V274.64C316.78 267.18 327.84 257.17 336 244.86V-8zM361.84 276.94C359.76 276.94 357.7 277.85 356.22 279.54A133.758 133.758 0 0 1 326.13 305.0900000000001C323.09 306.98 321.75 310.65 323.06 313.98L345.1600000000001 370.2200000000001C346.3400000000001 373.23 349.29 375.0800000000001 352.3300000000001 375.0800000000001C353.5200000000001 375.0800000000001 354.7200000000001 374.8 355.8300000000001 374.1900000000001A208.882 208.882 0 0 0 418.7200000000001 321.0700000000001C421.49 317.5800000000001 420.48 312.3200000000001 416.7000000000001 309.9600000000001L365.6300000000001 278.04C364.4400000000001 277.29 363.1300000000001 276.9400000000001 361.8400000000001 276.9400000000001zM389.52 199.04C388.63 214.89 384.76 229.91 378.78 243.83C377.34 247.18 378.43 251 381.52 252.93L432.63 284.87A7.639 7.639 0 0 0 436.68 286.02C439.4700000000001 286.02 442.19 284.52 443.48 281.85C455.52 256.86 462.75 229.14 463.85 199.86C464.01 195.62 460.44 192 456.19 192H396.7C392.78 192 389.74 195.12 389.52 199.04zM464 -8.57C464 -12.67 460.67 -16 456.57 -16H407.43C403.33 -16 400 -12.67 400 -8.57V48.57C400 52.67 403.33 56 407.43 56H456.57C460.67 56 464 52.67 464 48.57V-8.57zM464 95.43C464 91.33 460.67 88 456.57 88H407.43C403.33 88 400 91.33 400 95.43V152.57C400 156.67 403.33 160 407.43 160H456.57C460.67 160 464 156.67 464 152.57V95.43z" />
+    <glyph glyph-name="ear-muffs"
+      unicode="&#xF795;"
+      horiz-adv-x="640" d=" M621.4 142.8C615.1 182.5 577.9 192.8 577 193C563.2 211.4 544.8 215.3 543.9 215.6V224C544 347.5 443.5 447.9 320 448C196.5 447.9 96 347.5 96 224V215.6C95.1 215.3 76.8 211.4 62.9 193C62 192.7 24.9 182.5 18.5 142.8C3.5 127.8 -5 104 3.2 79.6C-4.6 55.4 3.7 31.6 18.9 16.6C24.1 -13.7 47.1 -28.4 63.8 -33.5C64.3 -34.2 87.5 -66.1 129.8 -57.4C138.7 -61.7 148.5 -64 158.8 -64C194.8 -64 224.1 -35.7 224.1 -0.9C224.1 6 222.9 12.8 220.5 19.3C226.9000000000001 36.9 223.3000000000001 52.2 220.7 59.8C226.8 77.4 223.3 92.5 220.7 100.1C223.4 107.7000000000001 226.9 122.9 220.5 140.6C222.9 147.1 224.1 153.9 224.1 160.8C224.1 195.6 194.8 223.9 158.8 223.9H144.1C144.1 320.9 223 399.9 320.1 399.9C417.1 399.9 496.1 320.9 496.1 223.9H481.4C445.4000000000001 223.9 416.1 195.6 416.1 160.8C416.1 153.9 417.3 147.1 419.7000000000001 140.6C413.3000000000001 123 416.9000000000001 107.7000000000001 419.5000000000001 100.1C416.9000000000001 92.5 413.4000000000001 77.4 419.5000000000001 59.8C416.9000000000001 52.2 413.3000000000001 37 419.7000000000001 19.3C417.3000000000001 12.8 416.1 6 416.1 -0.9C416.1 -35.7 445.4000000000001 -64 481.4 -64C491.6 -64 501.5000000000001 -61.7 510.4 -57.4C552.7 -66.1 575.9000000000001 -34.2 576.4000000000001 -33.5C593.1000000000001 -28.4 616.1000000000001 -13.7 621.3000000000001 16.6C636.5000000000001 31.6 644.8000000000001 55.3 637.0000000000001 79.6C645.0000000000001 104 636.5000000000001 127.8 621.4000000000001 142.8zM167.5 134C179.2 123.9 178.6 107.5 167.5 98C179.2 87.9 178.6 71.5 167.5 62C179.2 51.9 178.6 35.5 167.5 26C192 5 159.8 -31.1 136.1 -9.6C120.1 -24.1 94.8 -12.1 96.4 9.7C75.9 2 58.2 22.7 65.9 41.3C49 45.8 41.8 66.1 54.4 80C41.8 93.9 49 114.2 65.9 118.8C58.2 137.3 75.6 158.1 96.4 150.4C94.8 172.2000000000001 120 184.3 136.1 169.7000000000001C159.8 191.2000000000001 191.9 155.0000000000001 167.5 134.0000000000001zM574.1 41.2C581.9 22.6 564.2 2 543.6 9.6C545.2 -12.2 520 -24.3 503.9 -9.7C480.2 -31.1 448.0000000000001 4.9999999999999 472.5000000000001 25.9999999999999C461.4 35.4999999999999 460.8000000000001 51.8999999999999 472.5000000000001 61.9999999999999C461.4 71.4999999999999 460.8000000000001 87.8999999999999 472.5000000000001 97.9999999999999C461.4 107.4999999999999 460.8000000000001 123.8999999999999 472.5000000000001 134C448.1000000000001 155 480.2 191.1999999999999 503.9 169.6C519.9000000000001 184.1 545.2 172.1 543.6 150.3C564.3000000000001 158.1 581.8000000000001 137.1999999999999 574.1 118.6999999999999C591 114.0999999999999 598.2 93.8 585.6 79.8999999999999C598.2 66.0999999999999 591 45.7999999999999 574.1 41.1999999999999z" />
+    <glyph glyph-name="ear"
+      unicode="&#xF5F0;"
+      horiz-adv-x="384" d=" M192 356C136.88 356 92 311.14 92 256C92 218.5 122.5 188 160 188C175.44 188 188 175.44 188 160S175.44 132 160 132H140C133.38 132 128 126.61 128 120V104C128 97.39 133.38 92 140 92H160C197.5 92 228 122.5 228 160S197.5 228 160 228C144.56 228 132 240.56 132 256C132 289.08 158.91 316 192 316S252 289.08 252 256V236C252 229.39 257.38 224 264 224H280C286.62 224 292 229.39 292 236V256C292 311.14 247.12 356 192 356zM192 448C85.96 448 0 362.04 0 256V80C0 0.47 64.47 -64 144 -64S288 0.47 288 80V89.9C345.33 123.11 384 184.98 384 256C384 362.04 298.04 448 192 448zM263.94 131.43L240 117.56V79.99C240 27.06 196.94 -16.01 144 -16.01S48 27.06 48 79.99V256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 204.91 308.39 157.18 263.94 131.43z" />
+    <glyph glyph-name="eclipse-alt"
+      unicode="&#xF74A;"
+      horiz-adv-x="512" d=" M326.1 138.8C279.6 129.9 236.8 165.6 236.8 212.7C236.8 239.8 251.3 264.7000000000001 274.8 278.1C278.4000000000001 280.2000000000001 277.5 285.7000000000001 273.4000000000001 286.4000000000001C267.6 287.5 261.8 288 255.9000000000001 288C203 288 160 245.1 160 192C160 139 202.9 96 255.9000000000001 96C285.5000000000001 96 312.5000000000001 109.5 330.4000000000001 131.5C333.1 134.8 330.2000000000001 139.6 326.1 138.8zM494.2 226.1L434.4000000000001 266.6L448.1 337.6C450.7 350.8 446.5 364.4000000000001 437 374C427.4 383.5 413.8 387.7000000000001 400.8 385.1L329.9 371.4000000000001L289.5 431.3C274.4 453.6 237.6 453.6 222.5 431.3L182.1 371.4000000000001L111.3 385.1C98 387.6 84.5 383.5 75 373.9C65.5 364.3 61.3 350.8 63.9 337.6L77.6 266.6L17.8 226.1C6.6 218.5 0 206 0 192.5S6.7 166.5 17.8 159L77.6 118.5L63.9 47.5C61.3 34.3 65.5 20.7 75 11.2C84.5 1.7 97.9 -2.5 111.3 0.1L182.1 13.8L222.5 -46.1C230 -57.3 242.6 -64 256 -64S282 -57.3 289.5 -46.2L329.9 13.7L400.8 0C414.2 -2.7 427.6 1.6 437.1 11.1C446.6 20.6 450.7 34.2 448.2 47.4L434.5 118.4L494.3 158.9C505.4 166.4 512.1 179.0000000000001 512.1 192.4C512 206 505.4 218.5 494.2 226.1zM381.3000000000001 140.5L398.9000000000001 49.3L307.9000000000001 66.9L256 -10L204.1 67L113.2 49.4L130.8 140.6L54 192.6L130.8 244.6L113.2 335.8L204.2 318.2L256 395L307.9 318.1L398.9 335.7L381.3 244.6L458.1 192.6L381.3 140.5z" />
+    <glyph glyph-name="eclipse"
+      unicode="&#xF749;"
+      horiz-adv-x="640" d=" M448 384C342 384 256 298 256 192S342 0 448 0S640 86 640 192S554 384 448 384zM448 48C368.6 48 304 112.6 304 192S368.6 336 448 336S592 271.4 592 192S527.4 48 448 48zM256 -10L204.1 67L113.2 49.4L130.8 140.6L54 192.6L130.8 244.6L113.2 335.8L204.2 318.2L256 395L287.7 348.1C298.9 359.6 311.4 370 324.9 378.9L289.6 431.3C274.5 453.6 237.7 453.6 222.6 431.3L182.2 371.4L111.4 385.1C98 387.6 84.5 383.5 75 373.9S61.3 350.8 63.9 337.6L77.6 266.6L17.8 226.1C6.6 218.5 0 206 0 192.5S6.7 166.5 17.8 159L77.6 118.5L63.9 47.5C61.3 34.3 65.5 20.7 75 11.2C84.5 1.7 97.9 -2.5 111.3 0.1L182.1 13.8L222.5 -46.1C230 -57.3 242.6 -64 256 -64S282 -57.3 289.5 -46.2L324.3 5.4C310.8 14.4 298.5 24.8 287.2 36.3L256 -10zM229.6 241.1C233.9 260.2 240.6 278.4 249.5 295.4C195.2 291.9 152 247.1 152 192S195.2 92.1 249.5 88.7C240.6 105.6 233.9 123.8 229.6 143C212.1 152.5 200 170.8 200 192.1S212.1 231.6 229.6 241.1z" />
+    <glyph glyph-name="edit"
+      unicode="&#xF044;"
+      horiz-adv-x="576" d=" M402.3 103.1L434.3 135.1C439.3 140.1 448 136.6 448 129.4V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V336C0 362.5 21.5 384 48 384H321.5C328.6 384 332.2 375.4 327.2 370.3L295.2 338.3C293.7 336.8 291.7 336 289.5 336H48V-16H400V97.5C400 99.6 400.8 101.6 402.3 103.1zM558.9 304.9000000000001L296.3 42.3L205.9 32.3C179.7 29.4 157.4 51.5 160.3 77.9L170.3 168.3000000000001L432.9 430.9C455.8 453.8 492.8 453.8 515.6 430.9L558.8000000000001 387.7C581.7 364.8 581.7 327.7 558.9000000000001 304.9zM460.1 274L402 332.1L216.2 146.2L208.9 80.9L274.2 88.2L460.1 274zM524.9 353.7L481.7 396.9C477.6 401 470.9 401 466.9 396.9L436 366L494.1 307.9L525 338.8C529 343 529 349.6 524.9 353.7000000000001z" />
+    <glyph glyph-name="eject"
+      unicode="&#xF052;"
+      horiz-adv-x="448" d=" M400 128H48C21.49 128 0 106.51 0 80V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V80C448 106.51 426.51 128 400 128zM400 16H48V80H400V16zM48.048 144H399.943C442.58 144 464.094 195.731 433.884 225.941L257.9410000000001 401.9410000000001C239.1960000000001 420.686 208.804 420.687 190.059 401.9410000000001L14.107 225.941C-16.042 195.792 5.325 144 48.048 144zM224 368L400 192H48L224 368z" />
+    <glyph glyph-name="elephant"
+      unicode="&#xF6DA;"
+      horiz-adv-x="640" d=" M528 320.03C519.16 320.03 512 312.87 512 304.03S519.16 288.03 528 288.03S544 295.19 544 304.03S536.84 320.03 528 320.03zM512 416.03H450.84C447.2000000000001 419.8 443.3800000000001 423.43 439.1300000000001 426.69C413.1600000000001 446.57 379.6900000000001 452.91 347.3100000000001 444.15C329.2700000000001 439.25 313.4300000000001 429.19 300.8200000000001 416.04H192C85.96 416.03 0 330.07 0 224.02V112.01C0 103.17 7.16 96.01 16 96.01H32V-32C32 -49.67 46.33 -64 64 -64H144C161.67 -64 176 -49.67 176 -32V40.84C194.48 35.73 242.55 23.86 304 40.84V-32C304 -49.67 318.33 -64 336 -64H416C433.67 -64 448 -49.67 448 -32V160.02H592V72.01C592 58.77 581.22 48.01 568 48.01S544 58.78 544 72.01V80.01C544 88.85 536.84 96.01 528 96.01H512C503.16 96.01 496 88.85 496 80.01V75.23C496 37.65 523.38 4.03 560.78 0.36C603.6899999999999 -3.85 640 29.92 640 72.01V288.03C640 358.7200000000001 582.69 416.03 512 416.03zM400 -16H352V103.91C231.33 70.5700000000001 240.92 72.71 128 103.91V-16H80V144.02H48V224.03C48 303.57 112.47 368.04 192 368.04H275.24C269.13 341.11 272.81 313.86 286.7800000000001 290.57C298.31 271.38 315.6900000000001 256.52 336 248.04C336 207.89 363.18 174.31 400 163.78V-16zM592 240.02C592 222.35 577.67 208.02 560 208.02H424C401.94 208.02 384 225.96 384 248.02V285.26C361.35 289.85 342.11 291.66 327.94 315.26C311.51 342.7200000000001 320.56 387.12 359.88 397.83C389.04 405.74 415.4 391.5 426.54 368.03H512C556.11 368.03 592 332.14 592 288.02V240.02z" />
+    <glyph glyph-name="ellipsis-h-alt"
+      unicode="&#xF39B;"
+      horiz-adv-x="512" d=" M256 264C216.2 264 184 231.8 184 192S216.2 120 256 120S328 152.2 328 192S295.8 264 256 264zM256 168C242.8 168 232 178.8 232 192S242.8 216 256 216S280 205.2 280 192S269.2 168 256 168zM432 264C392.2 264 360 231.8 360 192S392.2 120 432 120S504 152.2 504 192S471.8 264 432 264zM432 168C418.8 168 408 178.8 408 192S418.8 216 432 216S456 205.2 456 192S445.2 168 432 168zM80 264C40.2 264 8 231.8 8 192S40.2 120 80 120S152 152.2 152 192S119.8 264 80 264zM80 168C66.8 168 56 178.8 56 192S66.8 216 80 216S104 205.2 104 192S93.2 168 80 168z" />
+    <glyph glyph-name="ellipsis-h"
+      unicode="&#xF141;"
+      horiz-adv-x="512" d=" M304 192C304 165.5 282.5 144 256 144S208 165.5 208 192S229.5 240 256 240S304 218.5 304 192zM424 240C397.5 240 376 218.5 376 192S397.5 144 424 144S472 165.5 472 192S450.5 240 424 240zM88 240C61.5 240 40 218.5 40 192S61.5 144 88 144S136 165.5 136 192S114.5 240 88 240z" />
+    <glyph glyph-name="ellipsis-v-alt"
+      unicode="&#xF39C;"
+      horiz-adv-x="192" d=" M96 264C56.2 264 24 231.8 24 192S56.2 120 96 120S168 152.2 168 192S135.8 264 96 264zM96 168C82.8 168 72 178.8 72 192S82.8 216 96 216S120 205.2 120 192S109.2 168 96 168zM96 88C56.2 88 24 55.8 24 16S56.2 -56 96 -56S168 -23.8 168 16S135.8 88 96 88zM96 -8C82.8 -8 72 2.8 72 16S82.8 40 96 40S120 29.2 120 16S109.2 -8 96 -8zM96 296C135.8 296 168 328.2 168 368S135.8 440 96 440S24 407.8 24 368S56.2 296 96 296zM96 392C109.2 392 120 381.2 120 368S109.2 344 96 344S72 354.8 72 368S82.8 392 96 392z" />
+    <glyph glyph-name="ellipsis-v"
+      unicode="&#xF142;"
+      horiz-adv-x="128" d=" M64 240C90.5 240 112 218.5 112 192S90.5 144 64 144S16 165.5 16 192S37.5 240 64 240zM16 344C16 317.5 37.5 296 64 296S112 317.5 112 344S90.5 392 64 392S16 370.5 16 344zM16 40C16 13.5 37.5 -8 64 -8S112 13.5 112 40S90.5 88 64 88S16 66.5 16 40z" />
+    <glyph glyph-name="empty-set"
+      unicode="&#xF656;"
+      horiz-adv-x="448" d=" M443.31 400L432 411.31C425.75 417.56 415.62 417.56 409.37 411.31L341.6 343.54C309.09 368.81 268.36 384 224 384C117.96 384 32 298.04 32 192C32 147.64 47.19 106.91 72.46 74.4L4.69 6.62C-1.56 0.37 -1.56 -9.76 4.69 -16.01L16 -27.31C22.25 -33.56 32.38 -33.56 38.63 -27.31L106.4 40.46C138.9 15.19 179.64 0 224 0C330.04 0 416 85.96 416 192C416 236.36 400.81 277.0900000000001 375.54 309.6L443.31 377.37C449.56 383.62 449.56 393.76 443.31 400zM80 192C80 271.4 144.6 336 224 336C255.04 336 283.64 325.89 307.18 309.12L106.87 108.82C90.1 132.36 80 160.95 80 192zM368 192C368 112.6 303.4 48 224 48C192.95 48 164.36 58.1 140.81 74.88L341.12 275.18C357.9 251.64 368 223.04 368 192z" />
+    <glyph glyph-name="engine-warning"
+      unicode="&#xF5F2;"
+      horiz-adv-x="640" d=" M320 416C196.3 416 96 315.7 96 192C96 68.24 196.3 -32 320 -32S544 68.24 544 192C544 315.7 443.7 416 320 416zM320 16C222.95 16 144 94.95 144 192S222.95 368 320 368S496 289.05 496 192S417.05 16 320 16zM320 128C302.33 128 288 113.67 288 96S302.33 64 320 64S352 78.33 352 96S337.67 128 320 128zM342.32 320H297.68C288.21 320 280.82 311.8300000000001 281.76 302.41L294.56 174.41C295.38 166.23 302.26 160 310.48 160H329.5200000000001C337.7400000000001 160 344.6200000000001 166.23 345.4400000000001 174.41L358.2400000000001 302.41C359.1800000000001 311.83 351.7900000000001 320 342.3200000000001 320zM48 192C48 251.53 67.55 309.38 103.36 356.51C108.54 363.32 107.84 372.82 101.33 378.37L89.13 388.78C82.22 394.68 71.51 393.84 65.98 386.63C23.32 330.98 0 262.5 0 192C0 121.53 23.32 53.04 65.96 -2.62C71.49 -9.83 82.19 -10.67 89.11 -4.78L101.3 5.6199999999999C107.81 11.17 108.51 20.66 103.34 27.48C67.55 74.63 48 132.47 48 192zM572.73 388.29C567.15 395.4700000000001 556.44 396.24 549.5600000000001 390.29L537.4100000000001 379.78C530.94 374.18 530.3100000000001 364.69 535.5300000000001 357.91C572.04 310.53 592 252.19 592 192C592 131.77 572.04 73.43 535.54 26.05C530.3199999999999 19.27 530.9499999999999 9.78 537.42 4.18L549.5699999999999 -6.32C556.4399999999999 -12.27 567.16 -11.5 572.7399999999999 -4.32C616.21 51.62 640 120.69 640 192C640 263.27 616.21 332.3400000000001 572.73 388.29z" />
+    <glyph glyph-name="envelope-open-dollar"
+      unicode="&#xF657;"
+      horiz-adv-x="512" d=" M230.72 214.28L272.91 202.84C277.1 201.7 280 198.29 280 194.54C280 189.74 275.5 185.84 269.94 185.84H243.6C239.45 185.84 235.37 186.88 231.83 188.79C228.75 190.46 224.99 190.16 222.59 187.61L210.52 174.88C207.41 171.6 207.92 166.24 211.65 163.69C219.95 158.04 229.71 154.81 240 154.17V144C240 139.58 243.58 136 248 136H264C268.42 136 272 139.58 272 144V154.25C294.18 155.35 312 172.82 312 194.55C312 212.72 299.38 228.83 281.28 233.7200000000001L239.09 245.1600000000001C234.9 246.3 232 249.7100000000001 232 253.4600000000001C232 258.2600000000001 236.5 262.1600000000001 242.06 262.1600000000001H268.4C272.55 262.1600000000001 276.63 261.12 280.17 259.2100000000001C283.25 257.5500000000001 287.01 257.8400000000001 289.41 260.3900000000001L301.48 273.12C304.59 276.4000000000001 304.08 281.7600000000001 300.35 284.3100000000001C292.05 289.9600000000001 282.29 293.1900000000001 272 293.8300000000001V304C272 308.42 268.42 312 264 312H248C243.58 312 240 308.42 240 304V293.75C217.8199999999999 292.65 200 275.18 200 253.45C200 235.28 212.62 219.17 230.72 214.28zM494.59 283.48C493.0700000000001 284.74 480.73 294.68 464.0000000000001 308.14V352C464.0000000000001 378.51 442.5100000000001 400 416.0000000000001 400H349.8700000000001C327.24 419.15 293.77 448 256 448C218.35 448 185.1 419.37 162.15 400H96C69.49 400 48 378.51 48 352V308.15C31.19 294.63 18.85 284.69 17.52 283.5900000000001A48.00200000000001 48.00200000000001 0 0 1 0 246.52V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V246.49C512 260.8 505.62 274.37 494.59 283.48zM96 352H416V195.34C379.74 166.02 337.31 131.67 329.41 125.39C311.25 110.88 279.6 80 256 80C232.31 80 200.14 111.37 182.59 125.39C174.69 131.67 132.26 166.03 96 195.36V352zM464 -10C464 -13.31 461.31 -16 458 -16H54C50.69 -16 48 -13.31 48 -10V172.44C86.96 140.96 143.95 94.79 152.66 87.86C174.71 70.24 212.55 32 256 32C299.21 32 336.64 69.72 359.3400000000001 87.86C368.3400000000001 95.01 425.1800000000001 141.05 464 172.42V-10z" />
+    <glyph glyph-name="envelope-open-text"
+      unicode="&#xF658;"
+      horiz-adv-x="512" d=" M494.59 283.48C493.07 284.74 480.73 294.68 464 308.14V352C464 378.51 442.51 400 416 400H349.87C327.24 419.15 293.77 448 256 448C218.35 448 185.1 419.37 162.15 400H96C69.49 400 48 378.51 48 352V308.15C31.19 294.63 18.85 284.69 17.52 283.5900000000001A48.00200000000001 48.00200000000001 0 0 1 0 246.52V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V246.49C512 260.8 505.62 274.37 494.59 283.48zM96 352H416V195.34C379.74 166.02 337.31 131.67 329.41 125.39C311.25 110.88 279.6 80 256 80C232.31 80 200.14 111.37 182.59 125.39C174.69 131.67 132.26 166.03 96 195.36V352zM464 -10C464 -13.31 461.31 -16 458 -16H54C50.69 -16 48 -13.31 48 -10V172.44C86.96 140.96 143.95 94.79 152.66 87.86C174.71 70.24 212.55 32 256 32C299.21 32 336.64 69.72 359.3400000000001 87.86C368.3400000000001 95.01 425.1800000000001 141.05 464 172.42V-10zM176 256H336C344.84 256 352 263.16 352 272V288C352 296.8400000000001 344.84 304 336 304H176C167.16 304 160 296.8400000000001 160 288V272C160 263.16 167.16 256 176 256zM352 192V208C352 216.84 344.84 224 336 224H176C167.16 224 160 216.84 160 208V192C160 183.16 167.16 176 176 176H336C344.84 176 352 183.16 352 192z" />
+    <glyph glyph-name="envelope-open"
+      unicode="&#xF2B6;"
+      horiz-adv-x="512" d=" M494.586 283.4840000000001C489.889 287.367 382.863 373.4340000000001 359.3350000000001 392.141C337.231 409.809 299.437 448 256 448C212.795 448 175.364 410.283 152.665 392.141C128.202 372.6910000000001 21.595 286.9460000000001 17.515 283.592A48.004000000000005 48.004000000000005 0 0 1 0 246.515V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V246.491A48 48 0 0 1 494.586 283.4840000000001zM464 -10A6 6 0 0 0 458 -16H54A6 6 0 0 0 48 -10V243.653C48 245.466 48.816 247.179 50.226 248.318C66.096 261.132 159.019 335.872 182.59 354.611C200.755 369.12 232.398 400 256 400C279.693 400 311.857 368.631 329.41 354.611C352.983 335.87 445.913 261.118 461.776 248.295A5.99 5.99 0 0 0 463.9999999999999 243.632V-10zM432.009 177.704C436.2580000000001 172.545 435.474 164.909 430.264 160.723C401.289 137.44 370.99 113.126 359.3350000000001 103.86C336.636 85.717 299.205 48 256 48C212.548 48 174.713 86.237 152.665 103.86C141.386 112.827 110.921 137.273 81.738 160.725C76.528 164.912 75.745 172.547 79.993 177.706L95.251 196.234C99.429 201.307 106.908 202.077 112.03 197.96C140.648 174.959 170.596 150.925 182.59 141.389C200.143 127.369 232.307 96 256 96C279.602 96 311.246 126.88 329.41 141.389C341.404 150.924 371.354 174.959 399.973 197.957C405.095 202.073 412.574 201.303 416.751 196.23L432.009 177.704z" />
+    <glyph glyph-name="envelope-square"
+      unicode="&#xF199;"
+      horiz-adv-x="448" d=" M187.293 187.626C114.743 237.509 115.482 237.634 96 252V264C96 277.255 106.745 288 120 288H328C341.255 288 352 277.255 352 264V252C332.503 237.624 333.253 237.506 260.707 187.626C252.293 181.814 235.603 167.836 224 168.001C212.4 167.835 195.704 181.817 187.293 187.626zM278.856 161.271C267.519 153.425 247.377 135.895 224 136C200.759 135.896 180.918 153.118 169.151 161.266C124.097 192.243 107.131 204.149 96 212.224V120C96 106.745 106.745 96 120 96H328C341.255 96 352 106.745 352 120V212.224C340.87 204.15 323.906 192.246 278.856 161.271zM448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM400 22V362A6 6 0 0 1 394 368H54A6 6 0 0 1 48 362V22A6 6 0 0 1 54 16H394A6 6 0 0 1 400 22z" />
+    <glyph glyph-name="envelope"
+      unicode="&#xF0E0;"
+      horiz-adv-x="512" d=" M464 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V336C512 362.51 490.51 384 464 384zM464 336V295.195C441.578 276.936 405.832 248.544 329.413 188.705C312.572 175.458 279.212 143.633 256 144.004C232.792 143.629 199.421 175.463 182.587 188.705C106.18 248.535 70.425 276.933 48 295.195V336H464zM48 48V233.602C70.914 215.351 103.409 189.74 152.938 150.956C174.795 133.751 213.072 95.77 256 96.001C298.717 95.77 336.509 133.2000000000001 359.053 150.948C408.581 189.7310000000001 441.085 215.3490000000001 464 233.6010000000001V48H48z" />
+    <glyph glyph-name="equals"
+      unicode="&#xF52C;"
+      horiz-adv-x="384" d=" M368 144H16C7.16 144 0 136.84 0 128V96C0 87.16 7.16 80 16 80H368C376.84 80 384 87.16 384 96V128C384 136.84 376.84 144 368 144zM368 304H16C7.16 304 0 296.8400000000001 0 288V256C0 247.16 7.16 240 16 240H368C376.84 240 384 247.16 384 256V288C384 296.8400000000001 376.84 304 368 304z" />
+    <glyph glyph-name="eraser"
+      unicode="&#xF12D;"
+      horiz-adv-x="512.001" d=" M497.942 174.059C516.687 192.804 516.687 223.196 497.942 241.9410000000001L337.942 401.9410000000001C319.1960000000001 420.6860000000001 288.806 420.687 270.0590000000001 401.9410000000001L14.059 145.941C-4.686 127.196 -4.686 96.804 14.059 78.059L110.059 -17.941A48 48 0 0 1 144 -32H500C506.627 -32 512 -26.627 512 -20V4C512 10.627 506.627 16 500 16H339.883L497.942 174.059zM304 368L464 208L360.971 104.971L200.971 264.971L304 368zM144 16L48 112L167.03 231.029L327.03 71.029L272 16H144z" />
+    <glyph glyph-name="ethernet"
+      unicode="&#xF796;"
+      horiz-adv-x="512" d=" M496 256H448V304C448 312.8 440.8 320 432 320H384V368C384 376.8 376.8 384 368 384H144C135.2 384 128 376.8 128 368V320H80C71.2 320 64 312.8 64 304V256H16C7.2 256 0 248.8 0 240V16C0 7.2 7.2 0 16 0H496C504.8 0 512 7.2 512 16V240C512 248.8 504.8 256 496 256zM464 48H416V160H384V48H320V160H288V48H224V160H192V48H128V160H96V48H48V208H112V272H176V336H336V272H400V208H464V48z" />
+    <glyph glyph-name="euro-sign"
+      unicode="&#xF153;"
+      horiz-adv-x="320" d=" M315.5950000000001 -10.559L309.091 18.884C307.645 25.4279999999999 301.129 29.5119999999999 294.606 27.9709999999999C284.3 25.5359999999999 268.145 22.619 249.907 22.619C184.438 22.619 132.889 62.151 111.699 120.001H241.214A12 12 0 0 1 252.963 129.559L257.952 153.559C259.5009999999999 161.009 253.813 168.001 246.203 168.001H98.159C96.664 184.14 96.091 200.265 97.568 216.001H260.06A12 12 0 0 1 271.7970000000001 225.5L276.911 249.5C278.502 256.966 272.808 264.001 265.174 264.001H108.057C129.077 322.36 180.584 361.996 248.066 361.996C262.729 361.996 276.975 359.912 286.311 358.173C292.478 357.024 298.486 360.808 300.107 366.868L308.014 396.435C309.823 403.201 305.486 410.068 298.598 411.337C287.192 413.438 269.204 416 249.294 416C149.268 416 69.61 351.924 43.43 264H12C5.373 264 0 258.627 0 252V228C0 221.373 5.373 216 12 216H35.129C33.97 200.229 34.098 180.526 35.512 168H12C5.373 168 0 162.627 0 156V132C0 125.373 5.373 120 12 120H44.248C70.228 31.296 147.676 -32 249.293 -32C273.695 -32 294.674 -27.845 306.831 -24.779C313.119 -23.194 316.994 -16.89 315.595 -10.559z" />
+    <glyph glyph-name="exchange-alt"
+      unicode="&#xF362;"
+      horiz-adv-x="512" d=" M508.485 279.52L412.3250000000001 183.36C404.7450000000001 175.78 391.8400000000001 181.22 391.8400000000001 191.845L391.8330000000001 264H12C5.373 264 0 269.373 0 276V300C0 306.627 5.373 312 12 312H391.8330000000001L391.843 384.1620000000001C391.844 394.8450000000001 404.7920000000001 400.1840000000001 412.3280000000001 392.647L508.484 296.491C513.171 291.805 513.172 284.206 508.485 279.52zM3.515 87.509L99.671 -8.647C107.207 -16.183 120.155 -10.845 120.156 -0.162L120.166 72H500C506.627 72 512 77.373 512 84V108C512 114.628 506.627 120 500 120H120.167L120.16 192.154C120.16 202.779 107.255 208.22 99.675 200.639L3.515 104.479C-1.172 99.794 -1.171 92.1950000000001 3.515 87.509z" />
+    <glyph glyph-name="exchange"
+      unicode="&#xF0EC;"
+      horiz-adv-x="512" d=" M508.485 279.515L408.11 179.515C403.4240000000001 174.829 395.826 174.829 391.14 179.515L371.514 199.141C366.761 203.894 366.839 211.625 371.687 216.281L422.916 264H12C5.373 264 0 269.373 0 276V300C0 306.627 5.373 312 12 312H422.916L371.688 359.719C366.839 364.375 366.761 372.106 371.515 376.859L391.141 396.485C395.827 401.171 403.425 401.171 408.111 396.485L508.486 296.485C513.1709999999999 291.799 513.1709999999999 284.201 508.485 279.515zM3.515 87.515L103.89 -12.485C108.576 -17.171 116.174 -17.171 120.86 -12.485L140.486 7.141C145.239 11.8939999999999 145.161 19.6249999999999 140.313 24.281L89.084 72H500C506.627 72 512 77.373 512 84V108C512 114.627 506.627 120 500 120H89.084L140.312 167.719C145.161 172.375 145.239 180.106 140.485 184.859L120.859 204.485C116.173 209.171 108.575 209.171 103.889 204.485L3.514 104.485C-1.172 99.799 -1.172 92.201 3.515 87.515z" />
+    <glyph glyph-name="exclamation-circle"
+      unicode="&#xF06A;"
+      horiz-adv-x="512" d=" M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM256 -8C145.468 -8 56 81.431 56 192C56 302.495 145.472 392 256 392C366.491 392 456 302.529 456 192C456 81.47 366.569 -8 256 -8zM298 96C298 72.841 279.159 54 256 54S214 72.841 214 96S232.841 138 256 138S298 119.159 298 96zM216.63 307.401L223.43 171.401C223.749 165.014 229.021 160 235.415 160H276.5850000000001C282.9790000000001 160 288.2510000000001 165.014 288.5700000000001 171.401L295.3700000000001 307.401C295.7130000000001 314.255 290.2480000000001 320 283.3850000000001 320H228.6150000000001C221.7520000000001 320 216.287 314.255 216.6300000000001 307.401z" />
+    <glyph glyph-name="exclamation-square"
+      unicode="&#xF321;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM400 22V362A6 6 0 0 1 394 368H54A6 6 0 0 1 48 362V22A6 6 0 0 1 54 16H394A6 6 0 0 1 400 22zM266 96C266 72.841 247.159 54 224 54S182 72.841 182 96S200.841 138 224 138S266 119.159 266 96zM184.63 307.401L191.43 171.401C191.749 165.014 197.021 160 203.415 160H244.5850000000001C250.9790000000001 160 256.2510000000001 165.014 256.5700000000001 171.401L263.3700000000001 307.401C263.7130000000001 314.255 258.2480000000001 320 251.3850000000001 320H196.6150000000001C189.7520000000001 320 184.287 314.255 184.6300000000001 307.401z" />
+    <glyph glyph-name="exclamation-triangle"
+      unicode="&#xF071;"
+      horiz-adv-x="576" d=" M248.747 243.295L255.335 131.295C255.708 124.952 260.961 120 267.314 120H308.6840000000001A12 12 0 0 1 320.663 131.295L327.2510000000001 243.295C327.656 250.188 322.1760000000001 256 315.2720000000001 256H260.725C253.8220000000001 256 248.342 250.188 248.747 243.295zM330 64C330 40.804 311.1960000000001 22 288 22S246 40.804 246 64S264.804 106 288 106S330 87.196 330 64zM329.577 424.015C311.144 455.966 264.89 456.024 246.423 424.015L6.477 7.987C-11.945 -23.946 11.118 -64 48.054 -64H527.94C564.8050000000001 -64 587.975 -24.007 569.517 7.987L329.577 424.015zM53.191 -7.002L282.803 390.992C285.112 394.9940000000001 290.888 394.9940000000001 293.197 390.992L522.809 -7.001C525.117 -11.001 522.23 -15.999 517.612 -15.999H58.388C53.771 -15.9999999999999 50.884 -11.002 53.191 -7.002z" />
+    <glyph glyph-name="exclamation"
+      unicode="&#xF12A;"
+      horiz-adv-x="256" d=" M173.854 400C180.728 400 186.197 394.237 185.838 387.372L174.096 163.372C173.762 156.997 168.4960000000001 152 162.112 152H93.888C87.505 152 82.238 156.997 81.904 163.372L70.162 387.372C69.802 394.237 75.271 400 82.146 400H173.854M128 112C163.29 112 192 83.29 192 48S163.29 -16 128 -16S64 12.71 64 48S92.71 112 128 112M173.854 448H82.146C47.881 448 20.427 419.217 22.228 384.859L33.97 160.859C34.668 147.55 39.659 135.445 47.562 125.858C28.035 105.69 16 78.223 16 48C16 -13.757 66.243 -64 128 -64S240 -13.757 240 48C240 78.223 227.965 105.69 208.439 125.858A59.779999999999994 59.779999999999994 0 0 1 222.031 160.859L233.773 384.859C235.566 419.078 208.259 448 173.854 448z" />
+    <glyph glyph-name="expand-alt"
+      unicode="&#xF424;"
+      horiz-adv-x="448" d=" M448 392V296.995C448 275.613 422.149 264.905 407.029 280.024L379.325 307.728L272.083 200.485C267.397 195.799 259.799 195.799 255.112 200.485L232.485 223.112C227.799 227.7980000000001 227.799 235.396 232.485 240.0830000000001L339.728 347.326L312.024 375.0300000000001C296.905 390.149 307.613 416 328.995 416H424C437.255 416 448 405.255 448 392zM175.917 183.515L68.674 76.272L40.97 103.976C25.851 119.095 0 108.387 0 87.005V-8C0 -21.255 10.745 -32 24 -32H119.005C140.387 -32 151.095 -6.149 135.976 8.971L108.272 36.675L215.515 143.918C220.201 148.604 220.201 156.202 215.515 160.889L192.888 183.516C188.201 188.201 180.603 188.201 175.917 183.5150000000001z" />
+    <glyph glyph-name="expand-arrows-alt"
+      unicode="&#xF31E;"
+      horiz-adv-x="448" d=" M252.3 192L373.7000000000001 70.6L427.5000000000001 124.4C435.1000000000001 132.0000000000001 448.0000000000001 126.6 448.0000000000001 115.9V-20.1C448.0000000000001 -26.7 442.6000000000001 -32.1 436.0000000000001 -32.1H300C289.3 -32.1 284 -19.2 291.5 -11.6L345.3 42.2L224 163.7L102.6 42.3L156.4 -11.5C164 -19.1 158.6 -32 147.9 -32H11.9C5.3 -32 -0.1 -26.6 -0.1 -20V116C-0.1 126.7 12.8 132 20.4 124.5L74.2 70.7L195.7 192L74.3 313.4L20.5 259.6C12.9 252 0 257.3 0 268V404C0 410.6 5.4 416 12 416H148C158.7 416 164 403.1 156.5 395.5L102.7 341.7L224 220.3L345.4 341.7000000000001L291.6 395.5C284 403.1 289.3 416 300 416H436C442.6 416 448 410.6 448 404V268C448 257.3 435.1 252 427.5 259.5L373.7 313.3L252.3 192z" />
+    <glyph glyph-name="expand-arrows"
+      unicode="&#xF31D;"
+      horiz-adv-x="448" d=" M447.9 116L448 -20C448 -26.6 442.6 -32 436 -32L300 -31.9C293.4 -31.9 288 -26.5 288 -19.9V7.9C288 14.6 293.5 20.0000000000001 300.2 19.9L361.6 17.6L363 19L224 158L85 19L86.4 17.6L147.8 19.9C154.5 20.0000000000001 160 14.6 160 7.9V-19.9C160 -26.5 154.6 -31.9 148 -31.9L12 -32C5.4 -32 0 -26.6 0 -20L0.1 116C0.1 122.6 5.5 128 12.1 128H39.9C46.6 128 52 122.5 51.9 115.8L49.6 54.4L51 53L190 192L51 331L49.6 329.6L51.9 268.2C52 261.5 46.6 256 39.9 256H12.1C5.5 256 0.1 261.4 0.1 268L0 404C0 410.6 5.4 416 12 416L148 415.9C154.6 415.9 160 410.5 160 403.9V376.1C160 369.4 154.5 364 147.8 364.1L86.4 366.4L85 365L224 226L363 365L361.6 366.4L300.2000000000001 364.1C293.5000000000001 364 288.0000000000001 369.4 288.0000000000001 376.1V403.9C288.0000000000001 410.5 293.4000000000001 415.9 300.0000000000001 415.9L436.0000000000001 416C442.6000000000001 416 448.0000000000001 410.6 448.0000000000001 404L447.9000000000001 268C447.9000000000001 261.4 442.5000000000001 256 435.9000000000001 256H408.1C401.4000000000001 256 396 261.5 396.1 268.2L398.4000000000001 329.6L397.0000000000001 331L258.0000000000001 192L397.0000000000001 53L398.4000000000001 54.4L396.1 115.8C396 122.5 401.4000000000001 128 408.1 128H435.9000000000001C442.5000000000001 128 447.9000000000001 122.6 447.9000000000001 116z" />
+    <glyph glyph-name="expand-wide"
+      unicode="&#xF320;"
+      horiz-adv-x="512" d=" M0 236V360C0 373.3 10.7 384 24 384H148C154.6 384 160 378.6 160 372V348C160 341.4 154.6 336 148 336H48V236C48 229.4 42.6 224 36 224H12C5.4 224 0 229.4 0 236zM352 372V348C352 341.4 357.4 336 364 336H464V236C464 229.4 469.4 224 476 224H500C506.6 224 512 229.4 512 236V360C512 373.3 501.3 384 488 384H364C357.4 384 352 378.6 352 372zM500 160H476C469.4 160 464 154.6 464 148V48H364C357.4 48 352 42.6 352 36V12C352 5.4 357.4 0 364 0H488C501.3 0 512 10.7 512 24V148C512 154.6 506.6 160 500 160zM160 12V36C160 42.6 154.6 48 148 48H48V148C48 154.6 42.6 160 36 160H12C5.4 160 0 154.6 0 148V24C0 10.7 10.7 0 24 0H148C154.6 0 160 5.4 160 12z" />
+    <glyph glyph-name="expand"
+      unicode="&#xF065;"
+      horiz-adv-x="448" d=" M0 268V392C0 405.3 10.7 416 24 416H148C154.6 416 160 410.6 160 404V380C160 373.4 154.6 368 148 368H48V268C48 261.4 42.6 256 36 256H12C5.4 256 0 261.4 0 268zM288 404V380C288 373.4 293.4 368 300 368H400V268C400 261.4 405.4 256 412 256H436C442.6 256 448 261.4 448 268V392C448 405.3 437.3 416 424 416H300C293.4 416 288 410.6 288 404zM436 128H412C405.4 128 400 122.6 400 116V16H300C293.4 16 288 10.6 288 4V-20C288 -26.6 293.4 -32 300 -32H424C437.3 -32 448 -21.3 448 -8V116C448 122.6 442.6 128 436 128zM160 -20V4C160 10.6 154.6 16 148 16H48V116C48 122.6 42.6 128 36 128H12C5.4 128 0 122.6 0 116V-8C0 -21.3 10.7 -32 24 -32H148C154.6 -32 160 -26.6 160 -20z" />
+    <glyph glyph-name="external-link-alt"
+      unicode="&#xF35D;"
+      horiz-adv-x="576" d=" M448 206.177V-16C448 -42.51 426.51 -64 400 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H387.976C398.667 384 404.021 371.074 396.461 363.515L372.461 339.515A12.002 12.002 0 0 0 363.976 336H54A6 6 0 0 1 48 330V-10A6 6 0 0 1 54 -16H394A6 6 0 0 1 400 -10V182.177C400 185.36 401.264 188.412 403.515 190.662L427.515 214.662C435.074 222.222 448 216.868 448 206.177zM564 448H428.015C417.357 448 411.976 435.07 419.53 427.515L467.717 379.314L195.515 107.112C190.829 102.426 190.829 94.828 195.515 90.141L218.142 67.514C222.829 62.828 230.427 62.828 235.113 67.514L507.314 339.715L555.515 291.523C563.028 284.01 576 289.288 576 300.008V436C576 442.627 570.627 448 564 448z" />
+    <glyph glyph-name="external-link-square-alt"
+      unicode="&#xF360;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM340 320H204.015C193.357 320 187.976 307.07 195.53 299.515L243.717 251.314L99.515 107.112C94.829 102.4260000000001 94.829 94.828 99.515 90.141L122.142 67.514C126.829 62.828 134.427 62.828 139.113 67.514L283.314 211.715L331.515 163.523C339.028 156.0100000000001 352 161.288 352 172.0080000000001V308C352 314.627 346.627 320 340 320z" />
+    <glyph glyph-name="external-link-square"
+      unicode="&#xF14C;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM340 320L204 319.855C197.373 319.855 192 314.482 192 307.855V280.1C192 273.378 197.522 267.967 204.243 268.102L262.244 270.243L99.515 107.515C94.829 102.829 94.829 95.231 99.515 90.544L122.545 67.515C127.231 62.829 134.829 62.829 139.515 67.515L302.2440000000001 230.244L300.103 172.243C299.967 165.522 305.378 160.001 312.101 160.001H339.856C346.484 160.001 351.856 165.374 351.856 172.001L352 308C352 314.627 346.627 320 340 320z" />
+    <glyph glyph-name="external-link"
+      unicode="&#xF08E;"
+      horiz-adv-x="576" d=" M576 433.6L575.826 270.4C575.826 262.447 569.379 256 561.426 256H528.12C520.053 256 513.5600000000001 262.626 513.723 270.6910000000001L516.4399999999999 344.318L514.3779999999999 346.38L235.515 67.515C230.8289999999999 62.829 223.231 62.829 218.5439999999999 67.515L195.5149999999999 90.544C190.8289999999999 95.23 190.8289999999999 102.828 195.5149999999999 107.515L474.379 386.379L472.317 388.441L398.6910000000001 385.724C390.626 385.56 384 392.054 384 400.121V433.426C384 441.379 390.447 447.826 398.4 447.826L561.6 448C569.553 448 576 441.553 576 433.6zM427.515 214.26L403.515 190.26A12.002 12.002 0 0 1 400 181.775V-10A6 6 0 0 0 394 -16H54A6 6 0 0 0 48 -10V330A6 6 0 0 0 54 336H355.976C366.667 336 372.021 348.926 364.461 356.485L340.461 380.485A12.002 12.002 0 0 1 331.976 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V205.775C448 216.466 435.074 221.82 427.515 214.26z" />
+    <glyph glyph-name="eye-dropper"
+      unicode="&#xF1FB;"
+      horiz-adv-x="512" d=" M483.89 419.86L483.87 419.88L483.84 419.9100000000001C446.37 457.38 385.5800000000001 457.37 348.12 419.88L271.03 342.79L257.93 355.89C248.49 365.33 233.28 365.2 223.99 355.89L160.39 292.29C151.02 282.92 151.02 267.7200000000001 160.39 258.35L177.37 241.37L50.75 114.75C38.75 102.75 32 86.47 32 69.49V24L0 -32L32 -64L88 -32H133.49C150.46 -32 166.74 -25.26 178.74 -13.26L305.38 113.36L322.34 96.4C331.78 86.96 346.99 87.09 356.28 96.4L419.88 160.0000000000001C429.25 169.3700000000001 429.25 184.5700000000001 419.88 193.9400000000001L406.78 207.0400000000001L483.87 284.1300000000001C521.37 321.6 521.37 382.3800000000001 483.89 419.86zM144.8 20.68A15.891999999999998 15.891999999999998 0 0 0 133.49 16H80V69.49C80 73.76 81.66 77.78 84.69 80.8L211.32 207.42L271.44 147.3L144.8 20.68zM449.94 318.06L372.85 240.97L338.9100000000001 207.03L368.98 176.97L339.32 147.31L211.32 275.31L240.98 304.9600000000001L271.04 274.89L382.08 385.95C391.13 395.01 403.18 400 415.99 400C428.81 400 440.85 395.02 449.9 385.96L449.94 385.92C459.01 376.86 464 364.81 464 351.99C464 339.18 459 327.13 449.94 318.06z" />
+    <glyph glyph-name="eye-evil"
+      unicode="&#xF6DB;"
+      horiz-adv-x="640" d=" M610.12 230.53L515.59 255.62C530.5600000000001 278.98 556.87 320.14 556.9000000000001 320.18C565.9900000000001 334.49 565.0600000000001 352.3400000000001 554.46 365.62C543.46 379.43 524.8000000000001 384.64 507.84 378.7100000000001L406.2200000000001 342.65C402.25 344.35 398.1900000000001 345.9600000000001 394.0300000000001 347.4600000000001L357.2800000000001 424.62C350.4100000000001 439.05 336.12 448 320 448S289.59 439.05 282.7200000000001 424.61L245.9700000000001 347.4700000000001C241.8100000000001 345.9700000000001 237.7500000000001 344.36 233.7800000000001 342.66L132.16 378.7C115.22 384.7200000000001 96.54 379.4 85.54 365.62C74.94 352.3400000000001 74 334.5 83.12 320.12C83.12 320.12 109.43 278.98 124.4 255.62L29.87 230.53C12 225.8 0 210.31 0 192S12 158.2 29.84 153.47L124.34 128.3900000000001C109.43 105.0600000000001 83.12 63.84 83.09 63.8100000000001C74 49.5000000000001 74.93 31.6500000000001 85.53 18.3700000000001C96.53 4.5400000000001 115.25 -0.7099999999999 132.15 5.2800000000001L233.77 41.3400000000001C237.74 39.6400000000001 241.8 38.0300000000001 245.96 36.5300000000001L282.7100000000001 -40.5899999999999C289.59 -55.03 303.88 -64 320 -64S350.4100000000001 -55.03 357.28 -40.59L394.03 36.53C398.19 38.03 402.25 39.64 406.22 41.34L507.84 5.29C524.81 -0.76 543.5 4.56 554.4599999999999 18.37C565.05 31.65 565.9899999999999 49.49 556.8699999999999 63.85C556.8699999999999 63.85 530.56 105.05 515.6499999999999 128.38L610.1199999999999 153.46C628 158.2 640 173.69 640 192S628 225.8 610.12 230.53zM486.31 170.27L481.31 163.6A298.45 298.45 0 0 0 467.53 146.48L455.72 132.75L465.6 117.5799999999999C466.94 115.5 489.3200000000001 80.4999999999999 503.91 57.6299999999999L403.63 93.2099999999999L394.57 88.7999999999999C386.85 85.0199999999999 378.45 81.7099999999999 369.63 78.9699999999999L359.6 75.8499999999999L320 -7.2700000000001L280.41 75.8199999999999L270.38 78.9399999999999C261.57 81.67 253.16 84.99 245.44 88.7699999999999L236.38 93.18L136.1 57.6C150.69 80.48 173.04 115.46 174.38 117.49L184.41 132.69L172.47 146.46C167.35 152.37 162.78 158.1 158.69 163.58L153.69 170.25L71.81 192L153.69 213.75L158.69 220.42C162.81 225.92 167.38 231.65 172.5 237.58L184.41 251.38L174.41 266.6C172.91 268.91 150.66 303.65 136.13 326.38L236.38 290.82L245.44 295.23C253.16 299.01 261.56 302.32 270.38 305.06L280.41 308.18L320 391.28L359.5900000000001 308.17L369.62 305.05C378.43 302.3200000000001 386.8400000000001 299 394.56 295.2200000000001L403.62 290.81L503.87 326.37C489.34 303.62 467.12 268.93 465.68 266.7100000000001L455.4 251.44L467.49 237.56C472.61 231.64 477.18 225.9 481.3 220.4L486.3 213.73L568.19 192L486.3100000000001 170.27zM344.2100000000001 225.98C348.6200000000001 216.73 352.0000000000001 205.57 352.0000000000001 192C352.0000000000001 149.33 320.0000000000001 128 320.0000000000001 128S288.0000000000001 149.33 288.0000000000001 192C288.0000000000001 205.57 291.3700000000001 216.73 295.7900000000001 225.98C274.9700000000001 228.98 256.1100000000001 235.74 240.2000000000001 245.31C229.99 230.06 224 211.73 224 192C224 138.98 266.98 96 320 96S416 138.98 416 192C416 211.73 410.01 230.06 399.8 245.31C383.9000000000001 235.74 365.0300000000001 228.98 344.2100000000001 225.98z" />
+    <glyph glyph-name="eye-slash"
+      unicode="&#xF070;"
+      horiz-adv-x="576" d=" M272.702 88.861C192.219 97.872 136.49 175.747 155.772 255.903L272.702 88.861zM288 56C185.444 56 95.908 110.701 48 192C69.755 228.917 100.1 260.342 136.344 283.658L108.803 323.0010000000001C67.001 295.766 31.921 259.259 6.646 216.369A47.999 47.999 0 0 1 6.646 167.63C63.004 71.994 168.14 8 288 8A332.89 332.89 0 0 1 327.648 10.367L295.627 56.111A284.16 284.16 0 0 0 288 56zM569.354 167.631C536.1220000000001 111.237 485.933 65.889 425.8000000000001 38.139L473.9160000000001 -30.601C477.717 -36.03 476.3960000000001 -43.513 470.967 -47.313L450.23 -61.83C444.8010000000001 -65.631 437.3180000000001 -64.3099999999999 433.5180000000001 -58.881L102.084 414.601C98.283 420.03 99.604 427.513 105.033 431.313L125.77 445.83C131.199 449.631 138.682 448.31 142.482 442.881L198.008 363.556C226.612 371.657 256.808 376 288 376C407.86 376 512.996 312.006 569.354 216.369A48.00200000000001 48.00200000000001 0 0 0 569.354 167.631zM528 192C483.843 266.933 404.323 319.27 311.838 327.007C302.042 316.9220000000001 296 303.17 296 288C296 257.072 321.072 232 352 232S408 257.072 408 288L407.999 288.0420000000001C438.6310000000001 230.765 424.738 157.7820000000001 371.0710000000001 116.323L397.766 78.188C452.626 101.449 498.308 141.614 528 192z" />
+    <glyph glyph-name="eye"
+      unicode="&#xF06E;"
+      horiz-adv-x="576" d=" M569.354 216.369C512.97 312.051 407.81 376 288 376C168.14 376 63.004 312.006 6.646 216.369A47.999 47.999 0 0 1 6.646 167.63C63.031 71.949 168.19 8 288 8C407.86 8 512.996 71.994 569.354 167.631A47.997 47.997 0 0 1 569.354 216.369zM288 56C185.444 56 95.909 110.701 48 192C92.157 266.933 171.677 319.27 264.1620000000001 327.007C273.9580000000001 316.9220000000001 280 303.17 280 288C280 257.072 254.928 232 224 232S168 257.072 168 288L168.001 288.0420000000001C157.794 268.957 152 247.156 152 224C152 148.889 212.889 88 288 88S424 148.889 424 224C424 255.031 413.6 283.629 396.105 306.515C451.704 283.362 498.009 242.894 528 192C480.092 110.701 390.5560000000001 56 288 56z" />
+    <glyph glyph-name="fast-backward"
+      unicode="&#xF049;"
+      horiz-adv-x="512" d=" M12 0H36C42.6 0 48 5.4 48 12V170.3C49.1 169.1 50.2 167.9 51.5 166.9L235.5 7.4C256.1 -9.8 288 4.6 288 32.0000000000001V156L459.5 7.4C480.1 -9.8 512 4.6 512 32V352C512 379.4 480.1 393.8 459.5 376.6L288 226.9V351.9C288 379.3 256.1 393.7 235.5 376.5L51.5 216C50.2 214.9 49.1 213.8 48 212.6V372C48 378.6 42.6 384 36 384H12C5.4 384 0 378.6 0 372V12C0 5.4 5.4 0 12 0zM464 316.8V67L320.4 191.5L464 316.8zM240 316.8V67L96.4 191.5L240 316.8z" />
+    <glyph glyph-name="fast-forward"
+      unicode="&#xF050;"
+      horiz-adv-x="512" d=" M500 384H476C469.4 384 464 378.6 464 372V213.7C462.9 214.9 461.8 216.1 460.5 217.1L276.5 376.6C255.9 393.7 224 379.4 224 352V228L52.5 376.6C31.9 393.7 0 379.4 0 352V32C0 4.6 31.9 -9.8 52.5 7.4L224 157V32C224 4.6 255.9 -9.8 276.5 7.4L460.5 167.9C461.8 169 462.9 170.1 464 171.3V12C464 5.4 469.4 0 476 0H500C506.6 0 512 5.4 512 12V372C512 378.6 506.6 384 500 384zM48 67.2V316.9L191.6 192.5L48 67.2zM272 67.2V316.9L415.6 192.5L272 67.2z" />
+    <glyph glyph-name="fax"
+      unicode="&#xF1AC;"
+      horiz-adv-x="512" d=" M480 311.12V341.49C480 358.4600000000001 473.26 374.74 461.26 386.75L418.75 429.26A64.037 64.037 0 0 1 373.49 448H174.48C157.64 448 144 433.67 144 416V311.12C134.55 316.62 123.72 320 112 320H64C28.65 320 0 291.35 0 256V0C0 -35.35 28.65 -64 64 -64H112C127.22 -64 141.01 -58.46 152 -49.59C162.99 -58.46 176.78 -64 192 -64H448C483.35 -64 512 -35.35 512 0V256C512 279.63 499.05 300.04 480 311.12zM128 0C128 -8.82 120.82 -16 112 -16H64C55.18 -16 48 -8.82 48 0V256C48 264.82 55.18 272 64 272H112C120.82 272 128 264.82 128 256V0zM192 400H368V352C368 343.16 375.1600000000001 336 384 336H432V256H192V400zM464 0C464 -8.82 456.82 -16 448 -16H192C183.18 -16 176 -8.82 176 0V208H464V0zM352 112H384C392.84 112 400 119.16 400 128V160C400 168.84 392.84 176 384 176H352C343.1600000000001 176 336 168.84 336 160V128C336 119.16 343.1600000000001 112 352 112zM256 16H288C296.84 16 304 23.16 304 32V64C304 72.84 296.84 80 288 80H256C247.16 80 240 72.84 240 64V32C240 23.16 247.16 16 256 16zM256 112H288C296.84 112 304 119.16 304 128V160C304 168.84 296.84 176 288 176H256C247.16 176 240 168.84 240 160V128C240 119.16 247.16 112 256 112zM352 16H384C392.84 16 400 23.16 400 32V64C400 72.84 392.84 80 384 80H352C343.1600000000001 80 336 72.84 336 64V32C336 23.16 343.1600000000001 16 352 16z" />
+    <glyph glyph-name="feather-alt"
+      unicode="&#xF56B;"
+      horiz-adv-x="512" d=" M71.46 160.39C66.61 118.44 64.21 76.25 64.08 34.02L7.03 -23.03C-2.34 -32.4 -2.34 -47.6 7.03 -56.97C16.4 -66.3399999999999 31.6 -66.3399999999999 40.97 -56.97L98.02 0.08C140.25 0.2 182.44 2.61 224.39 7.46C473.8 32.86 508.44 396.28 512 448C460.28 444.44 96.87 409.8 71.46 160.39zM218.88 55.14C195.47 52.43 171.58 50.78 147.57 49.63L193.94 96H319.31C291.42 74.28 258.42 59.17 218.88 55.14zM352.81 128H225.94L289.94 192H396.06C383.95 168.89 369.52 147.24 352.81 128zM321.94 224L335.48 237.54C344.85 246.91 344.85 262.11 335.48 271.48C326.11 280.85 310.9100000000001 280.85 301.54 271.48L113.64 83.58C114.8 107.67 116.47 131.71 119.22 155.54C136.33 323.6 349.77 377.13 457.48 393.49C450.59 348.19 436.9500000000001 284.24 411.11 224H321.94z" />
+    <glyph glyph-name="feather"
+      unicode="&#xF52D;"
+      horiz-adv-x="512" d=" M467.1 403.1C438.24 431.96 401.59 448 361.59 448C314.89 448 263.61 426.15 214.81 377.3400000000001L129.06 291.58C54 216.53 56.69 95.08 72.69 42.63L7.03 -23.03C-2.34 -32.4 -2.34 -47.6 7.03 -56.97C16.4 -66.3399999999999 31.6 -66.3399999999999 40.97 -56.97L106.57 8.63C124.01 3.33 149 -0.52 177.45 -0.52C234.64 -0.52 305.49 14.96 355.58 65.05L441.34 150.8C531.9499999999999 241.42 529.66 340.55 467.1 403.1zM147.37 49.43L193.94 96H318.06C273.44 54.17 211.19 47.54 177.45 47.54C166.04 47.53 156.16 48.35 147.37 49.43zM350.58 128H225.94L289.94 192H413.75C411.52 189.6 409.74 187.17 407.36 184.79L350.58 128zM438.89 224H321.94L344.45 246.51C353.82 255.88 353.82 271.08 344.45 280.45C335.08 289.82 319.88 289.82 310.51 280.45L113.51 83.45C108.24 129.42 113.22 207.79 163.03 257.6C163.03 257.6 181.74 276.31 248.78 343.36C285.8 380.38 324.81 399.94 361.58 399.94C388.21 399.94 412.95 389.28 433.11 369.12C472.28 329.9600000000001 473.13 276.87 438.89 224z" />
+    <glyph glyph-name="female"
+      unicode="&#xF182;"
+      horiz-adv-x="320" d=" M300.621 116.486L252.582 255.53A63.90299999999999 63.90299999999999 0 0 1 235.196 282.173C250.62 299.774 259.984 322.813 259.984 348C259.984 403.14 215.124 448 159.984 448S59.984 403.14 59.984 348C59.984 322.813 69.348 299.774 84.773 282.1720000000001A63.905 63.905 0 0 1 67.385 255.525L19.455 116.839C5.21 74.03 36.902 32 79.999 32L79.985 0C79.985 -35.29 108.695 -64 143.985 -64H175.985C211.275 -64 239.985 -35.29 239.985 0L239.999 32C284.009 32.246 314.48 74.859 300.6210000000001 116.486zM159.985 400C188.704 400 211.985 376.719 211.985 348S188.704 296 159.985 296S107.985 319.281 107.985 348S131.266 400 159.985 400zM239.6140000000001 80H191.9850000000001V0C191.9850000000001 -8.837 184.8210000000001 -16 175.9850000000001 -16H143.9850000000001C135.1480000000001 -16 127.9850000000001 -8.837 127.9850000000001 0V80H79.985C69.449 80 61.192 90.217 64.9230000000001 101.412L112.806 240A16 16 0 0 0 127.985 250.94H135.895A100.128 100.128 0 0 1 184.075 250.94H191.985A16 16 0 0 0 207.164 240L255.164 101.06C258.492 91.074 251.425 80 239.614 80z" />
+    <glyph glyph-name="field-hockey"
+      unicode="&#xF44C;"
+      horiz-adv-x="640" d=" M619.5 351.7L558.8 291L513.5999999999999 336.2L604.8 427.4C612.4 435.1 607 448 596.3 448H562.4C559.1999999999999 448 556.1999999999999 446.7 553.9 444.5L214.7 105.3C185.3 75.8 139.1 120.1 169.4 150.5C200.6 181.7 200.6 232.4 169.4 263.6C138.2 294.8 87.6 294.9 56.3 263.6C20 227.4 0 179.2 0 127.9C0 21.3 86.3 -64 192 -64C278.5 -64 323.8 -11.8 345.3 9.7C363.5 -33.6 406.3 -64 456 -64C522.2 -64 576 -10.2 576 56C576 105.8 545.5 148.5 502.3 166.7L636.5 300.9C638.8 303.2 640 306.2 640 309.4V343.3C640 353.9 627.1 359.3 619.5 351.7zM192 -16C153.5 -16 117.3 -1.1 90.2 26C63 53.2 48 89.4 48 127.9C48 166.4 63 202.6 90.2 229.7C119.7 259.3 165.8 214.8 135.4 184.4C104.3 153.2 104.3 102.5 135.6 71.2C166.7 40.4 217.3 39.9 248.6 71.4L479.7 302.5L524.9 257.3L442.4 174.8C387.2 168.5 343.7 125 337.4 69.8C293.3 25.5 262.2 -16 192 -16zM528 56C528 16.3 495.7 -16 456 -16S384 16.3 384 56S416.3 128 456 128S528 95.7 528 56z" />
+    <glyph glyph-name="fighter-jet"
+      unicode="&#xF0FB;"
+      horiz-adv-x="640.002" d=" M519.953 266.603L412.018 278.939L370.219 296H359.07L288.499 384.214C310.7290000000001 385.443 328.002 391.912 328.002 400C328.002 409 306.6190000000001 416 280.813 416H128.002V384H144V320.469L119.476 352H45.185L8 314.815V252.695L0 251.724V132.277L8 131.306V69.186L45.185 32H119.476L144 63.531V0H128.002V-32H280.813C306.619 -32 328.002 -25 328.002 -16C328.002 -7.912 310.729 -1.442 288.499 -0.214L359.07 88H370.219L412.019 105.061L519.954 117.397C580.922 130.945 640.297 139.431 640 192C640.298 244.759 580.466 253.154 519.953 266.603zM512 164.8L400 152L360.8 136H336L240 16H192V152H152L96 80H65.067L56 89.067V144H64V160H104V168L48 174.8V209.2L104 216V224H64V240.0000000000001H56V294.933L65.067 304H96L152 232H192V368H240L336 248H360.8L400 232L512 219.2C593.6 201.067 592 196.604 592 192S593.6 182.933 512 164.8z" />
+    <glyph glyph-name="file-alt"
+      unicode="&#xF15C;"
+      horiz-adv-x="384" d=" M288 200V172C288 165.4 282.6 160 276 160H108C101.4 160 96 165.4 96 172V200C96 206.6 101.4 212 108 212H276C282.6 212 288 206.6 288 200zM276 128H108C101.4 128 96 122.6 96 116V88C96 81.4 101.4 76 108 76H276C282.6 76 288 81.4 288 88V116C288 122.6 282.6 128 276 128zM384 316.1V-16C384 -42.5 362.5 -64 336 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H252.1C264.8 448 277 442.9 286 433.9L369.9 350C378.9 341.1 384 328.8 384 316.1zM256 396.1V320H332.1L256 396.1zM336 -16V272H232C218.7 272 208 282.7 208 296V400H48V-16H336z" />
+    <glyph glyph-name="file-archive"
+      unicode="&#xF1C6;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM256 396.118L332.118 320H256V396.118zM336 -16H48V400H127.714V384H159.714V400H208V296C208 282.745 218.745 272 232 272H336V-16zM192.27 352H160.27V384H192.27V352zM160.27 352V320H128.27V352H160.27zM160.27 288V256H128.27V288H160.27zM192.27 288H160.27V320H192.27V288zM194.179 182.322A12 12 0 0 1 182.406 192H160.27V224H128.27V192L108.58 94.894C101.989 62.389 126.834 32 160 32C193.052 32 217.871 62.192 211.476 94.62L194.179 182.322zM160.27 57.927C142.352 57.927 127.826 70.032 127.826 84.963C127.826 99.895 142.351 111.999 160.27 111.999S192.714 99.894 192.714 84.963C192.714 70.032 178.188 57.927 160.27 57.927zM192.27 224H160.27V256H192.27V224z" />
+    <glyph glyph-name="file-audio"
+      unicode="&#xF1C7;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM332.118 320H256V396.118L332.118 320zM48 -16V400H208V296C208 282.745 218.745 272 232 272H336V-16H48zM192 60.024C192 49.333 179.074 43.979 171.515 51.539L136 87.514H108C101.373 87.514 96 92.887 96 99.514V155.514C96 162.141 101.373 167.514 108 167.514H136L171.515 204.461C179.075 212.021 192 206.667 192 195.976V60.024zM233.201 107.154C242.252 116.451 242.261 131.287 233.202 140.593C211.053 163.345 245.437 196.839 267.597 174.074C294.795 146.134 294.809 101.63 267.598 73.673C245.805 51.287 210.651 83.988 233.201 107.154z" />
+    <glyph glyph-name="file-certificate"
+      unicode="&#xF5F3;"
+      horiz-adv-x="512" d=" M497.83 350.02L413.94 433.9C404.94 442.9 392.74 448 380.05 448H175.99C149.5 447.9 128 426.4 128 399.91V320H175.99V399.91H335.9600000000001V295.93C335.9600000000001 282.63 346.6600000000001 271.94 359.9600000000001 271.94H464V-16.01H224V-64H463.93C490.43 -64 512 -42.5 512 -16.01V316.03C512 328.7200000000001 506.83 341.02 497.83 350.02zM383.95 319.93V396.01L460.04 319.93H383.95zM247.42 109.72C254.82 117.25 257.71 128.22 255 138.5100000000001C249.57 159.16 249.56 156.2500000000001 255 176.9300000000001C257.71 187.2200000000001 254.82 198.1900000000001 247.42 205.7200000000001C232.56 220.8400000000001 233.99 218.3300000000001 228.55 238.9900000000001C225.84 249.2800000000001 217.95 257.3100000000001 207.84 260.0600000000001C187.56 265.5900000000001 190 264.1600000000001 175.15 279.2700000000001C167.75 286.8000000000001 156.97 289.7400000000001 146.86 286.9800000000001C126.54 281.4400000000001 129.4 281.4500000000001 109.11 286.9800000000001C99.01 289.7400000000001 88.23 286.7900000000001 80.83 279.2700000000001C65.92 264.0900000000001 68.33 265.5700000000001 48.14 260.0600000000001C38.03 257.3000000000001 30.14 249.2700000000001 27.43 238.9900000000001C21.97 218.2500000000001 23.43 220.8600000000001 8.56 205.7200000000001C1.16 198.1900000000001 -1.73 187.22 0.98 176.9300000000001C6.43 156.2200000000001 6.4 159.1400000000001 0.98 138.5100000000001C-1.73 128.22 1.16 117.2500000000001 8.56 109.72C23.41 94.61 21.99 97.11 27.43 76.4500000000001C30.14 66.16 38.03 58.1300000000001 48.14 55.3800000000001C62.45 51.4800000000001 59.66 52.41 63.98 50.3800000000001V-64L127.98 -32L191.98 -64V50.38C196.29 52.4 193.5 51.48 207.82 55.38C217.93 58.14 225.82 66.17 228.53 76.45C234.01 97.2 232.55 94.59 247.42 109.72zM128 96C92.66 96 64 124.65 64 160S92.66 224 128 224S192 195.35 192 160S163.34 96 128 96z" />
+    <glyph glyph-name="file-chart-line"
+      unicode="&#xF659;"
+      horiz-adv-x="384" d=" M131.2 128H108.8C102.4 128 96 121.6 96 115.2V44.8C96 38.4 102.4 31.9999999999999 108.8 31.9999999999999H131.2C137.6 31.9999999999999 144 38.3999999999999 144 44.8V115.1999999999999C144 121.5999999999999 137.6 128 131.2 128zM203.2 192H180.8C174.4 192 168 185.6 168 179.2V44.8C168 38.4 174.4 31.9999999999999 180.8 31.9999999999999H203.2C209.6 31.9999999999999 216 38.3999999999999 216 44.8V179.2C216 185.6 209.6 192 203.2 192zM252.8 32H275.2C281.6 32 288 38.4 288 44.8V147.2C288 153.6 281.6 160 275.2 160H252.8C246.4 160 240 153.6 240 147.2V44.8C240 38.4 246.4 31.9999999999999 252.8 31.9999999999999zM369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01z" />
+    <glyph glyph-name="file-chart-pie"
+      unicode="&#xF65A;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM160 190.39C123.48 182.98 96 150.71 96 112C96 67.82 131.82 32 176 32C214.7 32 246.97 59.49 254.39 96H160V190.39zM192 222.39V128H286.39A80.321 80.321 0 0 1 288 144C288 188.18 252.18 224 208 224C202.52 224 197.17 223.44 192 222.39z" />
+    <glyph glyph-name="file-check"
+      unicode="&#xF316;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM332.118 320H256V396.118L332.118 320zM48 -16V400H208V296C208 282.745 218.745 272 232 272H336V-16H48zM309.151 176.661L166.842 35.492C162.137 30.825 154.539 30.855 149.871 35.56L74.78 111.26C70.113 115.965 70.143 123.563 74.848 128.231L97.567 150.767C102.272 155.434 109.87 155.404 114.537 150.698L158.641 106.237L269.713 216.418C274.418 221.085 282.016 221.055 286.6840000000001 216.3499999999999L309.2200000000001 193.632C313.887 188.9259999999999 313.8560000000001 181.329 309.151 176.661z" />
+    <glyph glyph-name="file-code"
+      unicode="&#xF1C9;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM332.118 320H256V396.118L332.118 320zM48 -16V400H208V296C208 282.745 218.745 272 232 272H336V-16H48zM149.677 99.115L116.854 128L149.676 156.885A8.793 8.793 0 0 1 150.281 169.509L132.878 188.073C129.494 191.686 123.914 191.735 120.44 188.4740000000001L62.78 134.42C59.077 130.946 59.076 125.053 62.781 121.5800000000001L120.44 67.525A8.738 8.738 0 0 1 126.452 65.1440000000001A8.746 8.746 0 0 1 132.879 67.9260000000001L150.282 86.489A8.795 8.795 0 0 1 149.677 99.115zM233.961 226.965L209.56 234.049A8.796 8.796 0 0 1 198.655 228.051L144.04 39.939C142.687 35.279 145.378 30.387 150.038 29.0340000000001L174.441 21.95C179.121 20.595 183.998 23.304 185.346 27.948L239.958 216.06C241.312 220.72 238.621 225.612 233.961 226.9650000000001zM321.219 134.42L263.561 188.475C260.035 191.7820000000001 254.462 191.6400000000001 251.122 188.074L233.719 169.511A8.795 8.795 0 0 1 234.324 156.886L267.146 128L234.324 99.115A8.793 8.793 0 0 1 233.719 86.491L251.122 67.927A8.797 8.797 0 0 1 263.5610000000001 67.526H263.5600000000001L321.2200000000001 121.581C324.923 125.054 324.923 130.947 321.2190000000001 134.42z" />
+    <glyph glyph-name="file-contract"
+      unicode="&#xF56C;"
+      horiz-adv-x="384" d=" M196.66 84.67L182.78 126.29C179.5 136.1 170.34 142.7000000000001 160 142.7000000000001S140.5 136.1100000000001 137.22 126.29L119 71.64C117.5 67.06 113.22 64 108.41 64H96C87.16 64 80 56.84 80 48S87.16 32 96 32H108.41C127.03 32 143.5 43.88 149.38 61.53L160 93.42L176.81 42.94A15.994 15.994 0 0 1 190.87 32.05C191.25 32.02 191.62 32 191.99 32C198.02 32 203.58 35.41 206.3 40.86L213.96 56.19C216.74 61.78 221.9 62.38 223.99 62.38S231.24 61.79 234.18 55.85C241.56 41.15 256.37 32.0100000000001 272.8 32.0100000000001H288C296.84 32.0100000000001 304 39.1700000000001 304 48.0100000000001S296.84 64.0100000000001 288 64.0100000000001H272.81C268.5300000000001 64.0100000000001 264.69 66.39 262.65 70.5100000000001C250.72 94.3600000000001 216.41 100.84 196.66 84.6700000000001zM369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM88 336H168C172.42 336 176 339.58 176 344V360C176 364.42 172.42 368 168 368H88C83.58 368 80 364.42 80 360V344C80 339.58 83.58 336 88 336zM88 272H168C172.42 272 176 275.5800000000001 176 280V296C176 300.42 172.42 304 168 304H88C83.58 304 80 300.42 80 296V280C80 275.5800000000001 83.58 272 88 272z" />
+    <glyph glyph-name="file-csv"
+      unicode="&#xF6DD;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM224 184V163.2C224 127.72 236.88 94.31 260.28 69.11C263.3 65.86 267.55 64 272 64S280.7 65.86 283.7200000000001 69.11C307.1300000000001 94.31 320 127.72 320 163.2000000000001V184C320 188.42 316.42 192 312 192H296C291.58 192 288 188.42 288 184V163.2C288 142.93 282.3 123.03 272 106.32C261.7 123.02 256 142.93 256 163.2V184C256 188.42 252.42 192 248 192H232C227.58 192 224 188.42 224 184zM120 192H112C85.49 192 64 170.51 64 144V112C64 85.49 85.49 64 112 64H120C124.42 64 128 67.58 128 72V88C128 92.42 124.42 96 120 96H112C103.16 96 96 103.16 96 112V144C96 152.84 103.16 160 112 160H120C124.42 160 128 163.58 128 168V184C128 188.42 124.42 192 120 192zM179.45 149.53C178.07 150.72 177.33 152.08 177.33 153.37C177.33 156.49 181.78 159.99 187.74 159.99H200C204.42 159.99 208 163.5699999999999 208 167.99V183.99C208 188.41 204.42 191.99 200 191.99H187.73C164.34 191.99 145.32 174.66 145.32 153.37C145.32 142.7099999999999 150.18 132.4499999999999 158.65 125.23L180.54 106.46C181.92 105.27 182.66 103.91 182.66 102.62C182.66 99.5 178.21 96 172.25 96H160C155.58 96 152 92.42 152 88V72C152 67.58 155.58 64 160 64H172.27C195.66 64 214.68 81.33 214.68 102.62C214.68 113.28 209.82 123.54 201.35 130.76L179.45 149.53z" />
+    <glyph glyph-name="file-download"
+      unicode="&#xF56D;"
+      horiz-adv-x="384" d=" M216 211.93C216 218.56 210.63 223.93 204 223.93H180C173.37 223.93 168 218.56 168 211.93V127.92H119.12C108.41 127.92 103.07 114.95 110.67 107.4L182.98 35.6300000000001C187.97 30.6800000000001 196.02 30.6800000000001 201.01 35.6300000000001L273.3200000000001 107.4C280.9200000000001 114.9400000000001 275.5800000000001 127.92 264.8700000000001 127.92H216V211.93zM369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01z" />
+    <glyph glyph-name="file-edit"
+      unicode="&#xF31C;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM211.1 213.9L257.9 167.1C259.9 165.1 259.9 161.9 257.9 159.9L143.4 45.4L95.2 40C88.8 39.3 83.3 44.7 84 51.2L89.4 99.4L203.9 213.9C205.9 215.9 209.1 215.9 211.1 213.9zM294.1 196.1L274.6 176.6C272.6 174.6 269.4000000000001 174.6 267.4000000000001 176.6L220.6 223.4C218.6 225.4000000000001 218.6 228.6 220.6 230.6L240.1 250.1C248.0000000000001 258 260.8 258 268.7000000000001 250.1L294.1 224.7C302 216.8 302 204 294.1 196.1z" />
+    <glyph glyph-name="file-excel"
+      unicode="&#xF1C3;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM260 224H231.2C226.8 224 222.8 221.6 220.7 217.7C202.7 184.6 198.5 175.3 192.1 160C178.2 189.1 185.2 177.3 163.5 217.7C161.4 221.6 157.3 224 152.9 224H124C114.7 224 109 214 113.6 206L159.9 128L113.6 50C108.9 42 114.7 32 124 32H152.9C157.3 32 161.3 34.4 163.4 38.3C185.1 78.3 186.4 83.3 192 96C206.9 65.8 197.9 80.1 220.6 38.3C222.7 34.4 226.8 32 231.2 32H260C269.3 32 275 42 270.4 50L224 128C224.7 129.1 254.3 178.5 270.3 206C275 214 269.2 224 260 224z" />
+    <glyph glyph-name="file-exclamation"
+      unicode="&#xF31A;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM156.6 235.3L163.1 131.3C163.5 125 168.7 120 175.1 120H208.9C215.2 120 220.5 124.9 220.9 131.3L227.4 235.3C227.8 242.2 222.3 248 215.4 248H168.6C161.7 248 156.2 242.2 156.6 235.3zM232 64C232 41.9 214.1 24 192 24S152 41.9 152 64S169.9 104 192 104S232 86.1 232 64z" />
+    <glyph glyph-name="file-export"
+      unicode="&#xF56E;"
+      horiz-adv-x="576" d=" M572.29 168.94L500.52 241.25C492.97 248.85 480 243.51 480 232.8V183.92H384V316.02C384 328.7200000000001 378.83 341.02 369.83 350.01L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V87.93H336V-16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V183.93H172C165.37 183.93 160 178.56 160 171.93V147.93C160 141.3 165.37 135.93 172 135.93H480V87.05C480 76.34 492.97 71 500.52 78.6L572.29 150.91C577.24 155.9 577.24 163.9500000000001 572.29 168.9400000000001zM255.95 319.93V396.01L332.04 319.93H255.95z" />
+    <glyph glyph-name="file-image"
+      unicode="&#xF1C5;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM80 32H304V160L280.5 183.5C275.8 188.2 268.2 188.2 263.5 183.5L176 96L136.5 135.5C131.8 140.2 124.2 140.2 119.5 135.5L80 96V32zM128 272C101.5 272 80 250.5 80 224S101.5 176 128 176S176 197.5 176 224S154.5 272 128 272z" />
+    <glyph glyph-name="file-import"
+      unicode="&#xF56F;"
+      horiz-adv-x="512" d=" M497.83 350.02L413.94 433.9C404.94 442.9 392.74 448 380.05 448H175.99C149.5 447.9 128 426.4 128 399.91V183.93H12C5.37 183.93 0 178.56 0 171.93V147.93C0 141.3 5.37 135.93 12 135.93H288V87.05C288 76.34 300.9700000000001 71 308.52 78.6L380.29 150.91C385.24 155.9 385.24 163.9500000000001 380.29 168.9400000000001L308.52 241.2500000000001C300.97 248.8500000000001 288 243.5100000000001 288 232.8000000000001V183.9200000000001H175.99V399.91H335.9600000000001V295.93C335.9600000000001 282.63 346.6600000000001 271.94 359.9600000000001 271.94H464V-16.01H175.99V87.93H128V-16.01C128 -42.5 149.5 -64 175.99 -64H463.93C490.43 -64 512 -42.5 512 -16.01V316.03C512 328.7200000000001 506.83 341.02 497.83 350.02zM383.95 319.93V396.01L460.04 319.93H383.95z" />
+    <glyph glyph-name="file-invoice-dollar"
+      unicode="&#xF571;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM208 232C208 236.42 204.42 240 200 240H184C179.58 240 176 236.42 176 232V207.88C152.38 207.25 133.33 187.33 133.33 162.81C133.33 142.84 146.31 125 164.91 119.42L209.91 105.92C215.07 104.37 218.68 99.14 218.68 93.19C218.68 85.92 213.38 80 206.88 80H178.77C174.21 80 169.81 81.29 165.95 83.72C162.71 85.75 158.59 85.6300000000001 155.82 82.99L144.07 71.78C140.54 68.41 140.74 62.5700000000001 144.64 59.64C153.74 52.8100000000001 164.72 48.8700000000001 176.01 48.29V24C176.01 19.58 179.59 16 184.01 16H200.01C204.43 16 208.01 19.58 208.01 24V48.12C231.63 48.75 250.68 68.66 250.68 93.19C250.68 113.16 237.7 131 219.1 136.58L174.1 150.08C168.94 151.63 165.33 156.86 165.33 162.81C165.33 170.08 170.63 176 177.13 176H205.24C209.8 176 214.2 174.71 218.06 172.28C221.3 170.25 225.42 170.37 228.19 173.01L239.94 184.22C243.47 187.59 243.27 193.43 239.37 196.36C230.27 203.19 219.29 207.13 208 207.71V232zM88 336H168C172.42 336 176 339.58 176 344V360C176 364.42 172.42 368 168 368H88C83.58 368 80 364.42 80 360V344C80 339.58 83.58 336 88 336zM176 280V296C176 300.42 172.42 304 168 304H88C83.58 304 80 300.42 80 296V280C80 275.5800000000001 83.58 272 88 272H168C172.42 272 176 275.5800000000001 176 280z" />
+    <glyph glyph-name="file-invoice"
+      unicode="&#xF570;"
+      horiz-adv-x="384" d=" M296 48H216C211.58 48 208 44.42 208 40V24C208 19.58 211.58 16 216 16H296C300.42 16 304 19.58 304 24V40C304 44.42 300.42 48 296 48zM80 208V112C80 103.16 87.16 96 96 96H288C296.84 96 304 103.16 304 112V208C304 216.84 296.84 224 288 224H96C87.16 224 80 216.84 80 208zM112 192H272V128H112V192zM369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM88 336H168C172.42 336 176 339.58 176 344V360C176 364.42 172.42 368 168 368H88C83.58 368 80 364.42 80 360V344C80 339.58 83.58 336 88 336zM88 272H168C172.42 272 176 275.5800000000001 176 280V296C176 300.42 172.42 304 168 304H88C83.58 304 80 300.42 80 296V280C80 275.5800000000001 83.58 272 88 272z" />
+    <glyph glyph-name="file-medical-alt"
+      unicode="&#xF478;"
+      horiz-adv-x="448" d=" M433.9 350L349.9 434C340.9 443 328.8 448 316.1 448H112.1C85.6 447.9 64 426.4 64 399.9V176H16C7.2 176 0 168.8 0 160V144C0 135.2 7.2 128 16 128H129.2L161.7 62.9C167.6 51.1 184.4 51.1 190.3 62.9L240 162.3L257.2 128H344C357.2 128 368 138.8 368 152S357.2 176 344 176H286.8L254.3 241.1C248.4 252.9 231.6 252.9 225.7 241.1L176 141.7L158.9 176H112V399.9H272V295.9C272 282.6 282.7 271.9 296 271.9H400V-16H112.1V80H64V-16C64 -42.5 85.5 -64 112 -64H400C426.5 -64 448 -42.5 448 -16V316C448 328.8 442.9 341 433.9 350zM320 319.9V396L396.1 319.9H320z" />
+    <glyph glyph-name="file-medical"
+      unicode="&#xF477;"
+      horiz-adv-x="384" d=" M224 216C224 220.4 220.4 224 216 224H168C163.6 224 160 220.4 160 216V160H104C99.6 160 96 156.4 96 152V104C96 99.6 99.6 96 104 96H160V40C160 35.6 163.6 32 168 32H216C220.4 32 224 35.6 224 40V96H280C284.4 96 288 99.6 288 104V152C288 156.4 284.4 160 280 160H224V216zM369.8 350L285.9 433.9C276.9 442.9 264.7 448 252 448H48C21.5 447.9 0 426.4 0 399.9V-16C0 -42.5 21.5 -64 48 -64H335.9C362.4 -64 384 -42.5 384 -16V316C384 328.7 378.8 341 369.8 350zM255.9 396L332 319.9H255.9V396zM336 -16H48V399.9H208V295.9C208 282.6 218.7 271.9 232 271.9H336V-16z" />
+    <glyph glyph-name="file-minus"
+      unicode="&#xF318;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM92 120C85.4 120 80 125.4 80 132V156C80 162.6 85.4 168 92 168H292C298.6 168 304 162.6 304 156V132C304 125.4 298.6 120 292 120H92z" />
+    <glyph glyph-name="file-pdf"
+      unicode="&#xF1C1;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM298.2 127.7C286 139.7 251.2 136.4 233.8 134.2C216.6 144.7 205.1 159.2 197 180.5C200.9 196.6 207.1 221.1 202.4 236.5C198.2 262.7 164.6 260.1 159.8 242.4C155.4 226.3 159.4 203.9 166.8 175.3C156.8 151.4 141.9 119.3 131.4 100.9C111.4 90.6 84.4 74.7 80.4 54.7C77.1 38.9 106.4 -0.5 156.5 85.9C178.9 93.3 203.3 102.4 224.9 106C243.8 95.8 265.9 89 280.7 89C306.2 89 308.7 117.2 298.2 127.7zM100.1 49.9C105.2 63.6 124.6 79.4 130.5 84.9C111.5 54.6 100.1 49.2 100.1 49.9zM181.7 240.5C189.1 240.5 188.4 208.4 183.5 199.7C179.1 213.6 179.2 240.5 181.7 240.5zM157.3 103.9C167 120.8 175.3 140.9 182 158.6C190.3 143.5 200.9 131.4 212.1 123.1C191.3 118.8 173.2 109.9999999999999 157.3 103.9zM288.9 108.9S283.9 102.9 251.6 116.7C286.7 119.3 292.5 111.3 288.9 108.9z" />
+    <glyph glyph-name="file-plus"
+      unicode="&#xF319;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM304 156V132C304 125.4 298.6 120 292 120H216V44C216 37.4 210.6 32 204 32H180C173.4 32 168 37.4 168 44V120H92C85.4 120 80 125.4 80 132V156C80 162.6 85.4 168 92 168H168V244C168 250.6 173.4 256 180 256H204C210.6 256 216 250.6 216 244V168H292C298.6 168 304 162.6 304 156z" />
+    <glyph glyph-name="file-powerpoint"
+      unicode="&#xF1C4;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM120 44V212C120 218.6 125.4 224 132 224H201.2C237.9 224 264 197 264 157.7C264 83.4 195.3 91.2 168.5 91.2V44C168.5 37.4 163.1 32 156.5 32H132C125.4 32 120 37.4 120 44zM168.5 131.4H191.5C199.4 131.4 205.4 133.8 209.6 138.6C218.1 148.4 218 167.1 209.7 176.4C205.6 181 199.8 183.4 192.3 183.4H168.4V131.4z" />
+    <glyph glyph-name="file-prescription"
+      unicode="&#xF572;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM224.97 117.66L192.67 149.96C211.17 159.1 224 177.97 224 200C224 230.93 198.93 256 168 256H104C99.58 256 96 252.42 96 248V104C96 99.58 99.58 96 104 96H120C124.42 96 128 99.58 128 104V144H153.37L202.34 95.03C201.19 94.65 199.94 94.57 199.03 93.66L162.34 56.97C159.22 53.85 159.22 48.78 162.34 45.66L173.65 34.35C176.77 31.23 181.84 31.23 184.96 34.35L221.65 71.04C222.57 71.96 222.64 73.2 223.02 74.35L263.02 34.35C266.14 31.23 271.21 31.23 274.33 34.35L285.64 45.66C288.76 48.78 288.76 53.85 285.64 56.97L245.64 96.97C246.79 97.35 248.04 97.43 248.95 98.34L285.64 135.03C288.76 138.15 288.76 143.22 285.64 146.34L274.33 157.65C271.21 160.77 266.14 160.77 263.02 157.65L226.33 120.96C225.43 120.06 225.35 118.81 224.97 117.66zM168 176H128V224H168C181.23 224 192 213.23 192 200S181.23 176 168 176z" />
+    <glyph glyph-name="file-signature"
+      unicode="&#xF573;"
+      horiz-adv-x="576" d=" M568.54 280.67L536.67 312.54C526.7299999999999 322.48 510.6 322.48 500.66 312.54L473.41 285.29L541.29 217.41L568.54 244.66C578.49 254.6 578.49 270.73 568.54 280.67zM329.06 142A63.974 63.974 0 0 1 312.8 114.89L297.57 64H272.81C268.5300000000001 64 264.69 66.38 262.65 70.5C250.68 94.36 216.37 100.84 196.65 84.67L182.77 126.29C179.49 136.1 170.33 142.7000000000001 159.99 142.7000000000001S140.49 136.1100000000001 137.21 126.29L119 71.64C117.5 67.06 113.22 64 108.41 64H96C87.16 64 80 56.84 80 48S87.16 32 96 32H108.41C127.03 32 143.5 43.88 149.38 61.53L160 93.42L176.81 42.94A15.994 15.994 0 0 1 190.87 32.05C191.25 32.02 191.62 32 191.99 32C198.02 32 203.58 35.41 206.3 40.86L213.96 56.19C216.74 61.78 221.9 62.38 223.99 62.38S231.24 61.79 234.18 55.85C241.56 41.15 256.37 32.0100000000001 272.8 32.0100000000001H336V-16H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V193.94L384 241.52V316.02C384 328.72 378.83 341.02 369.83 350.01L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V59.2L518.66 194.78L450.78 262.66L329.06 142zM255.95 396.01L332.04 319.93H255.95V396.01z" />
+    <glyph glyph-name="file-spreadsheet"
+      unicode="&#xF65B;"
+      horiz-adv-x="384" d=" M80 208V32C80 23.16 87.16 16 96 16H288C296.84 16 304 23.16 304 32V208C304 216.84 296.84 224 288 224H96C87.16 224 80 216.84 80 208zM208 176H272V128H208V176zM208 96H272V48H208V96zM112 176H176V128H112V176zM112 96H176V48H112V96zM369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01z" />
+    <glyph glyph-name="file-times"
+      unicode="&#xF317;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM279.7 73.3L262.7 56.3C258 51.6 250.4 51.6 245.7 56.3L192 110.1L138.3 56.4C133.6 51.7 126 51.7 121.3 56.4L104.3 73.4C99.6 78.1 99.6 85.7000000000001 104.3 90.4L158 144.1L104.3 197.8C99.6 202.5 99.6 210.1 104.3 214.8L121.3 231.8C126 236.5 133.6 236.5 138.3 231.8L192 178L245.7 231.7C250.4 236.4 258 236.4 262.7 231.7L279.7 214.7C284.4 210 284.4 202.4 279.7 197.7L225.9 144L279.6 90.3C284.4000000000001 85.6 284.4000000000001 78 279.7000000000001 73.3z" />
+    <glyph glyph-name="file-upload"
+      unicode="&#xF574;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM182.98 220.21L110.67 148.44C103.07 140.9 108.41 127.92 119.12 127.92H168V43.92C168 37.29 173.37 31.92 180 31.92H204C210.63 31.92 216 37.29 216 43.92V127.92H264.88C275.59 127.92 280.93 140.8900000000001 273.33 148.44L201.02 220.21C196.03 225.16 187.97 225.16 182.98 220.21z" />
+    <glyph glyph-name="file-user"
+      unicode="&#xF65C;"
+      horiz-adv-x="384" d=" M369.83 350.02L285.94 433.9C276.94 442.9 264.74 448 252.05 448H47.99C21.5 447.9 0 426.4 0 399.91V-16.01C0 -42.5 21.5 -64 47.99 -64H335.93C362.43 -64 384 -42.5 384 -16.01V316.03C384 328.7200000000001 378.83 341.02 369.83 350.02zM255.95 396.01L332.04 319.93H255.95V396.01zM336 -16.01H47.99V399.91H207.96V295.93C207.96 282.63 218.66 271.94 231.96 271.94H336V-16.01zM128 176C128 140.65 156.65 112 192 112S256 140.65 256 176S227.35 240 192 240S128 211.35 128 176zM231.85 96C219.56 90.88 206.12 88 192 88S164.44 90.88 152.15 96H147.2C110.09 96 80 70.21 80 38.4V32C80 23.16 87.16 16 96 16H288C296.84 16 304 23.16 304 32V38.4C304 70.21 273.9100000000001 96 236.8 96H231.85z" />
+    <glyph glyph-name="file-video"
+      unicode="&#xF1C8;"
+      horiz-adv-x="384" d=" M369.941 350.059L286.059 433.9410000000001A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V316.118A48 48 0 0 1 369.941 350.059zM332.118 320H256V396.118L332.118 320zM48 -16V400H208V296C208 282.745 218.745 272 232 272H336V-16H48zM276.687 195.303L224 142.626V180C224 191.046 215.046 200 204 200H100C88.954 200 80 191.046 80 180V76C80 64.954 88.954 56 100 56H204C215.046 56 224 64.954 224 76V113.374L276.687 60.7000000000001C286.704 50.682 304 57.72 304 72.014V183.989C304 198.3 286.691 205.308 276.687 195.303z" />
+    <glyph glyph-name="file-word"
+      unicode="&#xF1C2;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48zM268.1 192C262.4000000000001 192 257.5 188 256.4000000000001 182.5C235.8000000000001 84.8 236.0000000000001 87.1 235.4000000000001 79C235.2000000000001 80.2 235.0000000000001 81.6 234.7000000000001 83.3C233.9000000000001 88.4 235.0000000000001 83.1 211.1000000000001 182.8C209.8000000000001 188.2 205.0000000000001 192 199.4000000000001 192H186.1000000000001C180.6000000000001 192 175.8000000000001 188.2 174.4000000000001 182.9C150.0000000000001 83.9 150.4000000000001 86.7 149.6000000000001 79.2C149.5000000000001 80.3 149.4000000000001 81.7 149.1000000000001 83.4C148.4000000000001 88.6 135.0000000000001 156.7 130.0000000000001 182.4C128.9000000000001 188 124.0000000000001 192.1 118.2000000000001 192.1H101.4000000000001C93.6000000000001 192.1 87.9000000000001 184.8 89.7000000000001 177.3C97.7000000000001 144.6999999999999 116.4000000000001 67.8 122.9000000000001 41.3C124.2000000000001 35.9 129.0000000000001 32.1999999999999 134.6000000000001 32.1999999999999H159.8000000000001C165.3000000000001 32.1999999999999 170.1000000000001 35.8999999999999 171.4 41.3L189.3000000000001 112.6999999999999C190.8000000000001 118.8999999999999 191.8000000000001 124.6999999999999 192.3000000000001 130L195.2000000000001 112.6999999999999C195.3000000000001 112.3 207.8000000000001 62.1999999999999 213.1000000000001 41.3C214.4000000000001 35.9999999999999 219.2000000000001 32.1999999999999 224.7000000000001 32.1999999999999H249.4000000000001C254.9000000000001 32.1999999999999 259.7000000000001 35.8999999999999 261.0000000000001 41.3C281.8000000000001 123.1999999999999 291.2000000000001 160.3 295.5000000000001 177.3C297.4000000000001 184.9 291.7000000000001 192.2 283.9000000000001 192.2H268.1z" />
+    <glyph glyph-name="file"
+      unicode="&#xF15B;"
+      horiz-adv-x="384" d=" M369.9 350.1L286 434C277 443 264.8 448.1 252.1 448.1H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V316.1C384 328.8 378.9 341.1 369.9 350.1zM332.1 320H256V396.1L332.1 320zM48 -16V400H208V296C208 282.7 218.7 272 232 272H336V-16H48z" />
+    <glyph glyph-name="fill-drip"
+      unicode="&#xF576;"
+      horiz-adv-x="576" d=" M512 128S448 35.35 448 0C448 -35.35 476.66 -64 512 -64S576 -35.35 576 0S512 128 512 128zM502.63 230.94L294.94 438.63A31.94 31.94 0 0 1 272.31 448C264.12 448 255.93 444.88 249.69 438.63L162.5 351.44L70.62 443.31C64.37 449.56 54.24 449.56 47.99 443.31L36.69 432C30.44 425.75 30.44 415.62 36.69 409.37L128.57 317.49L28.11 217.05C-9.38 179.57 -9.38 118.79 28.11 81.3L145.3 -35.89C164.04 -54.63 188.61 -64.01 213.17 -64.01C237.74 -64.01 262.3 -54.64 281.04 -35.89L502.61 185.68C515.12 198.19 515.12 218.44 502.63 230.94zM247.11 -1.95C238.05 -11.01 226 -16 213.18 -16S188.31 -11.01 179.25 -1.95L65.3 112H361.05L247.11 -1.95zM409.06 160H49.34C51.34 168.67 55.61 176.67 62.05 183.11L162.5 283.56L232.4 213.66C241.77 204.29 256.96 204.29 266.3400000000001 213.66C275.7100000000001 223.03 275.7100000000001 238.23 266.3400000000001 247.6L196.44 317.5L272.3100000000001 393.37L457.3600000000001 208.31L409.0600000000001 160z" />
+    <glyph glyph-name="fill"
+      unicode="&#xF575;"
+      horiz-adv-x="512" d=" M502.63 230.94L294.94 438.63A31.94 31.94 0 0 1 272.31 448C264.12 448 255.93 444.88 249.69 438.63L162.5 351.44L70.62 443.31C64.37 449.56 54.24 449.56 47.99 443.31L36.69 432C30.44 425.75 30.44 415.62 36.69 409.37L128.57 317.49L28.11 217.05C-9.38 179.57 -9.38 118.79 28.11 81.3L145.3 -35.89C164.04 -54.63 188.61 -64.01 213.17 -64.01C237.74 -64.01 262.3 -54.64 281.04 -35.89L502.61 185.68C515.12 198.19 515.12 218.44 502.63 230.94zM247.11 -1.95C238.05 -11.01 226 -16 213.18 -16S188.31 -11.01 179.25 -1.95L65.3 112H361.05L247.11 -1.95zM409.06 160H49.34C51.34 168.67 55.61 176.67 62.05 183.11L162.5 283.56L232.4 213.66C241.77 204.29 256.96 204.29 266.3400000000001 213.66C275.7100000000001 223.03 275.7100000000001 238.23 266.3400000000001 247.6L196.44 317.5L272.3100000000001 393.37L457.3700000000001 208.31L409.06 160z" />
+    <glyph glyph-name="film-alt"
+      unicode="&#xF3A0;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM376 60C376 53.4 370.6 48 364 48H148C141.4 48 136 53.4 136 60V324C136 330.6 141.4 336 148 336H364C370.6 336 376 330.6 376 324V60zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="film"
+      unicode="&#xF008;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM384 60C384 53.4 378.6 48 372 48H140C133.4 48 128 53.4 128 60V156C128 162.6 133.4 168 140 168H372C378.6 168 384 162.6 384 156V60zM384 228C384 221.4 378.6 216 372 216H140C133.4 216 128 221.4 128 228V324C128 330.6 133.4 336 140 336H372C378.6 336 384 330.6 384 324V228zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="filter"
+      unicode="&#xF0B0;"
+      horiz-adv-x="512" d=" M463.952 448H48.057C5.419 448 -16.094 396.269 14.116 366.059L176 204.118V32C176 16.892 183.113 2.665 195.2 -8L259.2 -55.066C290.473 -76.921 336 -56.604 336 -16.6660000000001V204.118L497.893 366.059C528.042 396.208 506.675 448 463.952 448zM288 224V-16L224 32V224L48 400H464L288 224z" />
+    <glyph glyph-name="fingerprint"
+      unicode="&#xF577;"
+      horiz-adv-x="512" d=" M256.12 202.04C242.87 202.04 232.12 191.3 232.12 178.04C233.26 105.79 223.98 36.14 204.42 -33.51C201.69 -43.2300000000001 206.57 -64 227.54 -64C238.02 -64 247.6500000000001 -57.08 250.63 -46.48C264.1600000000001 1.43 281.67 78.93 280.11 178.04C280.12 191.29 269.38 202.04 256.12 202.04zM255.26 283.77C194 283.8400000000001 151.25 236.7 152.1 182.68C152.85 134.74 148.35 86.77 138.73 40.13C136.04 27.15 144.4 14.44 157.37 11.77C170.42 9.1 183.04 17.43 185.73 30.41C196.07 80.5 200.9 131.99 200.1 183.43C199.69 209.38 220.0200000000001 235.92 254.55 235.77C285.86 235.3 311.7 210.43 312.17 180.3C312.94 132.25 309.36 83.97 301.56 36.7499999999999C299.39 23.6899999999999 308.25 11.3299999999999 321.32 9.17C341.29 5.84 348.13 24.27 348.9 28.9399999999999C357.18 78.9699999999999 360.96 130.1499999999999 360.17 181.05C359.29 236.85 312.23 282.93 255.26 283.77zM144.57 303.55C134.27 311.89 119.2 310.35 110.81 300.07C85.19 268.57 71.42 228.79 72.06 188.07C72.65 150.49 69.59 112.8 62.95 76.02C60.61 62.97 69.26 50.49 82.31 48.13C102.42 44.63 109.38 62.94 110.2 67.49C117.39 107.33 120.7 148.15 120.06 188.82C119.59 218.7 129.26 246.7 148.06 269.79C156.41 280.07 154.85 295.18 144.57 303.55zM254.04 365.88C238.63 366.29 223.17 364.44 208.26 360.91C195.37 357.85 187.39 344.93 190.43 332.02C193.49 319.13 206.43 311.19 219.32 314.19C230.37 316.8 241.79 317.9600000000001 253.32 317.88C328.75 316.75 391.05 256.38 392.2 183.3C392.79 145.42 390.92 107.1899999999999 386.62 69.67C385.12 56.4999999999999 394.57 44.59 407.73 43.09C424.4500000000001 41.14 433.24 54.97 434.31 64.2A929.06 929.06 0 0 1 440.2 184.05C438.64 282.8 355.13 364.38 254.04 365.88zM506.11 244.43C503.25 257.35 490.6 265.63 477.5 262.7C464.56 259.84 456.38 247.04 459.24 234.09C463.95 212.68 464.15 196.68 463.94 172.49C463.83 159.22 474.49 148.4 487.74 148.29H487.94C501.11 148.29 511.83 158.9 511.94 172.09C512.12 194.27 512.34 216.2 506.11 244.43zM465.99 335.15C417.29 404.54 337.6 446.71 252.81 447.98C183.02 448.82 118.47 423.09 70.46 375.06C24.09 328.63 -0.9 266.9600000000001 0.14 201.35L0.02 179.88C-0.37 166.63 10.05 155.57 23.3 155.19C23.53 155.17 23.78 155.17 24.02 155.17C36.94 155.17 47.61 165.47 47.99 178.47L48.15 202.11C47.32 254.61 67.31 303.9700000000001 104.43 341.11C143.19 379.9100000000001 195.77 400.7800000000001 252.11 399.9700000000001C321.56 398.94 386.8400000000001 364.4100000000001 426.73 307.5800000000001C434.3400000000001 296.7200000000001 449.29 294.13 460.15 301.7200000000001C470.99 309.3400000000001 473.61 324.31 465.99 335.15z" />
+    <glyph glyph-name="fire-alt"
+      unicode="&#xF7E4;"
+      horiz-adv-x="448" d=" M323.56 396.8C302.76 377.5 283.98 357.21 267.3400000000001 336.83C240.08 374.38 206.28 412.4700000000001 168 448C69.74 356.83 0 238.04 0 166.4C0 39.15 100.29 -64 224 -64S448 39.15 448 166.4C448 219.67 396.02 329.54 323.56 396.8zM224 -16C126.95 -16 48 65.83 48 166.4C48 211.77 92.3 299.61 168.16 380.49C190.5 357.13 210.98 332.77 228.5 308.63L265.12 258.19L304.53 306.48C310.36 313.63 316.38 320.63 322.54 327.45C368.89 270.04 400 197.58 400 166.4C400 65.83 321.05 -16 224 -16zM313.4700000000001 204.84L262.17 146.32S181.75 249.02 175.69 256C133.27 205.14 112 175.38 112 141.59C112 73.77 163.37 32 226.5 32C251.76 32 275.12 39.87 294.08 53.13C337.16 83.27 347.26 141.71 323.34 187.37C320.39 192.99 317.1 198.85 313.47 204.84z" />
+    <glyph glyph-name="fire-extinguisher"
+      unicode="&#xF134;"
+      horiz-adv-x="448" d=" M420.054 427.342L276.054 403.342C264.919 401.486 256 393.094 256 376H197.668C208.353 411.892 181.446 448 144 448C104.565 448 77.632 408.324 91.772 371.7970000000001C39.733 358.746 16.391 317.584 1.723 280.913C-3.2 268.606 2.786 254.639 15.093 249.716C27.41 244.79 41.372 250.791 46.289 263.086C75.058 335.01 106.964 328 168 328V300.924C126.457 290.062 96 251.689 96 206.795V-40C96 -53.255 106.745 -64 120 -64H264C277.255 -64 288 -53.255 288 -40V208C288 252.731 257.404 290.318 216 300.975V328H256C256 311.129 264.727 302.546 276.054 300.658L420.054 276.658C434.681 274.2200000000001 448 285.499 448 300.331V403.669C448 418.498 434.6840000000001 429.781 420.054 427.342zM144 376C135.178 376 128 383.178 128 392S135.178 408 144 408S160 400.822 160 392S152.822 376 144 376zM240 208V-16H144V206.795C144 233.731 165.366 255.804 191.632 255.999L192 256C218.467 256 240 234.467 240 208zM408 319.218L296 337.885V366.115L408 384.7820000000001V319.218z" />
+    <glyph glyph-name="fire-smoke"
+      unicode="&#xF74B;"
+      horiz-adv-x="576" d=" M456 176C428.7 176 402.9 166.8 382 150.2C358.1 176.5 324.2 192 288 192S217.9 176.5 194 150.2C173.1 166.8 147.4 176 120 176C53.8 176 0 122.2 0 56S53.8 -64 120 -64H456C522.2 -64 576 -10.2 576 56S522.2 176 456 176zM456 -16H120C80.3 -16 48 16.3 48 56S80.3 128 120 128C142.7 128 163.7 117.3 177.6 98.7L200.1 68.5L218 101.6C232 127.8 258.9 144 288 144S344 127.8 358.1 101.7L376 68.6L398.5 98.8C412.3 117.4 433.3 128.1 456.1 128.1C495.8 128.1 528.1 95.8 528.1 56.1S495.7 -16 456 -16zM320 248S249.8 319.7 244.6 325.9C208.4 281 190.2 254.7 190.2 224.8C190.2 213.4 192.2 203.2 195.2 193.5C222.1 213 254.5 224 288 224C320.4 224 351.7 213.5 378.1 195.3C384 218.1 381.8 243.3 370.7000000000001 265.2000000000001C368.2000000000001 270.2000000000001 365.4000000000001 275.3 362.3000000000001 280.6L320 248zM120 208C135.7 208 150.9 205.4 165.4 200.8C162.2 211.7 160 223.1 160 235C160 264.8 191.5 324.7 244.2 381.1C258.7 366 272.1 350.4 283.7 335L319.8 287.1L358.6 332.9C360.7000000000001 335.4 362.8 337.8 365 340.2C396.9 299.3 416 252.4 416 235C416 223.1 413.8 211.7 410.6 200.8C425.1 205.4 440.3 208 456 208C457.9 208 459.7 207.5 461.6 207.4C463.1 216.4 464 225.6 464 235C464 275.3 423.2 358.4 366.2 409.2C349.9 394.6 335.1 379.3 322 363.8C300.6 392.3 274.1 421.1 244 448C166.8 379.1 112 289.2 112 235C112 225.6 113 216.4 114.4 207.4C116.3 207.5 118.1 208 120 208z" />
+    <glyph glyph-name="fire"
+      unicode="&#xF06D;"
+      horiz-adv-x="384" d=" M216 423.99C216 447.79 184.84 457.1 171.85 437.03C76.55 289.75 200 209.27 200 160C200 137.94 182.06 120 160 120S120 137.94 120 160V265.87C120 285.26 98.14 296.63 82.27 285.55C30.75 249.62 0 190.72 0 128C0 22.13 86.13 -64 192 -64S384 22.13 384 128C384 298.29 216 320.85 216 423.99zM192 -16C112.6 -16 48 48.6 48 128C48 156.66 56.56 192.71 72 216V160C72 111.48 111.48 72 160 72S248 111.48 248 160C248 224.27 160 280 184 368C224 280 336 246.23 336 128C336 48.6 271.4 -16 192 -16z" />
+    <glyph glyph-name="fireplace"
+      unicode="&#xF79A;"
+      horiz-adv-x="640" d=" M342.3 136.4C328.3 155.2 310.9000000000001 174.2 291.2 192C240.7 146.4 204.8 87 204.8 51.2C204.8 -12.4 256.4 -64 320 -64S435.2 -12.4 435.2 51.2C435.2 77.8 408.5 132.8 371.2 166.4C360.5 156.8 350.8 146.6 342.3 136.4zM357.8 -0.5C347.2 -8.2 334.1 -12.8 320 -12.8C284.7 -12.8 256 11.6 256 51.2C256 70.9 267.9 88.3 291.6 118C295 113.9 339.9000000000001 53.9 339.9000000000001 53.9L368.6 88.1C370.6 84.6 372.5 81.2 374.1 77.9C387.5 51.3 381.9000000000001 17.1 357.8 -0.5zM624 448H16C7.2 448 0 440.8 0 432V320C0 311.2 7.2 304 16 304H32V-40C32 -53.3 42.7 -64 56 -64H136C149.3 -64 160 -53.3 160 -40V56.6C160 140.3 220.9 215.3 304.2 223.3C309.5 223.8 314.8 224.1 320 224.1C408.4 224.1 480 152.5 480 64.1V-39.9C480 -53.2 490.7 -63.9 504 -63.9H584C597.3 -63.9 608 -53.2 608 -39.9V304H624C632.8 304 640 311.2 640 320V432C640 440.8 632.8 448 624 448zM560 -16H528V64C528 178.7 434.7 272 320 272C313.3 272 306.5 271.7 299.7 271C194.5 261 112 167 112 57.1V-16H80V304H560V-16zM592 352H48V400H592V352z" />
+    <glyph glyph-name="first-aid"
+      unicode="&#xF479;"
+      horiz-adv-x="576" d=" M200 160H256V104C256 99.6 259.6 96 264 96H312C316.4 96 320 99.6 320 104V160H376C380.4 160 384 163.6 384 168V216C384 220.4 380.4 224 376 224H320V280C320 284.4 316.4 288 312 288H264C259.6 288 256 284.4 256 280V224H200C195.6 224 192 220.4 192 216V168C192 163.6 195.6 160 200 160zM528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM96 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H96V16zM432 16H144V368H432V16zM528 22C528 18.7 525.3 16 522 16H480V368H522C525.3 368 528 365.3 528 362V22z" />
+    <glyph glyph-name="fish"
+      unicode="&#xF578;"
+      horiz-adv-x="640" d=" M360.18 384C256.8 384 176.68 320.86 139.8 285.33L66.92 341.63C53.01 352.38 33.67 353.29 18.7 343.86C4.39 334.83 -2.61 318.4700000000001 0.89 302.19L24.64 192L0.89 81.81C-2.61 65.53 4.39 49.17 18.7 40.14C33.67 30.72 53.01 31.64 66.92 42.36L139.8 98.67C176.68 63.14 256.8 0 360.18 0C514.09 0 640 144.95 640 192S514.09 384 360.18 384zM360.18 48C278.99 48 203.39 99.09 159.74 146.91L144.83 163.22L52.11 91.59L73.77 192L52.11 292.41L144.83 220.78L159.74 237.09C203.4 284.91 278.99 336 360.18 336C485.4 336 588.15 216.12 592.03 192.8C588.15 167.87 485.4 48 360.18 48zM448 224C430.33 224 416 209.67 416 192S430.33 160 448 160S480 174.33 480 192S465.67 224 448 224z" />
+    <glyph glyph-name="fist-raised"
+      unicode="&#xF6DE;"
+      horiz-adv-x="448" d=" M400 267.67V360C400 390.93 374.93 416 344 416H320C315.6 416 311.36 415.37 307.25 414.4C298.59 434.14 278.9 448 256 448H232C209.1 448 189.41 434.14 180.75 414.4C176.64 415.37 172.4 416 168 416H144C121.1 416 101.41 402.14 92.75 382.4C88.64 383.37 84.4 384 80 384H56C25.07 384 0 358.93 0 328V117.02C0 76.73 16 38.08 44.49 9.59L64 -9.93V-48C64 -56.84 71.16 -64 80 -64H96C104.84 -64 112 -56.84 112 -48V9.94L78.47 43.48C59.09 62.84 48 89.66 48 117.02V176.81C50.63 176.43 53.26 176 56 176H80C91.91 176 102.91 179.8 112 186.17C121.09 179.8 132.09 176 144 176H168C179.78 176 190.69 179.7 199.72 185.94C204.44 174.85 211.16 164.69 219.88 155.96C223.73 152.1 227.92 148.73 232.27 145.63C213.99 130.02 198.8 109.45 182.77 85.43C176.83 76.52 179.24 64.49 188.15 58.56L195.84 53.44C204.75 47.5 216.78 49.91 222.71 58.81C251.99 102.72 269.45 123.39 306.01 127.3C314.01 128.16 319.99 135.1 319.99 143.15V160C319.99 168.84 312.83 176 303.99 176H287.31C261.15 176 239.95 197.2 239.95 223.36V224.1C239.95 232.88 247.07 240.0000000000001 255.85 240.0000000000001H336C371.35 240.0000000000001 400 211.35 400 176V128C400 102.54 389.89 78.12 371.88 60.12L320 8.24V-48C320 -56.84 327.1600000000001 -64 336 -64H352C360.84 -64 368 -56.84 368 -48V-11.65L405.83 26.18A144 144 0 0 1 448 128V176C448 213.94 428.94 247.4 400 267.67zM80 224H56C51.59 224 48 227.59 48 232V328C48 332.41 51.59 336 56 336H80C84.41 336 88 332.41 88 328V232C88 227.59 84.41 224 80 224zM176 232C176 227.59 172.41 224 168 224H144C139.59 224 136 227.59 136 232V360C136 364.41 139.59 368 144 368H168C172.41 368 176 364.41 176 360V232zM224 279.13V392C224 396.41 227.59 400 232 400H256C260.4100000000001 400 264 396.41 264 392V288H255.97C244.27 288 233.44 284.62 224 279.13zM312 288V360C312 364.41 315.59 368 320 368H344C348.4100000000001 368 352 364.41 352 360V286.38C346.73 287.14 341.48 288 336 288H312z" />
+    <glyph glyph-name="flag-alt"
+      unicode="&#xF74C;"
+      horiz-adv-x="512" d=" M472.5 448C465.5 448 458.2 446.5 451.3 443.4C400.8 420.7 363.5 413.1 332.2000000000001 413.1C266.1 413.1 227.7 447.6 151.4 447.6C123 447.6 89.2 442.7 46.9 429.6C44.3 440.1 35.3 448 24 448C10.7 448 0 437.3 0 424V-52C0 -58.6 5.4 -64 12 -64H36C42.6 -64 48 -58.6 48 -52V49.9C85.3 61.7 117.6 66.4 146.5 66.4C227.7 66.4 284.3 32 365.6 32C400.9000000000001 32 440.7000000000001 38.5 489.3 57C503.3 62.4 512.1 74.9 512.1 88.2V414.6C512 435 493.4 448 472.5 448zM464 98.9C428.7 86.2 396.4 80 365.5 80C290 80 237 114.4 146.4 114.4C114.5 114.4 81.9 109.7 47.9 100.2V379.5C87.7 393 121.7 399.6 151.4 399.6C217.7 399.6 256.6 365.1 332.2000000000001 365.1C372.5000000000001 365.1 414.5000000000001 375.1 464.0000000000001 396.6V98.9z" />
+    <glyph glyph-name="flag-checkered"
+      unicode="&#xF11E;"
+      horiz-adv-x="512" d=" M160 335.29V264.9100000000001C132.04 261.0600000000001 103.47 251.48 88 242.04V311.37C105.18 321.85 131.3 332.51 160 335.29zM304 306.73C278.079 311.04 255.153 319.639 232 326.38V259.76C255.842 253.49 278.477 244.599 304 239.24V306.73zM160 264.9100000000001V195.85C190.531 198.866 211.364 197.105 232 192.76V259.76C203.48 267.252 183.283 268.1020000000001 160 264.9100000000001zM232 125.2700000000001C257.944 120.956 280.857 112.3560000000001 304 105.6200000000001V172.2400000000001C280.343 178.4520000000001 257.493 187.4140000000001 232 192.7600000000001V125.2700000000001zM88 111.24C109.71 118.19 135.24 123.13 160 125.76V195.85C135.72 193.47 111.99 188.24 88 180.57V111.24zM448 327.92C426.77 319.79 401.32 312.1 376 307.73V237.14C401.04 241.18 424.57 249.62 448 258.5900000000001V327.92zM448 120.63V189.96C432.53 180.52 403.96 170.94 376 167.09V96.71C404.7 99.49 430.82 110.15 448 120.63zM304 239.24V172.24C332.52 164.748 352.717 163.898 376 167.09V237.1400000000001C352.168 233.3100000000001 329.476 233.8770000000001 304 239.2400000000001zM445.096 396.181C476.736 409.831 512 386.522 512 352.063V112.145C512 95.949 503.846 80.839 490.287 71.981C463.711 54.617 420.218 32 361.739 32C293.131 32 248.958 64 199.826 64C143.259 64 109.869 52.72 72 35.443V-48C72 -56.837 64.837 -64 56 -64H40C31.163 -64 24 -56.837 24 -48V358.438C9.657 366.738 0 382.236 0 400C0 427.569 23.242 449.71 51.201 447.896C74.167 446.406 93.066 428.425 95.681 405.56A48.038 48.038 0 0 0 93.539 384.833C115.958 393.5180000000001 142.96 400 174.261 400C242.869 400 287.0420000000001 368 336.174 368C371.641 368 409.193 380.6910000000001 445.096 396.181zM464 352C432.493 337.366 379.445 320 336.174 320C276.263 320 234.206 352 174.261 352C132.824 352 93.784 335.4120000000001 72 320V88C103.447 102.597 156.465 112 199.826 112C259.737 112 301.794 80 361.7390000000001 80C403.1760000000001 80 442.2170000000001 96.588 464 112V352z" />
+    <glyph glyph-name="flag-usa"
+      unicode="&#xF74D;"
+      horiz-adv-x="512" d=" M472.5 448C465.5 448 458.2 446.5 451.3 443.4C400.8 420.7 363.5 413.1 332.2000000000001 413.1C266.1 413.1 227.7 447.6 151.4 447.6C123 447.6 89.2 442.7 46.9 429.6C44.3 440.1 35.3 448 24 448C10.7 448 0 437.3 0 424V-52C0 -58.6 5.4 -64 12 -64H36C42.6 -64 48 -58.6 48 -52V49.9C85.3 61.7 117.6 66.4 146.5 66.4C227.7 66.4 284.3 32 365.6 32C400.9000000000001 32 440.7000000000001 38.5 489.3 57C503.3 62.4 512.1 74.9 512.1 88.2V414.6C512 435 493.4 448 472.5 448zM176 408C184.8 408 192 400.8 192 392S184.8 376 176 376S160 383.2 160 392S167.2 408 176 408zM176 352C184.8 352 192 344.8 192 336S184.8 320 176 320S160 327.2 160 336S167.2 352 176 352zM104 408C112.8 408 120 400.8 120 392S112.8 376 104 376S88 383.2 88 392S95.2 408 104 408zM104 352C112.8 352 120 344.8 120 336S112.8 320 104 320S88 327.2 88 336S95.2 352 104 352zM464 98.9C385 70.5 338.2 78.2 267.6 95.8C194.6 114 135.4 124.6 48 100.1999999999999V155.5C140.6 188 194 174.8999999999999 250.2 160.6999999999999C304.4 147 363.8 130.6 464 162V98.9zM464 212.5C371.5 180.1 318 193.1 261.9 207.3C204.4 221.8 144.5 236.3 48 206V267.6C140.6 300.1 194 287 250.2 272.8C304.4 259 363.8 242.6 464 274V212.5zM464 324.5C367.5 290.7 313.1 306.4 256 320.8V377C278.2 370.6 302.9 365.1 332.2 365.1C372.5 365.1 414.5 375.1 464 396.6V324.5z" />
+    <glyph glyph-name="flag"
+      unicode="&#xF024;"
+      horiz-adv-x="512" d=" M336.174 368C287.042 368 242.869 400 174.261 400C142.96 400 115.958 393.5180000000001 93.54 384.832A48.04 48.04 0 0 1 95.682 405.559C93.067 428.425 74.167 446.406 51.201 447.896C23.242 449.71 0 427.569 0 400C0 382.236 9.657 366.738 24 358.438V-48C24 -56.837 31.163 -64 40 -64H56C64.837 -64 72 -56.837 72 -48V35.443C109.869 52.72 143.259 64 199.826 64C248.958 64 293.131 32 361.7390000000001 32C420.218 32 463.711 54.617 490.287 71.981C503.846 80.839 512 95.949 512 112.145V352.063C512 386.522 476.736 409.831 445.096 396.18C409.193 380.6910000000001 371.641 368 336.174 368zM464 112C442.217 96.588 403.176 80 361.7390000000001 80C301.7940000000001 80 259.737 112 199.826 112C156.465 112 103.447 102.597 72 88V320C93.784 335.4120000000001 132.824 352 174.261 352C234.206 352 276.2630000000001 320 336.1740000000001 320C379.4450000000001 320 432.4940000000001 337.366 464 352V112z" />
+    <glyph glyph-name="flame"
+      unicode="&#xF6DF;"
+      horiz-adv-x="384" d=" M192 448C79.7 346.67 0 227.08 0 147.45C0 22.95 78.95 -64 192 -64S384 22.95 384 147.45C384 227.4 303.78 347.14 192 448zM192 -16C105.87 -16 48 49.69 48 147.45C48 193.72 93.31 284.07 191.96 381.92C278.21 296.03 336 203.18 336 147.45C336 49.69 278.13 -16 192 -16zM237.07 208.32C217.18 225.32 198.4 241.38 198.4 266.54C198.4 269.94 195.58 271.23 194.36 271.62C192.04 272.36 188.59 272.19 186.42 269.24C131.52 194.58 216 200 216 146C216 122.8 197.2 104 174 104C150.81 104 132 122.8 132 146V176A6 6 0 0 1 121.76 180.24C115.38 174.05 96 153.52 96 120.42C96 71.67 139.06 32 192 32S288 71.67 288 120.42C288 164.79 262.11 186.92 237.07 208.32z" />
+    <glyph glyph-name="flask-poison"
+      unicode="&#xF6E0;"
+      horiz-adv-x="416" d=" M304 278.95V400H320C328.84 400 336 407.16 336 416V432C336 440.84 328.84 448 320 448H96C87.16 448 80 440.84 80 432V416C80 407.16 87.16 400 96 400H112V279.88C45.61 245.15 0 176.12 0 96C0 42.21 20.43 -6.79 53.94 -43.7C65.89 -56.87 83.16 -64 100.94 -64H314.99C333.05 -64 350.48 -56.56 362.57 -43.15C394.81 -7.37 414.82 39.64 415.96 91.33C417.71 171.28 371.19 242.8200000000001 304 278.9500000000001zM326.9100000000001 -11.01C324.1 -14.13 319.6400000000001 -16 314.99 -16H100.94C96.36 -16 92.08 -14.29 89.49 -11.44C62.73 18.03 48 56.19 48 96C48 155.36 81.05 209.52 134.25 237.35L160 250.83V400H256V250.26L281.27 236.67C335.23 207.65 369.26 151.02 367.97 92.38C367.12 54.15 352.54 17.43 326.91 -11.01zM208 192C158.91 192 119.11 160.16 119.11 120.89C119.11 97.7 133.2 77.3 154.66 64.32V49.78C154.66 39.96 162.62 32 172.44 32H243.55C253.37 32 261.3300000000001 39.96 261.3300000000001 49.78V64.32C282.8000000000001 77.3 296.8800000000001 97.7 296.8800000000001 120.89C296.89 160.16 257.1 192 208 192zM172.45 103.11C162.63 103.11 154.67 111.07 154.67 120.89S162.63 138.67 172.45 138.67S190.23 130.71 190.23 120.89C190.22 111.07 182.26 103.11 172.45 103.11zM243.56 103.11C233.74 103.11 225.78 111.07 225.78 120.89S233.74 138.67 243.56 138.67S261.3400000000001 130.71 261.3400000000001 120.89S253.3700000000001 103.11 243.5600000000001 103.11z" />
+    <glyph glyph-name="flask-potion"
+      unicode="&#xF6E1;"
+      horiz-adv-x="416" d=" M304 278.95V400H320C328.84 400 336 407.16 336 416V432C336 440.84 328.84 448 320 448H96C87.16 448 80 440.84 80 432V416C80 407.16 87.16 400 96 400H112V279.88C45.61 245.15 0 176.12 0 96C0 42.21 20.43 -6.79 53.94 -43.7C65.89 -56.87 83.16 -64 100.94 -64H314.99C333.05 -64 350.48 -56.56 362.57 -43.15C394.81 -7.37 414.82 39.64 415.96 91.33C417.71 171.28 371.19 242.8200000000001 304 278.9500000000001zM160 250.83V400H256V250.26C272.81 241.22 350.76 209.67 365.67 120H333.9100000000001C307.5 120 281.0300000000001 126.08 257.4400000000001 137.58C196.4400000000001 167.33 123.5600000000001 167.33 62.5600000000001 137.58L52.6300000000001 132.74C72.41 215.52 142.66 241.75 160 250.83zM326.91 -11.01C324.1 -14.13 319.64 -16 314.99 -16H100.94C96.36 -16 92.08 -14.29 89.49 -11.44C66.85 13.5 53.45 44.79 49.68 77.91L83.6 94.42C131.41 117.7599999999999 188.57 117.7599999999999 236.44 94.42C266.53 79.7499999999999 300.25 71.9999999999999 333.91 71.9999999999999H365.68C361 41.28 347.92 12.3 326.91 -11.01z" />
+    <glyph glyph-name="flask"
+      unicode="&#xF0C3;"
+      horiz-adv-x="448" d=" M437.2 44.5L320 233V400H340C346.6 400 352 405.4 352 412V436C352 442.6 346.6 448 340 448H108C101.4 448 96 442.6 96 436V412C96 405.4 101.4 400 108 400H128V233L10.8 44.5C-18.5 -2.6 15.3 -64 70.9 -64H377.1C432.8 -64 466.5 -2.5 437.2000000000001 44.5zM377.1 -16H70.9C52.8 -16 42.2 4.1 51.6 19.2L168.8 207.7C173.5 215.3 176 224.1 176 233V400H272V233C272 224 274.5 215.3 279.2 207.7L396.4 19.2C405.8 4.1 395.3 -16 377.1 -16z" />
+    <glyph glyph-name="flushed"
+      unicode="&#xF579;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM344 304C299.8 304 264 268.2 264 224S299.8 144 344 144S424 179.8 424 224S388.2 304 344 304zM344 176C317.5 176 296 197.5 296 224S317.5 272 344 272S392 250.5 392 224S370.5 176 344 176zM344 248C330.7 248 320 237.3 320 224S330.7 200 344 200S368 210.7 368 224S357.3 248 344 248zM232 224C232 268.2 196.2 304 152 304S72 268.2 72 224S107.8 144 152 144S232 179.8 232 224zM152 176C125.5 176 104 197.5 104 224S125.5 272 152 272S200 250.5 200 224S178.5 176 152 176zM152 248C138.7 248 128 237.3 128 224S138.7 200 152 200S176 210.7 176 224S165.3 248 152 248zM312 104H184C170.8 104 160 93.2 160 80S170.8 56 184 56H312C325.2 56 336 66.8 336 80S325.2 104 312 104z" />
+    <glyph glyph-name="fog"
+      unicode="&#xF74E;"
+      horiz-adv-x="640" d=" M208 -16H80C71.2 -16 64 -23.2 64 -32V-48C64 -56.8 71.2 -64 80 -64H208C216.8 -64 224 -56.8 224 -48V-32C224 -23.2 216.8 -16 208 -16zM624 -16H288C279.2 -16 272 -23.2 272 -32V-48C272 -56.8 279.2 -64 288 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16zM576 40V56C576 64.8 568.8 72 560 72H16C7.2 72 0 64.8 0 56V40C0 31.2 7.2 24 16 24H560C568.8 24 576 31.2 576 40zM172 128H468C527.6 128 576 176.5 576 236C576 293.3 531.1 340.3 474.7 343.8C461.2 386.2 422 416 376 416C362.5 416 349.2 413.4 336.8 408.3C314.3 433.5 282.4 448 248 448C184 448 131.6 397.7 128.2 334.6C89.6 317.6 64 279.5 64 236C64 176.5 112.4 128 172 128zM158.4 294.3L179.2 299.1L176.4 324C176.2 325.3 176 326.6 176 328C176 367.7000000000001 208.3 400 248 400C273.2 400 296.2 386.9000000000001 309.4 364.9000000000001L322.7 342.8000000000001L343.8 357.7000000000001C353.4 364.4 364.5 368 376 368C404.6 368 428.4 346.3 431.3 317.6L433.5 296H468C501.1 296 528 269.1 528 236S501.1 176 468 176H172C138.9 176 112 202.9 112 236C112 264 131.1 288 158.4 294.3z" />
+    <glyph glyph-name="folder-minus"
+      unicode="&#xF65D;"
+      horiz-adv-x="512" d=" M464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM464 48H48V336H188.12L242.75 281.37C248.75 275.37 256.89 272 265.38 272H464V48zM176 168V152C176 143.16 183.16 136 192 136H320C328.84 136 336 143.16 336 152V168C336 176.84 328.84 184 320 184H192C183.16 184 176 176.84 176 168z" />
+    <glyph glyph-name="folder-open"
+      unicode="&#xF07C;"
+      horiz-adv-x="576" d=" M527.943 224H480V272C480 298.51 458.51 320 432 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H448A48.001 48.001 0 0 1 488.704 22.56L568.646 150.56C588.5939999999999 182.477 565.608 224 527.943 224zM54 336H188.118L252.118 272H426A6 6 0 0 0 432 266V224H152A48 48 0 0 1 110.902 200.798L48 96.551V330.007A5.993 5.993 0 0 0 54 336zM448 48H72L149.234 176H528L448 48z" />
+    <glyph glyph-name="folder-plus"
+      unicode="&#xF65E;"
+      horiz-adv-x="512" d=" M464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM464 48H48V336H188.12L242.75 281.37C248.75 275.37 256.89 272 265.38 272H464V48zM248 240C239.16 240 232 232.84 232 224V184H192C183.16 184 176 176.84 176 168V152C176 143.16 183.16 136 192 136H232V96C232 87.16 239.16 80 248 80H264C272.84 80 280 87.16 280 96V136H320C328.84 136 336 143.16 336 152V168C336 176.84 328.84 184 320 184H280V224C280 232.84 272.84 240 264 240H248z" />
+    <glyph glyph-name="folder-times"
+      unicode="&#xF65F;"
+      horiz-adv-x="512" d=" M464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM464 48H48V336H188.12L242.75 281.37C248.75 275.37 256.89 272 265.38 272H464V48zM227.71 222.23A15.964 15.964 0 0 1 216.4 226.92C212.31 226.92 208.21 225.36 205.09 222.23L193.78 210.92C187.53 204.67 187.53 194.54 193.78 188.29L222.06 160L193.78 131.72C187.53 125.47 187.53 115.34 193.78 109.09L205.09 97.78C208.21 94.66 212.31 93.09 216.4 93.09S224.59 94.65 227.71 97.78L256 126.06L284.29 97.78C287.4100000000001 94.66 291.5100000000001 93.09 295.6 93.09S303.79 94.65 306.9100000000001 97.78L318.2200000000001 109.09C324.4700000000001 115.34 324.4700000000001 125.47 318.2200000000001 131.72L289.94 160L318.2200000000001 188.29C324.4700000000001 194.54 324.4700000000001 204.67 318.2200000000001 210.92L306.9100000000001 222.23A15.964 15.964 0 0 1 295.6 226.92C291.5100000000001 226.92 287.4100000000001 225.36 284.29 222.23L256 193.94L227.71 222.23z" />
+    <glyph glyph-name="folder"
+      unicode="&#xF07B;"
+      horiz-adv-x="512" d=" M464 320H272L217.37 374.63C211.37 380.63 203.23 384 194.74 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM464 48H48V336H188.12L242.75 281.37C248.75 275.37 256.89 272 265.38 272H464V48z" />
+    <glyph glyph-name="folders"
+      unicode="&#xF660;"
+      horiz-adv-x="640" d=" M592 384H400L345.37 438.63C339.37 444.63 331.23 448 322.74 448H176C149.49 448 128 426.51 128 400V320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V64H592C618.51 64 640 85.49 640 112V336C640 362.51 618.51 384 592 384zM464 -16H48V272H128V112C128 85.49 149.49 64 176 64H464V-16zM592 112H176V400H316.12L370.75 345.37C376.75 339.37 384.89 336 393.38 336H592V112z" />
+    <glyph glyph-name="font"
+      unicode="&#xF031;"
+      horiz-adv-x="448" d=" M402.629 17.496L262.703 408.0470000000001A12 12 0 0 1 251.406 416H196.595A12 12 0 0 1 185.298 408.0470000000001L45.371 17.496H20C13.373 17.496 8 12.123 8 5.496V-20C8 -26.627 13.373 -32 20 -32H140C146.627 -32 152 -26.627 152 -20V5.496C152 12.123 146.627 17.496 140 17.496H109.462L144.363 117.121H303.003L337.904 17.496H308C301.373 17.496 296 12.123 296 5.496V-20C296 -26.627 301.373 -32 308 -32H428C434.627 -32 440 -26.627 440 -20V5.496C440 12.123 434.627 17.496 428 17.496H402.629zM160.227 167.887L215.433 323.355C221.145 341.756 224 357.62 224 357.62S226.221 341.756 232.566 323.3540000000001L287.139 167.886H160.227z" />
+    <glyph glyph-name="football-ball"
+      unicode="&#xF44E;"
+      horiz-adv-x="496" d=" M481.4 387.1C476.6 405.3 462.3 419.6 444.2 424.5C420.4 430.9 232.4 484.4 94.5 346.3C-28.2 223.4 -2.4 61.1 14.6 -3.6C19.4 -21.8 33.7 -35.2 51.8 -40.1C75.6 -46.5 263.5 -101 401.5 37.2C524.2 160.1 498.4 322.5 481.4 387.1zM64.3 5.4C62.7 5.8 61.5 7.1 61.1 8.7C55.7 29 49.4 60.6 48.3 97.6L153.4 -7.5C116.6 -6.3 84.9 -0.1 64.3 5.4zM367.6 72.1C326.4000000000001 30.8 276 5.5 217.5 -3.8000000000001L52.3 161.4C60.5 211.6 81.9 265.3 128.4 311.9C169.6 353.2 220 378.5 278.5 387.8L443.6 222.7C435.5 172.4 414.1 118.7 367.6 72.1zM342.6 391.5C379.4000000000001 390.3 411.1 384.1 431.7000000000001 378.5999999999999C433.3000000000001 378.2 434.5000000000001 376.8999999999999 434.9000000000001 375.3C440.3 355 446.6 323.4 447.7000000000001 286.3999999999999L342.6 391.5zM253.7 288.2L242.4 276.8999999999999C239.3 273.8 239.3 268.7 242.4 265.5999999999999L270.7 237.2999999999999L248 214.5999999999999L219.7 242.8999999999999C216.6 245.9999999999999 211.5 245.9999999999999 208.4 242.8999999999999L197.1 231.5999999999999C194 228.4999999999999 194 223.3999999999999 197.1 220.2999999999999L225.4 191.9999999999999L202.8 169.3999999999999L174.5 197.6999999999999C171.4 200.7999999999999 166.3 200.7999999999999 163.2 197.6999999999999L151.9 186.3999999999999C148.8 183.2999999999999 148.8 178.1999999999999 151.9 175.0999999999999L180.2 146.7999999999999L151.9 118.4999999999998C148.8 115.3999999999998 148.8 110.2999999999998 151.9 107.1999999999998L163.2 95.8999999999998C166.3 92.7999999999998 171.4 92.7999999999998 174.5 95.8999999999998L202.8 124.1999999999998L231.1 95.8999999999998C234.2 92.7999999999998 239.3 92.7999999999998 242.4 95.8999999999998L253.7 107.1999999999998C256.8 110.2999999999998 256.8 115.3999999999998 253.7 118.4999999999998L225.4 146.7999999999999L248 169.3999999999999L276.3 141.0999999999999C279.4000000000001 137.9999999999998 284.5 137.9999999999998 287.6 141.0999999999999L298.9000000000001 152.3999999999999C302.0000000000001 155.4999999999999 302.0000000000001 160.5999999999999 298.9000000000001 163.6999999999999L270.6 192L293.2000000000001 214.6L321.5000000000001 186.3C324.6000000000001 183.2 329.7000000000001 183.2 332.8000000000001 186.3L344.1000000000001 197.6C347.2000000000001 200.7 347.2000000000001 205.8 344.1000000000001 208.9L315.8000000000001 237.2000000000001L344.1000000000001 265.5000000000001C347.2000000000001 268.6 347.2000000000001 273.7000000000001 344.1000000000001 276.8000000000001L332.8000000000001 288.1000000000001C329.7000000000001 291.2000000000001 324.6000000000001 291.2000000000001 321.5000000000001 288.1000000000001L293.2000000000001 259.8000000000001L265.0000000000001 288.2000000000001C261.8000000000001 291.3000000000001 256.8000000000001 291.3000000000001 253.7000000000001 288.2000000000001z" />
+    <glyph glyph-name="football-helmet"
+      unicode="&#xF44F;"
+      horiz-adv-x="512" d=" M479.6 128H355.5L340.3 204L476.8 221.8C485.8 223 492.4 231.6 490.7 240.5C468.1 354.2 368.3 440 248 440C114.9 440 18.2 338.5 2.6 228.1C-7.6 156 13.3 89 53.7 38.1C56.8 34.2 61.5 32 66.5 32H120C212.7 -14.4 215 -17.8 235 -17.8C252 -17.8 268.8 -11.2 281.4 1.4C317.6 37.6 292.3 81.1 286.4 96H329.3L338.8 46.5C348.3 -0.9 386.4 -36.7 434.4 -42.7C476.6 -48 487 -52.3 500.9 -40.1C515.1999999999999 -27.4999999999999 511.7 -21.7 511.7 96C511.6 113.7 497.3 128 479.6 128zM273.6 128L263.3 153.7C255.5 173.1 268.2 194.6 288.9000000000001 197.3L308.5000000000001 199.9L322.9000000000001 128H273.6zM282.7000000000001 244.9C230.9000000000001 238.2 199.3000000000001 184.4 218.7000000000001 135.9L251.3000000000001 54.3C255.9000000000001 42.8 247.4000000000001 30.1999999999999 235.0000000000001 30.1999999999999C229.1 30.1999999999999 235.2 28.0999999999999 131.3 79.9999999999999H82.4C54.4 121.1999999999999 42.9 170.9 50.1 221.4C62.3 307.9 139.6 392 248 392C331.2 392 404.4 340.1 433.8 264.6L282.7000000000001 244.9zM479.6 -16.1L438.3 -10.9C412.4000000000001 -7.7 390.7 7.8 378.6 29.8H479.7L479.6 -16.1zM479.6 64H368.3L361.9000000000001 96H479.6V64zM176 136C162.7 136 152 125.3 152 112S162.7 88 176 88S200 98.7 200 112S189.3 136 176 136z" />
+    <glyph glyph-name="forklift"
+      unicode="&#xF47A;"
+      horiz-adv-x="640" d=" M416 103.1V210.9C416 219.6 414.2 228.1 410.8 236.1L332.5 418.9C324.9 436.6 307.6 448 288.3 448H144C117.5 448 96 426.5 96 400V288H48C21.5 288 0 266.5 0 240V32C0 -21 43 -64 96 -64S192 -21 192 32H256C256 -21 299 -64 352 -64S448 -21 448 32C448 60.3 435.5 85.5 416 103.1zM144 400H288.3L366.7000000000001 217.2C367.6 215.2 368.0000000000001 213.1 368.0000000000001 210.9V208H246.1C237.2 208 228.4 211 221.4 216.5L144 277.4V400zM96 -16C69.5 -16 48 5.5 48 32S69.5 80 96 80S144 58.5 144 32S122.5 -16 96 -16zM269.3 80H178.7C162.1 108.6 131.5 128 96 128C78.4 128 62.2 122.9 48 114.7V240H113.9L191.8 178.8C207.2 166.7 226.6 160 246.2 160H368V126.4C362.8 127.3 357.5 128 352 128C316.6 128 285.9 108.6 269.3 80zM352 -16C325.5 -16 304 5.5 304 32S325.5 80 352 80S400 58.5 400 32S378.5 -16 352 -16zM624 48H528V432C528 440.8 520.8 448 512 448H496C487.2 448 480 440.8 480 432V16C480 7.2 487.2 0 496 0H624C632.8 0 640 7.2 640 16V32C640 40.8 632.8 48 624 48z" />
+    <glyph glyph-name="forward"
+      unicode="&#xF04E;"
+      horiz-adv-x="512" d=" M244.5 217.2L52.5 376.6C31.9 393.7 0 379.4 0 352V32C0 4.6 31.9 -9.8 52.5 7.4L244.5 168C259.8 180.8 259.8 204.4 244.5 217.2zM48 66.3V317.9L199 192.5L48 66.3zM500.5 217.2L308.5 376.6C287.9 393.7 256 379.4 256 352V32C256 4.6 287.9 -9.8 308.5 7.4L500.5 168C515.8 180.8 515.8 204.4 500.5 217.2zM304 66.3V317.9L455 192.5L304 66.3z" />
+    <glyph glyph-name="fragile"
+      unicode="&#xF4BB;"
+      horiz-adv-x="288" d=" M200 -16H168V98.6C240.7 111 294.3 178.1 287.4 255.3L271.4 433.4C270.7 441.7 263.9 448 255.7 448H32.3C24.1 448 17.3 441.7 16.6 433.4L0.6 255.3C-6.3 178.1 47.3 111 120 98.6V-16H88.1C50.9 -16 38.1 -64 56.1 -64H231.9C250 -64 237.1 -16 200 -16zM72.6 176C54.1 196.6 45.2 223.3 47.7 251L61.1 400H122.8L149.4 362L80 318L178.7 224L138.6 306L208 350L183.2 400H227L240.3 251C242.8 223.2 233.9 196.6 215.4 176S171.5 144 144 144S91.1 155.3 72.6 176z" />
+    <glyph glyph-name="frog"
+      unicode="&#xF52E;"
+      horiz-adv-x="576" d=" M576 258.06C576 279.4600000000001 564.28 299.01 545.52 309.29C516.84 325 479.58 338.98 460.01 345.91C448.64 386.26 411.98 416 368 416C325.03 416 289.0900000000001 387.58 276.8400000000001 348.65C120.27 327.48 -0.49 193.51 0 31.02C0.11 -3.89 29.08 -32 64 -32H368C376.84 -32 384 -24.84 384 -16C384 1.67 369.67 16 352 16H322.26L341.13 41.48C350.42 55.41 355.83 70.72 358.28 86.3L469.62 -32H560C568.84 -32 576 -24.84 576 -16C576 1.67 561.67 16 544 16H490.37L391.85 120.68L546.29 207.33A58.183 58.183 0 0 1 576 258.06zM522.81 249.19L348.02 153.14C340.46 168.53 329.7 182.59 315.1 193.54C275.44 223.26 220.1 223.29 180.38 193.54L145.6 167.45C135.01 159.5 132.85 144.45 140.82 133.84C148.79 123.25 163.82 121.07 174.41 129.04L209.19 155.13C231.91 172.2099999999999 263.63 172.1499999999999 286.28 155.13C313.56 134.68 320.09 96.4599999999999 301.87 69.0699999999999L262.56 16H64C55.35 16 48.03 22.95 48 31.17C47.59 166.86 148.74 282.9 283.27 301.0900000000001L313.48 305.1700000000001L322.63 334.2500000000001C328.98 354.44 347.21 368 368 368C389.15 368 407.99 353.57 413.81 332.9L420.55 308.9700000000001L443.99 300.67C462.32 294.18 496.9 281.2 522.46 267.2C525.9300000000001 265.3 528 261.88 528 258.06C528 254.39 526.01 250.99 522.81 249.19zM368 328C354.75 328 344 317.26 344 304C344 290.75 354.75 280 368 280S392 290.75 392 304C392 317.26 381.25 328 368 328z" />
+    <glyph glyph-name="frosty-head"
+      unicode="&#xF79B;"
+      horiz-adv-x="384" d=" M368 208H336V416C336 433.7 321.7 448 304 448H80C62.3 448 48 433.7 48 416V208H16C7.2 208 0 200.8 0 192V176C0 167.2 7.2 160 16 160H29.1C20.9 139.6 16 117.6 16 94.3C16 31.5 48.8 -23.2 98 -54.5C108.7 -61.3 121.6 -64 134.2 -64H175.2C166.6 -51.5 155.4 -35.9 144.1 -16H134.2C128.8 -16 125.3 -15 123.8 -14C86.3 9.8 64 50.3 64 94.3C64 118.6 71.4 140.7 83.2 160H302C309.6 147.3 315.1 133.4 317.8 118.7C327 67.9 306.6 18.1 264.7 -11.1C260 -14.4 254.6 -16.1 249 -16.1H239.8C228.5 -36.1 217.4 -51.6 208.7 -64.1H249C264.4 -64.1 279.5 -59.3 292.1 -50.5C346 -12.9 378.2000000000001 53.6 364.9000000000001 127.2C362.9000000000001 138.6 359.3 149.4 355.1 159.9H368C376.8 159.9 384 167.1 384 175.9V191.9C384 200.8 376.8 208 368 208zM288 208H96V272H288V208zM288 320H96V400H288V320zM192 80C171.4 80 154.7 63.3 154.7 42.7C154.7 22 192 -32 192 -32S229.3 22 229.3 42.7C229.3 63.3 212.6 80 192 80zM109.3 106.7C109.3 94.9 118.9 85.4 130.6 85.4C142.4 85.4 151.9 95 151.9 106.7C151.9 118.5 142.3 128 130.6 128C118.9 128 109.3 118.4 109.3 106.7zM274.7 106.7C274.7 118.5 265.1 128 253.4 128C241.6 128 232.1 118.4 232.1 106.7C232.1 94.9 241.7 85.4 253.4 85.4C265.1 85.3 274.7 94.9 274.7 106.7z" />
+    <glyph glyph-name="frown-open"
+      unicode="&#xF57A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM200 240C200 257.7 185.7 272 168 272S136 257.7 136 240S150.3 208 168 208S200 222.3 200 240zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM248 160C212.4 160 159.2 138.7 152.2 98.8C150.2 87 161.2 77.3 172.7 80.7C203.9 90.3 232.1 96 248 96S292.1 90.3 323.3 80.7C334.7 77.2 345.8 87 343.8 98.8C336.8 138.7 283.6 160 248 160z" />
+    <glyph glyph-name="frown"
+      unicode="&#xF119;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM248 144C207.8 144 170 126.3 144.2 95.4C135.7 85.2 137.1 70.1 147.3 61.6C157.5 53.2 172.6 54.4999999999999 181.1 64.7C197.7 84.6 222.1 96.1 248 96.1S298.3 84.7 314.9 64.7C323 55 338 52.8 348.7 61.6C358.9 70.1 360.2 85.2 351.8 95.4C326 126.3 288.2 144 248 144z" />
+    <glyph glyph-name="function"
+      unicode="&#xF661;"
+      horiz-adv-x="640" d=" M224 400C224 408.8400000000001 216.84 416 208 416H160C111.4 416 72 376.6 72 328V280H16C7.16 280 0 272.8400000000001 0 264V248C0 239.16 7.16 232 16 232H72V88C72 65.91 54.09 48 32 48H16C7.16 48 0 40.84 0 32V16C0 7.16 7.16 0 16 0H32C80.6 0 120 39.4 120 88V232H176C184.84 232 192 239.16 192 248V264C192 272.8400000000001 184.84 280 176 280H120V328C120 350.0900000000001 137.91 368 160 368H208C216.84 368 224 375.16 224 384V400zM317.43 339.08L304.63 348.71C297.41 354.15 286.82 352.7200000000001 281.71 345.3C244.39 291 224 225.83 224 160C224 94.15 244.39 28.98 281.71 -25.3C286.82 -32.73 297.41 -34.15 304.63 -28.71L317.43 -19.08C324.27 -13.9400000000001 325.52 -4.54 320.71 2.5099999999999C289.2 48.73 272 104.08 272 160C272 215.91 289.2 271.26 320.71 317.5C325.51 324.55 324.26 333.94 317.43 339.08zM582.29 345.3C577.18 352.73 566.5899999999999 354.15 559.37 348.71L546.57 339.08C539.73 333.94 538.48 324.54 543.2900000000001 317.49C574.8 271.27 592 215.92 592 160C592 104.09 574.8 48.74 543.29 2.5C538.49 -4.55 539.74 -13.94 546.5699999999999 -19.09L559.3699999999999 -28.72C566.5899999999999 -34.16 577.1799999999998 -32.7399999999999 582.2899999999998 -25.3099999999999C619.61 29 640 94.17 640 160C640 225.85 619.61 291.02 582.29 345.3zM507.4499999999999 224.46L496.4599999999999 235.45C490.3899999999999 241.52 480.5499999999999 241.52 474.4799999999999 235.45L432 192.97L389.53 235.44C383.46 241.51 373.62 241.51 367.55 235.44L356.56 224.45C350.49 218.38 350.49 208.54 356.56 202.47L399.03 160L356.56 117.53C350.49 111.46 350.49 101.62 356.56 95.55L367.55 84.56C373.62 78.49 383.46 78.49 389.53 84.56L432 127.03L474.47 84.56C480.54 78.49 490.3800000000001 78.49 496.45 84.56L507.4400000000001 95.55C513.5100000000001 101.62 513.5100000000001 111.46 507.4400000000001 117.53L464.97 160L507.4400000000001 202.47C513.5200000000001 208.54 513.5200000000001 218.39 507.45 224.46z" />
+    <glyph glyph-name="funnel-dollar"
+      unicode="&#xF662;"
+      horiz-adv-x="640" d=" M471.61 287.62L566.11 390.76C587.24 411.88 572.27 448 542.4 448H33.6C3.73 448 -11.24 411.88 9.89 390.75L192 192V56.09C192 40.98 199.11 26.76 211.2 17.6900000000001L307.19 -54.3099999999999C316.1 -60.9899999999999 326.08 -64.01 335.82 -64.01C352.44 -64.01 368.28 -55.19 376.99 -40.87C402.6600000000001 -55.51 432.31 -64 464 -64C561.2 -64 640 14.8 640 112C640 206.63 565.26 283.6 471.61 287.62zM335.99 -15.91L240 56.09V210.67L66.52 400H509.48L393.15 273.04C331.26 245.77 288 183.98 288 112C288 65.3 306.31 22.97 335.99 -8.53V-15.91zM464 -16C393.42 -16 336 41.42 336 112S393.42 240 464 240S592 182.58 592 112S534.58 -16 464 -16zM491.09 120.5800000000001L446.09 134.0800000000001C440.93 135.6300000000001 437.32 140.86 437.32 146.8100000000001C437.32 154.0800000000001 442.62 160.0000000000001 449.12 160.0000000000001H477.23C481.79 160.0000000000001 486.19 158.71 490.05 156.28C493.29 154.2500000000001 497.41 154.37 500.18 157.0100000000001L511.93 168.22C515.46 171.59 515.26 177.43 511.36 180.36C502.26 187.19 491.28 191.13 479.99 191.71V208C479.99 212.42 476.41 216 471.99 216H455.99C451.57 216 447.99 212.42 447.99 208V191.88C424.37 191.25 405.32 171.33 405.32 146.81C405.32 126.84 418.3 109 436.9 103.42L481.9 89.92C487.06 88.37 490.67 83.14 490.67 77.19C490.67 69.92 485.3699999999999 64 478.8699999999999 64H450.7599999999999C446.2 64 441.8 65.29 437.94 67.72C434.7 69.75 430.58 69.6300000000001 427.81 66.99L416.06 55.78C412.53 52.41 412.73 46.5700000000001 416.63 43.64C425.73 36.8100000000001 436.7099999999999 32.8700000000001 448 32.29V16C448 11.58 451.5799999999999 8 455.9999999999999 8H471.9999999999999C476.42 8 479.9999999999999 11.58 479.9999999999999 16V32.12C503.6199999999999 32.75 522.67 52.66 522.67 77.19C522.67 97.16 509.6899999999999 115 491.09 120.58z" />
+    <glyph glyph-name="futbol"
+      unicode="&#xF1E3;"
+      horiz-adv-x="496" d=" M483.8 268.6C449.8 373.4 352.6 440 248.1 440C222.7 440 196.9 436.1 171.4 427.8C41.2 385.5 -30.1 245.6 12.2 115.4C46.2 10.6 143.4 -56 247.9 -56C273.3 -56 299.1 -52.1 324.6 -43.8C454.8 -1.5 526.1 138.4 483.8 268.6zM409.3 74.9L357.1 68.5L313.4000000000001 129.4L337.8 204.6L408.9 226.7L447.8 190.3C447.6 159.6 440.4 129.1999999999999 426.1 101.1C421.4 91.8 415.4 83.3 409.3 74.9zM409.3 310.3L398.9000000000001 257.2L328.2000000000001 235.2L264.0000000000001 281.7V355.5L311.4000000000001 381.7C350.6 368.7 384.8000000000001 343.7 409.3000000000001 310.3zM184.9 381.6L232 355.5V281.7L167.8 235.2L97.2 257.2L87.1 309.7C111.4 343.1 145 368.3 184.9 381.6zM139 68.5L85.9 75C71.5 95.1 48.6 134.6 48.1 190.3L87.1 226.7L158.2 204.5L182.5 130.2000000000001L139 68.5000000000001zM187.2 1.5L164.8 49.6L208.4 111.3H287L331.3 49.6L308.9000000000001 1.5C302.7000000000001 -0.3 251.3000000000001 -18.9 187.2000000000001 1.5z" />
+    <glyph glyph-name="gamepad"
+      unicode="&#xF11B;"
+      horiz-adv-x="640" d=" M256 208V176C256 171.6 252.4 168 248 168H200V120C200 115.6 196.4 112 192 112H160C155.6 112 152 115.6 152 120V168H104C99.6 168 96 171.6 96 176V208C96 212.4 99.6 216 104 216H152V264C152 268.4 155.6 272 160 272H192C196.4 272 200 268.4 200 264V216H248C252.4 216 256 212.4 256 208zM496 272C473.9 272 456 254.1 456 232S473.9 192 496 192S536 209.9 536 232S518.1 272 496 272zM432 192C409.9 192 392 174.1 392 152S409.9 112 432 112S472 129.9 472 152S454.1 192 432 192zM464 320H176C105.2 320 48 262.7 48 192C48 121.2 105.3 64 176 64C232.2 64 262.1 97.3 277.7 112H362.3C378.5 96.7 408.2 64 463.9999999999999 64C534.8 64 592 121.3 592 192C592 262.8 534.7 320 464 320M464 368C561.2 368 640 289.2 640 192S561.2 16 464 16C417.2 16 374.7 34.2 343.2 64H296.8C265.3 34.2 222.8 16 176 16C78.8 16 0 94.8 0 192S78.8 368 176 368H464z" />
+    <glyph glyph-name="gas-pump-slash"
+      unicode="&#xF5F4;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM480 350.06V288C480 259.86 500.93 236.73 528 232.81V120.77L576 83.24V295.43C576 312.4 569.26 328.68 557.25 340.69L470.62 427.32C467.5 430.44 462.43 430.44 459.31 427.32L436.68 404.7C433.56 401.58 433.56 396.51 436.68 393.39L480 350.06zM336 400V270.88L384 233.35V400C384 426.51 362.51 448 336 448H144C134.72 448 126.14 445.25 118.79 440.69L170.84 400H336zM408 -16H384V50.58L336 88.11V-16H144V238.21L96 275.74V-16H72C67.58 -16 64 -19.58 64 -24V-56C64 -60.42 67.58 -64 72 -64H408C412.42 -64 416 -60.42 416 -56V-24C416 -19.58 412.42 -16 408 -16z" />
+    <glyph glyph-name="gas-pump"
+      unicode="&#xF52F;"
+      horiz-adv-x="512" d=" M493.3 340.7L406.7000000000001 427.3C403.6 430.4 398.5000000000001 430.4 395.4000000000001 427.3L372.8 404.7C369.7 401.6 369.7 396.5 372.8 393.4L416 350.1V288C416 259.9 436.9 236.7 464 232.8V72C464 58.8 453.2 48 440 48S416 58.8 416 72V104C416 152.6 376.6 192 328 192H320V400C320 426.5 298.5 448 272 448H80C53.5 448 32 426.5 32 400V-16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H344C348.4 -64 352 -60.4 352 -56V-24C352 -19.6 348.4 -16 344 -16H320V144H328C350.1 144 368 126.1 368 104V76.2C368 38.5 395 4.2 432.5 0.3C475.5 -4.0000000000001 512 29.8 512 71.9999999999999V295.4C512 312.4 505.3 328.7 493.3 340.7zM272 -16H80V208H272V-16zM272 256H80V400H272V256z" />
+    <glyph glyph-name="gavel"
+      unicode="&#xF0E3;"
+      horiz-adv-x="512" d=" M497.965 271.382L474.78 294.567C461.169 308.177 441.347 311.8880000000001 424.346 305.7000000000001L369.722 360.324C375.911 377.322 372.201 397.145 358.589 410.757L335.404 433.9310000000001C316.647 452.688 286.282 452.691 267.522 433.9310000000001L163.914 330.333C145.199 311.618 145.199 281.166 163.914 262.45L187.098 239.266C200.711 225.653 220.531 221.94 237.532 228.133L247.874 217.791L191.331 161.271C169.31 183.291 139.465 180.52 121.833 162.887L14.069 55.092C-4.688 36.335 -4.691 5.97 14.069 -12.79L51.232 -49.964C69.946 -68.678 100.397 -68.679 119.114 -49.964L226.887 57.832C244.299 75.242 247.539 105.063 225.271 127.331L281.814 183.85L292.155 173.509C285.966 156.511 289.676 136.688 303.289 123.0750000000001L328.706 97.658C346.19 80.174 374.6380000000001 80.173 392.1230000000001 97.658L497.965 203.5C516.678 222.215 516.678 252.667 497.965 271.382zM85.195 -16.043L85.174 -16.022L48 21.151L155.773 128.946L192.946 91.773L85.195 -16.043zM360.414 133.832L337.23 157.016L352.023 171.809L235.832 288L221.04 273.208L197.856 296.392L301.465 400L324.649 376.8160000000001L307.832 360L424.023 243.809L440.839 260.625L464.023 237.441L360.4140000000001 133.832z" />
+    <glyph glyph-name="gem"
+      unicode="&#xF3A5;"
+      horiz-adv-x="576" d=" M464 448H112C108 448 104.2 446 102 442.6L2 295.4C-0.9 291 -0.6 285.2000000000001 2.7 281.2000000000001L278.7 -59.6C283.5 -65.5 292.5 -65.5 297.3 -59.6L573.3 281.2C576.5999999999999 285.3 576.9 291 574 295.4L474.1 442.6C471.8 446 468.1 448 464 448zM444.7 400L508 304H439.6L387.9000000000001 400H444.7000000000001zM242.6 400H333.3L385 304H191L242.6 400zM131.3 400H188.1L136.4 304H68L131.3 400zM88.3 256H139.7L208 96L88.3 256zM191.2 256H384.8L288 12.7L191.2 256zM368 96L436.2 256H487.6L368 96z" />
+    <glyph glyph-name="genderless"
+      unicode="&#xF22D;"
+      horiz-adv-x="288" d=" M144 288C196.9 288 240 244.9 240 192S196.9 96 144 96S48 139.1 48 192S91.1 288 144 288M144 336C64.5 336 0 271.5 0 192S64.5 48 144 48S288 112.5 288 192S223.5 336 144 336z" />
+    <glyph glyph-name="ghost"
+      unicode="&#xF6E2;"
+      horiz-adv-x="384" d=" M192 448C190.04 448 188.07 447.9700000000001 186.09 447.9100000000001C81.01 444.76 0 353.08 0 247.95V-15.97C0 -25.61 7.89 -32 16.12 -32C20.05 -32 24.06 -30.54 27.32 -27.28L52.24 -8.75C55.1 -6.63 58.45 -5.59 61.78 -5.59C66.21 -5.59 70.6 -7.42 73.75 -10.97L116.7 -59.32C119.82 -62.44 123.92 -64.01 128.01 -64.01S136.2 -62.45 139.32 -59.32L180.04 -13.47C183.22 -9.89 187.61 -8.09 192 -8.09S200.78 -9.88 203.96 -13.47L244.68 -59.32C247.8 -62.44 251.9 -64.01 255.99 -64.01S264.18 -62.45 267.3 -59.32L310.25 -10.97A15.994 15.994 0 0 0 331.76 -8.7499999999999L356.68 -27.28C359.94 -30.54 363.95 -32 367.88 -32C376.1 -32 384 -25.61 384 -15.97V256C384 362.04 298.04 448 192 448zM336 40.93C331.52 41.91 326.9100000000001 42.41 322.23 42.41C303.9500000000001 42.41 286.51 34.58 274.37 20.91L256 0.23L239.85 18.41C227.72 32.0700000000001 210.27 39.91 192 39.91S156.29 32.0700000000001 144.15 18.41L128 0.23L109.62 20.92A64.069 64.069 0 0 1 61.76 42.41C57.08 42.41 52.47 41.91 47.99 40.93V247.95C47.99 329.44 110.59 397.62 187.52 399.93L192 400C271.4 400 336 335.4 336 256V40.93zM128 288C110.33 288 96 273.67 96 256S110.33 224 128 224S160 238.33 160 256S145.67 288 128 288zM256 288C238.33 288 224 273.67 224 256S238.33 224 256 224S288 238.33 288 256S273.67 288 256 288z" />
+    <glyph glyph-name="gift-card"
+      unicode="&#xF663;"
+      horiz-adv-x="576" d=" M528 320H469.93C476.15 332.06 480 345.52 480 360C480 408.52 440.52 448 392 448C350.4 448 323.49 426.6600000000001 288.96 379.67C254.44 426.67 227.53 448 185.93 448C137.41 448 97.93 408.52 97.93 360C97.93 345.52 101.78 332.06 108 320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H528C554.51 -64 576 -42.51 576 -16V272C576 298.51 554.51 320 528 320zM392 400C414.06 400 432 382.06 432 360C432 337.95 414.06 320 392 320H305.93C357.29 396.4700000000001 371.65 400 392 400zM145.93 360C145.93 382.06 163.87 400 185.93 400C205.87 400 220.51 396.73 272 320H185.93C163.87 320 145.93 337.95 145.93 360zM222.06 272L170.34 220.28C164.09 214.03 164.09 203.9 170.34 197.65L181.65 186.34C187.9 180.09 198.03 180.09 204.28 186.34L288 270.06L371.7200000000001 186.34C377.9700000000001 180.09 388.1 180.09 394.35 186.34L405.6600000000001 197.65C411.9100000000001 203.9 411.9100000000001 214.03 405.6600000000001 220.28L353.94 272H528V128H48V272H222.06zM48 -16V64H528V-16H48z" />
+    <glyph glyph-name="gift"
+      unicode="&#xF06B;"
+      horiz-adv-x="512" d=" M464 304H437.9C444.1 316.1 448 329.5 448 344C448 392.5 408.5 432 360 432C318.4 432 291.5 410.7 257 363.7C222.5 410.7 195.6 432 154 432C105.5 432 66 392.5 66 344C66 329.5 69.8 316.1 76.1 304H48C21.5 304 0 282.5 0 256V128C0 119.2 7.2 112 16 112H32V4.6C32 -24.4 55.6 -48 84.6 -48H427.4C456.4 -48 480 -24.4 480 4.6V112H496C504.8 112 512 119.2 512 128V256C512 282.5 490.5 304 464 304zM232 0H84.6C82.1 0 80 2 80 4.6V112H192V160H48V256H232V0zM153.9 304C131.8 304 113.9 321.9 113.9 344S131.8 384 153.9 384C175.9 384 191.4 376.4 238 307L240 304H153.9zM275.9 307C322.5 376.4 338 384 360 384C382.1 384 400 366.1 400 344S382.1 304 360 304H273.9L275.9 307zM464 160H320V112H432V4.6C432 2.1 430 0 427.4 0H280V256H464V160z" />
+    <glyph glyph-name="gifts"
+      unicode="&#xF79C;"
+      horiz-adv-x="640" d=" M608 224H587.6C590.2 231.6 592 239.5 592 247.8C592 283.3 565 320 519.9 320C471.8 320 444 272.3 432 244.7C420.6 270.7000000000001 395.1 314.1 352 319V320C352 337.7 337.7 352 320 352H258.6L289.3 374C296.5 379.1 298.2 389.1 293 396.3L283.7 409.3C278.6 416.5 268.6 418.2 261.4 413L229.4 390.1L240.9 420.7C244 429 239.8 438.2 231.5 441.3L216.5 446.9C208.2 450 199 445.8 195.9 437.5L176 384.5L156.1 437.6C153 445.9 143.8 450.1 135.5 447L120.5 441.4C112.2 438.3 108 429.1 111.1 420.8L122.6 390.2L90.6 413C83.4 418.1 73.4 416.5 68.3 409.3L59 396.3C53.9 389.1 55.5 379.1 62.7 374L93.4 352H32C14.3 352 0 337.7 0 320V-32C0 -49.7 14.3 -64 32 -64H608C625.7 -64 640 -49.7 640 -32V192C640 209.7 625.7 224 608 224zM519.9 272C537.6 272 544 257.5 544 247.8C544 242.7 542.5 235.2 535.2 228.8C533.1 227 530.7 225.4 528 224H475.4C484.2 244.3 501.3 272 519.9 272zM344.1 272C362.8 272 379.7 244.6 388.6 224H336C333.3 225.4 330.9 227 328.8 228.8C321.5 235.2 320 242.6 320 247.8C320 257.5 326.4 272 344.1 272zM224 192V-16H48V304H298.7C281.7 290 272 268.8 272 247.8C272 239.5 273.7 231.6 276.4 224H256C238.3 224 224 209.7 224 192zM408 -16H272V56H408V-16zM408 104H272V176H408V104zM431.3 224L432 224.2L432.7 224H431.3zM592 -16H456V56H592V-16zM592 104H456V176H592V104z" />
+    <glyph glyph-name="gingerbread-man"
+      unicode="&#xF79D;"
+      horiz-adv-x="448" d=" M192 352C183.2 352 176 344.8 176 336S183.2 320 192 320S208 327.2 208 336S200.8 352 192 352zM224 112C215.2 112 208 104.8 208 96S215.2 80 224 80S240 87.2 240 96S232.8 112 224 112zM446.7 221.4C439.1 268.1 398.2 302.4 348.7 303.9C349.6 309.8 350 315.9 350 322C350 355.7 336.9 387.3 313.1 411.1C289.3 434.9 257.7 448 224 448S158.7 434.9 134.9 411.1C111.1 387.3 98 355.7 98 322C98 315.9 98.4 309.9 99.3 303.9C49.9 302.4 8.9 268.1 1.3 221.4C-3.5 192.2 4.7 162.6 23.8 140.2C35.1 126.9 49.5 117 65.5 111.1L58.5 102.6C40.5 80.9999999999999 31.9 52.4 34.9 24.1C37.8 -2.9 50.8 -26.8 71.6 -43C89 -56.5 110.8 -64 133 -64C162.8 -64 190.8 -50.9 209.8 -28L224 -11L238.2 -28C257.3 -50.9 285.3 -64 315 -64C337.2 -64 359 -56.5 376.5 -42.9C397.3 -26.7 410.3 -2.9 413.2 24.2C416.2 52.5000000000001 407.6 81.1 389.6 102.7000000000001L382.6 111.2000000000001C398.6 117.1 412.9 127.0000000000001 424.3 140.3000000000001C443.2 162.6000000000001 451.4 192.2000000000001 446.7 221.4000000000001zM348 153H316.8C308.6 153 302 146.4 302 138.2C302 134.7 303.2 131.4 305.4 128.7L352.7 72C371.6 49.3 370.2 13.2 346.9 -5C321.4 -24.9 290 -15.3 275 2.7L244 40C238.8 46.2 231.4 49.4 224 49.4S209.2 46.3 204 40L172.9 2.7C157.9 -15.4 126.5 -24.9 101 -5C77.7 13.2 76.3 49.3 95.2 72L142.5 128.7C144.7 131.4 145.9 134.7 145.9 138.2C145.9 146.4 139.3 153 131.1 153H100C33.1 153 28 256 102.8 256H163.2C169 256 171.7 263.9 167.7 268.1C154.3 282.1 146 301.1 146 322C146 365.1 180.9 400 224 400S302 365.1 302 322C302 301.1 293.7 282.1 280.3 268.1C276.3 263.9 278.9000000000001 256 284.8 256H345.2C420 256 415 153 348 153zM224 176C215.2 176 208 168.8 208 160S215.2 144 224 144S240 151.2 240 160S232.8 176 224 176zM256 352C247.2 352 240 344.8 240 336S247.2 320 256 320S272 327.2 272 336S264.8 352 256 352zM224 240C215.2 240 208 232.8 208 224S215.2 208 224 208S240 215.2 240 224S232.8 240 224 240z" />
+    <glyph glyph-name="glass-champagne"
+      unicode="&#xF79E;"
+      horiz-adv-x="256" d=" M200 -16H152V98.5C217 110.5 263.6 169.5 255 235.6L228 420.6C225.7 436.3 212.2 448 196.3 448H59.7C43.8 448 30.3 436.3 28 420.6L1 235.7C-7.7 169.5 39 110.5 104 98.6V-16H56C33.9 -16 16 -33.9 16 -56C16 -60.4 19.6 -64 24 -64H232C236.4 -64 240 -60.4 240 -56C240 -33.9 222.1 -16 200 -16zM73.5 400H182.5L194.2 320H61.8L73.5 400zM66.6 171.4C52.3 187.7 45.9 208.4 48.6 228.8L54.9 272.1H201.2L207.4 229.5C210.2 208.4 203.8 187.8 189.5 171.4C174.2 154 151.8 144 128 144S81.8 154 66.6 171.4z" />
+    <glyph glyph-name="glass-cheers"
+      unicode="&#xF79F;"
+      horiz-adv-x="640" d=" M587.6 33.9L557.8000000000001 22.2L517.3000000000001 125.2C568.2 158.7 587.4000000000001 225.4 557.5000000000001 279.5L473.4000000000001 431.5C467.6 441.9 456.8 448 445.4 448C441.5 448 437.5 447.3 433.7 445.8L320 401.1L206.3 445.8C202.5 447.3 198.5 448 194.6 448C183.3 448 172.4 441.9 166.6 431.5L82.5 279.5C52.6 225.4 71.8 158.7 122.7 125.2L82.2 22.2L52.4 33.9C31.8 42 8.6 31.9 0.5 11.3C-1.1 7.1999999999999 0.9 2.4999999999999 5 0.9L168.8 -63.5C172.9 -65.1 177.6 -63.1 179.2 -59C187.3 -38.4 177.2 -15.2 156.6 -7.1L126.8 4.6L167.1 107C175.1 105.4 183.1 104.5 190.9 104.5C243.5 104.5 291.8 138.7 305.1 191.9L319.9000000000001 251.5L334.7000000000001 191.9C347.9000000000001 138.7 396.2000000000001 104.5 448.9000000000001 104.5C456.8 104.5 464.8 105.4 472.7 107L512.9000000000001 4.7L483.1000000000001 -7C462.5000000000001 -15.1 452.4000000000001 -38.3 460.5000000000001 -58.9C462.1000000000001 -63 466.8000000000001 -65 470.9 -63.4L634.9000000000001 1C639.0000000000001 2.6 641.0000000000001 7.3 639.4000000000001 11.4C631.4000000000001 31.9 608.1000000000001 42 587.6000000000001 33.9zM258.6 203.5C251.1 173.5 223.3 152.5 191 152.5C181.6 152.5 172.3000000000001 154.3 163.2 157.8C143.1 165.7 127.5 181.6 120.4 201.3C113.7 219.8 115.2 239.3 124.5 256.1L149.6 301.4000000000001L271.1 253.6L258.6 203.5zM282.8 300.7L173 343.9L201.8 396L297.2000000000001 358.5L282.8000000000001 300.7zM357.2000000000001 300.7L342.8000000000001 358.4L438.2 396L467 343.9L357.2 300.7zM476.8000000000001 157.9C467.8000000000001 154.4 458.5000000000001 152.6 449.0000000000001 152.6C416.7000000000001 152.6 388.9000000000001 173.6 381.4000000000001 203.6L368.9000000000001 253.9L490.4000000000001 301.7L515.5000000000001 256.4C524.8000000000001 239.6 526.3000000000001 220.1 519.6000000000001 201.6C512.5000000000001 181.7 496.9000000000001 165.8 476.8000000000001 157.9z" />
+    <glyph glyph-name="glass-martini-alt"
+      unicode="&#xF57B;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L232 168.36V-16H168C145.91 -16 128 -33.91 128 -56C128 -60.42 131.58 -64 136 -64H376C380.42 -64 384 -60.42 384 -56C384 -33.91 366.09 -16 344 -16H280V168.36L502.05 390.4zM256 212.24L164.24 304H347.77L256 212.24zM443.77 400L395.77 352H116.24L68.24 400H443.77z" />
+    <glyph glyph-name="glass-martini"
+      unicode="&#xF000;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L232 168.36V-15H168C145.91 -15 128 -32.91 128 -55C128 -59.42 131.58 -63 136 -63H376C380.42 -63 384 -59.42 384 -55C384 -32.91 366.09 -15 344 -15H280V168.36L502.05 390.4zM256 212.24L68.23 400H443.76L256 212.24z" />
+    <glyph glyph-name="glass-whiskey-rocks"
+      unicode="&#xF7A1;"
+      horiz-adv-x="512" d=" M480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM392.7 16H119.7C111.8 16 105 21.9 103.8 30.4L90.5 115.1C102.1 103.3 118.2 95.9999999999999 136 95.9999999999999H200C221.7 95.9999999999999 240.9 106.8999999999999 252.5 123.6C255 119.5 257.9 115.6 261.5 111.9999999999999L306.8 66.6999999999999C318.9000000000001 54.5999999999999 335 47.9999999999999 352.1 47.9999999999999C369.2000000000001 47.9999999999999 385.3 54.6999999999999 397.4000000000001 66.6999999999999L417.6 86.8999999999999L408.7000000000001 29.6999999999999C407.4000000000001 21.8999999999999 400.6 15.9999999999999 392.7000000000001 15.9999999999999zM120 160V224C120 232.8 127.2 240 136 240H200C208.8 240 216 232.8 216 224V160C216 151.2 208.8 144 200 144H136C127.2 144 120 151.2 120 160zM295.4 168.6L340.7 213.9C343.7 216.9 347.7 218.6 352 218.6S360.3 216.9 363.3 213.9L408.6 168.6C414.8 162.4 414.8 152.2000000000001 408.6 146L363.3 100.7C360.3 97.7 356.3 96 352 96S343.7 97.7 340.7 100.7L295.4 146C289.2 152.2 289.2 162.3 295.4 168.6zM436.4 208.6L397.2 247.8C385.1 259.9 369 266.5 351.9 266.5C334.8 266.5 318.7 259.8 306.6 247.8L264 205V224C264 259.3 235.3 288 200 288H136C102.5 288 75.2 262 72.5 229.2L50.7 368H461.3L436.4000000000001 208.6z" />
+    <glyph glyph-name="glass-whiskey"
+      unicode="&#xF7A0;"
+      horiz-adv-x="512" d=" M480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM392.7 16H119.7C111.8 16 105 21.9 103.8 30.4L85.9 144H426.3L408.5 29.7C407.3999999999999 21.9 400.6 16 392.7 16zM433.8 192H78.4L50.7 368H461.3L433.8 192z" />
+    <glyph glyph-name="glasses-alt"
+      unicode="&#xF5F5;"
+      horiz-adv-x="576" d=" M560.51 222.1L528.75 349.36C522.05 376.2200000000001 495.01 416 443.33 416C427.7 416 420.3 413.06 400.31 406.4C391.92 403.61 387.39 394.54 390.19 386.16L395.25 370.98C397.49 364.28 403.73 360.04 410.43 360.04C413.9700000000001 360.04 415.25 360.78 428.6600000000001 365.25C454.73 373.93 476.86 359.12 482.1900000000001 337.71L511.8600000000001 219.03C490.97 232.12 466.47 240 440 240C384.91 240 337.73 207.09 316.35 160H259.6500000000001C238.2700000000001 207.09 191.09 240 136 240C109.53 240 85.03 232.12 64.14 219.04L93.81 337.7200000000001C99.13 359.13 121.2700000000001 373.94 147.34 365.26C160.76 360.79 162.04 360.05 165.57 360.05C172.27 360.05 178.51 364.29 180.75 370.99L185.81 386.17C188.6100000000001 394.55 184.0800000000001 403.62 175.69 406.41C155.7 413.06 148.3 416 132.67 416C81 416 53.95 376.2200000000001 47.25 349.36L15.49 222.1C2.16 168.66 0 147.88 0 104C0 28.89 60.89 -32 136 -32C208.37 -32 266.9700000000001 24.69 271.19 96H304.8C309.0200000000001 24.69 367.62 -32 439.99 -32C515.1 -32 575.99 28.89 575.99 104C576 147.88 573.84 168.66 560.51 222.1zM136 16C87.48 16 48 55.48 48 104S87.48 192 136 192S224 152.52 224 104S184.52 16 136 16zM440 16C391.48 16 352 55.48 352 104S391.48 192 440 192S528 152.52 528 104S488.52 16 440 16z" />
+    <glyph glyph-name="glasses"
+      unicode="&#xF530;"
+      horiz-adv-x="576" d=" M574.1 167.63L528.75 349.3400000000001C522.84 373.04 507.16 393.39 485.75 405.15C464.31 416.88 438.78 419.26 415.56 411.48L400.31 406.4C391.92 403.61 387.39 394.54 390.19 386.1600000000001L395.25 370.98C398.04 362.6 407.1 358.0700000000001 415.48 360.86L428.6600000000001 365.25C439.5300000000001 368.87 451.66 368.82 461.8200000000001 363.52C472.1100000000001 358.15 479.39 348.9600000000001 482.1900000000001 337.7000000000001L520.6500000000001 183.88C498.4600000000001 190.69 470.8600000000001 196.34 439.4500000000001 196.34C399.5500000000002 196.34 353.8200000000001 187.14 306.4100000000001 160H269.6C222.19 187.15 176.47 196.35 136.56 196.35C105.14 196.35 77.54 190.7 55.35 183.89L93.81 337.7200000000001C96.6 348.9700000000001 103.9 358.17 114.19 363.53C124.35 368.83 136.47 368.88 147.34 365.26L160.51 360.87C168.89 358.08 177.95 362.61 180.74 370.99L185.8 386.17C188.6 394.55 184.07 403.62 175.68 406.4100000000001L160.43 411.49C137.21 419.27 111.68 416.9000000000001 90.24 405.1600000000001C68.83 393.39 53.15 373.05 47.24 349.36L1.9 167.63A64.218 64.218 0 0 1 0 152.14V81.89C0 18.99 51.58 -32 115.2 -32H152.32C212.6 -32 262.69 13.94 267.2 73.37L270.13 112H305.88L308.81 73.37C313.31 13.94 363.4 -32 423.68 -32H460.8C524.42 -32 576 18.99 576 81.88V152.13C576 157.36 575.36 162.56 574.1 167.63zM219.33 77C216.73 42.8 187.3 16 152.31 16H115.2C78.15 16 48 45.56 48 81.89V130.36C67.77 138.55 99.23 148.35 136.58 148.36C166.36 148.36 195.44 142.14 223.34 129.8300000000001L219.33 77zM528 81.88C528 45.55 497.85 16 460.8 16H423.68C388.7 16 359.26 42.79 356.67 77L352.6600000000001 129.82C380.5700000000001 142.13 409.6600000000001 148.35 439.4500000000001 148.35C476.8200000000001 148.35 508.2900000000001 138.53 528 130.37V81.88z" />
+    <glyph glyph-name="globe-africa"
+      unicode="&#xF57C;"
+      horiz-adv-x="496" d=" M248 440C111.04 440 0 328.9700000000001 0 192S111.04 -56 248 -56S496 55.03 496 192S384.96 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392C258.92 392 269.55 390.88 280 389.19V367.49C280 358.93 273.06 351.99 264.5 351.99H240.29C235.11 351.99 230.27 349.4 227.4 345.09L219.32 332.98C217.18 329.77 213.92 327.48 210.18 326.54L195.73 322.93A15.492 15.492 0 0 1 183.99 307.89V303.49C183.99 294.93 190.93 287.99 199.49 287.99H289.58C293.69 287.99 297.63 286.36 300.5399999999999 283.45L307.4599999999999 276.53C310.37 273.62 314.31 271.99 318.4199999999999 271.99H328.5099999999999C337.0699999999999 271.99 344.0099999999999 265.05 344.0099999999999 256.49C344.0099999999999 249.82 339.7399999999999 243.9 333.4099999999999 241.79L286.0999999999999 226.02C282.1999999999999 224.72 277.9499999999999 225.02 274.2699999999999 226.86L259.5499999999999 234.2200000000001A54.681999999999995 54.681999999999995 0 0 1 235.1199999999999 239.9900000000001H234.2299999999999C222.4099999999999 239.9900000000001 210.9099999999999 236.1600000000001 201.4499999999999 229.0600000000001L173.8699999999998 208.37A54.544999999999995 54.544999999999995 0 0 1 152 164.69V150.63C152 136.14 157.76 122.25 168 112A54.641 54.641 0 0 1 206.63 96H232.51C241.07 96 248.01 89.06 248.01 80.5V50.62C248.01 38.37 250.86 26.29 256.34 15.33C261.04 5.93 270.65 -0.01 281.16 -0.01C290.44 -0.01 299.1 4.63 304.25 12.35L317.2799999999999 31.9A159.60800000000003 159.60800000000003 0 0 0 342.2799999999999 61.0600000000001C344.75 63.3200000000001 346.4199999999999 66.3200000000001 347.0399999999999 69.6200000000001L351.3399999999999 92.4500000000001C351.7799999999999 94.78 352.75 96.98 354.1699999999999 98.8800000000001L372.9099999999999 123.8600000000001C374.9199999999999 126.5400000000001 376.01 129.8100000000001 376.01 133.1600000000001V144.5C376.01 153.06 369.07 160 360.51 160H352.3C347.12 160 342.28 162.59 339.41 166.9L326.17 186.76C320.5 195.26 324.47 206.83 334.16 210.06L336.81 210.94C341.35 212.45 346.33 211.79 350.31 209.13L368.5199999999999 196.99A15.531999999999998 15.531999999999998 0 0 1 384.0499999999999 196.02L399.4399999999999 203.72C404.6899999999999 206.34 408.0099999999999 211.71 408.0099999999999 217.58V224.51C408.0099999999999 233.07 414.9499999999999 240.01 423.5099999999999 240.01H441.9499999999999C445.7699999999999 224.6 448.0199999999999 208.58 448.0199999999999 192.01C448 81.72 358.28 -8 248 -8z" />
+    <glyph glyph-name="globe-americas"
+      unicode="&#xF57D;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM216 389.19V377.89C216 366 203.48 358.26 192.84 363.58L168.83 375.5900000000001C183.7 382.02 199.54 386.53 216 389.19zM48 192C48 221.12 54.4 248.72 65.63 273.7C75.55 258.98 90.83 236.33 100.22 222.56C105.42 214.93 111.43 208 118.28 201.82L119.08 201.1C128.63 192.49 139.25 185.13 150.73 179.35C164.73 172.31 185.17 161.19 199.54 153.24C209.73 147.61 216 136.91 216 125.27V93.26C216 84.77 219.37 76.63 225.37 70.63C240.36 55.64 249.69 32 248 19.38V-8C137.72 -8 48 81.72 48 192zM290.65 -3.31L308.04 43.54C310.08 49.03 311.3 54.7600000000001 312.81 60.41C313.88 64.43 315.99 68.12 318.98 71.12C322.3 74.44 326.39 78.52 330.29 82.4A46.47399999999999 46.47399999999999 0 0 1 344 115.36C344 123.45 340.79 131.21 335.07 136.93L321.38 150.62C315.38 156.62 307.24 159.99 298.75 159.99H232C222.59 164.7 210.52 191.99 200 191.99S179.1 194.44 169.69 199.15L158.61 204.69A11.956000000000001 11.956000000000001 0 0 0 152 215.38C152 220.52 155.29 225.09 160.17 226.72L191.34 237.11C196.71 238.9 202.62 237.7200000000001 206.89 234.01L216.17 225.95A8.03 8.03 0 0 1 221.41 223.99H227.05C233 223.99 236.86 230.25 234.2 235.57L218.61 266.76A7.990000000000001 7.990000000000001 0 0 0 220.19 276.0700000000001L230.11 285.7200000000001A8.02 8.02 0 0 0 235.69 287.99H244.68C246.8 287.99 248.84 288.8300000000001 250.34 290.3300000000001L258.3400000000001 298.3300000000001C261.4600000000001 301.4500000000001 261.4600000000001 306.5200000000001 258.3400000000001 309.6400000000001L253.6500000000001 314.3300000000001C250.5300000000001 317.4500000000001 250.5300000000001 322.5200000000001 253.6500000000001 325.6400000000001L264 336L268.69 340.69C274.94 346.94 274.94 357.07 268.69 363.32L240.39 391.62C242.94 391.72 245.43 392.01 248 392.01C326.15 392.01 393.79 346.85 426.68 281.35L413.7 274.86A24.054 24.054 0 0 1 404.46 266.71L384.87 237.33A23.97 23.97 0 0 1 384.87 210.71L402.85 183.74C406.1600000000001 178.77 411.2100000000001 175.22 417 173.77L446.18 166.48C435.39 82.38 372.3400000000001 14.52 290.65 -3.3100000000001z" />
+    <glyph glyph-name="globe-asia"
+      unicode="&#xF57E;"
+      horiz-adv-x="496" d=" M403.31 125.51L391.4 137.42A8.008 8.008 0 0 0 389.06 143.0800000000001V156C389.06 158.21 387.27 160 385.06 160H379C377.2200000000001 160 375.65 158.82 375.1600000000001 157.12L370.9600000000001 142.65A3.9959999999999996 3.9959999999999996 0 0 0 367.1200000000001 139.77H363.3200000000001A3.99 3.99 0 0 0 359.6300000000001 142.23L354.2800000000001 155.08A8.003 8.003 0 0 1 346.8900000000001 160.01H334.8C333.14 160.01 331.51 159.49 330.1600000000001 158.53L306.4500000000001 141.64A26.354999999999997 26.354999999999997 0 0 0 300.8600000000001 138.59L261.5200000000001 122.85A7.996000000000001 7.996000000000001 0 0 1 256.4900000000001 115.42V105.21C256.4900000000001 103.09 257.3300000000001 101.05 258.8300000000001 99.55L270.7400000000001 87.6399999999999C273.7400000000001 84.6399999999999 277.8100000000001 82.9499999999999 282.0500000000002 82.9499999999999H292.3900000000001C293.7000000000001 82.9499999999999 295.0000000000001 83.11 296.2700000000001 83.43L317.5400000000001 88.7499999999999C326.6600000000001 91.0299999999999 336.3100000000001 88.36 342.9600000000001 81.7099999999999L355.9700000000001 68.6999999999999C358.9700000000001 65.6999999999999 363.0400000000001 64.0099999999999 367.2800000000001 64.0099999999999H382.4400000000001C386.6800000000001 64.0099999999999 390.7500000000001 65.6999999999999 393.7500000000001 68.6999999999999L403.3200000000001 78.2699999999999C406.3200000000001 81.2699999999999 408.0100000000001 85.3399999999999 408.0100000000001 89.5799999999999V114.2C408.0000000000001 118.44 406.3100000000001 122.51 403.3100000000001 125.51zM248 440C111.04 440 0 328.9700000000001 0 192S111.04 -56 248 -56S496 55.03 496 192S384.96 440 248 440zM248 -8C148.63 -8 66.2 64.91 50.81 160H113.38C117.62 160 121.69 161.69 124.69 164.69L144.16 184.15C148.02 188.01 154.53 186.95 156.97 182.07L179.59 136.84C182.3 131.42 187.84 127.99 193.9 127.99H200C208.84 127.99 216 135.15 216 143.99V153.36C216 157.6 214.31 161.67 211.31 164.67L205.65 170.33C202.53 173.45 202.53 178.52 205.65 181.64L211.31 187.3C214.31 190.3 218.38 191.99 222.62 191.99H222.93C228.55 191.99 233.76 194.94 236.65 199.76L254.02 228.71C255.82 231.71 260.2200000000001 231.54 261.7800000000001 228.41A7.996000000000001 7.996000000000001 0 0 1 268.93 223.99H272C276.42 223.99 280 227.57 280 231.99V310.1C280 316.16 276.58 321.7 271.1600000000001 324.41L260.3300000000001 329.82C254.8400000000001 332.57 254.3600000000001 340.2200000000001 259.4700000000001 343.63L309.63 382.16C389.83 356.12 448 280.77 448 192C448 81.72 358.28 -8 248 -8z" />
+    <glyph glyph-name="globe-europe"
+      unicode="&#xF7A2;"
+      horiz-adv-x="496" d=" M178.1 324.3C178.1 330.5 173 335.6 166.8 335.6C163.8 335.6 160.9 334.4 158.8 332.3L133.4 306.9C131.3 304.8 130.1 301.9 130.1 298.9C130.1 292.7000000000001 135.2 287.6 141.4 287.6H157.4C160.4 287.6 163.3 288.8 165.4 290.9L174.8 300.3C176.9 302.4 178.1 305.3 178.1 308.3V324.3zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM423.1 95.6H409.7000000000001C404.9000000000001 95.6 400.2000000000001 97.5 396.8000000000001 100.9L379.5000000000001 118.2000000000001C373.5000000000001 124.2000000000001 365.4000000000001 127.6 356.9000000000001 127.6H338.6L295.4000000000001 164.7000000000001C287.2000000000001 171.8000000000001 276.7000000000001 175.6 265.8 175.6H234.6C226.4000000000001 175.6 218.3 173.4 211.2 169.1L168.3 143.4C154.6 135.2000000000001 146.2 120.4 146.2 104.4V80.5000000000001C146.2 66.2000000000001 152.9 52.7 164.4 44.1000000000001L186.6 27.4000000000001C195.2 20.9000000000001 211.2 15.6000000000001 222 15.6000000000001H242.2C251 15.6000000000001 258.2 8.4000000000001 258.2 -0.3999999999999V-7.4999999999999C254.8 -7.6999999999999 251.5 -7.9999999999999 248.1 -7.9999999999999C137.8 -7.9999999999999 48.1 81.7000000000001 48.1 192.0000000000001C48.1 300.3000000000001 134.8 388.6 242.4 391.7000000000001L213.3 370C211.3 368.5 210.1 366.1 210.1 363.6V343.6C210.1 339.2 213.7 335.6 218.1 335.6H234.1C238.5000000000001 335.6 242.1 339.2 242.1 343.6V351.6L258.1 367.6H278.8C285 367.6 290.1 362.6 290.1 356.3C290.1 353.3 288.9000000000001 350.4 286.8 348.3L260 321.5C258.8 320.3 257.3 319.3 255.6 318.8L215.6 305.5C212.3 304.4 210.1 301.4 210.1 297.9C210.1 291.3 207.5 285.1 202.9 280.4L182.8 260.3C179.8 257.3 178.1 253.2 178.1 249V223.6C178.1 214.8 185.3 207.6 194.1 207.6H216.2C222.3 207.6 227.8 211 230.5000000000001 216.4L239.9000000000001 235.1C241.3000000000001 237.8 244.0000000000001 239.5 247.1 239.5H250.2C254.6 239.5 258.2000000000001 235.9 258.2000000000001 231.5S261.8000000000001 223.5 266.2000000000001 223.5H282.2000000000001C286.6 223.5 290.2000000000001 227.1 290.2000000000001 231.5V233.7C290.2000000000001 237.1 292.4000000000001 240.2 295.7000000000001 241.3L327.3000000000001 251.8C333.8000000000001 254 338.2000000000001 260.1 338.2000000000001 267V271.5C338.2000000000001 280.3 345.4000000000001 287.5 354.2000000000001 287.5H390.9000000000001C397.1 287.5 402.2000000000001 282.4 402.2000000000001 276.2V266.8C402.2000000000001 260.6 397.1 255.5 390.9000000000001 255.5H358.9000000000001C355.9000000000001 255.5 353.0000000000001 254.3 350.9000000000001 252.2L341.5000000000001 242.8C339.4000000000001 240.7 338.2000000000001 237.8 338.2000000000001 234.8C338.2000000000001 228.6 343.3000000000001 223.4999999999999 349.5000000000001 223.4999999999999H365.5000000000001C368.5000000000001 223.4999999999999 371.4000000000001 222.2999999999999 373.5000000000001 220.1999999999999L382.9000000000001 210.7999999999999C385.0000000000001 208.6999999999999 386.2000000000001 205.7999999999999 386.2000000000001 202.7999999999999V194.0999999999999L373.7000000000001 181.5999999999999C369.1 176.9999999999999 369.1 169.5999999999999 373.6 164.8999999999999L405.5 132.2999999999999C408.5 129.1999999999999 412.6 127.4999999999999 416.9 127.4999999999999H437.2C433.4 116.4999999999999 428.7 105.7999999999999 423.1 95.5999999999999z" />
+    <glyph glyph-name="globe-snow"
+      unicode="&#xF7A3;"
+      horiz-adv-x="448" d=" M232 368C218.7 368 208 357.3 208 344S218.7 320 232 320S256 330.7 256 344S245.3 368 232 368zM104 288C90.7 288 80 277.3 80 264S90.7 240 104 240S128 250.7 128 264S117.3 288 104 288zM328 304C314.7 304 304 293.3 304 280S314.7 256 328 256S352 266.7 352 280S341.3 304 328 304zM363.3 49C414.8 90 448 153 448 224C448 347.7 347.7 448 224 448S0 347.7 0 224C0 153 33.2 90 84.7 49L38.4 -12.8C22.6 -33.9 37.6 -64 64 -64H384C410.4 -64 425.4 -33.9 409.6 -12.8L363.3 49zM96 -16L120 16H328L352 -16H96zM296.9 64H256V112H313.9C328.1 112 335.9 127 326.8 136.9L276 192H291.4C302.1 192 307.9 203.2 301.1 210.7L233.7 283.9C228.7 289.4 219.4 289.4 214.4 283.9L147 210.7C140.2 203.3 146 192 156.7 192H172L121.3 136.9C112.2 127 120 112 134.2 112H192V64H151.1C90.4 91.8 48 153 48 224C48 321 127 400 224 400S400 321 400 224C400 153 357.6 91.8 296.9 64z" />
+    <glyph glyph-name="globe-stand"
+      unicode="&#xF5F6;"
+      horiz-adv-x="448" d=" M208.07 96C296.4700000000001 96 368.13 167.63 368.13 256C368.13 344.32 296.52 416 208.07 416C119.67 416 48.01 344.37 48.01 256C48.02 167.69 119.62 96 208.07 96zM208.07 368C269.95 368 320.11 317.86 320.11 256S269.9500000000001 144 208.07 144S96.03 194.14 96.03 256S146.19 368 208.07 368zM348.12 -16H248.09V19.53C295.5900000000001 27.45 341.17 49.63 377.8400000000001 86.3C463.09 171.52 470.5700000000001 304.74 400.7500000000001 398.68L411.4500000000001 409.38C417.7000000000001 415.63 417.7000000000001 425.76 411.4500000000001 432.01L400.1400000000001 443.31C393.8900000000001 449.56 383.7600000000001 449.56 377.5000000000001 443.31L334.4700000000001 400.3C337.6400000000001 397.51 340.86 394.78 343.8800000000001 391.77C380.1600000000001 355.51 400.1400000000001 307.29 400.1400000000001 256S380.1600000000001 156.5 343.8800000000001 120.24S259.37 64 208.07 64S108.54 83.97 72.26 120.24C69.24 123.26 66.51 126.47 63.73 129.65L4.69 70.62C-1.56 64.37 -1.56 54.24 4.69 47.99L16 36.69C22.25 30.44 32.38 30.44 38.64 36.69L65.35 63.39C105.38 33.67 152.53 18.09 200.07 16.44V-16H100.03C80.14 -16 64.02 -32.12 64.02 -52C64.02 -58.63 69.39 -64 76.02 -64H372.12C378.75 -64 384.12 -58.63 384.12 -52C384.13 -32.12 368.01 -16 348.12 -16z" />
+    <glyph glyph-name="globe"
+      unicode="&#xF0AC;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM427.3 280H360.1C353.4000000000001 316.5 342.6 348.8 328.9000000000001 374.7C371.8 355.7 406.6 322 427.3000000000001 280zM248 392C266.6 392 296.6 350.8 311.2 280H184.8C199.4 350.8 229.4 392 248 392zM48 192C48 205.7 49.4 219.1 52 232H129.7C128.7 218.9 128 205.7 128 192S128.7 165.1 129.7 152H52C49.4 164.9 48 178.3 48 192zM68.7 104H135.9C142.6 67.5 153.4 35.2 167.1 9.3C124.2 28.3 89.4 62 68.7 104zM135.9 280H68.7C89.4 322 124.2 355.7 167.1 374.7C153.4 348.8 142.6 316.5 135.9 280zM248 -8C229.4 -8 199.4 33.2 184.8 104H311.3C296.6 33.2 266.6 -8 248 -8zM318.1 152H177.9C176.8 164.8 176 178 176 192S176.8 219.2 177.9 232H318.2000000000001C319.3000000000001 219.2 320.1 206 320.1 192S319.2000000000001 164.8 318.1 152zM328.9000000000001 9.3C342.6 35.2 353.3 67.5 360.1 104H427.3C406.6 62 371.8 28.3 328.9 9.3zM366.3 152C367.3 165.1 368 178.3 368 192S367.3 218.9 366.3 232H444C446.6 219.1 448 205.7 448 192S446.6 164.9 444 152H366.3z" />
+    <glyph glyph-name="golf-ball"
+      unicode="&#xF450;"
+      horiz-adv-x="416" d=" M416 240C416 353.8 324.7 446.2 211.3 448C97.3 449.8 2.5 358.6 0.1 244.6C-1.2 183.9 23.7 129.3 64.1 90.5V32C64.1 1.1 89.2 -24 120.1 -24H136.1C140.5 -24 144.1 -27.6 144.1 -32V-52C144.1 -58.6 149.5 -64 156.1 -64H180.1C186.7 -64 192.1 -58.6 192.1 -52V-32C192.1 -1.1 167 24 136.1 24C123.3 24 112.1 21.9 112.1 32V64H304.1V32C304.1 21.9 292.9000000000001 24 280.1 24C249.2 24 224.1 -1.1 224.1 -32V-52C224.1 -58.6 229.5000000000001 -64 236.1 -64H260.1C266.7000000000001 -64 272.1 -58.6 272.1 -52V-32C272.1 -27.6 275.7000000000001 -24 280.1 -24H296.1C327 -24 352.1 1.1 352.1 32V90.5C391.3 128.3 416 181.2 416 240zM208 400C296.2 400 368 328.2 368 240C368 187.3 342.1 141 302.5 112H113.5C73.9 141 48 187.3 48 240C48 328.2 119.8 400 208 400zM256 257.1C256 238.8 241.2 224 222.9 224C208.5 224 196.6 233.3 192 246.1C218.3 236.7 243.5 261.3 233.9 288C246.7 283.4 256 271.5 256 257.1zM336 241.1C336 222.8 321.2 208 302.9 208C288.5 208 276.6 217.3 272 230.1C298.3 220.7 323.5 245.3 313.9 272C326.7 267.4 336 255.5 336 241.1zM272 177.1C272 158.8 257.2 144 238.9 144C224.5 144 212.6 153.3 208 166.1C234.3 156.7000000000001 259.5 181.3 249.9 208C262.7 203.4 272 191.5 272 177.1z" />
+    <glyph glyph-name="golf-club"
+      unicode="&#xF451;"
+      horiz-adv-x="640" d=" M631 439.4L616.6 446.3C608.6 450.2 599.1 446.8 595.2 438.9L465.5 168.7L75.8 241.8C36 249.3 0 218.5 0 178.9V0C0 -35.3 28.6 -64 64 -64H366.7C391.3 -64 413.7 -49.9 424.4 -27.7L638.4 418.1C642.1999999999999 426 638.9 435.6 631 439.4000000000001zM434.9 105.1L381.1 -6.9C378.4 -12.4 372.8 -16 366.7 -16H64C44.9 -16 48 7 48 8H120C124.4 8 128 11.6 128 16V48C128 52.4 124.4 56 120 56H48V104H120C124.4 104 128 107.6 128 112V144C128 148.4 124.4 152 120 152H48V178.9C48 188.5 56.6 196.6 66.9 194.6L423.4 127.6999999999999C433.8 125.8 439.4 114.5999999999999 434.9 105.0999999999999z" />
+    <glyph glyph-name="gopuram"
+      unicode="&#xF664;"
+      horiz-adv-x="512" d=" M496 96H480V208C480 216.84 472.84 224 464 224H448V304C448 312.8400000000001 440.84 320 432 320H416V424C416 437.26 405.25 448 392 448S368 437.26 368 424V416H320V424C320 437.26 309.25 448 296 448S272 437.26 272 424V416H240V424C240 437.26 229.25 448 216 448S192 437.26 192 424V416H144V424C144 437.26 133.25 448 120 448S96 437.26 96 424V320H80C71.16 320 64 312.8400000000001 64 304V224H48C39.16 224 32 216.84 32 208V96H16C7.16 96 0 88.84 0 80V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V48H96V-56C96 -60.42 99.58 -64 104 -64H120C124.42 -64 128 -60.42 128 -56V48H384V-56C384 -60.42 387.58 -64 392 -64H408C412.42 -64 416 -60.42 416 -56V48H464V-48C464 -56.84 471.16 -64 480 -64H496C504.84 -64 512 -56.84 512 -48V80C512 88.84 504.84 96 496 96zM144 368H368V320H144V368zM264 248H248C239.16 248 232 240.84 232 232V224H192V272H320V224H280V232C280 240.84 272.84 248 264 248zM112 272H160V224H112V272zM128 96H80V176H128V96zM352 96H288V128C288 136.84 280.84 144 272 144H240C231.16 144 224 136.84 224 128V96H160V176H352V96zM352 224V272H400V224H352zM432 96H384V176H432V96zM288 16H224C215.16 16 208 8.84 208 0V-64H304V0C304 8.84 296.84 16 288 16z" />
+    <glyph glyph-name="graduation-cap"
+      unicode="&#xF19D;"
+      horiz-adv-x="640" d=" M606.72 300.0900000000001L348.7200000000001 379.66C329.9100000000001 385.44 310.1 385.44 291.2800000000001 379.66L33.28 300.0900000000001C13.38 293.95 0 276.23 0 255.98S13.38 218.01 33.28 211.87L55.92 204.89C53.46 199.7 51.52 194.27 50.22 188.5800000000001C39.53 183.4 32 172.67 32 159.99C32 149.21 37.68 140.14 45.86 134.34L20.33 19.47C18.11 9.48 25.71 0 35.95 0H92.06C102.3 0 109.9 9.48 107.68 19.47L82.14 134.34C90.31 140.14 96 149.21 96 159.99C96 170.59 90.51 179.53 82.57 185.35C83.7 188.9 85.53 192.02 87.42 195.18L142.29 178.26L128 64C128 28.66 213.96 0 320 0S512 28.65 512 64L497.72 178.26L606.72 211.88C626.63 218.02 640 235.74 640 255.99S626.62 293.9500000000001 606.72 300.0900000000001zM462.44 73.53C402.74 39.33 236.54 39.75 177.57 73.53L188.87 163.89L291.29 132.3C302.44 128.87 323.5300000000001 124.53 348.73 132.3L451.15 163.89L462.4400000000001 73.53zM334.59 178.18C325.15 175.27 314.84 175.27 305.4 178.18L154.62 224.7L322.93 256.26C331.62 257.88 337.3400000000001 266.24 335.71 274.93C334.09 283.65 325.62 289.29 317.05 287.69L113.27 249.49C106.63 248.25 100.47 245.95 94.56 243.22L53.19 256L305.41 333.79C314.85 336.7 325.16 336.7 334.6 333.79L586.8199999999999 255.9700000000001L334.5899999999999 178.18z" />
+    <glyph glyph-name="greater-than-equal"
+      unicode="&#xF532;"
+      horiz-adv-x="384" d=" M368 32H16C7.16 32 0 24.84 0 16V-16C0 -24.84 7.16 -32 16 -32H368C376.84 -32 384 -24.84 384 -16V16C384 24.84 376.84 32 368 32zM33.15 137.63L45.03 106.53C48.31 97.94 57.62 93.76 65.83 97.2L341.95 212.76C348.03 215.3 352.01 221.46 352.01 228.3V283.7C352.01 290.54 348.03 296.7 341.95 299.24L65.82 414.8C57.61 418.23 48.3 414.06 45.02 405.4700000000001L33.14 374.37C29.86 365.79 33.85 356.05 42.06 352.61L272.9100000000001 256L42.06 159.39C33.86 155.95 29.87 146.21 33.15 137.63z" />
+    <glyph glyph-name="greater-than"
+      unicode="&#xF531;"
+      horiz-adv-x="320" d=" M311.1600000000001 229.47L37.47 366.31C29.57 370.26 19.95 367.06 16 359.15L1.69 330.52C-2.26 322.62 0.94 313.01 8.85 309.06L242.96 192L8.85 74.94C0.95 70.99 -2.26 61.38 1.69 53.48L16 24.85C19.95 16.95 29.56 13.74 37.47 17.69L311.15 154.53C316.57 157.24 319.99 162.78 319.99 168.84V215.15C320 221.22 316.58 226.76 311.16 229.47z" />
+    <glyph glyph-name="grimace"
+      unicode="&#xF57F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208zM344 192H152C125.5 192 104 170.5 104 144V112C104 85.5 125.5 64 152 64H344C370.5 64 392 85.5 392 112V144C392 170.5 370.5 192 344 192zM176 96H152C143.2 96 136 103.2 136 112V120H176V96zM176 136H136V144C136 152.8 143.2 160 152 160H176V136zM240 96H192V120H240V96zM240 136H192V160H240V136zM304 96H256V120H304V96zM304 136H256V160H304V136zM360 112C360 103.2 352.8 96 344 96H320V120H360V112zM360 136H320V160H344C352.8 160 360 152.8 360 144V136z" />
+    <glyph glyph-name="grin-alt"
+      unicode="&#xF581;"
+      horiz-adv-x="496" d=" M200.3 200C212.7 218.7 215.4 237.3 216 256C215.5 274.7 212.7 293.3 200.3 312C192.3 324 175.2 323.4 167.6 312C155.2 293.3 152.5 274.7 151.9 256C152.4 237.3 155.2000000000001 218.7 167.6 200C175.7 188 192.8 188.6 200.3 200zM328.3 200C340.7 218.7 343.4000000000001 237.3 344 256C343.5 274.7 340.7 293.3 328.3 312C320.3 324 303.2 323.4 295.6 312C283.2000000000001 293.3 280.5 274.7 279.9000000000001 256C280.4000000000001 237.3 283.2000000000001 218.7 295.6 200C303.7000000000001 188 320.8 188.6 328.3 200zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.5 146.5 123 138.1 124.7 128.1C132.6 80.9 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4z" />
+    <glyph glyph-name="grin-beam-sweat"
+      unicode="&#xF583;"
+      horiz-adv-x="496" d=" M440 288C469.5 288 493.3 314.3 493.3 346.7C493.3 371.7 461.6 422.2 447.1 444C443.5 449.3 436.4000000000001 449.3 432.9000000000001 444C418.4000000000001 422.2 386.7000000000001 371.7 386.7000000000001 346.7C386.7000000000001 314.3 410.5000000000001 288 440.0000000000001 288zM248 48C299.9 48 363.3 80.9 371.3 128C373 137.9 363.6 146.5 353.6 143.3C327.7000000000001 135 289.2000000000001 130.2 248.0000000000001 130.2S168.4 135 142.4 143.3C132.6 146.4 123 138 124.7 128C132.7000000000001 80.9 196.1 48 248.0000000000001 48zM378.3 216.3C381.9000000000001 217.4 384.3 220.8 384 224.6C380.7 266.7000000000001 351.8 296 328 296S275.3 266.7000000000001 272 224.6C271.7 220.9 274.1 217.4 277.7 216.3C281.2 215.2 285.1 216.8 287 220L296.5 237C304.2 250.7 315.7 258.6 328 258.6S351.8 250.7 359.5 237L369 220C371.1 216.4 375.2 215.4 378.3 216.3zM483.6 269.2000000000001C459 253.5000000000001 437.6 256.3 437.2000000000001 256.3C444.1 236.1 448.0000000000001 214.5 448.0000000000001 192C448.0000000000001 81.7 358.3000000000001 -8 248.0000000000001 -8S48 81.7 48 192S137.7 392 248 392C287.8 392 324.8 380.2 356 360.1C357.7 369.6 362.3 384.2 373.2 405.8C336.4 427.4 293.7 440 248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192C496 219 491.6 244.9 483.6 269.2zM168 258.6C180.3 258.6 191.8 250.7 199.5 237L209 220C211.1 216.3 215.2 215.3 218.3 216.3C221.9 217.4 224.3 220.8 224 224.6C220.7 266.7000000000001 191.8 296 168 296S115.3 266.7000000000001 112 224.6C111.7 220.9 114.1 217.4 117.7 216.3C121.2 215.2 125.1 216.8 127 220L136.5 237C144.2 250.8 155.7 258.6 168 258.6z" />
+    <glyph glyph-name="grin-beam"
+      unicode="&#xF582;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.6 146.5 123 138.1 124.7 128.1C132.6 80.9999999999999 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4zM117.7 216.3C121.2 215.2 125.1 216.8 127 220L136.5 237C144.2 250.7 155.7 258.6 168 258.6S191.8 250.7 199.5 237L209 220C211.1 216.3 215.2 215.3 218.3 216.3C221.9 217.4 224.3 220.8 224 224.6C220.7 266.7 191.8 296 168 296S115.3 266.7 112 224.6C111.7 220.9 114.1 217.4 117.7 216.3zM277.7000000000001 216.3C281.2000000000001 215.2 285.1 216.8 287.0000000000001 220L296.5000000000001 237C304.2000000000001 250.7 315.7000000000001 258.6 328.0000000000001 258.6S351.8000000000001 250.7 359.5000000000001 237L369.0000000000001 220C371.1000000000001 216.3 375.2000000000001 215.3 378.3000000000001 216.3C381.9000000000001 217.4 384.3000000000001 220.8 384.0000000000001 224.6C380.7000000000001 266.7 351.8000000000001 296 328.0000000000001 296S275.3000000000001 266.7 272.0000000000001 224.6C271.7000000000001 220.9 274.1000000000001 217.4 277.7000000000001 216.3z" />
+    <glyph glyph-name="grin-hearts"
+      unicode="&#xF584;"
+      horiz-adv-x="496" d=" M353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.6 146.5 123 138.1 124.7 128.1C132.6 80.9 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4zM200.8 192.3C205.3 191.1 210 193.8 211.3 198.3L230.7 268.2C236.3 288.5 223.3 309.3 201.9 312.7C183.3 315.7 165.5 302.9 160.4 284.8L158.4 277.7L151.3 279.6C133.1 284.3 113.1 275.3 106.4 257.6C98.7 237.4 110.2 215.7 130.6 210.4L200.8 192.3zM389.6 257.6C382.9000000000001 275.2 362.9000000000001 284.3 344.7000000000001 279.6L337.6 277.7L335.6 284.8C330.6 302.9 312.8 315.7 294.1 312.7C272.7000000000001 309.3 259.7000000000001 288.5 265.3 268.2L284.7 198.3C285.9 193.8 290.6 191.1 295.2 192.3L365.4 210.5C385.8 215.8 397.3 237.4 389.6 257.5999999999999zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8z" />
+    <glyph glyph-name="grin-squint-tears"
+      unicode="&#xF586;"
+      horiz-adv-x="512" d=" M117.1 63.9C91.3 60.2 33.1 50.2 16.2 33.3C-5.7 11.4 -5.3 -24.6 17.1 -47.0000000000001S75.4 -69.8000000000001 97.4 -47.9C114.3 -31 124.3 27.2 128 53C128.8 59.4 123.4 64.8 117.1 63.9zM75.9 105.6C40.3 180 53 271.9 114.6 333.4C152.4 371.2 202.6 392 256 392C292.2 392 326.8 382.2 357.2 364.3C361 384.6 365.2 400.4 369.2 412.6C333.8 430.8 294.9 440 256 440C192.5 440 129.1 415.8 80.6 367.4C6.5 293.3 -10.7 184 28.6 93.4C40.8 97.5 56.3 101.7 75.9 105.6zM428.2 293.2C473.2 216.6 463.1 116.3 397.4 50.6C359.6 12.8 309.4 -8.0000000000001 256 -8.0000000000001C225.5 -8.0000000000001 196.2 -1.0000000000001 169.6 11.8C165.7 -7.7 161.6 -23.2 157.4 -35.4C188.8 -49.0000000000001 222.4 -56.0000000000001 256.1 -56.0000000000001C319.6 -56.0000000000001 383 -31.8000000000001 431.5 16.5999999999999C509.6 94.6999999999999 524.6 211.9999999999999 476.7 305.2C464.4 301.2 448.5 297.0999999999999 428.2 293.2zM394.9 320.1C420.7 323.8 478.9 333.8 495.8 350.7C517.6999999999999 372.6 517.3 408.6 494.9 431S436.6 453.8 414.6 431.9C397.7 415 387.7 356.8 384 331C383.2 324.6 388.6 319.2 394.9 320.1zM207.9 211.8C204.9 214.8 200.7 216 196.5 215L106 192.3C100.3 190.9 96.5 185.6 96.9 179.7C97.4 173.9 102 169.2 107.8 168.7L160.1 163.9L164.9 111.6C165.4 105.8 170.1 101.2 175.9 100.7H176.8000000000001C182.3000000000001 100.7 187.1000000000001 104.4 188.5 109.8L211.1 200.3C212.1 204.5 210.9 208.8 207.9 211.8zM247.6 236.9L338.1 259.5C343.8 260.9 347.6 266.2 347.2 272.0999999999999C346.7 277.9 342.1 282.5999999999999 336.3 283.0999999999999L284 287.9L279.2 340.2C278.7 346 274 350.6 268.2 351.1C262.6 351.2 257 347.7 255.6 342L233 251.5C232 247.4 233.2 243.1 236.2 240.1C241.2 235.1 247.5 236.9 247.6 236.9zM299.6 148.4C270.5 119.3 239.9 95.5 215.7 83C206.5 78.2 205.7 65.5 214 59.6C252.9 31.9 321 53.4 357.7 90.2000000000001S416 195 388.3 233.9C382.5 242.1 369.8 241.5 364.9000000000001 232.2C352.6 208 328.7000000000001 177.5 299.6 148.4z" />
+    <glyph glyph-name="grin-squint"
+      unicode="&#xF585;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.5 146.5 123 138 124.7 128.1C132.6 80.9999999999999 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4zM118.9 184.2C122.5 180 128.8000000000001 178.5 134.2000000000001 181.7L214.2000000000001 229.7C217.8000000000001 231.9 220.0000000000001 235.8 220.0000000000001 240S217.8000000000001 248.1 214.2000000000001 250.3L134.2000000000001 298.3C129.1000000000001 301.3 122.8000000000001 300.2000000000001 118.9000000000001 295.8C115.1000000000001 291.3 115.1000000000001 284.8 118.8000000000001 280.3L152.4000000000001 240L118.8000000000001 199.7C115.0000000000001 195.2 115.1000000000001 188.6 118.9000000000001 184.2zM361.8000000000001 181.7C367.2000000000001 178.5 373.5000000000001 180 377.1000000000001 184.2C380.9000000000001 188.7 380.9000000000001 195.2 377.2000000000001 199.7L343.6 240L377.2000000000001 280.3C381.0000000000001 284.8 380.9000000000001 291.3 377.1 295.8C373.3 300.2000000000001 366.9000000000001 301.2000000000001 361.8 298.3L281.8 250.3C278.2 248.1 276 244.2 276 240S278.2 231.9 281.8 229.7L361.8 181.7z" />
+    <glyph glyph-name="grin-stars"
+      unicode="&#xF587;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.6 146.5 123 138.1 124.7 128.1C132.6 80.9 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4zM125.7 200.9C124.7 194.7 131.1 189.9 136.7 193L168 209.3L199.3000000000001 193C204.9 189.9 211.3000000000001 194.7 210.3000000000001 200.9L204.3000000000001 235.8L229.7000000000001 260.4C234.2000000000001 264.9 231.6000000000001 272.6 225.4000000000001 273.6L190.5 278.6L175 310.2C172.1 316 164 316 161.1 310.2L145.6 278.6L110.7 273.6C104.5 272.7 101.8 265 106.4 260.4L131.8 235.8L125.7 200.9zM385.4 273.6L350.5 278.6L335 310.2C332.1 316 324 316 321.1 310.2L305.6 278.6L270.7000000000001 273.6C264.5000000000001 272.7 261.8000000000001 265 266.4000000000001 260.4L291.8 235.8L285.8 200.9C284.8 194.7 291.2 189.9 296.8 193L328.1 209.3L359.4000000000001 193C365.0000000000001 189.9 371.4000000000001 194.7 370.4000000000001 200.9L364.4000000000001 235.8L389.8 260.4C394.3 265 391.6 272.6 385.4000000000001 273.6z" />
+    <glyph glyph-name="grin-tears"
+      unicode="&#xF588;"
+      horiz-adv-x="640" d=" M117.1 191.9C91.3 188.2 33.1 178.2 16.2 161.3C-5.7 139.4 -5.3 103.4 17.1 80.9999999999999S75.4 58.1999999999999 97.4 80.1C114.3 97 124.3 155.2 128 181C128.8 187.4 123.4 192.8 117.1 191.9zM623.8 161.3C606.9 178.1999999999999 548.6999999999999 188.1999999999999 522.9 191.9C516.6 192.8 511.2 187.4 512.1 181.1C515.8000000000001 155.3 525.8000000000001 97.1 542.7 80.1999999999999C564.6 58.3 600.6 58.6999999999999 623 81.0999999999999C645.3 103.3999999999999 645.7 139.3999999999999 623.8 161.2999999999999zM497.1999999999999 99.6C463.8 35.7 396.9 -8 320 -8C243.1 -8 176.2 35.7 142.8 99.6C130.3 62.2000000000001 117.6 55.7 114.5 53.1C159.1 -12.7 234.5 -56 320 -56S480.9 -12.7 525.5 53.1C522.3 55.8 509.6 62.3 497.2 99.6zM122.7 223.5C137.9 318.8 220.5 392 320 392C419.5 392 502.1 318.8 517.3 223.5C519.4 223.7 522.5 225.9 566.8 216.5C554.4 342 448.7 440 320 440S85.6 342 73.2 216.6C117.7 226 120.3 223.8 122.7 223.5zM320 48C371.9 48 435.3 80.9 443.3 128C445 137.9 435.6 146.5 425.6 143.3C399.7000000000001 135 361.2000000000001 130.2 320 130.2S240.4 135 214.4 143.3C204.6 146.4 195 138 196.7 128C204.7 80.9 268.1 48 320 48zM450.3 216.3C453.9 217.4 456.3 220.8 456 224.6C452.7 266.7000000000001 423.8 296 400 296S347.3 266.7000000000001 344 224.6C343.7 220.9 346.1 217.4 349.7 216.3C353.2 215.2 357.1 216.8 359 220L368.5 237C376.2 250.7 387.7 258.6 400 258.6S423.8 250.7 431.5 237L441 220C443.1 216.4 447.2 215.4 450.3 216.3zM240 258.6C252.3 258.6 263.8 250.7 271.5 237L281 220C283.1 216.3 287.2 215.3 290.3 216.3C293.9000000000001 217.4 296.3 220.8 296 224.6C292.7 266.7000000000001 263.8 296 240 296S187.3 266.7000000000001 184 224.6C183.7 220.9 186.1 217.4 189.7 216.3C193.2 215.2 197.1 216.8 199 220L208.5 237C216.2 250.8 227.7 258.6 240 258.6z" />
+    <glyph glyph-name="grin-tongue-squint"
+      unicode="&#xF58A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM312 40C312 4.4 282.9 -24.5 247.1 -24C212 -23.5 184 5.8 184 41V83.8L201.7 92.6C216.7 100.1 233.2 90.9 236.6 76.1L239.4 64C241.5 54.8 254.6 54.8 256.7 64L259.5 76.1C262.9 90.9 279.3 100.2000000000001 294.4 92.6L312.1 83.8V40zM340.2 14.7C342.4 22.8 344 31.2 344 40V83.5C358.2 95.9 368.4 111 371.3 128C373 137.9 363.6 146.5 353.6 143.3C327.7000000000001 135 289.2000000000001 130.2 248.0000000000001 130.2S168.4 135 142.4 143.3C132.5 146.4 123 138 124.7 128C127.6 111 137.8000000000001 95.9 152 83.5V40C152 31.2 153.6 22.8 155.8000000000001 14.7C91.8 48.1 48 115 48 192C48 302.3 137.7 392 248 392S448 302.3 448 192C448 115 404.2 48.1 340.2 14.7zM377.1 295.8C373.3 300.2000000000001 366.8 301.3 361.8 298.3L281.8 250.3C278.2 248.1 276 244.2 276 240S278.2 231.9 281.8 229.7L361.8 181.7C367.2 178.5 373.5 180 377.1 184.2C380.9 188.7 380.9 195.2 377.2 199.7L343.6 240L377.2000000000001 280.3C381.0000000000001 284.8 380.9000000000001 291.4 377.1 295.8zM214.2 250.3L134.2 298.3C129.2 301.3 122.8 300.3 118.9 295.8C115.1 291.3 115.1 284.8 118.8 280.3L152.4 240L118.8 199.7C115 195.2 115.1 188.7 118.9 184.2C122.5 180 128.8 178.5 134.2 181.7L214.2 229.7C217.8 231.9 220 235.8 220 240S217.8 248.1 214.2 250.3z" />
+    <glyph glyph-name="grin-tongue-wink"
+      unicode="&#xF58B;"
+      horiz-adv-x="496" d=" M152 268C126.3 268 96.1 251.1 92.2 225.9C91.4 220.9 93.9 215.9 98.3 213.5C102.7 211.1 108.2 211.7 112 215.1L121.5 223.6C136.3 236.8 167.7 236.8 182.5 223.6L192 215.1C194.5 212.9 200 210.4 205.7 213.5C210.1 215.9 212.6 220.9 211.8 225.9C207.9 251.1 177.7 268 152 268zM328 320C283.8 320 248 284.2 248 240S283.8 160 328 160S408 195.8 408 240S372.2 320 328 320zM328 192C301.5 192 280 213.5 280 240S301.5 288 328 288S376 266.5 376 240S354.5 192 328 192zM328 264C314.7 264 304 253.3 304 240S314.7 216 328 216S352 226.7 352 240S341.3 264 328 264zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM312 40C312 4.4 282.9 -24.5 247.1 -24C212 -23.5 184 5.8 184 41V83.8L201.7 92.6C216.7 100.1 233.2 90.9 236.6 76.1L239.4 64C241.5 54.8 254.6 54.8 256.7 64L259.5 76.1C262.9 90.9 279.3 100.2000000000001 294.4 92.6L312.1 83.8V40zM340.2 14.7C342.4 22.8 344 31.2 344 40V83.5C358.2 95.9 368.4 111 371.3 128C373 137.9 363.6 146.5 353.6 143.3C327.7000000000001 135 289.2000000000001 130.2 248.0000000000001 130.2S168.4 135 142.4 143.3C132.5 146.4 123 138 124.7 128C127.6 111 137.8000000000001 95.9 152 83.5V40C152 31.2 153.6 22.8 155.8000000000001 14.7C91.8 48.1 48 115 48 192C48 302.3 137.7 392 248 392S448 302.3 448 192C448 115 404.2 48.1 340.2 14.7z" />
+    <glyph glyph-name="grin-tongue"
+      unicode="&#xF589;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM312 40C312 4.4 282.9 -24.5 247.1 -24C212 -23.5 184 5.8 184 41V83.8L201.7 92.6C216.7 100.1 233.2 90.9 236.6 76.1L239.4 64C241.5 54.8 254.6 54.8 256.7 64L259.5 76.1C262.9 90.9 279.3 100.2000000000001 294.4 92.6L312.1 83.8V40zM340.2 14.7C342.4 22.8 344 31.2 344 40V83.5C358.2 95.9 368.4 111 371.3 128C373 137.9 363.6 146.5 353.6 143.3C327.7000000000001 135 289.2000000000001 130.2 248.0000000000001 130.2S168.4 135 142.4 143.3C132.5 146.4 123 138 124.7 128C127.6 111 137.8000000000001 95.9 152 83.5V40C152 31.2 153.6 22.8 155.8000000000001 14.7C91.8 48.1 48 115 48 192C48 302.3 137.7 392 248 392S448 302.3 448 192C448 115 404.2 48.1 340.2 14.7zM168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="grin-wink"
+      unicode="&#xF58C;"
+      horiz-adv-x="496" d=" M328 268C302.31 268 272.12 251.08 268.14 225.88C266.39 214.66 279.64 207.64 287.97 215.04L297.52 223.52C312.33 236.71 343.68 236.71 358.49 223.52L368.04 215.04C376.5200000000001 207.61 389.6 214.79 387.87 225.88C383.88 251.08 353.69 268 328 268zM168 208C185.67 208 200 222.33 200 240S185.67 272 168 272S136 257.67 136 240S150.33 208 168 208zM353.55 143.36C327.62 135.06 289.15 130.3 248 130.3S168.38 135.05 142.45 143.36C132.51 146.49 123.05 137.99 124.74 128.0200000000001C132.67 80.87 196.06 48 248 48S363.33 80.87 371.26 128.02C372.94 137.91 363.59 146.5 353.55 143.36zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8z" />
+    <glyph glyph-name="grin"
+      unicode="&#xF580;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM353.6 143.4C327.7000000000001 135.1 289.2000000000001 130.3 248.0000000000001 130.3S168.4 135.1 142.4 143.4C132.5 146.5 123 138 124.7 128.1C132.6 80.9999999999999 196 48.1 248.0000000000001 48.1S363.3 80.9999999999999 371.3 128.1C372.9000000000001 137.9 363.6 146.5 353.6 143.4zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208z" />
+    <glyph glyph-name="grip-horizontal"
+      unicode="&#xF58D;"
+      horiz-adv-x="512" d=" M488 352H392C378.75 352 368 341.26 368 328V232C368 218.75 378.75 208 392 208H488C501.25 208 512 218.75 512 232V328C512 341.26 501.25 352 488 352zM464 256H416V304H464V256zM488 176H392C378.75 176 368 165.26 368 152V56C368 42.75 378.75 32 392 32H488C501.25 32 512 42.75 512 56V152C512 165.26 501.25 176 488 176zM464 80H416V128H464V80zM120 352H24C10.75 352 0 341.26 0 328V232C0 218.75 10.75 208 24 208H120C133.25 208 144 218.75 144 232V328C144 341.26 133.25 352 120 352zM96 256H48V304H96V256zM120 176H24C10.75 176 0 165.26 0 152V56C0 42.75 10.75 32 24 32H120C133.25 32 144 42.75 144 56V152C144 165.26 133.25 176 120 176zM96 80H48V128H96V80zM304 352H208C194.75 352 184 341.26 184 328V232C184 218.75 194.75 208 208 208H304C317.25 208 328 218.75 328 232V328C328 341.26 317.25 352 304 352zM280 256H232V304H280V256zM304 176H208C194.75 176 184 165.26 184 152V56C184 42.75 194.75 32 208 32H304C317.25 32 328 42.75 328 56V152C328 165.26 317.25 176 304 176zM280 80H232V128H280V80z" />
+    <glyph glyph-name="grip-lines-vertical"
+      unicode="&#xF7A5;"
+      horiz-adv-x="256" d=" M96 -16V400C96 408.8 88.8 416 80 416H64C55.2 416 48 408.8 48 400V-16C48 -24.8 55.2 -32 64 -32H80C88.8 -32 96 -24.8 96 -16zM208 -16V400C208 408.8 200.8 416 192 416H176C167.2 416 160 408.8 160 400V-16C160 -24.8 167.2 -32 176 -32H192C200.8 -32 208 -24.8 208 -16z" />
+    <glyph glyph-name="grip-lines"
+      unicode="&#xF7A4;"
+      horiz-adv-x="448" d=" M432 160H16C7.2 160 0 152.8 0 144V128C0 119.2 7.2 112 16 112H432C440.8 112 448 119.2 448 128V144C448 152.8 440.8 160 432 160zM432 272H16C7.2 272 0 264.8 0 256V240C0 231.2 7.2 224 16 224H432C440.8 224 448 231.2 448 240V256C448 264.8 440.8 272 432 272z" />
+    <glyph glyph-name="grip-vertical"
+      unicode="&#xF58E;"
+      horiz-adv-x="320" d=" M120 448H24C10.75 448 0 437.26 0 424V328C0 314.75 10.75 304 24 304H120C133.26 304 144 314.75 144 328V424C144 437.26 133.26 448 120 448zM96 352H48V400H96V352zM296 448H200C186.75 448 176 437.26 176 424V328C176 314.75 186.75 304 200 304H296C309.26 304 320 314.75 320 328V424C320 437.26 309.26 448 296 448zM272 352H224V400H272V352zM120 80H24C10.75 80 0 69.26 0 56V-40C0 -53.25 10.75 -64 24 -64H120C133.26 -64 144 -53.25 144 -40V56C144 69.26 133.26 80 120 80zM96 -16H48V32H96V-16zM296 80H200C186.75 80 176 69.26 176 56V-40C176 -53.25 186.75 -64 200 -64H296C309.26 -64 320 -53.25 320 -40V56C320 69.26 309.26 80 296 80zM272 -16H224V32H272V-16zM120 264H24C10.75 264 0 253.26 0 240V144C0 130.75 10.75 120 24 120H120C133.26 120 144 130.75 144 144V240C144 253.26 133.26 264 120 264zM96 168H48V216H96V168zM296 264H200C186.75 264 176 253.26 176 240V144C176 130.75 186.75 120 200 120H296C309.26 120 320 130.75 320 144V240C320 253.26 309.26 264 296 264zM272 168H224V216H272V168z" />
+    <glyph glyph-name="guitar"
+      unicode="&#xF7A6;"
+      horiz-adv-x="512" d=" M502.6 393.4L457.4 438.6C444.9 451.1 424.6 451.1 412.1 438.6L344.2 370.7C331.7 358.2 331.7 337.9 344.2 325.4L349.8999999999999 319.7L321 290.9C295.3999999999999 309.8 266.2 320 238.6 320C212 320 187 311 168.5 292.4C158.0999999999999 282 150.8 269.6 146.4 255.9C139.9 235.6 121.1 220.3 100.4 218.3C74.4999999999999 215.9 50.5 205.8 32.1 187.3C-17.5 137.6999999999999 -8.7 48.3 51.8 -12.2C86 -46.4 129.3 -64.1 169.5 -64.1C200.5 -64.1 229.7 -53.6 251.3 -32C269.8 -13.5 279.9 10.4 282.3 36.3C284.2 56.9 299.6 75.7 319.9 82.3C333.5 86.7 346 94 356.4 104.4C394.2 142.2000000000001 392.3 206.7000000000001 355.1 257L383.8 285.7000000000001L389.5 280C402 267.5 422.3 267.5 434.7 280L502.5999999999999 347.9000000000001C515.0999999999999 360.6 515.0999999999999 380.9000000000001 502.5999999999999 393.4000000000001zM335.6 181.8C336.6 171.5 336.3 152.3 322.5 138.5C317.8 133.8 312 130.3 305.3 128.2C266.8 115.8 238.4 80.8 234.7 41.1C233.2 25.2 227.4 12.1 217.5 2.2C202.6 -12.8 183.2000000000001 -15.9 169.7000000000001 -15.9C140.5000000000001 -15.9 109.9000000000001 -2.1 85.9000000000001 21.9C44.9000000000001 62.9 35.8000000000001 123.2000000000001 66.2000000000001 153.5C76.1000000000001 163.4 89.2000000000001 169.2 105.1000000000001 170.7C144.8000000000001 174.5 179.8000000000001 202.8 192.2000000000001 241.4C194.4 248.2 197.9 254 202.5000000000001 258.6C213.7000000000001 269.8 228.3000000000001 272.1 238.6000000000001 272.1C254.5000000000001 272.1 271.3000000000001 266.3 286.6 256.6L220.3 190.3C216.4 191.3 212.3 192.1 208 192.1C181.5 192.1 160 170.6 160 144.1S181.5 96.1 208 96.1S256 117.6 256 144.1C256 148.4 255.3 152.4 254.2 156.4L320.5 222.7C328.8 209.6 334.3 195.6 335.6 181.8zM412.1 325.5L389.5 348.1L434.7 393.3L457.3 370.7L412.1 325.5z" />
+    <glyph glyph-name="h-square"
+      unicode="&#xF0FD;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM344 308V76C344 69.373 338.627 64 332 64H308C301.373 64 296 69.373 296 76V168H152V76C152 69.373 146.627 64 140 64H116C109.373 64 104 69.373 104 76V308C104 314.627 109.373 320 116 320H140C146.627 320 152 314.627 152 308V216H296V308C296 314.627 301.373 320 308 320H332C338.627 320 344 314.627 344 308z" />
+    <glyph glyph-name="h1"
+      unicode="&#xF313;"
+      horiz-adv-x="640" d=" M156.369 65.154V44C156.369 37.373 150.996 32 144.369 32H36.123C29.496 32 24.123 37.373 24.123 44V65.154C24.123 71.781 29.496 77.154 36.123 77.154H62.636V307.284H36.123C29.496 307.284 24.123 312.657 24.123 319.284V340C24.123 346.627 29.496 352 36.123 352H144.369C150.996 352 156.369 346.627 156.369 340V319.284C156.369 312.657 150.996 307.284 144.369 307.284H117.418V215.452H266.582V307.284H239.631C233.004 307.284 227.631 312.657 227.631 319.284V340C227.631 346.627 233.004 352 239.631 352H347.877C354.504 352 359.877 346.627 359.877 340V319.284C359.877 312.657 354.504 307.284 347.877 307.284H321.363V77.154H347.877C354.504 77.154 359.877 71.781 359.877 65.154V44C359.877 37.373 354.504 32 347.877 32H239.632C233.005 32 227.632 37.373 227.632 44V65.154C227.632 71.781 233.005 77.154 239.632 77.154H266.5830000000001V168.548H117.418V77.154H144.369C150.997 77.154 156.369 71.781 156.369 65.154zM533.293 352H503.904A12 12 0 0 1 495.547 348.612L428.124 283.184C423.3730000000001 278.573 423.2530000000001 270.985 427.858 266.227L445.0540000000001 248.457C449.6910000000001 243.665 457.346 243.573 462.098 248.252L486.27 272.058A133.088 133.088 0 0 1 492.2790000000001 278.204C492.2670000000001 277.054 492.2610000000001 275.886 492.2610000000001 274.715V80.654H435.9870000000001C429.3600000000001 80.654 423.9870000000001 75.281 423.9870000000001 68.654V44C423.9870000000001 37.373 429.3600000000001 32 435.9870000000001 32H600.691C607.318 32 612.691 37.373 612.691 44V68.655C612.691 75.282 607.318 80.655 600.691 80.655H545.292V340C545.293 346.627 539.9200000000001 352 533.293 352z" />
+    <glyph glyph-name="h2"
+      unicode="&#xF314;"
+      horiz-adv-x="640" d=" M465.047 80.582H605.572C612.199 80.582 617.572 75.209 617.572 68.582V44C617.572 37.373 612.199 32 605.572 32H418.861A12.003000000000002 12.003000000000002 0 0 0 406.966 42.404C406.1910000000001 48.146 405.555 54.531 405.555 61.098C405.555 174.2480000000001 556.755 191.5220000000001 556.755 259.4940000000001C556.755 286.786 536.662 305.123 506.757 305.123C484.333 305.123 465.594 291.815 452.42 273.318C448.639 268.01 441.3470000000001 266.638 435.935 270.269L414.363 284.744C409.055 288.306 407.469 295.402 410.753 300.887C415.885 309.459 422.363 317.678 431.281 326.006C446.308 340.038 472.132 356.765 509.816 356.765C570.431 356.765 612.7660000000001 318.024 612.7660000000001 262.555C612.7660000000001 161.049 473.6930000000001 141.832 465.0470000000001 80.582zM156.369 65.154V44C156.369 37.373 150.9960000000001 32 144.369 32H36.123C29.496 32 24.123 37.373 24.123 44V65.154C24.123 71.781 29.496 77.154 36.123 77.154H62.636V307.284H36.123C29.496 307.284 24.123 312.657 24.123 319.284V340C24.123 346.627 29.496 352 36.123 352H144.369C150.996 352 156.369 346.627 156.369 340V319.284C156.369 312.657 150.996 307.284 144.369 307.284H117.418V215.452H266.582V307.284H239.631C233.004 307.284 227.631 312.657 227.631 319.284V340C227.631 346.627 233.004 352 239.631 352H347.877C354.504 352 359.877 346.627 359.877 340V319.284C359.877 312.657 354.504 307.284 347.877 307.284H321.363V77.154H347.877C354.504 77.154 359.877 71.781 359.877 65.154V44C359.877 37.373 354.504 32 347.877 32H239.632C233.005 32 227.632 37.373 227.632 44V65.154C227.632 71.781 233.005 77.154 239.632 77.154H266.5830000000001V168.548H117.418V77.154H144.369C150.997 77.154 156.369 71.781 156.369 65.154z" />
+    <glyph glyph-name="h3"
+      unicode="&#xF315;"
+      horiz-adv-x="640" d=" M616.045 131.935C616.045 74.147 570.154 27.237 505.665 27.237C466.706 27.237 430.541 43.126 405.801 66.812C401.4959999999999 70.934 400.925 77.618 404.408 82.455L420.472 104.766C424.673 110.601 432.982 111.406 438.323 106.593C456.818 89.9260000000001 479.774 79.315 503.918 79.315C536.657 79.315 561.346 101.185 561.346 130.187C561.346 153.856 544.017 181.497 495.179 181.497H478.03A12 12 0 0 0 467.022 188.72L460.281 204.254A12 12 0 0 0 462.15 216.807L526.8230000000001 292.819A253.429 253.429 0 0 0 536.6390000000001 303.673C533.0680000000001 303.524 528.8530000000002 303.421 524.0200000000001 303.421H426.0780000000001C419.4510000000001 303.421 414.0780000000001 308.794 414.0780000000001 315.421V340C414.0780000000001 346.627 419.4510000000001 352 426.0780000000001 352H597.49C604.117 352 609.49 346.627 609.49 340V321.398C609.49 318.506 608.446 315.711 606.549 313.528L530.827 226.369C579.1179999999999 217.339 616.045 183.788 616.045 131.935zM156.369 65.154V44C156.369 37.373 150.996 32 144.369 32H36.123C29.496 32 24.123 37.373 24.123 44V65.154C24.123 71.781 29.496 77.154 36.123 77.154H62.636V307.284H36.123C29.496 307.284 24.123 312.657 24.123 319.284V340C24.123 346.627 29.496 352 36.123 352H144.369C150.996 352 156.369 346.627 156.369 340V319.284C156.369 312.657 150.996 307.284 144.369 307.284H117.418V215.452H266.582V307.284H239.631C233.004 307.284 227.631 312.657 227.631 319.284V340C227.631 346.627 233.004 352 239.631 352H347.877C354.504 352 359.877 346.627 359.877 340V319.284C359.877 312.657 354.504 307.284 347.877 307.284H321.363V77.154H347.877C354.504 77.154 359.877 71.781 359.877 65.154V44C359.877 37.373 354.504 32 347.877 32H239.632C233.005 32 227.632 37.373 227.632 44V65.154C227.632 71.781 233.005 77.154 239.632 77.154H266.5830000000001V168.548H117.418V77.154H144.369C150.997 77.154 156.369 71.781 156.369 65.154z" />
+    <glyph glyph-name="hammer-war"
+      unicode="&#xF6E4;"
+      horiz-adv-x="384" d=" M352.07 416C348.24 416 357.15 417.29 216 393.77V436C216 442.63 210.63 448 204 448H180C173.37 448 168 442.63 168 436V393.77C26.22 417.4 35.77 416 31.93 416C14.64 416 0 401.95 0 383.99V192.01C0 174.05 14.64 160 31.94 160C35.8 160 26.86 158.71 168 182.23V-52C168 -58.63 173.37 -64 180 -64H204C210.63 -64 216 -58.63 216 -52V182.23C357.77 158.6 348.23 160 352.06 160C369.36 160 384 174.05 384 192.01V383.99C384 401.95 369.36 416 352.07 416zM336 210.89L192 234.89L48 210.89V365.11L192 341.11L336 365.11V210.89z" />
+    <glyph glyph-name="hammer"
+      unicode="&#xF6E3;"
+      horiz-adv-x="576" d=" M571.31 254.06L548.68 276.69C542.43 282.93 532.3 282.94 526.05 276.69L514.74 265.38L485.83 294.28C491.46 315.5900000000001 486.19 339.18 469.48 355.89L424.23 401.14C392.99 432.38 352.05 448 311.1 448C270.1500000000001 448 229.2 432.38 197.96 401.14L265.8400000000001 333.26V314.51C265.8400000000001 306.46 267.4600000000001 298.6 270.3400000000001 291.24L22.77 60.11C-6.88 32.43 -7.68 -14.32 21 -43C35.03 -57.03 53.37 -64 71.69 -64C90.84 -64 109.96 -56.38 124.11 -41.23L355.03 206.11C362.59 203.11 370.61 201.59 378.64 201.59C384.25 201.59 389.87 202.32 395.34 203.76L424.25 174.86L412.94 163.55C406.69 157.3 406.69 147.17 412.94 140.92L435.56 118.29C441.81 112.05 451.93 112.04 458.19 118.29L571.33 231.43C577.5600000000001 237.68 577.5600000000001 247.81 571.3100000000001 254.06zM89.02 -8.47C79.16 -19.03 63.66 -17.78 54.94 -9.06C44.73 1.16 46.5 16.6 55.53 25.02L300.3 253.54L317.54 236.3L89.02 -8.47zM469.49 197.49L409.75 257.22L383.07 250.17C373.57 247.65 367.95 253.78 367.67 254.05L318.5300000000001 303.19C315.55 306.17 313.8400000000001 310.29 313.8400000000001 314.5V353.14L273.4400000000001 393.54C285.37 397.79 298.06 400 311.1 400C341.0200000000001 400 369.1400000000001 388.35 390.3 367.2L435.55 321.95C441.39 316.11 440 308.69 439.44 306.55L432.39 279.86L492.13 220.13L469.49 197.49z" />
+    <glyph glyph-name="hamsa"
+      unicode="&#xF665;"
+      horiz-adv-x="512" d=" M256.01 160C203 160 160.03 96 160.03 96S203 32 256.01 32S351.99 96 351.99 96S309.01 160 256.01 160zM256.01 64C238.34 64 224.02 78.33 224.02 96S238.35 128 256.01 128S288 113.67 288 96S273.67 64 256.01 64zM505.55 164.6C493.7599999999999 190.92 467.2099999999999 208 437.9599999999999 208H431.9599999999999V334.29C431.9599999999999 374.06 403.19 408.74 365.05 414.94C360.63 415.6600000000001 356.26 416 351.98 416C341.8 416 332.05 414.0900000000001 323.09 410.6C311.12 429.5 291.75 443.25 269.08 446.94A81.3 81.3 0 0 1 256 448C227.61 448 202.62 433.12 188.42 410.76A75.764 75.764 0 0 1 173.09 414.94C168.67 415.66 164.3 416 160.02 416C115.92 416 80.04 380.11 80.04 336V208H74.05C44.8 208 18.25 190.92 6.42 164.5C-5.79 137.41 -0.28 105.93 20.5 84.38L103.92 -2.08C141.91 -41.43 197.34 -64 256.01 -64S370.11 -41.43 408.0900000000001 -2.09L491.51 84.37C512.3000000000001 105.92 517.8100000000001 137.41 505.5500000000001 164.6zM456.98 117.71L373.56 31.2600000000001C344.58 1.22 301.75 -16 256.01 -16S167.44 1.22 138.45 31.25L55.03 117.7C47.97 125.02 46.07 135.69 50.21 144.87C54.32 154.06 63.69 160 74.05 160H128.03V336C128.03 353.67 142.35 368 160.02 368C161.78 368 163.58 367.86 165.39 367.56C181.12 365 192.01 350.23 192.01 334.29V232C192.01 227.58 195.59 224 200.01 224H216.01C220.43 224 224.01 227.58 224.01 232V368C224.01 385.67 238.33 400 256 400C257.76 400 259.56 399.86 261.37 399.56C277.1 397 287.99 382.23 287.99 366.29V232C287.99 227.58 291.57 224 295.99 224H311.99C316.4100000000001 224 319.99 227.58 319.99 232V336C319.99 353.67 334.31 368 351.98 368C353.74 368 355.54 367.86 357.35 367.56C373.0800000000001 365 383.9700000000001 350.23 383.9700000000001 334.29V160H437.9600000000001C448.3200000000001 160 457.6800000000001 154.06 461.8 144.88C465.94 135.69 464.04 125.02 456.98 117.71z" />
+    <glyph glyph-name="hand-heart"
+      unicode="&#xF4BC;"
+      horiz-adv-x="480" d=" M408 336C405.3 336 402.6 335.8 400 335.6V344C400 383.7 367.7 416 328 416C321.6 416 315.3 415.2 309.4 413.6C296.7 434.2 273.9 448 248 448S199.3 434.2 186.6 413.6C180.7 415.2 174.4 416 168 416C128.3 416 96 383.7 96 344V251.9C85.5 255.6 57.9 262.1 30.7 243C-1.8 220.2 -9.8 175.2 13 142.7L126.5 -28.3C141.4 -50.7 166.3 -64 193.1 -64H373.7C411.7 -64 444.7 -37 452.2 0.3L472.8 103.5C477.5 127.2 479.9 151.5 479.9 175.7V264C480.0000000000001 303.7 447.7000000000001 336 408 336zM432 175.7C432 154.6 429.9 133.6 425.8 112.9L405.2 9.7C402.2 -5.3 389.1 -16 373.8 -16H193.1C182.4 -16 172.4 -10.6 166.4 -1.7L52.3 170.2C34.3 195.9 73 224.3 91.6 197.7L129.4 143.3C133.9 136.8 144 140.1 144 147.9V344C144 375.8 192 375.7 192 344V200C192 195.6 195.6 192 200 192H216C220.4 192 224 195.6 224 200V376C224 407.8 272 407.7 272 376V200C272 195.6 275.6 192 280 192H296C300.4 192 304 195.6 304 200V344C304 375.8 352 375.7 352 344V200C352 195.6 355.6 192 360 192H376C380.4 192 384 195.6 384 200V264C384 295.8 432 295.7 432 264V175.7zM336.5 151.2C316.9 166.5 291.3 159.7 278.2 147.3L272 141.5L265.8 147.3C253 159.3 227.3 166.6 207.5 151.2C187.9 135.9 186.8 108.4 204.4 91.8L264.9 34.7C268.8 31 275.1 31 279 34.7L339.5 91.8C357.1 108.4 356.1 135.9 336.5 151.2z" />
+    <glyph glyph-name="hand-holding-box"
+      unicode="&#xF47B;"
+      horiz-adv-x="576" d=" M551.9 136C520.8 162.4 482.6 152.1 463.5 137.8L403.1 92.3H399.8C399.6 130.3 369.3 160.1 330.6 160.1H186.6C158.2 160.1 130.3 150.7000000000001 108.1 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136zM112.5 192H464.5C473.3 192 480.5 199.2 480.5 208V432C480.5 440.8 473.3 448 464.5 448H112.5C103.7 448 96.5 440.8 96.5 432V208C96.5 199.2 103.7 192 112.5 192zM144.5 400H224.5V288L288.5 320L352.5 288V400H432.5V240H144.5V400z" />
+    <glyph glyph-name="hand-holding-heart"
+      unicode="&#xF4BE;"
+      horiz-adv-x="576" d=" M266.8 200.9C279.8 187.5 299.3 190.7 309.2 200.9L407.9 302.9C438 334 444.3 393 401.9 429.2C363.5 462 312.8 447 288 421.4C263.2 447 212.5 462 174.2 429.2C131.8 393 138.1 334 168.2 302.9L266.8 200.9zM204.5 392.4C218.6 404.4 240.6 401.4 253.8 387.7L288 352.4L322.1 387.8C335.3 401.5 357.4000000000001 404.5 371.4000000000001 392.5C390.3 376.4 387.1 350.1 374.1 336.6L288 247.5L201.9 336.6C188.8 350 185.7 376.3 204.5 392.4zM551.9 136C520.8 162.4 482.6 152.1 463.5 137.8L403.1 92.3H399.8C399.6 130.3 369.3 160.1 330.6 160.1H186.6C158.2 160.1 130.3 150.7000000000001 108.1 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136z" />
+    <glyph glyph-name="hand-holding-magic"
+      unicode="&#xF6E5;"
+      horiz-adv-x="576" d=" M551.94 135.97C520.83 162.4 482.59 152.06 463.5700000000001 137.74L403.1400000000001 92.24H399.8700000000001C399.7000000000001 130.27 369.3600000000001 160 330.6700000000001 160H186.6700000000001C158.2900000000001 160 130.4100000000001 150.65 108.1700000000001 133.67L79.79 112H16C7.16 112 0 104.84 0 96V80C0 71.16 7.16 64 16 64H96.02L137.29 95.52C151.25 106.18 168.68 112 186.66 112H330.66C358.52 112 359.73 71.84 329.52 71.84H269.76C262.16 71.84 256 65.68 256 58.08V58.0000000000001C256 50.4 262.1600000000001 44.2400000000001 269.76 44.2400000000001H404.2200000000001C413.93 44.2400000000001 423.3900000000001 47.4000000000001 431.1500000000001 53.2400000000001L492.4400000000001 99.39C500.71 105.6100000000001 512.9300000000001 106.1200000000001 520.86 99.39C530.91 90.85 530.12 76.33 519.99 68.71L419.43 -7C411.67 -12.84 402.23 -16 392.51 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H392.83C412.75 -64 432.13 -57.52 448.04 -45.54L548.8499999999999 30.37C565.4499999999999 42.85 575.3399999999999 61.82 575.9599999999999 82.4C576.5799999999999 102.94 567.8299999999999 122.46 551.9399999999999 135.97zM224 256H265.69C308.31 256 343.9700000000001 286.48 352 326.8C335.9100000000001 316.82 307.19 304 265.69 304H224C201.47 304 184 325.5 184 344V360C184 382.06 201.94 400 224 400H368C390.06 400 408 382.06 408 360V326.78C408 292.8400000000001 392.2200000000001 258.56 363.53 230.28L324.7200000000001 192C398.0600000000001 197.77 455.47 255.72 456 325.28V360C456 408.53 416.53 448 368 448H224C175.47 448 136 408.53 136 360V344C136 297.12 177.12 256 224 256z" />
+    <glyph glyph-name="hand-holding-seedling"
+      unicode="&#xF4BF;"
+      horiz-adv-x="576" d=" M250.7 256H264V208C264 199.2 271.2 192 280 192H296C304.8 192 312 199.2 312 208V256H325.3C410.6 256 480 331.4 480 424V448H418.7C363.5 448 315.4 416.3 288 369C260.6 416.3 212.5 448 157.3 448H96V424C96 331.4 165.4 256 250.7 256zM418.7 400H429.9C420 345.3 376.9 304 325.4 304H314.2C324.1 358.7 367.2 400 418.7 400zM157.3 400C208.8 400 251.9 358.7 261.8 304H250.6C199.1 304 156 345.3 146.1 400H157.3zM551.9000000000001 136C520.8000000000001 162.4 482.6000000000001 152.1 463.5000000000001 137.8L403.1000000000002 92.3H399.8000000000002C399.6000000000002 130.3 369.3000000000002 160.1 330.6000000000002 160.1H186.6000000000001C158.2000000000001 160.1 130.3000000000001 150.7000000000001 108.1000000000001 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136z" />
+    <glyph glyph-name="hand-holding-usd"
+      unicode="&#xF4C0;"
+      horiz-adv-x="576" d=" M551.9 136C520.8 162.4 482.6 152.1 463.5 137.8L403.1 92.3H399.8C399.6 130.3 369.3 160.1 330.6 160.1H186.6C158.2 160.1 130.3 150.7000000000001 108.1 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136zM257.6 303.7L307.7000000000001 289.4C311.3000000000001 288.4 313.8000000000001 285 313.8000000000001 281.3C313.8000000000001 276.7 310.0000000000001 272.9 305.4000000000001 272.9H272.6000000000001C269.0000000000001 272.9 265.5000000000001 273.7 262.3000000000001 275.1C257.5000000000001 277.3 251.9000000000001 276.8 248.2000000000001 273.1L230.7000000000001 255.6C225.4000000000001 250.3 226.0000000000001 241.3 232.2000000000001 237.2C241.7000000000001 230.9 252.6000000000001 227.1 264.0000000000001 225.7V208C264.0000000000001 199.2 271.2000000000001 192 280.0000000000001 192H296.0000000000001C304.8000000000001 192 312.0000000000001 199.2 312.0000000000001 208V225.6C342.3000000000001 229.2 365.4000000000001 256.6 361.3000000000001 288.6C358.4000000000001 311.6 340.6000000000001 329.9 318.4000000000001 336.3L268.3000000000001 350.6C264.7000000000001 351.6 262.2000000000001 355 262.2000000000001 358.7C262.2000000000001 363.3 266.0000000000001 367.1 270.6 367.1H303.4000000000001C307.0000000000001 367.1 310.5000000000001 366.3 313.7000000000001 364.9C318.5000000000001 362.7 324.1 363.2 327.8000000000001 366.9L345.3000000000001 384.4C350.6000000000001 389.7 350.0000000000001 398.7 343.8000000000001 402.8C334.3000000000001 409.1 323.4000000000001 412.9 312.0000000000001 414.3V432C312.0000000000001 440.8 304.8000000000001 448 296.0000000000001 448H280.0000000000001C271.2000000000001 448 264.0000000000001 440.8 264.0000000000001 432V414.4C233.7000000000001 410.8 210.6000000000001 383.4 214.7000000000001 351.4C217.6000000000001 328.4 235.3000000000001 310.1 257.6 303.7z" />
+    <glyph glyph-name="hand-holding-water"
+      unicode="&#xF4C1;"
+      horiz-adv-x="576" d=" M551.9 136C520.8 162.4 482.6 152.1 463.5 137.8L403.1 92.3H399.8C399.6 130.3 369.3 160.1 330.6 160.1H186.6C158.2 160.1 130.3 150.7000000000001 108.1 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136zM288 192C341 192 384 234.1 384 286C384 326 326.9 406.7 300.8 441.6C297.6 445.9 292.8 448 288 448S278.4 445.9 275.2 441.6C249.1 406.7 192 326 192 286C192 234.1 235 192 288 192zM288 377.1C322 327.3 335.5 296 336 286C336 260.6 314.5 240 288 240S240 260.6 240 285.8C240.5 295.9 254 327.3 288 377.1z" />
+    <glyph glyph-name="hand-holding"
+      unicode="&#xF4BD;"
+      horiz-adv-x="576" d=" M551.9 136C520.8 162.4 482.6 152.1 463.5 137.8L403.1 92.3H399.8C399.6 130.3 369.3 160.1 330.6 160.1H186.6C158.2 160.1 130.3 150.7000000000001 108.1 133.8L79.8 112H16C7.2 112 0 104.8 0 96V80C0 71.2 7.2 64 16 64H96L137.3 95.5C151.3 106.2 168.7 112 186.7 112H330.7000000000001C358.6 112 359.8000000000001 71.8 329.6 71.8H269.8C262.2 71.8 256 65.6 256 58V57.9C256 50.3 262.2 44.1 269.8 44.1H404.3C414 44.1 423.5 47.3 431.2 53.1L492.5 99.2C500.8 105.4 513 105.9 520.9 99.2C531 90.7 530.1999999999999 76.1 520 68.5L419.4 -7C411.6 -12.8 402.2 -16 392.5 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H392.8C412.7 -64 432.1 -57.5 448 -45.5L548.8 30.4C565.4 42.9 575.3 61.9 575.9 82.4C576.6 102.9 567.8 122.5 551.9 136z" />
+    <glyph glyph-name="hand-lizard"
+      unicode="&#xF258;"
+      horiz-adv-x="576" d=" M556.686 157.458L410.328 383.171C397.001 403.728 374.417 416 349.917 416H56C25.121 416 0 390.878 0 360V352C0 307.8880000000001 35.888 272 80 272H276.0420000000001L257.7090000000001 224H144C95.477 224 56 184.523 56 136C56 105.121 81.121 80 112 80H243.552C246.539 80 249.466 79.451 252.249 78.369L352 39.582V-32H576V92.171C576 115.396 569.321 137.972 556.686 157.458zM528 16H400V39.582C400 59.53 387.986 77.09 369.396 84.318L269.645 123.106A71.733 71.733 0 0 1 243.552 128H112C107.589 128 104 131.589 104 136C104 158.056 121.944 176 144 176H257.709C277.476 176 295.495 188.407 302.549 206.873L327.101 271.154C336.097 294.707 318.673 320 293.471 320H80C62.355 320 48 334.355 48 352V360C48 364.411 51.589 368 56 368H349.917C358.083 368 365.61 363.91 370.054 357.058L516.412 131.343A71.84 71.84 0 0 0 528 92.171V16z" />
+    <glyph glyph-name="hand-paper"
+      unicode="&#xF256;"
+      horiz-adv-x="448" d=" M372.57 335.359V346.184C372.57 389.796 332.05 422.875 289.531 411.73C263.902 461.23 195.441 459.18 171.549 410.983C130.269 421.544 89.144 390.055 89.144 346V219.87C69.191 227.297 45.836 224.938 27.061 210.999C-2.294 189.203 -8.733 147.666 12.511 117.846L132.48 -50.569A32 32 0 0 1 158.542 -64.001H381.439C396.343 -64.001 409.274 -53.712 412.621 -39.188L442.805 91.77A203.637 203.637 0 0 1 448 137.436V269C448 309.62 412.477 340.992 372.57 335.359zM399.997 137.437C399.997 125.706 398.663 113.968 396.0320000000001 102.551L368.707 -16H166.787L51.591 145.697C37.152 165.967 66.614 188.473 80.985 168.302L108.113 130.223C117.108 117.597 137.144 123.936 137.144 139.506V346C137.144 371.645 173.715 370.81 173.715 345.309V192C173.715 183.163 180.878 176 189.715 176H196.571C205.408 176 212.571 183.163 212.571 192V381C212.571 406.663 249.142 405.81 249.142 380.309V192C249.142 183.163 256.305 176 265.142 176H271.998C280.835 176 287.998 183.163 287.998 192V346.875C287.998 372.5470000000001 324.568 371.685 324.568 346.184V192C324.568 183.163 331.731 176 340.568 176H347.425C356.262 176 363.425 183.163 363.425 192V268.309C363.425 294.551 399.995 293.949 399.995 269V137.437z" />
+    <glyph glyph-name="hand-peace"
+      unicode="&#xF25B;"
+      horiz-adv-x="448" d=" M362.146 256.024C348.4360000000001 277.673 323.385 290.04 297.14 286.365V374C297.14 414.804 264.329 448 223.999 448C183.669 448 150.859 414.804 150.859 374L160 280L141.321 358.85C126.578 397.157 83.85 415.89 46.209 400.7920000000001C8.735 385.762 -9.571 343.0370000000001 5.008 305.15L60.765 160.223C30.208 135.267 16.771 102.414 36.032 68.005L90.885 -29.994C102.625 -50.97 124.73 -64 148.575 -64H354.277C385.021 -64 411.835 -42.56 418.832 -12.203L446.259 106.7960000000001A67.801 67.801 0 0 1 447.988 121.999L448 192C448 236.956 404.737 269.343 362.146 256.024zM399.987 122C399.987 120.512 399.8180000000001 119.023 399.485 117.577L372.058 -1.424C370.08 -10.006 362.768 -16 354.276 -16H148.575C142.089 -16 136.033 -12.379 132.77 -6.551L77.916 91.449C73.359 99.59 75.297 110.117 82.424 115.937L109.071 137.701A16 16 0 0 1 113.883 155.84L49.793 322.389C37.226 355.044 84.37 373.163 96.51 341.611L156.294 186.254A16 16 0 0 1 171.227 176H182.859C191.696 176 198.859 183.163 198.859 192V374C198.859 408.375 249.14 408.43 249.14 374V192C249.14 183.163 256.303 176 265.14 176H271.996C280.833 176 287.996 183.163 287.996 192V220C287.996 245.122 324.563 245.159 324.563 220V192C324.563 183.163 331.726 176 340.563 176H347.419C356.256 176 363.419 183.163 363.419 192C363.419 217.12 399.986 217.16 399.986 192V122z" />
+    <glyph glyph-name="hand-point-down"
+      unicode="&#xF0A7;"
+      horiz-adv-x="448" d=" M188.8 -64C234.416 -64 272 -26.235 272 19.2V54.847A93.148 93.148 0 0 1 294.064 62.776C316.0700000000001 60.269 339.0420000000001 66.2789999999999 356.855 78.761C409.342 79.9 448 116.159 448 178.701V200C448 260.063 408 298.512 408 327.2V329.879C412.952 335.626 416 343.415 416 351.999V416C416 433.673 403.106 448 387.2 448H156.8C140.894 448 128 433.673 128 416V352C128 343.416 131.048 335.627 136 329.88V327.201C136 320.237 129.807 312.339 112.332 297.0180000000001L112.184 296.889L112.038 296.7580000000001C102.101 287.9020000000001 91.197 278.642 78.785 270.9070000000001C48.537 252.202 0 240.514 0 195.2C0 138.272 35.286 103.2 83.2 103.2C91.226 103.2 98.689 104.014 105.6 105.376V19.2C105.6 -25.899 143.701 -64 188.8 -64zM188.8 -16C170.1 -16 153.6 0.775 153.6 19.2V177.6C136.275 177.6 118.4 151.2000000000001 83.2 151.2000000000001C56.8 151.2000000000001 48 171.8250000000001 48 195.2000000000001C48 203.9940000000001 80.712 215.6450000000001 104.1 230.1260000000001C118.675 239.2000000000001 131.325 249.6500000000001 143.975 260.9250000000001C162.349 277.0340000000001 180.608 294.761 183.571 320.0000000000001H360.3230000000001C364.087 277.2100000000001 400 245.491 400 200V178.701C400 138.177 377.803 121.577 338.675 128.1C330.6740000000001 113.488 304.6960000000001 103.949 285.05 115.175C266.825 95.81 238.669 97.388 224 110.225V19.2C224 0.225 207.775 -16 188.8 -16zM328 384C328 397.255 338.745 408 352 408S376 397.255 376 384S365.255 360 352 360S328 370.745 328 384z" />
+    <glyph glyph-name="hand-point-left"
+      unicode="&#xF0A5;"
+      horiz-adv-x="512" d=" M0 227.2C0 181.584 37.765 144 83.2 144H118.847A93.148 93.148 0 0 1 126.776 121.936C124.269 99.93 130.279 76.958 142.761 59.145C143.9 6.658 180.159 -32 242.701 -32H264C324.063 -32 362.512 8 391.2 8H393.879C399.626 3.048 407.415 0 415.999 0H479.999C497.672 0 511.999 12.894 511.999 28.8V259.2C511.999 275.106 497.672 288 479.999 288H415.999C407.415 288 399.626 284.952 393.879 280H391.2C384.236 280 376.338 286.193 361.017 303.668L360.888 303.8160000000001L360.757 303.962C351.901 313.899 342.641 324.803 334.906 337.215C316.202 367.463 304.514 416 259.2 416C202.272 416 167.2 380.714 167.2 332.8C167.2 324.774 168.014 317.3110000000001 169.376 310.4H83.2C38.101 310.4 0 272.299 0 227.2zM48 227.2C48 245.9 64.775 262.4 83.2 262.4H241.6C241.6 279.725 215.2 297.6 215.2 332.8C215.2 359.2 235.825 368 259.2000000000001 368C267.9940000000001 368 279.6450000000001 335.288 294.1260000000001 311.9C303.2000000000001 297.325 313.6500000000001 284.675 324.925 272.025C341.034 253.651 358.761 235.392 384 232.429V55.677C341.21 51.913 309.491 16 264 16H242.701C202.177 16 185.577 38.197 192.1 77.325C177.488 85.326 167.949 111.304 179.175 130.95C159.81 149.175 161.388 177.331 174.225 192H83.2C64.225 192 48 208.225 48 227.2zM448 88C461.255 88 472 77.255 472 64S461.255 40 448 40S424 50.745 424 64S434.745 88 448 88z" />
+    <glyph glyph-name="hand-point-right"
+      unicode="&#xF0A4;"
+      horiz-adv-x="512" d=" M428.8 310.4H342.623A115.52 115.52 0 0 1 344.799 332.8C344.799 380.714 309.727 416 252.799 416C207.485 416 195.797 367.463 177.092 337.216C169.357 324.803 160.098 313.899 151.241 303.963L151.11 303.817L150.981 303.6690000000001C135.662 286.193 127.764 280 120.8 280H118.121C112.374 284.952 104.585 288 96.001 288H32C14.327 288 0 275.106 0 259.2V28.8C0 12.894 14.327 0 32 0H96C104.584 0 112.373 3.048 118.12 8H120.799C149.487 8 187.936 -32 247.999 -32H269.298C331.8400000000001 -32 368.098 6.658 369.238 59.145C381.7200000000001 76.958 387.729 99.93 385.223 121.936A93.148 93.148 0 0 1 393.152 144H428.8C474.235 144 512 181.584 512 227.2C512 272.299 473.899 310.4 428.8 310.4zM428.8 192H337.774C350.611 177.331 352.189 149.175 332.824 130.95C344.051 111.304 334.511 85.326 319.899 77.325C326.423 38.197 309.823 16 269.299 16H248C202.509 16 170.79 51.913 128 55.676V232.429C153.239 235.393 170.966 253.651 187.075 272.025C198.35 284.675 208.8 297.3250000000001 217.874 311.9C232.355 335.288 244.006 368 252.8 368C276.175 368 296.8 359.2 296.8 332.8C296.8 297.6 270.4000000000001 279.725 270.4000000000001 262.4H428.8000000000001C447.2250000000001 262.4 464.0000000000001 245.9 464.0000000000001 227.2C464.0000000000001 208.225 447.7750000000001 192 428.8000000000001 192zM88 64C88 50.745 77.255 40 64 40S40 50.745 40 64S50.745 88 64 88S88 77.255 88 64z" />
+    <glyph glyph-name="hand-point-up"
+      unicode="&#xF0A6;"
+      horiz-adv-x="448" d=" M105.6 364.8V278.623A115.52 115.52 0 0 1 83.2 280.799C35.286 280.799 0 245.727 0 188.799C0 143.485 48.537 131.797 78.784 113.092C91.197 105.357 102.101 96.098 112.037 87.241L112.183 87.11L112.331 86.981C129.807 71.662 136 63.764 136 56.8V54.121C131.048 48.374 128 40.585 128 32.001V-31.999C128 -49.672 140.894 -63.999 156.8 -63.999H387.2000000000001C403.1060000000001 -63.999 416.0000000000001 -49.672 416.0000000000001 -31.999V32.001C416.0000000000001 40.585 412.9520000000001 48.374 408.0000000000001 54.121V56.8C408.0000000000001 85.488 448.0000000000001 123.937 448.0000000000001 184V205.299C448.0000000000001 267.841 409.3420000000001 304.099 356.8550000000001 305.2390000000001C339.0420000000001 317.721 316.0700000000001 323.73 294.0640000000001 321.224A93.148 93.148 0 0 1 272 329.153V364.8C272 410.235 234.416 448 188.8 448C143.701 448 105.6 409.899 105.6 364.8zM224 364.8V273.774C238.669 286.611 266.825 288.189 285.05 268.824C304.6960000000001 280.0510000000001 330.6740000000001 270.511 338.675 255.899C377.803 262.423 400 245.823 400 205.299V184C400 138.509 364.087 106.79 360.324 64H183.571C180.607 89.239 162.349 106.966 143.975 123.075C131.325 134.35 118.675 144.8 104.1 153.874C80.712 168.355 48 180.006 48 188.8C48 212.175 56.8 232.8 83.2 232.8C118.4 232.8 136.275 206.4 153.6 206.4V364.8C153.6 383.225 170.1 400 188.8 400C207.775 400 224 383.775 224 364.8zM352 24C365.255 24 376 13.255 376 0S365.255 -24 352 -24S328 -13.255 328 0S338.745 24 352 24z" />
+    <glyph glyph-name="hand-pointer"
+      unicode="&#xF25A;"
+      horiz-adv-x="448" d=" M358.182 268.639C338.689 293.4070000000001 305.5030000000001 300.584 278.31 287.737C263.183 303.4240000000001 242.128 310.2240000000001 221.715 307.366V381C221.715 417.944 191.979 448 155.429 448S89.143 417.944 89.143 381V219.871C69.234 227.281 45.871 224.965 27.06 210.999C-2.295 189.204 -8.733 147.6660000000001 12.51 117.847L122.209 -36.154C134.632 -53.59 154.741 -64 176 -64H354.286C385.088 -64 411.86 -42.5 418.843 -12.203L446.272 106.7960000000001A67.873 67.873 0 0 1 448 122V206C448 252.844 401.375 285.273 358.182 268.639zM80.985 168.303L108.111 130.224C117.106 117.598 137.142 123.937 137.142 139.507V381C137.142 406.12 173.713 406.16 173.713 381V206C173.713 197.164 180.876 190 189.713 190H196.57C205.407 190 212.57 197.164 212.57 206V241C212.57 266.12 249.141 266.16 249.141 241V206C249.141 197.164 256.304 190 265.141 190H272C280.837 190 288 197.164 288 206V227C288 252.12 324.5710000000001 252.16 324.5710000000001 227V206C324.5710000000001 197.164 331.7340000000001 190 340.5710000000001 190H347.4280000000001C356.2650000000001 190 363.4280000000001 197.164 363.4280000000001 206C363.4280000000001 231.121 399.999 231.16 399.999 206V122C399.999 120.512 399.8300000000001 119.023 399.497 117.577L372.067 -1.424C370.089 -10.006 362.777 -16 354.2850000000001 -16H176C170.231 -16 164.737 -13.122 161.303 -8.303L51.591 145.697C37.185 165.92 66.585 188.515 80.985 168.303zM176.143 48V144C176.143 152.837 182.411 160 190.143 160H196.143C203.875 160 210.143 152.837 210.143 144V48C210.143 39.163 203.875 32 196.143 32H190.143C182.41 32 176.143 39.163 176.143 48zM251.571 48V144C251.571 152.837 257.839 160 265.5710000000001 160H271.5710000000001C279.3030000000001 160 285.5710000000001 152.837 285.5710000000001 144V48C285.5710000000001 39.163 279.3030000000001 32 271.5710000000001 32H265.5710000000001C257.839 32 251.5710000000001 39.163 251.5710000000001 48zM327 48V144C327 152.837 333.268 160 341 160H347C354.7320000000001 160 361 152.837 361 144V48C361 39.163 354.7320000000001 32 347 32H341C333.268 32 327 39.163 327 48z" />
+    <glyph glyph-name="hand-receiving"
+      unicode="&#xF47C;"
+      horiz-adv-x="640" d=" M297.6 201.3C303.8 195.1 311.9000000000001 192 320 192S336.2 195.1 342.4 201.3L438.8 297.7000000000001C451.1999999999999 310 451.1999999999999 330.1 438.8 342.4000000000001L342.4 438.7C336.2 444.9 328.1 448 320 448S303.8 444.9 297.6 438.7L201.2 342.3C188.8 330 188.8 309.9 201.2 297.6L297.6 201.3zM320 394L394 320L320 246L246 320L320 394zM572.9 351.8C531 354.6 496 321.3 496 280C496 280 495.9 241 495.8 204C484.1 211.8 470.1 216 456 216C433.5 216 412.7 205.8 399 188L327.2 94.7C324.5 91.2 322.2 87.3 320 83.5C317.7 87.3 315.5 91.2 312.8 94.7L241 188C227.2 205.8 206.4 216 184 216C169.9 216 155.9 211.7 144.2 204C144.1 241.1 144 280 144 280C144 321.3 109 354.6 67.1 351.8C28.8 349.3 0 315.8 0 277.5V86C0 60.7 8.7 35.8 24.5 16L83.2 -58C86.2 -61.8 90.9 -64.1 95.7 -64.1H112C120.8 -64.1 128 -56.9 128 -48.1V-36.5L62 46C52.9 57.3 48 71.4 48 86V279.1C48 290.7 55.8 301.4 67.2 303.5C82.5 306.5 96 294.8 96 280C96 280 96.2 179 96.3 147.4C96.3 139.8 99.1 132.6 104.1 126.8L180.6 34.1999999999999C185 28.8999999999999 191.3 26.1999999999999 197.6 26.1999999999999C203.4 26.1999999999999 209.3 28.4999999999999 213.7 33.1999999999999C221.2 41.0999999999999 221 53.5999999999999 214.5 62.3999999999999L165 129.3999999999999C156.9 139.8999999999999 158.9 155 169.4 163.0999999999999C173.8 166.4999999999999 178.9 168.0999999999999 184 168.0999999999999C191.2 168.0999999999999 198.3 164.8999999999999 203.1 158.6999999999999L274.8 65.4999999999999C283.4000000000001 54.3 288.1 40.6 288.1 26.4999999999999V-48C288.1 -56.8 295.3 -64 304.1 -64H336.1C344.9000000000001 -64 352.1 -56.8 352.1 -48V26.4C352.1 40.5 356.8 54.2 365.4000000000001 65.4L437.1 158.6C441.8 164.7 449 168 456.2 168C461.3000000000001 168 466.4 166.3999999999999 470.8000000000001 163C481.3000000000001 154.8999999999999 483.3000000000001 139.8999999999999 475.2 129.3L425.7000000000001 62.3C419.2000000000001 53.4999999999999 419.1 40.9999999999999 426.5000000000001 33.1C430.9000000000001 28.4 436.7000000000001 26.1 442.6000000000001 26.1C448.9000000000001 26.1 455.2000000000001 28.8 459.6000000000001 34.1L536.1000000000001 126.6999999999999C541.1000000000001 132.5 543.8000000000002 139.6999999999999 543.9000000000001 147.3C543.8000000000001 179 544.0000000000001 280 544.0000000000001 280C544.0000000000001 294.8 557.4000000000001 306.5 572.8000000000001 303.5C584.2 301.3 592.0000000000001 290.7 592.0000000000001 279.0999999999999V86C592.0000000000001 71.5 587.1000000000001 57.4 578.0000000000001 46.1L512.0000000000001 -36.4V-48C512.0000000000001 -56.8 519.2000000000002 -64 528.0000000000001 -64H544.3000000000001C549.2 -64 553.8000000000001 -61.8 556.8000000000001 -57.9L615.5000000000001 16.1C631.3000000000001 35.9 640.0000000000001 60.7000000000001 640.0000000000001 86.1V277.5C640.0000000000001 315.8 611.2000000000002 349.3 572.9000000000001 351.8z" />
+    <glyph glyph-name="hand-rock"
+      unicode="&#xF255;"
+      horiz-adv-x="512" d=" M408.864 368.948C386.463 402.846 342.756 411.221 310.051 392.536C280.577 424.005 230.906 423.629 201.717 392.558C154.557 419.578 93.007 387.503 91.046 331.752C44.846 342.593 0 307.999 0 260.5710000000001V203.618C0 170.877 14.28 139.664 39.18 117.984L136.89 32.903C141.142 29.201 140 27.33 140 -1e-13C140 -17.6730000000001 154.327 -32.0000000000001 172 -32.0000000000001H424C441.673 -32.0000000000001 456 -17.6730000000001 456 -1e-13C456 23.5129999999999 454.985 30.745 459.982 42.37L502.817 142.026C508.911 156.203 512 171.198 512 186.5939999999999V301.0370000000001C512 353.876 457.686 389.699 408.8640000000001 368.948zM464 186.594A64.505 64.505 0 0 0 458.718 160.981L415.8830000000001 61.326C410.653 49.155 408.0000000000001 36.286 408.0000000000001 23.076V16H188V26.286C188 42.656 180.86 58.263 168.41 69.103L70.7 154.183C56.274 166.745 48 184.764 48 203.619V260.572C48 293.78 100 294.1090000000001 100 259.895V218.667A16 16 0 0 1 105.493 206.6L112.493 200.505A16 16 0 0 1 139 212.571V329.1430000000001C139 362.24 191 362.868 191 328.466V301.7150000000001C191 292.879 198.164 285.7150000000001 207 285.7150000000001H214C222.836 285.7150000000001 230 292.879 230 301.7150000000001V342.858C230 375.992 282 376.533 282 342.181V301.7150000000001C282 292.879 289.163 285.7150000000001 298 285.7150000000001H305C313.837 285.7150000000001 321 292.879 321 301.7150000000001V329.144C321 362.174 373 362.924 373 328.467V301.716C373 292.88 380.163 285.716 389 285.716H396C404.837 285.716 412 292.88 412 301.716C412 334.862 464 335.329 464 301.039V186.5940000000001z" />
+    <glyph glyph-name="hand-scissors"
+      unicode="&#xF257;"
+      horiz-adv-x="512" d=" M256 -32L326 -31.987C331.114 -31.987 336.231 -31.404 341.203 -30.258L460.202 -2.831C490.56 4.165 512 30.98 512 61.723V267.425C512 291.27 498.97 313.376 477.995 325.115L379.996 379.968C345.587 399.2290000000001 312.733 385.7920000000001 287.778 355.235L142.85 410.992C104.963 425.5710000000001 62.238 407.265 47.208 369.791C32.11 332.149 50.843 289.421 89.15 274.679L168 256L74 265.141C33.196 265.141 0 232.33 0 192.001C0 151.671 33.196 118.86 74 118.86H161.635C157.96 92.615 170.327 67.563 191.976 53.8539999999999C178.657 11.263 211.044 -32 256 -32zM256 16.013C230.84 16.013 230.88 52.58 256 52.58C264.837 52.58 272 59.743 272 68.58V75.436C272 84.273 264.837 91.436 256 91.436H228C202.841 91.436 202.878 128.003 228 128.003H256C264.837 128.003 272 135.166 272 144.003V150.859C272 159.696 264.837 166.859 256 166.859H74C39.57 166.859 39.625 217.14 74 217.14H256C264.837 217.14 272 224.303 272 233.14V244.772A16 16 0 0 1 261.746 259.705L106.389 319.49C74.837 331.63 92.957 378.773 125.611 366.207L292.16 302.116A16.001 16.001 0 0 1 310.299 306.928L332.063 333.5750000000001C337.883 340.702 348.411 342.639 356.551 338.0830000000001L454.551 283.2290000000001C460.379 279.966 464 273.911 464 267.424V61.723C464 53.232 458.006 45.919 449.424 43.941L330.423 16.514A19.743 19.743 0 0 0 326 16.012H256z" />
+    <glyph glyph-name="hand-spock"
+      unicode="&#xF259;"
+      horiz-adv-x="512" d=" M21.096 66.21L150.188 -55.303A32 32 0 0 1 172.12 -64.001H409.7200000000001C423.8900000000001 -64.001 436.3730000000001 -54.682 440.4000000000001 -41.097L472.215 66.216A115.955 115.955 0 0 1 477 99.189V136.028C477 140.079 477.476 144.132 478.414 148.073L510.144 281.4830000000001C520.243 323.8950000000001 487.828 364.221 444.6 364.0080000000001C440.456 388.8640000000001 422.057 411.1730000000001 394.75 418.0000000000001C358.947 426.9520000000001 322.523 405.3450000000001 313.5 369.25L296.599 264L274.924 395.99C266.638 432.06 230.621 454.562 194.62 446.286C165.004 439.4820000000001 144.482 413.897 142.738 384.991C100.101 384.16 69.283 344.428 78.667 303.147L109.707 166.639C82.513 189.154 42.423 186.631 18.225 160.917C-7.151 133.956 -5.873 91.592 21.096 66.21zM53.164 128.021L53.166 128.0219999999999C60.385 135.694 72.407 136.002 80.022 128.8349999999999L133.034 78.9409999999999C143.225 69.351 160 76.6 160 90.594V160.073C160 161.266 159.866 162.456 159.603 163.619L125.473 313.791C119.877 338.408 156.975 346.651 162.527 322.212L192.926 188.4549999999999A16 16 0 0 1 208.529 176.0009999999999H217.1330000000001C227.4090000000001 176.0009999999999 235.0270000000001 185.5679999999999 232.7270000000001 195.5839999999999L191.107 376.7369999999999C185.484 401.2059999999999 222.497 409.813 228.142 385.2449999999999L273.362 188.4169999999999A16 16 0 0 1 288.956 176H302.173A16 16 0 0 1 317.695 188.119L360.067 357.6090000000001C366.171 382.0310000000001 403.029 372.7680000000001 396.932 348.3920000000001L358.805 195.88C356.284 185.792 363.92 176 374.327 176H384.021A16 16 0 0 1 399.586 188.295L426.509 301.4C432.3300000000001 325.848 469.306 317.087 463.475 292.598L431.7200000000001 159.19A100.094 100.094 0 0 1 429 136.028V99.189C429 92.641 428.057 86.138 426.195 79.8610000000001L397.775 -16H178.465L53.978 101.164C46.349 108.344 45.984 120.393 53.164 128.021z" />
+    <glyph glyph-name="hands-heart"
+      unicode="&#xF4C3;"
+      horiz-adv-x="640" d=" M298.8 200.9C305.1 194.4 312.6 192 320 192C327.3 191.9 334.9 194.4 341.2 200.9L439.9 302.9C470 334 476.3 393 433.9 429.2C395.5 462 344.8 447 320 421.4C295.2 447 244.5 462 206.2 429.2C163.8 393 170.1 334 200.2 302.9L298.8 200.9zM236.5 392.4C250.6 404.4 272.6 401.4 285.8 387.7L320 352.4L354.1 387.8C367.3 401.5 389.4000000000001 404.5 403.4000000000001 392.5C422.3 376.4 419.1 350.1 406.1 336.6L320 247.5L233.9 336.6C220.8 350 217.7 376.3 236.5 392.4zM572.9 351.8C531 354.6 496 321.3 496 280C496 280 495.9 241 495.8 204C466 223.8 423.3 219.5 399 188L327.2 94.7C324.5 91.2 322.2 87.3 320 83.5C317.7 87.3 315.5 91.2 312.8 94.7L241 188C216.4 219.9 173.6 223.5 144.2 204C144.1 241.1 144 280 144 280C144 321.3 109 354.6 67.1 351.8C28.8 349.3 0 315.8 0 277.5V86C0 60.7 8.7 35.8 24.5 16L83.2 -58C86.2 -61.8 90.9 -64.1 95.7 -64.1H112C120.8 -64.1 128 -56.9 128 -48.1C128 -40.6 125.4 -33.3 120.8 -27.5L62 46C52.9 57.3 48 71.4 48 86V279.1C48 290.7 55.8 301.4 67.2 303.5C82.5 306.5 96 294.8 96 280C96 280 96.2 179 96.3 147.4C96.3 139.8 99.1 132.6 104.1 126.8L180.6 34.1999999999999C198.3 12.8 232.8 37.4999999999999 214.5 62.3999999999999L165 129.3999999999999C156.9 139.8999999999999 158.9 155 169.4 163.0999999999999C180.2 171.4999999999999 195.2 168.8999999999999 203.1 158.6999999999999L274.8 65.4999999999999C283.4000000000001 54.3 288.1 40.6 288.1 26.4999999999999V-48C288.1 -56.8 295.3 -64 304.1 -64H336.1C344.9000000000001 -64 352.1 -56.8 352.1 -48V26.4C352.1 40.5 356.8 54.2 365.4000000000001 65.4L437.1 158.6C445 168.8 460 171.3 470.8 163C481.3 154.8999999999999 483.3 139.8999999999999 475.2 129.3L425.7 62.3C407.3 37.4 441.9 12.6999999999999 459.6 34.1L536.0999999999999 126.6999999999999C541.0999999999999 132.5 543.8 139.6999999999999 543.8999999999999 147.3C543.7999999999998 179 543.9999999999999 280 543.9999999999999 280C543.9999999999999 294.8 557.3999999999999 306.5 572.7999999999998 303.5C584.1999999999998 301.3 591.9999999999999 290.7 591.9999999999999 279.0999999999999V86C591.9999999999999 71.5 587.0999999999999 57.4 577.9999999999999 46.1L519.2999999999998 -27.3C514.5999999999998 -33.1999999999999 512.0999999999998 -40.4 512.0999999999998 -47.9C512.0999999999998 -56.7 519.2999999999998 -63.9 528.0999999999998 -63.9H544.3999999999997C549.2999999999997 -63.9 553.8999999999997 -61.7 556.8999999999997 -57.7999999999999L615.5999999999998 16.2C631.3999999999997 36.0000000000001 640.0999999999998 60.8000000000001 640.0999999999998 86.2000000000001V277.5C639.9999999999998 315.8 611.1999999999998 349.3 572.8999999999997 351.8z" />
+    <glyph glyph-name="hands-helping"
+      unicode="&#xF4C4;"
+      horiz-adv-x="640" d=" M637.9 244.1L629.9 258C625.5 265.7 615.6999999999999 268.3 608 263.9L511.3 207.5C507.6 234.9 484.4 256.1 456 256.1H304V192.1C304 174.5 289.7 160.1 272 160.1S240 174.5 240 192.1V278.4000000000001C240 289.4000000000001 245.7 299.7000000000001 255 305.5L288.4 326.4000000000001C298.6 332.8000000000001 310.3 336.1 322.3 336.1H427.6L547.4 404.3000000000001C555.1 408.7000000000001 557.8 418.4000000000001 553.4 426.1L545.5 440C541.1 447.7 531.4 450.4 523.7 446L415 384H322.3C301.3 384 280.8 378.1 263 367L229.5 346.1C211.2 334.7 198.9 316.7 194.3 296.3L134.9 260.7000000000001C110.8 246.2 96 220.1 96 191.9V157.8L8 107C0.3 102.6 -2.3 92.8 2.1 85.1L10.1 71.2000000000001C14.5 63.5000000000001 24.3 60.9 32 65.3000000000001L144 130V191.8C144 203.1 149.9 213.6 159.6 219.4L192 239V196.8C192 155 222 116.7000000000001 263.7 112.5C311.6 107.6 352 145.2 352 192.1V208.1H456C460.4 208.1 464 204.5 464 200.1V168.1C464 163.7000000000001 460.4 160.1 456 160.1H424V100.1C424 84.7000000000001 411.5 72.3 396.2 72.3H372.1V48.3C372.1 30.5 357.7 16.1 339.9 16.1H211.3L148.5 -20.2C140.8 -24.6 138.2 -34.4 142.6 -42.1L150.6 -55.9999999999999C155 -63.6999999999999 164.8 -66.2999999999999 172.5 -61.8999999999999L224.1 -31.9999999999999H339.9C376.8 -31.9999999999999 408 -6.8999999999999 417.3 27.2C448.8 36.4 471.9999999999999 65.6 471.9999999999999 100.0000000000001V114.3000000000001C489.6 119.6000000000001 503.4999999999999 133.3000000000001 509.1 150.7000000000001L632 222.2C639.7 226.7 642.3 236.4 637.9 244.1z" />
+    <glyph glyph-name="hands-usd"
+      unicode="&#xF4C5;"
+      horiz-adv-x="640" d=" M289.6 303.7L339.7000000000001 289.4C343.3000000000001 288.4 345.8000000000001 285 345.8000000000001 281.3C345.8000000000001 276.7 342.0000000000001 272.9 337.4000000000001 272.9H304.6000000000001C301.0000000000001 272.9 297.5000000000001 273.7 294.3000000000001 275.1C289.5000000000001 277.3 283.9000000000001 276.8 280.2000000000001 273.1L262.7000000000001 255.6C257.4000000000001 250.3 258.0000000000001 241.3 264.2000000000001 237.2C273.7000000000001 230.9 284.6 227.1 296.0000000000001 225.7V208C296.0000000000001 199.2 303.2000000000001 192 312.0000000000001 192H328.0000000000001C336.8000000000001 192 344.0000000000001 199.2 344.0000000000001 208V225.6C374.3000000000001 229.2 397.4000000000001 256.6 393.3000000000001 288.6C390.4000000000001 311.6 372.6000000000001 329.9 350.4000000000001 336.3L300.3000000000001 350.6C296.7000000000001 351.6 294.2000000000001 355 294.2000000000001 358.7C294.2000000000001 363.3 298.0000000000001 367.1 302.6 367.1H335.4000000000001C339.0000000000001 367.1 342.5000000000001 366.3 345.7000000000001 364.9C350.5000000000001 362.7 356.1 363.2 359.8000000000001 366.9L377.3000000000001 384.4C382.6000000000001 389.7 382.0000000000001 398.7 375.8000000000001 402.8C366.3000000000001 409.1 355.4000000000001 412.9 344.0000000000001 414.3V432C344.0000000000001 440.8 336.8000000000001 448 328.0000000000001 448H312.0000000000001C303.2000000000001 448 296.0000000000001 440.8 296.0000000000001 432V414.4C265.7000000000001 410.8 242.6000000000001 383.4 246.7000000000001 351.4C249.6000000000001 328.4 267.3000000000001 310.1 289.6 303.7zM572.9000000000001 351.8C531 354.6 496 321.3 496 280C496 280 495.9 241 495.8 204C484.1 211.8 470.1 216 456 216C433.5 216 412.7 205.8 399 188L327.2 94.7C324.5 91.2 322.2 87.3 320 83.5C317.7 87.3 315.5 91.2 312.8 94.7L241 188C227.2 205.8 206.4 216 184 216C169.9 216 155.9 211.7 144.2 204C144.1 241.1 144 280 144 280C144 321.3 109 354.6 67.1 351.8C28.8 349.3 0 315.8 0 277.5V86C0 60.7 8.7 35.8 24.5 16L83.2 -58C86.2 -61.8 90.9 -64.1 95.7 -64.1H112C120.8 -64.1 128 -56.9 128 -48.1C128 -40.6 125.4 -33.3 120.8 -27.5L62 46C52.9 57.3 48 71.4 48 86V279.1C48 290.7 55.8 301.4 67.2 303.5C82.5 306.5 96 294.8 96 280C96 280 96.2 179 96.3 147.4C96.3 139.8 99.1 132.6 104.1 126.8L180.6 34.1999999999999C188.7 24.3999999999999 204.2 23.0999999999999 213.7 33.1999999999999C221.2 41.0999999999999 221 53.5999999999999 214.5 62.3999999999999L165 129.3999999999999C156.9 139.8999999999999 158.9 155 169.4 163.0999999999999C173.8 166.4999999999999 178.9 168.0999999999999 184 168.0999999999999C191.2 168.0999999999999 198.3 164.8999999999999 203.1 158.6999999999999L274.8 65.4999999999999C283.4000000000001 54.3 288.1 40.6 288.1 26.4999999999999V-48C288.1 -56.8 295.3 -64 304.1 -64H336.1C344.9000000000001 -64 352.1 -56.8 352.1 -48V26.4C352.1 40.5 356.8 54.2 365.4000000000001 65.4L437.1 158.6C441.8 164.7 449 168 456.2 168C461.3000000000001 168 466.4 166.3999999999999 470.8000000000001 163C481.3000000000001 154.8999999999999 483.3000000000001 139.8999999999999 475.2 129.3L425.7000000000001 62.3C419.2000000000001 53.4999999999999 419.1 40.9999999999999 426.5000000000001 33.1C436.7000000000001 22.2 452.2 25.2 459.6000000000001 34.1L536.1000000000001 126.6999999999999C541.1000000000001 132.5 543.8000000000002 139.6999999999999 543.9000000000001 147.3C543.8000000000001 179 544.0000000000001 280 544.0000000000001 280C544.0000000000001 294.8 557.4000000000001 306.5 572.8000000000001 303.5C584.2 301.3 592.0000000000001 290.7 592.0000000000001 279.0999999999999V86C592.0000000000001 71.5 587.1000000000001 57.4 578.0000000000001 46.1L519.3000000000001 -27.3C514.6 -33.1999999999999 512.1 -40.4 512.1 -47.9C512.1 -56.7 519.3000000000001 -63.9 528.1 -63.9H544.4C549.3 -63.9 553.9 -61.7 556.9 -57.7999999999999L615.6 16.2C631.4 36.0000000000001 640.1 60.8000000000001 640.1 86.2000000000001V277.5C640 315.8 611.2 349.3 572.9 351.8z" />
+    <glyph glyph-name="hands"
+      unicode="&#xF4C2;"
+      horiz-adv-x="640" d=" M572.9 351.8C531 354.6 496 321.3 496 280C496 280 495.9 241 495.8 204C484.1 211.8 470.1 216 456 216C433.5 216 412.7 205.8 399 188L327.2 94.7C324.5 91.2 322.2 87.3 320 83.5C317.7 87.3 315.5 91.2 312.8 94.7L241 188C227.2 205.8 206.4 216 184 216C169.9 216 155.9 211.7 144.2 204C144.1 241.1 144 280 144 280C144 321.3 109 354.6 67.1 351.8C28.8 349.3 0 315.8 0 277.5V86C0 60.7 8.7 35.8 24.5 16L83.2 -58C86.2 -61.8 90.9 -64.1 95.7 -64.1H112C120.8 -64.1 128 -56.9 128 -48.1V-36.5L62 46C52.9 57.3 48 71.4 48 86V279.1C48 290.7 55.8 301.4 67.2 303.5C82.5 306.5 96 294.8 96 280C96 280 96.2 179 96.3 147.4C96.3 139.8 99.1 132.6 104.1 126.8L180.6 34.1999999999999C185 28.8999999999999 191.3 26.1999999999999 197.6 26.1999999999999C203.4 26.1999999999999 209.3 28.4999999999999 213.7 33.1999999999999C221.2 41.0999999999999 221 53.5999999999999 214.5 62.3999999999999L165 129.3999999999999C156.9 139.8999999999999 158.9 155 169.4 163.0999999999999C173.8 166.4999999999999 178.9 168.0999999999999 184 168.0999999999999C191.2 168.0999999999999 198.3 164.8999999999999 203.1 158.6999999999999L274.8 65.4999999999999C283.4000000000001 54.3 288.1 40.6 288.1 26.4999999999999V-48C288.1 -56.8 295.3 -64 304.1 -64H336.1C344.9000000000001 -64 352.1 -56.8 352.1 -48V26.4C352.1 40.5 356.8 54.2 365.4000000000001 65.4L437.1 158.6C441.8 164.7 449 168 456.2 168C461.3000000000001 168 466.4 166.3999999999999 470.8000000000001 163C481.3000000000001 154.8999999999999 483.3000000000001 139.8999999999999 475.2 129.3L425.7000000000001 62.3C419.2000000000001 53.4999999999999 419.1 40.9999999999999 426.5000000000001 33.1C430.9000000000001 28.4 436.7000000000001 26.1 442.6000000000001 26.1C448.9000000000001 26.1 455.2000000000001 28.8 459.6000000000001 34.1L536.1000000000001 126.6999999999999C541.1000000000001 132.5 543.8000000000002 139.6999999999999 543.9000000000001 147.3C543.8000000000001 179 544.0000000000001 280 544.0000000000001 280C544.0000000000001 294.8 557.4000000000001 306.5 572.8000000000001 303.5C584.2 301.3 592.0000000000001 290.7 592.0000000000001 279.0999999999999V86C592.0000000000001 71.5 587.1000000000001 57.4 578.0000000000001 46.1L512.0000000000001 -36.4V-48C512.0000000000001 -56.8 519.2000000000002 -64 528.0000000000001 -64H544.3000000000001C549.2 -64 553.8000000000001 -61.8 556.8000000000001 -57.9L615.5000000000001 16.1C631.3000000000001 35.9 640.0000000000001 60.7000000000001 640.0000000000001 86.1V277.5C640.0000000000001 315.8 611.2000000000002 349.3 572.9000000000001 351.8z" />
+    <glyph glyph-name="handshake-alt"
+      unicode="&#xF4C6;"
+      horiz-adv-x="640" d=" M255.7 265.3L321.3 325.4C328.7 332.2 338.3 335.9 348.3 335.9L432 336.1C434.1 336.1 436.1 335.3 437.5 333.8L499.1999999999999 272.2000000000001H624C632.8 272.2000000000001 640 279.4 640 288.2000000000001V304.2000000000001C640 313 632.8 320.2000000000001 624 320.2000000000001H519.2L471.6 367.8C461.1 378.1 446.9 384 432 384H205.2C190.4 384 176.1 378.1 165.6 367.7L118 320.1H16C7.2 320.1 0 312.9 0 304.1V288.1C0 279.3 7.2 272.1 16 272.1H137.9L199.6 333.7C201.6 334.5 203.3 335.2 205.3 336H262L223.3 300.5C193.9 273.6 192.2 228.2 218.9 199.2C233.7 183 280.1 158 320.4 194.8L328.6 202.3L436.8 114.5C440.2 111.7 440.8 106.7 438 103.2L411.9 71C409.1 67.6 404.1 67 400.6 69.8L376.7 89.2L346.7 52.7C344.5 50 341.3 48.3 337.8 47.9C334.3 47.5 330.8 48.6 328.7 50.3L291.9 81.8L276.3 62.6C262.4 45.4999999999999 237.1 42.9 221 55.9999999999999L123.7 144H16C7.2 144 0 136.8 0 128V111.9999999999999C0 103.1999999999999 7.2 95.9999999999999 16 95.9999999999999H105L189.6 19.5999999999999C220.5 -5.5000000000001 263.4 -6.1000000000001 295.2 15.7999999999999C307.7 4.9999999999999 321.2 -0.1000000000001 336.3 -0.1000000000001C354.5 -0.1000000000001 371.6 7.2999999999999 385.1 23.8999999999999C407.2000000000001 15.1999999999999 433.3 21.2999999999999 449.1 40.6999999999999L475.3 72.9999999999999C480.9 79.8999999999999 484.4 87.8 486.2 95.9999999999999H624C632.8 95.9999999999999 640 103.1999999999999 640 111.9999999999999V128C640 136.8 632.8 144 624 144H474.8C472.5 146.8 469.9 149.3999999999999 467.1 151.6999999999999L364.4000000000001 235.1L376.9000000000001 246.5C383.4000000000001 252.5 383.9000000000001 262.5999999999999 377.9000000000001 269.0999999999999L367 280.9C361 287.4 350.9 287.8 344.4 281.9L289.2 231.3C279.7 222.6 263.5 221.9 254.6 231.3C245.2 241.2 246.1 256.5 255.7 265.3z" />
+    <glyph glyph-name="handshake"
+      unicode="&#xF2B5;"
+      horiz-adv-x="640" d=" M519.2 320.1L471.6 367.7A56.252 56.252 0 0 1 432 384H205.2C190.4 384 176.1 378.1 165.6 367.7L118 320.1H0V64.4H64C81.6 64.4 95.8 78.6 95.9 96.1H105L189.6 19.6999999999999C220.5 -5.4000000000001 263.4 -6.0000000000001 295.2 15.8999999999999C307.7 5.0999999999999 321.2 -1e-13 336.3 -1e-13C354.5 -1e-13 371.6 7.3999999999999 385.1 23.9999999999999C407.2000000000001 15.3 433.3 21.3999999999999 449.1 40.8L475.3 73.1C480.9 79.9999999999999 484.4 87.9 486.2 96.1H544.1C544.2 78.6 558.5 64.4 576 64.4H640V320.1H519.2zM48 96.4C39.2 96.4 32 103.6 32 112.4S39.2 128.4 48 128.4S64 121.2 64 112.4C64 103.5 56.8 96.4 48 96.4zM438 103.3L411.9 71.1C409.1 67.7 404.1 67.1 400.6 69.9L376.7 89.3L346.7 52.8C340.7 45.4999999999999 331.7 47.9999999999999 328.7 50.4L291.9 81.9L276.3 62.7C262.4 45.6 237.1 43 221 56.1L123.7 144.1H96V272.2H137.9L199.6 333.8C201.6 334.6 203.3 335.3 205.3 336.1H262L223.3 300.6C193.9 273.7 192.2 228.3 218.9 199.3C233.7 183.1 280.1 158.1 320.4 194.9L328.6 202.4L436.8 114.6C440.2 111.8 440.7 106.7 438 103.3zM544 144.1H474.8C472.5 146.9 469.9 149.5 467.1 151.8L364.4000000000001 235.2L376.9000000000001 246.6C383.4000000000001 252.6 383.9000000000001 262.7 377.9000000000001 269.2L367 280.9C361 287.4 350.9 287.8 344.4 281.9L289.2 231.3C279.7 222.6 263.5 221.9 254.6 231.3C245.3 241.2 246.1 256.4 255.8 265.2000000000001L321.4 325.3C328.8 332.1 338.4 335.8 348.4 335.8L432.1 336C434.2 336 436.2 335.2000000000001 437.6 333.7000000000001L499.3 272.1H544V144.1zM592 96.4C583.2 96.4 576 103.6 576 112.4S583.2 128.4 592 128.4S608 121.2 608 112.4C608 103.5 600.8 96.4 592 96.4z" />
+    <glyph glyph-name="hanukiah"
+      unicode="&#xF6E6;"
+      horiz-adv-x="640" d=" M456 288C451.58 288 448 284.42 448 280V152H480V280C480 284.42 476.42 288 472 288H456zM320 368C333.25 368 344 379.94 344 394.67S320 448 320 448S296 409.39 296 394.67S306.75 368 320 368zM544 280C544 284.42 540.42 288 536 288H520C515.58 288 512 284.42 512 280V152H544V280zM616 320C629.25 320 640 331.94 640 346.67C640 361.39 616 400 616 400S592 361.39 592 346.67C592 331.94 602.75 320 616 320zM392 288C387.58 288 384 284.42 384 280V152H416V280C416 284.42 412.42 288 408 288H392zM104 288C99.58 288 96 284.42 96 280V152H128V280C128 284.42 124.42 288 120 288H104zM24 320C37.25 320 48 331.94 48 346.67C48 361.39 24 400 24 400S0 361.39 0 346.67C0 331.94 10.75 320 24 320zM624 288H608C599.16 288 592 280.8400000000001 592 272V153.78C592 130.71 573.29 112 550.22 112H344V320C344 328.8400000000001 336.84 336 328 336H312C303.1600000000001 336 296 328.8400000000001 296 320V112H89.78C66.71 112 48 130.71 48 153.78V272C48 280.8400000000001 40.84 288 32 288H16C7.16 288 0 280.8400000000001 0 272V153.78C0 104.2 40.2 64 89.78 64H296V-16H112C103.16 -16 96 -23.16 96 -32V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-32C544 -23.16 536.84 -16 528 -16H344V64H550.22C599.8100000000001 64 640 104.2 640 153.78V272C640 280.8400000000001 632.84 288 624 288zM168 288C163.58 288 160 284.42 160 280V152H192V280C192 284.42 188.42 288 184 288H168zM232 288C227.58 288 224 284.42 224 280V152H256V280C256 284.42 252.42 288 248 288H232zM112 320C125.25 320 136 331.94 136 346.67S112 400 112 400S88 361.39 88 346.67S98.75 320 112 320zM176 320C189.25 320 200 331.94 200 346.67S176 400 176 400S152 361.39 152 346.67S162.75 320 176 320zM240 320C253.25 320 264 331.94 264 346.67S240 400 240 400S216 361.39 216 346.67S226.75 320 240 320zM400 320C413.25 320 424 331.94 424 346.67S400 400 400 400S376 361.39 376 346.67S386.75 320 400 320zM464 320C477.25 320 488 331.94 488 346.67S464 400 464 400S440 361.39 440 346.67S450.75 320 464 320zM528 320C541.25 320 552 331.94 552 346.67S528 400 528 400S504 361.39 504 346.67S514.75 320 528 320z" />
+    <glyph glyph-name="hashtag"
+      unicode="&#xF292;"
+      horiz-adv-x="448" d=" M443.524 257.891L447.81 281.891C449.123 289.246 443.468 296 435.997 296H346.952L365.861 401.89C367.174 409.245 361.519 416 354.048 416H329.668A12 12 0 0 1 317.855 406.11L298.192 296H186.952L205.861 401.89C207.174 409.245 201.519 416 194.048 416H169.668A12 12 0 0 1 157.855 406.11L138.192 296H44.86A12 12 0 0 1 33.047 286.1090000000001L28.761 262.1090000000001C27.448 254.754 33.103 248 40.575 248H129.62L109.62 136H16.289A12 12 0 0 1 4.476 126.109L0.19 102.109C-1.123 94.754 4.532 88 12.003 88H101.048L82.139 -17.891C80.826 -25.246 86.481 -32 93.953 -32H118.333A12 12 0 0 1 130.146 -22.109L149.808 88H261.048L242.139 -17.891C240.826 -25.246 246.481 -32 253.952 -32H278.332A12 12 0 0 1 290.145 -22.109L309.808 88H403.139A12 12 0 0 1 414.952 97.891L419.238 121.891C420.551 129.2460000000001 414.896 136 407.425 136H318.38L338.38 248H431.711A12 12 0 0 1 443.524 257.891zM269.62 136H158.38L178.38 248H289.62L269.62 136z" />
+    <glyph glyph-name="hat-santa"
+      unicode="&#xF7A7;"
+      horiz-adv-x="640" d=" M627 269.7C625.5 282.9 619.6 295.6 609.6 305.6C599.9 315.3 587.4 321.4 573.8000000000001 322.9C563.3000000000001 331.2 550.2 336 536.0000000000001 336S508.7000000000001 331.2 498.2000000000001 322.9C498.1000000000001 322.9 498.0000000000001 322.8 497.8000000000001 322.8C426.3 389 379.8 416 305.4 416H305.2C232.4 415.9 166.8 371 137.8 301.6L58.8 112H32C14.3 112 0 95.9 0 76V4C0 -15.9 14.3 -32 32 -32H480C497.7 -32 512 -15.9 512 4V76C512 95.9 497.7 112 480 112H450.4L387.6 224.8L439.4 204.5C441.2 201 442.6 197.4 445 194.3C446.5 181.1 452.4 168.4 462.4 158.4C472.2 148.6 484.8 142.5000000000001 498.4 140.9C508.8 132.7000000000001 521.9 128.0000000000001 535.9 128.0000000000001S563 132.7000000000001 573.4 140.9C587 142.5000000000001 599.6 148.6 609.4 158.4C619.4 168.4 625.3 181.0000000000001 626.8 194.2000000000001C635.0999999999999 204.6000000000001 639.8 217.8000000000001 639.8 231.9000000000001S635.1999999999999 259.2000000000001 627 269.7000000000001zM464 64V16H48V64H464zM335.4 220.1L395.5 112H110.8L182.1 283.2C203.5 334.7 251.8 368 305.2 368H305.3C359.7 368 394.8 350.9 455.6 296C450.1 287.9 446 279.1 444.9000000000001 269.6C441.8 265.7 439.8 261.1 437.7000000000001 256.6L385.2000000000001 277.2C380.4000000000001 279.1 375.4000000000001 280 370.4000000000001 280C356.2000000000001 280 342.9000000000001 272.3 335.6 260C328.5 247.7 328.3 232.7 335.4000000000001 220.1zM582.3 219.5L572.8 216.7L577.5 208C580.4 202.7 579.6 196.4 575.5 192.4C573 189.9 569.6 188.5 566.1 188.5C564.3000000000001 188.5 562.3000000000001 189.1 559.9 190.4L551.1999999999999 195.1L548.4 185.6C546.6999999999999 179.8 541.6999999999999 175.9 535.9 175.9S525.1 179.8 523.4 185.6L520.6 195.1L511.9 190.4C509.5000000000001 189.1 507.5000000000001 188.5 505.7 188.5C502.1 188.5 498.8000000000001 189.9 496.3000000000001 192.4C492.2 196.5 491.4000000000001 202.7 494.3000000000001 208L499.0000000000001 216.7L489.5000000000001 219.5C483.7 221.2 479.8000000000001 226.2 479.8000000000001 232S483.7 242.8 489.5000000000001 244.5L499.0000000000001 247.3L494.3000000000001 256C491.4000000000001 261.3 492.2 267.6 496.3000000000001 271.6C498.7 274 501.9000000000001 275.3 505.3000000000001 275.3C507.6000000000001 275.3 509.9000000000001 274.7 512.0000000000001 273.6L520.7000000000002 268.9L523.5000000000001 278.4C525.2000000000002 284.2000000000001 530.2000000000002 288.1 536.0000000000001 288.1S546.8000000000001 284.2 548.5000000000001 278.4L551.3000000000001 268.9L560.0000000000001 273.6C562.1000000000001 274.7 564.4000000000001 275.3 566.7000000000002 275.3C570.1000000000001 275.3 573.3000000000002 274 575.7000000000002 271.6C579.8000000000002 267.5 580.6000000000001 261.3 577.7000000000002 256L573.0000000000001 247.3L582.5000000000001 244.5C588.3000000000001 242.8 592.2000000000002 237.8 592.2000000000002 232S588.1000000000001 221.2 582.3000000000002 219.5z" />
+    <glyph glyph-name="hat-winter"
+      unicode="&#xF7A8;"
+      horiz-adv-x="512" d=" M480 32H32C14.3 32 0 17.7 0 0V-32C0 -49.7 14.3 -64 32 -64H480C497.7 -64 512 -49.7 512 -32V0C512 17.7 497.7 32 480 32zM195.2 342.8C189.7 332.7 190.8 320 199.4 311.4C204.6 306.2000000000001 211.4 303.6 218.3 303.6C222.7 303.6 226.9 305.1 230.8 307.2C234.1 296.2 243.9 288 256 288S277.9 296.2 281.2 307.2C285.2 305.1 289.4 303.6 293.7 303.6C300.5 303.6 307.3 306.2 312.6 311.4C321.2 320 322.3 332.7 316.8 342.8C327.8 346.1 336 355.9 336 368S327.8 389.9000000000001 316.8 393.2000000000001C322.3 403.3 321.2 416 312.6 424.6S291.3 434.3 281.2 428.8C277.9 439.8 268.1 448 256 448S234.1 439.8 230.8 428.8C220.7 434.3 208 433.2 199.4 424.6S189.7 403.3 195.2 393.2C184.2 389.9 176 380.1 176 368S184.2 346.1 195.2 342.8zM85.9 112.1L128 133.2000000000001L192 101.2000000000001L256 133.2000000000001L320 101.2000000000001L384 133.2000000000001L426.1 112.1C431.6 85.7000000000001 432 66.5 432 64H480C480 66 477.7 229.5 348.1 308.9C345.3 301.6 341 294.7000000000001 335.1 288.8C328.5 282.2000000000001 320.5 277.6 311.9000000000001 274.8C358.7000000000001 250.2 387.1 213 404.5 176.6L384 186.8L320 154.8L256 186.8L192 154.8L128 186.8L107.4 176.5C124.8 212.9 153.2 250.1 200 274.7C191.4 277.5 183.4 282.1 176.8 288.7C170.9 294.6 166.7 301.4 163.9 308.8C34.3 229.5 32 66 32 64H80C80 66.5 80.4 85.7 85.9 112.1z" />
+    <glyph glyph-name="hat-witch"
+      unicode="&#xF6E7;"
+      horiz-adv-x="576" d=" M572 14.94L561.53 26.8C555.9599999999999 33.11 546.5899999999999 33.65 539.88 28.56C528.93 20.24 517.13 13.3 504.92 7.18L408.2 224.15C403.66 234.76 403.15 246.86 406.87 258.02L413.2200000000001 277.06A15.982 15.982 0 0 0 428.4 288H467.6C474.4999999999999 288 480.6 283.6 482.78 277.06L496.82 234.94L510.76 193.12L526.89 234.15L557.25 311.39C563.32 329.54 558.88 348.36 545.94 361.3L476.8600000000001 433.68C467.53 443.01 455.47 448 442.64 448C434.31 448 426.08 445.81 418.84 441.68L252.01 338.42C225.68 323.39 204.88 300.38 192.34 272.16L71.48 7C59.13 13.16 47.19 20.15 36.11 28.56C29.4 33.66 20.04 33.11 14.46 26.8L4 14.94C-1.92 8.23 -1.25 -2.31 5.85 -7.77C53.08 -44.14 111.35 -64 171.63 -64H404.38C464.66 -64 522.92 -44.14 570.15 -7.77C577.24 -2.3 577.92 8.23 572 14.94zM208 -16.88H171.63C152.9 -16.88 134.62 -13.86 116.78 -9.37L135.63 32H208V-16.88zM320 -16H256V48H320V-16zM330 96H246C233.41 96 222.78 89.45 215.86 80H157.51L236.2100000000001 252.67C244.5700000000001 271.48 258.4400000000001 286.82 277.2800000000001 297.61L442.65 399.99L511.97 327.39L509.29 320.5800000000001A63.876 63.876 0 0 1 467.6 336H428.4000000000001A63.913000000000004 63.913000000000004 0 0 1 367.6900000000001 292.24L361.3400000000001 273.2000000000001C353.9000000000001 250.87 354.9000000000001 226.6600000000001 364.36 204.6L419.9100000000001 80H360.1400000000001C353.2200000000001 89.45 342.5900000000001 96 330.0000000000001 96zM404.37 -16.88H368V32H441.3L459.69 -9.25C441.7 -13.82 423.27 -16.88 404.37 -16.88z" />
+    <glyph glyph-name="hat-wizard"
+      unicode="&#xF6E8;"
+      horiz-adv-x="512" d=" M496 -16H460.5L379.18 184.17C371.9700000000001 201.9 371.19 221.81 376.9700000000001 240.11L442.67 448L223.83 316.0800000000001C196.22 299.44 174.37 273.93 161.46 243.2800000000001L52.22 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-32C512 -23.16 504.84 -16 496 -16zM240 -16L250.67 5.33L304 32L250.67 58.67L224 112L197.33 58.67L144 32L197.33 5.33L208 -16H104.31L205.69 224.64C206.68 227 208.03 229.14 209.18 231.41L224 224L240 192L256 224L288 240L256 256L247.07 273.86C247.6 274.2000000000001 248.07 274.65 248.61 274.9700000000001L358.61 341.2800000000001L331.2100000000001 254.5700000000001C322.0600000000001 225.6100000000001 323.3 194.1900000000001 334.7200000000001 166.1L341.5800000000001 149.21L320 160L304 192L288 160L256 144L288 128L304 96L320 128L345.09 140.55L408.69 -16H240z" />
+    <glyph glyph-name="haykal"
+      unicode="&#xF666;"
+      horiz-adv-x="512" d=" M496.25 245.48L386.25 260.92L428.07 365.26C433.33 378.37 423.09 390.81 411.18 390.81C407.98 390.81 404.6600000000001 389.91 401.49 387.89L307.45 328L273.35 435.18C270.64 443.73 263.32 448 256 448C248.68 448 241.36 443.73 238.65 435.18L204.56 327.99L110.52 387.88C107.34 389.9000000000001 104.02 390.8 100.83 390.8C88.92 390.8 78.68 378.37 83.94 365.25L125.76 260.9100000000001L15.76 245.4700000000001C-1.77 243.01 -5.91 219.2 9.73 210.8L107.89 158.14L33.4 74.61C22.48 62.36 31.68 43.68 46.68 43.68C48 43.68 49.35 43.82 50.75 44.13L159.32 67.78L155.21 -44.77C154.78 -56.42 164.08 -63.99 173.62 -63.99C178.78 -63.99 184.01 -61.78 187.82 -56.81L256 32.09L324.18 -56.8099999999999C327.99 -61.78 333.22 -63.9899999999999 338.38 -63.9899999999999C347.93 -63.9899999999999 357.2199999999999 -56.42 356.79 -44.77L352.68 67.78L461.2499999999999 44.1300000000001C462.6399999999999 43.83 463.9999999999999 43.6800000000001 465.3199999999999 43.6800000000001C480.3299999999999 43.6800000000001 489.5199999999999 62.3700000000001 478.5999999999999 74.6100000000001L404.1199999999999 158.1500000000001L502.2799999999999 210.8100000000001C517.9299999999998 219.2100000000001 513.7899999999998 243.0200000000001 496.2499999999999 245.4800000000001zM369.02 125.95L383.01 110.26L362.62 114.7L303.14 127.66L305.39 65.99L306.16 44.85L293.35 61.55L256 110.26L218.65 61.55L205.84 44.85L206.61 65.99L208.86 127.66L149.38 114.7000000000001L128.99 110.2600000000001L142.98 125.9500000000001L183.79 171.72L130.01 200.57L111.57 210.46L132.23 213.3600000000001L192.5 221.8200000000001L169.59 278.9900000000001L161.73 298.5900000000001L179.4 287.3400000000001L230.9200000000001 254.5300000000001L249.6000000000001 313.2600000000001L256.0000000000001 333.4000000000001L262.4000000000001 313.2600000000001L281.0800000000001 254.5300000000001L332.6 287.3400000000001L350.2700000000001 298.5900000000001L342.4100000000001 278.9900000000001L319.5 221.8200000000001L379.77 213.3600000000001L400.43 210.46L381.99 200.5700000000001L328.2100000000001 171.72L369.0200000000001 125.9500000000001z" />
+    <glyph glyph-name="hdd"
+      unicode="&#xF0A0;"
+      horiz-adv-x="576" d=" M567.403 212.358L462.323 363.411A48 48 0 0 1 422.919 384H153.081A48 48 0 0 1 113.677 363.411L8.597 212.358A48.001 48.001 0 0 1 0 184.946V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V184.946C576 194.747 573 204.312 567.403 212.358zM153.081 336H422.919L500.832 224H75.168L153.081 336zM528 48H48V176H528V48zM496 112C496 94.327 481.673 80 464 80S432 94.327 432 112S446.327 144 464 144S496 129.673 496 112zM400 112C400 94.327 385.673 80 368 80S336 94.327 336 112S350.327 144 368 144S400 129.673 400 112z" />
+    <glyph glyph-name="head-side"
+      unicode="&#xF6E9;"
+      horiz-adv-x="512" d=" M352 256C352 273.67 337.67 288 320 288S288 273.67 288 256S302.33 224 320 224S352 238.33 352 256zM509.21 173C488.27 220.12 460.77 324.73 436.1300000000001 359.75C397.68 414.4 334.56 448 266.09 448H200.01C95.47 448 4.12 367.92 0.14 263.45C-2.13 203.67 23.1 149.86 64 113.18V-48C64 -56.84 71.16 -64 80 -64H96C104.84 -64 112 -56.84 112 -48V134.61L96.05 148.92C49.11 191.0200000000001 32.94 260.64 63.86 321.42C89.2 371.2200000000001 143.11 400 198.99 400H266.0900000000001C318.0800000000001 400 366.9700000000001 374.63 396.87 332.13C408.07 316.2200000000001 424.93 266.46 437.25 230.13C443.8 210.81 450.11 192.21 456.22 176H400V64C400 55.16 392.84 48 384 48H304V-48C304 -56.84 311.1600000000001 -64 320 -64H336C344.84 -64 352 -56.84 352 -48V0H384C419.35 0 448 28.65 448 64V128H479.96C503.12 128 518.61 151.84 509.21 173z" />
+    <glyph glyph-name="head-vr"
+      unicode="&#xF6EA;"
+      horiz-adv-x="512" d=" M398.34 400C361.82 430.28 315.46 448 266.09 448H200.01C134.87 448 75.11 416.71 38.16 368H32C14.33 368 0 353.67 0 336V272C0 254.33 14.33 240 32 240H216C216.27 240 216.42 240.26 216.68 240.28C234.26 220.62 259.55 208 288 208H480C497.67 208 512 222.33 512 240V368C512 385.67 497.67 400 480 400H398.3400000000001zM193.61 288H48V320H193.61C192.73 314.77 192 309.48 192 304S192.73 293.23 193.61 288zM216 368H104.07C130.84 388.36 164.3 400 198.99 400H266.0900000000001C270.7500000000001 400 275.35 399.6 279.9500000000001 399.19C254.8100000000001 397.07 232.5600000000001 385.48 216.68 367.7200000000001C216.4200000000001 367.74 216.2700000000001 368 216 368zM384 256H288C261.53 256 240 277.53 240 304S261.53 352 288 352H384V256zM464 256H432V352H464V256zM56.5 208H6.39C16.03 170.88 36.28 138.04 64 113.18V-48C64 -56.84 71.16 -64 80 -64H96C104.84 -64 112 -56.84 112 -48V134.61L96.05 148.92C77.91 165.18 64.51 185.61 56.5 208zM507.99 176H400V64C400 55.16 392.84 48 384 48H304V-48C304 -56.84 311.1600000000001 -64 320 -64H336C344.84 -64 352 -56.84 352 -48V0H384C419.35 0 448 28.65 448 64V128H479.96C503.12 128 518.61 151.84 509.2 173C508.81 173.88 508.38 175.08 507.99 176z" />
+    <glyph glyph-name="heading"
+      unicode="&#xF1DC;"
+      horiz-adv-x="448" d=" M300 368H336.703V218.017H111.297V368H148C154.627 368 160 373.373 160 380V404C160 410.627 154.627 416 148 416H12C5.373 416 0 410.627 0 404V380C0 373.373 5.373 368 12 368H47.841V16H12C5.373 16 0 10.627 0 4V-20C0 -26.627 5.373 -32 12 -32H148C154.627 -32 160 -26.627 160 -20V4C160 10.627 154.627 16 148 16H111.297V165.984H336.703V16H300C293.373 16 288 10.627 288 4V-20C288 -26.627 293.373 -32 300 -32H436C442.627 -32 448 -26.627 448 -20V4C448 10.627 442.627 16 436 16H400.159V368H436C442.627 368 448 373.373 448 380V404C448 410.627 442.627 416 436 416H300C293.373 416 288 410.627 288 404V380C288 373.373 293.373 368 300 368z" />
+    <glyph glyph-name="headphones-alt"
+      unicode="&#xF58F;"
+      horiz-adv-x="512" d=" M192 160H144C108.65 160 80 131.3 80 95.88V32.12C80 -3.29 108.65 -32 144 -32H192C209.67 -32 224 -17.64 224 0.06V127.94C224 145.65 209.67 160 192 160zM176 16.09H144C135.18 16.09 128 23.28 128 32.12V95.88C128 104.72 135.18 111.91 144 111.91H176V16.09zM256 416C112.91 416 4.57 296.87 0 160V48C0 39.16 7.16 32 16 32H32C40.84 32 48 39.16 48 48V160C48 274.67 141.33 367.8 256 367.82C370.67 367.8 464 274.67 464 160V48C464 39.16 471.16 32 480 32H496C504.84 32 512 39.16 512 48V160C507.43 296.87 399.09 416 256 416zM368 160H320C302.33 160 288 145.65 288 127.94V0.06C288 -17.64 302.33 -32 320 -32H368C403.35 -32 432 -3.29 432 32.12V95.88C432 131.29 403.35 160 368 160zM384 32.12C384 23.28 376.82 16.09 368 16.09H336V111.91H368C376.82 111.91 384 104.72 384 95.88V32.12z" />
+    <glyph glyph-name="headphones"
+      unicode="&#xF025;"
+      horiz-adv-x="512" d=" M256 416C114.52 416 0 301.503 0 160V110.286A24.001000000000005 24.001000000000005 0 0 1 12.319 89.32L32.021 78.343C32.908 17.252 82.698 -32 144 -32H168C181.255 -32 192 -21.255 192 -8V168C192 181.255 181.255 192 168 192H144C103.256 192 67.598 170.242 48 137.713V160C48 274.6910000000001 141.309 368 256 368S464 274.6910000000001 464 160V137.713C444.402 170.242 408.7440000000001 192 368 192H344C330.745 192 320 181.255 320 168V-8C320 -21.255 330.745 -32 344 -32H368C429.302 -32 479.092 17.252 479.979 78.344L499.681 89.321A24.001000000000005 24.001000000000005 0 0 1 512 110.287V160C512 301.48 397.503 416 256 416zM144 144V16C108.71 16 80 44.71 80 80S108.71 144 144 144zM368 16V144C403.29 144 432 115.29 432 80S403.29 16 368 16z" />
+    <glyph glyph-name="headset"
+      unicode="&#xF590;"
+      horiz-adv-x="512" d=" M224 112V255.64C224 273.31 209.67 287.64 192 287.64H144C108.65 287.64 80 258.99 80 223.64V144C80 108.65 108.65 80 144 80H192C209.67 80 224 94.33 224 112zM176 128H144C135.18 128 128 135.18 128 144V223.64C128 232.46 135.18 239.64 144 239.64H176V128zM256 448C113.18 448 4.58 329.17 0 192V176C0 167.16 7.16 160 16 160H32C40.84 160 48 167.16 48 176V192C48 306.69 141.31 400 256 400S464 306.69 464 192H463.88C463.96 189.57 464 26.28 464 26.28C464 2.93 445.07 -16 421.7200000000001 -16H320C320 10.51 298.51 32 272 32H240C213.49 32 192 10.51 192 -16S213.49 -64 240 -64H421.7200000000001C471.58 -64 512 -23.58 512 26.28V192C507.42 329.17 398.82 448 256 448zM368 80C403.35 80 432 108.65 432 144V223.64C432 258.99 403.35 287.64 368 287.64H320C302.33 287.64 288 273.31 288 255.64V112C288 94.33 302.33 80 320 80H368zM336 239.64H368C376.82 239.64 384 232.46 384 223.64V144C384 135.18 376.82 128 368 128H336V239.64z" />
+    <glyph glyph-name="heart-broken"
+      unicode="&#xF7A9;"
+      horiz-adv-x="512" d=" M473.7 374.1L471.3 376.6C445.5 402.9 411.6 416 377.6 416S309.7000000000001 402.9 283.9000000000001 376.6L256 348L228.1 376.5C202.4 402.8 168.4 416 134.4 416S66.5 402.8 40.7 376.5L38.3 374.1C-10.4 324.3 -12.5 245 31 192L243.1 -26.5C246.6 -30.1 251.3 -32 255.9 -32C260.6 -32 265.2 -30.2 268.7 -26.5L481 192C524.5 245 522.4 324.3 473.7 374.1zM445 223.8L256 29.1L67 223.8C39.8 258.4 42.1 309.3 72.2 340.1L75 342.9C90.8 359.1 111.9 368 134.4 368S178 359.1 193.8 342.9L219.8 316.3L240 256L164.4 220.8C159.6 218.4 158.5 212.1 162.1 208.2L248.9 119.6C254.8 113.6 264.7 119.5 262.3 127.5L240 200L316.6 252.4C319.6 254.5 320.8 258.4 319.5 261.8L295.9 320.1L318.2 342.9C334 359.1 355.1 368 377.6 368S421.2000000000001 359.1 436.6 343.3L439.3 340.5C469.9 309.3 472.2 258.4 445 223.8z" />
+    <glyph glyph-name="heart-circle"
+      unicode="&#xF4C7;"
+      horiz-adv-x="496" d=" M361.8 285.2C323.5 318 272.8 303 248 277.4C223.2 303 172.5 318 134.2 285.2C91.8 249 98.1 190 128.2 158.9L226.9 56.9C239.9 43.5 259.4 46.7 269.3 56.9L368 158.9C397.8999999999999 190 404.2 249 361.8 285.2zM334.1 192.5L248.0000000000001 103.5L161.9 192.6C148.9 206.1 145.7000000000001 232.3 164.6 248.5C178.7 260.5 200.7 257.5 213.9 243.8L248.0000000000001 208.4L282.1 243.8C295.3 257.5 317.4000000000001 260.5 331.4000000000001 248.5C350.3 232.3 347.2000000000001 206 334.1 192.5zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8z" />
+    <glyph glyph-name="heart-rate"
+      unicode="&#xF5F8;"
+      horiz-adv-x="640" d=" M624 216H480C470.7 216 462.24 210.63 458.28 202.21L422.5 126.17L343.2200000000001 430.06C340.4700000000001 440.64 330.9100000000001 448 320 448C319.81 448 319.59 448 319.38 447.98C308.26 447.7 298.76 439.78 296.5 428.86L220.66 62.34L183.13 198.37C180.26 208.78 170.78 215.9900000000001 159.98 215.9900000000001H16C7.16 215.9900000000001 0 208.8300000000001 0 199.9900000000001V183.99C0 175.15 7.16 167.99 16 167.99H141.72L200.88 -46.39A23.974000000000004 23.974000000000004 0 0 1 224 -64C224.25 -64 224.53 -64 224.78 -63.98C235.87 -63.62 245.25 -55.71 247.5 -44.86L322.69 318.58L392.78 49.94C395.31 40.17 403.72 33.03 413.78 32.11C424.28 30.97 433.4 36.64 437.72 45.78L495.22 168H624C632.84 168 640 175.16 640 184V200C640 208.84 632.84 216 624 216z" />
+    <glyph glyph-name="heart-square"
+      unicode="&#xF4C8;"
+      horiz-adv-x="448" d=" M325.2 287.6C311.3 299.3 295.6 304 280.3 304C258.2 304 237 294 224 280.7C211 294 189.8 304 167.7 304C152.4 304 136.7 299.3 122.8 287.6C85.2 255.9 90.7 204.3 117.5 177.1L205.2 87.8C210.7 82.2 217.3 80 223.7 80H224.3C230.7 80 237.3 82.2 242.8 87.8L330.5 177.1C357.2 204.3 362.8 255.9000000000001 325.2 287.6zM296.3 210.7L224 137.1L151.7 210.7C147.7 214.8 135.3 235.4 153.7 250.9000000000001C167.3 262.3000000000001 185 252.0000000000001 189.8 247.2000000000001L224 212.4L258.2 247.2000000000001C262.9 252.0000000000001 280.6 262.4000000000001 294.3 250.9000000000001C312.6 235.4000000000001 300.2 214.7000000000001 296.3 210.7000000000001zM392 416H56C25.1 416 0 390.9 0 360V24C0 -6.9 25.1 -32 56 -32H392C422.9 -32 448 -6.9 448 24V360C448 390.9 422.9 416 392 416zM400 24C400 19.6 396.4 16 392 16H56C51.6 16 48 19.6 48 24V360C48 364.4 51.6 368 56 368H392C396.4 368 400 364.4 400 360V24z" />
+    <glyph glyph-name="heart"
+      unicode="&#xF004;"
+      horiz-adv-x="512" d=" M458.4 383.7C400.6 432.3 311.3 425 256 368.7C200.7 425 111.4 432.4 53.6 383.7C-21.6 320.4 -10.6 217.2 43 162.5L218.4 -16.2C228.4 -26.4 241.8 -32.1 256 -32.1C270.3 -32.1 283.6 -26.4999999999999 293.6 -16.3L469 162.4C522.5 217.1 533.7 320.3 458.4 383.7zM434.8 196.2L259.4 17.5C257 15.1 255 15.1 252.6 17.5L77.2 196.2C40.7 233.4 33.3 303.8 84.5 346.9C123.4 379.6 183.4 374.7 221 336.4L256 300.7L291 336.4C328.8 374.9 388.8 379.6 427.5 347C478.6 303.9 471 233.1 434.8 196.2z" />
+    <glyph glyph-name="heartbeat"
+      unicode="&#xF21E;"
+      horiz-adv-x="512" d=" M266.4 20.3C260.6 14.6 251.3 14.6 245.5 20.3L136.7 128H68.5L211.8 -13.8C236.3 -38 275.7 -38.1 300.2000000000001 -13.8L443.5 128H375.3L266.4 20.3zM354.7 416C318.2 416 283.7 403.7 256 381.1C228.3 403.7 193.8 416 157.3 416C86.2 416 0 359.1 0 260C0 222.7 13.7 187.9 37.8 160H154.6L184.5 231.7L241.4 105.4C246.9 93.1 264.3 92.7 270.3 104.8L320 204.2L342.1 160H474.1C498.2 187.8999999999999 511.9 222.6999999999999 511.9 260C512 359.0999999999999 425.8000000000001 416 354.7000000000001 416zM438.6 192H361.9000000000001L334.3 247.2C328.4000000000001 259 311.6 259 305.7 247.2L256.8 149.3L198.6 278.6C192.9 291.4 174.6 291.1 169.2 278.2L133.3 192H73.4C14.6 261.5 66.4 368 157.3 368C188.3 368 208.3 361.8 256 314.6C307.1 365.1 325.1 368 354.7 368C445.9 368 497.4 261.5 438.6 192z" />
+    <glyph glyph-name="helicopter"
+      unicode="&#xF533;"
+      horiz-adv-x="640" d=" M316.5 31.98H551.72C567.4100000000001 31.98 582.53 38.61 593.23 50.14C603.78 61.5500000000001 609.13 76.89 607.91 92.27C597.9699999999999 214.8100000000001 497.46 311.62 375.96 319.25V400H559.99C568.83 400 575.99 407.16 575.99 416V432C575.99 440.84 568.82 448 559.99 448H143.93C135.09 448 127.93 440.84 127.93 432V416C127.93 407.16 135.1 400 143.93 400H327.9600000000001V320H148.19L112.12 368.02C104.58 378.03 92.58 384 80.06 384H39.99C27.56 384 16.04 378.39 8.4 368.61C0.76 358.83 -1.9 346.33 1.39 333.41L36.2 214.05L201.13 148.2000000000001L271.6 54.3800000000001C282.1500000000001 40.3500000000001 298.93 31.9800000000001 316.5 31.9800000000001zM407.9700000000001 266.01C489.6 245.83 552.9300000000001 175.14 559.95 88.4400000000001C560.1700000000001 85.78 558.95 83.8600000000001 557.88 82.72C556.9399999999999 81.7000000000001 554.88 79.99 551.71 79.99H407.9700000000001V266.01zM75.84 249.93L50.7 336H76.06L124.15 272H359.9700000000001V79.99H316.5C313.99 79.99 311.58 81.18 310.08 83.19L231.5 187.77L75.84 249.93zM637.72 -24.56L615.5600000000001 -2.42C612.47 0.67 607.5000000000001 0.67 604.34 -2.35C596.95 -9.41 588.2 -16 573.9300000000001 -16H239.95C231.15 -16 223.95 -23.2 223.95 -32V-48C223.95 -56.8 231.15 -64 239.95 -64H573.9300000000001C587.34 -64 605.72 -64 637.09 -36.53A8.564 8.564 0 0 1 640 -30.44C640.06 -28.2 639.25 -26.11 637.72 -24.56z" />
+    <glyph glyph-name="helmet-battle"
+      unicode="&#xF6EB;"
+      horiz-adv-x="576" d=" M32.01 192C49.68 192 64 204.56 64 220.06V448L0.97 226.87C-4.08 209.16 11.2 192 32.01 192zM575.03 226.87L512 448V220.06C512 204.56 526.32 192 543.99 192C564.8 192 580.08 209.16 575.03 226.87zM480 237.18C480 357.65 288 448 288 448S96 357.65 96 237.18C96 154.42 73.14 91.28 64.87 56.47C61.44 42.04 68.46 27.1 81.19 21.23L242.73 -57.53A64.01 64.01 0 0 1 270.78 -64H305.24C314.96 -64 324.55 -61.79 333.29 -57.53L494.8299999999999 21.23C507.5599999999999 27.1 514.5799999999999 42.04 511.1499999999999 56.47C502.8599999999999 91.28 479.9999999999999 154.42 479.9999999999999 237.1800000000001zM312 -14.5V160L400 192V224H176V192L264 160V-14.5L114.88 58.19C115.65 61.01 116.46 63.96 117.31 67.05C127.94 105.64 144 163.9500000000001 144 237.18C144 300.62 235.88 364.89 288 393.94C340.12 364.89 432 300.62 432 237.18C432 163.95 448.06 105.64 458.69 67.06C459.54 63.98 460.35 61.02 461.12 58.21L312 -14.5z" />
+    <glyph glyph-name="hexagon"
+      unicode="&#xF312;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM400 0H176L64 192L176 384H400L512 192L400 0z" />
+    <glyph glyph-name="highlighter"
+      unicode="&#xF591;"
+      horiz-adv-x="544" d=" M0 -31.98L99.88 -64L135.44 -28.42L68.43 38.62L0 -31.98zM527.93 368.73L464.7599999999999 431.93C454.09 442.61 440.04 448 425.9700000000001 448C413.04 448 400.0900000000001 443.45 389.6900000000001 434.27L124.8 208.04A36.598 36.598 0 0 1 114.01 169.94L127.06 127.11L93.11 93.14C83.74 83.77 83.74 68.58 93.11 59.21L155.37 -3.08C164.74 -12.46 179.95 -12.46 189.32 -3.08L223.18 30.8L265.9 17.72A36.54 36.54 0 0 1 276.6 16.11A36.57 36.57 0 0 1 304.03 28.49L530.28 293.62C549.4399999999999 315.3399999999999 548.42 348.23 527.93 368.73zM272.78 65.82L237.23 76.71L209.64 85.16L189.24 64.7499999999999L172.35 47.85L144.04 76.17L161.01 93.15L181.38 113.53L172.98 141.1L162.12 176.76L200.3499999999999 209.41L305.53 104.18L272.78 65.82zM493.77 324.79L326.36 128.61L224.76 230.26L421.4400000000001 398.26C422.7300000000001 399.4000000000001 424.2600000000001 399.98 425.9700000000001 399.98C427.2700000000001 399.98 429.17 399.63 430.8300000000001 397.9700000000001L494.0000000000001 334.77C496.5400000000001 332.2100000000001 496.6700000000001 328.0900000000001 493.77 324.79z" />
+    <glyph glyph-name="hiking"
+      unicode="&#xF6EC;"
+      horiz-adv-x="384" d=" M114.13 195.92L142.88 307C148.47 328.31 133.54 345.69 116.94 349.69C74.1 359.94 29.72 334.41 18.75 292.41L1.13 223.95C-3.77 205.25 7.66 185.94 27.07 181.26L71.48 170.62C91.68 165.86 109.72 178.85 114.13 195.92zM70.82 220.14L50.95 224.91L65.23 280.38C68.51 292.9700000000001 79.54 301.83 92.45 303.66L70.82 220.14zM368 288H352C343.1600000000001 288 336 280.8400000000001 336 272V248H298.88L248.79 305.16C239.2 314.74 226.45 320 212.92 320C189.55 320 169.3 304.17 163.67 281.53L141.14 191.45C136.36 172.48 141.98 152.11 155.86 138.22L229.67 64.41C231.17 62.91 232.01 60.86 232.01 58.7499999999999V-40C232.01 -53.25 242.76 -64 256.01 -64S280.01 -53.25 280.01 -40V58.75C280.01 73.7 274.2 87.77 263.6 98.34L213.23 148.72L237.78 244.93L269.94 208.18C274.5 202.98 281.1 199.99 288 199.99H336V-48.01C336 -56.85 343.16 -64.01 352 -64.01H368C376.8399999999999 -64.01 384 -56.85 384 -48.01V272C384 280.8400000000001 376.8399999999999 288 368 288zM121.87 130.4L80.73 -34.17C77.51 -47.03 85.32 -60.06 98.2 -63.28C100.14 -63.76 102.11 -64 104.04 -64C114.79 -64 124.57 -56.72 127.29 -45.83L160.76 88.05L133.21 115.6C128.75 120.06 125.21 125.19 121.87 130.4zM239.99 352C266.5 352 287.99 373.49 287.99 400S266.5 448 239.99 448S191.99 426.51 191.99 400S213.48 352 239.99 352z" />
+    <glyph glyph-name="hippo"
+      unicode="&#xF6ED;"
+      horiz-adv-x="640" d=" M559.21 356.55C540.47 355.14 524.22 347.58 509.85 340.69C491.03 366.44 461.4 383.13 428.87 384.2C422.2 402.7 404.67 416 383.89 416H351.9C325.4 416 303.91 394.51 303.91 368V363.77C275.19 376.55 242.66 384 207.94 384C99.48 384 0 320 0 224V0C0 -17.67 14.32 -32 31.99 -32H111.97C129.64 -32 143.96 -17.67 143.96 0V40.58C199.88 25.28 246.9700000000001 33.76 271.92 40.58V0C271.92 -17.67 286.24 -32 303.9100000000001 -32H383.8900000000001C401.5600000000001 -32 415.8800000000001 -17.67 415.8800000000001 0V144.25L511.85 144.32V112C511.85 103.16 519.01 96 527.85 96H559.84C568.6700000000001 96 575.84 103.16 575.84 112V144.37L588.62 144.38C616.96 144.38 640.01 167.46 640.01 195.82V278.37C640 322.07 604.06 359.65 559.21 356.55zM367.89 16H319.9V103.47C196.96 69.84 205.44 73.52 95.97 103.47V16H47.99V212.49C56.43 291.8 132.07 336 207.94 336C243.82 336 277.04 325.98 303.91 309.42L304.1 250.5300000000001C304.1 206.8900000000001 330.37 169.5700000000001 367.89 153.1800000000001V16zM592.01 192.38L410.38 192.25H410.35C378.17 192.25 352.0900000000001 218.34 352.0900000000001 250.53L351.9 360C351.9 364.42 355.48 368 359.9 368H375.9C380.32 368 383.9 364.42 383.9 360V328.48C406.33 335.05 417.86 336.77 428.47 336.01C450.23 334.4600000000001 469.27 320.68 477.78 300.5900000000001L486.75 279.42C541.69 299.9600000000001 546.42 307.4500000000001 562.79 308.67C581.05 310.25 592.03 291.6900000000001 592.03 278.36V192.38zM431.87 288C423.04 288 415.87 280.8400000000001 415.87 272S423.0300000000001 256 431.87 256S447.87 263.16 447.87 272S440.71 288 431.87 288z" />
+    <glyph glyph-name="history"
+      unicode="&#xF1DA;"
+      horiz-adv-x="512" d=" M504 192.468C504.252 55.828 392.818 -55.904 256.178 -56C192.164 -56.045 133.805 -31.837 89.784 7.942C84.687 12.548 84.484 20.485 89.341 25.342L106.301 42.302C110.83 46.831 118.077 46.961 122.856 42.6969999999999C158.208 11.157 204.848 -8 256 -8C366.549 -8 456 81.468 456 192C456 302.549 366.532 392 256 392C200.48 392 150.292 369.426 114.077 332.957L163.168 284.544C170.809 277.009 165.473 264 154.742 264H26.412C19.785 264 14.412 269.373 14.412 276V402.557C14.412 413.208 27.255 418.58 34.838 411.101L79.935 366.627C124.866 411.933 187.15 440 256 440C392.8110000000001 440 503.747 329.219 504 192.468zM336.942 102.295L351.058 121.704C354.956 127.064 353.771 134.569 348.411 138.4669999999999L280 188.222V332C280 338.627 274.627 344 268 344H244C237.373 344 232 338.627 232 332V163.778L320.179 99.648C325.539 95.751 333.044 96.936 336.942 102.295z" />
+    <glyph glyph-name="hockey-mask"
+      unicode="&#xF6EE;"
+      horiz-adv-x="448" d=" M192 32C183.16 32 176 24.84 176 16S183.16 0 192 0S208 7.16 208 16S200.84 32 192 32zM192 96C183.16 96 176 88.84 176 80S183.16 64 192 64S208 71.16 208 80S200.84 96 192 96zM272 336C280.84 336 288 343.16 288 352S280.84 368 272 368S256 360.8400000000001 256 352S263.17 336 272 336zM176 336C184.84 336 192 343.16 192 352S184.84 368 176 368S160 360.8400000000001 160 352S167.16 336 176 336zM192 160C183.16 160 176 152.84 176 144S183.16 128 192 128S208 135.16 208 144S200.84 160 192 160zM256 32C247.16 32 240 24.84 240 16S247.16 0 256 0S272 7.16 272 16S264.84 32 256 32zM256 160C247.16 160 240 152.84 240 144S247.16 128 256 128S272 135.16 272 144S264.84 160 256 160zM256 96C247.16 96 240 88.84 240 80S247.16 64 256 64S272 71.16 272 80S264.84 96 256 96zM224 320C215.16 320 208 312.8400000000001 208 304S215.16 288 224 288S240 295.16 240 304S232.84 320 224 320zM376.61 393.54C335.13 429.85 279.56 448 224 448C168.43 448 112.87 429.85 71.39 393.54C7.36 337.5 -31.01 223.56 32.63 32C64.53 -64 224 -64 224 -64S383.4700000000001 -64 415.37 32C479.01 223.56 440.64 337.5 376.61 393.54zM369.81 47.13C352.86 -3.91 256.36 -15.84 224 -16C197.63 -16 95.6 -5.29 78.19 47.13C30.98 189.21 40.03 302.3 103.01 357.43C133.92 384.48 178.02 400 224 400C269.98 400 314.08 384.48 344.99 357.43C407.9700000000001 302.3 417.02 189.21 369.81 47.13zM200 240C200 257.67 185.67 272 168 272H104C86.33 272 72 257.67 72 240C72 204.65 100.65 176 136 176S200 204.65 200 240zM280 272C262.33 272 248 257.67 248 240C248 204.65 276.65 176 312 176S376 204.65 376 240C376 257.67 361.67 272 344 272H280z" />
+    <glyph glyph-name="hockey-puck"
+      unicode="&#xF453;"
+      horiz-adv-x="544" d=" M272 400C136.6 400 0 360.4 0 272V128C0 33.5 136.8 -16 272 -16S544 33.5 544 128V272C544 360.4 407.4 400 272 400zM496 128C496 75 395.7 32 272 32S48 75 48 128V194.3C149.2 127.1 394.8 127.1 496 194.3V128zM272 192C148.3 192 48 227.8 48 272S148.3 352 272 352S496 316.2 496 272S395.7 192 272 192z" />
+    <glyph glyph-name="hockey-sticks"
+      unicode="&#xF454;"
+      horiz-adv-x="640" d=" M600 144H407.3L520 361.5C529.9 381.2 521.8 405.2 502.1 415.1L444.8 443.8C425.1 453.7 401.1 445.7 391.2 426.1L320 289.8L248.8 426.1C238.9 445.7 214.9 453.7 195.2 443.8L137.9 415.2C118.2 405.3 110.1 381.2 120 361.6L232.7 144H40C17.9 144 0 126 0 104V-24C0 -46.1 17.9 -64 40 -64H226.5C263.7 -64 297.7 -47 320.1 -18.9C342.5 -47 376.4000000000001 -64 413.6 -64H600C622.1 -64 640 -46.1 640 -24V104C640 126 622.1 144 600 144zM166.6 375.8L209.6 397.3L292.9 237.9L265.4 185.2L166.6 375.8zM79.6 -16H48V96H79.6V-16zM290.9 23.8C278.6 -0.8 253.9 -16 226.4 -16H111.6V96H253.5C265.8 96 276.8 102.8 282 113.3L430.4 397.3L473.4 375.8L290.9 23.8zM527.9 -16H413.5C406.9 -16 370.1 -16.8 347 27.7L382.7 96.6C389.9 95.7000000000001 361.3 96 527.9 96V-16zM592 -16H560V96H592V-16z" />
+    <glyph glyph-name="holly-berry"
+      unicode="&#xF7AA;"
+      horiz-adv-x="448" d=" M224 352C250.5 352 272 373.5 272 400S250.5 448 224 448S176 426.5 176 400S197.5 352 224 352zM255.9 304C255.9 277.5 277.4 256 303.9 256S351.9 277.5 351.9 304S330.4 352 303.9 352S255.9 330.5 255.9 304zM144 256.1C170.5 256.1 192 277.6 192 304.1S170.5 352.1 144 352.1S96 330.6 96 304.1S117.5 256.1 144 256.1zM420 111.8C405.6 113.1999999999999 390.8 116 376.1 120.1999999999999C369 122.1999999999999 364.7000000000001 128.8999999999999 366.3 135.3999999999999C369.8 149.5999999999999 374.6 163.0999999999999 380.4000000000001 175.3999999999999C389.2000000000001 194.0999999999999 376.5000000000001 216.1999999999999 355.4000000000001 217.9999999999999C278 224.8999999999999 260.5 255.8999999999999 224 255.8999999999999C186.4 255.8999999999999 171.1 224.9999999999999 92.6 217.9999999999999C71.3 216.0999999999999 58.8 193.8999999999999 67.6 175.3999999999999C73.5 163 78.2 149.5 81.7 135.2999999999999C83.3 128.7999999999999 79 122.0999999999999 71.9 120.0999999999999C57.1 115.8999999999999 42.3 113.0999999999999 28 111.6999999999999C8.7 109.8 -6.7 89.1 3 69C17.4 39.2 25 4.9 25.2 -30C25.3 -54.3 46.7 -64.1 60.1 -64.1C66 -64.1 71.9 -62.6 77.4 -59.6C109.6 -42.1 144.9 -31.2 179.5 -28.1C200.7 -26.2 213.4 -4.1 204.5 14.5C198.6 26.9 193.9 40.4 190.4 54.5C183.8 80.8 264.1 80.8 257.5 54.5C254 40.3 249.2 26.9 243.4 14.5C234.6 -4.2 247.3 -26.3 268.4 -28.1C303 -31.2 338.3 -42.1 370.5 -59.6C376 -62.6 381.9 -64.1 387.8 -64.1C401 -64.1 422.6 -54.4 422.7 -30C422.9 4.9 430.5 39.2 444.9 69C455.1 90.1 438.4 110 420 111.8zM187.1 115.9C154.9 106.8 135.9 74.7 143.9 42.9C146.2 33.9 148.8 25.1 151.9 16.6C124.8 11.9999999999999 98.2 3.6 72.4 -8.4C70.4 17.9999999999999 64.9 43.3 55.9 67.3C65.6 69.1 75.3 71.3 85 74.1C117.2 83.2 136.2 115.3 128.2 147.1C125.9 156.1 123.3 164.9 120.2 173.4C147.2 178 174.1 186.5 199.7 198.5C201.7 172.3 207.3 146.7 216.2 122.8C206.5 121 196.8 118.6999999999999 187.1 115.9zM375.6 -8.4C349.9000000000001 3.6 323.3 11.9999999999999 296.1 16.6C299.2000000000001 25.1 301.8 33.9 304.1 42.9C311.2000000000001 71.2 296.8 99.6 270.9000000000001 112C269.0000000000001 126 253.0000000000001 147.3 248.0000000000001 197C248.0000000000001 197.5 248.1 198 248.2 198.5C273.8 186.6 300.7000000000001 178.1 327.7000000000001 173.4C324.6 164.9 322.0000000000001 156.1 319.7000000000001 147.1C311.7000000000001 115.3 330.7000000000001 83.2 362.9000000000001 74.1C372.6 71.3 382.3 69.1 392.0000000000001 67.3C383.1000000000001 43.3 377.6000000000001 17.9999999999999 375.6000000000001 -8.4z" />
+    <glyph glyph-name="home-heart"
+      unicode="&#xF4C9;"
+      horiz-adv-x="576" d=" M231.3 256.2C216 256.2 200.3 251.4 186.4 239.7C148.7 208 154.3 156.4 181.1 129.1L268.9 39.7C281.6 26.8000000000001 299.2 32.2 306.6 39.7L394.4 129.1C421.2 156.4 426.8 208 389.1 239.7C375.2 251.4 359.4 256.2000000000001 344.2 256.2000000000001C322 256.2000000000001 300.9 246.2 287.8 232.9C274.6 246.2 253.5 256.2000000000001 231.3 256.2000000000001zM358.1 203C376.4000000000001 187.6 364 166.9 360.1 162.8L287.7000000000001 89.2000000000001L215.4 162.8000000000001C211.4 166.9000000000001 199 187.6000000000001 217.4 203.0000000000001C231.0000000000001 214.5000000000001 248.7000000000001 204.1000000000001 253.5000000000001 199.2000000000001L287.8 164.3000000000001L322.1 199.2000000000001C326.7000000000001 204.1000000000001 344.4000000000001 214.5000000000001 358.1 203.0000000000001zM573 224L511.9 276.2V376C511.9 380.4 508.3 384 503.9 384H471.9C467.5 384 463.9 380.4 463.9 376V315.5L313.2 438.9C298.5 451 277.2 451 262.5 438.9L2.9 223.7C-0.5 220.9 -1 215.9 1.8 212.4L22.1 187.6C24.9 184.2 29.9 183.7 33.4 186.5L63.7 214.1999999999999V-48C63.7 -56.8 71 -64 79.8 -64H496C504.8 -64 512 -56.8 512 -48V214.2L542.8 186.9C546.1999999999999 184.1 551.3 184.6 554.0999999999999 188L574.3999999999999 212.8C576.9999999999999 216.2 576.3999999999999 221.2 572.9999999999999 224zM463.8 -16H111.7V253.5L282.7 393.5C285.6 395.9 289.9 395.9 292.8 393.5L463.8 253.5V-16z" />
+    <glyph glyph-name="home"
+      unicode="&#xF015;"
+      horiz-adv-x="576" d=" M557.1 207.3L512 244.2V344C512 348.4 508.4 352 504 352H472C467.6 352 464 348.4 464 344V283.5L313.4 406.9C298.7 419 277.4 419 262.7 406.9L18.9 207.3C15.5 204.5 15 199.5 17.8 196L38.1 171.2C40.9 167.8 45.9 167.3 49.4 170.1L64.1 182.1V-16C64.1 -24.8 71.3 -32 80.1 -32H248.1C252.5 -32 256.1 -28.4 256.1 -24V104H320.1V-24C320.1 -28.4 323.7000000000001 -32 328.1 -32H496.1C504.9 -32 512.1 -24.8 512.1 -16V182.2L526.8000000000001 170.2C530.2 167.4 535.3000000000001 167.9 538.1 171.3L558.4 196.1C561 199.5 560.5 204.5 557.1 207.3zM464 16H368V144C368 148.4 364.4 152 360 152H216C211.6 152 208 148.4 208 144V16H112V221.5L282.9 361.5C285.8 363.9 290.1 363.9 293 361.5L463.9 221.5V16z" />
+    <glyph glyph-name="hood-cloak"
+      unicode="&#xF6EF;"
+      horiz-adv-x="576" d=" M569.64 -12.85C511.98 64.13 511.98 128 511.98 128V192C511.98 276.03 465.62 315.05 410.81 374.7L450.56 414.45C462.94 426.83 454.17 448 436.6600000000001 448H287.57C191.98 448 64.02 338.55 64.02 192V128S64.02 64.13 6.35 -12.85C-9.42 -33.9 6.02 -64 32.32 -64H543.6700000000001C569.98 -64 585.4200000000001 -33.9 569.6400000000001 -12.85zM368.28 -16H208.28V120C208.28 164.11 244.16 200 288.28 200S368.28 164.11 368.28 120V-16zM416.28 -16V120C416.28 190.58 358.87 248 288.28 248S160.28 190.58 160.28 120V-16H62.46C110.48 59.75 112.01 120.64 112.01 128V192C112.01 310.68 218.51 400 287.56 400H368.2200000000001L344.3300000000001 376.11C380.8000000000001 336.42 378.7500000000001 338.58 393.5000000000001 322.87C441.1000000000001 272.18 463.97 245.44 463.97 192.01V128.01C463.97 120.65 465.5 59.76 513.52 -15.99H416.28z" />
+    <glyph glyph-name="horse-head"
+      unicode="&#xF7AB;"
+      horiz-adv-x="512" d=" M506.9 179.4C506.1 181.3 435.5 319.8 403 345.4C409.1 364.3 409.7 385.3 404 406.7C395.8 438.2 362 455.6 331.6 444.7L166.8 382.9C19 329.8 0 191 0 76V0C0 -35.3 28.7 -64 64 -64H296C315.9 -64 334.5 -53.3 344.4 -36.1C354.4 -18.9 354.5 2.5 344.6 19.8L344.1 20.6999999999999L343.6 21.5999999999999L304.5 83.7999999999999C306.8 84.7999999999999 304.8 84.2999999999999 308.3999999999999 85.3999999999999L313.8999999999999 77.9999999999999C328 59.1999999999999 350.5 47.9999999999999 373.8999999999999 47.9999999999999H401.2C420 47.9999999999999 437.7 54.9999999999999 451.4999999999999 67.6999999999999C494.3 103.0999999999999 488.3 97.9999999999999 490.3 99.9999999999999C511.1 120.8 517.5999999999999 152 506.9 179.4zM456.4 134L419.6 103.7C414.7 98.8 408.1 96.1 401.2 96.1H373.9C365.4 96.1 357.3 100.1 352.2 106.9L318.5 152.4C299.9 133.8 281 120 250.8 120C216.2 120 184.8 140.6 170.7 172.6C168.2 178.4 162.4 182.1 156.1 182.1C151.9 182.1 147.9 180.4 144.8 177.4L132.7 165.3C127.7 160.3 126.5 152.9 129.6 146.7C153 100.6 199.4 72 250.7 72C252.1 72 253.4 72.3 254.7 72.4L302.8 -4C305.8 -9.3 302 -16 295.9000000000001 -16H64C55.2 -16 48 -8.8 48 0V76C48 205.9 77.2 299.7 183.6 338L347.9 399.6C353.4 401.6 357 397 357.6 394.6C367.5 356.9 344.5 336.3 329.9 327.7C364.5 321 390.4 291.8 405.4 263.3L462.2 161.8C466 152.1999999999999 463.7 141.3 456.4 134zM296 272C282.7 272 272 261.3 272 248S282.7 224 296 224S320 234.7 320 248C320 261.2 309.3 272 296 272z" />
+    <glyph glyph-name="horse"
+      unicode="&#xF6F0;"
+      horiz-adv-x="576" d=" M464 368C455.16 368 448 360.8400000000001 448 352S455.16 336 464 336S480 343.16 480 352S472.84 368 464 368zM575.95 345.75A48.010999999999996 48.010999999999996 0 0 1 565.01 376.2200000000001L543.28 402.7C559.3 408.1 572.41 421.54 575.8399999999999 438.36C576.85 443.32 572.96 448 567.9 448H432C363.6 448 306.18 400.05 291.5800000000001 336H176C137.88 336 104.23 316.78 83.99 287.6C37.36 285.45 0 247.16 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.6 229.09 64 226.63 64 224C64 193.87 75.91 165.91 96.16 145.42L83.22 101.66A78.948 78.948 0 0 1 82.17 60.81L106.28 -39.48C109.74 -53.86 122.6 -64 137.39 -64H212.09C232.95 -64 248.23 -44.36 243.11 -24.14L217.58 76.62L227.06 103.03L288 89.5V-32C288 -49.67 302.33 -64 320 -64H400C417.67 -64 432 -49.67 432 -32V123.65C451.96 146.12 463.31 174.69 463.97 205.2C464.02 206.13 464.05 213.63 464.05 213.63C485 206.66 502.37 212.91 504.99 213.8L536.01 224.39C559.97 232.57 576.02 255.09 576 280.41L575.95 345.75zM520.51 269.81L489.49 259.2200000000001C487.98 258.7 479.78 256.27 473.01 263.05L448.05 288H416.05V208H416C416 181.91 403.32 158.97 384 144.36V-16H336V128L196.18 159.07L167.45 79.05L191.53 -16H150L128.87 71.86A31.697999999999997 31.697999999999997 0 0 0 129.24 88.04L151.94 164.76C128.54 174.28 112 197.17 112 224C112 259.35 140.65 288 176 288H336V304C336 357.02 378.98 400 432 400H483.33L528 345.7200000000001L528.05 280.37C528.05 275.6 525.02 271.35 520.51 269.81z" />
+    <glyph glyph-name="hospital-alt"
+      unicode="&#xF47D;"
+      horiz-adv-x="640" d=" M500 32H460C453.4 32 448 26.6 448 20V-20C448 -26.6 453.4 -32 460 -32H500C506.6 -32 512 -26.6 512 -20V20C512 26.6 506.6 32 500 32zM500 192H460C453.4 192 448 186.6 448 180V140C448 133.4 453.4 128 460 128H500C506.6 128 512 133.4 512 140V180C512 186.6 506.6 192 500 192zM340 32H300C293.4 32 288 26.6 288 20V-20C288 -26.6 293.4 -32 300 -32H340C346.6 -32 352 -26.6 352 -20V20C352 26.6 346.6 32 340 32zM340 192H300C293.4 192 288 186.6 288 180V140C288 133.4 293.4 128 300 128H340C346.6 128 352 133.4 352 140V180C352 186.6 346.6 192 340 192zM180 32H140C133.4 32 128 26.6 128 20V-20C128 -26.6 133.4 -32 140 -32H180C186.6 -32 192 -26.6 192 -20V20C192 26.6 186.6 32 180 32zM180 192H140C133.4 192 128 186.6 128 180V140C128 133.4 133.4 128 140 128H180C186.6 128 192 133.4 192 140V180C192 186.6 186.6 192 180 192zM362 336H336V362C336 365.3 333.3 368 330 368H310C306.7 368 304 365.3 304 362V336H278C274.7 336 272 333.3 272 330V310C272 306.7 274.7 304 278 304H304V278C304 274.7 306.7 272 310 272H330C333.3 272 336 274.7 336 278V304H362C365.3 304 368 306.7 368 310V330C368 333.3 365.3 336 362 336zM584 352H464V394.3C464 423.9 439.9 448 410.3 448H229.7C200.1 448 176 423.9 176 394.3V352H56C25.1 352 0 326.9 0 296V-56C0 -60.4 3.6 -64 8 -64H40C44.4 -64 48 -60.4 48 -56V296C48 300.4 51.6 304 56 304H224V394.3C224 397.5 226.6 400 229.7 400H410.3C413.5 400 416 397.4 416 394.3V304H584C588.4 304 592 300.4 592 296V-56C592 -60.4 595.6 -64 600 -64H632C636.4 -64 640 -60.4 640 -56V296C640 326.9 614.9 352 584 352z" />
+    <glyph glyph-name="hospital-symbol"
+      unicode="&#xF47E;"
+      horiz-adv-x="512" d=" M256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM256 -16C141.3 -16 48 77.3 48 192S141.3 400 256 400S464 306.7 464 192S370.7 -16 256 -16zM344 304H312C307.6 304 304 300.4 304 296V216H208V296C208 300.4 204.4 304 200 304H168C163.6 304 160 300.4 160 296V88C160 83.6 163.6 80 168 80H200C204.4 80 208 83.6 208 88V168H304V88C304 83.6 307.6 80 312 80H344C348.4 80 352 83.6 352 88V296C352 300.4 348.4 304 344 304z" />
+    <glyph glyph-name="hospital"
+      unicode="&#xF0F8;"
+      horiz-adv-x="448" d=" M128 204V244C128 250.627 133.373 256 140 256H180C186.627 256 192 250.627 192 244V204C192 197.373 186.627 192 180 192H140C133.373 192 128 197.373 128 204zM268 192H308C314.627 192 320 197.373 320 204V244C320 250.627 314.627 256 308 256H268C261.373 256 256 250.627 256 244V204C256 197.373 261.373 192 268 192zM192 108V148C192 154.627 186.627 160 180 160H140C133.373 160 128 154.627 128 148V108C128 101.373 133.373 96 140 96H180C186.627 96 192 101.373 192 108zM268 96H308C314.627 96 320 101.373 320 108V148C320 154.627 314.627 160 308 160H268C261.373 160 256 154.627 256 148V108C256 101.373 261.373 96 268 96zM448 -28V-64H0V-28C0 -21.373 5.373 -16 12 -16H31.5V362.9650000000001C31.5 374.582 42.245 384 55.5 384H144V424C144 437.255 154.745 448 168 448H280C293.255 448 304 437.255 304 424V384H392.5C405.755 384 416.5 374.582 416.5 362.9650000000001V-16H436C442.627 -16 448 -21.373 448 -28zM79.5 -15H192V52C192 58.627 197.373 64 204 64H244C250.627 64 256 58.627 256 52V-15H368.5V336H304V312C304 298.745 293.255 288 280 288H168C154.745 288 144 298.745 144 312V336H79.5V-15zM266 384H240V410A6 6 0 0 1 234 416H214A6 6 0 0 1 208 410V384H182A6 6 0 0 1 176 378V358A6 6 0 0 1 182 352H208V326A6 6 0 0 1 214 320H234A6 6 0 0 1 240 326V352H266A6 6 0 0 1 272 358V378A6 6 0 0 1 266 384z" />
+    <glyph glyph-name="hot-tub"
+      unicode="&#xF593;"
+      horiz-adv-x="512" d=" M432.83 238.35C433.83 230.14 440.45 224 448.31 224H464.16C473.51 224 480.96 232.57 479.89 242.35C475.6300000000001 281.46 457.8700000000001 316.88 430.6 339.51C413.5300000000001 353.68 402.2600000000001 376.26 399.1600000000001 401.66C398.1600000000001 409.87 391.54 416.01 383.68 416.01H367.83C358.48 416.01 351.03 407.44 352.1 397.66C356.37 358.55 374.12 323.13 401.39 300.5C418.47 286.32 429.73 263.74 432.83 238.35zM336.83 238.35C337.83 230.14 344.45 224 352.31 224H368.1600000000001C377.5100000000001 224 384.9600000000001 232.57 383.8900000000001 242.35C379.6300000000001 281.46 361.8700000000001 316.88 334.6 339.51C317.5300000000001 353.68 306.2600000000001 376.26 303.1600000000001 401.66C302.1600000000001 409.87 295.54 416.01 287.68 416.01H271.83C262.48 416.01 255.03 407.44 256.1 397.66C260.37 358.55 278.12 323.13 305.39 300.5C322.47 286.32 333.73 263.74 336.83 238.35zM480 160H288L177.07 243.2A63.99 63.99 0 0 1 138.67 256H64C28.65 256 0 227.35 0 192V0C0 -35.35 28.65 -64 64 -64H448C483.35 -64 512 -35.35 512 0V128C512 145.67 497.67 160 480 160zM48 192C48 200.82 55.18 208 64 208H138.67C142.11 208 145.52 206.86 148.27 204.8L208 160H48V192zM112 -16H64C55.18 -16 48 -8.82 48 0V112H112V-16zM232 -16H160V112H232V-16zM352 -16H280V112H352V-16zM464 0C464 -8.82 456.82 -16 448 -16H400V112H464V0zM96 288C140.18 288 176 323.82 176 368C176 412.19 140.18 448 96 448S16 412.19 16 368C16 323.82 51.82 288 96 288zM96 400C113.64 400 128 385.64 128 368S113.64 336 96 336S64 350.36 64 368S78.36 400 96 400z" />
+    <glyph glyph-name="hotel"
+      unicode="&#xF594;"
+      horiz-adv-x="576" d=" M560 400C568.84 400 576 407.16 576 416V432C576 440.84 568.84 448 560 448H16C7.16 448 0 440.84 0 432V416C0 407.16 7.16 400 16 400H31.98V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H560C568.84 -64 576 -56.84 576 -48V-32C576 -23.16 568.84 -16 560 -16H544V400H560zM496 -16H320V64H384C384 117.02 341.02 160 288 160S192 117.02 192 64H256V-16H79.98V400H496V-16zM268.8 288H307.2C313.6 288 320 294.4 320 300.8V339.2000000000001C320 345.6 313.6 352 307.2 352H268.8C262.4000000000001 352 256 345.6 256 339.2000000000001V300.8C256 294.4 262.4 288 268.8 288zM268.8 192H307.2C313.6 192 320 198.4 320 204.8V243.2C320 249.6 313.6 256 307.2 256H268.8C262.4000000000001 256 256 249.6 256 243.2V204.8C256 198.4 262.4 192 268.8 192zM396.8 192H435.2C441.6 192 448 198.4 448 204.8V243.2C448 249.6 441.6 256 435.2 256H396.8C390.4000000000001 256 384 249.6 384 243.2V204.8C384 198.4 390.4 192 396.8 192zM396.8 288H435.2C441.6 288 448 294.4 448 300.8V339.2000000000001C448 345.6 441.6 352 435.2 352H396.8C390.4000000000001 352 384 345.6 384 339.2000000000001V300.8C384 294.4 390.4 288 396.8 288zM140.8 192H179.2C185.6 192 192 198.4 192 204.8V243.2C192 249.6 185.6 256 179.2 256H140.8C134.4 256 128 249.6 128 243.2V204.8C128 198.4 134.4 192 140.8 192zM140.8 288H179.2C185.6 288 192 294.4 192 300.8V339.2000000000001C192 345.6 185.6 352 179.2 352H140.8C134.4 352 128 345.6 128 339.2000000000001V300.8C128 294.4 134.4 288 140.8 288z" />
+    <glyph glyph-name="hourglass-end"
+      unicode="&#xF253;"
+      horiz-adv-x="384" d=" M372 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H16C16 319.4360000000001 48.188 234.193 113.18 192C47.898 149.619 16 64.1 16 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-28C384 -21.373 378.627 -16 372 -16H368C368 64.564 335.812 149.807 270.82 192C336.102 234.381 368 319.9 368 400H372C378.627 400 384 405.373 384 412V436C384 442.627 378.627 448 372 448zM192 216C121.308 216 64 298.379 64 400H320C320 298.379 262.692 216 192 216z" />
+    <glyph glyph-name="hourglass-half"
+      unicode="&#xF252;"
+      horiz-adv-x="384" d=" M368 400H372C378.627 400 384 405.373 384 412V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H16C16 319.4360000000001 48.188 234.193 113.18 192C47.898 149.619 16 64.1 16 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-28C384 -21.373 378.627 -16 372 -16H368C368 64.564 335.812 149.807 270.82 192C336.102 234.381 368 319.9 368 400zM320 400C320 371.328 315.436 344.19 307.299 320H76.701C68.564 344.19 64 371.328 64 400H320zM307.299 64H76.701C97.405 125.547 141.253 168 192 168S286.5950000000001 125.547 307.299 64z" />
+    <glyph glyph-name="hourglass-start"
+      unicode="&#xF251;"
+      horiz-adv-x="384" d=" M372 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H16C16 319.4360000000001 48.188 234.193 113.18 192C47.898 149.619 16 64.1 16 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-28C384 -21.373 378.627 -16 372 -16H368C368 64.564 335.812 149.807 270.82 192C336.102 234.381 368 319.9 368 400H372C378.627 400 384 405.373 384 412V436C384 442.627 378.627 448 372 448zM320 -16H64C64 85.62 121.308 168 192 168S320 85.62 320 -16z" />
+    <glyph glyph-name="hourglass"
+      unicode="&#xF254;"
+      horiz-adv-x="384" d=" M368 400H372C378.627 400 384 405.373 384 412V436C384 442.627 378.627 448 372 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H16C16 319.4360000000001 48.188 234.193 113.18 192C47.899 149.619 16 64.1 16 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-28C384 -21.373 378.627 -16 372 -16H368C368 64.564 335.812 149.807 270.82 192C336.102 234.381 368 319.9 368 400zM64 400H320C320 298.38 262.693 216 192 216S64 298.379 64 400zM320 -16H64C64 85.62 121.308 168 192 168S320 85.62 320 -16z" />
+    <glyph glyph-name="house-damage"
+      unicode="&#xF6F1;"
+      horiz-adv-x="576" d=" M573.05 224L511.92 276.23V376.03C511.92 380.43 508.3199999999999 384.03 503.92 384.03H471.9C467.5 384.03 463.9 380.43 463.9 376.03V315.53L313.23 438.93C298.5200000000001 451.03 277.2200000000001 451.03 262.51 438.93L2.92 223.67C-0.48 220.87 -0.98 215.87 1.82 212.37L22.13 187.57C24.93 184.17 29.93 183.67 33.43 186.47L63.71 214.14V-48C63.71 -56.8 71.02 -64 79.82 -64H253.2L205.65 54.83L285.48 108.03A23.962999999999997 23.962999999999997 0 0 1 296.17 128V187.58L365.12 101.46L290.86 51.98C280.79 45.2599999999999 277.29 32.11 282.7 21.28L325.34 -64H496.01C504.81 -64 511.96 -56.8 511.96 -48V214.23L542.73 186.9C546.13 184.1 551.23 184.6 554.03 188L574.3399999999999 212.8C576.9499999999999 216.2 576.4499999999999 221.2 573.05 224zM463.8 -16H355.04L335.13 23.78L413.55 76.03A23.99 23.99 0 0 1 423.9600000000001 92.31C424.99 98.97 423.1800000000001 105.73 418.99 110.9999999999999L290.92 271C284.54 278.94 273.79 282.05 264.2200000000001 278.64C254.5900000000001 275.26 248.1500000000001 266.19 248.1500000000001 256V140.84L162.79 83.97C153.35 77.67 149.59 65.6300000000001 153.82 55.1L182.27 -16H111.74V253.53L282.7100000000001 393.53C285.61 395.93 289.92 395.93 292.8100000000001 393.53L463.8000000000001 253.53V-16z" />
+    <glyph glyph-name="house-flood"
+      unicode="&#xF74F;"
+      horiz-adv-x="576" d=" M38.1 203.2C40.9 199.8 45.9 199.3 49.4 202.1L64.1 214.1V36.6C73.4 43.2 84.4 47.2 96 47.2C101.5 47.2 106.8 46.0000000000001 112 44.5000000000001V253.5000000000001L282.9 393.5000000000001C285.8 395.9000000000001 290.1 395.9000000000001 293 393.5000000000001L463.9 253.5000000000001V224H464V44.5C469.2 46 474.5 47.3 480 47.3C491.6 47.3 502.8 43.3 512.1 36.6V214.2L526.8000000000001 202.2C530.2 199.4 535.3000000000001 199.9 538.1 203.3L558.4 228.1C561 231.5 560.5 236.5 557.1 239.3L512 276.2V376C512 380.4 508.4 384 504 384H472C467.6 384 464 380.4 464 376V315.5L313.4 438.9C298.7 451 277.4 451 262.7 438.9L18.9 239.3C15.5 236.5 15 231.5 17.8 228L38.1 203.2zM561.5 -15.9C536.4 -13.3 512.3 -4 495.1 10C486.4 17.1 473.5 17 464.8 9.9C444.3 -7 414.8 -16.7 384 -16.7C353.9 -16.7 323.7 -6.7 303.1 9.9999999999999C294.4000000000001 17.1 281.5 16.9999999999999 272.8 9.8999999999999C252.3 -7.0000000000001 222.8 -16.7000000000001 192 -16.7000000000001C161.9 -16.7000000000001 131.7 -6.7000000000001 111.1 9.9999999999999C102.4 17.0999999999999 89.5 16.9999999999999 80.8 9.8999999999999C63.6 -4.3000000000001 40.1 -13.4000000000001 14.7 -15.9000000000001C6.5 -16.8000000000001 0 -23.2000000000002 0 -31.4000000000001V-47.9000000000001C0 -57.0000000000002 7.6 -64.7000000000002 16.7 -63.9000000000001C45.6 -61.4000000000001 73.2 -52.4000000000001 96 -38.1000000000001C150.9 -72.3000000000002 233.9 -72.0000000000001 288 -38.1000000000001C342.9 -72.3000000000002 425.9 -72.0000000000001 480 -38.1000000000001C502.9 -52.4000000000001 530.5 -61.4000000000001 559.2 -63.9000000000001C568.3000000000001 -64.7000000000002 575.9000000000001 -57.0000000000002 575.9000000000001 -47.9000000000001V-31.2000000000002C576.0000000000001 -23.1000000000001 569.6000000000001 -16.8000000000002 561.5000000000001 -15.9000000000001zM240 256C231.2 256 224 248.8 224 240V144C224 135.2 231.2 128 240 128H336C344.8 128 352 135.2 352 144V240C352 248.8 344.8 256 336 256H240z" />
+    <glyph glyph-name="hryvnia"
+      unicode="&#xF6F2;"
+      horiz-adv-x="384" d=" M368 208C376.84 208 384 215.16 384 224V240C384 248.84 376.84 256 368 256H296.78C311.4 273.52 320 296.37 320 320.14C320 373 280.3 416 231.5 416H157.62C133.78 416 110.79 407.13 93.13 391.11L70.35 370.45C63.81 364.51 63.31 354.4 69.25 347.85L90.75 324.15C96.69 317.61 106.81 317.11 113.35 323.05L136.11 343.69C142.01 349.04 149.69 352 157.65 352H231.5C244.78 352 256 337.41 256 320.14C256 310.55 252.61 301.5 246.72 295.3400000000001L209.01 256H16C7.16 256 0 248.84 0 240V224C0 215.16 7.16 208 16 208H163.01L132.34 176H16C7.16 176 0 168.84 0 160V144C0 135.16 7.16 128 16 128H87.22C72.6 110.48 64 87.63 64 63.86C64 11 103.7 -32 152.5 -32H226.38C250.23 -32 273.2200000000001 -23.12 290.89 -7.1L313.66 13.55C320.2 19.49 320.7 29.61 314.76 36.15L293.26 59.86C287.32 66.4 277.2 66.9 270.66 60.96L247.89 40.3A32.006 32.006 0 0 0 226.39 31.9999999999999H152.5C139.22 31.9999999999999 128 46.5899999999999 128 63.86C128 73.4499999999999 131.39 82.4999999999999 137.28 88.66L174.99 128H368C376.84 128 384 135.16 384 144V160C384 168.84 376.84 176 368 176H220.99L251.6600000000001 208H368z" />
+    <glyph glyph-name="humidity"
+      unicode="&#xF750;"
+      horiz-adv-x="384" d=" M160 156C160 171.5 147.5 184 132 184S104 171.5 104 156S116.5 128 132 128S160 140.5 160 156zM252 96C236.5 96 224 83.5 224 68S236.5 40 252 40S280 52.5 280 68S267.5 96 252 96zM223.9 425.9C219.5 440.5 205.8 448 192 448C178.5 448 165 440.8 160.2 425.9C109.1 268.2 0 225.3 0 114.1C0 15.7 85.9 -64 192 -64S384 15.7 384 114.1C384 225.8 275.1 267.4000000000001 223.9 425.9000000000001zM192 -16C112.6 -16 48 42.4 48 114.1C48 154.4 67.3 181.7000000000001 104.3 230.3C132.3 267.1 166.1 311.5 192 373.8C218 311.2000000000001 251.8 266.9 279.9 230.2C316.8 181.9 336 154.8 336 114.2000000000001C336 42.4 271.4 -15.9999999999999 192 -15.9999999999999zM253 180.2L240.5 190.2C237 193 232 192.4 229.3 189L129.8 55C127 51.5 127.6 46.5 131 43.8L143.5 33.8C147 31 152 31.6 154.7 35L254.2 169C257 172.4 256.4 177.5 253 180.2z" />
+    <glyph glyph-name="hurricane"
+      unicode="&#xF751;"
+      horiz-adv-x="384" d=" M209.9 358.4L222.2 397.4C226.3 410.1 223.7 423.9 215.2 434.1C206.8 444.2 194 449.4 181.3 447.7C77.9 434.9 0 343.7 0 235.5C0 129.5 75.6 41.4 174.1 25.6L161.8 -13.4C157.7 -26.1 160.3 -39.8 168.8 -50.1C176.1 -58.9999999999999 186.9 -63.9999999999999 198.1 -63.9999999999999C199.6 -63.9999999999999 201.2 -63.8999999999999 202.8 -63.6999999999999C306.1 -50.9 384 40.3 384 148.5C384 254.5 308.4 342.5 209.9 358.4zM212.1 -13.4L238.8 71H206C118.9 71 48 144.8 48 235.5C48 314 100.3 381 171.9 397.4L145.2 313H178C265.1 313 336 239.2 336 148.5C336 70 283.7 3 212.1 -13.4zM192 264C152.3 264 120 231.7 120 192S152.3 120 192 120S264 152.3 264 192S231.7 264 192 264zM192 168C178.8 168 168 178.8 168 192S178.8 216 192 216S216 205.2 216 192S205.2 168 192 168z" />
+    <glyph glyph-name="i-cursor"
+      unicode="&#xF246;"
+      horiz-adv-x="256" d=" M128 406.478C91.867 447.951 43.399 448.377 11.818 447.924C5.26 447.83 0 442.484 0 435.925V412.3160000000001C0 405.675 5.393 400.279 12.034 400.3160000000001C39.464 400.472 104 395.743 104 344V216H68C61.373 216 56 210.627 56 204V180C56 173.373 61.373 168 68 168H104V40C104 -11.494 41.665 -15.801 11.908 -15.985C5.314 -16.026 0 -21.39 0 -27.984V-51.927C0 -58.485 5.258 -63.83 11.815 -63.926C43.35 -64.386 91.842 -63.98 128 -22.478C164.132 -63.951 212.601 -64.3769999999999 244.182 -63.924C250.74 -63.83 256 -58.484 256 -51.925V-28.3169999999999C256 -21.6759999999999 250.607 -16.28 243.966 -16.3169999999999C216.538 -16.47 152 -11.731 152 40V168H188C194.627 168 200 173.373 200 180V204C200 210.627 194.627 216 188 216H152V344C152 395.514 214.301 399.805 244.092 399.985C250.686 400.025 256 405.39 256 411.984V435.927C256 442.485 250.742 447.83 244.185 447.926C212.65 448.386 164.157 447.98 128 406.478z" />
+    <glyph glyph-name="ice-skate"
+      unicode="&#xF7AC;"
+      horiz-adv-x="576" d=" M568 32H536C531.6 32 528 28.4 528 24V8C528 -5.3 517.3 -16 504 -16H432V32H448C483.3 32 512 60.7 512 96V149C512 193.1 482 231.4 439.3 242.1L352 264V440C352 444.4 348.4 448 344 448H312C307.6 448 304 444.4 304 440V416H204.3C196.2 416 188.1 414.4 180.5 411.4L52.1 360C40 355.2 32 343.4 32 330.3V96C32 60.7 60.7 32 96 32V-16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H512C547.3 -64 576 -35.3 576 0V24C576 28.4 572.4 32 568 32zM80 96V319.5L198.4 366.9C200.3 367.7 202.3 368 204.3 368H304V320H232C227.6 320 224 316.4 224 312V296C224 291.6 227.6 288 232 288H304V256H232C227.6 256 224 252.4 224 248V232C224 227.6 227.6 224 232 224H314.1L427.6 195.6C449 190.3 464 171.1 464 149V96C464 87.2 456.8 80 448 80H96C87.2 80 80 87.2 80 96zM144 32H384V-16H144V32z" />
+    <glyph glyph-name="icicles"
+      unicode="&#xF7AD;"
+      horiz-adv-x="512" d=" M480 448H32C10.6 448 -4.8 427.3 1.4 406.8L80.9 170.9C83.4 163.7 89.7 160 96 160C102.3 160 108.7 163.6 111.1 170.9L139.9 257.5L176.3 76.4C178.2 68.1 185 64 191.9 64C198.7 64 205.6 68.1 207.5 76.4L246.2 267.1L272.6 171.4C274.9 163.8 281.4 160 287.9 160S300.9 163.8 303.2 171.4L341.3 306.2L400.1 -51.2C402 -59.7 409 -64 416 -64S430 -59.7 431.7 -51.2L511.5 410.1C515.1 429.8 500 448 480 448zM95.8 276.8L54.3 400H136.8L95.8 276.8zM199.2 276.7000000000001L192.1 241.7L187 267L160.3 400H224.3L199.2 276.7zM295.3 319.3L288.4 294.9L259.4 400H318.1L295.3 319.3zM416.8 144.3L388.8 314L374.6 400H461L416.8 144.3z" />
+    <glyph glyph-name="id-badge"
+      unicode="&#xF2C1;"
+      horiz-adv-x="384" d=" M336 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V400C384 426.5 362.5 448 336 448zM336 -16H48V400H336V-16zM144 336H240C248.8 336 256 343.2 256 352S248.8 368 240 368H144C135.2 368 128 360.8 128 352S135.2 336 144 336zM192 160C227.3 160 256 188.7 256 224S227.3 288 192 288S128 259.3 128 224S156.7 160 192 160zM102.4 32H281.6C294 32 304 40.6 304 51.2V70.4C304 102.2 273.9 128 236.8 128C226 128 218.1 120 192 120C165.1 120 158.6 128 147.2 128C110.1 128 80 102.2 80 70.4V51.2C80 40.6 90 32 102.4 32z" />
+    <glyph glyph-name="id-card-alt"
+      unicode="&#xF47F;"
+      horiz-adv-x="576" d=" M512 384H368V416C368 433.7 353.7 448 336 448H240C222.3 448 208 433.7 208 416V384H64C28.7 384 0 355.3 0 320V0C0 -35.3 28.7 -64 64 -64H512C547.3 -64 576 -35.3 576 0V320C576 355.3 547.3 384 512 384zM256 400H320V336H256V400zM528 0C528 -8.8 520.8 -16 512 -16H399.2C399.4 -14.9 400 -13.9 400 -12.8V6.4C400 38.2 369.9 64 332.8 64C322 64 314.1 56 288 56C261.1 56 254.6 64 243.2 64C206.1 64 176 38.2 176 6.4V-12.8C176 -13.9 176.5 -14.9 176.8 -16H64C55.2 -16 48 -8.8 48 0V320C48 328.8 55.2 336 64 336H208V288H368V336H512C520.8 336 528 328.8 528 320V0zM288 224C252.7 224 224 195.3 224 160S252.7 96 288 96S352 124.7 352 160S323.3 224 288 224z" />
+    <glyph glyph-name="id-card"
+      unicode="&#xF2C2;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM528 16H303.2C304.1 20.5 304 12.4 304 38.4C304 70.2 273.9 96 236.8 96C226 96 218.1 88 192 88C165.1 88 158.6 96 147.2 96C110.1 96 80 70.2 80 38.4C80 12.4 79.8 20.5 80.8 16H48V304H528V16zM360 96H472C476.4 96 480 99.6 480 104V120C480 124.4 476.4 128 472 128H360C355.6 128 352 124.4 352 120V104C352 99.6 355.6 96 360 96zM360 160H472C476.4 160 480 163.6 480 168V184C480 188.4 476.4 192 472 192H360C355.6 192 352 188.4 352 184V168C352 163.6 355.6 160 360 160zM360 224H472C476.4 224 480 227.6 480 232V248C480 252.4 476.4 256 472 256H360C355.6 256 352 252.4 352 248V232C352 227.6 355.6 224 360 224zM192 128C227.3 128 256 156.7 256 192S227.3 256 192 256S128 227.3 128 192S156.7 128 192 128z" />
+    <glyph glyph-name="igloo"
+      unicode="&#xF7AE;"
+      horiz-adv-x="640" d=" M320 448C146.3 448 4.7 308.7 0.4 136H0V0C0 -35.3 28.7 -64 64 -64H576C611.3 -64 640 -35.3 640 0V136H639.6C635.3 308.7 493.7 448 320 448zM563.7 248C580.5 214 590.4000000000001 176.1 591.6 136H520V248H563.7zM392 390C448.7 374.4 498 341 533.5 296H392V390zM320 400C328.1 400 336.1 399.5 344 398.8V296H106.5C156.4 359.2 233.4 400 320 400zM76.3 248H120V136H48.4C49.6 176.1 59.5 214 76.3 248zM192 64V-16H64C55.2 -16 48 -8.8 48 0V88H194.4C192.9 80.2 192 72.2 192 64zM400 -16H240V64C240 108.1 275.9 144 320 144S400 108.1 400 64V-16zM320 192C276.1 192 237.4 169.8 214.3 136H168V248H472V136H425.7C402.6 169.8 363.9 192 320 192zM592 0C592 -8.8 584.8 -16 576 -16H448V64C448 72.2 447.1 80.2 445.6 88H592V0z" />
+    <glyph glyph-name="image"
+      unicode="&#xF03E;"
+      horiz-adv-x="512" d=" M464 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V336C512 362.51 490.51 384 464 384zM458 48H54A6 6 0 0 0 48 54V330A6 6 0 0 0 54 336H458A6 6 0 0 0 464 330V54A6 6 0 0 0 458 48zM128 296C105.909 296 88 278.091 88 256S105.909 216 128 216S168 233.909 168 256S150.091 296 128 296zM96 96H416V176L328.485 263.515C323.7990000000001 268.201 316.201 268.201 311.514 263.515L192 144L152.485 183.515C147.799 188.201 140.201 188.201 135.514 183.515L96 144V96z" />
+    <glyph glyph-name="images"
+      unicode="&#xF302;"
+      horiz-adv-x="576" d=" M480 32V16C480 -10.51 458.51 -32 432 -32H48C21.49 -32 0 -10.51 0 16V272C0 298.51 21.49 320 48 320H64V272H54A6 6 0 0 1 48 266V22A6 6 0 0 1 54 16H426A6 6 0 0 1 432 22V32H480zM522 368H150A6 6 0 0 1 144 362V118A6 6 0 0 1 150 112H522A6 6 0 0 1 528 118V362A6 6 0 0 1 522 368zM528 416C554.51 416 576 394.51 576 368V112C576 85.49 554.51 64 528 64H144C117.49 64 96 85.49 96 112V368C96 394.51 117.49 416 144 416H528zM264 304C264 281.909 246.091 264 224 264S184 281.909 184 304S201.909 344 224 344S264 326.091 264 304zM192 208L231.515 247.515C236.201 252.201 243.799 252.201 248.486 247.515L288 208L391.515 311.515C396.201 316.201 403.799 316.201 408.486 311.515L480 240V160H192V208z" />
+    <glyph glyph-name="inbox-in"
+      unicode="&#xF310;"
+      horiz-adv-x="576" d=" M395.5 262.5L296.5 163.5C291.8 158.8 284.2 158.8 279.5 163.5L180.5 262.5C172.9 270.1 178.3 283 189 283H256V436C256 442.6 261.4 448 268 448H308C314.6 448 320 442.6 320 436V283H387C397.7 283 403.1 270.1 395.5 262.5zM528 96H408L376 32H200L168 96H48V-16H528V96zM576 93.8V-16C576 -42.5 554.5 -64 528 -64H48C21.5 -64 0 -42.5 0 -16V93.8C0 105.6 4.3 116.9 12.1 125.7L113.7 239.9C116 242.5 118.6 244.8 121.4 246.9C123.8 248.6 127 248.3 129.1 246.2L153.9 221.3C156.1 219.1 156.2 215.4 154.1 213.1L92.7 144H197.7L229.7 80H346.4L378.4 144H483.4L422 213.1C419.9 215.5 420 219 422.2 221.3L446.8 246.3C448.8 248.4 452.1 248.7 454.5 247C457.4 244.9 460 242.6 462.4 239.9L564 125.7C571.7 116.9 576 105.5 576 93.8z" />
+    <glyph glyph-name="inbox-out"
+      unicode="&#xF311;"
+      horiz-adv-x="576" d=" M180.5 345.5L279.5 444.5C284.2 449.2 291.8 449.2 296.5 444.5L395.5 345.5C403.1 337.9 397.7 325 387 325H320V172C320 165.4 314.6 160 308 160H268C261.4 160 256 165.4 256 172V325H189C178.3 325 172.9 337.9 180.5 345.5zM576 93.8V-16C576 -42.5 554.5 -64 528 -64H48C21.5 -64 0 -42.5 0 -16V93.8C0 105.6 4.3 116.9 12.1 125.7L113.7 239.9C122.8 250.1 135.9 256 149.6 256H202C205.3 256 208 253.3 208 250V214C208 210.7 205.3 208 202 208H149.6L92.7 144H197.7L229.7 80H346.4L378.4 144H483.4L426.5 208H374C370.7 208 368 210.7 368 214V250C368 253.3 370.7 256 374 256H426.4C440.1 256 453.2 250.1 462.3 239.9L563.9 125.7C571.6999999999999 116.9 576 105.5 576 93.8zM528 96H408L376 32H200L168 96H48V-16H528V96z" />
+    <glyph glyph-name="inbox"
+      unicode="&#xF01C;"
+      horiz-adv-x="576" d=" M567.403 212.358L462.323 363.411A48 48 0 0 1 422.919 384H153.081A48 48 0 0 1 113.677 363.411L8.597 212.358A48.001 48.001 0 0 1 0 184.946V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V184.946C576 194.747 573 204.312 567.403 212.358zM153.081 336H422.919L500.832 224H378.334L346.334 160H229.666L197.666 224H75.168L153.081 336zM528 48H48V176H168L200 112H376L408 176H528V48z" />
+    <glyph glyph-name="indent"
+      unicode="&#xF03C;"
+      horiz-adv-x="448" d=" M0 368V400C0 406.627 5.373 412 12 412H436C442.627 412 448 406.627 448 400V368C448 361.373 442.627 356 436 356H12C5.373 356 0 361.373 0 368zM172 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H172C165.373 284 160 278.627 160 272V240C160 233.373 165.373 228 172 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM172 100H436C442.627 100 448 105.373 448 112V144C448 150.627 442.627 156 436 156H172C165.373 156 160 150.627 160 144V112C160 105.373 165.373 100 172 100zM123.313 203.313L27.313 299.297C17.266 309.348 0 302.224 0 287.9840000000001V96.009C0 81.68 17.325 74.705 27.313 84.696L123.313 180.6880000000001C129.562 186.9350000000001 129.562 197.0650000000001 123.313 203.3130000000001z" />
+    <glyph glyph-name="industry-alt"
+      unicode="&#xF3B3;"
+      horiz-adv-x="512" d=" M475.115 316.248L336 227.72V296C336 314.916 315.069 326.399 299.115 316.248L160 227.72V392C160 405.255 149.255 416 136 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H488C501.255 -32 512 -21.255 512 -8V296C512 314.9170000000001 491.069 326.399 475.115 316.248zM464 16H48V368H112V184C112 165.084 132.931 153.601 148.885 163.752L288 252.28V184C288 165.085 308.931 153.601 324.885 163.752L464 252.28V16zM404 64H364C357.373 64 352 69.373 352 76V116C352 122.627 357.373 128 364 128H404C410.627 128 416 122.627 416 116V76C416 69.373 410.627 64 404 64zM276 64H236C229.373 64 224 69.373 224 76V116C224 122.627 229.373 128 236 128H276C282.627 128 288 122.627 288 116V76C288 69.373 282.627 64 276 64zM148 64H108C101.373 64 96 69.373 96 76V116C96 122.627 101.373 128 108 128H148C154.627 128 160 122.627 160 116V76C160 69.373 154.627 64 148 64z" />
+    <glyph glyph-name="industry"
+      unicode="&#xF275;"
+      horiz-adv-x="512" d=" M475.115 284.277L336 195.749V264.029C336 282.945 315.069 294.428 299.115 284.277L160 195.749V392C160 405.255 149.255 416 136 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H488C501.255 -32 512 -21.255 512 -8V264.029C512 282.9460000000001 491.069 294.428 475.115 284.277zM464 16H48V368H112V152.029C112 133.113 132.931 121.63 148.885 131.781L288 220.309V152.029C288 133.114 308.931 121.63 324.885 131.781L464 220.309V16z" />
+    <glyph glyph-name="infinity"
+      unicode="&#xF534;"
+      horiz-adv-x="640" d=" M484.4 352C407 352 349.3 283.9 320 239.5C290.7 283.9 233 352 155.6 352C69.8 352 0 280.2 0 192S69.8 32 155.6 32C233.1 32 290.7 100.1 320 144.5C349.3 100.1 407 32 484.4 32C570.1999999999999 32 640 103.8 640 192S570.2 352 484.4 352zM155.6 80C96.2 80 48 130.2 48 192S96.2 304 155.6 304C223.4 304 276.1 221.7 292.8 192C276 162.3 223.4 80 155.6 80zM484.4 80C416.6 80 363.9 162.3 347.2 192C364 221.7 416.6 304 484.4 304C543.6999999999999 304 592 253.8 592 192S543.8 80 484.4 80z" />
+    <glyph glyph-name="info-circle"
+      unicode="&#xF05A;"
+      horiz-adv-x="512" d=" M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM256 -8C145.468 -8 56 81.431 56 192C56 302.495 145.472 392 256 392C366.491 392 456 302.529 456 192C456 81.47 366.569 -8 256 -8zM256 330C279.1960000000001 330 298 311.1960000000001 298 288S279.1960000000001 246 256 246S214 264.804 214 288S232.804 330 256 330zM312 76C312 69.373 306.627 64 300 64H212C205.373 64 200 69.373 200 76V100C200 106.627 205.373 112 212 112H224V176H212C205.373 176 200 181.373 200 188V212C200 218.627 205.373 224 212 224H276C282.627 224 288 218.627 288 212V112H300C306.627 112 312 106.627 312 100V76z" />
+    <glyph glyph-name="info-square"
+      unicode="&#xF30F;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM400 22V362A6 6 0 0 1 394 368H54A6 6 0 0 1 48 362V22A6 6 0 0 1 54 16H394A6 6 0 0 1 400 22zM224 330C247.196 330 266 311.1960000000001 266 288S247.196 246 224 246S182 264.804 182 288S200.804 330 224 330zM280 76C280 69.373 274.627 64 268 64H180C173.373 64 168 69.373 168 76V100C168 106.627 173.373 112 180 112H192V176H180C173.373 176 168 181.373 168 188V212C168 218.627 173.373 224 180 224H244C250.627 224 256 218.627 256 212V112H268C274.627 112 280 106.627 280 100V76z" />
+    <glyph glyph-name="info"
+      unicode="&#xF129;"
+      horiz-adv-x="256" d=" M224 95.411V224C224 240.475 217.742 255.517 207.479 266.872C225.905 286.86 236 312.654 236 340C236 399.687 187.697 448 128 448C68.313 448 20 399.697 20 340C20 319.118 25.886 299.141 36.874 281.963C15.107 271.736 0 249.599 0 224V184.686C0 161.045 12.884 140.357 32 129.275V95.411C12.884 84.329 0 63.641 0 40V0C0 -35.29 28.71 -64 64 -64H192C227.29 -64 256 -35.29 256 0V40C256 63.641 243.116 84.329 224 95.411zM128 400C161.137 400 188 373.137 188 340S161.137 280 128 280S68 306.863 68 340S94.863 400 128 400zM208 0C208 -8.836 200.836 -16 192 -16H64C55.164 -16 48 -8.836 48 0V40C48 48.836 55.164 56 64 56H80V168.686H64C55.164 168.686 48 175.85 48 184.686V224C48 232.836 55.164 240 64 240H160C168.836 240 176 232.836 176 224V56H192C200.836 56 208 48.836 208 40V0z" />
+    <glyph glyph-name="inhaler"
+      unicode="&#xF5F9;"
+      horiz-adv-x="640" d=" M128 48C110.33 48 96 33.67 96 16S110.33 -16 128 -16S160 -1.67 160 16S145.67 48 128 48zM32 0C14.33 0 0 -14.33 0 -32S14.33 -64 32 -64S64 -49.67 64 -32S49.67 0 32 0zM32 96C14.33 96 0 81.67 0 64S14.33 32 32 32S64 46.33 64 64S49.67 96 32 96zM32 192C14.33 192 0 177.67 0 160S14.33 128 32 128S64 142.33 64 160S49.67 192 32 192zM128 144C110.33 144 96 129.67 96 112S110.33 80 128 80S160 94.33 160 112S145.67 144 128 144zM409.19 336.18C405.98 339.39 401.93 340.88 397.94 340.88C391.07 340.88 384.38 336.49 382.4 328.93L346.49 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H494.62C523.71 -64 549.15 -44.38 556.53 -16.24L594.49 128.47C597.37 139.47 594.21 151.18 586.17 159.22L409.19 336.18zM510.1 -4.06C508.26 -11.09 501.89 -16 494.62 -16H240V144H383.53L392.92 179.82L414.69 262.81L545.7299999999999 131.77L510.0999999999999 -4.0600000000001zM616.27 409.98L478.47 446.9C475.7 447.64 472.91 448 470.17 448C456.04 448 443.11 438.57 439.2800000000001 424.28L423.87 366.76L463.06 327.57L481.51 396.4L588.4 367.76L553.42 237.21L592.6099999999999 198.02L638.9 370.79C643.48 387.86 633.35 405.4 616.27 409.98z" />
+    <glyph glyph-name="integral"
+      unicode="&#xF667;"
+      horiz-adv-x="384" d=" M340.18 389.27C325.55 406.25 303.85 416 280.67 416C244.89 416 214.18 393.06 206.05 360.2200000000001L125.39 34.97C122.67 23.98 111.57 16 99 16C90.7 16 82.69 19.53 77.59 25.44L41.93 66.89C36.09 73.68 25.66 74.6 18.64 68.95L5.94 58.71C-1.07 53.06 -2.02 42.97 3.81 36.18L39.48 -5.2900000000001C54.12 -22.27 75.82 -32 99 -32C134.78 -32 165.49 -9.06 173.62 23.78L254.28 349.03C257 360.02 268.11 368 280.67 368C288.9700000000001 368 296.98 364.4700000000001 302.0800000000001 358.56L342.0700000000001 312.03C347.9100000000001 305.24 358.3400000000001 304.31 365.3600000000001 309.9600000000001L378.0500000000001 320.18C385.0700000000001 325.8300000000001 386.0200000000001 335.92 380.1900000000001 342.7100000000001L340.1800000000001 389.27z" />
+    <glyph glyph-name="intersection"
+      unicode="&#xF668;"
+      horiz-adv-x="320" d=" M48 16V220.78C48 274.23 84.12 322.86 136.48 333.5900000000001C208.46 348.33 272 293.44 272 224V16C272 7.16 279.1600000000001 0 288 0H304C312.84 0 320 7.16 320 16V216.86C320 300.37 259.11 375.1 175.99 383.2100000000001C80.62 392.53 0 317.5 0 224V16C0 7.16 7.16 0 16 0H32C40.84 0 48 7.16 48 16z" />
+    <glyph glyph-name="inventory"
+      unicode="&#xF480;"
+      horiz-adv-x="640" d=" M624 448H608C599.2 448 592 440.8 592 432V288H544V432C544 440.8 536.8 448 528 448H336C327.2 448 320 440.8 320 432V288H48V432C48 440.8 40.8 448 32 448H16C7.2 448 0 440.8 0 432V-64H48V-32H592V-64H640V432C640 440.8 632.8 448 624 448zM368 400H496V288H368V400zM144 16V144H264V16H144zM312 16V144H432V16H312zM480 16V176C480 184.8 472.8 192 464 192H112C103.2 192 96 184.8 96 176V16H48V240H592V16H480z" />
+    <glyph glyph-name="italic"
+      unicode="&#xF033;"
+      horiz-adv-x="256" d=" M89.42 368H129.904L62.006 16H16.763A12 12 0 0 1 4.992 6.334L0.233 -17.666C-1.238 -25.086 4.439 -32 12.004 -32H161.82A12 12 0 0 1 173.591 -22.334L178.35 1.666C179.821 9.086 174.144 16 166.579 16H125.461L193.36 368H239.237A12 12 0 0 1 251.0080000000001 377.666L255.7670000000001 401.666C257.238 409.086 251.56 416 243.996 416H94.179A12 12 0 0 1 82.408 406.334L77.649 382.334C76.178 374.914 81.856 368 89.42 368z" />
+    <glyph glyph-name="jack-o-lantern"
+      unicode="&#xF30E;"
+      horiz-adv-x="576" d=" M494.59 343.7200000000001C455.6 380.85 396.8 385.93 352 359V412.19C352 418.25 348.58 423.79 343.1600000000001 426.5L303.56 446.3C295.19 450.49 285.02 446.62 281.55 437.93L254.85 371.19C244.61 368.2000000000001 234.83 363.82 226.0000000000001 357.9600000000001C180.97 386.23 120.97 381.38 81.41 343.7100000000001C28.91 293.7200000000001 0 227.06 0 156S28.91 18.28 81.41 -31.73C119.07 -67.53 177.03 -74.26 222.5 -48.03C224.66 -46.8 227.41 -46.95 229.91 -48.42C247.06 -58.75 266.62 -64 288 -64S328.94 -58.75 346.0900000000001 -48.42C348.62 -46.95 351.37 -46.8 353.5000000000001 -48.03C398.9400000000001 -74.26 456.9100000000001 -67.5500000000001 494.59 -31.72C547.09 18.28 576 84.94 576 156S547.09 293.7200000000001 494.59 343.7200000000001zM461.47 3.05C439.19 -18.22 404.59 -22.1100000000001 377.5 -6.47C360.2200000000001 3.53 338.69 3.1199999999999 321.3400000000001 -7.3C301.9000000000001 -19.02 274.0900000000001 -19.02 254.6500000000001 -7.3C237.2400000000001 3.18 215.71 3.51 198.4900000000001 -6.47C171.3300000000001 -22.11 136.8000000000001 -18.22 114.5200000000001 3.03C71.62 43.89 48 98.2 48 156S71.62 268.11 114.53 308.9700000000001C127.72 321.53 145.25 327.8400000000001 162.81 327.8400000000001C179.93 327.8400000000001 197.06 321.86 210.25 309.87L226.84 294.78L243.03 310.31C267.78 334.12 308.2200000000001 334.12 332.9700000000001 310.31L349.1600000000001 294.78L365.75 309.87C392.4700000000001 334.12 435.44 333.76 461.47 308.9600000000001C504.38 268.11 528 213.8 528 156S504.38 43.89 461.47 3.05zM249.15 176C252 176 254.01 177.11 255.15 179.33S256.29 183.77 255.15 186L214 252.67C212.29 254.9 210.14 256 207.57 256S203.14 254.89 202 252.67L160.85 186C159.71 183.77 159.71 181.56 160.85 179.33S164 176 166.85 176H249.15zM409.15 176C412 176 414.01 177.11 415.15 179.33S416.29 183.77 415.15 186L374 252.67C372.29 254.9 370.14 256 367.57 256S363.14 254.89 362 252.67L320.85 186C319.7100000000001 183.77 319.7100000000001 181.56 320.85 179.33S324 176 326.85 176H409.1500000000001zM446.55 157.73C400.73 130.68 346.39 114.94 288.01 114.94H287.99V100.68C287.99 91.84 280.83 84.68 271.99 84.68H255.99C247.15 84.68 239.99 91.84 239.99 100.68V118.86C199.91 124.96 162.46 138.26 129.52 157.7000000000001C116.84 165.1800000000001 101.41 152.9200000000001 106.28 139.03C112.3 121.8800000000001 119.2 110.16 125.32 101.5700000000001C134.53 88.85 146.36 78.14 160.07 69.0600000000001C160.28 77.71 167.29 84.6900000000001 175.99 84.6900000000001H191.99C200.83 84.6900000000001 207.99 77.53 207.99 68.6900000000001V47.2C231.44 40.34 258.1600000000001 36.6900000000001 288.01 36.6900000000001C317.84 36.6900000000001 344.53 40.33 367.99 47.21V68.6900000000001C367.99 77.53 375.1500000000001 84.6900000000001 383.99 84.6900000000001H399.99C408.67 84.6900000000001 415.6500000000001 77.7600000000001 415.9000000000001 69.14C429.7500000000001 78.33 441.7100000000001 89.1800000000001 451.09 102.1300000000001C457.04 110.4800000000001 463.84 122.0600000000001 469.79 139.09C474.65 152.97 459.22 165.21 446.55 157.73z" />
+    <glyph glyph-name="jedi"
+      unicode="&#xF669;"
+      horiz-adv-x="544" d=" M543.59 213.51C544 216.07 543.97 218.67 543.12 221.16C538.68 303.23 497.15 379.63 429.29 427.6C425.2100000000001 430.48 420.4600000000001 432.01 415.56 432.01C407.62 432.01 400.18 428.03 395.6600000000001 421.37C391.2100000000001 414.81 390.31 406.48 393.25 399.07C399.21 384.08 402.24 368.36 402.24 352.36C402.24 311.25 383.06 273.47 349.62 248.7C343.73 244.34 340.15 237.69 339.8 230.46C339.45 223.22 342.37 216.24 347.83 211.31C377.59 184.43 390.62 144.89 382.69 105.53C374.33 64.05 341.92 30.67 301.17 20.15L298.9600000000001 77.73L319.5900000000001 63.7C324.12 60.62 330.5600000000001 61.12 334.6 64.89C338.7000000000001 68.78 339.54 74.89 336.6600000000001 79.77L319.4000000000001 108.69L355.98 116.27C361.51 117.41 365.55 122.35 365.55 128.02C365.55 133.68 361.5200000000001 138.61 355.98 139.77L319.4000000000001 147.36L336.6600000000001 176.3A11.98 11.98 0 0 1 334.6 191.16C330.54 195 324.19 195.49 319.5900000000001 192.35L295.1400000000001 175.74L283.9100000000001 436.45C283.6600000000001 442.93 278.4100000000001 448 271.9100000000001 448S260.1600000000001 442.94 259.9100000000001 436.4799999999999L248.6900000000001 175.7099999999999L224.2400000000001 192.3199999999999C219.5200000000001 195.5199999999999 213.3600000000001 195.0199999999999 209.2300000000001 191.13C205.1300000000001 187.24 204.2900000000001 181.13 207.1700000000001 176.25L224.43 147.3299999999999L187.85 139.74C182.32 138.6 178.28 133.66 178.28 127.99S182.31 117.38 187.85 116.24L224.43 108.66L207.17 79.72C204.29 74.86 205.14 68.7499999999999 209.23 64.84C213.23 61.12 219.67 60.59 224.24 63.67L244.87 77.6999999999999L242.67 20.4399999999999C194.52 33.35 158.79 76.7099999999999 158.79 128.61C158.79 160.2599999999999 172.01 189.63 196 211.3C201.45 216.22 204.38 223.2 204.03 230.44C203.68 237.67 200.1 244.31 194.21 248.67C160.7600000000001 273.44 141.5800000000001 311.2299999999999 141.5800000000001 352.3399999999999C141.5800000000001 368.33 144.6000000000001 384.0299999999999 150.5500000000001 399C153.4900000000001 406.4099999999999 152.59 414.75 148.1400000000001 421.3C143.6100000000001 427.9599999999999 136.1700000000001 431.94 128.21 431.94C123.3000000000001 431.94 118.54 430.4099999999999 114.46 427.5199999999999C45.88 379.04 4.75 303.01 0.55 220.51C-0.2 217.96 -0.12 215.34 0.42 212.76C0.28 206.53 -0.18 200.34 0.11 194.05C6.48 55.87 120.22 -57.35 259.07 -63.71C263.37 -63.91 267.65 -64 271.91 -64C421.94 -64 544 57.47 544 206.77C544 209.04 543.65 211.25 543.59 213.51zM90.38 172.05L48.59 208.6C48.71 221.06 49.73 233.3 51.86 245.35L68.53 228.69C71.66 225.57 75.75 224 79.85 224C83.95 224 88.04 225.56 91.17 228.69C97.42 234.94 97.42 245.07 91.17 251.31L61.27 281.19C69.04 302.95 79.68 323.62 93.86 342.02C96.36 298.37 114.64 258.04 145.49 227.39C123.2 199.31 110.78 164.48 110.78 128.62C110.78 84.46 128.79 44.41 157.88 15.36C104.51 47.13 65.39 100.44 52.59 162.5700000000001L69.32 147.9400000000001C72.35 145.28 76.1 143.9900000000001 79.85 143.9900000000001C84.29 143.9900000000001 88.73 145.8300000000001 91.89 149.4600000000001C97.72 156.1100000000001 97.03 166.2200000000001 90.38 172.0500000000001zM385.88 15.02C407.79 36.85 423.48 64.9 429.75 96.04C439.27 143.28 427.6 190.72 398.35 227.42C429.1500000000001 258.03 447.42 298.29 449.9500000000001 341.87C464.02 323.53 474.9300000000001 303.04 482.72 281.36L452.65 251.3C446.4000000000001 245.05 446.4000000000001 234.92 452.65 228.68C455.78 225.56 459.8700000000001 223.99 463.97 223.99S472.16 225.55 475.29 228.68L492.3200000000001 245.7C494.4800000000001 233.69 495.66 221.46 495.7900000000001 209.08L453.4400000000001 172.04C446.7800000000001 166.21 446.0900000000001 156.1 451.9400000000001 149.46C455.1000000000001 145.84 459.5400000000001 143.99 463.9800000000001 143.99C467.7300000000001 143.99 471.4800000000001 145.29 474.51 147.94L491.02 162.38C478.2 99.86 439.42 46.5999999999999 385.8800000000001 15.0199999999999z" />
+    <glyph glyph-name="joint"
+      unicode="&#xF595;"
+      horiz-adv-x="640" d=" M476.34 266.9C498.72 251.22 512 225.74 512 198.31V168C512 163.58 515.58 160 520 160H552C556.42 160 560 163.58 560 168V198.31C560 241.55 538.99 281.7200000000001 503.66 306.37C479.85 322.98 464 348.66 464 377.69V440C464 444.42 460.42 448 456 448H424C419.58 448 416 444.42 416 440V373.6C416 329.91 440.56 291.9700000000001 476.34 266.9zM553.28 360.9100000000001C547.61 364.7100000000001 544 370.87 544 377.69V440C544 444.42 540.42 448 536 448H504C499.58 448 496 444.42 496 440V377.69C496 355.67 506.17 334.28 524.64 322.3C566.79 294.9600000000001 592 248.46 592 198.31V168C592 163.58 595.58 160 600 160H632C636.42 160 640 163.58 640 168V198.31C640 263.75 607.59 324.5 553.28 360.91zM616 96H278.94C180.3 96 83.65 68.28 0 16C83.65 -36.28 180.3 -64 278.94 -64H616C629.25 -64 640 -53.25 640 -40V72C640 85.26 629.25 96 616 96zM278.94 -16C219.78 -16 161.52 -5.07 106.88 16C156.16 35.01 208.44 45.28 261.62 47.2L315.81 -16H278.94zM379.05 -16L324.17 48H420.94L475.82 -16H379.05zM592 -16H539.05L484.17 48H592V-16z" />
+    <glyph glyph-name="journal-whills"
+      unicode="&#xF66A;"
+      horiz-adv-x="448" d=" M448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96zM149.28 217.48C152.59 214.57 152.94 209.53 150.03 206.2C146.98 202.73 141.94 202.66 138.72 205.45L118.69 222.97C130.49 168.82 180.37 128 240 128S349.51 168.82 361.31 222.98L341.28 205.46C338.04 202.65 332.99 202.77 329.97 206.21A8.002 8.002 0 0 0 330.72 217.49L363.89 246.51C363.89 246.8700000000001 364 247.2 364 247.5600000000001C364 258.5 362.37 269.2200000000001 359.35 279.5L341.6600000000001 261.8100000000001C338.5300000000001 258.6800000000001 333.4700000000001 258.6800000000001 330.35 261.8100000000001C327.23 264.9300000000001 327.23 270 330.35 273.12L353.06 295.8300000000001C342.2800000000001 318.8900000000001 324.02 338.6400000000001 300.19 351.5100000000001C298.6 352.3900000000001 296.6 352.0600000000001 295.35 350.7100000000001A4.049 4.049 0 0 1 294.9100000000001 345.8300000000001C301.2200000000001 335.9200000000001 304.5700000000001 324.7800000000001 304.5700000000001 313.5800000000001C304.5700000000001 299.3000000000001 299.3800000000001 285.7700000000001 289.5700000000001 274.4600000000001C288.3800000000001 273.0700000000001 288.2600000000001 271.0500000000001 289.3200000000001 269.5500000000001C296.3200000000001 259.4400000000001 300.0100000000001 247.6400000000001 300.0100000000001 235.4600000000001C300.0100000000001 206.72 279.6800000000001 182.6800000000001 252.6500000000001 176.85H252V204.67L258.34 198.33C259.9 196.77 261.93 195.99 264 195.99S268.09 196.77 269.6600000000001 198.33C272.7800000000001 201.45 272.7800000000001 206.52 269.6600000000001 209.64L259.31 220H272C276.4100000000001 220 280 223.58 280 228S276.4100000000001 236 272 236H259.31L269.65 246.34C272.77 249.46 272.77 254.53 269.65 257.65S261.46 260.77 258.34 257.65L252 251.31V348C252 354.62 246.62 360 240 360S228 354.62 228 348V251.31L221.66 257.65C218.54 260.77 213.47 260.77 210.35 257.65S207.23 249.46 210.35 246.34L220.69 236H208C203.59 236 200 232.42 200 228S203.59 220 208 220H220.69L210.35 209.66C207.23 206.54 207.23 201.47 210.35 198.35C211.91 196.79 213.94 196.01 216.01 196.01S220.1 196.79 221.67 198.35L228.01 204.69V176.87H227.37C200.34 182.7 180.01 206.74 180.01 235.48C180.01 247.67 183.7 259.4600000000001 190.7 269.5700000000001C191.76 271.0700000000001 191.64 273.0900000000001 190.45 274.48C180.64 285.79 175.45 299.3200000000001 175.45 313.6C175.45 324.8 178.79 335.9400000000001 185.11 345.85C186.08 347.4000000000001 185.89 349.4000000000001 184.67 350.73C183.42 352.0700000000001 181.42 352.4000000000001 179.83 351.5300000000001C155.99 338.67 137.74 318.9100000000001 126.96 295.85L149.67 273.14C152.79 270.02 152.79 264.9500000000001 149.67 261.8300000000001C146.54 258.7000000000001 141.48 258.7000000000001 138.36 261.8300000000001L120.67 279.52C117.65 269.24 116.02 258.52 116.02 247.58C116.02 247.22 116.13 246.88 116.13 246.53L149.28 217.48z" />
+    <glyph glyph-name="kaaba"
+      unicode="&#xF66B;"
+      horiz-adv-x="576" d=" M554.12 364.49L318.36 443.07C308.51 446.36 298.25 448 288 448S267.49 446.36 257.64 443.07L21.88 364.49A32.006 32.006 0 0 1 0 334.13V23.33C0 8.33 10.42 -4.65 25.06 -7.91L267.18 -61.71C274.04 -63.24 281.02 -64 288.01 -64S301.98 -63.24 308.84 -61.71L550.96 -7.91C565.6 -4.66 576.02 8.33 576.02 23.33V334.1300000000001C576 347.9000000000001 567.1899999999999 360.1300000000001 554.12 364.4900000000001zM528 199.13L458.11 218.19C453.02 219.58 448 215.75 448 210.47V193.89C448 190.28 450.41 187.12 453.89 186.17L528 165.96V36.16L298.41 -14.86C294.31 -15.77 286.75 -16.89 277.58 -14.86L48 36.16V165.96L122.11 186.17A7.997 7.997 0 0 1 128 193.89V210.47C128 215.75 122.98 219.5800000000001 117.89 218.19L48 199.13V233.76L276.56 302.31C283.9700000000001 304.5900000000001 291.94 304.56 299.4700000000001 302.31L528 233.76V199.13zM528 283.87L313.31 348.28C296.75 353.25 279.28 353.28 262.7200000000001 348.28L48 283.87V322.6L272.82 397.54C278.5 399.44 289.86 401.98 303.18 397.54L528 322.6V283.87zM261.89 257.4600000000001L165.89 231.28A7.997 7.997 0 0 1 160 223.56V206.98C160 201.7 165.02 197.87 170.11 199.26L266.11 225.4400000000001A7.997 7.997 0 0 1 272 233.1600000000001V249.73C272 255.02 266.98 258.85 261.89 257.4600000000001zM309.89 225.45L405.89 199.27C410.98 197.88 416 201.71 416 206.99V223.57C416 227.18 413.59 230.34 410.11 231.29L314.11 257.4700000000001C309.0200000000001 258.86 304 255.03 304 249.75V233.18A8 8 0 0 1 309.89 225.45z" />
+    <glyph glyph-name="key-skeleton"
+      unicode="&#xF6F3;"
+      horiz-adv-x="512" d=" M313.5 294.73C301.01 282.24 301.01 261.99 313.5 249.5C325.99 237.01 346.24 237.01 358.73 249.5C371.2200000000001 261.99 371.2200000000001 282.24 358.73 294.73C346.24 307.2200000000001 325.99 307.2200000000001 313.5 294.73zM377.46 358.69C364.97 346.2 364.97 325.95 377.46 313.4600000000001C389.95 300.9700000000001 410.2 300.9700000000001 422.69 313.4600000000001C435.18 325.95 435.18 346.2000000000001 422.69 358.69C410.2 371.18 389.95 371.18 377.46 358.69zM448.04 448H288.15C252.83 448 224.19 419.36 224.19 384.04V224.15C224.19 215.29 226 206.85 229.26 199.18L4.68 -25.4C-1.56 -31.64 -1.56 -41.77 4.68 -48.01L15.98 -59.31C22.22 -65.5499999999999 32.35 -65.5499999999999 38.59 -59.31L77.38 -20.52L115.69 -58.83C121.93 -65.0699999999999 132.06 -65.0699999999999 138.3 -58.83L181.43 -15.7C187.67 -9.46 187.67 0.67 181.43 6.91L143.12 45.22L173.98 76.08L213.1 36.96C219.34 30.71 229.4700000000001 30.71 235.7100000000001 36.96L251.4700000000001 52.72C257.7100000000001 58.96 257.7100000000001 69.09 251.4700000000001 75.33L212.35 114.4500000000001L263.1600000000001 165.2600000000001A63.690000000000005 63.690000000000005 0 0 1 288.13 160.1900000000001H448.02C483.34 160.1900000000001 511.98 188.8300000000001 511.98 224.1500000000001V384.04C512 419.36 483.37 448 448.04 448zM464.03 224.15C464.03 215.33 456.86 208.16 448.04 208.16H288.15C279.33 208.16 272.16 215.33 272.16 224.15V384.04C272.16 392.86 279.33 400.03 288.15 400.03H448.04C456.86 400.03 464.03 392.86 464.03 384.04V224.15z" />
+    <glyph glyph-name="key"
+      unicode="&#xF084;"
+      horiz-adv-x="512" d=" M320 400C399.529 400 464 335.529 464 256S399.529 112 320 112C301.032 112 282.924 115.675 266.3400000000001 122.339L224 80H192V32H144V-16H48V80L182.177 214.177A143.96 143.96 0 0 0 176 256C176 335.529 240.471 400 320 400M320 448C213.965 448 128 362.046 128 256C128 247.168 128.602 238.377 129.799 229.682L7.029 106.912A24.005 24.005 0 0 1 0 89.941V-40C0 -53.255 10.745 -64 24 -64H168C181.255 -64 192 -53.255 192 -40V-16H216C229.255 -16 240 -5.255 240 8V28L280.049 68.167C293.106 65.396 306.461 64 320 64C426.035 64 512 149.954 512 256C512 362.035 426.046 448 320 448zM320 304C320 277.49 341.49 256 368 256S416 277.49 416 304S394.51 352 368 352S320 330.51 320 304z" />
+    <glyph glyph-name="keyboard"
+      unicode="&#xF11C;"
+      horiz-adv-x="576" d=" M528 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V336C576 362.51 554.51 384 528 384zM536 48C536 43.589 532.411 40 528 40H48C43.589 40 40 43.589 40 48V336C40 340.411 43.589 344 48 344H528C532.411 344 536 340.411 536 336V48zM170 178V206C170 212.627 164.627 218 158 218H130C123.373 218 118 212.627 118 206V178C118 171.373 123.373 166 130 166H158C164.627 166 170 171.373 170 178zM266 178V206C266 212.627 260.627 218 254 218H226C219.373 218 214 212.627 214 206V178C214 171.373 219.373 166 226 166H254C260.627 166 266 171.373 266 178zM362 178V206C362 212.627 356.627 218 350 218H322C315.373 218 310 212.627 310 206V178C310 171.373 315.373 166 322 166H350C356.627 166 362 171.373 362 178zM458 178V206C458 212.627 452.627 218 446 218H418C411.373 218 406 212.627 406 206V178C406 171.373 411.373 166 418 166H446C452.627 166 458 171.373 458 178zM122 96V124C122 130.627 116.627 136 110 136H82C75.373 136 70 130.627 70 124V96C70 89.373 75.373 84 82 84H110C116.627 84 122 89.373 122 96zM506 96V124C506 130.627 500.627 136 494 136H466C459.373 136 454 130.627 454 124V96C454 89.373 459.373 84 466 84H494C500.627 84 506 89.373 506 96zM122 260V288C122 294.627 116.627 300 110 300H82C75.373 300 70 294.627 70 288V260C70 253.373 75.373 248 82 248H110C116.627 248 122 253.373 122 260zM218 260V288C218 294.627 212.627 300 206 300H178C171.373 300 166 294.627 166 288V260C166 253.373 171.373 248 178 248H206C212.627 248 218 253.373 218 260zM314 260V288C314 294.627 308.627 300 302 300H274C267.373 300 262 294.627 262 288V260C262 253.373 267.373 248 274 248H302C308.627 248 314 253.373 314 260zM410 260V288C410 294.627 404.627 300 398 300H370C363.373 300 358 294.627 358 288V260C358 253.373 363.373 248 370 248H398C404.627 248 410 253.373 410 260zM506 260V288C506 294.627 500.627 300 494 300H466C459.373 300 454 294.627 454 288V260C454 253.373 459.373 248 466 248H494C500.627 248 506 253.373 506 260zM408 102V118C408 124.627 402.627 130 396 130H180C173.373 130 168 124.627 168 118V102C168 95.373 173.373 90 180 90H396C402.627 90 408 95.373 408 102z" />
+    <glyph glyph-name="keynote"
+      unicode="&#xF66C;"
+      horiz-adv-x="512" d=" M505.24 173.51L456.84 270.31A32 32 0 0 1 428.2200000000001 288H144C144 321.85 165.22 350.7 196.02 362.36C204.92 337.7200000000001 228.29 320 256 320H288C323.35 320 352 348.65 352 384S323.35 448 288 448H256C231.37 448 210.23 433.93 199.53 413.53C140.63 402.06 96 350.2 96 288H83.78A32 32 0 0 1 55.16 270.31L6.76 173.51A63.874 63.874 0 0 1 0 144.89V96C0 78.33 14.33 64 32 64H232V-16H144C135.16 -16 128 -23.16 128 -32V-48C128 -56.84 135.16 -64 144 -64H368C376.84 -64 384 -56.84 384 -48V-32C384 -23.16 376.84 -16 368 -16H280V64H480C497.67 64 512 78.33 512 96V144.89C512 154.83 509.69 164.63 505.24 173.51zM256 400H288C296.82 400 304 392.82 304 384S296.82 368 288 368H256C247.18 368 240 375.18 240 384S247.18 400 256 400zM464 112H48V144.89C48 147.36 48.58 149.84 49.69 152.04L93.67 240H418.3400000000001L462.3200000000001 152.05C463.4300000000001 149.84 464.01 147.36 464.01 144.89V112z" />
+    <glyph glyph-name="khanda"
+      unicode="&#xF66D;"
+      horiz-adv-x="512" d=" M415.81 382A16.095 16.095 0 0 1 408.05 383.99C403.7700000000001 383.99 399.54 382.28 396.45 378.98A15.973999999999998 15.973999999999998 0 0 1 394.54 359.46C411.03 333.3 419.74 303.07 419.74 272.05C419.55 218.8 392.97 169.36 348.47 139.64L271.84 86.29V106.39L315.89 142.48C319.81 146.68 320.89 152.57 318.7 157.76L310.85 175C344.6900000000001 194.26 367.79 230.25 367.79 271.99C367.79 312.78 345.7700000000001 348.12 313.2000000000001 367.7L318.4200000000001 379.14C320.7600000000001 384.67 319.3500000000001 390.9700000000001 314.8500000000001 395.18L255.86 448L196.87 395.19C192.37 390.98 190.97 384.68 193.3 379.15L198.52 367.7100000000001C165.95 348.13 143.93 312.78 143.93 271.99C143.93 230.24 167.02 194.26 200.87 175L193.02 157.76C190.83 152.58 191.92 146.69 195.83 142.48L239.88 106.39V86.49L163.29 139.82C119.02 169.38 92.44 218.81 92.25 272C92.25 303.08 100.96 333.31 117.45 359.4700000000001C121.32 365.63 119.85 373.24 114.86 378.55C111.86 381.76 107.52 383.35 103.17 383.35C100.28 383.35 97.37 382.65 94.84 381.25C16.32 338.4 -22.3 242.7 13.36 152.01C20.43 134.02 31.25 117.63 43.82 102.95L99.79 37.59C102.91 33.94 107.39 32 111.94 32C114.49 32 117.07 32.61 119.44 33.88L198.79 76.11L228 55.77L180.92 22.99C179.25 23.36 177.69 24 175.91 24C162.66 24 151.92 13.26 151.92 0C151.92 -13.25 162.66 -24 175.91 -24C188.01 -24 197.6 -14.89 199.24 -3.24L239.87 25.04V-4.91C230.48 -10.48 223.88 -20.29 223.88 -32.01C223.88 -49.6800000000001 238.2 -64.01 255.86 -64.01S287.84 -49.68 287.84 -32.01C287.84 -20.3 281.23 -10.49 271.85 -4.91V25.24L312.76 -3.24C314.4100000000001 -14.89 324 -24 336.09 -24C349.34 -24 360.08 -13.25 360.08 0C360.08 13.26 349.34 24 336.09 24C334.31 24 332.75 23.36 331.08 22.99L284 55.77L313.21 76.11L392.56 33.8799999999999C394.94 32.62 397.51 31.9999999999999 400.06 31.9999999999999C404.61 31.9999999999999 409.0899999999999 33.9399999999999 412.2099999999999 37.5899999999999L464.7199999999999 98.8999999999999C483.5799999999999 120.9199999999999 498.7199999999999 146.3999999999999 505.9699999999999 174.4899999999999C527.5899999999999 258.1499999999999 489.5199999999999 341.7599999999999 415.81 381.9999999999999zM119.53 88.3L80.24 134.18C70.02 146.11 62.54 158.02 57.99 169.58C49.93 190.08 46.88 211.16 48.36 231.47C59.06 178.2 90.3 130.84 135.87 100.42L138.66 98.47L119.53 88.3zM327.81 272C327.81 246.47 314.37 224.14 294.29 211.35L285.3300000000001 231.02C276.5800000000001 255.54 276.5800000000001 282.06 285.3300000000001 306.58L296.5800000000001 331.26C315.4100000000001 318.26 327.8100000000001 296.57 327.8100000000001 272zM183.9 272C183.9 296.57 196.3 318.26 215.13 331.26L226.38 306.58C235.13 282.06 235.13 255.55 226.38 231.02L217.42 211.35C197.34 224.14 183.9 246.47 183.9 272zM459.54 186.5C454.66 167.59 444.15 148.63 428.31 130.13L392.4699999999999 88.29L373.32 98.48L375.0999999999999 99.72C421.4599999999999 130.68 452.9199999999999 178.28 463.6499999999999 231.76C464.7699999999999 216.99 463.4699999999999 201.73 459.5399999999999 186.5z" />
+    <glyph glyph-name="kidneys"
+      unicode="&#xF5FB;"
+      horiz-adv-x="640" d=" M273.01 230.39L234.24 250.75C237.11 254.13 240.08 257 242.66 259.2200000000001C282.57 293.57 297.98 362.2200000000001 251.6 412.35C210.93 456.3 140.84 460.13 95.36 420.95C14.53 351.31 -18.2 248.4 9.9 152.42C34.19 68.59 101.95 64.04 119.52 64.04C141.75 64.04 190.17 72.24 217.17 120.49C231.0000000000001 145.23 234.2800000000001 173.73 226.58 200.74L251.52 187.44C254.24 186.06 255.96 183.35 255.96 180.28L255.99 -48C255.99 -56.84 263.1600000000001 -64 271.99 -64H288C296.84 -64 304 -56.83 304 -48L303.98 180.28C303.98 201.61 292.1400000000001 220.8 273.01 230.39zM211.33 295.61C199.99 285.85 161.5 253.3 180.32 188.15C191.85 148.96 161.75 121.17 136.93 114.42C103.33 105.29 68 124.8 58.85 155.96C31.67 249.74 62.42 329.2 126.68 384.59C153.98 408.09 194.02 403.88 216.33 379.76C239.06 355.22 237.04 317.79 211.33 295.61zM544.64 420.95C499.16 460.13 429.08 456.3 388.41 412.35C342.03 362.23 357.44 293.57 397.35 259.2200000000001A79.29 79.29 0 0 0 405.77 250.75L367 230.39C347.87 220.79 336.02 201.6 336.02 180.28L336 -48C336 -56.84 343.17 -64 352 -64H368.01C376.85 -64 384.01 -56.83 384.01 -48L384.03 180.28C384.03 183.34 385.75 186.06 388.47 187.44L413.41 200.74C405.71 173.73 408.99 145.23 422.82 120.49C449.82 72.24 498.24 64.04 520.47 64.04C538.0500000000001 64.04 605.8000000000001 68.59 630.09 152.42C658.2 248.4000000000001 625.47 351.31 544.64 420.95zM581.15 155.95C571.99 124.79 536.67 105.28 503.07 114.41C478.25 121.16 448.15 148.95 459.68 188.14C478.5 253.29 440.01 285.84 428.67 295.6C402.9600000000001 317.78 400.94 355.21 423.67 379.74C445.98 403.86 486.02 408.07 513.32 384.57C577.58 329.19 608.33 249.74 581.1500000000001 155.9499999999999z" />
+    <glyph glyph-name="kiss-beam"
+      unicode="&#xF597;"
+      horiz-adv-x="496" d=" M168 296C144.2 296 115.3 266.7 112 224.6C111.7 220.9 114 217.4 117.6 216.3C121.1 215.3 125.1 216.8 126.9 220L136.4 237C144.1 250.7 155.6 258.6 167.9 258.6S191.7 250.7 199.4 237L208.9 220C211 216.3 215.1 215.3 218.2 216.3C221.8 217.4 224.1 220.8 223.8 224.6C220.7 266.7 191.8 296 168 296zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM304 140C304 159.2 275.2 181.5 232.5 184C228.7 184.4 225.1 181.6 224.3 177.8C223.4 174 225.4 170.1 229 168.6L245.9 161.4C258.9 155.9 266.7 147.9 266.7 139.9S258.9 123.9 246 118.4L229 111.2000000000001C223.3 108.8000000000001 223 99.0000000000001 229 96.4L245.9 89.2000000000001C258.9 83.7000000000001 266.7 75.7000000000001 266.7 67.7000000000001S258.9 51.7 246 46.2L229 39.0000000000001C225.4 37.5000000000001 223.4 33.6000000000001 224.3 29.8000000000001C225.1 26.2 228.4 23.6000000000001 232.1 23.6000000000001H232.6C275.4000000000001 26.1000000000001 304.1 48.4000000000001 304.1 67.6000000000001C304.1 80.6000000000001 290.7000000000001 94.9000000000001 268.9000000000001 103.6000000000001C290.6 112.7 304 127 304 140zM328 296C304.2 296 275.3 266.7 272 224.6C271.7 220.9 274 217.4 277.6 216.3C281.1 215.3 285.1 216.8 286.9000000000001 220L296.4000000000001 237C304.1 250.7 315.6 258.6 327.9000000000001 258.6S351.7000000000001 250.7 359.4000000000001 237L368.9000000000001 220C371.0000000000001 216.3 375.1 215.3 378.2000000000001 216.3C381.8000000000001 217.4 384.1 220.8 383.8000000000001 224.6C380.7000000000001 266.7 351.8000000000001 296 328.0000000000001 296z" />
+    <glyph glyph-name="kiss-wink-heart"
+      unicode="&#xF598;"
+      horiz-adv-x="504" d=" M304 139.5C304 158.7 275.2 181 232.5 183.5C228.7 183.9 225.1 181.1 224.3 177.3C223.4 173.5 225.4 169.6 229 168.1L245.9 160.9C258.9 155.4 266.7 147.4 266.7 139.4S258.9 123.4 246 117.9L229 110.7000000000001C223.3 108.3000000000001 223 98.5000000000001 229 95.9L245.9 88.7000000000001C258.9 83.2000000000001 266.7 75.2000000000001 266.7 67.2000000000001S258.9 51.2 246 45.7L229 38.5000000000001C225.4 37.0000000000001 223.4 33.1000000000001 224.3 29.3000000000001C225.1 25.7 228.4 23.1000000000001 232.1 23.1000000000001H232.6C275.4000000000001 25.6000000000001 304.1 47.9000000000001 304.1 67.1000000000001C304.1 80.1000000000001 290.7000000000001 94.4000000000001 268.9000000000001 103.1000000000001C290.6 112.2000000000001 304.0000000000001 126.5000000000001 304.0000000000001 139.5000000000001zM374.5 223L384 214.5C387.8 211.2 393.3 210.5 397.7 212.9C402.1 215.3 404.6 220.3 403.8 225.3C399.8 250.5 369.6 267.4 344 267.4S288.1 250.5 284.2 225.3C283.4 220.3 285.9 215.3 290.3 212.9C296.1 209.8 301.5 212.2 304 214.5L313.5 223C328.3 236.2 359.7 236.2 374.5 223zM136 239.5C136 221.8 150.3 207.5 168 207.5S200 221.8 200 239.5S185.7 271.5 168 271.5S136 257.2 136 239.5zM501.1 45.5C493.1 66.3 469.6 77 448 71.4L439.6 69.2L437.3 77.6C431.4000000000001 98.9999999999999 410.3 114.1 388.3 110.6C363.1 106.6 347.7 81.9999999999999 354.3 57.9999999999999L377.2 -24.6C378.7 -29.9 384.2 -33.1 389.6 -31.7L472.6 -10.2C496.7 -3.9 510.3 21.6 501.1 45.4999999999999zM334 11.7C307.9 -0.8 278.8 -8 248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192C448 169.9 444.3 148.7 437.6 128.8C446.6 122.4 454.6 114.6 460.2 104.9C466.6 104.8 472.8000000000001 103.5000000000001 478.8000000000001 102.0000000000001C489.7 129.9 495.9000000000001 160.2000000000001 495.9000000000001 192.0000000000001C496 329 385 440 248 440S0 329 0 192S111 -56 248 -56C283.4 -56 316.9 -48.5 347.4 -35.1C344.9 -27.8 351.7 -52.3 334 11.7z" />
+    <glyph glyph-name="kiss"
+      unicode="&#xF596;"
+      horiz-adv-x="496" d=" M168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM304 140C304 159.2 275.2 181.5 232.5 184C228.7 184.4 225.1 181.6 224.3 177.8C223.4 174 225.4 170.1 229 168.6L245.9 161.4C258.9 155.9 266.7 147.9 266.7 139.9S258.9 123.9 246 118.4L229 111.2000000000001C223.3 108.8000000000001 223 99.0000000000001 229 96.4L245.9 89.2000000000001C258.9 83.7000000000001 266.7 75.7000000000001 266.7 67.7000000000001S258.9 51.7 246 46.2L229 39.0000000000001C225.4 37.5000000000001 223.4 33.6000000000001 224.3 29.8000000000001C225.1 26.2 228.4 23.6000000000001 232.1 23.6000000000001H232.6C275.4000000000001 26.1000000000001 304.1 48.4000000000001 304.1 67.6000000000001C304.1 80.6000000000001 290.7000000000001 94.9000000000001 268.9000000000001 103.6000000000001C290.6 112.7 304 127 304 140zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="kite"
+      unicode="&#xF6F4;"
+      horiz-adv-x="640" d=" M608 448H345.46C330.56 448 317.63 437.71 314.28 423.2C314.28 423.2 235.08 78.56 234.96 76.9L146.63 -11.43C136.8 -21.26 120 -14.3 120 -0.4V128.68L167.12 98.6C177.75 91.81 192 99.11 192 111.35V176.66C192 188.9 177.76 196.2 167.12 189.41L120 159.32V224C120 272.6 80.6 312 32 312H16C7.16 312 0 304.8400000000001 0 296V280C0 271.16 7.16 264 16 264H32C54.09 264 72 246.09 72 224V159.32L24.88 189.4C14.24 196.19 0 188.89 0 176.65V111.34C0 99.1 14.24 91.81 24.88 98.59L72 128.68V4.68C72 -11.87 77.05 -28.36 87.7 -41.03C114.18 -72.5599999999999 156.68 -69.29 180.57 -45.3699999999999L268.88 42.9400000000001C270.54 43.0600000000001 615.2 122.2800000000001 615.2 122.2800000000001C629.72 125.6300000000001 640 138.5600000000001 640 153.4600000000001V416C640 433.67 625.67 448 608 448zM592 166.19L288.04 96.04L475.09 283.09L358.18 400H592L475.09 283.0900000000001L592 166.19z" />
+    <glyph glyph-name="kiwi-bird"
+      unicode="&#xF535;"
+      horiz-adv-x="576" d=" M575.83 230.02C572.66 290.5900000000001 518.3 336 457.65 336H448.28C395.45 336 344.02 352.25 300.54 382.24C269.69 403.52 232.32 416 191.99 416C80.36 416 -0.05 326.16 0 224C0.04 153.05 38.68 91.2 95.99 57.99V-16C95.99 -24.84 103.15 -32 111.99 -32H127.99C136.83 -32 143.99 -24.84 143.99 -16V38.26C159.36 34.3 175.39 32 191.99 32C197.43 32 202.67 32.73 207.99 33.18V-16C207.99 -24.84 215.15 -32 223.99 -32H239.99C248.82 -32 255.99 -24.84 255.99 -16V43.46C270.23 48.52 283.88 54.83 296.3300000000001 62.94C342.08 92.75 393.88 112 448.48 112H463.99C466.58 112 468.99 112.61 471.54 112.79L545.96 -23.65C548.8000000000001 -28.88 554.24 -31.9899999999999 559.99 -31.9899999999999C568.4 -31.9899999999999 575.99 -25.22 575.99 -15.99C575.99 239.9600000000001 576.0600000000001 225.7200000000001 575.83 230.0200000000001zM96.33 57.79C96.34 57.79 96.34 57.78 96.35 57.78C96.34 57.73 96.34 57.74 96.33 57.79zM463.99 160H448.48C388.0300000000001 160 328.0200000000001 140.88 270.13 103.16C246.88 88.01 219.86 79.9999999999999 191.99 79.9999999999999C114.24 79.9999999999999 47.81 142.88 47.96 224C48.11 307.7099999999999 114.64 368 191.99 368C221.2 368 249.31 359.26 273.2800000000001 342.73C325.2000000000001 306.93 385.7100000000001 288 448.2800000000001 288H457.65C494.64 288 526.1500000000001 260.87 527.9000000000001 227.51C529.8500000000001 190.25 500.2900000000001 160 463.9900000000001 160zM543.99 46.75L504.12 119.83C519.24 125.66 532.86 134.43 543.99 145.81V46.75zM463.99 248C450.74 248 439.99 237.26 439.99 224C439.99 210.75 450.74 200 463.99 200S487.99 210.75 487.99 224C487.99 237.26 477.24 248 463.99 248z" />
+    <glyph glyph-name="knife-kitchen"
+      unicode="&#xF6F5;"
+      horiz-adv-x="576" d=" M566.28 359.43C579.24 371.93 579.24 392.19 566.28 404.68L531.07 438.63C518.11 451.13 497.09 451.13 484.1300000000001 438.63L319.99 288L4.76 -16.14C-3.49 -24.1 -0.62 -38.3 10.29 -41.83C53.72 -55.86 102.37 -64 150.51 -64C226.34 -64 300.93 -43.81 352 5.35L456.4 105.39C469.35 117.8000000000001 469.57 138.4400000000001 456.89 151.1200000000001L448 160V240L566.28 359.43zM496 384C504.84 384 512 376.8400000000001 512 368S504.84 352 496 352S480 359.16 480 368S487.16 384 496 384zM318.71 39.93C281.24 3.86 221.5 -16 150.51 -16C127.35 -16 103.72 -13.9 80.44 -9.83L319.4 220.72L411.39 128.73L318.71 39.93zM432 288C423.1600000000001 288 416 295.16 416 304S423.1600000000001 320 432 320S448 312.8400000000001 448 304S440.83 288 432 288z" />
+    <glyph glyph-name="lambda"
+      unicode="&#xF66E;"
+      horiz-adv-x="448" d=" M440 16H367.0900000000001L183.81 397.85A32.01 32.01 0 0 1 154.96 416H8C3.58 416 0 412.42 0 408V376C0 371.58 3.58 368 8 368H144.91L153.99 349.08L1.31 -9.7C-3.21 -20.25 4.53 -32 16.02 -32H33.43C39.83 -32 45.61 -28.19 48.14 -22.3L182.15 290.4L328.19 -13.85A31.998 31.998 0 0 1 357.04 -32H440C444.42 -32 448 -28.42 448 -24V8C448 12.42 444.42 16 440 16z" />
+    <glyph glyph-name="lamp"
+      unicode="&#xF4CA;"
+      horiz-adv-x="448" d=" M445.5 210.2L368 426.2C363.3 439.4 352.4 448 340.4 448H120.6C109.2 448 98.8 440.3 93.6 428.1L3.2 212.1C-6.8 188.2 7.8 160 30.2 160H119.4C94.7 124.9 80 81.5 80 46.4C80 13.7 92.8 -17.8 116 -42.3C129 -56.1 147.8 -64 167.5 -64H280.5C300.2 -64 319 -56.1 332 -42.3C355.2 -17.8 368 13.8 368 46.4C368 81.5 353.3 124.9 328.6 160H417.8C439.5 160 454.1 186.4 445.5 210.2zM320 46.4C320 25.1 311.3 5.7 297.1 -9.3C292.8 -13.8 286.7000000000001 -16 280.5 -16H167.5C161.3 -16 155.1 -13.8 150.9 -9.3C136.7 5.7 128 25.1 128 46.4C128 81.1 150.8 133.8 183.6 160H264.3C297.2 133.8 320 81.1 320 46.4zM53.5 208L133.9 400H326.5L395.4 208H53.5z" />
+    <glyph glyph-name="landmark-alt"
+      unicode="&#xF752;"
+      horiz-adv-x="512" d=" M496 -16H480V64C480 72.8 472.8 80 464 80H448V192H464C472.8 192 480 199.2 480 208V224C480 232.8 472.8 240 464 240H447.2C439.7 330.4 369.3 403.1 280 414.3V432C280 440.8 272.8 448 264 448H248C239.2 448 232 440.8 232 432V414.3C142.7 403.1 72.3 330.4 64.8 240H48C39.2 240 32 232.8 32 224V208C32 199.2 39.2 192 48 192H64V80H48C39.2 80 32 72.8 32 64V-16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H496C504.8 -64 512 -56.8 512 -48V-32C512 -23.2 504.8 -16 496 -16zM256 368C329.9 368 390.3 311.8 398.4 240H113.6C121.7 311.8 182.1 368 256 368zM400 192V80H336V192H400zM288 192V80H224V192H288zM112 192H176V80H112V192zM432 -16H80V32H432V-16z" />
+    <glyph glyph-name="landmark"
+      unicode="&#xF66F;"
+      horiz-adv-x="576" d=" M48 288H528C536.84 288 544 295.16 544 304V340.91C544 347.58 539.86 353.55 533.62 355.89L299.24 445.96C295.62 447.32 291.81 448 288 448S280.38 447.32 276.76 445.96L42.38 355.89A16.001 16.001 0 0 1 32 340.91V304C32 295.16 39.16 288 48 288zM288 398.86L451.58 336H124.42L288 398.86zM560 -16H544V48C544 65.67 527.63 80 507.43 80H480V256H432V80H368V256H320V80H256V256H208V80H144V256H96V80H68.57C48.37 80 32 65.67 32 48V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H560C568.84 -64 576 -56.84 576 -48V-32C576 -23.16 568.84 -16 560 -16zM496 -16H80V32H496V-16z" />
+    <glyph glyph-name="language"
+      unicode="&#xF1AB;"
+      horiz-adv-x="640" d=" M616 352H24C10.745 352 0 341.255 0 328V56C0 42.745 10.745 32 24 32H616C629.255 32 640 42.745 640 56V328C640 341.255 629.255 352 616 352zM233.209 96H210.611A12 12 0 0 0 199.096 104.622L189.81 136.279H129.928L120.873 104.693A12 12 0 0 0 109.338 96H86.798C78.578 96 72.791 104.078 75.436 111.861L132.533 279.861A12 12 0 0 0 143.895 288H176.113C181.252 288 185.821 284.727 187.475 279.861L244.572 111.861C247.216 104.078 241.43 96 233.209 96zM600 72H320V312H600V72zM168.059 211.2L178.8 173.873H140.937L151.947 211.2C155.438 223.284 159.734 244.229 159.734 244.229H160.271C160.272 244.229 164.569 223.284 168.059 211.2zM360 232V248C360 254.627 365.373 260 372 260H436V276C436 282.627 441.373 288 448 288H464C470.627 288 476 282.627 476 276V260H540C546.627 260 552 254.627 552 248V232C552 225.373 546.627 220 540 220H526.121C518.967 199.63 506.505 178.535 489.364 157.966A266.517 266.517 0 0 0 485.067 152.95C493.946 145.128 503.1319999999999 138.033 512.317 132.025C517.625 128.553 519.304 121.551 516.157 116.044L508.1950000000001 102.11C504.7660000000001 96.109 497.01 94.271 491.203 98.02C478.825 106.01 467.229 115.082 456.568 124.658C445.2070000000001 114.802 433.088 105.744 420.6080000000001 97.8389999999999C414.8540000000001 94.194 407.2110000000001 96.1519999999999 403.8320000000001 102.0659999999999L395.8900000000001 115.964C392.7280000000001 121.497 394.4170000000001 128.5779999999999 399.7960000000001 131.9959999999999C409.8750000000001 138.4009999999999 419.5140000000001 145.5619999999999 428.5240000000001 153.2229999999999C419.4410000000001 163.6889999999999 411.5520000000001 174.1059999999999 405.0490000000001 183.8229999999999C401.2190000000001 189.5459999999999 402.9380000000001 197.3029999999999 408.8510000000001 200.8329999999999L422.5950000000001 209.0369999999999C428.064 212.3019999999999 435.1400000000001 210.7349999999999 438.687 205.4449999999999C444.14 197.3109999999999 450.308 189.2659999999999 456.956 181.4929999999999C467.72 194.1029999999999 476.559 207.2019999999999 482.816 219.9969999999999H372C365.373 219.9999999999999 360 225.3729999999999 360 231.9999999999999z" />
+    <glyph glyph-name="laptop-code"
+      unicode="&#xF5FC;"
+      horiz-adv-x="640" d=" M624 96H576V384C576 419.2 547.2 448 512 448H128C92.8 448 64 419.2 64 384V96H16C7.2 96 0 88.8 0 80V32C0 -20.8 43.2 -64 96 -64H544C596.8 -64 640 -20.8 640 32V80C640 88.8 632.8 96 624 96zM112 384C112 392.67 119.33 400 128 400H512C520.67 400 528 392.67 528 384V96H112V384zM592 32C592 5.53 570.47 -16 544 -16H96C69.53 -16 48 5.53 48 32V48H228.9C234.47 38.61 244.28 32 256 32H384C395.7200000000001 32 405.52 38.61 411.1 48H592V32zM277.6600000000001 186.35L288.9700000000001 197.66C295.2200000000001 203.91 295.2200000000001 214.04 288.9700000000001 220.29L253.25 256L288.96 291.7200000000001C295.21 297.9700000000001 295.21 308.1 288.96 314.35L277.65 325.66C271.4 331.91 261.27 331.91 255.02 325.66L196.68 267.32C190.43 261.07 190.43 250.94 196.68 244.69L255.02 186.35C261.27 180.1 271.41 180.1 277.66 186.35zM351.04 197.65L362.35 186.34C368.6 180.09 378.73 180.09 384.98 186.34L443.3200000000001 244.6800000000001C449.5700000000001 250.9300000000001 449.5700000000001 261.0600000000001 443.3200000000001 267.3100000000001L384.98 325.6500000000001C378.73 331.9000000000001 368.6 331.9000000000001 362.35 325.6500000000001L351.04 314.3400000000001C344.79 308.0900000000001 344.79 297.9600000000001 351.04 291.7100000000001L386.75 256L351.04 220.28C344.79 214.03 344.79 203.9 351.04 197.65z" />
+    <glyph glyph-name="laptop"
+      unicode="&#xF109;"
+      horiz-adv-x="640" d=" M624 96H576V384C576 419.2 547.2 448 512 448H128C92.8 448 64 419.2 64 384V96H16C7.2 96 0 88.8 0 80V32C0 -20.8 43.2 -64 96 -64H544C596.8 -64 640 -20.8 640 32V80C640 88.8 632.8 96 624 96zM112 384C112 392.67 119.33 400 128 400H512C520.67 400 528 392.67 528 384V96H112V384zM592 32C592 5.53 570.47 -16 544 -16H96C69.53 -16 48 5.53 48 32V48H228.9C234.47 38.61 244.28 32 256 32H384C395.7200000000001 32 405.52 38.61 411.1 48H592V32z" />
+    <glyph glyph-name="laugh-beam"
+      unicode="&#xF59A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM389.4 50.6C351.6 12.8 301.4 -8 248 -8S144.4 12.8 106.6 50.6S48 138.6 48 192S68.8 295.6 106.6 333.4S194.6 392 248 392S351.6 371.2 389.4 333.4S448 245.4 448 192S427.2 88.4 389.4 50.6zM328 296C304.2 296 275.3 266.7 272 224.6C271.3 216 282.8 212.7 286.9 220.1L296.4 237.1C304.1 250.8 315.6 258.7 327.9 258.7S351.7 250.8 359.4 237.1L368.9 220.1C373 212.7 384.5 216.1 383.8 224.6C380.7 266.7 351.8 296 328 296zM127 220.1L136.5 237.1C144.2 250.8 155.7 258.7 168 258.7S191.8 250.8 199.5 237.1L209 220.1C213.1 212.7 224.6 216.1 223.9 224.6C220.6 266.7 191.7 296 167.9 296S115.2 266.7 111.9 224.6C111.3 216.1 122.8 212.7 127 220.1zM362.4 160H133.6C125.4 160 119.1 153 120.1 145C127.6 85.8 179 40 241.2 40H254.8C317 40 368.4 85.8 375.9 145C376.9 153 370.6 160 362.4 160z" />
+    <glyph glyph-name="laugh-squint"
+      unicode="&#xF59B;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM389.4 50.6C351.6 12.8 301.4 -8 248 -8S144.4 12.8 106.6 50.6S48 138.6 48 192S68.8 295.6 106.6 333.4S194.6 392 248 392S351.6 371.2 389.4 333.4S448 245.4 448 192S427.2 88.4 389.4 50.6zM343.6 252L377.2000000000001 292.3C385.8000000000001 302.6 373.4000000000001 317.1 361.8000000000001 310.3L281.8000000000001 262.3C274.0000000000001 257.6 274.0000000000001 246.4 281.8000000000001 241.7L361.8000000000001 193.7C373.3000000000001 186.9 385.8000000000001 201.3 377.2000000000001 211.7L343.6 252zM134.2 193.7L214.2 241.7C222 246.4 222 257.6 214.2 262.3L134.2 310.3C122.6 317.2 110.2 302.6 118.8 292.3L152.4 252L118.8 211.7C110.1 201.3 122.6 186.9 134.2 193.7zM362.4 160H133.6C125.4 160 119.1 153 120.1 145C127.6 85.8 179 40 241.2 40H254.8C317 40 368.4 85.8 375.9 145C376.9 153 370.6 160 362.4 160z" />
+    <glyph glyph-name="laugh-wink"
+      unicode="&#xF59C;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM389.4 50.6C351.6 12.8 301.4 -8 248 -8S144.4 12.8 106.6 50.6C68.8 88.4 48 138.6 48 192S68.8 295.6 106.6 333.4C144.4 371.2 194.6 392 248 392S351.6 371.2 389.4 333.4C427.2 295.6 448 245.4 448 192S427.2 88.4 389.4 50.6zM328 284C302.3 284 272.1 267.1 268.1 241.9C266.4000000000001 230.7 279.6 223.7 287.9000000000001 231.1L297.4000000000001 239.6C312.2000000000001 252.8 343.6 252.8 358.4000000000001 239.6L367.9000000000001 231.1C376.4000000000001 223.7 389.5000000000001 230.8 387.7000000000001 241.9C383.9000000000001 267.1 353.7000000000001 284 328.0000000000001 284zM168 224C185.7 224 200 238.3 200 256S185.7 288 168 288S136 273.7 136 256S150.3 224 168 224zM362.4 160H133.6C125.4 160 119.1 153 120.1 145C127.6 85.8 179 40 241.2 40H254.8C317 40 368.4 85.8 375.9 145C376.9 153 370.6 160 362.4 160z" />
+    <glyph glyph-name="laugh"
+      unicode="&#xF599;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM389.4 50.6C351.6 12.8 301.4 -8 248 -8S144.4 12.8 106.6 50.6S48 138.6 48 192S68.8 295.6 106.6 333.4S194.6 392 248 392S351.6 371.2 389.4 333.4S448 245.4 448 192S427.2 88.4 389.4 50.6zM328 224C345.7 224 360 238.3 360 256S345.7 288 328 288S296 273.7 296 256S310.3 224 328 224zM168 224C185.7 224 200 238.3 200 256S185.7 288 168 288S136 273.7 136 256S150.3 224 168 224zM362.4 160H133.6C125.4 160 119.1 153 120.1 145C127.6 85.8 179 40 241.2 40H254.8C317 40 368.4 85.8 375.9 145C376.9 153 370.6 160 362.4 160z" />
+    <glyph glyph-name="layer-group"
+      unicode="&#xF5FD;"
+      horiz-adv-x="512" d=" M512 191.99C512 204.85 504.47 216.41 492.88 221.43L413.19 256.01L492.85 290.58C504.47 295.61 512.01 307.17 512.01 320.02S504.48 344.43 492.89 349.44L274.6600000000001 444.11C262.8200000000001 449.28 249.2200000000001 449.3 237.38 444.13L19.16 349.45C7.53 344.42 0 332.86 0 320.01S7.53 295.6 19.12 290.5900000000001L98.82 256.01L19.15 221.44C7.53 216.42 0 204.85 0 191.99C0 179.15 7.53 167.58 19.12 162.57L98.81 128L19.16 93.44C7.53 88.41 0 76.85 0 63.99C0 51.15 7.53 39.58 19.12 34.57L237.4 -60.12A46.488 46.488 0 0 1 255.99 -64C262.33 -63.98 268.68 -62.7 274.58 -60.14L492.83 34.55C504.45 39.58 511.99 51.14 511.99 63.99C511.99 76.85 504.46 88.41 492.87 93.43L413.19 128L492.84 162.56C504.47 167.59 512 179.15 512 191.99zM255.47 400.11L255.5 400.09H255.44L255.47 400.11zM256 399.88L440.16 319.99L256.53 239.9L71.91 320.01L256 399.88zM440.19 63.96L256.53 -16.11L71.91 64L159.12 101.84L237.4100000000001 67.8800000000001A46.488 46.488 0 0 1 256 64C262.34 64.02 268.69 65.3 274.59 67.86L352.88 101.83L440.19 63.96zM256.53 111.9L71.91 192.01L159.13 229.85L237.41 195.89A46.488 46.488 0 0 1 256 192.01C262.34 192.03 268.69 193.31 274.59 195.87L352.88 229.84L440.19 191.96L256.53 111.9z" />
+    <glyph glyph-name="layer-minus"
+      unicode="&#xF5FE;"
+      horiz-adv-x="512" d=" M496 416H304C295.1600000000001 416 288 408.8400000000001 288 400V384C288 375.16 295.1600000000001 368 304 368H496C504.84 368 512 375.16 512 384V400C512 408.8400000000001 504.84 416 496 416zM512 192C512 204.84 504.47 216.41 492.88 221.42L274.6 316.12C262.79 321.28 249.2200000000001 321.28 237.4100000000001 316.12L19.16 221.44C7.53 216.41 0 204.84 0 192S7.53 167.59 19.12 162.58L98.82 128L19.15 93.44C7.53 88.41 0 76.84 0 63.98C0 51.14 7.53 39.57 19.12 34.56L237.4 -60.13A46.488 46.488 0 0 1 255.99 -64.01C262.33 -63.99 268.68 -62.71 274.58 -60.15L492.83 34.54C504.45 39.57 511.99 51.13 511.99 63.98C511.99 76.84 504.46 88.4 492.87 93.42L413.19 128L492.84 162.56C504.47 167.59 512 179.16 512 192zM440.19 63.95L256.53 -16.11L71.91 64L159.13 101.84L237.41 67.8800000000001A46.488 46.488 0 0 1 256 64C262.34 64.02 268.69 65.3 274.59 67.86L352.89 101.84L440.19 63.9500000000001zM256.53 111.89L71.91 192L256 271.88L440.16 191.97L256.53 111.89z" />
+    <glyph glyph-name="layer-plus"
+      unicode="&#xF5FF;"
+      horiz-adv-x="512" d=" M492.88 93.42L413.19 128L492.87 162.58C505.03 167.86 510.59 181.99 505.34 194.14C500.0600000000001 206.31 485.96 211.81 473.7500000000001 206.61L256.5300000000001 111.89L71.91 192L242.41 265.98C254.57 271.26 260.13 285.39 254.88 297.54C249.6 309.73 235.5 315.2100000000001 223.29 310.01L19.16 221.44C7.53 216.41 0 204.84 0 192S7.53 167.59 19.12 162.58L98.82 128L19.15 93.44C7.53 88.41 0 76.84 0 63.98C0 51.14 7.53 39.57 19.12 34.56L237.4 -60.13A46.488 46.488 0 0 1 255.99 -64.01C262.33 -63.99 268.68 -62.71 274.58 -60.15L492.83 34.54C504.45 39.57 511.99 51.13 511.99 63.98C512 76.84 504.47 88.41 492.88 93.42zM256.53 -16.11L71.91 64L159.13 101.84L237.41 67.8800000000001C243.32 65.3000000000001 249.66 64.02 256 64.02S268.69 65.3 274.59 67.86L352.89 101.84L440.18 63.96L256.53 -16.11zM496 360H424V432C424 440.84 416.84 448 408 448H392C383.1600000000001 448 376 440.84 376 432V360H304C295.1600000000001 360 288 352.8400000000001 288 344V328C288 319.16 295.1600000000001 312 304 312H376V240C376 231.16 383.1600000000001 224 392 224H408C416.84 224 424 231.16 424 240V312H496C504.84 312 512 319.16 512 328V344C512 352.8400000000001 504.84 360 496 360z" />
+    <glyph glyph-name="leaf-heart"
+      unicode="&#xF4CB;"
+      horiz-adv-x="576" d=" M397.4 229C373.9 248.1 343.1 239.6 327.4 224.2L320 216.9L312.6 224.2C297.3 239.3 266.4000000000001 248.3 242.6 229C219 209.9 217.8 175.5 238.9000000000001 154.8L311.5 83.5C316.2 78.9 323.8 78.9 328.5 83.5L401.1 154.8C422.1 175.5 420.9000000000001 209.9 397.4000000000001 229zM546.2 438.3C543.3000000000001 444.8 537.6 448 531.9000000000001 448C526.6000000000001 448 521.2 445.2 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 142.5 98.5 125.6 102.9 109.5C29 45.5 2.5 -28.9 1.3 -32.2C-3 -44.7 3.6 -58.3 16.1 -62.7C18.7 -63.6 21.3 -64 24 -64C33.9 -64 43.2 -57.8 46.7 -47.9C46.9 -47.3 67.8 9.9 122.8 62.5C160.3 -1 231.5 -39 308.4 -30.9C465.5 -19.6 576 121.2 576 293.7C576 343.9 565.2 395.9 546.2 438.3zM303.4 16.8C215.4 7.5 144 77.2 144 160C144 239.4 208.6 304 288 304H368C425.9 304 479.6 326 520 364.9C525.2 341.7 528 317.4 528 293.7C528 142.7 434.2 26.3 303.4 16.8z" />
+    <glyph glyph-name="leaf-maple"
+      unicode="&#xF6F6;"
+      horiz-adv-x="512" d=" M457.73 146.87C459.97 157.39 459.47 168.08 456.42 178.07L483.01 195C501.44 206.73 512.28 226.77 511.99 248.62C511.7 270.4700000000001 500.35 290.2200000000001 481.61 301.4700000000001L476.69 304.42L481.59 348.5A62.684 62.684 0 0 1 466.03 397.14C454.17 410.4 437.18 418 419.42 418C417.13 418 381.19 413.6 368.39 412.7200000000001L365.44 417.64C354.05 436.64 333.99 448 311.79 448C290.2800000000001 448 270.54 437.17 258.99 419.02L242.06 392.42A62.40500000000001 62.40500000000001 0 0 1 223.88 395.11C219.52 395.11 215.16 394.65 210.86 393.74L197.03 409.4100000000001C185.11 423.5900000000001 167.74 431.69 149.15 431.69C130.55 431.69 113.19 423.5900000000001 101.27 409.4L87.44 393.74C83.15 394.65 78.78 395.11 74.42 395.11C55.38 395.11 37.6 386.56 25.64 371.65C13.71 356.78 9.25 337.57 13.38 318.94L33.16 223.05A62.54 62.54 0 0 1 0 167.8C0 142.73 14.89 120.15 37.93 110.28L109.62 79.55L7.03 -23.03C-2.34 -32.41 -2.34 -47.59 7.03 -56.97C11.72 -61.66 17.84 -64 24 -64S36.28 -61.66 40.97 -56.97L143.56 45.62L174.28 -26.07A62.529 62.529 0 0 1 231.81 -64C255.1 -64 276.25 -51.15 287.05 -30.84L383.65 -50.77C425.82 -60.2 467.45 -22.23 457.74 23.4399999999999C476.56 40.05 495.69 53.62 495.69 85.1499999999999C495.69 117.38 475.16 131.4899999999999 457.73 146.8699999999999zM442.2200000000001 73.77L399.04 35.66L410.6600000000001 14.02C413.0200000000001 4.59 405.74 -4.11 396.5700000000001 -4.11C394.3600000000001 -4.11 404.9500000000001 -6.14 258.5800000000001 24.05L245.2100000000001 -7.15C242.6800000000001 -13.04 237.2500000000001 -15.99 231.8100000000001 -15.99S220.93 -13.04 218.4 -7.15L180.1100000000001 82.18L304.9700000000001 207.04C314.3400000000001 216.42 314.3400000000001 231.6 304.9700000000001 240.98S280.4100000000001 250.36 271.0300000000001 240.98L146.18 116.11L56.84 154.4C45.06 159.45 45.06 176.16 56.84 181.21L88.04 194.58L60.24 329.34C57.75 340.56 68.09 349.14 78.01 346.65L99.65 335.03L137.76 378.21C140.68 381.86 144.91 383.68 149.15 383.68S157.62 381.86 160.54 378.21L198.65 335.03L220.29 346.65C230.45 349.19 240.49 340.27 238.06 329.34L224.11 274.8L299.48 393.25C302.35 397.76 307.07 400 311.7800000000001 400C316.62 400 321.4600000000001 397.63 324.29 392.92L343.0900000000001 361.59L417.7800000000001 369.89C431.85 371.48 434.3 357.55 433.8800000000001 353.78L425.5800000000001 279.09L456.91 260.29C466.21 254.71 466.3800000000001 241.3 457.24 235.48L338.8 160.12C397.9700000000001 175.25 394.06 174.43 396.57 174.43C405.73 174.43 413.01 165.73 410.65 156.3L399.03 134.66L442.21 96.55C449.51 90.7 449.51 79.61 442.22 73.77z" />
+    <glyph glyph-name="leaf-oak"
+      unicode="&#xF6F7;"
+      horiz-adv-x="512" d=" M511.56 239.92C509.25 261.29 497.31 280.91 478.82 293.71C475.92 295.72 472.96 297.68 469.9 299.46C481.69 347.09 462.48 374.25 450.47 385.52C438.28 398.43 411.12 417.62 363.44 405.91C361.69 408.95 359.73 411.91 357.73 414.81C344.88 433.3 325.27 445.24 303.9100000000001 447.56C282.92 449.88 262.56 442.98 246.6600000000001 428.23C238.3 420.4700000000001 232.7200000000001 411.35 226.64 401.46C223.61 396.5900000000001 220.72 391.65 217.82 386.6C200.23 398.42 180.87 402.88 162.56 399.29C142.42 395.3 124.8000000000001 381.69 113.01 361C96.48 332.16 98.7 302.45 102.06 276.88C91.74 277.82 81.42 276.4 71.87 272.44C53.97 264.9700000000001 40.63 249.24 35.29 229.3C31.21 214.09 30.89 196.66 34.35 181.49C36.88 170.61 40.77 160.85 44.58 151.4C47.2 144.84 49.88 138.29 51.75 131.54C53.87 123.9 53.56 118.69 53.09 117.34C40.78 83.28 41.48 50.66 54.1200000000001 25.45L7.31 -21.39C-2.44 -31.14 -2.44 -46.95 7.31 -56.7C12.18 -61.56 18.59 -64 24.97 -64S37.75 -61.56 42.63 -56.7L89.26 -10.07C114.16 -22.9 146.38 -23.5 181.28 -10.86C182.62 -10.36 187.86 -10.03 195.5 -12.2C202.27 -14.08 208.81 -16.77 215.39 -19.4C224.84 -23.17 234.6 -27.09 245.48 -29.6C252.43 -31.21 259.89 -31.9999999999999 267.34 -31.9999999999999C276.16 -31.9999999999999 285.05 -30.8799999999999 293.28 -28.6799999999999C313.27 -23.3199999999999 329.01 -9.9599999999999 336.47 7.97C340.4 17.48 341.86 27.75 340.87 38.09C366.5899999999999 34.66 396.22 32.5100000000001 425 49.02C445.74 60.85 459.3299999999999 78.47 463.29 98.61C466.91 116.88 462.42 136.28 450.6299999999999 153.82C455.8999999999999 156.87 461.36 160.09 467.3099999999999 163.77C475.3899999999999 168.74 484.5199999999999 174.36 492.2599999999999 182.73C507.0099999999999 198.62 513.8699999999999 218.93 511.5599999999999 239.92zM457.12 215.26C453.85 211.71 448.2 208.24 440.2800000000001 203.36C432.1400000000001 198.32 423.75 193.6 414.9600000000001 188.64L378.0100000000001 167.5L401.1500000000001 139.33C403.99 135.92 406.4500000000001 132.95 408.85 129.9C413.1500000000001 124.37 417.92 116.07 416.3300000000001 107.9C414.7100000000001 99.81 407.2200000000001 94.01 401.2400000000001 90.58C386.8000000000001 82.33 370.4900000000001 82.49 347.0800000000001 85.57C338.5700000000001 86.69 330.0500000000001 87.53 320.42 88.49L253.7200000000001 95.47L287.49 46.8100000000001C288.58 45.3000000000001 289.33 44.3500000000001 289.89 43.3600000000001C293.35 37.3100000000001 294.22 31.1100000000001 292.23 26.3200000000001C290.02 21.0000000000001 284.84 18.6300000000001 280.88 17.5600000000001C273.24 15.5000000000001 263.76 15.2800000000001 256.2099999999999 17.0600000000001C248.98 18.7300000000001 241.3099999999999 21.8000000000001 233.23 25.0400000000001C225.03 28.3300000000001 216.7999999999999 31.5700000000001 208.38 33.9100000000001C202.8299999999999 35.4700000000001 194.19 37.3400000000001 184.65 37.3400000000001C178.2899999999999 37.3400000000001 171.52 36.5000000000001 165.04 34.1800000000001C151.03 29.1000000000001 138.3 27.1900000000001 127.47 28.1200000000001L336.5 237.16C346.25 246.91 346.25 262.7200000000001 336.5 272.4700000000001C326.75 282.19 310.94 282.19 301.19 272.4700000000001L92.4 63.69C91.4 74.65 93.23 87.4 98.15 101.04C103.67 116.29 101.08 133.01 97.93 144.35C95.59 152.8 92.35 161.0100000000001 89.04 169.22C85.8 177.3300000000001 82.74 184.97 81.06 192.21C79.35 199.7700000000001 79.53 209.2400000000001 81.59 216.91C82.65 220.85 85.02 226.01 90.32 228.2100000000001C95.15 230.2400000000001 101.33 229.3600000000001 107.31 225.9300000000001C108.34 225.32 109.31 224.56 110.86 223.4500000000001L159.47 189.48L152.45 256.6600000000001C151.51 266.17 150.67 274.62 149.55 283.0700000000001C146.46 306.4400000000001 146.31 322.79 154.57 337.23C158 343.23 163.77 350.7100000000001 171.85 352.3C180.11 353.9700000000001 188.35 349.14 193.9 344.82C197.11 342.3300000000001 200.26 339.7100000000001 203.88 336.67L231.48 313.91L252.5 350.69C257.52 359.5900000000001 262.29 368.04 268.56 378.2200000000001C272.24 384.19 275.7 389.84 279.26 393.14C286.43 399.77 293.95 400.58 298.72 399.95C306.42 399.12 313.41 394.7 318.36 387.54C320.17 384.94 322.04 382.3 323.25 379.53C331.0199999999999 361.76 351.44 352.64 370.7699999999999 358.3C384.8999999999999 362.43 404.1699999999999 364.8 416.64 351.66C428.8 340.19 426.3999999999999 320.93 422.2799999999999 306.79C416.64 287.44 425.7699999999999 267 443.51 259.26C446.3499999999999 258.01 448.94 256.17 451.49 254.38C458.6899999999999 249.39 463.1199999999999 242.42 463.9299999999999 234.74C464.5099999999999 229.78 463.7599999999999 222.41 457.1199999999999 215.26z" />
+    <glyph glyph-name="leaf"
+      unicode="&#xF06C;"
+      horiz-adv-x="576" d=" M546.2 438.3C543.3000000000001 444.8 537.6 448 531.9000000000001 448C526.6000000000001 448 521.2 445.2 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 142.2 98.6 125.1 103.1 108.8C29 44.3 1.8 -30.8 1.3 -32.2C-3 -44.7 3.6 -58.4 16.1 -62.7C30.1 -67.5 42.8 -58.9 46.6 -47.9C47 -46.8 67.6 9.6 122.9 62.2000000000001C160.5 -1 231.5 -39 308.4 -30.9C465.5 -19.5 576 121.3 576 293.7C576 343.9 565.2 395.9 546.2 438.3zM303.4 16.8C217.3 7.7 172.8 71.3 161.2 93.3C208.6 126.2 273.2 152 360.1 152C373.3 152 384.1 162.8 384.1 176S373.3 200 360.1 200C268.8 200 199 174.5 146.1 140.6C145.2 147 144.1 153.4 144.1 160C144.1 239.4 208.7 304 288.1 304H368.1C426 304 479.7 326 520.1 364.9C525.3000000000001 341.7 528.1 317.4 528.1 293.7C528 142.7 434.2000000000001 26.3 303.4000000000001 16.8z" />
+    <glyph glyph-name="lemon"
+      unicode="&#xF094;"
+      horiz-adv-x="512" d=" M484.112 420.111C455.989 448.233 416.108 456.057 387.0590000000001 439.135C347.604 416.152 223.504 489.111 91.196 356.803C-41.277 224.328 31.923 100.528 8.866 60.942C-8.056 31.891 -0.234 -7.99 27.888 -36.112C56.023 -64.247 95.899 -72.0499999999999 124.945 -55.133C164.368 -32.163 288.502 -105.102 420.803 27.196C553.277 159.673 480.076 283.473 503.134 323.057C520.056 352.1070000000001 512.234 391.988 484.112 420.111zM461.707 347.217C422.907 280.608 507.307 181.582 386.862 61.137C266.422 -59.306 167.387 25.089 100.786 -13.706C78.1069999999999 -26.913 36.751 13.535 50.2929999999999 36.782C89.0929999999999 103.391 4.6929999999999 202.417 125.138 322.862C245.573 443.298 344.616 358.914 411.219 397.708C433.949 410.948 475.224 370.42 461.707 347.217zM291.846 338.481C293.216 327.521 285.442 317.524 274.481 316.154C219.635 309.299 138.702 228.367 131.846 173.519C130.473 162.53 120.447 154.785 109.52 156.154C98.559 157.524 90.785 167.52 92.155 178.48C101.317 251.766 196.322 346.6950000000001 269.5200000000001 355.8450000000001C280.473 357.213 290.4760000000001 349.442 291.8460000000001 338.481z" />
+    <glyph glyph-name="less-than-equal"
+      unicode="&#xF537;"
+      horiz-adv-x="384" d=" M368 32H16C7.16 32 0 24.84 0 16V-16C0 -24.84 7.16 -32 16 -32H368C376.84 -32 384 -24.84 384 -16V16C384 24.84 376.84 32 368 32zM42.06 212.76L318.18 97.2C326.39 93.76 335.7 97.94 338.98 106.53L350.86 137.63C354.14 146.21 350.1500000000001 155.95 341.94 159.39L111.09 256L341.94 352.62C350.14 356.05 354.13 365.79 350.86 374.38L338.98 405.48C335.7000000000001 414.07 326.3900000000001 418.24 318.18 414.81L42.06 299.24C35.98 296.7 32 290.54 32 283.7V228.31C32 221.46 35.98 215.3 42.06 212.76z" />
+    <glyph glyph-name="less-than"
+      unicode="&#xF536;"
+      horiz-adv-x="320" d=" M311.15 74.94L77.04 192L311.1500000000001 309.06C319.05 313.01 322.2600000000001 322.62 318.3100000000001 330.52L304 359.15C300.05 367.05 290.44 370.26 282.53 366.31L8.84 229.47A16 16 0 0 1 0 215.15V168.84C0 162.78 3.42 157.24 8.84 154.53L282.52 17.6900000000001C290.42 13.7400000000001 300.04 16.9400000000001 303.99 24.8500000000001L318.3 53.4800000000001C322.26 61.3800000000001 319.05 70.9900000000001 311.1500000000001 74.9400000000001z" />
+    <glyph glyph-name="level-down-alt"
+      unicode="&#xF3BE;"
+      horiz-adv-x="320" d=" M296.64 35.674L200.48 -60.486C195.794 -65.173 188.195 -65.172 183.51 -60.486L87.354 35.67C79.818 43.206 85.156 56.154 95.839 56.155L164 56.157V392H64A11.996 11.996 0 0 0 55.515 395.515L23.515 427.515C15.955 435.074 21.309 448 32 448H196C209.255 448 220 437.255 220 424V56.158L288.154 56.159C298.78 56.16 304.22 43.254 296.64 35.674z" />
+    <glyph glyph-name="level-down"
+      unicode="&#xF149;"
+      horiz-adv-x="320" d=" M316.485 56L200.485 -60.485C195.799 -65.171 188.201 -65.171 183.514 -60.485L67.515 56C62.829 60.686 62.829 68.284 67.515 72.971L89.827 95.283C94.635 100.091 102.473 99.948 107.102 94.968L164 33.004V392H44.024A11.996 11.996 0 0 0 35.539 395.515L3.539 427.515C-4.021 435.074 1.333 448 12.024 448H196C209.255 448 220 437.255 220 424V33.004L276.899 94.967C281.528 99.9470000000001 289.366 100.09 294.174 95.282L316.486 72.97C321.172 68.2840000000001 321.172 60.686 316.485 56z" />
+    <glyph glyph-name="level-up-alt"
+      unicode="&#xF3BF;"
+      horiz-adv-x="320" d=" M296.64 348.326L200.48 444.486C195.794 449.173 188.195 449.172 183.51 444.486L87.353 348.329C79.817 340.793 85.155 327.8450000000001 95.838 327.844L164 327.842V-8H64A11.996 11.996 0 0 1 55.515 -11.515L23.515 -43.515C15.955 -51.074 21.309 -64 32 -64H196C209.255 -64 220 -53.255 220 -40V327.841L288.154 327.84C298.78 327.84 304.22 340.746 296.64 348.326z" />
+    <glyph glyph-name="level-up"
+      unicode="&#xF148;"
+      horiz-adv-x="320" d=" M316.485 328L200.485 444.485C195.799 449.171 188.201 449.171 183.514 444.485L67.515 328C62.829 323.314 62.829 315.716 67.515 311.029L89.827 288.717C94.635 283.909 102.473 284.052 107.102 289.032L164 350.996V-8H44.024A11.996 11.996 0 0 1 35.539 -11.515L3.539 -43.515C-4.021 -51.074 1.333 -64 12.024 -64H196C209.255 -64 220 -53.255 220 -40V350.996L276.899 289.033C281.528 284.053 289.366 283.91 294.174 288.718L316.486 311.03C321.172 315.716 321.172 323.314 316.485 328z" />
+    <glyph glyph-name="life-ring"
+      unicode="&#xF1CD;"
+      horiz-adv-x="512" d=" M256 -56C392.967 -56 504 55.033 504 192S392.967 440 256 440S8 328.967 8 192S119.033 -56 256 -56zM152.602 20.72L206.013 74.131C237.819 60.625 274.141 60.609 305.987 74.131L359.398 20.72C296.1810000000001 -17.599 215.819 -17.599 152.602 20.72zM336 192C336 147.888 300.112 112 256 112S176 147.888 176 192S211.888 272 256 272S336 236.112 336 192zM427.28 88.602L373.869 142.013C387.374 173.819 387.391 210.141 373.869 241.987L427.28 295.398C465.599 232.181 465.599 151.819 427.28 88.602zM359.397 363.28L305.986 309.8690000000001C274.18 323.374 237.858 323.391 206.013 309.8690000000001L152.602 363.28C215.819 401.599 296.1810000000001 401.599 359.397 363.28zM84.72 295.398L138.131 241.987C124.625 210.181 124.609 173.859 138.131 142.013L84.72 88.602C46.401 151.819 46.401 232.181 84.72 295.398z" />
+    <glyph glyph-name="lightbulb-dollar"
+      unicode="&#xF670;"
+      horiz-adv-x="352" d=" M168 152H184C188.42 152 192 155.58 192 160V176.12C215.62 176.75 234.67 196.66 234.67 221.19C234.67 241.16 221.69 259 203.09 264.58L158.09 278.08C152.93 279.63 149.32 284.86 149.32 290.81C149.32 298.08 154.62 304 161.12 304H189.23C193.79 304 198.19 302.71 202.05 300.28C205.29 298.25 209.41 298.37 212.18 301.01L223.93 312.22C227.46 315.59 227.26 321.43 223.36 324.36C214.26 331.19 203.28 335.13 191.99 335.71V352C191.99 356.42 188.41 360 183.99 360H167.99C163.57 360 159.99 356.42 159.99 352V335.88C136.37 335.25 117.32 315.33 117.32 290.81C117.32 270.8400000000001 130.3 253 148.9 247.42L193.9 233.92C199.06 232.37 202.67 227.14 202.67 221.19C202.67 213.92 197.37 208 190.87 208H162.76C158.2 208 153.8 209.29 149.94 211.72C146.7 213.75 142.58 213.63 139.81 210.9900000000001L128.06 199.78C124.53 196.41 124.73 190.5700000000001 128.63 187.6400000000001C137.73 180.8100000000001 148.71 176.8700000000001 160 176.29V160C160 155.58 163.58 152 168 152zM96.06 -11.17C96.06 -14.32 96.99 -17.39 98.74 -20.01L123.25 -56.85C126.22 -61.31 131.22 -63.99 136.57 -63.99H215.42C220.78 -63.99 225.7800000000001 -61.31 228.74 -56.85L253.25 -20.01C254.99 -17.39 255.92 -14.31 255.93 -11.17L255.98 32.01H96.02L96.06 -11.17zM176 448C73.72 448 0 365.03 0 272C0 227.63 16.45 187.15 43.56 156.22C60.2 137.23 86.3 97.42 95.98 64.0600000000001V64.0000000000001H143.98V64.1200000000001C143.97 68.89 143.26 73.6300000000001 141.83 78.1900000000001C136.24 96.0000000000001 119.01 142.96 79.66 187.8600000000001C59.12 211.2900000000001 48.14 241.0100000000001 48.05 272.0000000000001C47.85 345.6400000000001 107.72 400.0000000000001 176 400.0000000000001C246.58 400.0000000000001 304 342.5800000000001 304 272.0000000000001C304 241.0300000000001 292.76 211.1500000000001 272.35 187.8600000000001C233.24 143.2500000000001 215.93 96.3900000000001 210.25 78.4000000000001A47.507 47.507 0 0 1 208.03 64.1000000000001V64.0000000000001H256.0300000000001V64.0500000000001C265.7100000000001 97.4200000000001 291.8100000000001 137.2300000000001 308.4500000000001 156.21C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448z" />
+    <glyph glyph-name="lightbulb-exclamation"
+      unicode="&#xF671;"
+      horiz-adv-x="352" d=" M96.06 -11.17C96.06 -14.32 96.99 -17.39 98.74 -20.01L123.25 -56.85C126.22 -61.31 131.22 -63.99 136.57 -63.99H215.42C220.78 -63.99 225.7800000000001 -61.31 228.74 -56.85L253.25 -20.01C254.99 -17.39 255.92 -14.31 255.93 -11.17L255.98 32.01H96.02L96.06 -11.17zM176 128C193.67 128 208 142.33 208 160S193.67 192 176 192S144 177.67 144 160S158.33 128 176 128zM176 448C73.72 448 0 365.03 0 272C0 227.63 16.45 187.15 43.56 156.22C60.2 137.23 86.3 97.42 95.98 64.0600000000001V64.0000000000001H143.98V64.1200000000001C143.97 68.89 143.26 73.6300000000001 141.83 78.1900000000001C136.24 96.0000000000001 119.01 142.96 79.66 187.8600000000001C59.12 211.2900000000001 48.14 241.0100000000001 48.05 272.0000000000001C47.85 345.6400000000001 107.72 400.0000000000001 176 400.0000000000001C246.58 400.0000000000001 304 342.5800000000001 304 272.0000000000001C304 241.0300000000001 292.76 211.1500000000001 272.35 187.8600000000001C233.24 143.2500000000001 215.93 96.3900000000001 210.25 78.4000000000001A47.507 47.507 0 0 1 208.03 64.1000000000001V64.0000000000001H256.0300000000001V64.0500000000001C265.7100000000001 97.4200000000001 291.8100000000001 137.2300000000001 308.4500000000001 156.21C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448zM166.48 224H185.52C193.74 224 200.62 230.23 201.44 238.41L214.24 334.41C215.18 343.83 207.79 352 198.32 352H153.68C144.21 352 136.82 343.83 137.76 334.41L150.56 238.41C151.38 230.23 158.26 224 166.48 224z" />
+    <glyph glyph-name="lightbulb-on"
+      unicode="&#xF672;"
+      horiz-adv-x="640" d=" M44.73 124.79C37.08 120.37 34.45 110.59 38.87 102.93L46.87 89.07C51.29 81.42 61.08 78.79 68.73 83.21L161.99 137.05A207.86500000000004 207.86500000000004 0 0 0 135.16 176.98L44.73 124.79zM112.46 280H16C7.16 280 0 272.8400000000001 0 264V248C0 239.16 7.16 232 16 232H116.21A210.42299999999997 210.42299999999997 0 0 0 112.46 280zM240.06 -11.17C240.06 -14.32 240.99 -17.39 242.74 -20.01L267.25 -56.85C270.2200000000001 -61.31 275.2200000000001 -63.99 280.57 -63.99H359.42C364.78 -63.99 369.78 -61.31 372.74 -56.85L397.25 -20.01C398.99 -17.39 399.92 -14.31 399.93 -11.17L399.98 32.01H240.02L240.06 -11.17zM44.73 387.2200000000001L123.71 341.62C129.08 356.91 136.68 371.1 145.35 384.55L68.73 428.79C61.08 433.21 51.29 430.59 46.87 422.93L38.87 409.07C34.45 401.42 37.08 391.63 44.73 387.2200000000001zM595.27 387.2200000000001C602.92 391.64 605.55 401.42 601.13 409.08L593.13 422.94C588.71 430.59 578.92 433.22 571.27 428.8L494.66 384.57C503.34 371.16 510.42 356.67 515.86 341.38L595.27 387.2200000000001zM595.27 124.79L504.3 177.31C496.97 163.0799999999999 488.4999999999999 149.43 477.9399999999999 137.1L571.27 83.22C578.92 78.8 588.71 81.42 593.13 89.08L601.13 102.94C605.55 110.58 602.92 120.37 595.27 124.79zM624 280H527.59C527.69 277.32 528 274.7 528 272C528 258.4600000000001 526.45 245.11 523.88 232H624C632.84 232 640 239.16 640 248V264C640 272.8400000000001 632.84 280 624 280zM320 368C267.06 368 224 324.94 224 272C224 263.16 231.16 256 240 256S256 263.16 256 272C256 307.3 284.7200000000001 336 320 336C328.84 336 336 343.16 336 352S328.84 368 320 368zM320 448C217.72 448 144 365.03 144 272C144 227.63 160.45 187.15 187.56 156.22C204.2 137.23 230.3 97.42 239.98 64.0600000000001V64.0000000000001H287.98V64.1200000000001C287.9700000000001 68.89 287.26 73.6300000000001 285.8300000000001 78.1900000000001C280.2400000000001 96.0000000000001 263.0100000000001 142.96 223.66 187.8600000000001C203.13 211.2900000000001 192.14 241.0000000000001 192.05 272.0000000000001C191.85 345.6400000000001 251.7200000000001 400.0000000000001 320 400.0000000000001C390.58 400.0000000000001 448 342.5800000000001 448 272.0000000000001C448 241.0300000000001 436.76 211.1500000000001 416.35 187.8600000000001C377.24 143.2500000000001 359.93 96.3900000000001 354.25 78.4000000000001A47.507 47.507 0 0 1 352.03 64.1000000000001V64.0000000000001H400.03V64.0500000000001C409.71 97.4200000000001 435.81 137.2300000000001 452.45 156.21C479.55 187.15 496 227.63 496 272C496 369.2 417.2 448 320 448z" />
+    <glyph glyph-name="lightbulb-slash"
+      unicode="&#xF673;"
+      horiz-adv-x="640" d=" M250.43 337.77L275.7100000000001 318.01C287.2200000000001 329.1 302.8 336 320 336C328.84 336 336 343.16 336 352S328.84 368 320 368C292.56 368 267.94 356.29 250.43 337.77zM320 400C390.58 400 448 342.58 448 272C448 246.38 439.93 221.75 425.7200000000001 200.73L463.45 171.24C483.62 199.84 496 234.33 496 272C496 369.2 417.2 448 320 448C302.4100000000001 448 238.67 446.42 187.23 387.18L225.07 357.6C262.63 399.19 307.46 400 320 400zM240.06 -11.17C240.06 -14.32 241 -17.39 242.74 -20.01L267.25 -56.85C270.2200000000001 -61.31 275.2200000000001 -63.99 280.57 -63.99H359.42C364.78 -63.99 369.78 -61.31 372.74 -56.85L397.25 -20.01C398.99 -17.39 399.92 -14.31 399.93 -11.17L399.98 32.01H240.02L240.06 -11.17zM287.98 64V64.11C287.9700000000001 68.91 287.24 73.67 285.7700000000001 78.24C281.3100000000001 92.17 269.67 123.79 246.2200000000001 158.29L148.2000000000001 234.92C154.6000000000001 205.24 168.2400000000001 178.26 187.5500000000001 156.22C204.1900000000001 137.23 230.2900000000001 97.42 239.9700000000001 64.0600000000001V64.0000000000001H287.98zM633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02z" />
+    <glyph glyph-name="lightbulb"
+      unicode="&#xF0EB;"
+      horiz-adv-x="352" d=" M176 368C123.06 368 80 324.94 80 272C80 263.16 87.16 256 96 256S112 263.16 112 272C112 307.3 140.72 336 176 336C184.84 336 192 343.16 192 352S184.84 368 176 368zM96.06 -11.17C96.06 -14.32 96.99 -17.39 98.74 -20.01L123.25 -56.85C126.22 -61.31 131.22 -63.99 136.57 -63.99H215.42C220.78 -63.99 225.7800000000001 -61.31 228.74 -56.85L253.25 -20.01C254.99 -17.39 255.92 -14.31 255.93 -11.17L255.98 32.01H96.02L96.06 -11.17zM176 448C73.72 448 0 365.03 0 272C0 227.63 16.45 187.15 43.56 156.22C60.2 137.23 86.3 97.42 95.98 64.0600000000001V64.0000000000001H143.98V64.1200000000001C143.97 68.89 143.26 73.6300000000001 141.83 78.1900000000001C136.24 96.0000000000001 119.01 142.96 79.66 187.8600000000001C59.12 211.2900000000001 48.14 241.0100000000001 48.05 272.0000000000001C47.85 345.6400000000001 107.72 400.0000000000001 176 400.0000000000001C246.58 400.0000000000001 304 342.5800000000001 304 272.0000000000001C304 241.0300000000001 292.76 211.1500000000001 272.35 187.8600000000001C233.24 143.2500000000001 215.93 96.3900000000001 210.25 78.4000000000001A47.507 47.507 0 0 1 208.03 64.1000000000001V64.0000000000001H256.0300000000001V64.0500000000001C265.7100000000001 97.4200000000001 291.8100000000001 137.2300000000001 308.4500000000001 156.21C335.55 187.15 352 227.63 352 272C352 369.2 273.2 448 176 448z" />
+    <glyph glyph-name="lights-holiday"
+      unicode="&#xF7B2;"
+      horiz-adv-x="640" d=" M637.8 362.3L629.6999999999999 376.2C625.3 383.8 615.5999999999999 386.2 607.9 382.1C527.1 338.4 425.6 314.4 320 314.4S112.9 338.2 32.1 382C24.4 386.2 14.8 383.7 10.3 376.1L2.2 362.3C-2.5 354.4 0.5 344.3 8.6 339.9C54.4 315 106.3 296.2 161.6 283.7L143.7 244.4C138.3 243.8 133.2 240.7 130.8 235.4L121.6 215.2C96 215.9 72 202.6 56.4 168.4C34.5 120.1 60.7 38.6 73.8 32.7C86.9 26.7 165.6 60.6 187.5 108.8C203.1 143 197.3 169.9 179.8 188.6L189 208.8C191.4 214.1 190.4 220 187.3 224.4L210.1 274.5C238.2 270.2 266.9000000000001 267.5999999999999 295.9000000000001 266.7V221.5C291.2000000000001 218.6999999999999 287.9000000000001 213.8 287.9000000000001 208V185.8C264.3 176 247.9000000000001 154 247.9000000000001 116.3C247.9000000000001 63.3 305.5000000000001 -0.1 319.9000000000001 -0.1S391.9000000000001 63.2 391.9000000000001 116.3C391.9000000000001 153.9 375.5000000000001 176 351.9000000000001 185.8V208C351.9000000000001 213.9 348.6 218.8 343.9000000000001 221.5V266.7C373.0000000000001 267.6 401.7000000000001 270.3 429.7000000000001 274.5L452.5000000000001 224.4C449.4000000000001 219.9 448.4000000000001 214.1 450.8000000000001 208.8L460.0000000000001 188.6C442.5000000000001 169.9 436.8000000000001 143.1 452.3000000000001 108.8C474.2 60.5 552.9000000000001 26.7 566.0000000000001 32.7C579.1000000000001 38.7 605.3000000000001 120.2000000000001 583.4000000000001 168.4C567.8000000000001 202.6 543.8000000000001 215.9 518.2 215.1L509.0000000000001 235.3C506.6000000000001 240.6 501.5000000000001 243.7 496.1000000000001 244.3L478.2000000000001 283.6C533.4000000000001 296.1 585.3000000000001 314.9000000000001 631.2 339.8C639.5 344.2000000000001 642.4000000000001 354.3 637.8000000000001 362.3zM143.8 128.7C137.3 114.5 117.3 99.7 99.9 90.1C95.6 109.4999999999999 93.6 134.3 100.1 148.5C109.8 169.8999999999999 118.6 170.5 133.4 163.6999999999999C148.2 157 153.5999999999999 150.0999999999999 143.8 128.6999999999999zM506.6 163.8C521.4 170.5 530.1999999999999 170 539.9 148.6C546.4 134.4 544.3 109.6 540.1 90.2000000000001C522.7 99.8000000000001 502.7 114.6 496.2 128.8000000000001C486.4 150.1000000000001 491.8000000000001 157.0000000000001 506.6 163.8000000000001zM320 63.1C308.1 79 296 100.8 296 116.4C296 139.9 303.7 144.0000000000001 320 144.0000000000001S344 139.9 344 116.4C344 100.8 331.9 79.0000000000001 320 63.1z" />
+    <glyph glyph-name="link"
+      unicode="&#xF0C1;"
+      horiz-adv-x="512" d=" M314.222 250.22C365.313 199.129 368.599 117.933 323.972 63.06C317.73 55.33 321.188 59.195 239.032 -22.96C184.336 -77.6559999999999 95.766 -77.7049999999999 41.042 -22.96C-13.669 31.73 -13.692 120.295 41.042 175.03C73.815 207.803 92.877 226.9290000000001 104.451 238.487C111.914 245.939 124.782 240.8410000000001 124.937 230.295A173.31 173.31 0 0 1 129.683 192.467C130.649 188.438 129.411 184.198 126.481 181.269L80.632 135.43C47.877 102.655 47.745 49.538 80.632 16.63C113.407 -16.125 166.524 -16.257 199.432 16.63L274.622 91.83C307.3400000000001 124.555 307.399 177.843 274.622 210.62A83.722 83.722 0 0 1 251.808 226.849C247.1850000000001 229.082 244.6260000000001 234.099 245.247 239.195C246.603 250.317 251.543 261.08 260.062 269.6L264.437 273.975C268.062 277.601 273.6140000000001 278.569 278.197 276.269C291.1960000000001 269.745 303.384 261.058 314.222 250.22zM470.958 406.96C416.2340000000001 461.705 327.664 461.656 272.968 406.96C190.812 324.804 194.2700000000001 328.67 188.028 320.94C143.401 266.067 146.687 184.871 197.778 133.78C208.616 122.942 220.804 114.255 233.8030000000001 107.731C238.385 105.431 243.937 106.4 247.563 110.025L251.938 114.4C260.4580000000001 122.919 265.397 133.683 266.7530000000001 144.805C267.374 149.901 264.8150000000001 154.918 260.1920000000001 157.151A83.706 83.706 0 0 0 237.3780000000001 173.38C204.6010000000001 206.1569999999999 204.6600000000001 259.445 237.3780000000001 292.17L312.5680000000001 367.37C345.4760000000001 400.257 398.5930000000001 400.125 431.3680000000001 367.37C464.2550000000001 334.462 464.1230000000001 281.345 431.3680000000001 248.57L385.5200000000001 202.73C382.5900000000001 199.801 381.3520000000001 195.561 382.3180000000001 191.532A173.31 173.31 0 0 0 387.0640000000001 153.704C387.2190000000001 143.158 400.0870000000001 138.06 407.5500000000001 145.512C419.1240000000001 157.0699999999999 438.1860000000001 176.196 470.9590000000001 208.9689999999999C525.692 263.704 525.6690000000001 352.269 470.9580000000001 406.9599999999999z" />
+    <glyph glyph-name="lips"
+      unicode="&#xF600;"
+      horiz-adv-x="640" d=" M631.14 252.32C579.47 338.01 466.31 416 417.7200000000001 416C417.7200000000001 416 385.1500000000001 416 320 366C254.85 416 222.28 416 222.28 416C173.69 416 60.53 338.01 8.86 252.32C-1.46 235.21 -2.77 214.33 4.97 195.94C32.95 129.49 117.59 -32 279.28 -32H360.71C522.4 -32 607.04 129.49 635.03 195.95C642.77 214.33 641.4599999999999 235.21 631.14 252.32zM590.8 214.58C565.65 154.87 492.91 16 360.7200000000001 16H279.29C147.09 16 74.35 154.87 49.2 214.58C47.36 218.96 47.63 223.68 49.96 227.54C96.28 304.35 191.9 364.57 220.33 367.86C250 360.88 290.29 328.29 320 305.5C353.12 330.91 390.35 360.9600000000001 419.67 367.86C448.14 364.55 543.73 304.33 590.04 227.54C592.36 223.68 592.64 218.95 590.8 214.58zM532.9699999999999 216.76C512.72 224.75 465.99 240 404 240C370.64 231.66 352.87 226 320 226C287.4700000000001 226 270.53 231.37 236 240C174.01 240 127.28 224.75 107.04 216.76C101.53 214.59 100.24 207.53 104.63 203.56C128.18 182.27 199.97 128 320 128S511.82 182.27 535.37 203.56C539.76 207.53 538.47 214.59 532.97 216.76z" />
+    <glyph glyph-name="lira-sign"
+      unicode="&#xF195;"
+      horiz-adv-x="384" d=" M371.9940000000001 192H336C329.585 192 324.3 186.951 324.0180000000001 180.543C319.492 77.693 253.298 24 156.041 24H128V195.859L278.603 229.326A12 12 0 0 1 288 241.04V265.625C288 273.302 280.891 279.005 273.397 277.339L128 245.03V291.8590000000001L278.603 325.326A12 12 0 0 1 288 337.04V361.626C288 369.303 280.891 375.006 273.397 373.3400000000001L128 341.03V404C128 410.627 122.627 416 116 416H76C69.373 416 64 410.627 64 404V326.808L9.397 314.674A12 12 0 0 1 0 302.959V278.374C0 270.697 7.109 264.9940000000001 14.603 266.66L64 277.637V230.808L9.397 218.674A12 12 0 0 1 0 206.959V182.374C0 174.697 7.109 168.994 14.603 170.66L64 181.637V-20C64 -26.627 69.373 -32 76 -32H157.026C289.932 -32 378.875 45.22 383.991 179.595C384.25 186.375 378.779 192 371.994 192z" />
+    <glyph glyph-name="list-alt"
+      unicode="&#xF022;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM458 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H458A6 6 0 0 0 464 362V22A6 6 0 0 0 458 16zM416 108V84C416 77.373 410.627 72 404 72H204C197.373 72 192 77.373 192 84V108C192 114.627 197.373 120 204 120H404C410.627 120 416 114.627 416 108zM416 204V180C416 173.373 410.627 168 404 168H204C197.373 168 192 173.373 192 180V204C192 210.627 197.373 216 204 216H404C410.627 216 416 210.627 416 204zM416 300V276C416 269.373 410.627 264 404 264H204C197.373 264 192 269.373 192 276V300C192 306.627 197.373 312 204 312H404C410.627 312 416 306.627 416 300zM164 288C164 268.118 147.882 252 128 252S92 268.118 92 288S108.118 324 128 324S164 307.882 164 288zM164 192C164 172.118 147.882 156 128 156S92 172.118 92 192S108.118 228 128 228S164 211.882 164 192zM164 96C164 76.118 147.882 60 128 60S92 76.118 92 96S108.118 132 128 132S164 115.882 164 96z" />
+    <glyph glyph-name="list-ol"
+      unicode="&#xF0CB;"
+      horiz-adv-x="512" d=" M500 324H140C133.373 324 128 329.373 128 336V368C128 374.627 133.373 380 140 380H500C506.627 380 512 374.627 512 368V336C512 329.373 506.627 324 500 324zM512 176V208C512 214.627 506.627 220 500 220H140C133.373 220 128 214.627 128 208V176C128 169.373 133.373 164 140 164H500C506.627 164 512 169.373 512 176zM512 16V48C512 54.627 506.627 60 500 60H140C133.373 60 128 54.627 128 48V16C128 9.373 133.373 4 140 4H500C506.627 4 512 9.373 512 16zM3.263 299.572C3.263 292.0950000000001 7.18 288 14.836 288H82.129C89.784 288 93.701 292.0950000000001 93.701 299.572V308.473C93.701 315.9500000000001 89.784 320.045 82.129 320.045H66.64V404.428C66.64 412.084 62.547 416 54.891 416H42.785C36.732 416 32.815 414.398 28.365 410.303L6.646 390.365C1.128 385.202 0.771 379.327 6.112 373.986L11.63 367.755C16.792 362.236 22.846 362.414 27.296 366.687C28.365 367.755 30.144 370.425 30.144 370.425H30.5S29.966 365.0850000000001 29.966 359.9220000000001V320.044H14.836C7.18 320.044 3.263 315.9500000000001 3.263 308.472V299.572zM2.211 139.382C2.211 132.028 7.289 128 14.294 128H82.233C89.762 128 93.79 132.028 93.79 139.382V148.137C93.79 155.492 89.762 159.519 82.233 159.519H43.184C45.11 170.026 91.863 178.08 91.863 216.428C91.863 245.495 66.824 256.001 47.387 256.001C26.025 256.001 13.592 246.02 6.938 237.265C2.56 231.661 3.962 226.408 9.741 221.856L18.32 215.027C23.924 210.474 29.352 212.575 34.431 217.478C37.407 220.279 40.734 221.33 43.886 221.33C47.212 221.33 53.166 219.754 53.166 212.575C53.166 199.793 2.211 190.687 2.211 143.41V139.382zM8.28 -22.545C15.984 -27.272 27.54 -32 44.176 -32C78.321 -32 92.679 -9.237 92.679 12.126C92.679 26.484 83.574 41.893 63.963 46.971L81.472 67.108C85.15 71.485 86.551 75.513 86.551 81.291V84.618C86.551 91.973 82.698 96 75.169 96H16.685C9.155 96 5.302 92.148 5.302 84.618V75.863C5.302 68.509 9.155 64.481 16.685 64.481H29.642C38.047 64.481 42.25 65.532 42.25 65.532V65.182S36.822 60.104 29.993 51.699L24.389 44.6949999999999C20.361 39.617 19.136 34.5389999999999 21.588 29.8109999999999L22.638 27.8849999999999C25.616 22.1059999999999 28.942 20.0049999999999 34.896 20.0049999999999H39.624C49.954 20.0049999999999 55.558 17.5529999999999 55.558 10.8989999999999C55.558 6.1709999999999 51.355 2.6689999999999 41.2 2.6689999999999C36.471 2.6689999999999 31.743 3.7199999999999 26.841 5.8209999999999C20.362 9.6729999999999 15.109 9.3229999999999 11.257 2.6689999999999L5.654 -6.611C1.976 -12.739 2.501 -18.342 8.28 -22.5450000000001z" />
+    <glyph glyph-name="list-ul"
+      unicode="&#xF0CA;"
+      horiz-adv-x="512" d=" M96 352C96 325.49 74.51 304 48 304S0 325.49 0 352S21.49 400 48 400S96 378.51 96 352zM48 240C21.49 240 0 218.51 0 192S21.49 144 48 144S96 165.49 96 192S74.51 240 48 240zM48 80C21.49 80 0 58.51 0 32S21.49 -16 48 -16S96 5.49 96 32S74.51 80 48 80zM512 336V368C512 374.627 506.627 380 500 380H140C133.373 380 128 374.627 128 368V336C128 329.373 133.373 324 140 324H500C506.627 324 512 329.373 512 336zM512 176V208C512 214.627 506.627 220 500 220H140C133.373 220 128 214.627 128 208V176C128 169.373 133.373 164 140 164H500C506.627 164 512 169.373 512 176zM512 16V48C512 54.627 506.627 60 500 60H140C133.373 60 128 54.627 128 48V16C128 9.373 133.373 4 140 4H500C506.627 4 512 9.373 512 16z" />
+    <glyph glyph-name="list"
+      unicode="&#xF03A;"
+      horiz-adv-x="512" d=" M500 324H140C133.373 324 128 329.373 128 336V368C128 374.627 133.373 380 140 380H500C506.627 380 512 374.627 512 368V336C512 329.373 506.627 324 500 324zM512 176V208C512 214.627 506.627 220 500 220H140C133.373 220 128 214.627 128 208V176C128 169.373 133.373 164 140 164H500C506.627 164 512 169.373 512 176zM512 16V48C512 54.627 506.627 60 500 60H140C133.373 60 128 54.627 128 48V16C128 9.373 133.373 4 140 4H500C506.627 4 512 9.373 512 16zM92 320V384C92 390.627 86.627 396 80 396H16C9.373 396 4 390.627 4 384V320C4 313.373 9.373 308 16 308H80C86.627 308 92 313.373 92 320zM92 160V224C92 230.627 86.627 236 80 236H16C9.373 236 4 230.627 4 224V160C4 153.373 9.373 148 16 148H80C86.627 148 92 153.373 92 160zM92 0V64C92 70.627 86.627 76 80 76H16C9.373 76 4 70.627 4 64V0C4 -6.627 9.373 -12 16 -12H80C86.627 -12 92 -6.627 92 0z" />
+    <glyph glyph-name="location-arrow"
+      unicode="&#xF124;"
+      horiz-adv-x="512" d=" M461.9 448C456.17 448 450.31 446.9 444.51 444.48L28.74 252.59C-19.23 230.2 -3.24 159.84 47.93 159.84H223.84V-16.0699999999999C223.84 -46.0799999999999 248.05 -63.9999999999999 272.58 -63.9999999999999C289.88 -63.9999999999999 307.33 -55.1 316.59 -35.2599999999999L508.49 380.5200000000001C522.06 413.11 494.14 448 461.9 448zM271.81 -16.07V207.81H223.84L48.36 207.1C48.09 207.47 47.89 208.45 48.84 209.03L462.05 399.74C462.66 399.33 463.33 398.67 463.74 398.06L271.81 -16.07z" />
+    <glyph glyph-name="location-circle"
+      unicode="&#xF602;"
+      horiz-adv-x="496" d=" M304.51 307.8L122.45 224.14C102.6 214.91 92.44 194.5 97.13 173.3300000000001C101.76 152.6400000000001 119.8 138.1800000000001 141.02 138.1800000000001H194.01V85.4500000000001C194.01 64.3100000000001 208.55 46.35 229.33 41.7600000000001C232.77 41.0000000000001 236.21 40.6200000000001 239.58 40.6200000000001C256.96 40.6200000000001 272.59 50.4400000000001 280.38 67.0700000000001L364.38 248.2000000000001L364.76 249.0300000000001C371.7 265.6 367.7 284.7800000000001 354.54 297.9000000000001C341.31 311.0500000000001 322.05 315.0500000000001 304.51 307.8000000000001zM242.02 98.39V185.97H153.96L317.49 261.12L242.02 98.39zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8z" />
+    <glyph glyph-name="location-slash"
+      unicode="&#xF603;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM320 336C399.4 336 464 271.4 464 192C464 185.28 462.91 178.85 462.01 172.36L504.26 139.3300000000001C506.92 148.6400000000001 509.1 158.16 510.33 168.0000000000001H560C568.84 168.0000000000001 576 175.1600000000001 576 184.0000000000001V200.0000000000001C576 208.8400000000001 568.84 216.0000000000001 560 216.0000000000001H510.34C499.49 302.81 430.81 371.49 344 382.3400000000001V432C344 440.84 336.84 448 328 448H312C303.1600000000001 448 296 440.84 296 432V382.3400000000001C270.19 379.11 246.31 370.27 224.74 357.86L266.29 325.38C282.92 332.1 300.99 336 320 336zM320 48C240.6 48 176 112.6 176 192C176 198.72 177.09 205.16 177.99 211.64L135.74 244.67C133.08 235.36 130.89 225.84 129.66 216H80C71.16 216 64 208.84 64 200V184C64 175.16 71.16 168 80 168H129.66C140.51 81.19 209.2 12.51 296 1.66V-48C296 -56.84 303.1600000000001 -64 312 -64H328C336.84 -64 344 -56.84 344 -48V1.66C369.81 4.89 393.69 13.73 415.26 26.14L373.71 58.62C357.08 51.9 339.01 48 320 48z" />
+    <glyph glyph-name="location"
+      unicode="&#xF601;"
+      horiz-adv-x="512" d=" M256 280C207.4 280 168 240.6 168 192S207.4 104 256 104S344 143.4 344 192S304.6 280 256 280zM256 152C233.94 152 216 169.94 216 192S233.94 232 256 232S296 214.06 296 192S278.06 152 256 152zM496 216H446.3400000000001C435.49 302.81 366.81 371.49 280 382.3400000000001V432C280 440.84 272.84 448 264 448H248C239.16 448 232 440.84 232 432V382.3400000000001C145.19 371.49 76.51 302.81 65.66 216H16C7.16 216 0 208.84 0 200V184C0 175.16 7.16 168 16 168H65.66C76.51 81.19 145.19 12.51 232 1.66V-48C232 -56.84 239.16 -64 248 -64H264C272.84 -64 280 -56.84 280 -48V1.66C366.81 12.51 435.49 81.2 446.34 168H496C504.84 168 512 175.16 512 184V200C512 208.84 504.84 216 496 216zM256 48C176.6 48 112 112.6 112 192S176.6 336 256 336S400 271.4 400 192S335.4 48 256 48z" />
+    <glyph glyph-name="lock-alt"
+      unicode="&#xF30D;"
+      horiz-adv-x="448" d=" M224 36C208.5 36 196 48.5 196 64V128C196 143.5 208.5 156 224 156S252 143.5 252 128V64C252 48.5 239.5 36 224 36zM448 208V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V208C0 234.5 21.5 256 48 256H80V304C80 383.5 144.8 448.2 224.4 448C304 447.8 368 382.2 368 302.6V256H400C426.5 256 448 234.5 448 208zM128 256H320V304C320 356.9 276.9 400 224 400S128 356.9 128 304V256zM400 208H48V-16H400V208z" />
+    <glyph glyph-name="lock-open-alt"
+      unicode="&#xF3C2;"
+      horiz-adv-x="576" d=" M432.3 448C352.8 448.2 288 383.5 288 304V256H48C21.5 256 0 234.5 0 208V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V208C448 234.5 426.5 256 400 256H336V302.8C336 355.6 378.1 399.5 431 400C484.4 400.6 528 357.3 528 304V248C528 234.7 538.7 224 552 224S576 234.7 576 248V302.6C576 382.2 512 447.8 432.3 448zM400 208V-16H48V208H400zM225 36C209.5 36 197 48.5 197 64V128C197 143.5 209.5 156 225 156S253 143.5 253 128V64C253 48.5 240.5 36 225 36z" />
+    <glyph glyph-name="lock-open"
+      unicode="&#xF3C1;"
+      horiz-adv-x="576" d=" M432.3 448C352.8 448.2 288 383.5 288 304V256H48C21.5 256 0 234.5 0 208V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V208C448 234.5 426.5 256 400 256H336V302.8C336 355.6 378.1 399.5 431 400C484.4 400.6 528 357.3 528 304V248C528 234.7 538.7 224 552 224S576 234.7 576 248V302.6C576 382.2 512 447.8 432.3 448zM400 208V-16H48V208H400z" />
+    <glyph glyph-name="lock"
+      unicode="&#xF023;"
+      horiz-adv-x="448" d=" M400 256H368V302.6C368 382.2 304 447.8 224.4 448C144.8 448.2 80 383.5 80 304V256H48C21.5 256 0 234.5 0 208V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V208C448 234.5 426.5 256 400 256zM128 304C128 356.9 171.1 400 224 400S320 356.9 320 304V256H128V304zM400 -16H48V208H400V-16z" />
+    <glyph glyph-name="long-arrow-alt-down"
+      unicode="&#xF309;"
+      horiz-adv-x="256" d=" M20.485 75.515L119.514 -23.515C124.2 -28.201 131.798 -28.201 136.485 -23.515L235.514 75.515C243.074 83.075 237.72 96 227.029 96H156V404C156 410.627 150.627 416 144 416H112C105.373 416 100 410.627 100 404V96H28.97C18.28 96 12.926 83.074 20.485 75.515z" />
+    <glyph glyph-name="long-arrow-alt-left"
+      unicode="&#xF30A;"
+      horiz-adv-x="448" d=" M107.515 297.029L8.485 198C3.799 193.314 3.799 185.716 8.485 181.029L107.515 82C115.075 74.44 128 79.794 128 90.485V161.515H436C442.627 161.515 448 166.888 448 173.515V205.515C448 212.142 442.627 217.515 436 217.515H128V288.545C128 299.235 115.074 304.589 107.515 297.029z" />
+    <glyph glyph-name="long-arrow-alt-right"
+      unicode="&#xF30B;"
+      horiz-adv-x="448" d=" M340.485 82L439.515 181.029C444.201 185.715 444.201 193.313 439.515 198L340.485 297.029C332.925 304.589 320 299.235 320 288.544V217.514H12C5.373 217.514 0 212.141 0 205.514V173.514C0 166.887 5.373 161.514 12 161.514H320V90.484C320 79.795 332.926 74.441 340.485 82.0000000000001z" />
+    <glyph glyph-name="long-arrow-alt-up"
+      unicode="&#xF30C;"
+      horiz-adv-x="256" d=" M235.515 308.485L136.486 407.515C131.8 412.201 124.202 412.201 119.515 407.515L20.486 308.485C12.926 300.926 18.28 288 28.97 288H100V-20C100 -26.627 105.373 -32 112 -32H144C150.627 -32 156 -26.627 156 -20V288H227.03C237.72 288 243.074 300.926 235.515 308.485z" />
+    <glyph glyph-name="long-arrow-down"
+      unicode="&#xF175;"
+      horiz-adv-x="320" d=" M300.3 120.5L280.7 140.1C275.9 144.9 268.2 144.8 263.6 139.9L186 59.2V404C186 410.6 180.6 416 174 416H146C139.4 416 134 410.6 134 404V59.2L56.5 139.9C51.8 144.7 44.1 144.8 39.4 140.1L19.8 120.5C15.1 115.8 15.1 108.1999999999999 19.8 103.4999999999999L151.6 -28.3000000000001C156.3 -33.0000000000001 163.9 -33.0000000000001 168.6 -28.3000000000001L300.4000000000001 103.4999999999999C305.0000000000001 108.1999999999999 305.0000000000001 115.8 300.3 120.5z" />
+    <glyph glyph-name="long-arrow-left"
+      unicode="&#xF177;"
+      horiz-adv-x="448" d=" M152.485 51.716L172.111 71.342C176.864 76.095 176.786 83.826 171.938 88.482L91.22 166H436C442.627 166 448 171.373 448 178V206C448 212.627 442.627 218 436 218H91.22L171.937 295.5180000000001C176.786 300.174 176.864 307.905 172.11 312.658L152.484 332.284C147.798 336.9700000000001 140.2 336.9700000000001 135.513 332.284L3.716 200.485C-0.97 195.799 -0.97 188.201 3.716 183.514L135.515 51.715C140.201 47.03 147.799 47.03 152.485 51.716z" />
+    <glyph glyph-name="long-arrow-right"
+      unicode="&#xF178;"
+      horiz-adv-x="448" d=" M295.515 332.284L275.889 312.658C271.136 307.9050000000001 271.214 300.174 276.062 295.5180000000001L356.78 218H12C5.373 218 0 212.627 0 206V178C0 171.373 5.373 166 12 166H356.78L276.063 88.482C271.214 83.826 271.136 76.095 275.89 71.342L295.516 51.716C300.202 47.03 307.8 47.03 312.487 51.716L444.286 183.515C448.9719999999999 188.201 448.9719999999999 195.799 444.286 200.486L312.485 332.284C307.7990000000001 336.9700000000001 300.201 336.9700000000001 295.515 332.284z" />
+    <glyph glyph-name="long-arrow-up"
+      unicode="&#xF176;"
+      horiz-adv-x="320" d=" M19.716 263.515L39.342 243.889C44.095 239.136 51.826 239.214 56.482 244.062L134 324.78V-20C134 -26.627 139.373 -32 146 -32H174C180.627 -32 186 -26.627 186 -20V324.78L263.5180000000001 244.063C268.1740000000001 239.214 275.9050000000001 239.136 280.658 243.89L300.284 263.516C304.97 268.202 304.97 275.8 300.284 280.487L168.485 412.284C163.799 416.9700000000001 156.201 416.9700000000001 151.514 412.284L19.716 280.485C15.03 275.799 15.03 268.201 19.716 263.515z" />
+    <glyph glyph-name="loveseat"
+      unicode="&#xF4CC;"
+      horiz-adv-x="512" d=" M448 251.4V320C448 373 405 416 352 416H160C107 416 64 373 64 320V251.4C29.4 240.7 3.1 211.1 0.3 175C-2 146 9.9 118.5 32 100.4V8C32 -14.1 49.9 -32 72 -32H160C164 -32 190.2 -31.1 191.9 0H320.2000000000001C321.6 -30.8 348.2000000000001 -32 352.1 -32H440.1C462.2 -32 480.1 -14.1 480.1 8V100.4C502.1 118.5 514.1 145.9 511.8 175C508.9 211.1 482.6 240.7 448 251.4zM144 16H80V126.7L68.1 133.7C54.6 141.5 47 156 48.2 171.3C49.7 191.5 69.4 208 92 208H104C126.1 208 144 190.1 144 168V16zM320 144V48H192V144H320zM323.7 192H188.2C178.4 226.3 148.5 251.8 112 255.2V320C112 346.5 133.5 368 160 368H352C378.5 368 400 346.5 400 320V255.2C363.4 251.8 333.5 226.3 323.7 192zM443.9 133.6L432 126.6V16H368V168C368 190.1 385.9 208 408 208H420C442.6 208 462.3 191.5 463.9 171.2C465 155.9 457.4 141.5 443.9 133.6z" />
+    <glyph glyph-name="low-vision"
+      unicode="&#xF2A8;"
+      horiz-adv-x="576" d=" M569.348 216.37C512.968 312.05 407.81 376 288 376C256.56 376 226.13 371.6 197.33 363.37L144 442.88C140.2 448.3090000000001 132.718 449.63 127.288 445.83L107.631 432.072C102.201 428.272 100.88 420.788 104.681 415.359L150.8 346.16C91.949 319.16 40.797 274.3400000000001 6.653 216.37A47.963 47.963 0 0 1 6.653 167.63C42.803 106.28 99.01 57.97 166.29 31.21L50.65 196.4A273.208 273.208 0 0 0 89.259 245.499L254.32 9.7C274.115 7.645 295.171 7.517 313.41 8.97L126.009 276.689A277.521 277.521 0 0 0 178.86 306.07L179.2 305.58L432 -58.881C435.8 -64.3099999999999 443.282 -65.631 448.712 -61.831L468.369 -48.073C473.799 -44.273 475.1199999999999 -36.79 471.319 -31.36L425.2 37.84C485.6199999999999 65.5600000000001 536.0179999999999 111.0600000000001 569.348 167.63A47.963 47.963 0 0 1 569.348 216.37zM397.15 77.92L370.56 115.91C424.582 157.2580000000001 438.765 230.5470000000001 408 288.04V288C408 257.0700000000001 382.93 232.0000000000001 352 232.0000000000001S296 257.0700000000001 296 288C296 303.17 302.04 316.92 311.84 327.01C404.32 319.27 483.84 266.93 528 192C498.2 141.43 452.29 101.14 397.15 77.92z" />
+    <glyph glyph-name="luchador"
+      unicode="&#xF455;"
+      horiz-adv-x="448" d=" M224 448C100.3 448 0 347.7 0 224V96C0 7.6 71.6 -64 160 -64H288C376.4 -64 448 7.6 448 96V224C448 347.7 347.7 448 224 448zM400 96C400 34.2 349.8 -16 288 -16H160C98.2 -16 48 34.2 48 96V224C48 321 127 400 224 400S400 321 400 224V96zM226.5 221.8C225.6 222.5 222.3 222.5 221.4 221.8C213.3 259.7 182 288 144 288H76C69.4 288 64 282.6 64 276V245.3C64 198.2 99.8 160 144 160H166.4C159 147.8 153.9 136.5 150.6 127.1C119.7 122.5 96 96.1 96 64C96 28.5 125.4 0 160.9 0H287C322.5 0 351.9 28.5 351.9 64C351.9 96.1 328.2 122.5 297.3 127.1C294 136.6 288.9 147.8 281.5 160H304C348.2 160 384 198.2 384 245.3V276C384 282.6 378.6 288 372 288H304C266.1 288 234.7 259.7 226.5 221.8zM224 181.3C244.2 161.4 255.9 142.7 262.7 128H185.3C192.1 142.8 203.8 161.4 224 181.3zM144 192C117.5 192 96 215.9 96 245.3V256H144C170.5 256 192 232.1 192 202.7V194C191.4 193.3 190.8 192.7 190.2 192H144zM288 96C305.6 96 320 81.6 320 64S305.6 32 288 32H160C142.4 32 128 46.4 128 64S142.4 96 160 96H288zM352 245.3C352 215.9 330.5 192 304 192H257.8C257.2 192.7 256.6 193.3 256 194V202.7C256 232.1 277.5 256 304 256H352V245.3z" />
+    <glyph glyph-name="luggage-cart"
+      unicode="&#xF59D;"
+      horiz-adv-x="640" d=" M624 48H144V432C144 440.84 136.84 448 128 448H16C7.16 448 0 440.84 0 432V416C0 407.16 7.16 400 16 400H96V16C96 7.16 103.16 0 112 0H162.94C161.15 -5.03 160 -10.36 160 -16C160 -42.51 181.49 -64 208 -64S256 -42.51 256 -16C256 -10.36 254.85 -5.03 253.06 0H450.94C449.15 -5.03 448 -10.36 448 -16C448 -42.51 469.49 -64 496 -64S544 -42.51 544 -16C544 -10.36 542.85 -5.03 541.06 0H624C632.84 0 640 7.16 640 16V32C640 40.84 632.84 48 624 48zM224 96H544C561.67 96 576 110.33 576 128V320C576 337.67 561.67 352 544 352H480V400C480 426.51 458.51 448 432 448H336C309.49 448 288 426.51 288 400V352H224C206.33 352 192 337.67 192 320V128C192 110.33 206.33 96 224 96zM480 304H528V144H480V304zM336 400H432V352H336V400zM336 304H432V144H336V304zM240 304H288V144H240V304z" />
+    <glyph glyph-name="lungs"
+      unicode="&#xF604;"
+      horiz-adv-x="640" d=" M636.11 57.85C614.44 139.15 580.07 217 534.1 288.87C511.98 323.44 498.03 352 454.05 352C415.36 352 384 322.58 384 286.29V226.18L351.12 248.1A15.995999999999999 15.995999999999999 0 0 0 344 261.4100000000001V432C344 440.84 336.84 448 328 448H312C303.1600000000001 448 296 440.84 296 432V261.41C296 256.06 293.33 251.07 288.88 248.1L256 226.18V286.29C256 322.58 224.64 352 185.95 352C141.97 352 128.02 323.44 105.9 288.87C59.93 217 25.56 139.15 3.89 57.85C1.3 48.16 0 38.21 0 28.22C0 -24.11 45.63 -64 98.07 -64C116.16 -64 122.52 -61.13 184.75 -44.45C226.93 -33.15 256.01 3.02 256.01 44.17V131.66L208.01 99.66V44.17C208.01 24.92 193.34 7.55 172.33 1.92C107.71 -15.4 107.88 -16 98.07 -16C67.76 -16 40.16 7.57 50.28 45.49C70.68 122.07 103 195.26 146.33 263C169.37 299.41 171.67 304 185.95 304C197.9 304 208 295.89 208 286.29V194.18L128 140.85C120.65 135.9500000000001 118.66 126.0200000000001 123.56 118.66L132.44 105.35C137.34 98 147.28 96.0100000000001 154.63 100.91L320 211.16L485.38 100.91C492.73 96.01 502.67 97.9999999999999 507.57 105.35L516.45 118.66C521.35 126.01 519.36 135.95 512.01 140.85L432.01 194.18V286.29C432.01 295.89 442.11 304 454.06 304C468.34 304 470.63 299.41 493.68 263C537.01 195.26 569.33 122.0699999999999 589.74 45.49C599.86 7.57 572.26 -16 541.95 -16C532.1400000000001 -16 532.3100000000001 -15.4 467.7 1.91C446.6900000000001 7.54 432.0200000000001 24.92 432.0200000000001 44.16V99.65L384.0200000000001 131.65V44.16C384.0200000000001 3.01 413.1 -33.15 455.28 -44.46C517.5 -61.14 523.87 -64.01 541.96 -64.01C594.4000000000001 -64.01 640.03 -24.12 640.03 28.21C640 38.21 638.6999999999999 48.16 636.11 57.85z" />
+    <glyph glyph-name="mace"
+      unicode="&#xF6F8;"
+      horiz-adv-x="512" d=" M304 272C286.33 272 272 257.67 272 240S286.33 208 304 208S336 222.33 336 240S321.67 272 304 272zM500.98 253.03L444.48 270.94C432.2700000000001 326.55 388.0800000000001 370.0900000000001 332.06 381.17L313.05 437.2C308.13 451.7 295.5900000000001 451.57 290.9700000000001 436.98L273.06 380.48C217.45 368.27 173.91 324.0800000000001 162.83 268.06L106.8 249.05C92.3 244.13 92.43 231.59 107.02 226.9700000000001L163.52 209.06C167.73 189.8800000000001 175.81 172.25 186.83 156.7700000000001L3.51 -26.54C-1.18 -31.23 -1.18 -38.83 3.51 -43.51L20.48 -60.48C25.17 -65.1700000000001 32.77 -65.1700000000001 37.45 -60.48L220.77 122.84C237.03 111.27 255.64 102.85 275.93 98.84L294.94 42.8099999999999C299.86 28.3099999999999 312.3999999999999 28.4399999999999 317.0199999999999 43.03L334.93 99.53C390.54 111.74 434.08 155.93 445.16 211.95L501.1899999999999 230.96C515.6999999999999 235.87 515.5699999999999 248.41 500.98 253.03zM304 144C251.06 144 208 187.07 208 240C208 292.94 251.06 336 304 336S400 292.94 400 240C400 187.07 356.94 144 304 144z" />
+    <glyph glyph-name="magic"
+      unicode="&#xF0D0;"
+      horiz-adv-x="512" d=" M497.94 371.7200000000001L435.7200000000001 433.94C426.34 443.31 414.06 448 401.78 448C389.49 448 377.21 443.31 367.84 433.94L14.06 80.16C-4.69 61.41 -4.69 31.02 14.06 12.28L76.28 -49.9399999999999C85.65 -59.3099999999999 97.94 -63.9999999999999 110.22 -63.9999999999999C122.5 -63.9999999999999 134.79 -59.3099999999999 144.16 -49.9399999999999L497.9299999999999 303.8400000000001C516.6899999999999 322.5800000000001 516.6899999999999 352.9700000000001 497.9399999999999 371.7200000000001zM110.23 -16L48 46.22L271.9 270.1500000000001L334.14 207.91L110.23 -16zM368.0800000000001 241.86L305.8400000000001 304.1L401.73 400H401.7800000000001L464 337.78L368.08 241.86zM432 160L405.34 106.67L352 80L405.3400000000001 53.33L432 0L458.66 53.33L512 80L458.66 106.67L432 160zM224 352L240 384L272 400L240 416L224 448L208 416L176 400L208 384L224 352zM80 288L106.66 341.33L160 368L106.66 394.67L80 448L53.34 394.67L0 368L53.34 341.33L80 288z" />
+    <glyph glyph-name="magnet"
+      unicode="&#xF076;"
+      horiz-adv-x="512" d=" M509.8 392.4C508.6 395.7 506.9 398.8 504.8 401.6C498.2 410.4 487.8 416.1 476 416.1H372C359.6 416.1 348.6 409.8 342.1 400.2C341.1 398.8 340.3 397.3 339.5 395.7C337.2 391 336 385.7 336 380.1V208.1C336 144.1 296 112.1 256.1 112.1C216.1 112.1 176 144.1 176 208.1V380C176 384.3 175.2 388.5 173.8000000000001 392.4C172.6000000000001 395.7 170.9 398.8 168.8000000000001 401.6C162.2000000000001 410.4 151.8000000000001 416.1 140 416.1H36C24.2 416.1 13.7 410.4 7.2 401.6C5.1 398.8 3.4 395.7 2.2 392.4C0.8 388.5 0 384.3 0 380V190.7C0 40 136.2 -56 256.8 -56C377.5 -56 512 40 512 190.7V380C512 384.3 511.2 388.5 509.8 392.4zM464 190.7C464 161.8 457.9 134.5 445.8 109.4C434.6 86 418.5 65 397.9000000000001 46.9C378.4000000000001 29.7 355.0000000000001 15.7 330.3000000000001 6.2C306.2000000000001 -3.1 280.7000000000001 -8 256.7000000000001 -8C207.2000000000001 -8 154.1000000000001 12.6 114.6000000000001 47C93.9000000000001 65.1 77.6000000000001 86.1 66.2000000000001 109.5C54.2 134.6 48 161.9 48 190.7V272H128.0000000000001V208C128.0000000000001 154.9 148.7000000000001 121.7 166.0000000000001 103.2C177.9000000000001 90.5 192.0000000000001 80.6 207.8000000000001 73.9C223.1000000000001 67.4 239.4000000000001 64 256.0000000000001 64C272.7000000000001 64 288.9000000000001 67.3 304.2000000000001 73.8C320.0000000000001 80.6 334.1 90.4 346.0000000000001 103.1C363.3000000000001 121.6 384.0000000000001 154.8 384.0000000000001 207.9V271.9000000000001H464.0000000000001V190.7000000000001z" />
+    <glyph glyph-name="mail-bulk"
+      unicode="&#xF674;"
+      horiz-adv-x="576" d=" M112 400H400V352H448V400C448 426.51 426.51 448 400 448H112C85.49 448 64 426.51 64 400V256H112V400zM336 224H48C21.49 224 0 202.51 0 176V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V176C384 202.51 362.51 224 336 224zM336 -16H48V104.04C62.49 93.03 128 45.92 128 45.92C142.44 34.72 166.62 16 192 16S241.56 34.72 256 45.92C256 45.92 321.5 93.02 336 104.04V-16zM336 162.61C333.63 160.76 224.19 80.67 218.91 77.06C210.41 71.23 199.81 64 192 64C182.59 64 169.31 74.55 160.5 81.53C157.09 84.25 50.37 163.96 48 165.81V176H336V162.61zM528 320H240C213.49 320 192 298.51 192 272V256H240V272H528V80H416V32H528C554.51 32 576 53.49 576 80V272C576 298.51 554.51 320 528 320zM432 240V176H496V240H432z" />
+    <glyph glyph-name="male"
+      unicode="&#xF183;"
+      horiz-adv-x="256" d=" M211.421 292.921C221.892 308.727 228 327.6620000000001 228 348C228 403.14 183.14 448 128 448S28 403.14 28 348C28 327.6620000000001 34.108 308.727 44.579 292.921C18.005 278.015 0 249.576 0 217V128C0 101.961 15.629 79.506 38 69.521V0C38 -35.29 66.71 -64 102 -64H154C189.29 -64 218 -35.29 218 0V69.521C240.371 79.505 256 101.961 256 128V217C256 249.576 237.995 278.015 211.421 292.921zM128 400C156.719 400 180 376.719 180 348S156.719 296 128 296S76 319.281 76 348S99.281 400 128 400zM208 128C208 119.2 200.8 112 192 112H170V0C170 -8.837 162.837 -16 154 -16H102C93.163 -16 86 -8.837 86 0V112H64C55.163 112 48 119.163 48 128V217C48 236.793 63.074 256 88.818 256C113.779 245.329 142.218 245.328 167.182 256C192.552 256 208 237.115 208 217V128z" />
+    <glyph glyph-name="mandolin"
+      unicode="&#xF6F9;"
+      horiz-adv-x="512" d=" M502.63 393.37L457.37 438.63C444.87 451.13 424.61 451.13 412.11 438.63L344.23 370.75C331.74 358.27 331.73 338 344.23 325.49L349.8900000000001 319.8300000000001L313.06 283C236.76 296.76 151.38 281.63 94.51 240.36A560.179 560.179 0 0 1 27.35 183.05C8.37 164.07 0 142.5 0 119.8C0 80.54 25.04 37.92 63.48 -0.52C101.91 -38.96 144.54 -64 183.8 -64C206.5 -64 228.07 -55.63 247.06 -36.64A560.179 560.179 0 0 1 304.37 30.52C345.64 87.39 360.76 172.76 347.01 249.07L383.84 285.9L389.5 280.24C401.99 267.75 422.26 267.73 434.75 280.24L502.63 348.12C515.12 360.61 515.12 380.87 502.63 393.37zM265.52 58.71C249.7 36.92 232.07 16.25 213.11 -2.7C203.91 -11.9 194.87 -16.0000000000001 183.8 -16.0000000000001C160.31 -16.0000000000001 128.83 2.0099999999999 97.42 33.42C66.01 64.82 48 96.31 48 119.8C48 130.88 52.1 139.92 61.29 149.11A514.963 514.963 0 0 0 122.7 201.52C163.08 230.83 214.28 243.6 268.9 238.85L206.84 176.79C197.45 181.28 187.07 184 175.99 184C136.29 184 103.99 151.69 103.99 112C103.99 92.15 112.06 74.15 125.1 61.11C138.15 48.08 156.15 40 176 40C215.69 40 248 72.3 248 112C248 123.08 245.28 133.46 240.79 142.84L302.85 204.9C307.6 150.29 294.8300000000001 99.09 265.5200000000001 58.71zM200 112C200 98.77 189.22 88 176 88S152 98.77 152 112C152 125.22 162.77 136 176 136C189.21 136 200 125.24 200 112zM412.12 325.49L389.49 348.12L434.74 393.37L457.37 370.74L412.12 325.49z" />
+    <glyph glyph-name="map-marked-alt"
+      unicode="&#xF5A0;"
+      horiz-adv-x="576" d=" M344 322C344 335.26 333.26 346 320 346S296 335.26 296 322C296 308.75 306.74 298 320 298S344 308.75 344 322zM320 96C324.98 96 329.96 98.02 333.52 102.07C368.78 142.06 460.8 252.21 460.8 312.65C460.8 387.4 397.76 448 320 448S179.2 387.4 179.2 312.65C179.2 252.22 271.22 142.06 306.48 102.07C310.04 98.02 315.0200000000001 96 320 96zM320 400C371.17 400 412.8 360.81 412.8 312.65C412.8 291.25 381.02 233.57 320 160.07C258.9700000000001 233.56 227.2 291.24 227.2 312.65C227.2 360.81 268.83 400 320 400zM560.02 288C558.06 288 556.04 287.63 554.06 286.8400000000001L480.5799999999999 259.69C472.3399999999999 239.28 460.3799999999999 217.66 446.3599999999999 195.88L528 226.05V33.08L400 -11.4499999999999V131.73A1277.736 1277.736 0 0 0 357.53 80.9C355.86 79.0100000000001 353.91 77.4400000000001 352 75.84V-5.59L224 39.6V152.64C205.94 176.73 189.21 201.43 176 225.47V45.26L175.36 45.03L48 -2.05V190.92L171.56 233.9C163.58 249.32 157.49 264.19 153.3 278.36L20.12 232.05A32.01 32.01 0 0 1 0 202.33V-47.99C0 -57.17 7.53 -64 15.99 -64C17.95 -64 19.96 -63.63 21.95 -62.84L192 0L364 -60.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -60.86L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 281.17 568.47 288 560.02 288z" />
+    <glyph glyph-name="map-marked"
+      unicode="&#xF59F;"
+      horiz-adv-x="576" d=" M320 96C324.98 96 329.96 98.02 333.52 102.07C368.78 142.06 460.8 252.21 460.8 312.65C460.8 387.4 397.76 448 320 448S179.2 387.4 179.2 312.65C179.2 252.22 271.22 142.06 306.48 102.07C310.04 98.02 315.0200000000001 96 320 96zM320 400C371.17 400 412.8 360.81 412.8 312.65C412.8 291.25 381.02 233.57 320 160.07C258.9700000000001 233.56 227.2 291.24 227.2 312.65C227.2 360.81 268.83 400 320 400zM560.02 288C558.06 288 556.04 287.63 554.06 286.8400000000001L480.5799999999999 259.69C472.3399999999999 239.28 460.3799999999999 217.66 446.3599999999999 195.88L528 226.05V33.08L400 -11.4499999999999V131.73A1277.736 1277.736 0 0 0 357.53 80.9C355.86 79.0100000000001 353.91 77.4400000000001 352 75.84V-5.59L224 39.6V152.64C205.94 176.73 189.21 201.43 176 225.47V45.26L175.36 45.03L48 -2.05V190.92L171.56 233.9C163.58 249.32 157.49 264.19 153.3 278.36L20.12 232.05A32.01 32.01 0 0 1 0 202.33V-47.99C0 -57.17 7.53 -64 15.99 -64C17.95 -64 19.96 -63.63 21.95 -62.84L192 0L364 -60.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -60.86L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 281.17 568.47 288 560.02 288z" />
+    <glyph glyph-name="map-marker-alt-slash"
+      unicode="&#xF605;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM320 400C399.4 400 464 335.4 464 256C464 230.93 461.07 214.38 445.12 185.57L483.35 155.68C505.9 194.54 512 219.05 512 256C512 361.6 425.6 448 320 448C266.58 448 218.12 425.84 183.23 390.31L221.45 360.43C247.25 384.79 281.8 400 320 400zM285.77 310.15L380.6 236.01C382.63 242.32 384 248.94 384 256C384 291.8400000000001 355.8399999999999 320 320 320C307.29 320 295.63 316.32 285.7699999999999 310.15zM359.41 57.91C347.51 41.04 334.41 22.47 320 1.92C305.59 22.48 292.49 41.04 280.5900000000001 57.91C222.32 140.51 196.17 178.24 184.66 206.42L128.13 250.62C129.4 178.13 157.18 151.66 300.8 -54.4C305.6 -60.8 312.8 -64 320 -64C327.2 -64 334.4 -60.8 339.2 -54.4C363.66 -19.3 384.49 10.1900000000001 402.67 35.98L364.81 65.58C362.97 62.97 361.31 60.61 359.41 57.91z" />
+    <glyph glyph-name="map-marker-alt"
+      unicode="&#xF3C5;"
+      horiz-adv-x="384" d=" M192 448C85.903 448 0 361.986 0 256C0 184.883 23.991 162.659 151.271 -41.424C170.056 -71.543 213.965 -71.5069999999999 232.728 -41.424C360.075 162.766 384 184.897 384 256C384 362.097 297.986 448 192 448zM192 -16C64.576 188.314 48 201.212 48 256C48 335.529 112.471 400 192 400S336 335.529 336 256C336 201.447 320.834 190.575 192 -16zM112 256C112 300.183 147.817 336 192 336S272 300.183 272 256S236.183 176 192 176S112 211.817 112 256z" />
+    <glyph glyph-name="map-marker-check"
+      unicode="&#xF606;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.03 152.59 57.9C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM291.93 294.23L268.7200000000001 317.63C264.87 321.51 258.61 321.5300000000001 254.7400000000001 317.6900000000001L167.3800000000001 231.0300000000001L129.5000000000001 269.2200000000001C125.6600000000001 273.1 119.3900000000001 273.12 115.5200000000001 269.2800000000001L92.1200000000001 246.07C88.2400000000001 242.2200000000001 88.2200000000001 235.9600000000001 92.0600000000001 232.0900000000001L160.1100000000001 163.49C163.9600000000001 159.61 170.2200000000001 159.59 174.0900000000001 163.43L291.8700000000001 280.26C295.7500000000001 284.1 295.7800000000001 290.36 291.9300000000001 294.23z" />
+    <glyph glyph-name="map-marker-edit"
+      unicode="&#xF607;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.03 152.59 57.9C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM113.59 233.57L108.79 190.74C108.17 185.06 112.97 180.17 118.74 180.79L161.57 185.59L228.68 252.7000000000001L180.7 300.6800000000001L113.59 233.5700000000001zM247.43 342C240.41 349.02 229.04 349.02 222.02 342L203.32 323.3L251.3 275.32L270 294.02C277.02 301.04 277.02 312.41 270 319.43L247.43 342z" />
+    <glyph glyph-name="map-marker-exclamation"
+      unicode="&#xF608;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.03 152.59 57.9C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM192 192C174.33 192 160 177.67 160 160S174.33 128 192 128S224 142.33 224 160S209.67 192 192 192zM220.72 352H163.28C153.26 352 145.71 342.9 147.55 333.05L165.55 237.05A16.001 16.001 0 0 1 181.28 224H202.72C210.42 224 217.03 229.48 218.45 237.05L236.45 333.05C238.29 342.9 230.74 352 220.72 352z" />
+    <glyph glyph-name="map-marker-minus"
+      unicode="&#xF609;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64C199.2 -64 206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.04 152.59 57.91C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM272 280H112C103.16 280 96 272.8400000000001 96 264V248C96 239.16 103.16 232 112 232H272C280.84 232 288 239.16 288 248V264C288 272.8400000000001 280.84 280 272 280z" />
+    <glyph glyph-name="map-marker-plus"
+      unicode="&#xF60A;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64C199.2 -64 206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.04 152.59 57.91C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM272 280H216V336C216 344.8400000000001 208.84 352 200 352H184C175.16 352 168 344.8400000000001 168 336V280H112C103.16 280 96 272.8400000000001 96 264V248C96 239.16 103.16 232 112 232H168V176C168 167.16 175.16 160 184 160H200C208.84 160 216 167.16 216 176V232H272C280.84 232 288 239.16 288 248V264C288 272.8400000000001 280.84 280 272 280z" />
+    <glyph glyph-name="map-marker-question"
+      unicode="&#xF60B;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.03 152.59 57.9C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM194.67 360C152.86 360 117.77 330.7 108.86 291.55C106.58 281.56 114.06 272 124.3 272H141.14C148.36 272 154.33 276.99 156.47 283.88C161.54 300.15 176.74 312 194.67 312C220.65 312 234.67 291.39 234.67 272C234.67 256.04 214.6 244.81 184 229.5C175.86 225.43 170.67 217.1 170.67 208V191.84C170.67 183.09 177.76 176 186.51 176H202.83C211.58 176 218.67 183.09 218.67 191.84V193.27C249.92 209.54 282.67 231.05 282.67 272C282.67 315.25 249.75 360 194.67 360zM192 160C174.33 160 160 145.67 160 128S174.33 96 192 96S224 110.33 224 128S209.67 160 192 160z" />
+    <glyph glyph-name="map-marker-slash"
+      unicode="&#xF60C;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM320 400C399.4 400 464 335.4 464 256C464 230.93 461.07 214.38 445.12 185.57L483.35 155.68C505.9 194.54 512 219.05 512 256C512 361.6 425.6 448 320 448C266.58 448 218.12 425.84 183.23 390.31L221.45 360.43C247.25 384.79 281.8 400 320 400zM359.41 57.91C347.51 41.04 334.41 22.47 320 1.92C305.59 22.48 292.49 41.04 280.5900000000001 57.91C222.32 140.51 196.17 178.24 184.66 206.42L128.13 250.62C129.4 178.13 157.18 151.66 300.8 -54.4C305.6 -60.7999999999999 312.8 -64 320 -64S334.4 -60.8 339.2 -54.4C363.66 -19.3 384.49 10.1900000000001 402.68 35.98L364.81 65.58C362.9700000000001 62.97 361.31 60.61 359.4100000000001 57.91z" />
+    <glyph glyph-name="map-marker-smile"
+      unicode="&#xF60D;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64S206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.03 152.59 57.9C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM136 272C149.25 272 160 282.75 160 296C160 309.26 149.25 320 136 320S112 309.26 112 296C112 282.75 122.75 272 136 272zM248 272C261.25 272 272 282.75 272 296C272 309.26 261.25 320 248 320S224 309.26 224 296C224 282.75 234.75 272 248 272zM238 220.77C214.75 194.39 169.31 194.38 146 220.79C137.19 230.77 122.06 231.63 112.09 222.88C102.18 214.1 101.25 198.94 110 189C130.78 165.48 160.69 152 192 152C223.38 152 253.25 165.5 274 189.02C282.78 198.96 281.81 214.13 271.88 222.9C261.97 231.64 246.81 230.73 238 220.77z" />
+    <glyph glyph-name="map-marker-times"
+      unicode="&#xF60E;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C177.6 -60.7999999999999 184.8 -64 192 -64C199.2 -64 206.4 -60.8 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 1.91C177.59 22.47 164.49 41.04 152.59 57.91C58.35 191.52 48 207.8 48 256C48 335.4 112.6 400 192 400S336 335.4 336 256C336 207.8 325.65 191.52 231.41 57.91C219.51 41.04 206.41 22.47 192 1.91zM265.54 318.23L254.23 329.54C247.98 335.79 237.85 335.79 231.6 329.54L192 289.9400000000001L152.4 329.54C146.15 335.79 136.0200000000001 335.79 129.7700000000001 329.54L118.46 318.23C112.21 311.98 112.21 301.85 118.46 295.6L158.06 256L118.46 216.4C112.21 210.15 112.21 200.0200000000001 118.46 193.7700000000001L129.7700000000001 182.46C136.0200000000001 176.21 146.15 176.21 152.4 182.46L192 222.06L231.6 182.46C237.85 176.21 247.98 176.21 254.23 182.46L265.54 193.7700000000001C271.79 200.0200000000001 271.79 210.15 265.54 216.4L225.9400000000001 256L265.54 295.6C271.79 301.85 271.79 311.98 265.54 318.23z" />
+    <glyph glyph-name="map-marker"
+      unicode="&#xF041;"
+      horiz-adv-x="384" d=" M192 448C85.903 448 0 361.986 0 256C0 184.883 23.991 162.659 151.271 -41.424C170.056 -71.543 213.965 -71.5069999999999 232.728 -41.424C360.075 162.766 384 184.897 384 256C384 362.097 297.986 448 192 448zM192 -16C64.576 188.314 48 201.212 48 256C48 335.529 112.471 400 192 400S336 335.529 336 256C336 201.447 320.834 190.575 192 -16z" />
+    <glyph glyph-name="map-pin"
+      unicode="&#xF276;"
+      horiz-adv-x="288" d=" M144 448C64.47 448 0 383.53 0 304C0 232.69 51.96 173.9 120 162.42V-35.22L136.51 -59.99C140.07 -65.33 147.92 -65.33 151.49 -59.99L168 -35.22V162.42C236.04 173.9 288 232.69 288 304C288 383.53 223.53 448 144 448zM144 208C91.06 208 48 251.07 48 304C48 356.94 91.06 400 144 400S240 356.94 240 304C240 251.07 196.94 208 144 208zM144 368C108.72 368 80 339.3 80 304C80 295.16 87.16 288 96 288S112 295.16 112 304C112 321.64 126.34 336 144 336C152.84 336 160 343.16 160 352S152.84 368 144 368z" />
+    <glyph glyph-name="map-signs"
+      unicode="&#xF277;"
+      horiz-adv-x="512" d=" M441.37 256C449.86 256 457.99 260.2100000000001 464 267.7200000000001L507.31 321.86C513.56 329.67 513.56 342.33 507.31 350.15L464 404.29C458 411.79 449.86 416 441.37 416H280V432C280 440.84 272.84 448 264 448H248C239.16 448 232 440.84 232 432V416H56C42.75 416 32 402.57 32 386V286C32 269.43 42.75 256 56 256H232V224H70.63C62.14 224 54 219.79 48 212.29L4.69 158.14C-1.56 150.33 -1.56 137.67 4.69 129.85L48 75.72C54 68.22 62.14 64 70.63 64H232V-48C232 -56.84 239.16 -64 248 -64H264C272.84 -64 280 -56.84 280 -48V64H456C469.25 64 480 77.43 480 94V194C480 210.57 469.25 224 456 224H280V256H441.37zM432 112H80.44L54.84 144L80.44 176H432V112zM80 368H431.56L457.16 336L431.56 304H80V368z" />
+    <glyph glyph-name="map"
+      unicode="&#xF279;"
+      horiz-adv-x="576" d=" M560.02 416C558.06 416 556.04 415.63 554.06 414.8400000000001L384.01 352H384L212 412.7200000000001A64.252 64.252 0 0 1 191.76 416C185.07 416 178.39 414.95 171.95 412.86L20.12 360.05A32.006 32.006 0 0 1 0 330.3400000000001V-15.98C0 -25.17 7.53 -32 15.99 -32C17.95 -32 19.96 -31.63 21.95 -30.84L192 32L364 -28.71A63.97999999999999 63.97999999999999 0 0 1 404.05 -28.86L555.88 23.95A31.996 31.996 0 0 1 576 53.66V399.98C576 409.17 568.47 416 560.02 416zM224 357.58L352 312.39V26.42L224 71.61V357.58zM48 29.95V318.93L176 363.4600000000001V77.26L175.36 77.03L48 29.95zM528 65.08L400 20.55V306.74L400.64 306.98L528 354.05V65.08z" />
+    <glyph glyph-name="marker"
+      unicode="&#xF5A1;"
+      horiz-adv-x="512" d=" M485.48 421.49C467.81 439.1600000000001 444.64 448 421.4700000000001 448S375.1400000000001 439.1600000000001 357.4600000000001 421.49L335.7 399.73L299.15 436.28C283.53 451.9 258.2 451.9 242.59 436.28L123.8 317.5C117.55 311.25 117.55 301.12 123.8 294.87L135.11 283.56C141.36 277.31 151.49 277.31 157.74 283.56L270.87 396.69L301.77 365.79L93.95 157.98A327.038 327.038 0 0 1 0.17 -37.11L0.14 -37.34C-1.45 -51.72 9.88 -64 23.95 -64C29.68 -64 135.01 -57.01 221.98 29.95L485.49 293.46C520.84 328.82 520.84 386.13 485.48 421.49zM188.03 63.89C151.01 26.87 104.04 1.01 53.29 -10.71C65.01 40.03 90.88 87.02 127.89 124.03L200.96 197.1L261.1 136.96L188.03 63.89zM451.55 327.41L295.04 170.9L234.9000000000001 231.04L391.4100000000001 387.54C399.44 395.58 410.12 400 421.4700000000001 400C432.8300000000001 400 443.5100000000001 395.58 451.54 387.54C459.58 379.51 464 368.83 464 357.48C464 346.12 459.58 335.44 451.55 327.41z" />
+    <glyph glyph-name="mars-double"
+      unicode="&#xF227;"
+      horiz-adv-x="512" d=" M288 240C288 271.1 278.1 299.9 261.4 323.4L317 379L331.5 364.5C339.1 356.9 352 362.3 352 373V436C352 442.6 346.6 448 340 448H277C266.3 448 261 435.1 268.5 427.5L283 413L227.4 357.4C203.9 374.1 175.1 384 144 384C64.5 384 0 319.5 0 240S64.5 96 144 96S288 160.5 288 240zM144 144C91.1 144 48 187.1 48 240S91.1 336 144 336S240 292.9 240 240S196.9 144 144 144zM512 276V213C512 202.3 499.1 197 491.5 204.5L477 219L421.4 163.4C438.2 139.9 448 111.1 448 80C448 0.5 383.5 -64 304 -64C229.6 -64 168.4 -7.6 160.8 64.8C176.9 66.3 192.8 70.1 208.1 76C210.2 24.9 252.4000000000001 -16 304 -16C356.9 -16 400 27.1 400 80C400 131.6 359.1 173.8 308 175.9C314 191.2 317.7 207.1 319.2 223.2C344.5 220.5 367.8 211.4 387.4 197.4L443 253L428.5 267.5C420.9 275.1 426.3 288 437 288H500C506.6 288 512 282.6 512 276z" />
+    <glyph glyph-name="mars-stroke-h"
+      unicode="&#xF22B;"
+      horiz-adv-x="480" d=" M476.5 200.5L431.9 245.1C424.3 252.7 411.4 247.3 411.4 236.6V216H376V236C376 242.6 370.6 248 364 248H340C333.4 248 328 242.6 328 236V216H286C281.2 244.5 267.8 271.8 245.8 293.8C189.6 350 98.4 350 42.2 293.8C-14 237.6 -14 146.4 42.2 90.2000000000001C98.4 34.0000000000001 189.6 34.0000000000001 245.8 90.2000000000001C267.8 112.2000000000001 281.2 139.5000000000001 286 168.0000000000001H328V148.0000000000001C328 141.4 333.4 136.0000000000001 340 136.0000000000001H364C370.6 136.0000000000001 376 141.4 376 148.0000000000001V168.0000000000001H411.4V147.4C411.4 136.7000000000001 424.3 131.4 431.9 138.9L476.5 183.5000000000001C481.2 188.2000000000001 481.2 195.8000000000001 476.5 200.5000000000001zM211.9 124.1C174.5 86.7000000000001 113.6 86.7000000000001 76.1 124.1C38.7 161.5 38.7 222.4 76.1 259.9000000000001C113.5 297.3000000000001 174.4 297.3000000000001 211.9 259.9000000000001C249.3 222.5 249.3 161.5 211.9 124.1z" />
+    <glyph glyph-name="mars-stroke-v"
+      unicode="&#xF22A;"
+      horiz-adv-x="288" d=" M245.8 213.8C223.8 235.8 196.5 249.2 168 254V296.7H188C194.6 296.7 200 302.1 200 308.7V332.7C200 339.3 194.6 344.7 188 344.7H168V377.9H188.6C199.3 377.9 204.6 390.8 197.1 398.4L152.5 442.9C147.8 447.6 140.2 447.6 135.5 442.9L90.9 398.4C83.3 390.8 88.7 377.9 99.4 377.9H120V344.8H100C93.4 344.8 88 339.4 88 332.8V308.8C88 302.2000000000001 93.4 296.8 100 296.8H120V254C91.5 249.2 64.2 235.8 42.2 213.8C-14 157.6 -14 66.4 42.2 10.2C98.4 -45.9999999999999 189.6 -45.9999999999999 245.8 10.2C302.1 66.4 302.1 157.6 245.8 213.8000000000001zM211.9 44.1C174.5 6.7 113.6 6.7 76.1 44.1C38.7 81.5 38.7 142.4 76.1 179.9C113.5 217.3000000000001 174.4 217.3000000000001 211.9 179.9C249.3 142.5000000000001 249.3 81.5 211.9 44.1z" />
+    <glyph glyph-name="mars-stroke"
+      unicode="&#xF229;"
+      horiz-adv-x="384" d=" M372 384H309C298.3 384 293 371.1 300.5 363.5L315 349L291.6 325.6L277.5 339.7C272.8 344.4 265.2 344.4 260.5 339.7L243.5 322.7C238.8 318 238.8 310.4 243.5 305.7L257.6 291.6L227.4000000000001 261.4C203.9 278.1 175.1 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 175.1 278.1 203.9 261.4 227.4L291.6 257.6L305.7 243.5C310.4 238.8 318 238.8 322.7 243.5L339.7 260.5C344.4 265.2 344.4 272.8 339.7 277.5L325.6 291.6L349 315L363.5 300.5C371.1 292.9 384 298.3 384 309V372C384 378.6 378.6 384 372 384zM144 48C91.1 48 48 91.1 48 144S91.1 240 144 240S240 196.9 240 144S196.9 48 144 48z" />
+    <glyph glyph-name="mars"
+      unicode="&#xF222;"
+      horiz-adv-x="384" d=" M372 384H309C298.3 384 293 371.1 300.5 363.5L315 349L227.4 261.4C203.9 278.1 175.1 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 175.1 278.1 203.9 261.4 227.4L349 315L363.5 300.5C371.1 292.9 384 298.3 384 309V372C384 378.6 378.6 384 372 384zM144 48C91.1 48 48 91.1 48 144S91.1 240 144 240S240 196.9 240 144S196.9 48 144 48z" />
+    <glyph glyph-name="mask"
+      unicode="&#xF6FA;"
+      horiz-adv-x="640" d=" M320.67 384C-121.93 384 -36.9 0 162.21 0C202.11 0 239.68 20.69 263.63 55.86L289.36 93.65C297.19 105.15 308.93 110.9 320.67 110.9C332.4100000000001 110.9 344.1600000000001 105.15 351.98 93.65L377.7100000000001 55.86C401.6600000000001 20.69 439.23 0 479.13 0C668.99 0 769.76 384 320.67 384zM479.13 52.36C454.56 52.36 431.05 65.34 416.25 87.08L390.52 124.8700000000001C373.91 149.2600000000001 348.45 163.2500000000001 320.67 163.2500000000001C292.89 163.2500000000001 267.43 149.2600000000001 250.82 124.8700000000001L225.09 87.08C210.29 65.34 186.78 52.36 162.21 52.36C93.89 52.36 48 115.89 48 175.23C48 213.85 66.1 248.33 100.35 274.93C133.65 300.8 198.9 331.64 320.67 331.64C442.89 331.64 507.8199999999999 301.4700000000001 540.77 276.1600000000001C574.29 250.4100000000001 592 216.74 592 178.79C592 118.99 545.65 52.36 479.13 52.36zM192 261.82C152.89 261.82 127.47 236.16 115.73 220.77C110.75 214.24 110.75 204.67 115.73 198.14C127.46 182.74 152.89 157.09 192 157.09S256.53 182.75 268.27 198.14C273.25 204.67 273.25 214.23 268.27 220.77C256.53 236.16 231.11 261.82 192 261.82zM448 261.82C408.89 261.82 383.4700000000001 236.16 371.73 220.77C366.75 214.24 366.75 204.67 371.73 198.14C383.4600000000001 182.74 408.89 157.09 448 157.09S512.53 182.75 524.27 198.14C529.25 204.67 529.25 214.23 524.27 220.77C512.53 236.16 487.11 261.82 448 261.82z" />
+    <glyph glyph-name="medal"
+      unicode="&#xF5A2;"
+      horiz-adv-x="512" d=" M342.17 166.33L289.74 173.97L266.31 221.49C264.2 225.74 260.09 227.88 255.98 227.88C251.9 227.88 247.82 225.76 245.7 221.49L222.27 173.97L169.84 166.33C160.44 164.97 156.67 153.37 163.49 146.74L201.42 109.78L192.45 57.5600000000001C191.17 50.1000000000001 197.12 44.1200000000001 203.77 44.1200000000001C205.54 44.1200000000001 207.35 44.5400000000001 209.1 45.4700000000001L256 70.1200000000001L302.9 45.4700000000001C304.64 44.5500000000001 306.45 44.1400000000001 308.21 44.1400000000001C314.87 44.1400000000001 320.83 50.1000000000001 319.55 57.5700000000001L310.58 109.7900000000001L348.51 146.7500000000001C355.3399999999999 153.3800000000001 351.57 164.97 342.17 166.3300000000001zM495.97 448H338.12C326.88 448 316.46 442.1 310.68 432.46L256 341.33L201.32 432.46A31.997 31.997 0 0 1 173.88 448H16.03C3.08 448 -4.5 433.43 2.92 422.82L116.91 259.9700000000001C84.21 225.53 64 179.13 64 128C64 22.13 150.13 -64 256 -64S448 22.13 448 128C448 179.13 427.79 225.53 395.0900000000001 259.98L509.08 422.82C516.5 433.43 508.92 448 495.97 448zM77.49 400H164.82L215.46 315.6C193.35 310.82 172.73 302.15 154.16 290.4700000000001L77.49 400zM400 128C400 48.47 335.53 -16 256 -16S112 48.47 112 128S176.47 272 256 272S400 207.53 400 128zM357.8400000000001 290.4700000000001C339.2700000000001 302.15 318.6500000000001 310.83 296.54 315.6L347.18 400H434.51L357.84 290.4700000000001z" />
+    <glyph glyph-name="medkit"
+      unicode="&#xF0FA;"
+      horiz-adv-x="512" d=" M464 352H352V368C352 394.51 330.51 416 304 416H208C181.49 416 160 394.51 160 368V352H48C21.49 352 0 330.51 0 304V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V304C512 330.51 490.51 352 464 352zM208 368H304V352H208V368zM54 16A6 6 0 0 0 48 22V298A6 6 0 0 0 54 304H458A6 6 0 0 0 464 298V22A6 6 0 0 0 458 16H54zM352 176V144C352 137.373 346.627 132 340 132H284V76C284 69.373 278.627 64 272 64H240C233.373 64 228 69.373 228 76V132H172C165.373 132 160 137.373 160 144V176C160 182.627 165.373 188 172 188H228V244C228 250.627 233.373 256 240 256H272C278.627 256 284 250.627 284 244V188H340C346.627 188 352 182.627 352 176z" />
+    <glyph glyph-name="megaphone"
+      unicode="&#xF675;"
+      horiz-adv-x="576" d=" M560 416H544C535.16 416 528 408.8400000000001 528 400V387.06L47.28 275.5900000000001C45.61 282.64 39.56 288 32 288H16C7.16 288 0 280.8400000000001 0 272V112C0 103.16 7.16 96 16 96H32C39.56 96 45.61 101.36 47.28 108.41L162.29 81.74C161.12 75.96 160.01 70.14 160.01 64C160.01 10.98 202.99 -32 256.01 -32C300.2 -32 337 -2.01 348.09 38.66L528 -3.06V-16C528 -24.84 535.16 -32 544 -32H560C568.84 -32 576 -24.84 576 -16V400C576 408.8400000000001 568.84 416 560 416zM256 16C229.53 16 208 37.53 208 64C208 66.42 208.9 68.54 209.25 70.85L301.5 49.46C295.3 30.13 277.37 16 256 16zM48 157.5V226.5L528 337.81V46.2L48 157.5z" />
+    <glyph glyph-name="meh-blank"
+      unicode="&#xF5A4;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM168 272C150.3 272 136 257.7 136 240S150.3 208 168 208S200 222.3 200 240S185.7 272 168 272zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="meh-rolling-eyes"
+      unicode="&#xF5A5;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM336 296C296.2 296 264 263.8 264 224S296.2 152 336 152S408 184.2 408 224S375.8 296 336 296zM336 184C313.9 184 296 201.9 296 224C296 237.6 303.3 249.1 313.7 256.3C312.7 253.7 312 251 312 248C312 234.7 322.7 224 336 224S360 234.7 360 248C360 250.9 359.3 253.7 358.3 256.3C368.7 249.1 376 237.6 376 224C376 201.9 358.1 184 336 184zM232 224C232 263.8 199.8 296 160 296S88 263.8 88 224S120.2 152 160 152S232 184.2 232 224zM120 224C120 237.6 127.3 249.1 137.7 256.3C136.7 253.7 136 251 136 248C136 234.7 146.7 224 160 224S184 234.7 184 248C184 250.9 183.3 253.7 182.3 256.3C192.7 249.1 200 237.6 200 224C200 201.9 182.1 184 160 184S120 201.9 120 224zM312 96H184C170.8 96 160 85.2 160 72S170.8 48 184 48H312C325.2 48 336 58.8 336 72S325.2 96 312 96z" />
+    <glyph glyph-name="meh"
+      unicode="&#xF11A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM336 128H160C146.8 128 136 117.2 136 104S146.8 80 160 80H336C349.2 80 360 90.8 360 104S349.2 128 336 128z" />
+    <glyph glyph-name="memory"
+      unicode="&#xF538;"
+      horiz-adv-x="640" d=" M480 288H416V160H480V288zM352 288H288V160H352V288zM224 288H160V160H224V288zM632 288H640V352C640 369.67 625.67 384 608 384H32C14.33 384 0 369.67 0 352V288H8C21.26 288 32 277.26 32 264C32 250.75 21.26 240 8 240H0V0H640V240H632C618.75 240 608 250.75 608 264C608 277.26 618.75 288 632 288zM592 48H528C528 56.84 520.84 64 512 64S496 56.84 496 48H400C400 56.84 392.84 64 384 64S368 56.84 368 48H272C272 56.84 264.84 64 256 64S240 56.84 240 48H144C144 56.84 136.84 64 128 64S112 56.84 112 48H48V96H592V48zM592 323.84C572.71 310.91 560 288.91 560 264S572.71 217.09 592 204.16V128H48V204.16C67.29 217.09 80 239.09 80 264S67.29 310.91 48 323.8400000000001V336H592V323.8400000000001z" />
+    <glyph glyph-name="menorah"
+      unicode="&#xF676;"
+      horiz-adv-x="640" d=" M416 352C433.67 352 448 366.33 448 384S416 448 416 448S384 401.67 384 384S398.33 352 416 352zM320 352C337.67 352 352 366.33 352 384S320 448 320 448S288 401.67 288 384S302.33 352 320 352zM520 320H504C495.16 320 488 312.8400000000001 488 304V160H536V304C536 312.8400000000001 528.84 320 520 320zM512 352C529.67 352 544 366.33 544 384S512 448 512 448S480 401.67 480 384S494.33 352 512 352zM608 352C625.67 352 640 366.33 640 384S608 448 608 448S576 401.67 576 384S590.33 352 608 352zM424 320H408C399.1600000000001 320 392 312.8400000000001 392 304V160H440V304C440 312.8400000000001 432.84 320 424 320zM32 352C49.67 352 64 366.33 64 384S32 448 32 448S0 401.67 0 384S14.33 352 32 352zM136 320H120C111.16 320 104 312.8400000000001 104 304V160H152V304C152 312.8400000000001 144.84 320 136 320zM224 352C241.67 352 256 366.33 256 384S224 448 224 448S192 401.67 192 384S206.33 352 224 352zM624 320H608C599.16 320 592 312.8400000000001 592 304V168C592 145.91 574.09 128 552 128H344V304C344 312.8400000000001 336.84 320 328 320H312C303.1600000000001 320 296 312.8400000000001 296 304V128H88C65.91 128 48 145.91 48 168V304C48 312.8400000000001 40.84 320 32 320H16C7.16 320 0 312.8400000000001 0 304V168C0 119.4 39.4 80 88 80H296V-16H112C103.16 -16 96 -23.16 96 -32V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-32C544 -23.16 536.84 -16 528 -16H344V80H552C600.6 80 640 119.4 640 168V304C640 312.8400000000001 632.84 320 624 320zM128 352C145.67 352 160 366.33 160 384S128 448 128 448S96 401.67 96 384S110.33 352 128 352zM232 320H216C207.16 320 200 312.8400000000001 200 304V160H248V304C248 312.8400000000001 240.84 320 232 320z" />
+    <glyph glyph-name="mercury"
+      unicode="&#xF223;"
+      horiz-adv-x="288" d=" M288 240C288 290.3 262.2 334.6 223 360.4C226.2 362.6 229.2 365 232.2 367.6C253.3 385.7 266.3 409 269.7 434.4C270.7 441.6 265.1 448 257.8 448H233.5C227.8 448 222.8 444 221.7 438.3C216 407.6 183.3 384 144 384S72 407.6 66.2 438.3C65.2 444 60.2 448 54.5 448H30.1C22.8 448 17.2 441.6 18.2 434.4C21.7 409 34.7 385.6 55.8 367.6C58.8 365.1 61.8 362.7 65 360.4C25.8 334.6 0 290.3 0 240C0 168.4 52.2 109.1 120.6 97.9C120.2 96.7 120 95.5 120 94.2V40H76C69.4 40 64 34.6 64 28V4C64 -2.6 69.4 -8 76 -8H120V-52C120 -58.6 125.4 -64 132 -64H156C162.6 -64 168 -58.6 168 -52V-8H212C218.6 -8 224 -2.6 224 4V28C224 34.6 218.6 40 212 40H168V94.2C168 95.5 167.8 96.8 167.4 97.9C235.8 109.1 288 168.4 288 240zM144 144C91.1 144 48 187.1 48 240S91.1 336 144 336S240 292.9 240 240S196.9 144 144 144z" />
+    <glyph glyph-name="meteor"
+      unicode="&#xF753;"
+      horiz-adv-x="512" d=" M502.3 438.3C493.7 447 481 450.2 469.2 446.6C440.8 438.1 374.2 417.4 315.9 394.3C312.1 404.1 304.6 412 294.8 416C284.2 420.5 272.2 419.9 262 414.6C219.8 392.6 115.6999999999999 335.4 58.4999999999999 278.3C-19.7000000000001 200.1 -19.7000000000001 72.9 58.4999999999999 -5.3000000000001C96.4 -43.2 146.6999999999999 -64.0000000000001 200.3 -64.0000000000001S304.2 -43.2000000000001 342.1 -5.3000000000001C399.2 51.6999999999999 456.5 155.9999999999999 478.5 198.0999999999999C483.8 208.2999999999999 484.3 220.2999999999999 479.9 230.8999999999999C475.8 240.5999999999999 468 248.1999999999999 458.1 251.9999999999999C481.3 310.4999999999999 501.9 376.8999999999999 510.4 405.1999999999998C514.1 416.9999999999999 511 429.5999999999999 502.3 438.2999999999999zM419.3 213.6C423.3 212.4 427.1 211.3 430.7 210.3C406.8 165.5 356.7 77.1 308.2 28.7C279.4 -0.1 241.1 -15.9999999999999 200.4 -15.9999999999999C159.6 -15.9999999999999 121.4 -0.1 92.5 28.7C33.1 88.2000000000001 33.1 184.9 92.5 244.4000000000001C141.6 293.5 234.3 345.5 274.2 366.8000000000001C275.3 363.2000000000001 276.3999999999999 359.4000000000001 277.5999999999999 355.4000000000001L285.2 329.4000000000001L310.0999999999999 340.1C357.7 360.5 417.4999999999999 380.3000000000001 456.3999999999999 392.5000000000001C444.2 353.7000000000001 424.5 294.1 404 246.2L393.3 221.3L419.3 213.6zM199.9 248C138 248 87.9 197.9 87.9 136S138.1 24 199.9 24S311.9 74.1 311.9 136S261.8 248 199.9 248zM175.9 136C162.6 136 151.9 146.7 151.9 160S162.6 184 175.9 184S199.9 173.3 199.9 160S189.2 136 175.9 136zM215.9 72C207.1 72 199.9 79.2 199.9 88S207.1 104 215.9 104S231.9 96.8 231.9 88S224.8 72 215.9 72z" />
+    <glyph glyph-name="microchip"
+      unicode="&#xF2DB;"
+      horiz-adv-x="512" d=" M368.5 448H144C117.5 448 96 426.5 96 400V-16C96 -42.5 117.5 -64 144 -64H368.5C395 -64 416.5 -42.5 416.5 -16V400C416.5 426.5 395 448 368.5 448zM368.5 -9C368.5 -12.3 365.8 -16 362.5 -16H150C146.7 -16 144 -12.3 144 -9V394C144 397.3 146.7 400 150 400H362.5C365.8 400 368.5 397.3 368.5 394V-9zM512 342V330C512 326.7 509.3 324 506 324H488V318C488 314.7 485.3 312 482 312H440V360H482C485.3 360 488 357.3 488 354V348H506C509.3 348 512 345.3 512 342zM512 246V234C512 230.7 509.3 228 506 228H488V222C488 218.7 485.3 216 482 216H440V264H482C485.3 264 488 261.3 488 258V252H506C509.3 252 512 249.3 512 246zM512 150V138C512 134.7 509.3 132 506 132H488V126C488 122.7 485.3 120 482 120H440V168H482C485.3 168 488 165.3 488 162V156H506C509.3 156 512 153.3 512 150zM512 54V42C512 38.7 509.3 36 506 36H488V30C488 26.7 485.3 24 482 24H440V72H482C485.3 72 488 69.3 488 66V60H506C509.3 60 512 57.3 512 54zM30 72H72V24H30C26.7 24 24 26.7 24 30V36H6C2.7 36 0 38.7 0 42V54C0 57.3 2.7 60 6 60H24V66C24 69.3 26.7 72 30 72zM30 168H72V120H30C26.7 120 24 122.7 24 126V132H6C2.7 132 0 134.7 0 138V150C0 153.3 2.7 156 6 156H24V162C24 165.3 26.7 168 30 168zM30 264H72V216H30C26.7 216 24 218.7 24 222V228H6C2.7 228 0 230.7 0 234V246C0 249.3 2.7 252 6 252H24V258C24 261.3 26.7 264 30 264zM30 360H72V312H30C26.7 312 24 314.7 24 318V324H6C2.7 324 0 326.7 0 330V342C0 345.3 2.7 348 6 348H24V354C24 357.3 26.7 360 30 360z" />
+    <glyph glyph-name="microphone-alt-slash"
+      unicode="&#xF539;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM496 192V240C496 248.84 488.84 256 480 256H464C455.16 256 448 248.84 448 240V192C448 189.25 447.31 186.7 447.14 183.99L490.35 150.21C493.67 163.6800000000001 495.9999999999999 177.5200000000001 495.9999999999999 192zM400 -16H344V17.77C364.68 20.61 384.14 27.2 401.9 36.58L358.8 70.27C342.71 65.13 325.34 62.85 307.2099999999999 64.62C240.72 71.11 192 130.89 192 197.7V200.68L144 238.21V199.84C144 110.2 207.97 30.29 296 18.15V-16H240C231.16 -16 224 -23.16 224 -32V-48C224 -56.84 231.16 -64 240 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16zM272 352C272 378.4700000000001 293.53 400 320 400S368 378.4700000000001 368 352H328C323.58 352 320 348.42 320 344V328C320 323.58 323.58 320 328 320H368V288H328C324.58 288 322.21 285.5800000000001 321.06 282.56L355.03 256H368V245.86L416 208.33V352C416 405.02 373.02 448 320 448C269.03 448 227.74 408.15 224.6 357.9700000000001L272 320.91V352z" />
+    <glyph glyph-name="microphone-alt"
+      unicode="&#xF3C9;"
+      horiz-adv-x="352" d=" M336 256H320C311.1600000000001 256 304 248.84 304 240V192C304 117.2 239.51 57.18 163.21 64.62C96.71 71.11 48 130.89 48 197.7V240C48 248.84 40.84 256 32 256H16C7.16 256 0 248.84 0 240V199.84C0 110.2 63.97 30.29 152 18.15V-16H96C87.16 -16 80 -23.16 80 -32V-48C80 -56.84 87.16 -64 96 -64H256C264.84 -64 272 -56.84 272 -48V-32C272 -23.16 264.84 -16 256 -16H200V17.77C285.71 29.53 352 103.1 352 192V240C352 248.84 344.84 256 336 256zM176 96C229.02 96 272 138.98 272 192V352C272 405.02 229.02 448 176 448S80 405.02 80 352V192C80 138.98 122.98 96 176 96zM128 352C128 378.4700000000001 149.53 400 176 400S224 378.4700000000001 224 352H184C179.58 352 176 348.42 176 344V328C176 323.58 179.58 320 184 320H224V288H184C179.58 288 176 284.42 176 280V264C176 259.5800000000001 179.58 256 184 256H224V224H184C179.58 224 176 220.42 176 216V200C176 195.58 179.58 192 184 192H224C224 165.53 202.47 144 176 144S128 165.53 128 192V352z" />
+    <glyph glyph-name="microphone-slash"
+      unicode="&#xF131;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM496 192V240C496 248.84 488.84 256 480 256H464C455.16 256 448 248.84 448 240V192C448 189.25 447.31 186.69 447.14 183.99L490.35 150.21C493.67 163.6800000000001 495.9999999999999 177.5200000000001 495.9999999999999 192zM400 -16H344V17.77C364.68 20.61 384.14 27.2 401.9 36.58L358.8 70.27C342.71 65.13 325.34 62.85 307.2099999999999 64.62C240.72 71.11 192 130.89 192 197.7V200.68L144 238.21V199.84C144 110.2 207.97 30.29 296 18.15V-16H240C231.16 -16 224 -23.16 224 -32V-48C224 -56.84 231.16 -64 240 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16zM272 352C272 378.4700000000001 293.53 400 320 400S368 378.4700000000001 368 352V245.86L416 208.33V352C416 405.02 373.02 448 320 448C269.03 448 227.74 408.15 224.6 357.9700000000001L272 320.92V352z" />
+    <glyph glyph-name="microphone"
+      unicode="&#xF130;"
+      horiz-adv-x="352" d=" M336 256H320C311.1600000000001 256 304 248.84 304 240V192C304 117.2 239.51 57.18 163.21 64.62C96.71 71.11 48 130.89 48 197.7V240C48 248.84 40.84 256 32 256H16C7.16 256 0 248.84 0 240V199.84C0 110.2 63.97 30.29 152 18.15V-16H96C87.16 -16 80 -23.16 80 -32V-48C80 -56.84 87.16 -64 96 -64H256C264.84 -64 272 -56.84 272 -48V-32C272 -23.16 264.84 -16 256 -16H200V17.77C285.71 29.53 352 103.1 352 192V240C352 248.84 344.84 256 336 256zM176 96C229.02 96 272 138.98 272 192V352C272 405.02 229.02 448 176 448S80 405.02 80 352V192C80 138.98 122.98 96 176 96zM128 352C128 378.4700000000001 149.53 400 176 400S224 378.4700000000001 224 352V192C224 165.53 202.47 144 176 144S128 165.53 128 192V352z" />
+    <glyph glyph-name="microscope"
+      unicode="&#xF610;"
+      horiz-adv-x="512" d=" M476 -16H435.5C472.56 17.68 496 66.1 496 120C496 218.75 417.74 299.36 320 303.6V350.86C320 369.25 309.84 385.31 294.84 393.74V411.42C294.84 431.5900000000001 278.44 448 258.28 448H157.72C137.56 448 121.16 431.59 121.16 411.42V393.73C106.16 385.31 96 369.25 96 350.86V153.14C96 131.12 110.56 112.44 130.56 106.2V68.58C130.56 48.41 146.97 32 167.15 32H248.84C269.0300000000001 32 285.43 48.41 285.43 68.58V106.2C305.43 112.43 319.99 131.12 319.99 153.14V255.19C391.2 250.96 447.99 192.24 447.99 120C447.99 45.02 386.99 -16 311.99 -16H36C16.12 -16 0 -32.12 0 -52C0 -58.63 5.37 -64 12 -64H500C506.63 -64 512 -58.63 512 -52C512 -32.12 495.88 -16 476 -16zM178.56 80V120H237.44V80H178.56zM270.8400000000001 152H145.16L144 153.14L145.16 352H169.16V400H246.85L248 352H272L270.84 152z" />
+    <glyph glyph-name="mind-share"
+      unicode="&#xF677;"
+      horiz-adv-x="640" d=" M634.99 108.21L538.99 203.4C528.88 213.42 512 206.01 512 191.19V144H432.08C426.46 144.01 420.85 144.08 415.06 143.23C368 136.3300000000001 329.45 98.69 321.61 51.77C313.82 5.1 334.93 -37.77 369.9000000000001 -61.0799999999999C379.68 -67.5999999999999 391.49 -57.8299999999999 387.7200000000001 -46.6999999999999C378.73 -20.1299999999999 382.1500000000001 48.0000000000001 448 48.0000000000001H512V0.8100000000001C512 -13.9999999999999 528.87 -21.4399999999999 538.99 -11.3999999999999L634.99 83.7900000000001C641.67 90.4200000000001 641.67 101.5900000000001 634.99 108.2100000000001zM290.05 57.04C291.38 65.02 293.49 72.7499999999999 296.13 80.2499999999999V242.55C307.1 233.57 320.24 227.1 334.7 224.16C339.7 223.14 344.4 226.98 344.4 232.05V248.23C344.4 251.8 342.04 255.01 338.56 255.89C314.23 262.05 296.13 283.8399999999999 296.13 309.93V366C296.13 384.75 311.46 400 330.32 400C345.84 400 359.39 389.4700000000001 363.25 374.39L368.09 355.44L390.97 356.64C407.5 356.5 422.83 341.25 422.83 322.5C422.83 318.11 422.39 317.2100000000001 417.36 295.31L436.28 287.5800000000001C450.01 281.98 478.97 257.35 461.42 221.64L451.52 201.5L471.06 190.31C474.52 188.33 477.28 185.86 479.99 183.37V191.19C479.99 213.16 494.47 231.57 514.1800000000001 237.67C514.2800000000001 239.38 514.83 241.04 514.83 242.75C514.83 275.75 498.14 305.75 471.09 323.36C470.68 363.0900000000001 441.68 396.16 403.6300000000001 403.14C389.87 430.23 361.78 448 330.32 448C307.56 448 286.93 438.78 272 423.9C257.07 438.78 236.44 448 213.68 448C182.23 448 154.13 430.23 140.37 403.14C102.32 396.16 73.31 363.0900000000001 72.91 323.36C45.85 305.75 29.17 275.75 29.17 242.75C29.17 235.02 30.14 227.33 32.09 219.78C11.94 201.67 0 175.8 0 148.5C0 115.52 16.72 85.47 43.74 67.86C44.21 20.36 82.2 -18.39 129.59 -20.42C145.52 -47.08 174.46 -63.9999999999999 206.39 -63.9999999999999C232.36 -63.9999999999999 255.6 -52.8 272 -35.2099999999999C285.42 -49.5999999999999 303.53 -59.3299999999999 323.86 -62.5299999999999C295.8400000000001 -30.3399999999999 282.76 13.3700000000001 290.05 57.0400000000001zM247.87 309.93C247.87 283.8399999999999 229.78 262.05 205.44 255.89C201.96 255.01 199.6 251.8 199.6 248.23V232.05C199.6 226.98 204.3 223.14 209.3 224.16C223.76 227.1 236.89 233.57 247.87 242.55V25.2499999999999C247.87 2.4999999999999 229.27 -16.0000000000001 206.39 -16.0000000000001C173.46 -16.0000000000001 166.92 13.4499999999999 160.76 31.62L140.49 28.2599999999999C116.48 24.31 92 43.59 92 68.74C92 71.52 96.65 96.16 96.65 96.16L78.4 103.7C41.49 118.91 37.13 169.83 72.93 190.31L92.47 201.5L82.57 221.64C65.02 257.34 93.98 281.97 107.71 287.58L126.63 295.31C121.6 317.21 121.16 318.11 121.16 322.5C121.16 341.25 136.49 356.5 153.02 356.64L175.9 355.44L180.74 374.39C184.61 389.4700000000001 198.15 400 213.68 400C232.54 400 247.87 384.75 247.87 366V309.93z" />
+    <glyph glyph-name="minus-circle"
+      unicode="&#xF056;"
+      horiz-adv-x="512" d=" M140 164C133.4 164 128 169.4 128 176V208C128 214.6 133.4 220 140 220H372C378.6 220 384 214.6 384 208V176C384 169.4 378.6 164 372 164H140zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM456 192C456 302.5 366.5 392 256 392S56 302.5 56 192S145.5 -8 256 -8S456 81.5 456 192z" />
+    <glyph glyph-name="minus-hexagon"
+      unicode="&#xF307;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM400 0H176L64 192L176 384H400L512 192L400 0zM172 164C165.4 164 160 169.4 160 176V208C160 214.6 165.4 220 172 220H404C410.6 220 416 214.6 416 208V176C416 169.4 410.6 164 404 164H172z" />
+    <glyph glyph-name="minus-octagon"
+      unicode="&#xF308;"
+      horiz-adv-x="512" d=" M497.9 297.5L361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512 276.3 506.9 288.5 497.9 297.5zM464 120.5L327.5 -16H184.5L48 120.5V263.5L184.5 400H327.6L464 263.5V120.5zM140 164C133.4 164 128 169.4 128 176V208C128 214.6 133.4 220 140 220H372C378.6 220 384 214.6 384 208V176C384 169.4 378.6 164 372 164H140z" />
+    <glyph glyph-name="minus-square"
+      unicode="&#xF146;"
+      horiz-adv-x="448" d=" M108 164C101.4 164 96 169.4 96 176V208C96 214.6 101.4 220 108 220H340C346.6 220 352 214.6 352 208V176C352 169.4 346.6 164 340 164H108zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="minus"
+      unicode="&#xF068;"
+      horiz-adv-x="384" d=" M368 224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H368C376.84 160 384 167.16 384 176V208C384 216.84 376.84 224 368 224z" />
+    <glyph glyph-name="mistletoe"
+      unicode="&#xF7B4;"
+      horiz-adv-x="576" d=" M542.1 234.6C516.1 260.6 452.5 273.2 411.2000000000001 278.8L312 377.9V432C312 440.8 304.8 448 296 448H280C271.2 448 264 440.8 264 432V377.9L164.9 278.8C123.6 273.2 60 260.6 34 234.6C-6 194.6 -11.4 135.2 21.9 101.9C36.5 87.2 56.3 80 77.2 80C103.8 80 132.2 91.5 154.6 113.9C169.5 128.8 179.9 155.9 187.2 184.1C192.8 179.2 199.9 176 208 176C225.7 176 240.0000000000001 190.3 240.0000000000001 208S225.7 240 208 240C204.4 240 201.1 239 197.8000000000001 237.9C198.2000000000001 240.3 198.5 242.5 198.8000000000001 244.8L264 310V165.7C235.6 132.9 192 76.5 192 38.4C192 -18.2 235 -64 288 -64S384 -18.2 384 38.4C384 76.5 340.4 133 312 165.7V310.1L377.2 244.9C382.8 203.6 395.4 140 421.4 114C443.8 91.6 472.2 80.1 498.8 80.1C519.6999999999999 80.1 539.5 87.3 554.1999999999999 101.9C587.4999999999999 135.2000000000001 582.0999999999999 194.6 542.0999999999999 234.6zM120.7000000000001 147.9C108.2 135.4 92 128 77.2 128C71 128 62.2 129.4 55.8 135.8C41.7 149.9 47.4 180.2 67.9 200.7C78.3 211.1 111.3 221 147.7 227.6C141 191.3 131.1 158.3 120.7 147.9zM336 38.4C336 8.4 314.5 -16 288 -16S240 8.4 240 38.4C240 52.2 260.4 85.9 288 119.9C315.3 86 336 52 336 38.4zM520.2 135.8C513.8000000000001 129.4 505.0000000000001 128 498.8000000000001 128C484.0000000000001 128 467.8000000000001 135.3999999999999 455.4000000000001 147.8999999999999C445.0000000000001 158.2999999999999 435.1000000000001 191.2999999999999 428.5000000000001 227.5999999999999C464.8000000000001 220.9999999999999 497.9000000000001 210.9999999999999 508.2000000000001 200.6999999999999C528.6000000000001 180.1999999999999 534.3000000000001 149.8999999999999 520.2 135.7999999999999zM384 384C401.7 384 416 398.3 416 416S401.7 448 384 448S352 433.7 352 416S366.3 384 384 384z" />
+    <glyph glyph-name="mitten"
+      unicode="&#xF7B5;"
+      horiz-adv-x="448" d=" M416.8 263.3C401.2 276.3 381.5 283.4 361.2 283.4C346.4 283.4 332.1 279.7000000000001 319.5 272.8L306.9 327.5C290.5 398.4 228.3 448 155.5 448C143.8 448 132 446.6 120.4 444C37 424.7 -15.3 341.1 4 257.6L54.6 64H104.2L50.8 268.4C37.5 326.1 73.6 383.9 131.3 397.2C139.3 399 147.4 400 155.5 400C205.8 400 248.8 365.7 260.1 316.7L292.8 175.2L331.3 221.4C338.7 230.3 349.6 235.4 361.2 235.4C370.2 235.4 379.1 232.2 386 226.4C402.5 212.7 404.7 188.1 391 171.7L301.3 64H363.8L427.9 140.9C458.6 177.7 453.6 232.6 416.8 263.3zM368.1 32H48C39.2 32 32 24.8 32 16V-48C32 -56.8 39.2 -64 48 -64H368C376.8 -64 384 -56.8 384 -48V16C384.1 24.8 376.9 32 368.1 32z" />
+    <glyph glyph-name="mobile-alt"
+      unicode="&#xF3CD;"
+      horiz-adv-x="320" d=" M192 32C192 14.3 177.7 0 160 0S128 14.3 128 32S142.3 64 160 64S192 49.7 192 32zM240 92V356C240 362.6 234.6 368 228 368H92C85.4 368 80 362.6 80 356V92C80 85.4 85.4 80 92 80H228C234.6 80 240 85.4 240 92zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM272 -10V394C272 397.3 269.3 400 266 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H266C269.3 -16 272 -13.3 272 -10z" />
+    <glyph glyph-name="mobile-android-alt"
+      unicode="&#xF3CF;"
+      horiz-adv-x="320" d=" M228 80H92C85.4 80 80 85.4 80 92V356C80 362.6 85.4 368 92 368H228C234.6 368 240 362.6 240 356V92C240 85.4 234.6 80 228 80zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM272 -10V394C272 397.3 269.3 400 266 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H266C269.3 -16 272 -13.3 272 -10zM208 28V36C208 42.6 202.6 48 196 48H124C117.4 48 112 42.6 112 36V28C112 21.4 117.4 16 124 16H196C202.6 16 208 21.4 208 28z" />
+    <glyph glyph-name="mobile-android"
+      unicode="&#xF3CE;"
+      horiz-adv-x="320" d=" M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM266 -16H54C50.7 -16 48 -13.3 48 -10V394C48 397.3 50.7 400 54 400H266C269.3 400 272 397.3 272 394V-10C272 -13.3 269.3 -16 266 -16zM196 16H124C117.4 16 112 21.4 112 28V36C112 42.6 117.4 48 124 48H196C202.6 48 208 42.6 208 36V28C208 21.4 202.6 16 196 16z" />
+    <glyph glyph-name="mobile"
+      unicode="&#xF10B;"
+      horiz-adv-x="320" d=" M192 32C192 14.3 177.7 0 160 0S128 14.3 128 32S142.3 64 160 64S192 49.7 192 32zM320 400V-16C320 -42.5 298.5 -64 272 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H272C298.5 448 320 426.5 320 400zM272 -10V394C272 397.3 269.3 400 266 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H266C269.3 -16 272 -13.3 272 -10z" />
+    <glyph glyph-name="money-bill-alt"
+      unicode="&#xF3D1;"
+      horiz-adv-x="640" d=" M320 304C266.98 304 224 253.86 224 192C224 130.15 266.98 80 320 80C373 80 416 130.13 416 192C416 253.86 373.02 304 320 304zM360 136C360 131.58 356.42 128 352 128H288C283.58 128 280 131.58 280 136V152C280 156.42 283.58 160 288 160H304V215.44L303.53 215.13A7.991999999999999 7.991999999999999 0 0 0 292.44 217.35L283.56 230.66A7.991999999999999 7.991999999999999 0 0 0 285.7800000000001 241.75L301.11 251.97A23.99 23.99 0 0 0 314.42 256H328C332.42 256 336 252.42 336 248V160H352C356.42 160 360 156.42 360 152V136zM608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM592 112C556.65 112 528 83.35 528 48H112C112 83.35 83.35 112 48 112V272C83.35 272 112 300.65 112 336H528C528 300.65 556.65 272 592 272V112z" />
+    <glyph glyph-name="money-bill-wave-alt"
+      unicode="&#xF53B;"
+      horiz-adv-x="640" d=" M320 287.45C275.82 287.45 240 244.29 240 191.04C240 137.8 275.81 94.63 320 94.63C364.17 94.63 400 137.78 400 191.04C400 244.29 364.18 287.45 320 287.45zM621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C104.36 353.66 73.49 357.58 42.6 367.38C39.13 368.48 35.65 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5900000000001 30.35 504.76 30.35C535.65 30.35 566.52 26.43 597.41 16.63C600.88 15.53 604.36 15.01 607.76 15.01C624.97 15.01 640.01 28.33 640.01 46.82V364.07C640 376.71 632.77 388.67 621.16 393.54zM592 68.02C564.3 74.95 535.56 78.34 504.75 78.34C437.19 78.34 371.62 61.75 308.2200000000001 45.7C247.86 30.43 190.85 16 135.25 16C103.63 16 74.97 20.78 48 30.58V315.98C75.7 309.05 104.44 305.66 135.25 305.66C202.81 305.66 268.37 322.25 331.7700000000001 338.3C392.13 353.57 449.14 368 504.75 368C536.38 368 565.04 363.2200000000001 592 353.42V68.02z" />
+    <glyph glyph-name="money-bill-wave"
+      unicode="&#xF53A;"
+      horiz-adv-x="640" d=" M320 287.45C275.82 287.45 240 244.29 240 191.04C240 137.8 275.81 94.63 320 94.63C364.17 94.63 400 137.78 400 191.04C400 244.29 364.18 287.45 320 287.45zM621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C104.36 353.66 73.49 357.58 42.6 367.38C39.13 368.48 35.65 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5900000000001 30.35 504.76 30.35C535.65 30.35 566.52 26.43 597.41 16.63C600.88 15.53 604.36 15.01 607.76 15.01C624.97 15.01 640.01 28.33 640.01 46.82V364.07C640 376.71 632.77 388.67 621.16 393.54zM592 125.95C565.11 122.55 543.42 102.64 537.62 76.47C526.82 77.39 516.0600000000001 78.35 504.75 78.35C437.19 78.35 371.62 61.76 308.2200000000001 45.71C247.86 30.43 190.85 16 135.25 16C127.23 16 119.4 16.32 111.74 16.94C110.32 51.17 82.45 78.55 48.01 78.55V255.31C79.08 255.31 104.94 277.56 110.75 307.06C118.89 306.55 126.83 305.66 135.26 305.66C202.82 305.66 268.38 322.25 331.78 338.3C392.13 353.57 449.14 368 504.75 368C515.59 368 525.97 367.2200000000001 536.17 366.0900000000001C537.02 334.13 561.04 308.25 592 304.3300000000001V125.9500000000001z" />
+    <glyph glyph-name="money-bill"
+      unicode="&#xF0D6;"
+      horiz-adv-x="640" d=" M608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM592 112C556.65 112 528 83.35 528 48H112C112 83.35 83.35 112 48 112V272C83.35 272 112 300.65 112 336H528C528 300.65 556.65 272 592 272V112zM320 288C275.82 288 240 245.02 240 192C240 138.99 275.81 96 320 96C364.17 96 400 138.97 400 192C400 245.02 364.18 288 320 288z" />
+    <glyph glyph-name="money-check-alt"
+      unicode="&#xF53D;"
+      horiz-adv-x="640" d=" M608 416H32C14.33 416 0 401.67 0 384V0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V384C640 401.67 625.67 416 608 416zM592 16H48V368H592V16zM296 128H376C380.42 128 384 131.58 384 136V168C384 172.42 380.42 176 376 176H296C291.58 176 288 172.42 288 168V136C288 131.58 291.58 128 296 128zM536 176H456C451.58 176 448 172.42 448 168V136C448 131.58 451.58 128 456 128H536C540.42 128 544 131.58 544 136V168C544 172.42 540.42 176 536 176zM296 208H536C540.42 208 544 211.58 544 216V248C544 252.42 540.42 256 536 256H296C291.58 256 288 252.42 288 248V216C288 211.58 291.58 208 296 208zM134.72 190.28L176.91 178.84C181.1 177.7 184 174.29 184 170.54C184 165.74 179.5 161.84 173.94 161.84H147.6C143.45 161.84 139.37 162.88 135.83 164.79C132.75 166.46 128.99 166.16 126.59 163.61L114.52 150.88C111.41 147.6 111.92 142.24 115.65 139.69C123.95 134.04 133.71 130.81 144 130.17V120C144 115.58 147.58 112 152 112H168C172.42 112 176 115.58 176 120V130.25C198.18 131.35 216 148.82 216 170.55C216 188.72 203.38 204.83 185.28 209.72L143.09 221.16C138.9 222.3 136 225.7100000000001 136 229.4600000000001C136 234.2600000000001 140.5 238.1600000000001 146.06 238.1600000000001H172.4C176.55 238.1600000000001 180.63 237.1200000000001 184.17 235.2100000000001C187.25 233.5500000000001 191.01 233.8400000000001 193.41 236.3900000000001L205.48 249.1200000000001C208.59 252.4000000000001 208.08 257.7600000000001 204.35 260.3100000000001C196.05 265.9600000000001 186.29 269.1900000000001 176 269.8300000000001V280C176 284.42 172.42 288 168 288H152C147.58 288 144 284.42 144 280V269.75C121.82 268.65 104 251.18 104 229.45C104 211.28 116.62 195.17 134.72 190.28z" />
+    <glyph glyph-name="money-check"
+      unicode="&#xF53C;"
+      horiz-adv-x="640" d=" M624 416H16C7.16 416 0 408.8400000000001 0 400V0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V400C640 408.8400000000001 632.84 416 624 416zM592 16H48V272H592V16zM592 320H48V368H592V320zM104 64H248C252.42 64 256 67.58 256 72V104C256 108.42 252.42 112 248 112H104C99.58 112 96 108.42 96 104V72C96 67.58 99.58 64 104 64zM456 64H536C540.42 64 544 67.58 544 72V104C544 108.42 540.42 112 536 112H456C451.58 112 448 108.42 448 104V72C448 67.58 451.58 64 456 64zM104 160H376C380.42 160 384 163.58 384 168V200C384 204.42 380.42 208 376 208H104C99.58 208 96 204.42 96 200V168C96 163.58 99.58 160 104 160zM464 160H528C536.84 160 544 167.16 544 176V208C544 216.84 536.84 224 528 224H464C455.16 224 448 216.84 448 208V176C448 167.16 455.16 160 464 160z" />
+    <glyph glyph-name="monitor-heart-rate"
+      unicode="&#xF611;"
+      horiz-adv-x="576" d=" M544 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H544C561.67 -64 576 -49.67 576 -32V416C576 433.67 561.67 448 544 448zM528 -16H48V160H206.69L233.22 80.41A24.044 24.044 0 0 1 255.69 64H256C266.09 64 275.09 70.3 278.56 79.8L321.06 196.71L329.73 175.08A23.993 23.993 0 0 1 352 160.01H464C472.84 160.01 480 167.17 480 176.01V192.01C480 200.85 472.84 208.01 464 208.01H368.25L342.28 272.92C338.59 282.15 328.87 288.34 319.62 288.01C309.6499999999999 287.85 300.8399999999999 281.57 297.43 272.21L257 160.94L246.78 191.6C243.51 201.4 234.34 208.01 224.02 208.01H48V400H528V-16z" />
+    <glyph glyph-name="monkey"
+      unicode="&#xF6FB;"
+      horiz-adv-x="640" d=" M640 328C640 367.77 607.76 400 568 400H555.73C535.49 428.96 502.02 448 464 448S392.51 428.96 372.27 400H360C320.24 400 288 367.77 288 328C288 289.23 318.7200000000001 257.8400000000001 357.11 256.29C357.89 253.6600000000001 358.5800000000001 251.0000000000001 359.54 248.45C263.21 223.42 192 136.17 192 32V-16H184C161.94 -16 144 1.94 144 24V280C144 319.7 111.69 352 72 352S0 319.7 0 280V216C0 202.75 10.75 192 24 192S48 202.75 48 216V280C48 293.23 58.78 304 72 304S96 293.23 96 280V24C96 -24.53 135.47 -64 184 -64H432C440.84 -64 448 -56.84 448 -48C448 -30.33 433.67 -16 416 -16H384L467.4 46.55L480 -3.36V-32C480 -49.67 494.33 -64 512 -64H576C593.67 -64 608 -49.67 608 -32V-15.76C608 -5.29 606.72 5.13 604.18 15.29L552.8699999999999 220.53C560.9499999999999 231.1500000000001 566.9999999999999 243.1900000000001 570.8899999999999 256.29C609.28 257.8400000000001 640 289.23 640 328zM592 328C592 317.6 585.27 308.95 576 305.62V336C576 341.03 575.16 345.83 574.52 350.68C584.52 347.79 592 338.92 592 328zM352 336V305.62C342.73 308.9500000000001 336 317.6 336 328C336 338.92 343.48 347.79 353.48 350.68C352.8400000000001 345.8300000000001 352 341.03 352 336zM400 336C400 371.29 428.71 400 464 400S528 371.29 528 336V288C528 252.71 499.29 224 464 224S400 252.71 400 288V336zM557.61 3.64A79.834 79.834 0 0 0 560 -15.76V-16H528V2.6L526.54 8.38L496.3 128.23L304 -16H240V32C240 119.74 304.62 192.41 388.7100000000001 205.58C408.63 187.38 434.89 176 464 176C481.15 176 497.22 180.17 511.76 187.06L557.61 3.64zM496 312C504.84 312 512 319.16 512 328S504.84 344 496 344S480 336.8400000000001 480 328S487.16 312 496 312zM432 312C440.84 312 448 319.16 448 328S440.84 344 432 344S416 336.8400000000001 416 328S423.1600000000001 312 432 312z" />
+    <glyph glyph-name="monument"
+      unicode="&#xF5A6;"
+      horiz-adv-x="384" d=" M368 -16H334.02L289.13 347.26A31.97 31.97 0 0 1 279.92 366.7L203.31 443.31A15.904999999999998 15.904999999999998 0 0 1 192 448C187.91 448 183.81 446.44 180.69 443.31L104.08 366.7A31.97 31.97 0 0 1 94.87 347.26L49.98 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H368C376.84 -64 384 -56.84 384 -48V-32C384 -23.16 376.84 -16 368 -16zM98.34 -16L141.9 336.65L192 386.75L242.08 336.67L285.6600000000001 -16H98.34zM227.2 176H156.8C150.4 176 144 169.6 144 163.2V140.8C144 134.4 150.4 128 156.8 128H227.2C233.6 128 240 134.4 240 140.8V163.2C240 169.6 233.6 176 227.2 176z" />
+    <glyph glyph-name="moon-cloud"
+      unicode="&#xF754;"
+      horiz-adv-x="640" d=" M283.6 271.9C259.7 301.7 223.2 320 184 320C143.6 320 106.3 301 82.4 269.7C35.4 259.8 0 217.9 0 168C0 110.7 46.7 64 104 64H280C337.3 64 384 110.7 384 168C384 224.1 339.3 270 283.6 271.9zM280 112H104C73.1 112 48 137.1 48 168S73.1 224 104 224H110.8C123.2 252.2 151.3 272 184 272C218.4 272 247.4 250.2 258.8 219.8C265.4000000000001 222.5 272.5 224 280 224C310.9 224 336 198.9 336 168S310.9 112 280 112zM637.6 96.8C633.5 105.4 625.2 110.7 615.8000000000001 110.7C610.3000000000001 110.7 603.9000000000001 108.1 588.0000000000001 108.1C521.0000000000001 108.1 466.5000000000001 162.8 466.5000000000001 230C466.5000000000001 273.7 490.1000000000001 314.3 528.1000000000001 336C537.0000000000001 341.1 541.7000000000002 351 540.0000000000001 361.1C538.3000000000001 371.3 530.6000000000001 379 520.5000000000001 380.9C509.0000000000001 383 497.2000000000001 384.1 485.5000000000001 384.1C418.2000000000001 384.1 359.5000000000001 348.9 325.4000000000001 296.2C340.8000000000001 290.8 354.9000000000001 282.7 367.1000000000001 272.5C386.9000000000001 302.1 417.1000000000001 324 452.8000000000001 332.4C430.9000000000001 303.3 418.4000000000001 267.5 418.4000000000001 230C418.4000000000001 148.9 475.4000000000001 80.9 551.3000000000001 64.1C531.2 53.7 508.7 48.1 485.4000000000001 48.1C447.7000000000001 48.1 413.7000000000001 62.9 388.2000000000001 86.8C378.5000000000001 73.9999999999999 366.9000000000001 62.8 353.4000000000001 53.9999999999999C387.7000000000001 20.8 434.0000000000001 0.1 485.4000000000001 0.1C543.5000000000001 0.1 597.8000000000001 25.9999999999999 634.4000000000001 71.1999999999999C640.5000000000001 78.3999999999999 641.7 88.3 637.6000000000001 96.8z" />
+    <glyph glyph-name="moon-stars"
+      unicode="&#xF755;"
+      horiz-adv-x="512" d=" M405.8 74.2C404.4000000000001 74.2 403 73.9 401.5 73.3C378.3 62.8 354.2 57.9 330.7 57.9C254.8 57.9 184.1 108.7000000000001 164.7 187.2000000000001C150.1 246.4000000000001 168.7 308.6 213.4 350.5000000000001C220.1 356.8000000000001 215.5 368.0000000000001 206.4 368.0000000000001H205.8C192.5 367.2000000000001 179.2 365.3000000000001 166.3 362.2000000000001C49.4 333.9 -22.3 217 6.3 101C30.6 2.3 119.7 -64 217.9 -64C235 -64 252.4 -62 269.7 -57.8C335 -42 387.4 1.9 415 59.7C418.4 66.8 412.7 74.2 405.8 74.2zM258.4 -11.1C245.1 -14.3 231.4 -16 217.9 -16C139.4 -16 71.5 36.8 52.9 112.5C42.2 155.8 49.1 200.7 72.3 238.9C85 259.8 101.7 277.3 121.4 290.7C110.1 253.9 108.6 214.2 118.1 175.7C140.5 84.7 217.9 19.4 310.2 10.9C294.5 0.8 277.1 -6.6 258.4 -11.1zM458.7 266.7L432 320L405.3 266.7L352 240L405.3 213.3L432 160L458.7 213.3L512 240L458.7 266.7zM304 352L320 384L352 400L320 416L304 448L288 416L256 400L288 384L304 352z" />
+    <glyph glyph-name="moon"
+      unicode="&#xF186;"
+      horiz-adv-x="512" d=" M279.135 -64C357.891 -64 430.117 -28.196 477.979 30.775C506.249 65.606 475.421 116.497 431.73 108.176C349.382 92.493 273.458 155.444 273.458 238.968C273.458 287.392 299.518 331.26 340.892 354.804C379.637 376.854 369.891 435.592 325.87 443.723A257.936 257.936 0 0 1 279.135 448C137.775 448 23.135 333.425 23.135 192C23.135 50.64 137.711 -64 279.135 -64zM279.135 400C292.12 400 304.824 398.799 317.151 396.522C262.391 365.359 225.4580000000001 306.48 225.4580000000001 238.968C225.4580000000001 125.12 329.0990000000001 39.768 440.7100000000001 61.024C402.574 14.036 344.366 -16 279.135 -16C164.26 -16 71.135 77.125 71.135 192S164.26 400 279.135 400z" />
+    <glyph glyph-name="mortar-pestle"
+      unicode="&#xF5A7;"
+      horiz-adv-x="512" d=" M496 256H395.68L496.31 356.64C522.14 382.4700000000001 515.08 426.01 482.4 442.35A53.501 53.501 0 0 1 426.36 437.29L184.63 256H16C7.16 256 0 248.84 0 240V224C0 215.16 7.16 208 16 208H32V192C32 110.58 82.76 41.17 154.29 13.25C141.53 -3.53 132.59 -23.38 129.37 -45.19C127.92 -55.02 135.35 -64 145.29 -64H366.71C376.65 -64 384.08 -55.03 382.63 -45.19C379.42 -23.38 370.48 -3.52 357.71 13.25C429.24 41.17 480 110.58 480 192V208H496C504.84 208 512 215.16 512 224V240C512 248.84 504.84 256 496 256zM455.16 398.89A5.54 5.54 0 0 0 458.48 400C459.34 400 460.17 399.8 460.94 399.42C461.56 399.11 463.47 398.1600000000001 463.92 395.37C464.37 392.58 462.87 391.08 462.37 390.58L327.79 256H264.63L455.16 398.89zM432 192C432 132.33 395.99 79.72 340.26 57.96L280.99 34.83L319.51 -15.8099999999999C319.56 -15.8699999999999 319.61 -15.9399999999999 319.65 -15.9999999999999H192.35C192.4 -15.9399999999999 192.45 -15.8699999999999 192.49 -15.8099999999999L231.01 34.83L171.74 57.96C116.01 79.72 80 132.33 80 192V208H432V192z" />
+    <glyph glyph-name="mosque"
+      unicode="&#xF678;"
+      horiz-adv-x="640" d=" M288 64C270.33 64 256 49.67 256 32V-48C256 -56.84 263.1600000000001 -64 272 -64H304C312.84 -64 320 -56.84 320 -48V32C320 49.67 305.67 64 288 64zM400 96S352 72 352 24V-48C352 -56.84 359.1600000000001 -64 368 -64H432C440.84 -64 448 -56.84 448 -48V24C448 72 400 96 400 96zM512 64C494.33 64 480 49.67 480 32V-48C480 -56.84 487.16 -64 496 -64H528C536.84 -64 544 -56.84 544 -48V32C544 49.67 529.67 64 512 64zM622.29 172.25C633.38 187.21 640 204.9 640 224C640 276.86 591.78 312.7 538.55 341.81C453.15 388.52 416.69 430.25 400 448C383.32 430.26 346.86 388.52 261.45 341.81C242.28 331.33 223.86 319.92 208 307.2100000000001V328C208 408 104 448 104 448S0 408 0 328V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V256H160V-48C160 -56.84 167.16 -64 176 -64H192C200.84 -64 208 -56.84 208 -48V128H592V-48C592 -56.84 599.16 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V144C640 156.46 632.68 166.97 622.29 172.25zM160 304H48V328C48 357.2 80.46 381.73 104.01 394.8400000000001C126.81 382.12 160 357.6 160 328V304zM529.23 176H270.77C236.75 176 208 197.98 208 224C208 247.11 232.3 271.16 284.48 299.7C329.87 324.52 367.95 350.99 400 380.05C432.05 350.99 470.1299999999999 324.53 515.52 299.7C567.7 271.16 592 247.11 592 224C592 197.98 563.26 176 529.23 176z" />
+    <glyph glyph-name="motorcycle"
+      unicode="&#xF21C;"
+      horiz-adv-x="640" d=" M512 256C496.399 256 481.452 253.205 467.626 248.095L434.633 304H520C533.255 304 544 314.745 544 328V360C544 373.255 533.255 384 520 384H474.688A24 24 0 0 1 456.849 376.055L417.748 332.61L393.224 374.165A20 20 0 0 1 376 384H300C293.373 384 288 378.627 288 372V356C288 349.373 293.373 344 300 344H364.58L395.268 292H219.408C215.398 296.3930000000001 210.866 300.531 205.625 304.275C186.784 317.732 162.118 324 128 324H72C60.954 324 52 315.046 52 304S60.954 284 72 284H128C150.885 284 165.946 275.552 176.662 263.795L168.726 249.365A127.765 127.765 0 0 1 128 256C57.308 256 0 198.692 0 128S57.308 0 128 0C186.192 0 235.311 38.834 250.863 92H332.19C343.586 92 352.681 101.517 352.169 112.897C349.713 167.877 375.951 218.914 420.541 249.177L432.739 228.509C403.054 205.068 384 168.76 384 128C384 57.308 441.308 0 512 0S640 57.308 640 128S582.692 256 512 256zM128 40C79.477 40 40 79.477 40 128S79.477 216 128 216C135.229 216 142.256 215.122 148.983 213.47L98.476 121.639C91.156 108.328 100.802 92 116 92H208.27C194.483 61.38 163.701 40 128 40zM312.367 132H149.825L215.825 252H363.133C332.299 218.189 315.045 175.774 312.367 132zM512 40C463.477 40 424 79.477 424 128C424 154.019 435.354 177.434 453.365 193.559L506.842 102.945C510.211 97.237 517.568 95.341 523.276 98.709L537.0559999999999 106.841C542.7639999999999 110.209 544.66 117.567 541.2919999999999 123.275L488.4589999999999 212.797A87.769 87.769 0 0 0 512 216C560.523 216 600 176.523 600 128S560.523 40 512 40z" />
+    <glyph glyph-name="mountain"
+      unicode="&#xF6FC;"
+      horiz-adv-x="640" d=" M634.92 -14.7L346.92 433.3C341.03 442.46 330.89 448 320 448S298.9700000000001 442.46 293.08 433.3L5.08 -14.7A32.001 32.001 0 0 1 3.91 -47.34A32.004 32.004 0 0 1 32 -64H608C619.71 -64 630.48 -57.61 636.09 -47.33A31.982999999999997 31.982999999999997 0 0 1 634.9200000000001 -14.7zM61.31 -16L193.08 188.98L256 126.06L329.94 200H439.8400000000001L578.7 -16H61.31zM320 386.41L408.98 248H310.06L256 193.94L219.64 230.3L320 386.41z" />
+    <glyph glyph-name="mountains"
+      unicode="&#xF6FD;"
+      horiz-adv-x="640" d=" M635.73 41.09L441.6900000000001 338.69C435.9 347.56 425.95 352 416 352C406.05 352 396.1 347.56 390.31 338.69L338.31 258.93L267.52 369.48C261.32 379.16 250.66 384 240 384S218.68 379.16 212.48 369.48L4.58 44.82C-7.99 25.19 6.81 0 30.92 0H611.14C633.64 0 647.46 23.09 635.73 41.09zM63.61 48L240 323.45L416.39 48H63.61zM473.39 48L366.71 214.6L416 290.2L573.92 48H473.39z" />
+    <glyph glyph-name="mouse-pointer"
+      unicode="&#xF245;"
+      horiz-adv-x="384" d=" M356.683 192.424L115.915 429.364C77.055 469.086 8 441.091 8 385.13V36.018C8 -19.223 75.457 -47.869 115.414 -8.709L139.341 14.74L156.876 -25.929L156.997 -26.21L157.122 -26.484C171.025 -57.629 207.417 -72.3779999999999 239.277 -59.132L281.18 -41.737L281.4340000000001 -41.631L281.687 -41.522C297.305 -34.825 309.349 -22.484 315.599 -6.773C321.783 8.772 321.526 25.795 314.875 41.16L296.165 84.583H312.692C368.54 84.581 397.8570000000001 153.068 356.683 192.424zM312.811 132.581H223.217L270.824 22.09C274.14 14.429 270.35 5.841 262.771 2.591L220.849 -14.818C213.033 -18.068 204.269 -14.353 200.954 -6.926L155.716 97.994L81.818 25.571C72.038 15.988 56 23.266 56 36.018V385.132C56 398.441 72.978 404.961 81.817 395.577L323.4700000000001 157.883C333.2600000000001 148.792 326.023 132.581 312.8110000000001 132.581z" />
+    <glyph glyph-name="mug-hot"
+      unicode="&#xF7B6;"
+      horiz-adv-x="512" d=" M400 256H32C14.3 256 0 241.7 0 224V32C0 -21 43 -64 96 -64H288C341 -64 384 -21 384 32H400C461.8 32 512 82.2 512 144S461.8 256 400 256zM336 32C336 5.5 314.5 -16 288 -16H96C69.5 -16 48 5.5 48 32V208H336V32zM400 80H384V208H400C435.3 208 464 179.3 464 144S435.3 80 400 80zM239.1 301.5C240.4 293.8 247.1 288 255.1 288H271.6C281.4000000000001 288 289.2000000000001 296.5 287.9000000000001 306C284.1 334.2 271.5000000000001 360.2 251.3000000000001 380.7C236.9000000000001 395.4 227.7000000000001 414 224.9 434.2C223.8 442.1 217 448 208.8 448H192.4C182.6 448 174.9 439.5 176.1 430C180 398.1 194.1 368.7 216.7 345.6C228.7 333.4 236.4 318.1 239.1 301.5zM127.1 301.5C128.4 293.8 135.1 288 143.1 288H159.6C169.4 288 177.2 296.5 175.9 306C172.1 334.2 159.5 360.2 139.3 380.7C124.9 395.4 115.7 414 112.9 434.2C111.8 442.1 105 448 96.8 448H80.4C70.6 448 63 439.5 64.1 430C68 398.1 82.1 368.7 104.7 345.6C116.7 333.4 124.4 318.1 127.1 301.5z" />
+    <glyph glyph-name="mug-marshmallows"
+      unicode="&#xF7B7;"
+      horiz-adv-x="512" d=" M400 288H379.1C386.3 300.4 385.1 316.3 374.5 327L295 406.5C288.7 412.8 280.3 416 272 416S255.4 412.8 249 406.5L221.6 379.1C217 391 205.6 399.5 192 399.5H64C46.3 399.5 32 385.2 32 367.5V288C14.3 288 0 273.7 0 256V64C0 11 43 -32 96 -32H288C341 -32 384 11 384 64H400C461.8 64 512 114.2 512 176S461.8 288 400 288zM272 361.6L329.6 304L313.6 288H230.5000000000001L214.5 304L272 361.6zM80 351.5H176V333.4L169.5 326.9C158.9 316.3 157.7 300.4 164.9 287.9H80V351.5zM336 64C336 37.5 314.5 16 288 16H96C69.5 16 48 37.5 48 64V240H96V184C96 170.7 106.7 160 120 160S144 170.7 144 184V240H336V64zM400 112H384V240H400C435.3 240 464 211.3 464 176S435.3 112 400 112z" />
+    <glyph glyph-name="music"
+      unicode="&#xF001;"
+      horiz-adv-x="512" d=" M511.99 80.08V415.99C511.99 434.26 497.03 448 480.06 448C476.88 448 473.63 447.52 470.39 446.49L166.39 350.49C153.1 346.29 144 334 144 320V84.9C129.83 91.77 113.58 96 96 96C42.98 96 0 60.18 0 16S42.98 -64 96 -64C145.36 -64 185.55 -32.84 190.92 7.1C191.57 9.81 191.94 12.68 191.96 15.73C191.96 15.82 191.99 15.91 191.99 16V192L463.99 277.9V148.91C449.83 155.77 433.57 160 416 160C362.98 160 320 124.18 320 80S362.98 0 416 0C465.37 0 505.56 31.18 510.93 71.13C511.55 73.72 511.88 76.46 511.93 79.35C511.93 79.5700000000001 512.01 79.78 512.01 80C512 80.03 511.99 80.05 511.99 80.08zM96 -16C67.71 -16 48 0.87 48 16C48 31.14 67.71 48 96 48S144 31.14 144 16S124.29 -16 96 -16zM463.99 328.23L192 242.34V308.24L463.99 394.13V328.23zM464 79.99C463.99 64.86 444.28 48 416 48C387.71 48 368 64.87 368 80C368 95.14 387.71 112 416 112C444.28 112 463.99 95.15 464 80.01V79.99z" />
+    <glyph glyph-name="narwhal"
+      unicode="&#xF6FE;"
+      horiz-adv-x="640" d=" M591.21 227.84L639.73 435.12C640.77 439.58 638.79 444.37 634.59 446.69C629.52 449.49 623.14 447.65 620.34 442.58L517.06 255.49C515.3499999999999 255.56 513.7399999999999 256 511.9999999999999 256C370.86 256 304.8499999999999 172.53 203.31 73.69C200.05 70.43 196.0399999999999 68.97 192.11 68.97C183.88 68.97 175.99 75.36 175.99 85V147.87L207.37 164.36C217.76 170.3 224 180.3 224 191V303.9700000000001C224 313.38 214.99 320 205.28 320H205.27C201.8 320 198.25 319.15 194.98 317.29L112 269.87L29.02 317.29C25.75 319.1600000000001 22.19 320 18.72 320C9.01 320 0 313.39 0 303.9700000000001V191C0 180.3 6.24 170.31 16.62 164.38L48 147.88V67.88C48 -4.96 107.04 -64 179.88 -64H544C597.02 -64 640 -21.02 640 32V128C640 168.62 620.71 204.39 591.21 227.84zM592 32C592 5.53 570.47 -16 544 -16H179.88C133.63 -16 96 21.63 96 67.87V176.87L70.33 190.36L48 202.11V251.1600000000001L88.19 228.2L112 214.58L135.82 228.19L176 251.16V202.11L153.67 190.37L128 176.87V85C128 49.69 156.76 20.97 192.12 20.97C209.12 20.97 225.15 27.64 236.8 39.29C248.33 50.5100000000001 259.4000000000001 61.53 270.18 72.26C352.28 154 406.52 208 512 208C556.11 208 592 172.11 592 128V32zM432 104C418.75 104 408 93.26 408 80C408 66.75 418.75 56 432 56S456 66.75 456 80C456 93.26 445.25 104 432 104z" />
+    <glyph glyph-name="network-wired"
+      unicode="&#xF6FF;"
+      horiz-adv-x="640" d=" M640 184V200C640 208.84 632.84 216 624 216H344V288H416C433.67 288 448 302.3300000000001 448 320V416C448 433.67 433.67 448 416 448H224C206.33 448 192 433.67 192 416V320C192 302.33 206.33 288 224 288H296V216H16C7.16 216 0 208.84 0 200V184C0 175.16 7.16 168 16 168H120V96H64C46.33 96 32 81.67 32 64V-32C32 -49.67 46.33 -64 64 -64H224C241.67 -64 256 -49.67 256 -32V64C256 81.67 241.67 96 224 96H168V168H472V96H416C398.33 96 384 81.67 384 64V-32C384 -49.67 398.33 -64 416 -64H576C593.67 -64 608 -49.67 608 -32V64C608 81.67 593.67 96 576 96H520V168H624C632.84 168 640 175.16 640 184zM240 400H400V336H240V400zM208 48V-16H80V48H208zM560 48V-16H432V48H560z" />
+    <glyph glyph-name="neuter"
+      unicode="&#xF22C;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 200.6 51.9 141.4 120 130V-20C120 -26.6 125.4 -32 132 -32H156C162.6 -32 168 -26.6 168 -20V130C236.1 141.4 288 200.6 288 272zM144 176C91.1 176 48 219.1 48 272S91.1 368 144 368S240 324.9 240 272S196.9 176 144 176z" />
+    <glyph glyph-name="newspaper"
+      unicode="&#xF1EA;"
+      horiz-adv-x="576" d=" M552 384H112C91.142 384 73.357 370.623 66.752 352H24C10.745 352 0 341.255 0 328V56C0 25.072 25.072 0 56 0H552C565.255 0 576 10.745 576 24V360C576 373.255 565.255 384 552 384zM48 56V304H64V56C64 51.589 60.411 48 56 48S48 51.589 48 56zM528 48H111.422C111.796 50.614 112 53.283 112 56V336H528V48zM172 168H308C314.627 168 320 173.373 320 180V276C320 282.627 314.627 288 308 288H172C165.373 288 160 282.627 160 276V180C160 173.373 165.373 168 172 168zM200 248H280V208H200V248zM160 108V132C160 138.627 165.373 144 172 144H308C314.627 144 320 138.627 320 132V108C320 101.373 314.627 96 308 96H172C165.373 96 160 101.373 160 108zM352 108V132C352 138.627 357.373 144 364 144H468C474.627 144 480 138.627 480 132V108C480 101.373 474.627 96 468 96H364C357.373 96 352 101.373 352 108zM352 252V276C352 282.627 357.373 288 364 288H468C474.627 288 480 282.627 480 276V252C480 245.373 474.627 240 468 240H364C357.373 240 352 245.373 352 252zM352 180V204C352 210.627 357.373 216 364 216H468C474.627 216 480 210.627 480 204V180C480 173.373 474.627 168 468 168H364C357.373 168 352 173.373 352 180z" />
+    <glyph glyph-name="not-equal"
+      unicode="&#xF53E;"
+      horiz-adv-x="384" d=" M368 240C376.84 240 384 247.16 384 256V288C384 296.8400000000001 376.84 304 368 304H325.68L380.7100000000001 370.81C386.0800000000001 377.83 384.7500000000001 387.87 377.74 393.24L352.32 412.7C345.3 418.07 335.26 416.74 329.89 409.73L242.81 304H16C7.16 304 0 296.8400000000001 0 288V256C0 247.16 7.16 240 16 240H190.1L111.03 144H16C7.16 144 0 136.84 0 128V96C0 87.16 7.16 80 16 80H58.32L3.3 13.19C-2.07 6.18 -0.74 -3.86 6.27 -9.24L31.68 -28.7C38.7 -34.08 48.74 -32.74 54.11 -25.73L141.19 80H368C376.84 80 384 87.16 384 96V128C384 136.84 376.84 144 368 144H193.9L272.9700000000001 240H368z" />
+    <glyph glyph-name="notes-medical"
+      unicode="&#xF481;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 408C205.3 408 216 397.3 216 384S205.3 360 192 360S168 370.7 168 384S178.7 408 192 408zM336 -10C336 -13.3 333.3 -16 330 -16H54C50.7 -16 48 -13.3 48 -10V330C48 333.3 50.7 336 54 336H96V300C96 293.4 101.4 288 108 288H276C282.6 288 288 293.4 288 300V336H330C333.3 336 336 333.3 336 330V-10zM280 160H224V216C224 220.4 220.4 224 216 224H168C163.6 224 160 220.4 160 216V160H104C99.6 160 96 156.4 96 152V104C96 99.6 99.6 96 104 96H160V40C160 35.6 163.6 32 168 32H216C220.4 32 224 35.6 224 40V96H280C284.4 96 288 99.6 288 104V152C288 156.4 284.4 160 280 160z" />
+    <glyph glyph-name="object-group"
+      unicode="&#xF247;"
+      horiz-adv-x="512" d=" M500 320C506.627 320 512 325.373 512 332V404C512 410.627 506.627 416 500 416H428C421.373 416 416 410.627 416 404V392H96V404C96 410.627 90.627 416 84 416H12C5.373 416 0 410.627 0 404V332C0 325.373 5.373 320 12 320H24V64H12C5.373 64 0 58.627 0 52V-20C0 -26.627 5.373 -32 12 -32H84C90.627 -32 96 -26.627 96 -20V-8H416V-20C416 -26.627 421.373 -32 428 -32H500C506.627 -32 512 -26.627 512 -20V52C512 58.627 506.627 64 500 64H488V320H500zM448 384H480V352H448V384zM32 384H64V352H32V384zM64 0H32V32H64V0zM480 0H448V32H480V0zM440 64H428C421.373 64 416 58.627 416 52V40H96V52C96 58.627 90.627 64 84 64H72V320H84C90.627 320 96 325.373 96 332V344H416V332C416 325.373 421.373 320 428 320H440V64zM404 256H320V308C320 314.628 314.627 320 308 320H108C101.373 320 96 314.628 96 308V140C96 133.372 101.373 128 108 128H192V76C192 69.372 197.373 64 204 64H404C410.627 64 416 69.372 416 76V244C416 250.628 410.627 256 404 256zM136 280H280V168H136V280zM376 104H232V128H308C314.627 128 320 133.372 320 140V216H376V104z" />
+    <glyph glyph-name="object-ungroup"
+      unicode="&#xF248;"
+      horiz-adv-x="576" d=" M564 224C570.627 224 576 229.373 576 236V308C576 314.627 570.627 320 564 320H492C485.373 320 480 314.627 480 308V296H392V320H404C410.627 320 416 325.373 416 332V404C416 410.627 410.627 416 404 416H332C325.373 416 320 410.627 320 404V392H96V404C96 410.627 90.627 416 84 416H12C5.373 416 0 410.627 0 404V332C0 325.373 5.373 320 12 320H24V160H12C5.373 160 0 154.627 0 148V76C0 69.373 5.373 64 12 64H84C90.627 64 96 69.373 96 76V88H184V64H172C165.373 64 160 58.627 160 52V-20C160 -26.627 165.373 -32 172 -32H244C250.627 -32 256 -26.627 256 -20V-8H480V-20C480 -26.627 485.373 -32 492 -32H564C570.627 -32 576 -26.627 576 -20V52C576 58.627 570.627 64 564 64H552V224H564zM352 384H384V352H352V384zM352 128H384V96H352V128zM64 96H32V128H64V96zM64 352H32V384H64V352zM96 136V148C96 154.627 90.627 160 84 160H72V320H84C90.627 320 96 325.373 96 332V344H320V332C320 325.373 325.373 320 332 320H344V160H332C325.373 160 320 154.627 320 148V136H96zM224 0H192V32H224V0zM504 64H492C485.373 64 480 58.627 480 52V40H256V52C256 58.627 250.627 64 244 64H232V88H320V76C320 69.373 325.373 64 332 64H404C410.627 64 416 69.373 416 76V148C416 154.627 410.627 160 404 160H392V248H480V236C480 229.373 485.373 224 492 224H504V64zM544 0H512V32H544V0zM544 256H512V288H544V256z" />
+    <glyph glyph-name="octagon"
+      unicode="&#xF306;"
+      horiz-adv-x="512" d=" M497.9 297.5L361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512 276.3 506.9 288.5 497.9 297.5zM464 120.5L327.5 -16H184.5L48 120.5V263.5L184.5 400H327.6L464 263.5V120.5z" />
+    <glyph glyph-name="oil-can"
+      unicode="&#xF613;"
+      horiz-adv-x="640" d=" M629.8 287.69L416 224L365.51 249.24A64.07 64.07 0 0 1 336.89 256H280V304H336C344.84 304 352 311.16 352 320V336C352 344.8400000000001 344.84 352 336 352H176C167.16 352 160 344.8400000000001 160 336V320C160 311.16 167.16 304 176 304H232V256H176C26.86 283.12 36.11 281.67 31.93 281.67C14.67 281.67 0 267.64 0 249.66V154.71C0 139.25 11.06 125.99 26.28 123.23L96 110.54V64C96 46.33 110.33 32 128 32H402.64C411.19 32 419.39 35.42 425.4 41.51L637.66 256.26C639.16 257.76 640 259.8 640 261.92V280C640 285.75 634.49 289.03 629.8 287.69zM96 159.33L48 168.06V230.49L96 221.76V159.3300000000001zM395.95 80H144V208H336.89C339.36 208 341.84 207.42 344.04 206.31C405.26 175.7 390.07 183.3 411.5 172.58C436.9699999999999 180.17 424.5299999999999 176.46 519.14 204.65L395.95 80zM549.3299999999999 74.67C549.3299999999999 51.11 568.43 32 591.9999999999999 32S634.6699999999998 51.1 634.6699999999998 74.67S592 160 592 160S549.33 98.23 549.33 74.67z" />
+    <glyph glyph-name="oil-temp"
+      unicode="&#xF614;"
+      horiz-adv-x="640" d=" M16 48H32C70.62 48 104.72 60.19 128 79.84C151.21 60.24 185.18 48.1 223.66 48.02C209.05 62.69 198.32 80.92 191.59 101C181.44 104.33 173.3 108.92 167.91 113.89C159.01 122.1 148.25 127.99 136.14 127.99H119.84C107.73 127.99 96.97 122.1 88.07 113.89C77.8 104.42 58.04 96 32 96H16C7.16 96 0 88.84 0 80V64C0 55.17 7.16 48 16 48zM624 96H608C581.96 96 562.2 104.42 551.91 113.9C543.01 122.11 532.25 128 520.14 128H503.84C491.73 128 480.97 122.11 472.07 113.9C466.68 108.93 458.54 104.33 448.39 101.01C441.66 80.93 430.93 62.7 416.32 48.03C454.8 48.1 488.77 60.25 511.98 79.85C535.26 60.1899999999999 569.36 48.01 607.98 48.01H623.98C632.82 48.01 639.98 55.17 639.98 64.01V80.01C640 88.84 632.84 96 624 96zM624 -16H608C581.96 -16 562.2 -7.58 551.91 1.9C543.01 10.11 532.25 16 520.14 16H503.84C491.73 16 480.97 10.11 472.07 1.9C461.8 -7.58 442.04 -16 416 -16S370.2 -7.58 359.91 1.9A60.051 60.051 0 0 1 347.42 10.75C338.56 8.94 329.39 7.98 320 7.98S301.43 8.93 292.58 10.75C288.12 8.36 283.8999999999999 5.41 280.0899999999999 1.9C269.8 -7.58 250.04 -16 224 -16S178.2 -7.58 167.91 1.9C159.01 10.11 148.25 16 136.14 16H119.84C107.73 16 96.97 10.11 88.07 1.9C77.8 -7.58 58.04 -16 32 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H32C70.62 -64 104.72 -51.81 128 -32.16C151.28 -51.82 185.38 -64 224 -64S296.7200000000001 -51.81 320 -32.16C343.28 -51.82 377.38 -64 416 -64S488.72 -51.81 512 -32.16C535.28 -51.82 569.38 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM320 47.99C372.94 47.99 416 91.05 416 143.99C416 188.59 385.29 225.85 344 236.58V304H400C408.84 304 416 311.16 416 320V336C416 344.8400000000001 408.84 352 400 352H344V400H400C408.84 400 416 407.16 416 416V432C416 440.84 408.84 448 400 448H312C303.1600000000001 448 296 440.84 296 432V236.59C254.71 225.86 224 188.6 224 144C224 91.05 267.06 47.99 320 47.99zM320 191.99C346.4700000000001 191.99 368 170.46 368 143.99S346.4700000000001 95.99 320 95.99S272 117.52 272 143.99S293.53 191.99 320 191.99z" />
+    <glyph glyph-name="om"
+      unicode="&#xF679;"
+      horiz-adv-x="512" d=" M420.11 248C395.92 248 372.23 238.19 355.13 221.09L330.88 196.84C322.72 188.68 311.41 184 299.84 184H234.55C248.67 205.81 255.34 232.87 249.45 261.74C240.97 303.36 206.37 336.2800000000001 164.38 342.7100000000001C131.31 347.77 99.6 337.65 76.58 315.98C69.53 309.3400000000001 70.65 297.75 78.39 291.93L91.54 282.06C97.62 277.5 105.88 278.0800000000001 111.7 282.9700000000001C124.04 293.35 140.42 298 157.38 295.18C178.95 291.6 197.05 274.79 202.07 253.51C210.73 216.8 182.95 183.98 147.65 183.98L108.01 183.81C99.04 183.81 93.2 174.37 97.22 166.35L109.29 142.22C111.19 138.43 114.99 136.15 119.17 135.81L155.94 135.98C197.85 135.98 231.95 101.89 231.95 59.98S197.85 -16.02 155.94 -16.02C73.17 -16.02 51.18 4.71 13.32 60.79C9.24 66.83 0.01 63.66 0 56.61C-0.05 26.89 20.44 -64 155.94 -64C224.33 -64 279.96 -8.38 279.96 60C279.96 88.77 269.71 114.94 253.21 136H299.84C324.03 136 347.72 145.81 364.82 162.91L389.07 187.16C397.23 195.32 408.54 200 420.11 200C444.3 200 463.99 180.31 463.99 156.12V48C463.99 30.36 449.64 16 431.98 16C405.49 16 383.3 21.11 362.61 45.82C359.0300000000001 50.09 351.9600000000001 47.67 351.9600000000001 42.16V14.59C351.9600000000001 0.79 361.74 -32.01 431.9700000000001 -32.01C476.1 -32.01 511.98 -0.01 511.98 47.99V156.12C512 206.78 470.77 248 420.11 248zM360.59 387.06C364.67 382.99 371.27 382.99 375.35 387.06L396.92 408.62A10.43 10.43 0 0 1 396.92 423.38L375.35 444.94A10.43 10.43 0 0 1 360.5900000000001 444.94L339.0200000000001 423.38A10.43 10.43 0 0 1 339.0200000000001 408.62L360.5900000000001 387.06zM376.75 297.27C452.99 297.27 472.87 317.19 477.15 323.3C479.04 325.99 480.05 329.19 480.05 332.48V368C480.05 380.7 465.22 389.01 454.35 380.73C428.68 361.17 400.73 351.26 371.28 351.26C320.44 351.26 282.19 380.37 281.81 380.66C267.82 391.48 248.84 374.5900000000001 258.53 359.4C260.13 356.86 299.04 297.27 376.75 297.27z" />
+    <glyph glyph-name="omega"
+      unicode="&#xF67A;"
+      horiz-adv-x="447" d=" M360.62 16C423.92 65.55 460.47 147.8 442.37 238.07C424.95 324.92 355.02 394.79 268.24 411.65C125.19 439.44 0 330.37 0 192C0 120.28 34.05 56.96 86.38 16H15.96C7.15 16 0 8.84 0 0V-16C0 -24.84 7.15 -32 15.96 -32H143.67C152.49 -32 159.63 -24.84 159.63 -16V6.99C159.63 18.81 153.65 30.27 143.18 35.69C76.49 70.22 34.5 146.17 51.78 229.49C65.59 296.06 119.17 349.9700000000001 185.55 363.98C298.88 387.91 399.11 301.4700000000001 399.11 192C399.11 123.78 360.12 64.63 303.35 35.46C293.19 30.24 287.36 19.1800000000001 287.36 7.74V-16C287.36 -24.84 294.51 -32 303.32 -32H431.03C439.85 -32 446.99 -24.84 446.99 -16V0C446.99 8.84 439.84 16 431.03 16H360.62z" />
+    <glyph glyph-name="ornament"
+      unicode="&#xF7B8;"
+      horiz-adv-x="384" d=" M288 294.1V336C288 344.8 280.8 352 272 352H247.1C252.6 361.4 256 372.3 256 384C256 419.3 227.3 448 192 448S128 419.3 128 384C128 372.3 131.4 361.4 136.9 352H112C103.2 352 96 344.8 96 336V294.1C38.7 260.9 0 199 0 128C0 22 86 -64 192 -64S384 22 384 128C384 199 345.3 260.9 288 294.1zM192 400C200.8 400 208 392.8 208 384S200.8 368 192 368S176 375.2 176 384S183.2 400 192 400zM192 272C234.4 272 272.2 253.2 298.5 224H85.5C111.8 253.2 149.6 272 192 272zM336 128C336 111.1 332.5 95.1 327.2 80H56.8C51.4 95.1 48 111.1 48 128S51.5 160.9 56.8 176H327.1C332.5 160.9 336 144.9 336 128zM192 -16C149.6 -16 111.8 2.8 85.5 32H298.6C272.2000000000001 2.8 234.4000000000001 -16 192 -16z" />
+    <glyph glyph-name="otter"
+      unicode="&#xF700;"
+      horiz-adv-x="640" d=" M496 376C487.16 376 480 368.8400000000001 480 360S487.17 344 496 344C504.84 344 512 351.16 512 360S504.84 376 496 376zM575.96 416H566.49L557.86 424.61C542.74 439.69 522.65 448 501.27 448H480.73C466.84 448 453.11 444.37 441.05 437.49L291.09 352H272.38C157.48 352 64 258.69 64 144L64.08 79.2C28.15 75.19 0 44.99 0 8C0 -31.7 32.31 -64 72 -64H232C245.25 -64 256 -53.25 256 -40S245.25 -16 232 -16H72C58.78 -16 48 -5.23 48 8S58.78 32 72 32H304.4600000000001C330.9700000000001 32 352.4600000000001 53.49 352.4600000000001 80C352.4600000000001 99.45 345.48 117.29 333.8900000000001 131.17L347.8300000000001 138.56L387.9600000000001 58.49A48 48 0 0 1 430.87 32H529C555.51 32 577 53.49 577 80C577 124.11 541.08 160 496.92 160H480.33L460.98 198.6L492.1 215.11C503.06 220.93 515.4200000000001 224 527.85 224C589.69 224 640 274.24 640 336V352C640 387.29 611.27 416 575.96 416zM527.85 272C507.54 272 487.54 267.03 469.61 257.51L465.93 255.56L482.63 277.27C491.63 289 505.85 296 520.66 296H577.56C565.8 281.48 548.02 272 527.8499999999999 272zM592 336C592 333.26 591.53 330.65 591.19 328H520.6600000000001C495.9700000000001 328 472.2800000000001 316.3300000000001 457.2500000000001 296.77L397.9300000000001 220.99L398.9400000000001 220.03L397.0500000000002 219.03L450.7 112H496.92C514.62 112 529 97.64 529 80H430.87L368.73 203.99L195.33 112H272.38C290.08 112 304.46 97.64 304.46 80H112V144C112 232.37 183.81 304 272.38 304H303.81L464.82 395.79A32.16 32.16 0 0 0 480.73 400H501.27C509.84 400 517.9000000000001 396.67 523.95 390.63L537.24 377.37L546.64 367.99H575.96C584.82 367.99 592 360.8300000000001 592 351.99V336z" />
+    <glyph glyph-name="outdent"
+      unicode="&#xF03B;"
+      horiz-adv-x="448" d=" M0 368V400C0 406.627 5.373 412 12 412H436C442.627 412 448 406.627 448 400V368C448 361.373 442.627 356 436 356H12C5.373 356 0 361.373 0 368zM204 228H436C442.627 228 448 233.373 448 240V272C448 278.627 442.627 284 436 284H204C197.373 284 192 278.627 192 272V240C192 233.373 197.373 228 204 228zM12 -28H436C442.627 -28 448 -22.627 448 -16V16C448 22.627 442.627 28 436 28H12C5.373 28 0 22.627 0 16V-16C0 -22.627 5.373 -28 12 -28zM204 100H436C442.627 100 448 105.373 448 112V144C448 150.627 442.627 156 436 156H204C197.373 156 192 150.627 192 144V112C192 105.373 197.373 100 204 100zM4.687 180.687L100.687 84.703C110.734 74.652 128 81.776 128 96.016V287.992C128 302.3210000000001 110.675 309.296 100.687 299.305L4.687 203.313C-1.562 197.065 -1.562 186.935 4.687 180.687z" />
+    <glyph glyph-name="paint-brush-alt"
+      unicode="&#xF5A9;"
+      horiz-adv-x="512" d=" M489.17 303.95C547.44 367.98 483.28 448 418.52 448C395.13 448 371.65 437.56 353.84 412.15L187.9 163.99C142.77 161.09 101.8 143.9 78.56 82.65C75.91 75.66 69.56 71.43 62.15 71.43C49.66 71.43 11.01 102.56 0 110.0799999999999C0 17.42 42.67 -64 144 -64C285.2100000000001 -64 289.89 53.04 286.91 81.49L286.93 81.51L489.17 303.95zM393.15 384.6C402.83 398.4 412.26 400 418.52 400C434.92 400 454.09 386.83 461.24 370.65C466.6 358.52 464.27 347.9100000000001 453.64 336.24L266.1600000000001 130.02L238.4000000000001 153.15L393.15 384.6zM144 -16C105.4 -16 81.97 0.87 67.94 23.67C93.01 25.81 114.43 41.81 123.45 65.62C133.48 92.06 141.69 112.91 206.68 117.1L237.62 91.31C239.85 71.38 251.75 -16 144 -16z" />
+    <glyph glyph-name="paint-brush"
+      unicode="&#xF1FC;"
+      horiz-adv-x="512" d=" M455.59 448C439.78 448 424.97 441.01 413.66 430.85C195.73 236.18 169.77 231.5 179.98 166.01C138.46 161.05 101.39 141.96 79.66 84.69C76.98 77.61 70.54 73.31 63.02 73.31C50.35 73.31 11.17 104.87 0 112.5C0 18.55 43.26 -64 146 -64C263.18 -64 298.7200000000001 23.75 291.06 81.89C347.96 88.9 388.2100000000001 144.4 497.51 348.38C505.2 363.35 512 379.52 512 396.3400000000001C512 426.48 484.89 448 455.59 448zM222.08 15.11C205.84 -3.41 180.24 -12.8 146 -12.8C110.03 -12.8 87.4 2.13 73.32 22.85C97.88 26.45 118.55 42.8099999999999 127.53 66.52C141.32 102.85 160.14 112.07 186.05 115.17L202.48 117.13L238.54 88.62L240.3100000000001 75.2099999999999C242.38 59.4399999999999 238.85 34.2399999999999 222.0800000000001 15.1099999999999zM284.8 132.71L267.93 130.6300000000001L233 158.25L230.56 173.89C224.3 214.08 444.24 403.2 456.12 393.43C468.24 383.45 334.85 138.87 284.8 132.71z" />
+    <glyph glyph-name="paint-roller"
+      unicode="&#xF5AA;"
+      horiz-adv-x="512" d=" M456 376H416V400C416 426.51 394.51 448 368 448H48C21.49 448 0 426.51 0 400V304C0 277.49 21.49 256 48 256H368C394.51 256 416 277.49 416 304V328H456C460.41 328 464 324.41 464 320V224C464 219.59 460.41 216 456 216H256C225.12 216 200 190.88 200 160V128H192C174.33 128 160 113.67 160 96V-32C160 -49.67 174.33 -64 192 -64H256C273.67 -64 288 -49.67 288 -32V96C288 113.67 273.67 128 256 128H248V160C248 164.41 251.59 168 256 168H456C486.88 168 512 193.12 512 224V320C512 350.88 486.88 376 456 376zM368 304H48V400H368V304zM240 -16H208V80H240V-16z" />
+    <glyph glyph-name="palette"
+      unicode="&#xF53F;"
+      horiz-adv-x="512" d=" M128 224C110.3 224 96 209.7 96 192S110.3 160 128 160S160 174.3 160 192S145.6 224 128 224zM418.6 389.9C359.2 438.7 281.3 458 204.6 443C104.9 423.6 24.7 343.8 5.1 244.3C-11.6 160.1 13.2 76 72.9 13.7C120.2 -35.6999999999999 182.6 -64.0999999999999 240.8 -64.0999999999999C249.6 -64.0999999999999 258.3 -63.4999999999999 266.9000000000001 -62.0999999999999C291.1 -58.3999999999999 311.5000000000001 -43.3999999999999 323.0000000000001 -20.9999999999999C335.3000000000001 3.0000000000001 335.3000000000001 31.7000000000001 323.2000000000001 55.6000000000001C317.1 67.6000000000001 317.7000000000001 81.8000000000001 325.0000000000001 93.6000000000001C332.0000000000001 105.4000000000002 343.7000000000001 112.0000000000001 357.0000000000001 112.0000000000001H429.2000000000001C475.6 112.0000000000001 512 147.7000000000001 512 193.3000000000001C511.8 269.7000000000002 477.7 341.4000000000001 418.6 389.9000000000001zM429.2 160H357C327.1 160 299.8 144.6 284 118.7C268 92.6 266.7 60.9 280.4 33.8C285.5 23.6999999999999 285.5 11.1 280.2 0.9C277.6 -4.1 271.5 -12.8 259.6 -14.7C210.3 -22.4 150.7 1.9 107.6 46.9C58.8 97.8 38.6 166.3 52.2 234.9C68.1 315.5 133 380.2 213.8 395.9C276.4 408.2 339.9 392.4 388.1 352.8C436.2 313.3 463.8 255.2 464 193.2C464 174.6 448.7 160 429.2 160zM160 320C142.3 320 128 305.7 128 288S142.3 256 160 256S192 270.3 192 288S177.6 320 160 320zM256 352.1C238.3 352.1 224 337.8 224 320.1S238.3 288.1 256 288.1S288 302.4 288 320.1C288 337.7 273.7 352.1 256 352.1zM352 320C334.3 320 320 305.7 320 288S334.3 256 352 256S384 270.3 384 288S369.7 320 352 320z" />
+    <glyph glyph-name="pallet-alt"
+      unicode="&#xF483;"
+      horiz-adv-x="640" d=" M112 160H528C536.8 160 544 167.2 544 176V368C544 376.8 536.8 384 528 384H384V432C384 440.8 376.8 448 368 448H112C103.2 448 96 440.8 96 432V176C96 167.2 103.2 160 112 160zM384 336H496V208H384V336zM144 400H336V208H144V400zM624 80C632.8 80 640 87.2 640 96V112C640 120.8 632.8 128 624 128H16C7.2 128 0 120.8 0 112V96C0 87.2 7.2 80 16 80H64V-16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16H576V80H624zM176 -16H112V80H176V-16zM416 -16H224V80H416V-16zM528 -16H464V80H528V-16z" />
+    <glyph glyph-name="pallet"
+      unicode="&#xF482;"
+      horiz-adv-x="640" d=" M144 160H496C504.8 160 512 167.2 512 176V432C512 440.8 504.8 448 496 448H144C135.2 448 128 440.8 128 432V176C128 167.2 135.2 160 144 160zM176 400H256V320L320 352L384 320V400H464V208H176V400zM624 80C632.8 80 640 87.2 640 96V112C640 120.8 632.8 128 624 128H16C7.2 128 0 120.8 0 112V96C0 87.2 7.2 80 16 80H64V-16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16H576V80H624zM176 -16H112V80H176V-16zM416 -16H224V80H416V-16zM528 -16H464V80H528V-16z" />
+    <glyph glyph-name="paper-plane"
+      unicode="&#xF1D8;"
+      horiz-adv-x="512" d=" M440 441.5L24 201.6C-10.4 181.7 -7.1 130.8 29.7 115.7L144 68.4V-16C144 -62.4 203.2 -81.5 230.6 -44.6L274.4 14.5L386.3 -31.7C392.2 -34.1 398.4 -35.3 404.6 -35.3C412.8 -35.3 420.9 -33.2 428.2 -29.1C441 -21.9 449.8 -9.1 452.1 5.4L511.4999999999999 392.6C517.5999999999999 432.7 474.6 461.4 440 441.5zM192 -16V48.6L228.6 33.5L192 -16zM404.6 12.7L250.8 76.2L391 278.5C401.7 294 381.5 312 367.3 299.7L155.8 115.4L48 160L464 400L404.6 12.7z" />
+    <glyph glyph-name="paperclip"
+      unicode="&#xF0C6;"
+      horiz-adv-x="512" d=" M67.508 -20.467C9.503 37.546 9.492 131.453 67.508 189.476L292.519 414.516C337.1620000000001 459.161 409.798 459.161 454.439 414.516C499.182 369.767 499.192 297.33 454.439 252.572L264.974 63.082C233.564 31.669 182.4559999999999 31.67 151.048 63.081C119.569 94.563 119.558 145.534 151.048 177.025L311.51 337.509C316.197 342.1960000000001 323.796 342.1960000000001 328.482 337.509L345.449 320.538C350.134 315.852 350.134 308.255 345.449 303.569L184.983 143.083C172.259 130.359 172.253 109.755 184.983 97.025C197.679 84.328 218.339 84.326 231.037 97.026L420.502 286.515C446.4890000000001 312.504 446.496 354.5750000000001 420.503 380.5710000000001C394.572 406.505 352.384 406.5030000000001 326.454 380.5710000000001L101.444 155.5320000000001C62.195 116.28 62.186 52.737 101.443 13.475C140.728 -25.815 204.328 -25.812 243.605 13.503A739446.174 739446.174 0 0 0 439.497 209.51C444.183 214.197 451.779 214.194 456.466 209.506L473.433 192.535C478.118 187.849 478.122 180.256 473.437 175.57A755654.128 755654.128 0 0 1 277.5560000000001 -20.426C219.5220000000001 -78.518 125.5520000000001 -78.519 67.508 -20.467z" />
+    <glyph glyph-name="parachute-box"
+      unicode="&#xF4CD;"
+      horiz-adv-x="512" d=" M511.9 273C502.8 348.6 433.5 405.4 353.6 431.7C389.9 392.5 415.8 331.6 416 256.9L314.6 128H280V256H384C384 371.2 315.1 448 256 448S128 371.2 128 256H232V128H197.4L96 256.9C96.2 331.6 122.1 392.5 158.4 431.7000000000001C78.5 405.3 9.2 348.5 0.1 273C-1 263.9 6.9 256 16.1 256H35.6L160.3 97.5C160.3 97 160 96.5 160 96V-32C160 -49.7 174.3 -64 192 -64H320C337.7 -64 352 -49.7 352 -32V96C352 96.5 351.7 97 351.7 97.5L476.4 256H495.9C505.1 256 513 263.8 511.9 273zM304 -8C304 -12.4 300.4 -16 296 -16H216C211.6 -16 208 -12.4 208 -8V72C208 76.4 211.6 80 216 80H296C300.4 80 304 76.4 304 72V-8z" />
+    <glyph glyph-name="paragraph"
+      unicode="&#xF1DD;"
+      horiz-adv-x="384" d=" M372 416H165.588C74.935 416 0.254 343.118 0.001 252.465C-0.252 161.823 73.415 88 164 88V-20C164 -26.627 169.373 -32 176 -32H208C214.627 -32 220 -26.627 220 -20V360H260V-20C260 -26.627 265.373 -32 272 -32H304C310.627 -32 316 -26.627 316 -20V360H372C378.627 360 384 365.373 384 372V404C384 410.627 378.627 416 372 416zM164 144C104.448 144 56 192.449 56 252S104.448 360 164 360V144z" />
+    <glyph glyph-name="parking-circle-slash"
+      unicode="&#xF616;"
+      horiz-adv-x="496" d=" M160.09 80.09C160.09 71.25 167.25 64.09 176.09 64.09H192.09C200.93 64.09 208.09 71.25 208.09 80.09V131.82L160.09 169.35V80.09zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192C48 229.79 58.73 265.04 77.02 295.21L389.56 50.86C353.33 14.53 303.25 -8 248 -8zM208.09 253.67V264.0900000000001H256.0900000000001C278.1500000000001 264.0900000000001 296.0900000000001 246.15 296.0900000000001 224.09C296.0900000000001 212.53 291.0100000000001 202.3 283.1400000000001 194.99L208.09 253.67zM418.99 88.79L321.0300000000001 165.38C335.2200000000001 180.94 344.0900000000001 201.39 344.0900000000001 224.09C344.0900000000001 272.62 304.62 312.0900000000001 256.0900000000001 312.0900000000001H176.09C167.25 312.0900000000001 160.09 304.93 160.09 296.0900000000001V291.19L106.44 333.13C142.67 369.4700000000001 192.75 392 248 392C358.28 392 448 302.28 448 192C448 154.21 437.27 118.96 418.99 88.79z" />
+    <glyph glyph-name="parking-circle"
+      unicode="&#xF615;"
+      horiz-adv-x="496" d=" M256.09 312.0900000000001H176.09C167.25 312.0900000000001 160.09 304.93 160.09 296.0900000000001V80.09C160.09 71.2500000000001 167.25 64.09 176.09 64.09H192.09C200.93 64.09 208.09 71.2500000000001 208.09 80.09V136.09H256.09C304.62 136.09 344.09 175.5600000000001 344.09 224.09S304.62 312.0900000000001 256.09 312.0900000000001zM256.09 184.09H208.09V264.0900000000001H256.09C278.15 264.0900000000001 296.09 246.1500000000001 296.09 224.09S278.15 184.09 256.09 184.09zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 -8C137.72 -8 48 81.72 48 192S137.72 392 248 392S448 302.28 448 192S358.28 -8 248 -8z" />
+    <glyph glyph-name="parking-slash"
+      unicode="&#xF617;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM283.31 312.07L414.5800000000001 209.44C415.3800000000001 214.22 416.0600000000001 219.05 416.0600000000001 224.05C416.0600000000001 272.5900000000001 376.5800000000001 312.07 328.0400000000001 312.07H283.3100000000001zM490 368C493.3 368 496 365.3 496 362V145.79L544 108.26V368C544 394.5 522.5 416 496 416H150.37L211.77 368H490zM150 16C146.7 16 144 18.7 144 22V238.21L96 275.74V16C96 -10.5 117.5 -32 144 -32H489.63L428.23 16H150zM264.03 64.02C272.87 64.02 280.03 71.19 280.03 80.02V131.85L232.02 169.38V80.01C232.02 71.17 239.18 64.01 248.02 64.01H264.03z" />
+    <glyph glyph-name="parking"
+      unicode="&#xF540;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM400 22C400 18.7 397.3 16 394 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H394C397.3 368 400 365.3 400 362V22zM232 312.1H152C143.2 312.1 136 304.9 136 296.1V80.1C136 71.3 143.2 64.1 152 64.1H168C176.8 64.1 184 71.3 184 80.1V136.1H232C280.5 136.1 320 175.6 320 224.1C320.1 272.6 280.6 312.1 232 312.1zM232 184H184V264H232C254.1 264 272 246.1 272 224S254.1 184 232 184z" />
+    <glyph glyph-name="passport"
+      unicode="&#xF5AB;"
+      horiz-adv-x="448" d=" M416 448H64C28.65 448 0 419.35 0 384V0C0 -35.35 28.65 -64 64 -64H416C433.67 -64 448 -49.67 448 -32V416C448 433.67 433.67 448 416 448zM400 -16H64C55.18 -16 48 -8.82 48 0V384C48 392.82 55.18 400 64 400H400V-16zM112 32H336C344.8 32 352 39.2 352 48S344.8 64 336 64H112C103.2 64 96 56.8 96 48S103.2 32 112 32zM224 120C290.28 120 344 173.73 344 240C344 306.28 290.28 360 224 360C157.73 360 104 306.28 104 240C104 173.73 157.73 120 224 120zM310.38 256H275.79C274.4 279.68 270.04 300.99 263.52 318.19C287.57 305.98 305.33 283.32 310.38 256zM275.79 224H310.38C305.33 196.68 287.56 174.02 263.52 161.81C270.05 179.02 274.4 200.32 275.79 224zM224 325.76C230.91 317.39 241.51 293.37 243.96 256H204.03C206.49 293.37 217.09 317.39 224 325.76zM243.96 224C241.51 186.63 230.91 162.61 224 154.24C217.09 162.61 206.49 186.63 204.04 224H243.96zM184.47 318.19C177.95 300.99 173.6 279.68 172.2 256H137.61C142.67 283.32 160.43 305.98 184.47 318.19zM172.21 224C173.61 200.32 177.96 179.02 184.48 161.81C160.44 174.02 142.68 196.68 137.62 224H172.21z" />
+    <glyph glyph-name="pastafarianism"
+      unicode="&#xF67B;"
+      horiz-adv-x="640" d=" M624.52 100.33C591.9 112.8 567.18 96.06 549.15 83.88C532.06 72.35 525.9599999999999 69.46 517.75 72.52C509.66 75.61 506.94 81.9 501.88 101.9C498.55 115.05 494.44 131.21 483.92 144.54C486.17 147.46 488.35 150.33 490.3 153.12C500.47 143.56 513.71 136.0099999999999 532 136.0099999999999C565.97 136.0099999999999 582.87 161.79 594.06 178.8399999999999C604.65 194.9799999999999 609.06 200.0099999999999 616 200.0099999999999C629.25 200.0099999999999 640 210.7599999999999 640 224.0099999999999S629.25 248.01 616 248.01C582.03 248.01 565.13 222.2299999999999 553.94 205.18C543.35 189.04 538.94 184.0099999999999 532 184.0099999999999C514.17 184.0099999999999 492.38 250.73 428.07 290.4699999999999L443.09 320.4999999999999C444.74 320.3699999999999 446.32 319.9999999999999 448.01 319.9999999999999C483.36 319.9999999999999 512.01 348.6499999999999 512.01 383.9999999999999S483.36 447.9999999999999 448.01 447.9999999999999C412.67 447.9999999999999 384.01 419.3499999999999 384.01 383.9999999999999C384.01 367.81 390.22 353.19 400.13 341.9199999999999L384.28 310.2099999999999C365.31 316.19 344.11 320 320 320S274.69 316.19 255.73 310.2100000000001L239.88 341.92C249.79 353.2 256 367.81 256 384C256 419.35 227.35 448 192 448C156.66 448 128 419.35 128 384S156.65 320 192 320C193.68 320 195.26 320.37 196.92 320.5L211.94 290.4700000000001C148.35 251.16 125.44 184 108.01 184C101.07 184 96.67 189.03 86.07 205.17C74.89 222.22 57.98 248 24.01 248C10.76 248 0.01 237.25 0.01 224S10.76 200 24.01 200C30.95 200 35.35 194.97 45.95 178.83C57.14 161.78 74.04 136 108.01 136C126.3 136 139.54 143.54 149.71 153.11C151.66 150.32 153.85 147.45 156.09 144.53C145.57 131.2000000000001 141.46 115.04 138.13 101.89C133.07 81.89 130.35 75.61 122.26 72.5100000000001C114.07 69.4500000000001 107.92 72.34 90.86 83.8700000000001C72.86 96.0600000000001 48.14 112.7800000000001 15.49 100.3200000000001C3.08 95.6 -3.13 81.7400000000001 1.58 69.35C6.33 56.96 20.24 50.71 32.55 55.47C40.77 58.56 46.89 55.66 63.95 44.11C77.48 34.95 94.79 23.25 116.38 23.27C123.54 23.27 131.19 24.55 139.32 27.66C171.97 40.1 179.32 68.99 184.66 90.1C186.87 98.8200000000001 188.65 104.59 190.61 108.96C207.23 95.35 227.55 83.08 252.24 74.8000000000001C242.29 37.8000000000001 220.07 -16.0099999999999 192.01 -16.0099999999999C178.76 -16.0099999999999 168.01 -26.7599999999999 168.01 -40.0099999999999S178.76 -64.01 192.01 -64.01C258.75 -64.01 289.05 24.62 299.43 65.13C306.12 64.53 312.85 63.99 320.01 63.99S333.9 64.53 340.59 65.13C350.95 24.63 381.25 -64 447.99 -64C461.24 -64 471.99 -53.25 471.99 -40S461.24 -16 447.99 -16C420.06 -16 397.8 37.81 387.79 74.82C412.4600000000001 83.11 432.7700000000001 95.37 449.3900000000001 108.97C451.34 104.59 453.1300000000001 98.83 455.34 90.11C460.68 68.9999999999999 468.03 40.11 500.6800000000001 27.67C508.8000000000001 24.5599999999999 516.46 23.28 523.6200000000001 23.28C545.2100000000002 23.28 562.5200000000001 34.97 576.0500000000001 44.12C593.11 55.67 599.2400000000001 58.5699999999999 607.45 55.48C619.82 50.7499999999999 633.6700000000001 56.96 638.4200000000001 69.36C643.1400000000001 81.7499999999999 636.9200000000001 95.61 624.5200000000001 100.3299999999999zM447.99 400C456.81 400 463.99 392.82 463.99 384S456.81 368 447.99 368S431.99 375.18 431.99 384S439.17 400 447.99 400zM192.01 368C183.19 368 176.01 375.18 176.01 384S183.19 400 192.01 400S208.01 392.82 208.01 384S200.83 368 192.01 368zM320 112C239.41 112 197.9 164.17 181.51 191.97C197.99 219.95 239.49 272 320 272C400.5900000000001 272 442.1 219.83 458.49 192.03C442.01 164.05 400.51 112 320 112z" />
+    <glyph glyph-name="paste"
+      unicode="&#xF0EA;"
+      horiz-adv-x="448" d=" M433.941 254.059L382.059 305.9410000000001A48 48 0 0 1 348.118 320H320V368C320 394.51 298.51 416 272 416H210.586C201.582 434.902 182.294 448 160 448S118.418 434.902 109.414 416H48C21.49 416 0 394.51 0 368V80C0 53.49 21.49 32 48 32H128V-16C128 -42.51 149.49 -64 176 -64H400C426.51 -64 448 -42.51 448 -16V220.118A48 48 0 0 1 433.941 254.059zM349.875 270.243L398.243 221.875A6 6 0 0 0 400 217.632V208H336V272H345.632A6 6 0 0 0 349.875 270.243zM160 410C169.941 410 178 401.9410000000001 178 392S169.941 374 160 374S142 382.059 142 392S150.059 410 160 410zM128 272V80H54A6 6 0 0 0 48 86V362A6 6 0 0 0 54 368H109.414C118.418 349.098 137.706 336 160 336S201.582 349.098 210.586 368H266A6 6 0 0 0 272 362V320H176C149.49 320 128 298.51 128 272zM394 -16H182A6 6 0 0 0 176 -10V266A6 6 0 0 0 182 272H288V184C288 170.745 298.745 160 312 160H400V-10A6 6 0 0 0 394 -16z" />
+    <glyph glyph-name="pause-circle"
+      unicode="&#xF28B;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM352 272V112C352 103.2 344.8 96 336 96H288C279.2 96 272 103.2 272 112V272C272 280.8 279.2 288 288 288H336C344.8 288 352 280.8 352 272zM240 272V112C240 103.2 232.8 96 224 96H176C167.2 96 160 103.2 160 112V272C160 280.8 167.2 288 176 288H224C232.8 288 240 280.8 240 272z" />
+    <glyph glyph-name="pause"
+      unicode="&#xF04C;"
+      horiz-adv-x="448" d=" M192 369V17C192 -9.5 170.5 -31 144 -31H48C21.5 -31 0 -9.5 0 17V369C0 395.5 21.5 417 48 417H144C170.5 417 192 395.5 192 369zM144 23V363C144 366.3 141.3 369 138 369H54C50.7 369 48 366.3 48 363V23C48 19.7 50.7 17 54 17H138C141.3 17 144 19.7 144 23zM448 369V17C448 -9.5 426.5 -31 400 -31H304C277.5 -31 256 -9.5 256 17V369C256 395.5 277.5 417 304 417H400C426.5 417 448 395.5 448 369zM400 23V363C400 366.3 397.3 369 394 369H310C306.7 369 304 366.3 304 363V23C304 19.7 306.7 17 310 17H394C397.3 17 400 19.7 400 23z" />
+    <glyph glyph-name="paw-alt"
+      unicode="&#xF701;"
+      horiz-adv-x="448" d=" M400 304C373.49 304 352 282.51 352 256S373.49 208 400 208S448 229.49 448 256S426.51 304 400 304zM144 320C170.51 320 192 341.49 192 368S170.51 416 144 416S96 394.51 96 368S117.49 320 144 320zM304 320C330.51 320 352 341.49 352 368S330.51 416 304 416S256 394.51 256 368S277.49 320 304 320zM367.31 147.22C341.02 162.06 320.17 208.63 300.14 245.05C284.4100000000001 273.69 254.21 288 224 288S163.59 273.69 147.85 245.05C127.56 208.09 107.73 162.49 80.68 147.22C51.63 130.82 32 99.82 32 64.05C32 11.04 74.98 -31.93 128 -31.93C129.31 -31.97 130.6 -32 131.87 -32C180.75 -32 200.79 0.06 224 0.06S267.25 -32 316.13 -32C317.4 -32 318.69 -31.98 320 -31.93C373.02 -31.93 416 11.04 416 64.05C416 99.82 396.37 130.82 367.31 147.22zM320 16.07H319.19L318.38 16.04L316.13 16C300.43 16 290.85 21.71 277.59 29.63C263.83 37.84 246.7 48.06 224 48.06C201.3 48.06 184.17 37.84 170.41 29.62C157.16 21.71 147.58 16 131.87 16L129.63 16.04L128.82 16.07H128C101.53 16.07 80 37.59 80 64.05C80 81.37 89.08 96.84 104.29 105.43C138.85 124.95 159.54 164.35 179.54 202.45C183.02 209.07 186.46 215.65 189.92 221.93C199.13 238.7 218.33 240 224 240S248.87 238.7 258.08 221.93C261.35 215.98 264.64 209.76 267.97 203.45C288.44 164.72 309.62 124.67 343.71 105.42C358.92 96.83 368 81.36 368 64.04C368 37.59 346.4700000000001 16.0700000000001 320 16.0700000000001zM96 256C96 282.51 74.51 304 48 304S0 282.51 0 256S21.49 208 48 208S96 229.49 96 256z" />
+    <glyph glyph-name="paw-claws"
+      unicode="&#xF702;"
+      horiz-adv-x="512" d=" M256 192C175.25 192 64 83.81 64 5.3C64 -36.79 98.06 -64 150.78 -64C197.56 -64 227.18 -43.62 256 -43.62C284.99 -43.62 314.94 -64 361.2200000000001 -64C413.9400000000001 -64 448 -36.8 448 5.3C448 83.81 336.75 192 256 192zM361.2200000000001 -16C323.49 -16 295.4400000000001 4.38 256 4.38C216.77 4.38 188.94 -16 150.78 -16C136.31 -16 112 -13.23 112 5.3C112 53.07 198.09 144 256 144S400 53.06 400 5.3C400 -13.23 375.69 -16 361.2200000000001 -16zM493.5 257.63L448 320V253.06C428.17 246.51 410.49 228.63 403.28 204.6C392.88 169.95 408.05 136.22 437.17 129.26C467.36 122.04 498.73 146.08 508.73 179.39C517.5699999999999 208.89 507.1899999999999 238.87 493.4999999999999 257.63zM446.4 168.38C429.95 173.32 446.2 221.45 465.62 215.63C482.11 210.65 465.49 162.25 446.4 168.38zM318.55 225.39C358.92 214.76 388.36 261.21 396.01 289.26C404.45 320.2 399.0199999999999 350.31 384 368.01L320 448V373.04C304.05 361.78 290.51 342.67 283.98 318.75C272.13 275.33 287.62 233.53 318.55 225.39zM322.56 308.22C338.26 365.84 370.49 347.6 357.4 299.78C341.78 242.47 309.49 260.21 322.56 308.22zM108.73 204.61C101.52 228.64 83.84 246.52 64.01 253.07V320L18.5 257.63C4.81 238.87 -5.57 208.89 3.29 179.39C13.29 146.09 44.65 122.04 74.85 129.26C103.96 136.23 119.13 169.96 108.73 204.61zM65.6 168.38C46.51 162.26 29.88 210.66 46.38 215.63C65.8 221.44 82.05 173.31 65.6 168.38zM193.45 225.39C224.39 233.53 239.87 275.33 228.03 318.75C221.5 342.67 207.96 361.79 192.01 373.04V448L128 368.01C112.98 350.31 107.55 320.19 115.99 289.26C123.64 261.21 153.08 214.76 193.45 225.39zM189.44 308.22C202.51 260.21 170.22 242.47 154.6 299.78C141.51 347.6 173.75 365.84 189.44 308.22z" />
+    <glyph glyph-name="paw"
+      unicode="&#xF1B0;"
+      horiz-adv-x="512" d=" M74.84 161.27C103.96 168.23 119.13 201.96 108.72 236.61C99.6 267 73.83 288 47.98 288C44.36 288 40.74 287.5900000000001 37.17 286.73C8.05 279.77 -7.12 246.04 3.28 211.39C12.41 181 38.18 160 64.02 160C67.64 160 71.26 160.41 74.84 161.27zM41.59 222.9C38.71 232.49 40.21 240.27 42.56 244.37C44.25 247.3 45.86 247.69 46.47 247.83C46.95 247.9400000000001 47.44 248 47.98 248C54.5 248 65.93 240.04 70.41 225.11C73.29 215.52 71.79 207.73 69.44 203.64C67.75 200.71 66.14 200.32 64.02 200.01C57.5 200 46.08 207.96 41.59 222.9zM318.5600000000001 257.39C322.1100000000001 256.4600000000001 325.7100000000001 256.01 329.3200000000001 256.01C357.1600000000001 256.01 385.5400000000001 282.8300000000001 396.0200000000001 321.26C407.86 364.68 392.3800000000001 406.4700000000001 361.4400000000001 414.62A41.92 41.92 0 0 1 350.6800000000001 416.01C322.8400000000001 416.01 294.4600000000001 389.19 283.9800000000001 350.75C272.1400000000001 307.3300000000001 287.6200000000001 265.5300000000001 318.5600000000001 257.39zM322.5700000000001 340.2200000000001C328.98 363.71 344.28 376 350.68 376L351.26 375.93C352.14 375.7 353.72 374.26 355.27 371.5800000000001C359.35 364.52 362.36 349.85 357.43 331.7800000000001C351.04 308.35 335.81 296.0700000000001 328.8 296.0700000000001H328.74C327.86 296.3 326.2800000000001 297.73 324.73 300.42C320.6500000000001 307.48 317.6400000000001 322.14 322.57 340.2200000000001zM474.83 286.73C471.26 287.5900000000001 467.6300000000001 288 464.02 288C438.17 288 412.4000000000001 267 403.2800000000001 236.61C392.8800000000001 201.96 408.05 168.23 437.17 161.27C440.75 160.41 444.37 160 447.98 160C473.83 160 499.6 181 508.72 211.39C519.12 246.04 503.95 279.77 474.83 286.73zM470.41 222.9C465.97 208.12 454.74 200.1700000000001 446.7200000000001 200.1700000000001H446.4700000000001C445.86 200.31 444.25 200.7000000000001 442.56 203.6300000000001C440.2 207.7300000000001 438.71 215.5200000000001 441.59 225.1000000000001C446.08 240.0400000000001 457.5 248.0000000000001 464.02 248.0000000000001L465.53 247.8300000000001C466.14 247.6900000000001 467.75 247.3000000000001 469.44 244.3700000000001C471.8 240.2700000000001 473.29 232.4800000000001 470.41 222.9000000000001zM182.68 256C186.29 256 189.89 256.45 193.44 257.38C224.38 265.52 239.86 307.32 228.02 350.74C217.54 389.18 189.16 416 161.32 416C157.71 416 154.11 415.55 150.56 414.61C119.62 406.4700000000001 104.14 364.67 115.98 321.25C126.46 282.82 154.85 256 182.68 256zM156.73 371.58C158.28 374.26 159.86 375.7 160.74 375.93C160.86 375.96 161.03 376 161.32 376C167.72 376 183.02 363.71 189.43 340.22C194.36 322.14 191.35 307.48 187.27 300.42C185.72 297.74 184.14 296.3 182.68 296.01C176.28 296.01 160.97 308.3 154.57 331.79C149.64 349.86 152.65 364.52 156.73 371.58zM256 224C176.59 224 64 101.24 64 23.75C64 -11.15 90.81 -32 135.74 -32C184.58 -32 216.83 -6.92 256 -6.92C295.51 -6.92 327.85 -32 376.26 -32C421.19 -32 448 -11.15 448 23.75C448 101.24 335.4100000000001 224 256 224zM399.81 20.93C398.86 19.88 392.11 16 376.27 16C358.54 16 342.97 21.13 324.93 27.08C305.03 33.64 282.47 41.08 256.01 41.08C229.79 41.08 207.38 33.68 187.6099999999999 27.16C169.4699999999999 21.17 153.81 15.9999999999999 135.75 15.9999999999999C119.9 15.9999999999999 113.15 19.8899999999999 112.37 20.67C112.27 20.9 112.01 21.9 112.01 23.7499999999999C112 77.82 204.86 176 256 176S400 77.82 400 23.75C400 21.93 399.75 20.93 399.81 20.93z" />
+    <glyph glyph-name="peace"
+      unicode="&#xF67C;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM224 -6.42C179.13 -1.02 138.79 19.21 108.09 49.33L224 142.07V-6.42zM272 142.07L387.91 49.34C357.2 19.22 316.87 -1.01 272 -6.41V142.07zM48 192C48 294.14 125.02 378.51 224 390.42V203.54L78.18 86.88C59.17 117.46 48 153.41 48 192zM417.82 86.88L272 203.54V390.42C370.98 378.51 448 294.14 448 192C448 153.41 436.83 117.46 417.82 86.88z" />
+    <glyph glyph-name="pegasus"
+      unicode="&#xF703;"
+      horiz-adv-x="576" d=" M464 336C472.84 336 480 343.16 480 352S472.84 368 464 368S448 360.8400000000001 448 352S455.16 336 464 336zM575.95 345.75A47.943 47.943 0 0 1 565.01 376.2100000000001L543.28 402.7C559.3 408.1 572.41 421.54 575.8399999999999 438.36C576.85 443.32 572.96 448 567.9 448H432C363.6 448 306.18 400.05 291.5800000000001 336H265.7700000000001C226.8900000000001 336 187.1400000000001 348.31 161.37 377.44C157.35 381.98 152.2000000000001 384 147.16 384C137.38 384 128 376.4 128 364.94C128 278.85 187.76 202.22 268.01 181.73C278.12 179.15 288 186.92 288 197.36V213.72C288 220.68 283.56 227.0600000000001 276.85 228.9300000000001C239.51 239.3900000000001 207.93 266.6 190.53 302.2700000000001C213.91 292.9000000000001 239.36 288 265.7700000000001 288H336V304C336 357.0200000000001 378.98 400 432 400H483.33L528 345.7200000000001L528.05 280.37C528.05 275.6 525.02 271.36 520.51 269.82L489.49 259.23C487.98 258.71 479.78 256.28 473.01 263.06L448.05 288H416.05V208H416C416 181.91 403.32 158.97 384 144.36V-16H336V128L196.18 159.07L167.45 79.05L191.53 -16H150L128.87 71.86A31.697999999999997 31.697999999999997 0 0 0 129.24 88.04L151.94 164.76C128.54 174.28 112 197.17 112 224C112 238.97 117.17 252.67 125.8 263.51C116.85 277.75 110.15 293.3 105.12 309.58C97.19 303.15 89.84 296.04 83.99 287.6C37.36 285.45 0 247.16 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.6 229.09 64 226.63 64 224C64 193.87 75.91 165.91 96.16 145.42L83.22 101.66A78.948 78.948 0 0 1 82.17 60.81L106.28 -39.48C109.74 -53.86 122.6 -64 137.39 -64H212.09C232.95 -64 248.23 -44.36 243.11 -24.14L217.58 76.62L227.06 103.03L288 89.5V-32C288 -49.67 302.33 -64 320 -64H400C417.67 -64 432 -49.67 432 -32V123.65C451.96 146.12 463.31 174.69 463.97 205.2C464.02 206.13 464.05 213.63 464.05 213.63C485 206.67 502.36 212.91 504.99 213.8L536.01 224.39C559.97 232.57 576.02 255.09 576 280.41L575.95 345.75z" />
+    <glyph glyph-name="pen-alt"
+      unicode="&#xF305;"
+      horiz-adv-x="512" d=" M493.25 391.74L455.74 429.25C443.25 441.75 426.87 448 410.49 448S377.73 441.75 365.23 429.26L297.36 361.38L257.77 400.9700000000001C242.15 416.5900000000001 216.82 416.5900000000001 201.21 400.9700000000001L82.42 282.19C76.17 275.94 76.17 265.81 82.42 259.57L93.73 248.26C99.98 242.01 110.11 242.01 116.35 248.26L229.49 361.38L263.43 327.44L256.01 320.02L93.95 157.97A327.038 327.038 0 0 1 0.17 -37.12L0.14 -37.35C-1.45 -51.72 9.88 -64 23.95 -64C24.84 -64 25.73 -63.95 26.64 -63.85A327.077 327.077 0 0 1 221.98 29.95L384.02 192L418.76 226.74L493.25 301.23C518.25 326.23 518.25 366.75 493.25 391.74zM188.03 63.89C151.01 26.87 104.04 1.01 53.29 -10.71C65.01 40.03 90.88 87.02 127.89 124.03L289.94 286.08L297.36 293.5L357.5 233.36L350.08 225.94L188.03 63.89zM459.3099999999999 335.18L391.43 267.3L342.61 316.13L331.3 327.44L399.17 395.31C403.25 399.39 408.01 400 410.48 400C412.95 400 417.72 399.39 421.79 395.31L459.3 357.8C463.38 353.7200000000001 463.99 348.96 463.99 346.49S463.39 339.25 459.31 335.18z" />
+    <glyph glyph-name="pen-fancy"
+      unicode="&#xF5AC;"
+      horiz-adv-x="512" d=" M424.86 448C401.4100000000001 448 378.01 438.36 361.1500000000001 419.28L169.93 208L84.1 179.38A34.005 34.005 0 0 1 62.6 157.88L0 -30L33.99 -64L221.78 -1.38A33.967 33.967 0 0 1 243.27 20.12L271.88 106L483.07 297.3C544.5 351.62 500.08 448 424.86 448zM199.97 41.95L92.79 6.21L142.79 56.23C143.19 56.21 143.53 55.9999999999999 143.93 55.9999999999999C157.18 55.9999999999999 167.92 66.7499999999999 167.92 79.9999999999999C167.92 93.2599999999999 157.18 103.9999999999999 143.93 103.9999999999999C130.68 103.9999999999999 119.94 93.2599999999999 119.94 79.9999999999999C119.94 79.5899999999999 120.15 79.2599999999999 120.17 78.86L70.17 28.84L105.89 136.06L185.09 162.47L186.9 163.08L226.9600000000001 123.01L226.35 121.2L199.97 41.95zM450.87 332.88L258.87 158.96L222.87 194.9800000000001L397.1 387.49C404.23 395.56 414.09 400 424.86 400C445.0900000000001 400 464.46 381.87 463.78 359.88C463.47 349.56 459.03 340.11 450.87 332.88z" />
+    <glyph glyph-name="pen-nib"
+      unicode="&#xF5AD;"
+      horiz-adv-x="512" d=" M493.87 352.4L416.4 429.87C404.32 441.96 388.48 448 372.64 448C356.8 448 340.96 441.96 328.88 429.87L236.43 337.42L136.6 309.2100000000001A64.003 64.003 0 0 1 93.29 267.86L0 -12L52 -64L331.86 29.29A64.003 64.003 0 0 1 373.2100000000001 72.6L401.42 172.43L493.87 264.88C518.04 289.05 518.04 328.23 493.87 352.4zM327.02 85.65C325.58 80.55 321.71 76.5 316.68 74.82L83.83 -2.79L187.42 100.8C193.68 97.81 200.6 96 208 96C234.51 96 256 117.49 256 144S234.51 192 208 192S160 170.51 160 144C160 136.6 161.81 129.68 164.8 123.42L61.21 19.83L138.83 252.68C140.51 257.71 144.55 261.57 149.66 263.02L249.49 291.23L250.54 291.53L355.54 186.53L355.25 185.49L327.02 85.65zM459.9299999999999 298.82L385.52 224.41L288.41 321.52L362.82 395.93C365.11 398.22 374.49 403.9 382.4599999999999 395.93L459.9299999999999 318.46C465.35 313.05 465.35 304.24 459.9299999999999 298.82z" />
+    <glyph glyph-name="pen-square"
+      unicode="&#xF14B;"
+      horiz-adv-x="448" d=" M246.6 270.1L302.1 214.6C304.4000000000001 212.3 304.4000000000001 208.5 302.1 206.1L166.4 70.4L109.3 64.1C101.7 63.3 95.2 69.7 96 77.4L102.3 134.5L238 270.2C240.4 272.4 244.2 272.4 246.6 270.1zM345 282.9L314.9 313C305.5 322.4 290.3 322.4 281 313L257.9 289.9C255.6 287.6 255.6 283.8 257.9 281.4L313.4 225.9C315.7 223.6 319.5 223.6 321.9 225.9L345 249C354.3 258.3 354.3 273.5 345 282.9zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="pen"
+      unicode="&#xF304;"
+      horiz-adv-x="512" d=" M493.26 391.74L455.75 429.25C443.25 441.75 426.87 448 410.49 448S377.73 441.75 365.24 429.26L290.75 354.77L256 320.02L12.85 76.88L0.15 -37.34C-1.45 -51.72 9.88 -64 23.95 -64C24.84 -64 25.74 -63.95 26.64 -63.85L140.78 -51.24L384.02 192L418.76 226.74L493.25 301.23C518.25 326.23 518.25 366.75 493.26 391.74zM118.75 -5.39L51.17 -12.85L58.7 54.84L289.94 286.0800000000001L320.96 317.1L381.1 256.9600000000001L350.08 225.9400000000001L118.75 -5.39zM459.31 335.18L415.03 290.9L354.9 351.04L399.18 395.32C403.26 399.4 408.0199999999999 400.01 410.49 400.01S417.73 399.4 421.8 395.32L459.3099999999999 357.81C465.55 351.56 465.55 341.41 459.3099999999999 335.18z" />
+    <glyph glyph-name="pencil-alt"
+      unicode="&#xF303;"
+      horiz-adv-x="512" d=" M491.609 374.375L437.748 428.214C411.37 454.593 368.673 454.597 342.288 428.215L24.91 112.911L0.329 -36.085C-2.346 -52.3 11.697 -66.346 27.916 -63.672L176.911 -39.09L492.237 278.288C518.567 304.6190000000001 518.818 347.1670000000001 491.609 374.375zM200.443 136.443C204.739 132.147 210.37 130 216 130S227.261 132.147 231.557 136.443L350.586 255.473L379.1550000000001 226.904L210 56.645V98H162V146H120.644L290.903 315.155L319.4720000000001 286.586L200.442 167.557C191.853 158.965 191.853 145.035 200.4430000000001 136.4430000000001zM82.132 -10.132L53.869 18.131L66.009 91.718L84.409 110H126V62H174V20.41L155.718 2.009L82.132 -10.1320000000001zM461.117 309.401L461.066 309.35L461.015 309.2990000000001L412.985 260.9550000000001L324.9550000000001 348.985L373.2990000000001 397.0150000000001L373.3490000000001 397.0650000000001L373.3990000000001 397.115C382.5460000000001 406.261 397.3770000000001 406.374 406.6350000000001 397.1160000000001L460.489 343.2620000000001C470.367 333.3850000000001 470.4280000000001 318.713 461.117 309.4010000000001z" />
+    <glyph glyph-name="pencil-paintbrush"
+      unicode="&#xF618;"
+      horiz-adv-x="512" d=" M433.43 82.65C412.87 136.84 378.42 156.48 339.5 162.31L493.26 316.07C518.25 341.06 518.25 381.5899999999999 493.25 406.58L470.57 429.26C458.07 441.75 441.69 448 425.32 448C408.94 448 392.56 441.75 380.07 429.26L240.21 289.43L158.15 412.14C140.34 437.55 116.87 447.99 93.48 447.99C28.72 447.99 -35.44 367.9700000000001 22.84 303.94L133.26 182.49L19.08 68.34L0.33 -39.1C-1.98 -52.33 8.34 -64 21.18 -64C22.41 -64 23.65 -63.89 24.92 -63.67L132.37 -44.83L226.09 48.89C232.09 3.98 260.26 -64 368 -64C469.33 -64 512 17.42 512 110.07C500.99 102.55 462.34 71.42 449.85 71.42C442.43 71.42 436.0800000000001 75.66 433.43 82.65zM414 395.32C419.82 401.14 429.98 401.96 436.63 395.32L459.31 372.64C465.12 366.8400000000001 465.97 356.67 459.31 350.01L407.62 298.32L362.31 343.63L414 395.32zM58.33 336.25C47.72 347.9 45.39 358.51 50.75 370.64C57.9 386.82 77.07 399.99 93.47 399.99C99.73 399.99 109.17 398.39 118.25 385.46L205.6 254.83L167.23 216.47L58.33 336.25zM109.14 -0.17L54.17 -9.81L63.76 45.13L328.38 309.69L373.69 264.38L109.14 -0.17zM368 -16C333.46 -16 308.2 -7.42 292.94 9.51C273.01 31.62 271.65 65.39 272.81 76.54L275.02 97.84L294.95 117.77L321.01 116.09C352.42 114.07 373.55 105.16 388.54 65.65C397.57 41.81 418.99 25.82 444.06 23.67C430.03 0.87 406.6 -16 368 -16z" />
+    <glyph glyph-name="pencil-ruler"
+      unicode="&#xF5AE;"
+      horiz-adv-x="512" d=" M502.71 79.86L379.88 202.69L435.89 258.7L493.25 316.07C518.24 341.06 518.24 381.59 493.24 406.58L470.56 429.26C458.07 441.75 441.69 448 425.31 448S392.55 441.75 380.06 429.26L322.69 371.9L322.68 371.9100000000001L266.6600000000001 315.9L230.57 352L143.86 438.71C137.66 444.9 129.55 448 121.43 448S105.2 444.9 99 438.71L9.29 348.99C-3.09 336.6 -3.1 316.52 9.29 304.13L109.47 203.96L132.09 181.34L19.07 68.34L0.32 -39.1C-1.98 -52.34 8.33 -64 21.18 -64C22.41 -64 23.65 -63.89 24.92 -63.67L132.36 -44.83L245.31 68.1299999999999L368.14 -54.7C374.33 -60.89 382.45 -63.99 390.57 -63.99S406.81 -60.89 413 -54.7L502.71 35C515.1 47.39 515.1 67.47 502.71 79.86zM414 395.32C418.08 399.4 422.84 400.01 425.31 400.01C427.7800000000001 400.01 432.54 399.4 436.62 395.32L459.3 372.64C463.38 368.56 463.99 363.8 463.99 361.33S463.38 354.0900000000001 459.3 350.02L407.61 298.33L362.3 343.64L414 395.32zM143.41 237.9L54.75 326.56L121.44 393.25L160.39 354.31L138.36 332.28C132.11 326.03 132.11 315.9 138.36 309.65L149.67 298.3400000000001C155.92 292.0900000000001 166.05 292.0900000000001 172.3 298.3400000000001L194.33 320.37L196.65 318.05L232.75 281.9500000000001L166.06 215.27L143.41 237.9zM109.14 -0.17L54.17 -9.8099999999999L63.76 45.1300000000001L328.38 309.6900000000001L373.69 264.3800000000001L109.14 -0.17zM390.57 -9.2499999999999L279.25 102.06L345.94 168.75L384.38 130.31L362.35 108.28C356.1 102.03 356.1 91.9 362.35 85.65L373.6600000000001 74.34C379.9100000000001 68.09 390.04 68.09 396.29 74.34L418.3200000000001 96.37L457.26 57.43L390.5700000000001 -9.25z" />
+    <glyph glyph-name="pencil"
+      unicode="&#xF040;"
+      horiz-adv-x="512" d=" M491.609 374.375L437.748 428.214C411.37 454.593 368.6720000000001 454.597 342.288 428.215L24.91 112.911L0.329 -36.085C-2.346 -52.3 11.697 -66.346 27.916 -63.672L176.911 -39.09L492.237 278.288C518.567 304.6190000000001 518.818 347.1670000000001 491.609 374.375zM120.644 146L290.903 315.155L379.154 226.904L210 56.645V98H162V146H120.644zM82.132 -10.132L53.869 18.131L66.009 91.718L84.409 110H126V62H174V20.41L155.718 2.009L82.132 -10.1320000000001zM461.117 309.401L461.066 309.35L461.015 309.2990000000001L412.985 260.9550000000001L324.9550000000001 348.985L373.2990000000001 397.0150000000001L373.3490000000001 397.0650000000001L373.3990000000001 397.115C382.5460000000001 406.261 397.3770000000001 406.374 406.6350000000001 397.1160000000001L460.489 343.2620000000001C470.367 333.3850000000001 470.4280000000001 318.713 461.117 309.4010000000001z" />
+    <glyph glyph-name="pennant"
+      unicode="&#xF456;"
+      horiz-adv-x="576" d=" M542.3 264.5C520.4 259.7 437.6 250.4 295.9 327.3C221.3 367.7 158.4 377.7 109.2 375.3C121.5 414.3 90.9 448 56 448C25.1 448 0 422.9 0 392C0 369.7 13.2 350.6 32 341.6V-56C32 -60.4 35.6 -64 40 -64H72C76.4 -64 80 -60.4 80 -56V19.6C160.8 73.9 236.4 75.3 245.8 75.8C274 77.2 320.3 81.7 380.9 94.8C385.3 95.8 489.9 119.3 569.8 219.5C585.9 239.7 568.3 269.8 542.3 264.5zM370.8 141.7C313.3 129.3 269.8 125.1 243.4 123.7C173.8 120.2 117.8 97.4 80 75.8V324C124.1 332.6 189.6 330.3 273 285.1C374.4 230.2 450 215.3 498.9 213.6C437.1 157 371.5 141.9 370.8 141.7z" />
+    <glyph glyph-name="people-carry"
+      unicode="&#xF4CE;"
+      horiz-adv-x="640" d=" M128 352C154.5 352 176 373.5 176 400S154.5 448 128 448S80 426.5 80 400S101.5 352 128 352zM512 352C538.5 352 560 373.5 560 400S538.5 448 512 448S464 426.5 464 400S485.5 352 512 352zM600 197.4L581 275.8C576.8 293.1 564.3 307.8 547.5 315.1C530.6 322.5 511.8 321.6 496.1 312.8C470.5 298.4 455.8 265.2000000000001 449.3 246.6L437.1 211.9C436.5 210.2000000000001 435.4000000000001 208.7000000000001 433.7000000000001 207.6L416 197.5V320C416 328.8 408.8 336 400 336H240C231.2 336 224 328.8 224 320V197.5L206.2 207.6C204.6 208.7 203.4 210.2 202.8 211.9L190.6 246.6C184.1 265.2000000000001 169.4 298.4000000000001 143.8 312.8C128.1 321.6 109.3 322.5 92.4 315.1C75.7 307.8 63.2 293.1 58.9 275.8L40 197.3C34.9 176.2 42 154.1 58.3 139.8L127 79.8C133.3 74.3 137.2 66.6 137.9 58.3L145.9 -41.9C146.7 -51 154.8 -65.1999999999999 171.7 -63.9C184.9 -62.7999999999999 194.8 -51.3 193.7 -38.1L185 71.1C183.8 86.2000000000001 176.7 100.2000000000001 165.3 110.2000000000001L113.1 155.8000000000001L137.9 247.9000000000001C140.6 242.6000000000001 157.5 196.1000000000001 157.5 196.1000000000001C161.4 184.9000000000001 168.7 175.4000000000001 180.5 167.2000000000001L217.4 147.8000000000001C222 145.4000000000002 227.1 144.1000000000001 232.3 144.1000000000001H407.8C413 144.1000000000001 418.1 145.4000000000002 422.7 147.8000000000001L459.6 167.2000000000001C471.4 175.4000000000001 478.7 184.9000000000001 482.6 196.1000000000001C482.6 196.1000000000001 499.4999999999999 242.7000000000001 502.2 247.9000000000001L527 155.8000000000001L474.8 110.2000000000001C463.4 100.2000000000001 456.3 86.2000000000001 455.1 71.1L446.3 -38C445.3 -51.2 455.1 -62.8 468.3 -63.8C485.2 -65.1 493.4 -51.1 494.1 -41.8L502.1 58.4C502.8 66.7 506.7 74.5 513 79.9L581.7 139.8C598 154.1 605 176.3 600 197.4zM368 192H272V288H368V192zM638.2 -30.9L584.5 99.9L546.3 66.5000000000001L593.6999999999999 -49.0999999999999C598.6999999999999 -61.2999999999999 612.5999999999999 -67.1999999999999 624.9999999999999 -62.1999999999999C637.3999999999999 -57.1999999999999 643.1999999999999 -43.1999999999999 638.1999999999999 -30.8999999999999zM1.8000000000001 -30.9C-3.1999999999999 -43.2 2.6000000000001 -57.2 14.9000000000001 -62.2C27.3000000000001 -67.2 41.2000000000001 -61.3 46.2000000000001 -49.1L93.6000000000001 66.5L55.4000000000001 99.9L1.8 -30.9z" />
+    <glyph glyph-name="percent"
+      unicode="&#xF295;"
+      horiz-adv-x="384" d=" M96 224C149 224 192 267 192 320S149 416 96 416S0 373 0 320S43 224 96 224zM96 368C122.5 368 144 346.5 144 320S122.5 272 96 272S48 293.5 48 320S69.5 368 96 368zM288 160C235 160 192 117 192 64S235 -32 288 -32S384 11 384 64S341 160 288 160zM288 16C261.5 16 240 37.5 240 64S261.5 112 288 112S336 90.5 336 64S314.5 16 288 16zM381.9 397.2L57.2 -27C54.9 -30.1 51.3 -32 47.5 -32H12C2.4 -32 -3.3 -21.3 2 -13.3L327.2 411C329.5 414.1 333.1 416 336.9 416H372C381.6 416 387.3 405.2 381.9 397.2z" />
+    <glyph glyph-name="percentage"
+      unicode="&#xF541;"
+      horiz-adv-x="320" d=" M81.94 270.06C100.68 288.81 100.68 319.2 81.94 337.94C63.19 356.69 32.8 356.69 14.06 337.94C-4.68 319.2 -4.68 288.8 14.06 270.06C32.81 251.31 63.2 251.31 81.94 270.06zM238.06 113.94C219.32 95.2 219.32 64.8 238.06 46.06C256.81 27.32 287.2 27.32 305.94 46.06C324.68 64.81 324.68 95.2 305.94 113.94C287.19 132.69 256.8 132.69 238.06 113.94zM315.31 324.69L292.68 347.32C286.43 353.57 276.3 353.57 270.05 347.32L4.69 81.94C-1.56 75.69 -1.56 65.56 4.69 59.31L27.32 36.68C33.57 30.43 43.7 30.43 49.95 36.68L315.32 302.05C321.56 308.31 321.56 318.44 315.31 324.69z" />
+    <glyph glyph-name="person-booth"
+      unicode="&#xF756;"
+      horiz-adv-x="576" d=" M192 -48C192 -56.8 199.2 -64 208 -64H224C232.8 -64 240 -56.8 240 -48V128H192V-48zM63.6 320C90.1 320 111.6 341.5 111.6 368S90.1 416 63.6 416S15.6 394.5 15.6 368S37.1 320 63.6 320zM224.2 216H169.9L122.3 263.6C111.8 274.2 97.7 280 82.8 280H56.1C25.1 280 0 254.9 0.1 223.9L0.2 128L0 -40C0 -53.2 10.7 -64 24 -64C37.2 -64 48 -53.3 48 -40L48.2 77.9C48.4 77.7 48.7 77.6 49 77.4C49.2 77.2 49.3 77 49.5 76.9L100.9 38.5C102.9 37 104.1 34.6 104.1 32.1V-39.9C104.1 -53.1 114.9 -63.9 128.1 -63.9S152.1 -53.1 152.1 -39.9V32.1C152.1 49.7 143.7 66.5 129.6 76.9L111.7 90.3V206.5L138.4 179.7C145.8 172.2 156.2 168 166.7 168H224.3C237.5 168 248.3 178.8 248.3 192S237.5 216 224.2 216zM544 448H224C206.3 448 192 433.7 192 416V256H240V399.9L324.7 195.2C301.8 162.9 264 105.3 264 76C264 34.1 298.1 0 340 0C354.3 0 368.1 4.1 380 11.5C403.8 -3.5 436.2 -3.5 460 11.5C471.9 4 485.7 0 500 0C509.9 0 519.3 2 528 5.5V-48C528 -56.8 535.2 -64 544 -64H560C568.8 -64 576 -56.8 576 -48V416C576 433.7 561.7 448 544 448zM528 76C528 60.6 515.4 48 500 48C491.8 48 484 51.8 478.5 58.4C473.9 63.9 467.2 67.2 460 67.2S446 64 441.5 58.4C430.6 45.2 409.4 45.2 398.6 58.4C389.5 69.5 370.7000000000001 69.5 361.5 58.4C356 51.8 348.2 48 340 48C324.6 48 312 60.6 312 75.8C312.8 88 340.5 135.7 371.3 177.8C376.3 184.6 377.3 193.4 374.1 201.2L291.9 400H528V76z" />
+    <glyph glyph-name="person-carry"
+      unicode="&#xF4CF;"
+      horiz-adv-x="384" d=" M80 352C106.5 352 128 373.5 128 400S106.5 448 80 448S32 426.5 32 400S53.5 352 80 352zM368 352H208C199.2 352 192 344.8 192 336V208H158.4L126.3 285.5C117.6 306.4 97.3 320 74.6 320H56C25.1 320 0 294.9 0 264V161.7C0 154 3 132.2 21.3 117.7L97.7 57.3C103.4 52.8 107.4 46.5 109 39.4L128.6 -45.4C131.2 -56.9 143 -66.6 157.4 -63.4C170.3 -60.4 178.4 -47.5 175.4 -34.6L154 58.4C151.1 70.8 144.1 81.9 134.1 89.8L96 119.9V233.3L118.2 179.8C123.2 167.8 134.8 160 147.8 160H368C376.8 160 384 167.2 384 176V336C384 344.8 376.8 352 368 352zM336 208H240V304H336V208zM0 -40C0 -53.2 10.8 -64 24 -64S48 -53.3 48 -40V55.9C36 65.4 0.5 93.7 0 94.1V-40z" />
+    <glyph glyph-name="person-dolly-empty"
+      unicode="&#xF4D1;"
+      horiz-adv-x="512" d=" M32 400C32 426.5 53.5 448 80 448S128 426.5 128 400S106.5 352 80 352S32 373.5 32 400zM0 -40C0 -53.2 10.8 -64 24 -64S48 -53.3 48 -40V55.9C36 65.4 0.5 93.7 0 94.1V-40zM503.4 71.6L511.7 40.7C512.8 36.4 510.3 32.0000000000001 506 30.9L350.8 -10.7C345.7 -40.9 319.6 -64 287.9000000000001 -64C252.6 -64 223.9 -35.3 223.9 0C223.9 21.6 234.7000000000001 40.7 251.1 52.3L222.4 160H147.8C134.9 160 123.2 167.8 118.2 179.8L96 233.3V119.9L134.1 89.8C144.1 81.9 151.1 70.8 154 58.4L175.4 -34.6C178.4 -47.5 170.3 -60.4 157.4 -63.4C143 -66.6 131.3 -56.9 128.6 -45.4L109 39.4C107.4 46.5 103.4 52.8 97.7 57.3L21.3 117.6999999999999C3 132.2 0 154 0 161.7V264C0 294.9 25.1 320 56 320H74.7C97.3 320 117.7 306.4 126.4 285.5L158.5 208H209.6L193 269.6C191.9 273.9 194.4 278.3 198.7 279.4L229.6 287.7000000000001C233.9 288.8 238.3 286.3 239.4 282L298.1 63C315.8 60.2 331.2000000000001 50.3 340.9000000000001 36L493.7 77.2C497.9 78.4 502.3000000000001 75.8 503.4 71.6zM304 0C304 8.8 296.8 16 288 16S272 8.8 272 0S279.2 -16 288 -16S304 -8.8 304 0z" />
+    <glyph glyph-name="person-dolly"
+      unicode="&#xF4D0;"
+      horiz-adv-x="512" d=" M80 352C106.5 352 128 373.5 128 400S106.5 448 80 448S32 426.5 32 400S53.5 352 80 352zM503.4 71.6C502.3 75.9 497.9 78.4 493.6 77.3L473.3 71.9L432 226C429.9 233.8 421.7 239.8 412.4 237.3L262.1 197L239.3 282.1C238.2 286.4 233.8 288.9 229.5 287.8L198.6 279.5C194.3 278.4 191.8 274 192.9 269.7L209.4 208.1H158.3L126.2 285.6C117.5 306.5 97.2 320.1 74.5 320.1H56C25.1 320.1 0 295 0 264.1V161.8C0 154.1 3 132.3 21.3 117.8L97.7 57.4C103.4 52.9 107.4 46.6 109 39.5L128.6 -45.3C131.2 -56.8 143 -66.5 157.4 -63.3C170.3 -60.3 178.4 -47.4 175.4 -34.5L154 58.5C151.1 70.9 144.1 82 134.1 89.9L96 119.9V233.3L118.2 179.8C123.2 167.8 134.8 160 147.8 160H222.4L251.3 52.3C234.8 40.7 224 21.6 224 0C224 -35.3 252.7 -64 288 -64C319.7 -64 345.8 -40.9 350.9 -10.7L506.1 30.9C510.4 32.0000000000001 512.9 36.4 511.8 40.7L503.4 71.6zM288 -16C279.2 -16 272 -8.8 272 0S279.2 16 288 16S304 8.8 304 0S296.8 -16 288 -16zM340.9 36C331.2 50.2 315.8 60.1 298.1 63L274.6 150.8L394 182.5L427 59.3L340.9 36zM0 -40C0 -53.2 10.8 -64 24 -64S48 -53.3 48 -40V55.9C36 65.4 0.5 93.7 0 94.1V-40z" />
+    <glyph glyph-name="person-sign"
+      unicode="&#xF757;"
+      horiz-adv-x="512" d=" M501.5 381.3L433.9 405.9L439.4 420.9C442.4 429.2 438.1 438.4 429.8 441.4L414.8 446.9C406.5 449.9 397.3 445.6 394.3 437.3L388.8 422.3L321.1 446.9C310 451 302.5 442.4 300.6 437.4L256.8 317.1C253.8 308.8 258.1 299.6 266.4000000000001 296.6L334 272L318.2 228.5S268.3 245.6 268.7 245L218.2 303.6C207.8 314 193.4 320 178.6 320H115.7C94.3 320 75.2 308.1 65.6 289.1L2.5 162.7C-3.4 150.8 1.4 136.4 13.2 130.5C27.3 123.5 40.6 131.8 45.4 141.2L96 242.3V145.6L72.2 -36.9C70.5 -50.1 79.8 -62.1 92.9 -63.7999999999999C93.9 -63.9 95 -63.9999999999999 96 -63.9999999999999C107.9 -63.9999999999999 118.2 -55.1999999999999 119.8 -43.1L141 120H155L206.2 41.8C207.3 40.4 207.9 38.6 207.9 36.8V-40C207.9 -53.2 218.6 -64 231.9 -64C245.1 -64 255.9 -53.3 255.9 -40V36.8C255.9 49.5 251.6 61.9 245 69.9L191.9 151.1V260.7L233.5 212.4C239.6 206.3 247.1 201.6 255.4 198.8L301.7 183.4L287.8 145.1C284.8 136.8 289.1 127.6 297.4000000000001 124.6L312.4000000000001 119.1C320.7000000000001 116.1 329.9000000000001 120.4 332.9000000000001 128.7L379.1 255.6L446.7000000000001 231C458.0000000000001 226.9 465.4 235.7 467.2 240.6L511 360.8C514.1 369.1 509.8 378.3 501.5 381.3zM433.1 287L312.9000000000001 330.8L334.8 390.9L455 347.1L433.1 287zM144 351.9C170.5 351.9 192 373.4 192 399.9S170.5 447.9 144 447.9S96 426.4 96 399.9S117.5 351.9 144 351.9z" />
+    <glyph glyph-name="phone-office"
+      unicode="&#xF67D;"
+      horiz-adv-x="576" d=" M368 112H336C327.1600000000001 112 320 104.84 320 96V64C320 55.16 327.1600000000001 48 336 48H368C376.84 48 384 55.16 384 64V96C384 104.84 376.84 112 368 112zM320 192V160C320 151.16 327.1600000000001 144 336 144H368C376.84 144 384 151.16 384 160V192C384 200.84 376.84 208 368 208H336C327.1600000000001 208 320 200.84 320 192zM432 48H464C472.84 48 480 55.16 480 64V96C480 104.84 472.84 112 464 112H432C423.1600000000001 112 416 104.84 416 96V64C416 55.16 423.1600000000001 48 432 48zM432 144H464C472.84 144 480 151.16 480 160V192C480 200.84 472.84 208 464 208H432C423.1600000000001 208 416 200.84 416 192V160C416 151.16 423.1600000000001 144 432 144zM512 416H269.06C262.45 434.6 244.87 448 224 448H144C123.13 448 105.55 434.6 98.94 416H64C28.65 416 0 387.35 0 352V0C0 -35.35 28.65 -64 64 -64H512C547.35 -64 576 -35.35 576 0V352C576 387.35 547.35 416 512 416zM144 400H224V80H144V400zM528 0C528 -8.82 520.82 -16 512 -16H64C55.18 -16 48 -8.82 48 0V352C48 360.82 55.18 368 64 368H96V80C96 53.49 117.49 32 144 32H224C250.51 32 272 53.49 272 80V368H320V296C320 273.94 337.94 256 360 256H528V0zM528 304H368V368H512C520.82 368 528 360.82 528 352V304z" />
+    <glyph glyph-name="phone-plus"
+      unicode="&#xF4D2;"
+      horiz-adv-x="512" d=" M476.5 425.1L382.3 446.8C378.8 447.6 375.4 448 372 448C354 448 337.3 437.4 330 420.3L286.5 318.8C278.5 300.2000000000001 283.9 278.2000000000001 299.6 265.4L339.6 232.7C311 180.2 267.8 137 215.4 108.5L182.7 148.5C173.8 159.3 160.6 165.2 147.2 165.2C141.2 165.2 135.1 164 129.3 161.5L27.7 118.1C7.3 109.4 -3.8 87.4 1.1 65.8L22.8 -28.4C27.6 -49.3 46 -63.9 67.4 -63.9C312.3 -64 512 134.3 512 380.5C512 401.9 497.4 420.3 476.5 425.1zM69.3 -16L48.4 74.7L146.6 116.8L202.3 48.7C301.1 95.1 352.9 146.7000000000001 399.3 245.7000000000001L331.2000000000001 301.4000000000001L373.3000000000001 399.6L464 378.7C463 161.1 286.9 -15 69.3 -16zM88 240C88 231.2 95.2 224 104 224H120C128.8 224 136 231.2 136 240V312H208C216.8 312 224 319.2 224 328V344C224 352.8 216.8 360 208 360H136V432C136 440.8 128.8 448 120 448H104C95.2 448 88 440.8 88 432V360H16C7.2 360 0 352.8 0 344V328C0 319.2 7.2 312 16 312H88V240z" />
+    <glyph glyph-name="phone-slash"
+      unicode="&#xF3DD;"
+      horiz-adv-x="640" d=" M634 -23L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23zM403.5 232.6C401.7 229.2 399.3 226.2 397.3 222.9L435.1 193.4C444.9000000000001 209.4 454.3 226.4 463.3 245.7L395.2000000000001 301.4L437.3000000000001 399.6L528 378.7C527.7 301.5 504.9 229.7 466.4 168.9L504.4 139.2C549.4 208.7 575.9 291.4 575.9 380.5C575.9 401.9 561.3 420.3 540.4 425.1L446.3 446.8C424.7 451.8 402.7 440.6 394 420.2L350.5 318.7C342.5 300.1 347.9 278.1 363.6 265.3L403.5 232.6zM133.3 -16L112.4 74.7L210.6 116.8L266.3 48.7C292.8 61.1 315.7 74.0000000000001 336.2000000000001 88.0000000000001L296.2000000000001 119.3000000000001C290.6 115.7000000000001 285.3000000000001 111.7000000000001 279.4000000000001 108.5000000000001L246.7000000000001 148.5000000000001C233.9000000000001 164.2000000000001 211.9 169.6000000000001 193.3000000000001 161.6000000000001L91.7 118.1C71.3 109.4 60.2 87.4 65.1 65.8L86.8 -28.4C91.6 -49.3 110 -63.9 131.4 -63.9C235.6 -63.9 331.3 -27.8 407.3 32.4L368.2 63C302.6 13.9 221.5 -15.6 133.3 -16z" />
+    <glyph glyph-name="phone-square"
+      unicode="&#xF098;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM352 296C352 167.766 248.044 64 120 64A12.004 12.004 0 0 0 108.307 73.302L96.308 125.302A12 12 0 0 0 103.274 139.03L159.273 163.0290000000001A12 12 0 0 0 173.288 159.5980000000001L198.086 129.2900000000001C237.241 147.6600000000001 268.7240000000001 179.5770000000001 286.7100000000001 217.9140000000001L256.401 242.7120000000001A12 12 0 0 0 252.97 256.7270000000001L276.9700000000001 312.7260000000001A12 12 0 0 0 290.6980000000001 319.6920000000001L342.6980000000001 307.6930000000001A12 12 0 0 0 352 296z" />
+    <glyph glyph-name="phone-volume"
+      unicode="&#xF2A0;"
+      horiz-adv-x="448" d=" M226.615 35.424L198.529 105.642C190.615 125.427 170.898 136.946 150.322 134.889L128.352 132.692C122.102 160.604 121.91 190.564 128.35 219.31L150.32 217.113C170.861 215.058 190.602 226.546 198.528 246.359L226.615 316.577C235.053 337.671 227.194 361.7200000000001 207.929 373.761L151.754 408.868C133.657 420.179 109.555 418.078 93.738 402.262C-30.884 277.64 -31.609 75.087 93.738 -50.261C109.554 -66.075 133.651 -68.183 151.755 -56.867L207.929 -21.76C227.194 -9.719 235.053 14.331 226.615 35.424zM127.059 -15.701C21.661 90.361 21.517 261.495 127.06 367.703L181.706 333.5470000000001L154.269 264.958L94.323 270.951C69.103 201.156 69.082 150.901 94.323 81.05L154.27 87.045L181.706 18.454L127.059 -15.701zM282.7870000000001 346.787L271.3110000000001 335.311C267.194 331.194 266.6400000000001 324.727 269.9700000000001 319.951A55.699999999999996 55.699999999999996 0 0 0 280 288A55.68800000000001 55.68800000000001 0 0 0 269.969 256.05C266.64 251.274 267.194 244.806 271.31 240.69L282.786 229.214C287.977 224.023 296.537 224.694 300.935 230.573C312.913 246.586 320 266.4650000000001 320 288S312.913 329.414 300.936 345.428C296.538 351.308 287.978 351.978 282.787 346.787zM373.6620000000001 437.662L362.3390000000001 426.339C357.8780000000001 421.878 357.5930000000001 414.688 361.7800000000001 409.969C391.666 376.2920000000001 408 333.405 408 288S391.666 199.708 361.78 166.031C357.592 161.312 357.878 154.122 362.339 149.661L373.662 138.338C378.533 133.4670000000001 386.505 133.68 391.096 138.817C426.488 178.425 448 230.698 448 288S426.488 397.575 391.096 437.183C386.505 442.32 378.533 442.533 373.662 437.662zM328.307 392.307L316.952 380.952C312.546 376.546 312.273 369.523 316.267 364.739C334.227 343.229 344 316.362 344 288S334.227 232.771 316.267 211.26C312.273 206.477 312.546 199.453 316.952 195.047L328.307 183.692C333.242 178.757 341.3660000000001 179.027 345.889 184.342C369.655 212.269 384 248.46 384 288S369.655 363.731 345.889 391.657C341.366 396.972 333.242 397.241 328.307 392.307z" />
+    <glyph glyph-name="phone"
+      unicode="&#xF095;"
+      horiz-adv-x="512" d=" M476.5 425.1L382.3 446.8C360.7 451.8 338.7 440.6 330 420.2L286.5 318.7C278.5 300.1 283.9 278.1 299.6 265.3L339.6 232.6C311 180.2 267.8 137 215.4 108.5L182.7 148.5C169.9 164.2 147.9 169.6 129.3 161.6L27.7 118.1C7.3 109.4 -3.8 87.4 1.1 65.8L22.8 -28.4C27.6 -49.3 46 -63.9 67.4 -63.9C312.3 -64 512 134.3 512 380.5C512 401.9 497.4 420.3 476.5 425.1zM69.3 -16L48.4 74.7L146.6 116.8L202.3 48.7C301.1 95.1 352.9 146.7000000000001 399.3 245.7000000000001L331.2000000000001 301.4000000000001L373.3000000000001 399.6L464 378.7C463 161.1 286.9 -15 69.3 -16z" />
+    <glyph glyph-name="pi"
+      unicode="&#xF67E;"
+      horiz-adv-x="448" d=" M436 352H49.96C41.47 352 33.33 348.63 27.33 342.63L2.36 317.66C-2.68 312.62 0.89 304 8.02 304H144V166.21C144 118.09 126.66 72.64 94.9 37C90.64 32.22 90.59 25.11 95.11 20.58L112.1 3.59C116.93 -1.24 125.04 -1.23 129.62 3.84C169.95 48.47 192 105.65 192 166.21V304H288V68.1C288 39.62 304.96 12.59 331.9700000000001 3.5700000000001C361.5900000000001 -6.3199999999999 392.2000000000001 4.9900000000001 408.3400000000001 29.2500000000001L431.9700000000001 64.7000000000001C435.6500000000001 70.22 434.1600000000001 77.66 428.6400000000001 81.34L408.6700000000001 94.65C403.1500000000001 98.33 395.7000000000001 96.84 392.0300000000001 91.3200000000001L368.4100000000001 55.8600000000001A17.644 17.644 0 0 0 353.6900000000001 48.0000000000001C343.9400000000001 48.0000000000001 336.0000000000001 55.9400000000001 336.0000000000001 65.6900000000001V304H436.0000000000001C442.6300000000001 304 448.0000000000001 309.37 448.0000000000001 316V340C448.0000000000001 346.63 442.6300000000001 352 436.0000000000001 352z" />
+    <glyph glyph-name="pie"
+      unicode="&#xF705;"
+      horiz-adv-x="576" d=" M544 208C537.56 208 533.63 209.2 529.53 211.52C494.93 311.8300000000001 400.07 384 288 384C175.9 384 81.03 311.79 46.45 211.45C42.38 209.17 38.43 208 32 208C14.33 208 0 193.67 0 176S14.33 144 32 144C64.03 144 82.02 157.47 93.92 166.39C103 173.19 106.75 176 117.45 176C128.17 176 131.92 173.19 141 166.39C152.91 157.47 170.89 144 202.91 144C234.91 144 252.89 157.48 264.79 166.41C273.8400000000001 173.19 277.5900000000001 176 288.24 176C298.88 176 302.63 173.19 311.68 166.41C323.57 157.49 341.54 144 373.54 144S423.49 157.48 435.38 166.41C444.43 173.19 448.18 176 458.82 176C469.43 176 473.16 173.19 482.2 166.42C494.06 157.48 512.02 144 544 144C561.67 144 576 158.33 576 176S561.67 208 544 208zM206.31 296.8400000000001L190.31 264.8400000000001C187.5 259.23 181.84 256 176 256C173.59 256 171.16 256.55 168.84 257.69C160.93 261.64 157.75 271.25 161.68 279.16L177.68 311.16C181.65 319.08 191.24 322.21 199.15 318.32C207.06 314.36 210.25 304.75 206.31 296.8400000000001zM304 272C304 263.16 296.84 256 288 256S272 263.16 272 272V304C272 312.8400000000001 279.1600000000001 320 288 320S304 312.8400000000001 304 304V272zM407.16 257.69A16.138 16.138 0 0 0 400 256C394.1600000000001 256 388.5 259.23 385.69 264.8400000000001L369.69 296.8400000000001C365.75 304.75 368.94 314.36 376.85 318.31C384.79 322.23 394.35 319.0800000000001 398.3200000000001 311.15L414.3200000000001 279.15C418.2500000000001 271.25 415.0600000000001 261.64 407.1600000000001 257.69zM445.4 48H130.6L102.24 133.08C91.78 126.1 77.26 118.65 57.75 114.76L88.71 21.88A31.996 31.996 0 0 1 119.07 0H456.94C470.71 0 482.94 8.81 487.3 21.88L518.26 114.76C498.74 118.66 484.24 126.14 473.79 133.14L445.4 48z" />
+    <glyph glyph-name="pig"
+      unicode="&#xF706;"
+      horiz-adv-x="576" d=" M447.99 208C447.99 199.2 440.79 192 431.99 192S415.99 199.2 415.99 208S423.19 224 431.99 224S447.99 216.8 447.99 208zM576 240V112C576 103.2 568.8 96 560 96H511.3C502.4 84.2 491.7 73.9 480 64.9V0C480 -17.6 465.6 -32 448 -32H368C350.4 -32 336 -17.6 336 0V32H272V0C272 -17.6 257.6 -32 240 -32H160C142.4 -32 128 -17.6 128 0V64.7C89.4 93.9 64 139.8 64 192H56C22.7 192 -3.9 221.2 0.5 255.4C4.1 283.6 29.5 304 58 304C61.3 304 64 301.3 64 298V278C64 274.7 61.3 272 58 272H57C45.4 272 34.7 264.2 32.5 252.8C29.5 237.5 41.2 224 56 224H67.2C76.66 270.3400000000001 106.15 309.3 146.19 331.63L146.22 331.56C169.22 344.54 195.72 352 224.01 352H374.5C375.8 353 415.05 384 464.02 384H480.02V319.4C501.82 302.9 519.42 281.3 530.52 256H560C568.8 256 576 248.8 576 240zM528 208H499.1C476.2 260.3 477.4 261.1 432 295.5V330.2C413.6 323.3 400.9 311.6 391.4 304H223.99C162.19 304 111.99 253.8 111.99 192C111.99 128.4 161.39 99.6 175.99 88.6V16H223.99V80H384V16H432V88.6C468 116.1 463.9 112.9 487.4 144H528V208z" />
+    <glyph glyph-name="piggy-bank"
+      unicode="&#xF4D3;"
+      horiz-adv-x="576" d=" M560 224H530.5C519.4 249.3 501.8 270.9 480 287.4V352H464C433.7 352 406.2 341.9 383 325.8C383.4 329.2 384 332.5 384 336C384 397.9 333.9 448 272 448S160 397.9 160 336C160 326.3 161.5 317 163.8 308.1C114.9 288.2 78 244.9 67.2 192H56C41.2 192 29.5 205.5 32.5 220.8C34.7 232.2 45.4 240 57 240H58C61.3 240 64 242.7 64 246V266C64 269.3 61.3 272 58 272C29.5 272 4.1 251.6 0.5 223.4C-3.9 189.2 22.7 160 56 160H64C64 107.8 89.4 61.9 128 32.7V-48C128 -56.8 135.2 -64 144 -64H256C264.8 -64 272 -56.8 272 -48V0H336V-48C336 -56.8 343.2 -64 352 -64H464C472.8 -64 480 -56.8 480 -48V32.9C491.7 41.9 502.4 52.2 511.3 64H560C568.8 64 576 71.2 576 80V208C576 216.8 568.8 224 560 224zM272 400C307.3 400 336 371.3 336 336C336 330.4 335.1 325.1 333.7 320H224C219.5 320 215.2 319 210.7 318.7C209.1 324.2 208 330 208 336C208 371.3 236.7 400 272 400zM528 112H487.4C463.9 80.9 468 84.1 432 56.6V-16H384V48H224V-16H176V56.6C161.4 67.6 112 96.4 112 160C112 221.8 162.2 272 224 272H391.4C400.9 279.6 413.6 291.3 432 298.2V263.5C477.4 229.1 476.2 228.3 499.1 176H528V112zM432 192C423.2 192 416 184.8 416 176S423.2 160 432 160S448 167.2 448 176S440.8 192 432 192z" />
+    <glyph glyph-name="pills"
+      unicode="&#xF484;"
+      horiz-adv-x="576" d=" M112 416C50.1 416 0 365.9 0 304V80C0 18.1 50.1 -32 112 -32S224 18.1 224 80V304C224 365.9 173.9 416 112 416zM176 192H48V304C48 388.7 176 388.7 176 304V192zM529.1 241.1C466.7 303.5 365.3 303.6 302.8 241.1S240.3 77.3 302.8 14.8C365.2 -47.6 466.6 -47.7 529.1 14.8S591.6 178.6999999999999 529.1 241.1zM321.8 188.3L476.3 33.8C375.7 -30.8 257 87.5 321.8 188.3zM510.2 67.7000000000001L355.7 222.2C456.3 286.9 575 168.5 510.2 67.7z" />
+    <glyph glyph-name="place-of-worship"
+      unicode="&#xF67F;"
+      horiz-adv-x="576" d=" M558.57 108.01L448 155.42V173.88C448 185.12 442.1 195.53 432.4700000000001 201.32L384 230.4V345.37C384 353.86 380.63 362 374.62 368L299.31 443.31C296.19 446.44 292.09 448 288 448S279.81 446.44 276.69 443.31L201.37 368C195.37 362 192 353.86 192 345.38V230.4L143.54 201.32A32.002 32.002 0 0 1 128 173.87V155.41L17.43 108.0100000000001C6.96 103.01 0 90.11 0 75.68V-46.77C0 -56.28 5.97 -64 13.33 -64H32C40.84 -64 48 -56.84 48 -48V68.89L128 103.19V-48C128 -56.84 135.16 -64 144 -64H160C168.84 -64 176 -56.84 176 -48V164.82L240 203.22V338.74L288 386.74L336 338.74V203.22L400 164.82V-48C400 -56.84 407.1600000000001 -64 416 -64H432C440.84 -64 448 -56.84 448 -48V103.19L528 68.89V-48C528 -56.84 535.16 -64 544 -64H562.67C570.04 -64 576 -56.29 576 -46.77V75.68C576 90.11 569.04 103.01 558.57 108.01zM281.71 127.7C248.44 124.53 224 94.68 224 61.25V-48C224 -56.84 231.16 -64 240 -64H336C344.84 -64 352 -56.84 352 -48V64C352 101.42 319.88 131.34 281.71 127.7z" />
+    <glyph glyph-name="plane-alt"
+      unicode="&#xF3DE;"
+      horiz-adv-x="576" d=" M457.75 271.437H356.417L329.6600000000001 320H340C346.627 320 352 325.373 352 332V372C352 378.627 346.627 384 340 384H294.398L268.829 430.406L268.248 431.404C261.947 441.641 250.566 448 238.547 448H186.178C163.706 448 147.227 427.134 152.163 405.4220000000001L177.249 269.684A624.765 624.765 0 0 1 139.772 265.9120000000001L112.191 308.299C105.865 318.461 94.571 324.75 82.581 324.75H44.004C21.975 324.75 5.495 304.5950000000001 9.806 283.036L21.767 223.231C7.821 213.771 0 203.182 0 191.999S7.821 170.227 21.766 160.768L9.806 100.965C5.487 79.364 22.018 59.247 44.005 59.251L82.587 59.252C94.575 59.255 105.865 65.544 112.191 75.702L139.771 118.088A624.11 624.11 0 0 1 177.248 114.316L152.163 -21.42C147.222 -43.159 163.731 -64 186.178 -64H238.547C250.568 -64 261.948 -57.64 268.249 -47.402L268.5510000000001 -46.911L294.397 0H340C346.627 0 352 5.373 352 12V52C352 58.627 346.627 64 340 64H329.659L356.417 112.565L457.75 112.564C510.814 112.564 576 141.146 576 192C576 242.872 510.784 271.437 457.75 271.437zM457.75 160.564L328.06 160.565L230.778 -16H201.977L234.519 160.087C181.064 161.681 171.952 161.558 116.325 170.065L75.453 107.253L60.014 107.252L76.964 192L60.014 276.751H75.454L116.326 213.937C171.997 222.452 181.158 222.323 234.52 223.916L201.979 400H230.779L328.0600000000001 223.437H457.7500000000001C496.424 223.437 528 208 528 192S496.42 160.564 457.75 160.564z" />
+    <glyph glyph-name="plane-arrival"
+      unicode="&#xF5AF;"
+      horiz-adv-x="640" d=" M624 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM113.43 135.68C122.49 127.86 133.84 121.9 145.9 118.75L452.26 38.75C474.89 32.85 509.2 27.7 545.51 37.38C579.71 46.51 600.13 62.33 606.22 84.38C612.4100000000001 106.95 602.6700000000001 131.04 577.3000000000001 156.04C556.3900000000001 176.63 528.09 192.02 495.4400000000001 200.55L397.5500000000001 226.11L294.89 414.2A48.016 48.016 0 0 1 264.88 437.65C228.67 447.11 227.1 448 219.1 448C206.21 448 193.65 442.8 184.48 433.25A47.985 47.985 0 0 1 173.18 386.02L206.69 275.9600000000001L129.95 296L106.4 353.16C100.66 367.0900000000001 88.72 374.52 74.14 378.32C60 382.02 55.78 383.54 48 383.54C12.6 383.54 0 354.92 0 338.54V254C0 239.89 6.21 226.49 16.98 217.37L113.43 135.68zM48 338.54L62.02 334.88L94.67 255.6L277.6 207.83L219.1 400L252.76 391.21L365.35 184.92L483.31 154.12C507.83 147.72 528.68 136.56 543.6 121.86C558.72 106.97 560.34 98.62 559.94 97.16C559.5500000000001 95.74 553.85 89.3 533.1300000000001 83.77C526.3700000000001 81.97 501.4800000000001 75.52 464.3800000000001 85.2000000000001L158.0100000000001 165.2000000000001C153.0100000000001 166.5000000000001 148.3200000000001 168.97 144.4400000000001 172.3100000000001L48 254V338.54z" />
+    <glyph glyph-name="plane-departure"
+      unicode="&#xF5B0;"
+      horiz-adv-x="640" d=" M624 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM74.64 80.23A48.00200000000001 48.00200000000001 0 0 1 110.62 64H110.83L235.08 64.54C247.11 64.56 259.31 67.61 270.21 73.36L550.46 221.3C580.52 237.17 604.9300000000001 259.3400000000001 621.0400000000001 285.4100000000001C640.46 316.8300000000001 644.9900000000001 343.89 634.5000000000001 365.85C624.1200000000001 387.63 600.9700000000001 399.9100000000001 565.7100000000002 402.29C562.4800000000001 402.51 559.2500000000001 402.61 556.0300000000002 402.61C529.2300000000002 402.61 501.9300000000002 395.38 474.9100000000002 381.11L386.2300000000002 334.29L385.8700000000002 334.1L385.4800000000002 334.25L184.4800000000002 412.7100000000001A47.99000000000001 47.99000000000001 0 0 1 144.6200000000002 410.4500000000001L108.7 391.48A48.00200000000001 48.00200000000001 0 0 1 104.86 308.8400000000001L208.78 240.96L209.07 240.77L208.72 240.59L141.93 205.33L141.51 205.11L141.09 205.33L86.45 233.98A47.959999999999994 47.959999999999994 0 0 1 64.16 239.4700000000001C56.46 239.4700000000001 48.76 237.6200000000001 41.75 233.92L25.59 225.39A47.98700000000001 47.98700000000001 0 0 1 0.78 191.58A47.981 47.981 0 0 1 12.01 151.18L74.64 80.23zM64.16 191.48L141.59 150.88L303.57 236.39L131.11 349.03L167.03 368L388.86 281.41L497.32 338.66C517.37 349.25 537.13 354.61 556.04 354.61C558.18 354.61 560.3299999999999 354.54 562.48 354.4C577.51 353.38 589.04 349.69 591.19 345.1600000000001C593.2700000000001 340.8 591.6500000000001 329.15 580.21 310.65C568.59 291.85 550.5500000000001 275.63 528.0500000000001 263.75L247.81 115.81C243.77 113.68 239.29 112.55 234.87 112.54L110.62 112L48 182.95L64.16 191.48z" />
+    <glyph glyph-name="plane"
+      unicode="&#xF072;"
+      horiz-adv-x="576" d=" M239.57 400L340.14 224H456C482.03 224 518.87 204.27 527.1 192C518.87 179.73 482.03 160 456 160H340.14L239.57 -16H202.43L252.72 160H136L100 112H58.68L82 192L58.68 272H100L136 224H252.72L202.43 400H239.57M258.14 448H160.01C149.38 448 141.71 437.83 144.63 427.61L189.08 272H160L128.8 313.6C125.78 317.63 121.03 320 116 320H16.01C5.6 320 -2.04 310.2200000000001 0.49 300.12L32 192L0.49 83.88C-2.04 73.78 5.6 64 16.01 64H116C121.04 64 125.78 66.37 128.8 70.4L160 112H189.08L144.62 -43.6C141.7 -53.82 149.37 -64 160 -64H258.13C263.87 -64 269.17 -60.92 272.02 -55.94L368 112H456C500.18 112 576 147.82 576 192C576 236.19 500.18 272 456 272H368L272.03 439.94A15.998 15.998 0 0 1 258.14 448z" />
+    <glyph glyph-name="play-circle"
+      unicode="&#xF144;"
+      horiz-adv-x="512" d=" M371.7 210L195.7 317C179.9 325.8 160 314.5 160 296V88C160 69.6 179.8 58.2 195.7 67L371.7 168C388.1 177.1 388.1 200.8 371.7 210zM504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM56 192C56 302.5 145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192z" />
+    <glyph glyph-name="play"
+      unicode="&#xF04B;"
+      horiz-adv-x="448" d=" M424.4 233.3L72.4 441.4C43.8 458.3 0 441.9 0 400.1V-16C0 -53.5 40.7 -76.1 72.4 -57.3L424.4 150.7C455.8 169.2 455.9 214.8 424.4 233.3zM48 -5.5V389.5C48 394.1 53.1 397 57.1 394.7L391.3 197.2C395.2 194.9 395.2 189.2 391.3 186.9L57.1 -10.7C53.1 -13 48 -10.1 48 -5.5z" />
+    <glyph glyph-name="plug"
+      unicode="&#xF1E6;"
+      horiz-adv-x="384" d=" M360 304H24C10.745 304 0 293.255 0 280V200C0 186.745 10.745 176 24 176H32C32 95.792 91.02 29.372 168 17.792V-64H216V17.792C292.979 29.372 352 95.792 352 176H360C373.255 176 384 186.745 384 200V280C384 293.255 373.255 304 360 304zM336 224H304V176C304 114.102 253.908 64 192 64C130.102 64 80 114.092 80 176V224H48V256H336V224zM264 320V424C264 437.255 274.745 448 288 448S312 437.255 312 424V320H264zM72 320V424C72 437.255 82.745 448 96 448S120 437.255 120 424V320H72z" />
+    <glyph glyph-name="plus-circle"
+      unicode="&#xF055;"
+      horiz-adv-x="512" d=" M384 208V176C384 169.4 378.6 164 372 164H284V76C284 69.4 278.6 64 272 64H240C233.4 64 228 69.4 228 76V164H140C133.4 164 128 169.4 128 176V208C128 214.6 133.4 220 140 220H228V308C228 314.6 233.4 320 240 320H272C278.6 320 284 314.6 284 308V220H372C378.6 220 384 214.6 384 208zM504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM456 192C456 302.5 366.5 392 256 392S56 302.5 56 192S145.5 -8 256 -8S456 81.5 456 192z" />
+    <glyph glyph-name="plus-hexagon"
+      unicode="&#xF300;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM400 0H176L64 192L176 384H400L512 192L400 0zM416 208V176C416 169.4 410.6 164 404 164H316V76C316 69.4 310.6 64 304 64H272C265.4 64 260 69.4 260 76V164H172C165.4 164 160 169.4 160 176V208C160 214.6 165.4 220 172 220H260V308C260 314.6 265.4 320 272 320H304C310.6 320 316 314.6 316 308V220H404C410.6 220 416 214.6 416 208z" />
+    <glyph glyph-name="plus-octagon"
+      unicode="&#xF301;"
+      horiz-adv-x="512" d=" M497.9 297.5L361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512 276.3 506.9 288.5 497.9 297.5zM464 120.5L327.5 -16H184.5L48 120.5V263.5L184.5 400H327.6L464 263.5V120.5zM384 208V176C384 169.4 378.6 164 372 164H284V76C284 69.4 278.6 64 272 64H240C233.4 64 228 69.4 228 76V164H140C133.4 164 128 169.4 128 176V208C128 214.6 133.4 220 140 220H228V308C228 314.6 233.4 320 240 320H272C278.6 320 284 314.6 284 308V220H372C378.6 220 384 214.6 384 208z" />
+    <glyph glyph-name="plus-square"
+      unicode="&#xF0FE;"
+      horiz-adv-x="448" d=" M352 208V176C352 169.4 346.6 164 340 164H252V76C252 69.4 246.6 64 240 64H208C201.4 64 196 69.4 196 76V164H108C101.4 164 96 169.4 96 176V208C96 214.6 101.4 220 108 220H196V308C196 314.6 201.4 320 208 320H240C246.6 320 252 314.6 252 308V220H340C346.6 220 352 214.6 352 208zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="plus"
+      unicode="&#xF067;"
+      horiz-adv-x="384" d=" M368 224H224V368C224 376.8400000000001 216.84 384 208 384H176C167.16 384 160 376.8400000000001 160 368V224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H160V16C160 7.16 167.16 0 176 0H208C216.84 0 224 7.16 224 16V160H368C376.84 160 384 167.16 384 176V208C384 216.84 376.84 224 368 224z" />
+    <glyph glyph-name="podcast"
+      unicode="&#xF2CE;"
+      horiz-adv-x="512" d=" M299.429 -40.563C294.286 -59.573 274.858 -64 256 -64C237.143 -64 217.714 -59.573 212.572 -40.563C204.927 -12.134 192 59.102 192 92.25C192 127.406 223.142 136 256 136S320 127.406 320 92.25C320 59.301 307.129 -11.929 299.429 -40.563zM144 216C144 277.19 192.953 326.852 253.88 327.98C315.841 329.127 367.92 278.118 368 216.147C368.0350000000001 188.488 358.108 162.355 339.923 141.834C338.08 139.754 337.846 136.69 339.443 134.416C344.739 126.875 348.424 118.24 350.374 108.726C351.321 104.103 356.947 102.273 360.377 105.515C389.846 133.362 408.183 172.863 408 216.651C407.648 300.782 338.115 369.079 253.99 367.988C170.968 366.91 104 299.276 104 216C104 172.477 122.297 133.232 151.614 105.524C155.048 102.278 160.678 104.097 161.627 108.727C163.576 118.241 167.262 126.876 172.558 134.417C174.154 136.689 173.923 139.752 172.081 141.83C153.926 162.315 144 188.393 144 216zM256.503 447.999C126.406 448.271 21.207 344.312 20.01 214.22C19.108 116.127 78.064 31.708 162.565 -4.764C166.953 -6.658 171.673 -2.864 170.818 1.838A985.559 985.559 0 0 0 165.301 35.3969999999999A6.014 6.014 0 0 1 162.213 39.8039999999999C102.605 72.374 60 136.16 60 212C60 320.3210000000001 147.662 408 256 408C364.3210000000001 408 452 320.339 452 212C452 137.366 410.462 72.949 349.7870000000001 39.804A6.010000000000001 6.010000000000001 0 0 1 346.699 35.398A986.377 986.377 0 0 0 341.182 1.8389999999999C340.327 -2.864 345.048 -6.657 349.437 -4.763C433.298 31.434 492 114.855 492 212C492 342.1720000000001 386.611 447.728 256.503 447.999zM256 288C220.654 288 192 259.346 192 224S220.654 160 256 160S320 188.654 320 224S291.346 288 256 288z" />
+    <glyph glyph-name="podium-star"
+      unicode="&#xF758;"
+      horiz-adv-x="448" d=" M186 109.7L179.8 73.3C178.7 66.7 185.6 61.8 191.4 64.9L224 82.1L256.6 64.9C262.4000000000001 61.9 269.3 66.7000000000001 268.2000000000001 73.3L262.0000000000001 109.7L288.4000000000001 135.4C293.1 140 290.5000000000001 148.1 284.0000000000001 149L247.5000000000001 154.3L231.2000000000001 187.4C228.3000000000001 193.3000000000001 219.8000000000001 193.4 216.9 187.4L200.6 154.3L164.1 149C157.6 148.1 154.9 140 159.7 135.4L186 109.7zM432 288H112C112 321.8 133.2 350.7 164 362.3C172.9 337.7 196.3 320 224 320H256C291.3 320 320 348.7 320 384S291.3 448 256 448H224C199.4 448 178.2 433.9 167.5 413.5C108.6 402.1 64 350.2 64 288H16C7.2 288 0 280.8 0 272V256C0 247.2 7.2 240 16 240H67L90.7 -16H48C39.2 -16 32 -23.2 32 -32V-48C32 -56.8 39.2 -64 48 -64H400C408.8 -64 416 -56.8 416 -48V-32C416 -23.2 408.8 -16 400 -16H357.3L381 240H432C440.8 240 448 247.2 448 256V272C448 280.8 440.8 288 432 288zM224 400H256C264.8 400 272 392.8 272 384S264.8 368 256 368H224C215.2 368 208 375.2 208 384S215.2 400 224 400zM309 -16H139L115.3 240H332.8L309 -16z" />
+    <glyph glyph-name="podium"
+      unicode="&#xF680;"
+      horiz-adv-x="448" d=" M432 288H112C112 321.85 133.22 350.69 164.02 362.35C172.92 337.71 196.29 320 224 320H256C291.35 320 320 348.65 320 384S291.35 448 256 448H224C199.37 448 178.23 433.93 167.53 413.53C108.63 402.06 64 350.2 64 288H16C7.16 288 0 280.8400000000001 0 272V256C0 247.16 7.16 240 16 240H67.02L90.73 -16H48C39.16 -16 32 -23.16 32 -32V-48C32 -56.84 39.16 -64 48 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16H357.27L380.98 240H432C440.84 240 448 247.16 448 256V272C448 280.8400000000001 440.84 288 432 288zM224 400H256C264.82 400 272 392.82 272 384S264.82 368 256 368H224C215.18 368 208 375.18 208 384S215.18 400 224 400zM309.04 -16H138.96L115.25 240H332.75L309.04 -16z" />
+    <glyph glyph-name="poll-h"
+      unicode="&#xF682;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM48 16V368H400V16H48zM96 296V280C96 271.16 103.16 264 112 264H240C248.84 264 256 271.16 256 280V296C256 304.8400000000001 248.84 312 240 312H112C103.16 312 96 304.8400000000001 96 296zM96 200V184C96 175.16 103.16 168 112 168H336C344.84 168 352 175.16 352 184V200C352 208.84 344.84 216 336 216H112C103.16 216 96 208.84 96 200zM96 104V88C96 79.16 103.16 72 112 72H176C184.84 72 192 79.16 192 88V104C192 112.84 184.84 120 176 120H112C103.16 120 96 112.84 96 104z" />
+    <glyph glyph-name="poll-people"
+      unicode="&#xF759;"
+      horiz-adv-x="640" d=" M154.2 57.4C160.3 67.6 164 79.3 164 92C164 129.5 133.5 160 96 160S28 129.5 28 92C28 79.3 31.7 67.6 37.8 57.4C15.1 42.9 0 17.6 0 -11.2V-25.6C0 -46.8 17.2 -64 38.4 -64H153.6C174.8 -64 192 -46.8 192 -25.6V-11.2C192 17.6 176.9 42.9 154.2 57.4zM96 112C107 112 116 103 116 92S107 72 96 72S76 81 76 92S85 112 96 112zM144 -16H48V-11.2C48 7.3 63.1 22.4 81.6 22.4H110.4C128.9 22.4 144 7.3 144 -11.2V-16zM154.2 345.4C160.3 355.6 164 367.3 164 380C164 417.5 133.5 448 96 448S28 417.5 28 380C28 367.3 31.7 355.6 37.8 345.4C15.1 330.9 0 305.6 0 276.8V262.4C0 241.2 17.2 224 38.4 224H153.6C174.8 224 192 241.2 192 262.4V276.8C192 305.6 176.9 330.9 154.2 345.4zM96 400C107 400 116 391 116 380S107 360 96 360S76 369 76 380S85 400 96 400zM144 272H48V276.8C48 295.3 63.1 310.4 81.6 310.4H110.4C128.9 310.4 144 295.3 144 276.8V272zM616 416H248C234.7 416 224 405.3 224 392V280C224 266.7 234.7 256 248 256H616C629.3 256 640 266.7 640 280V392C640 405.3 629.3 416 616 416zM592 304H512V368H592V304zM616 128H248C234.7 128 224 117.3 224 104V-8C224 -21.3 234.7 -32 248 -32H616C629.3 -32 640 -21.3 640 -8V104C640 117.3 629.3 128 616 128zM592 16H352V80H592V16z" />
+    <glyph glyph-name="poll"
+      unicode="&#xF681;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM400 16H48V368H400V16zM120 64H136C144.84 64 152 71.16 152 80V208C152 216.84 144.84 224 136 224H120C111.16 224 104 216.84 104 208V80C104 71.16 111.16 64 120 64zM216 64H232C240.84 64 248 71.16 248 80V304C248 312.8400000000001 240.84 320 232 320H216C207.16 320 200 312.8400000000001 200 304V80C200 71.16 207.16 64 216 64zM312 64H328C336.84 64 344 71.16 344 80V144C344 152.84 336.84 160 328 160H312C303.1600000000001 160 296 152.84 296 144V80C296 71.16 303.1600000000001 64 312 64z" />
+    <glyph glyph-name="poo-storm"
+      unicode="&#xF75A;"
+      horiz-adv-x="448" d=" M400 255.6V256C400 294.2 377.5 327.3 345.1 342.8C337.8 402 287.2 448 226 448C218.2 448 211.3 446.9 207.2 446.3C190.7 443.7 176.8 432.8 170.4 417.4C164 402 166 384.4 175.7 370.9C177.2 368.8 178 366.4 178 364C178 357.4 172.6 352 166 352H144C91.1 352 48 308.9 48 256V255.6C19.2 237.1 0 204.7 0 168C0 110.7 46.7 64 104 64H128.3C128.4 64.6 128.3 65.2 128.3 65.8L134.5 112H104C73.1 112 48 137.1 48 168S73.1 224 104 224H108.5C100.8 232.5 96 243.7 96 256C96 282.5 117.5 304 144 304H166C199.1 304 226 330.9 226 364C226 377 221.7 389 214.7 398.9C218.4 399.5 222.2 400 226 400C265.8 400 298 367.8 298 328C298 319.5 296.3 311.5 293.6 304H304C330.5 304 352 282.5 352 256C352 243.7 347.2 232.5 339.5 224H344C374.9 224 400 198.9 400 168C400 139.1 378 115.6 350 112.6C353.4 101.1 352.2 88.5 346.1 78L338 64H344C401.3 64 448 110.7 448 168C448 204.7 428.8 237.1 400 255.6zM308 112H250.3L267.6 176.9C269.6 184.5 263.9000000000001 192 256 192H188C182 192 176.9 187.5 176.1 181.6L160.1 61.6C159.1 54.4 164.7 48 172 48H231.3L208.3 -49.2C206.5 -56.8 212.3 -64 220 -64C224.2 -64 228.2 -61.8 230.4 -58L318.4 94C323 102 317.2 112 308 112z" />
+    <glyph glyph-name="poo"
+      unicode="&#xF2FE;"
+      horiz-adv-x="512" d=" M343.7 96H168.3C162.5 96 158.5 90.3 160.5 85C171 57.1 218.9 32 256 32S341 57.1 351.5 85C353.5 90.3 349.5 96 343.7 96zM192 128C209.7 128 224 142.3 224 160S209.7 192 192 192S160 177.7 160 160S174.3 128 192 128zM320 192C302.3 192 288 177.7 288 160S302.3 128 320 128S352 142.3 352 160S337.7 192 320 192zM481.8 116.9C484.6 126.4 486 136.4 486 146.5C486 185.4 465 219.5 433.8 238.1C433.9000000000001 240.1 434 242 434 244C434 281.9 412.8 315 381.6 331.9C376.5 396.8 322.1 448 256 448C248.4 448 241.8 447.1 236.2 446.2C219.8 443.6 205.8 432.6 199.4 417.3C193 401.9 195 384.3 204.7 370.8C206.9 367.8 208 364.5 208 361C208 351.6 200.4 344 191 344H178C122.9 344 78 299.1 78 244C78 242 78.1 240 78.2 238.1C47 219.5 26 185.4 26 146.5C26 136.3 27.4 126.3 30.2 116.9C11.4 97.6 0 71.3 0 42.5C0 -16.2 47.8 -64 106.5 -64H405.5C464.2 -64 512 -16.2 512 42.5C512 71.3 500.6 97.6 481.8 116.9zM405.5 -16H106.5C74.2 -16 48 10.2 48 42.5C48 71.6 69.4 95.6 97.3 100.1C83.2 110.8 74 127.5 74 146.5C74 178.8 100.2 205 132.5 205H143.9C133 214.5 126 228.4 126 244C126 272.7 149.3 296 178 296H191C226.9 296 256 325.1 256 361C256 375.1 251.4 388.1 243.7 398.8C247.7 399.4 251.8 400 256 400C299.1 400 334 365.1 334 322C334 312.8 332.1 304.2 329.2 296H334C362.7 296 386 272.7 386 244C386 228.4 379 214.5 368.1 205H379.5C411.8 205 438 178.8 438 146.5C438 127.5 428.8 110.8 414.7 100.1C442.6 95.6 464 71.7000000000001 464 42.5C464 10.2 437.8 -16 405.5 -16z" />
+    <glyph glyph-name="poop"
+      unicode="&#xF619;"
+      horiz-adv-x="512" d=" M481.81 116.85C484.57 126.35 486 136.31 486 146.5C486 185.4 465.04 219.49 433.82 238.08C433.94 240.05 434 242.02 434 244C434 281.92 412.79 314.97 381.61 331.92C376.54 396.78 322.14 448 256 448C248.37 448 241.77 447.05 236.19 446.17A47.993 47.993 0 0 1 199.43 417.25A48.01 48.01 0 0 1 204.73 370.78C206.9 367.75 208 364.46 208 361C208 351.63 200.37 344 191 344H178C122.86 344 78 299.14 78 244C78 242.02 78.06 240.04 78.18 238.08C46.96 219.49 26 185.4 26 146.5C26 136.31 27.44 126.35 30.19 116.85C11.36 97.62 0 71.32 0 42.5C0 -16.22 47.78 -64 106.5 -64H405.5C464.22 -64 512 -16.22 512 42.5C512 71.32 500.64 97.62 481.81 116.85zM405.5 -16H106.5C74.19 -16 48 10.19 48 42.5C48 71.65 69.38 95.62 97.27 100.07C83.22 110.76 74 127.48 74 146.5C74 178.81 100.19 205 132.5 205H143.94C133.04 214.53 126 228.38 126 244C126 272.7200000000001 149.28 296 178 296H191C226.9 296 256 325.1 256 361C256 375.12 251.38 388.1 243.73 398.76C247.75 399.4 251.8 400 256 400C299.08 400 334 365.08 334 322C334 312.8300000000001 332.13 304.17 329.2200000000001 296H334C362.7200000000001 296 386 272.7200000000001 386 244C386 228.38 378.9700000000001 214.53 368.06 205H379.5C411.81 205 438 178.81 438 146.5C438 127.48 428.78 110.76 414.73 100.07C442.62 95.62 464 71.65 464 42.5C464 10.19 437.81 -16 405.5 -16z" />
+    <glyph glyph-name="portrait"
+      unicode="&#xF3E0;"
+      horiz-adv-x="384" d=" M336 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V400C384 426.5 362.5 448 336 448zM336 -16H48V400H336V-16zM192 192C227.3 192 256 220.7 256 256S227.3 320 192 320S128 291.3 128 256S156.7 192 192 192zM102.4 64H281.6C294 64 304 72.6 304 83.2V102.4C304 134.2 273.9 160 236.8 160H231.8C219.5 154.9 206.1 152 192 152S164.4 154.9 152.2 160H147.2C110.1 160 80 134.2 80 102.4V83.2C80 72.6 90 64 102.4 64z" />
+    <glyph glyph-name="pound-sign"
+      unicode="&#xF154;"
+      horiz-adv-x="320" d=" M308 88H277.716C271.089 88 265.716 82.627 265.716 76V19.165H112V168H212C218.627 168 224 173.373 224 180V204C224 210.627 218.627 216 212 216H112V293.081C112 330.519 138.786 360.4690000000001 184.958 360.4690000000001C210.898 360.4690000000001 233.65 348.587 245.51 341.0180000000001C250.651 337.7380000000001 257.433 338.862 261.268 343.6040000000001L280.926 367.909C285.276 373.2870000000001 284.188 381.2050000000001 278.561 385.2290000000001C262.736 396.544 229.027 416 184.334 416C105.716 416 48 364.836 48 295.577V216H20C13.373 216 8 210.627 8 204V180C8 173.373 13.373 168 20 168H48V19.165H12C5.373 19.165 0 13.792 0 7.165V-20C0 -26.627 5.373 -32 12 -32H308C314.627 -32 320 -26.627 320 -20V76C320 82.627 314.627 88 308 88z" />
+    <glyph glyph-name="power-off"
+      unicode="&#xF011;"
+      horiz-adv-x="512" d=" M388.5 401.7C457.9 357.7 504 280.2 504 192C504 55.2 393.2 -55.7 256.5 -56C120 -56.3 8.2 55 8 191.6C7.9 280 54 357.7 123.5 401.7C129.3 405.4 137 403.5 140.4 397.5L152.2 376.6C155.3 371.1 153.6 364.1 148.3 360.7C92.8 325.1 56 262.9 56 192C56 81.5 145.5 -8 256 -8S456 81.5 456 192C456 262.9 419.2 325.1 363.7 360.6C358.4 364 356.7 371 359.8 376.5L371.6 397.4C374.9000000000001 403.5 382.7000000000001 405.3 388.5 401.7zM280 172V436C280 442.6 274.6 448 268 448H244C237.4 448 232 442.6 232 436V172C232 165.4 237.4 160 244 160H268C274.6 160 280 165.4 280 172z" />
+    <glyph glyph-name="pray"
+      unicode="&#xF683;"
+      horiz-adv-x="384" d=" M256 320C291.35 320 320 348.65 320 384S291.35 448 256 448S192 419.35 192 384S220.65 320 256 320zM233.72 160.52A28.1 28.1 0 0 1 253.03 149.63C260.62 148.8 268.34 151.18 274.19 156.19L374.19 238.73C385.94 248.7800000000001 387.35 266.4600000000001 377.28 278.2100000000001C367.22 289.9600000000001 349.47 291.32 337.81 281.29L260.3399999999999 218.02L213.6499999999999 279.4C201.1499999999999 296.54 181.2099999999999 305.54 160.1799999999999 303.78C139.1499999999999 301.89 120.9899999999999 289.31 111.1199999999999 268.92L64.1199999999999 159.51C43.6499999999999 117.56 57.0299999999999 66.23 95.1799999999999 40.1L165.5 -8H28C12.53 -8 0 -20.53 0 -36S12.53 -64 28 -64H256C261.57 -64 288 -59.07 288 -32C288 -23.49 284.63 -15 277.94 -8.7L158.53 103.67L202.56 201.49L233.72 160.52z" />
+    <glyph glyph-name="praying-hands"
+      unicode="&#xF684;"
+      horiz-adv-x="640" d=" M620.12 83.58C630.22 81.05 640 88.7 640 99.12V115.63C640 122.98 635 129.38 627.88 131.17L560 148.15V214.42C560 235.61 554 256.37 542.69 274.29L452.89 414.38A72.052 72.052 0 0 1 391.95 448C378.37 448 365.11 444.17 353.57 436.89C334.68 424.96 322.5 405.32 320.28 382.58C318.65 365.91 323.7 351.48 332.63 337.32L362.56 289.88C346.18 288.65 331.51 281.69 320 271.29C308.49 281.69 293.82 288.65 277.44 289.88L307.37 337.32C316.3 351.48 321.35 365.91 319.7200000000001 382.58C317.49 405.33 305.31 424.96 286.43 436.89A71.807 71.807 0 0 1 248.05 448C223.32 448 200.32 435.31 187.11 414.38L97.31 274.29A112.125 112.125 0 0 1 80 214.42V148.15L12.12 131.16A16.005 16.005 0 0 1 0 115.63V99.12C0 88.7 9.78 81.05 19.88 83.58L128 110.64V214.42C128 226.53 131.43 238.39 137.89 248.63L227.72 388.76C235.33 400.82 251.88 403.73 263.21 394.53C272.85 386.7 274.08 372.29 267.44 361.78L209.88 272.78A64.107 64.107 0 0 1 199.99 238.58V161.95C199.99 153.11 207.15 145.93 215.99 145.93H231.99C240.83 145.93 247.99 153.1 247.99 161.95V218.01C247.99 231.27 258.74 242.03 271.99 242.03S295.99 231.27 295.99 218.01V148.92C295.99 93.79 258.51 45.74 205.08 32.37L12.11 -15.9300000000001C5 -17.71 0 -24.12 0 -31.47V-47.98C0 -58.4 9.78 -66.0500000000001 19.88 -63.52L216.74 -14.2500000000001C261.3400000000001 -3.09 297.67 25.5599999999999 320 63.05C342.33 25.5599999999999 378.66 -3.09 423.26 -14.2500000000001L620.12 -63.52C630.22 -66.0500000000001 640 -58.4 640 -47.98V-31.47C640 -24.12 635 -17.72 627.88 -15.93L434.91 32.37C381.48 45.74 344 93.8 344 148.92V218.01C344 231.27 354.75 242.0300000000001 368 242.0300000000001S392 231.2700000000001 392 218.01V161.9500000000001C392 153.1100000000001 399.1600000000001 145.9300000000001 408 145.9300000000001H424C432.84 145.9300000000001 440 153.1000000000001 440 161.9500000000001V238.5800000000001C440 250.6900000000001 436.57 262.5500000000001 430.11 272.7800000000001L372.55 361.7800000000001C365.92 372.29 367.14 386.7000000000001 376.7800000000001 394.5300000000001C388.0900000000001 403.7200000000001 404.6600000000001 400.8400000000001 412.2700000000001 388.7600000000001L502.1 248.6300000000001A64.116 64.116 0 0 0 511.99 214.4200000000001V110.64L620.12 83.58z" />
+    <glyph glyph-name="prescription-bottle-alt"
+      unicode="&#xF486;"
+      horiz-adv-x="448" d=" M136 128H192V72C192 67.6 195.6 64 200 64H248C252.4 64 256 67.6 256 72V128H312C316.4 128 320 131.6 320 136V184C320 188.4 316.4 192 312 192H256V248C256 252.4 252.4 256 248 256H200C195.6 256 192 252.4 192 248V192H136C131.6 192 128 188.4 128 184V136C128 131.6 131.6 128 136 128zM416 448H32C14.3 448 0 433.7 0 416V320C0 311.2 7.2 304 16 304H32V-32C32 -49.7 46.3 -64 64 -64H384C401.7 -64 416 -49.7 416 -32V304H432C440.8 304 448 311.2 448 320V416C448 433.7 433.7 448 416 448zM368 -16H80V304H368V-16zM400 352H48V400H400V352z" />
+    <glyph glyph-name="prescription-bottle"
+      unicode="&#xF485;"
+      horiz-adv-x="448" d=" M416 448H32C14.3 448 0 433.7 0 416V320C0 311.2 7.2 304 16 304H32V-32C32 -49.7 46.3 -64 64 -64H384C401.7 -64 416 -49.7 416 -32V304H432C440.8 304 448 311.2 448 320V416C448 433.7 433.7 448 416 448zM48 400H400V352H48V400zM368 -16H80V24H168C172.4 24 176 27.6 176 32V64C176 68.4 172.4 72 168 72H80V120H168C172.4 120 176 123.6 176 128V160C176 164.4 172.4 168 168 168H80V216H168C172.4 216 176 219.6 176 224V256C176 260.4 172.4 264 168 264H80V304H368V-16z" />
+    <glyph glyph-name="prescription"
+      unicode="&#xF5B1;"
+      horiz-adv-x="384" d=" M289.94 96L379.31 185.37C385.56 191.62 385.56 201.75 379.31 208L368 219.31C361.75 225.56 351.62 225.56 345.37 219.31L256 129.94L161.76 224.18C213.95 225.14 256 267.5800000000001 256 320C256 373.02 213.02 416 160 416H16C7.16 416 0 408.8400000000001 0 400V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V224H94.06L222.06 96L132.69 6.63C126.44 0.38 126.44 -9.75 132.69 -16L144 -27.31C150.25 -33.56 160.38 -33.56 166.63 -27.31L256 62.06L345.37 -27.31C351.62 -33.56 361.75 -33.56 368 -27.31L379.31 -16C385.56 -9.75 385.56 0.38 379.31 6.63L289.94 96zM48 272V368H160C186.47 368 208 346.4700000000001 208 320S186.47 272 160 272H48z" />
+    <glyph glyph-name="presentation"
+      unicode="&#xF685;"
+      horiz-adv-x="576" d=" M560 448H16C7.16 448 0 440.84 0 432V416C0 407.16 7.16 400 16 400H32V128C32 110.33 46.33 96 64 96H264V52.28L186.35 -25.37C180.1 -31.62 180.1 -41.75 186.35 -48L197.66 -59.31C203.91 -65.5599999999999 214.04 -65.5599999999999 220.29 -59.31L288 8.4L355.7200000000001 -59.32C361.9700000000001 -65.57 372.1 -65.57 378.35 -59.32L389.6500000000001 -48.0000000000001C395.9000000000001 -41.7500000000001 395.9000000000001 -31.6200000000001 389.6500000000001 -25.3700000000001L312 52.28V96H512C529.67 96 544 110.33 544 128V400H560C568.84 400 576 407.16 576 416V432C576 440.84 568.84 448 560 448zM496 144H80V400H496V144z" />
+    <glyph glyph-name="print-slash"
+      unicode="&#xF686;"
+      horiz-adv-x="640" d=" M451.91 180.26L486.61 153.13C487.29 155.34 488 157.56 488 160C488 173.26 477.25 184 464 184C459.49 184 455.51 182.42 451.91 180.26zM192 400H384V352C384 343.16 391.1600000000001 336 400 336H448V272H334.57L395.97 224H496C513.64 224 528 209.64 528 192V120.77L576 83.24V192C576 236.18 540.18 272 496 272V348.12C496 360.85 490.94 373.06 481.94 382.06L430.06 433.94C421.06 442.94 408.85 448 396.12 448H174.48C159.11 448 146.93 435.86 144.84 420.33L192 383.46V400zM633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM448 -16H192V48H387.3L325.9000000000001 96H112V192C112 209.64 126.36 224 144 224H162.18L110.48 264.42C83.1 251.71 64 224.17 64 192V64C64 55.16 71.16 48 80 48H144V-48C144 -56.84 151.16 -64 160 -64H480C488.84 -64 496 -56.84 496 -48V-36.98L448 0.55V-16z" />
+    <glyph glyph-name="print"
+      unicode="&#xF02F;"
+      horiz-adv-x="512" d=" M400 184C386.75 184 376 173.26 376 160C376 146.75 386.75 136 400 136S424 146.75 424 160C424 173.26 413.25 184 400 184zM432 272V348.12C432 360.85 426.94 373.06 417.94 382.06L366.06 433.94C357.06 442.94 344.85 448 332.12 448H110.48C93.64 448 80 433.67 80 416V272C35.82 272 0 236.18 0 192V64C0 55.16 7.16 48 16 48H80V-48C80 -56.84 87.16 -64 96 -64H416C424.84 -64 432 -56.84 432 -48V48H496C504.84 48 512 55.16 512 64V192C512 236.18 476.18 272 432 272zM128 400H320V352C320 343.16 327.1600000000001 336 336 336H384V272H128V400zM384 -16H128V48H384V-16zM464 96H48V192C48 209.64 62.36 224 80 224H432C449.64 224 464 209.64 464 192V96z" />
+    <glyph glyph-name="procedures"
+      unicode="&#xF487;"
+      horiz-adv-x="640" d=" M520 208H312C289.9 208 272 190.1 272 168V32H48V312C48 316.4 44.4 320 40 320H8C3.6 320 0 316.4 0 312V-56C0 -60.4 3.6 -64 8 -64H40C44.4 -64 48 -60.4 48 -56V-16H592V-56C592 -60.4 595.6 -64 600 -64H632C636.4 -64 640 -60.4 640 -56V88C640 154.2 586.2 208 520 208zM592 32H320V160H520C559.7 160 592 127.7 592 88V32zM160 64C204.1 64 240 99.9 240 144S204.1 224 160 224S80 188.1 80 144S115.9 64 160 64zM160 176C177.7 176 192 161.6 192 144S177.7 112 160 112S128 126.4 128 144S142.3 176 160 176zM144 320H258.3L295.2 246.1C299.3 237.9 310.9 237.9 315 246.1L369.1 354.3L386.3 320H504C517.2 320 528 330.7 528 344S517.2 368 504 368H416L379.1 441.9C375 450 363.3 450 359.3 441.9L305.2 333.7L288 368H144C135.2 368 128 360.8 128 352V336C128 327.2 135.2 320 144 320z" />
+    <glyph glyph-name="project-diagram"
+      unicode="&#xF542;"
+      horiz-adv-x="640" d=" M608 448H480C462.33 448 448 433.67 448 416V384H192V416C192 433.67 177.67 448 160 448H32C14.33 448 0 433.67 0 416V288C0 270.33 14.33 256 32 256H127.72L224 87.88V-32C224 -49.67 238.33 -64 256 -64H384C401.67 -64 416 -49.67 416 -32V96C416 113.67 401.67 128 384 128H274.76L192 272.5V320H448V288C448 270.33 462.33 256 480 256H608C625.67 256 640 270.3300000000001 640 288V416C640 433.67 625.67 448 608 448zM144 304H48V400H144V304zM272 80H368V-16H272V80zM592 304H496V400H592V304z" />
+    <glyph glyph-name="pumpkin"
+      unicode="&#xF707;"
+      horiz-adv-x="576" d=" M494.59 343.7200000000001C455.6 380.85 396.8 385.93 352 359V412.19C352 418.25 348.58 423.79 343.1600000000001 426.5L303.56 446.3C295.19 450.49 285.02 446.62 281.55 437.93L254.85 371.19C244.61 368.2000000000001 234.83 363.82 226.0000000000001 357.9600000000001C180.97 386.23 120.97 381.38 81.41 343.7100000000001C28.91 293.7200000000001 0 227.06 0 156S28.91 18.28 81.41 -31.73C119.07 -67.53 177.03 -74.26 222.5 -48.03C224.66 -46.8 227.41 -46.95 229.91 -48.42C247.06 -58.75 266.62 -64 288 -64S328.94 -58.75 346.0900000000001 -48.42C348.62 -46.95 351.37 -46.8 353.5000000000001 -48.03C398.9400000000001 -74.26 456.9100000000001 -67.5500000000001 494.59 -31.72C547.09 18.28 576 84.94 576 156S547.09 293.7200000000001 494.59 343.7200000000001zM288 -20C166.76 -20 163.8 332 288 332C409.24 332 412.2 -20 288 -20zM48 156C48 234.07 113.15 363.18 196.15 319.44C142.82 238.58 142.88 73.27 196.22 -7.54C113.56 -51.3 48 76.75 48 156zM379.78 -7.55C425.49 61.64 432.98 194.18 397.53 285.75C396.58 287.41 392.52 300.2 379.86 319.43C463.09 363.18 528 234.34 528 156C528 77.62 462.33 -51.34 379.78 -7.55z" />
+    <glyph glyph-name="puzzle-piece"
+      unicode="&#xF12E;"
+      horiz-adv-x="576" d=" M437.983 186.648C433.662 183.87 427.144 179.679 424.861 179.369C400.794 179.461 425.618 283.2100000000001 430.674 304.0830000000001C401.06 298.386 296.226 277.7460000000001 270.742 297.0370000000001C271.197 315.415 304 331.45 304 374.4120000000001C304 419.778 261.986 448 216.994 448C171.147 448 112 422.2440000000001 112 372.937C112 332.056 140.702 308.295 143.994 298.378C143.255 269.54 28.013 296.626 0 303.847V-47.709C10.464 -50.412 56.682 -64 104 -64C149.3 -63.999 192 -48.263 192 -3.146C192 28.627 160 42.511 160 70.688C160 87.209 189.235 97.751 209.361 97.751C230.486 97.751 256 86.337 256 72.163C256 48.143 224 35.281 224 -5.7610000000001C224 -72.599 305.555 -63.8340000000001 358.44 -56.9860000000001C395.479 -52.1890000000001 391.599 -53.0800000000001 431.509 -53.0800000000001C428.7100000000001 -44.1260000000001 403.4480000000001 28.0449999999999 417.617 47.3199999999999C427.6380000000001 60.959 456.988 15.9999999999999 501.654 15.9999999999999C548.715 16 576 67.513 576 112C576 169.793 530.025 245.814 437.983 186.648zM501.654 64C477.147 64 464.158 96.763 422.538 96.763C387.252 96.763 355.418 69.62 369.1070000000001 -7.268C350.077 -9.502 284.8580000000001 -20.1900000000001 272.778 -9.558C261.633 0.229 304 28.615 304 72.163C304 118.489 254.525 145.751 209.361 145.751C162.675 145.751 112 118.334 112 70.688C112 19.879 153.414 0.292 141.601 -8.866C124.75 -21.93 69.747 -13.988 48 -9.801V243.416C111.934 232.468 192 234.086 192 298.851C192 330.653 160 344.626 160 372.937C160 389.512 199.338 400 216.994 400C233.19 400 256 392.062 256 374.4120000000001C256 350.8880000000001 222.736 337.57 222.736 296.488C222.736 236.092 309.633 237.675 369.2440000000001 244.808C362.6520000000001 191.094 370.913 131.369 424.9350000000001 131.369C456.1580000000001 131.369 470.0760000000001 160 500.1550000000001 160C517.407 160 528 132.043 528 112C528 90.394 515.843 64 501.654 64z" />
+    <glyph glyph-name="qrcode"
+      unicode="&#xF029;"
+      horiz-adv-x="448" d=" M0 224H192V416H0V224zM40 376H152V264H40V376zM256 416V224H448V416H256zM408 264H296V376H408V264zM0 -32H192V160H0V-32zM40 120H152V8H40V120zM72 88H120V40H72V88zM72 344H120V296H72V344zM376 296H328V344H376V296zM416 160H448V32H320V64H288V-32H256V160H352V128H416V160zM416 0H448V-32H416V0zM352 0H384V-32H352V0z" />
+    <glyph glyph-name="question-circle"
+      unicode="&#xF059;"
+      horiz-adv-x="512" d=" M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM256 -8C145.468 -8 56 81.431 56 192C56 302.495 145.472 392 256 392C366.491 392 456 302.529 456 192C456 81.47 366.569 -8 256 -8zM363.2440000000001 247.2C363.2440000000001 180.148 290.8230000000001 179.116 290.8230000000001 154.337V148C290.8230000000001 141.373 285.4500000000001 136 278.8230000000001 136H233.1760000000001C226.5490000000001 136 221.1760000000001 141.373 221.1760000000001 148V156.659C221.1760000000001 192.404 248.2760000000001 206.693 268.7550000000001 218.175C286.3160000000001 228.02 297.0790000000001 234.716 297.0790000000001 247.754C297.0790000000001 265 275.0800000000001 276.447 257.2950000000001 276.447C234.1060000000001 276.447 223.4010000000001 265.4700000000001 208.3530000000001 246.478C204.2960000000001 241.358 196.8930000000001 240.407 191.6870000000001 244.354L163.8630000000001 265.452C158.7560000000001 269.324 157.6120000000001 276.5180000000001 161.2190000000001 281.815C184.846 316.509 214.94 336 261.794 336C310.865 336 363.244 297.6960000000001 363.244 247.2zM298 80C298 56.841 279.159 38 256 38S214 56.841 214 80S232.841 122 256 122S298 103.159 298 80z" />
+    <glyph glyph-name="question-square"
+      unicode="&#xF2FD;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM400 22V362A6 6 0 0 1 394 368H54A6 6 0 0 1 48 362V22A6 6 0 0 1 54 16H394A6 6 0 0 1 400 22zM331.2440000000001 247.2C331.2440000000001 180.148 258.8230000000001 179.116 258.8230000000001 154.337V148C258.8230000000001 141.373 253.4500000000001 136 246.8230000000001 136H201.1760000000001C194.549 136 189.1760000000001 141.373 189.1760000000001 148V156.659C189.1760000000001 192.404 216.2760000000001 206.693 236.7550000000001 218.175C254.3160000000001 228.02 265.0790000000001 234.716 265.0790000000001 247.754C265.0790000000001 265 243.0800000000001 276.447 225.2950000000001 276.447C202.1060000000001 276.447 191.4010000000001 265.4700000000001 176.3530000000001 246.478C172.2960000000001 241.358 164.8930000000001 240.407 159.6870000000001 244.354L131.8630000000001 265.452C126.7560000000001 269.324 125.6120000000001 276.5180000000001 129.2190000000001 281.815C152.846 316.509 182.94 336 229.794 336C278.865 336 331.2440000000001 297.6960000000001 331.2440000000001 247.2zM266 80C266 56.841 247.159 38 224 38S182 56.841 182 80S200.841 122 224 122S266 103.159 266 80z" />
+    <glyph glyph-name="question"
+      unicode="&#xF128;"
+      horiz-adv-x="384" d=" M199.65 448C125.625 448 69.665 417.813 27.21 355.49C8.04 327.3400000000001 14.27 289.19 41.38 268.63L78.11 240.78C88.92 232.58 102.3 227.99 115.85 227.82C104.01 208.82 98.03 187.21 98.03 163.27V151.84C98.03 135.46 104.23 120.5 114.41 109.19C97.99 90.8 88 66.55 88 40C88 -17.35 134.65 -64 192 -64S296 -17.35 296 40C296 66.55 286.01 90.8 269.59 109.19C278.25 118.81 284.02 131.06 285.56 144.57C313.847 161.423 381.56 193.465 381.56 282.78C381.56 376.849 290.539 448 199.65 448zM192 -16C161.12 -16 136 9.12 136 40C136 70.873 161.118 96 192 96C222.887 96 248 70.868 248 40C248 9.12 222.88 -16 192 -16zM237.97 160.21V151.84C237.97 143.052 230.839 136.0000000000001 222.13 136.0000000000001H161.87C153.162 136.0000000000001 146.03 143.0510000000001 146.03 151.84V163.2700000000001C146.03 210.4500000000001 181.8 229.3100000000001 208.84 244.4700000000001C232.02 257.4700000000001 246.23 266.3 246.23 283.51C246.23 306.2800000000001 217.19 321.39 193.71 321.39C163.1 321.39 148.97 306.9 129.11 281.8300000000001C123.745 275.0590000000001 113.953 273.8200000000001 107.11 279.03L70.38 306.88C63.64 311.99 62.13 321.48 66.89 328.4700000000001C98.08 374.27 137.8 400 199.65 400C264.42 400 333.56 349.44 333.56 282.78C333.56 194.27 237.97 192.91 237.97 160.21z" />
+    <glyph glyph-name="quidditch"
+      unicode="&#xF458;"
+      horiz-adv-x="640" d=" M636.5 417L616.6 442C611.1 448.9 601 450 594.1 444.6L363.4000000000001 266.6L328.7000000000001 310.2C323.9000000000001 316.3 314.7000000000001 316.2 309.9000000000001 310.1L252.2 237C221.1 236.3 148.2 230.4 100.3 192.3C38.3 143 0 -63.3 0 -63.3C15.1 -64 212.4 -70.7 272.2 -23.2C319.9 14.7 342.2 84.2000000000001 350 114.4L434.3 153.9C441.3 157.2 443.4000000000001 166.2 438.6 172.2L403.3 216.5L634 394.5C640.9 400 642 410.1 636.5 417zM242.3 14.3C225.7 1.1 168 -14.2 59.5 -15.9C64.3 3.2 69.6 22.3 75.3 40.5L120.6 76.5C125.6 80.4 121.8 88.4 115.6 87.1L89.5 81.6C102.9 116.9 117.2 144.6 130.2 155C157.2 176.5 201.5 186 239.9 188.5L299.7 113.5C290.4 82.3 271.7 37.6 242.3 14.3zM330.3 158.2000000000001L290.5 208.1000000000001L314.7 238.9000000000001C317.1 241.9000000000001 321.7 242.0000000000001 324.1 238.9000000000001L367.9 184.0000000000001C370.3 181.0000000000001 369.3 176.5000000000001 365.8 174.8000000000001L330.3 158.2000000000001zM512.1 128.3000000000001C459.2 128.3000000000001 416.1 85.3000000000001 416.1 32.5000000000001S459.2 -63.2999999999999 512.1 -63.2999999999999S608.1 -20.3 608.1 32.5000000000001S565 128.3000000000001 512.1 128.3000000000001zM512.1 -15.4999999999999C485.6 -15.4999999999999 464.1 6.0000000000001 464.1 32.4S485.6 80.3 512.1 80.3S560.1 58.8 560.1 32.4S538.5 -15.4999999999999 512.1 -15.4999999999999z" />
+    <glyph glyph-name="quote-left"
+      unicode="&#xF10D;"
+      horiz-adv-x="576" d=" M504 224H448V232C448 254.1 465.9 272 488 272H496C522.5 272 544 293.5 544 320V368C544 394.5 522.5 416 496 416H488C386.5 416 304 333.5 304 232V40C304 0.3 336.3 -32 376 -32H504C543.7 -32 576 0.3 576 40V152C576 191.7 543.7 224 504 224zM528 40C528 26.8 517.2 16 504 16H376C362.8 16 352 26.8 352 40V232C352 307 413 368 488 368H496V320H488C439.5 320 400 280.5 400 232V176H504C517.2 176 528 165.2 528 152V40zM200 224H144V232C144 254.1 161.9 272 184 272H192C218.5 272 240 293.5 240 320V368C240 394.5 218.5 416 192 416H184C82.5 416 0 333.5 0 232V40C0 0.3 32.3 -32 72 -32H200C239.7 -32 272 0.3 272 40V152C272 191.7 239.7 224 200 224zM224 40C224 26.8 213.2 16 200 16H72C58.8 16 48 26.8 48 40V232C48 307 109 368 184 368H192V320H184C135.5 320 96 280.5 96 232V176H200C213.2 176 224 165.2 224 152V40z" />
+    <glyph glyph-name="quote-right"
+      unicode="&#xF10E;"
+      horiz-adv-x="576" d=" M200 416H72C32.3 416 0 383.7 0 344V232C0 192.3 32.3 160 72 160H128V152C128 129.9 110.1 112 88 112H80C53.5 112 32 90.5 32 64V16C32 -10.5 53.5 -32 80 -32H88C189.5 -32 272 50.5 272 152V344C272 383.7 239.7 416 200 416zM224 152C224 77 163 16 88 16H80V64H88C136.5 64 176 103.5 176 152V208H72C58.8 208 48 218.8 48 232V344C48 357.2 58.8 368 72 368H200C213.2 368 224 357.2 224 344V152zM504 416H376C336.3 416 304 383.7 304 344V232C304 192.3 336.3 160 376 160H432V152C432 129.9 414.1 112 392 112H384C357.5 112 336 90.5 336 64V16C336 -10.5 357.5 -32 384 -32H392C493.5 -32 576 50.5 576 152V344C576 383.7 543.7 416 504 416zM528 152C528 77 467 16 392 16H384V64H392C440.5 64 480 103.5 480 152V208H376C362.8 208 352 218.8 352 232V344C352 357.2 362.8 368 376 368H504C517.2 368 528 357.2 528 344V152z" />
+    <glyph glyph-name="quran"
+      unicode="&#xF687;"
+      horiz-adv-x="448" d=" M257.13 265.43L277.85 245.23L272.9600000000001 216.71C272.4400000000001 213.69 275.61 211.32 278.3800000000001 212.77L304 226.24L329.62 212.77C332.37 211.32 335.56 213.67 335.04 216.71L330.1500000000001 245.23L350.87 265.43C353.08 267.5900000000001 351.86 271.36 348.8 271.8L320.1600000000001 275.9600000000001L307.35 301.91C305.98 304.68 302.0200000000001 304.68 300.6500000000001 301.91L287.8400000000001 275.9600000000001L259.2000000000001 271.8C256.1400000000001 271.36 254.9200000000001 267.6 257.1300000000001 265.43zM232.66 144C244.97 144 257.19 146.23 268.69 150.53C274.28 152.41 278.03 157.59 278.03 163.47C278.03 170.99 271.91 177.11 264.34 177.11L260.9 176.94C221.71 176.94 189.84 208.8199999999999 189.84 248S221.72 319.06 260.9 319.06L264.34 318.89C270.81 318.89 276.43 323.48 277.72 329.78C279.06 336.37 275.47 342.9 269.13 345.33C257.28 349.75 245 352 232.66 352C175.32 352 128.66 305.3400000000001 128.66 248S175.31 144 232.66 144zM448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96z" />
+    <glyph glyph-name="rabbit-fast"
+      unicode="&#xF709;"
+      horiz-adv-x="640" d=" M598.33 258.56C596.35 259.9600000000001 598.59 258.54 556.9100000000001 283.79C555.47 292.58 553.5400000000001 301.54 551.1500000000001 310.46C542.64 342.2 516.85 416 461.17 416C456.16 416 451.18 415.35 446.37 414.05C427.87 409.09 414.5300000000001 397.04 406.69 379.14C397.85 382.17 388.8 384 379.81 384C363.3 384 348.13 377.93 337.1 366.9C331.4000000000001 361.2 322.1400000000001 349.26 320.36 330.68C292.78 344.15 266.77 352 239.89 352C199.14 352 162.35 333.53 127.52 296.01C113.81 306.23 97.41 312.01 79.99 312.01C35.8 312.01 -0.01 276.26 -0.01 232.02C-0.01 187.83 35.75 152.03 79.99 152.03C90.97 152.03 101.53 154.37 111.32 158.58C118.62 146.69 120.06 145.9 162.47 99.57L152.93 94.41C137.31 84.01 127.99 66.59 127.99 47.8199999999999V24.0899999999999C127.99 3.8999999999999 138.43 -14.2000000000001 155.87 -24.3300000000001C164.65 -29.4400000000001 174.31 -31.9900000000001 183.99 -31.9900000000001C193.52 -31.9900000000001 203.05 -29.5100000000001 211.77 -24.5400000000001L253.98 -0.4200000000001L268.58 -16.3700000000001A48.01 48.01 0 0 1 303.99 -31.9600000000001H463.99C490.5 -31.9600000000001 511.99 -10.4700000000001 511.99 16.0399999999999C511.99 42.1799999999999 499.39 65.4299999999999 479.94 80.0399999999999H541.01C595.59 80.0399999999999 639.99 124.1599999999999 639.99 178.3899999999999C640 210.1699999999999 624.42 240.1499999999999 598.33 258.5599999999999zM95.87 204.9C76.56 193.63 61.86 204.89 57.37 209.38C44.87 221.88 44.87 242.14 57.37 254.63C64.06 261.33 83.94 271.62 101.59 255.32C95.65 239.09 94.03 221.85 95.87 204.9zM187.97 17.14C184.47 15.12 181.47 16.33 179.97 17.16C178.5 18.04 176 20.08 176 24.08V47.81C176 50.5 177.34 52.98 177.62 53.31L195.82 63.12L220.76 35.88L187.97 17.14zM541.02 128.02H448L399.94 107.99C399.59 156.12 368.13 198.93 323.13 212.26L286.82 223.03C274.01 226.78 260.76 219.53 257.01 206.84C253.23 194.12 260.48 180.76 273.2 177L309.51 166.24C334.54 158.83 352.01 134.55 352.01 107.21V48.03H432.01C449.67 48.03 464.01 33.67 464.01 16.03H304L159.86 173.5C137.5 197.72 137.2 234.87 159.05 259.55C186.71 290.79 212.34 304 239.9 304C292.81 304 352.85 255.31 448.01 192.01C448.01 210.86 447.63 214.25 451.76 225.13C438.6 232.01 423.23 243.45 408.38 258.3C377.45 289.2200000000001 360.74 322.65 371.05 332.9500000000001C381.79 343.69 416.18 325.1500000000001 445.7100000000001 295.63C448.29 293.05 450.61 290.4500000000001 452.99 287.85C442.7200000000001 328.62 445.11 364.0200000000001 458.8 367.6900000000001C472.91 371.49 493.51 340.1500000000001 504.79 298.04C509.16 281.74 511.46 266.24 511.89 253.0600000000001C514.49 252.2200000000001 517.09 251.5000000000001 519.6800000000001 250.2400000000001L570.6600000000001 219.35C584.0600000000001 209.9 592.0100000000001 194.64 592.0100000000001 178.38C592.0000000000001 150.56 569.1700000000001 128.02 541.0200000000001 128.02zM512 208.01C503.16 208.01 496 200.85 496 192.01S503.16 176.01 512 176.01S528 183.17 528 192.01S520.84 208.01 512 208.01z" />
+    <glyph glyph-name="rabbit"
+      unicode="&#xF708;"
+      horiz-adv-x="512" d=" M500.36 26.12L404.4100000000001 146.78C447.75 157.25 480.02 196.13 480.02 242.36C480.02 290.35 447.2000000000001 316.77 437.1300000000001 323.38C458.33 430.9 401.03 448 378.86 448C361.94 448 347.7700000000001 441.09 336.02 430.64C324.27 441.09 310.11 447.99 293.2 448H293.18C267.26 448 206.97 425.1 239.44 303.95C240.43 300.25 241.52 296.53 242.72 292.77C240.53 283.61 240.02 275.23 240.02 269.34V234.41C176.88 219.44 125.42 175.27 99.13 117.34C92.93 118.92 86.58 120 80 120C35.81 120 0 84.24 0 40C0 -4.19 35.76 -40 80 -40C87.07 -40 93.9 -38.8 100.52 -36.98C115.18 -53.42 136.29 -64 160 -64H320.01C341.05 -64 358.93 -50.46 365.41 -31.63L373.17 -41.18C383.7 -55.54 400.27 -64 418.29 -64H456.01C476.36 -64 495.13 -52.94 504.99 -35.14C516.25 -14.82 513.39 9.73 500.36 26.12zM80.8 8.15C80.52 8.14 80.27 8 80 8C71.81 8 63.62 11.12 57.37 17.37C44.87 29.87 44.87 50.13 57.37 62.62C69.77 75.02 83.28 71.33 83.97 71.23C83.37 68.07 77.62 40.21 80.8 8.15zM456.01 -16H418.29C415.53 -16 412.97 -14.58 411.5 -12.24L341.04 74.52L224.01 16H288.01C305.67 16 320.01 1.64 320.01 -16H160.01C142.34 -16 128.01 -1.67 128.01 16V32C128.01 120.37 199.65 192 288.02 192V269.3400000000001C288.02 279.12 290.38 286.38 293.55 293C290.71 300.29 288.05 308.03 285.81 316.37C274.49 358.62 276.73 395.92 290.81 399.69C304.62 403.39 324.5899999999999 373.42 336.0199999999999 332.6C347.4799999999999 373.49 367.45 403.39 381.2299999999999 399.69C395.3099999999999 395.92 397.5499999999999 358.61 386.2299999999999 316.37C384.7999999999999 311.05 383.2299999999999 305.91 381.5399999999999 300.98L410.6699999999999 283.3300000000001C424.0699999999999 273.88 432.0199999999999 258.62 432.0199999999999 242.36C432.0199999999999 214.55 409.19 192 381.0299999999999 192H352.01V135.54L462.79 -3.76C466.1199999999999 -9.09 462.29 -16 456.01 -16zM368.02 256C368.02 264.8400000000001 360.86 272 352.02 272S336.02 264.8400000000001 336.02 256S343.18 240 352.02 240S368.02 247.16 368.02 256z" />
+    <glyph glyph-name="racquet"
+      unicode="&#xF45A;"
+      horiz-adv-x="640" d=" M616.3 386.7C562 465.2 434.4 467.7 333 397.6C275.3 357.6 237.4 302.3 224.6 247.7C214.6 205.1 194.5 166.2 168 131.9C167.6 132.1 152.9 140 137.3 129.1L13.6 42.4C-0.9 32.3 -4.4 12.3 5.7 -2.2L39.5 -50.4C50 -65.4000000000001 70 -68.1 84.1 -58.3L207.8 28.3C217.6 35.1 221.8 46.4 220.8 57.4999999999999C251.1 66.6999999999999 282.5 71.8 314.2000000000001 71.4999999999999C342.9000000000001 71.1999999999999 349.1 67.6999999999999 372.5000000000001 67.3999999999999C422.2000000000001 66.8999999999999 477.1 83.4999999999999 526.6 117.6999999999999C629.6 189.0999999999999 669.8 309.5 616.3000000000001 386.7zM69.7 -9.7L54.3 12.3L151.8 80.6L167.2 58.6L69.7 -9.7zM207.9 104C217.8 116.9 226.3 130.5 234.3 144.4C242.7 127.6 246.9 123.9 255.2 114.8C239.4 112.1999999999999 223.6 108.6999999999999 207.9 103.9999999999999zM499.3 157.3C459.6 129.8 414.6 114.9 372.7 115.4C233.3 116.9 237 272.7000000000001 360.3 358.1C416.9 397.2 466.3 400 486.9 400C496.9 400 496.9 400 486.9 400C625.0999999999999 398.5 624.0999999999999 243.6 499.3 157.3z" />
+    <glyph glyph-name="radiation-alt"
+      unicode="&#xF7BA;"
+      horiz-adv-x="496" d=" M181.9 192H100.2C90.7 192 82.7 184 83.7 174.6C88.5 129.6 111.5 90.2000000000001 145.2 63.3C153.1 57 164.7 58.6 170 67.2L213.1 136.1C194.5 147.8 181.9 168.4 181.9 192zM282.9 247.9L326.1 317C331.1 325 328.6 336 320.2 340.2C298.4 351 274 357.2 248.1 357.2S197.8 350.9 176 340.2C167.5 336 165 325 170.1 317L213.3 247.9C223.5 254.3 235.4 258.1 248.2 258.1S272.8 254.2 282.9000000000001 247.9zM395.7 192H314C314 168.4 301.5 147.8 282.8 136.1L325.9000000000001 67.2000000000001C331.2000000000001 58.6 342.8 57.0000000000001 350.7000000000001 63.3000000000001C384.3000000000001 90.1000000000001 407.4000000000001 129.6000000000001 412.2000000000001 174.6000000000001C413.2000000000001 184.0000000000001 405.2000000000001 192.0000000000001 395.7000000000001 192.0000000000001zM248 225C229.8 225 215 210.2 215 192S229.8 159 248 159S281 173.8 281 192S266.2 225 248 225zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8z" />
+    <glyph glyph-name="radiation"
+      unicode="&#xF7B9;"
+      horiz-adv-x="496" d=" M205.3 259.6C217.7 267.3 232.3 272 248 272S278.3 267.4 290.7 259.6L362.2 372.9C372.4 389.1 366.4 411.1 348.7 418.8C317.9 432.4 283.9 440 248 440S178.1 432.4 147.3 418.9C129.7 411.2 123.6 389.2 133.8 373L205.3 259.6zM248 392C269.5 392 290.5 388.6 310.7 382L270.3 318C262.9000000000001 319.3 255.5 320 247.9 320C240.4 320 232.9 319.3 225.5 318L185.1 382C205.5 388.6 226.5 392 248 392zM463.4 192H328.8C328.8 163.4 313.5 138.5 290.7 124.4L362.1 11.2C368.3 1.4 379.1 -4.1 389.9000000000001 -4.1C397.0000000000001 -4.1 404.1 -1.8 410.0000000000001 3.2C455.2 41.2 486.7 94.9 495.7 155.7C498.5000000000001 174.9 483.0000000000001 192 463.4 192zM392.8 53L352.5 116.9C358.7 125.3 363.8 134.4 367.8 144H444C435.5 109.8 417.8 78.4 392.8 53zM248 240C221.5 240 200 218.5 200 192S221.5 144 248 144S296 165.5 296 192S274.5 240 248 240zM167.2 192H32.6C13 192 -2.5 174.9 0.3 155.7C9.3 94.8 40.8 41.2 86 3.2C91.9 -1.7 99 -4.1 106.1 -4.1C116.9 -4.1 127.7 1.3 133.9 11.2L205.3 124.4C182.5 138.5 167.2 163.4 167.2 192zM103.2 53C78.2 78.4 60.6 109.8 52 144H128.2C132.1 134.4 137.3 125.3 143.5 116.9L103.2 53z" />
+    <glyph glyph-name="rainbow"
+      unicode="&#xF75B;"
+      horiz-adv-x="576" d=" M268.3 415.3C115.4 405.1 0 271.1 0 117.8V-16C0 -24.8 7.2 -32 16 -32H32C40.8 -32 48 -24.8 48 -16V128C48 270.7 173.2 384.7 319.6 366C440.6 350.5 528 241.6 528 119.7V-16C528 -24.8 535.2 -32 544 -32H560C568.8 -32 576 -24.8 576 -16V128C576 293.3 436 426.6 268.3 415.3zM262.7 317.9C166 305.5 96 218.4 96 120.8V-16C96 -24.8 103.2 -32 112 -32H128C136.8 -32 144 -24.8 144 -16V127.5C144 211.7 216.5 279.2 302.4 270.8C377.2 263.5 432 196.3 432 121.1V-16C432 -24.8 439.2 -32 448 -32H464C472.8 -32 480 -24.8 480 -16V127.5C480 241.7 379.8 332.9 262.7 317.9zM268.9 222.1C223.3 213.2 192 170.6 192 124.1999999999999V-16C192 -24.8 199.2 -32 208 -32H224C232.8 -32 240 -24.8 240 -16V128C240 154.5 261.5 176 288 176S336 154.5 336 128V-16C336 -24.8 343.2 -32 352 -32H368C376.8 -32 384 -24.8 384 -16V128C384 187.2 330.2 234 268.9 222.1z" />
+    <glyph glyph-name="raindrops"
+      unicode="&#xF75C;"
+      horiz-adv-x="448" d=" M320 231.3C334.8 203 351.2 180.9 365.4 161.7000000000001C388.7 130.2000000000001 400 114.0000000000001 400 90.5000000000001C400 49.5000000000001 364.1 16.1 320 16.1S240 49.5 240 90.5C240 113.8 251.3 130.1 274.7 161.8C288.9 181 305.2 203.1 320 231.3M160 416C156.1 416 152.1 413.7 150.7 409.1C135.8 359.8 104 346.4 104 311.7C104 280.9 129 256 160 256S216 280.9 216 311.7C216 346.6 184.2 359.6 169.3 409.1C168 413.6 164 416 160 416zM320 320C311 320 302 315 298.8 304.8C264.7 196.4 192 166.9 192 90.4C192 22.7 249.2 -32 320 -32S448 22.8 448 90.4C448 167.2 375.4 195.8 341.2 304.8C338.3 314.8 329.2 320 320 320zM56 224C52.1 224 48.1 221.7 46.7 217.1C31.8 167.8 0 154.4 0 119.7C0 88.9 25 64 56 64S112 88.9 112 119.7C112 154.6 80.2 167.6 65.3 217.1C64 221.6 60 224 56 224z" />
+    <glyph glyph-name="ram"
+      unicode="&#xF70A;"
+      horiz-adv-x="640" d=" M609.81 347.08L582.5899999999999 363.28C575.84 397.8400000000001 545.31 424 508.81 424H445.9C424.49 439.09 398.84 448 371.69 448C315.7200000000001 448 269.99 405.39 263.96 350.98C251.14 352.45 237.92 350.74 226.41 345.01C207.57 354.48 183.5 354.0900000000001 164.94 344.01C152 349.9 137.41 351.53 122.63 348.38C104.75 344.36 89.51 333.27 79.94 318.04C62.35 315.9600000000001 45.88 306.88 34.28 292.2100000000001C23.03 277.6400000000001 18.06 259.2700000000001 20 241.3300000000001C7.38 228.5500000000001 0 210.9900000000001 0 192.31S7.25 156.12 19.69 143.3900000000001C17.63 125.22 22.63 106.77 33.97 92.4500000000001C45.25 77.78 61.63 68.64 79.22 66.54C83.99 58.83 90.18 52.18 97.39 46.97L118.18 -39.4899999999999C121.64 -53.8699999999999 134.5 -64.01 149.29 -64.01H223.99C244.85 -64.01 260.13 -44.37 255.01 -24.15L240.34 33.76A66.566 66.566 0 0 1 255.57 31.99C266.07 31.99 276.29 34.44 285.51 39.08C291.2 36.31 297.47 34.62 304.03 33.49V-32C304.03 -49.67 318.36 -64 336.03 -64H416.03C433.7 -64 448.03 -49.67 448.03 -32V70.14C459.39 74.48 469.75 81.7 477.73 91.78C488.98 106.36 493.9499999999999 124.73 492.0099999999999 142.67C504.6299999999999 155.4499999999999 512.01 173.0099999999999 512.01 191.69C512.01 200.1699999999999 510.33 208.34 507.54 216H575.67C593.42 216 609.98 225.56 618.89 241.05C637.83 274.25 640.01 289.19 640.01 297.53C640 318.5899999999999 628.47 337.4699999999999 609.81 347.08zM161.89 -16L149.48 35.61C154.5 36.59 159.45 37.94 164.18 40.07C172.36 35.61 181.65 33.35 191.09 32.67L203.42 -16H161.89zM400.02 -16H352.02V38.2C363.72 33.97 376.44 32.82 389.37 35.61C393.07 36.44 396.57 37.75 400.02 39.16V-16zM575.66 264H452.64L435.41 220.61L453.7499999999999 210.34C467.17 202.78 467.72 181.06 453.4399999999999 173.03L435.1 162.76L442.85 143.23C449.04 127.71 436.63 111.18 421.07 113.76L399.88 117.53L393.85 96.86C390.04 83.79 373.83 76.3799999999999 361.97 86.9399999999999L344.81 102.16L328.81 85.72C322.25 78.94 310.3999999999999 77.43 301.93 85.49L285.34 101.2699999999999L268.81 85.43C261.3999999999999 78.41 249.78 78.37 242.81 85.1999999999999L226.22 101.5699999999999L209.38 85.43C200.8199999999999 77.1999999999999 187 81.15 182.69 85.68L167 101.91L149.84 87.27C137.82 77.09 121.58 83.39 117.65 97.3200000000001L111.71 118.2300000000001L90.3 114.4000000000001C75.71 111.7600000000001 62.43 127.7700000000001 68.83 143.8800000000001L76.58 163.4000000000001L58.24 173.6700000000001C44.82 181.2300000000001 44.27 202.9500000000001 58.55 210.9800000000001L76.89 221.2500000000001L69.14 240.7800000000001C62.91 256.3900000000001 75.6 273.0000000000001 90.92 270.2500000000001L112.11 266.4800000000001L118.14 287.1500000000001C122 300.3900000000001 138.34 307.5000000000001 150.02 297.0700000000001L167.18 281.8700000000001L183.15 298.2900000000001C187.59 302.7900000000001 201.43 306.7300000000001 209.37 298.8700000000001L225.96 282.4200000000001L242.87 298.5800000000001C250.15 305.5600000000001 262.06 305.6600000000001 269.46 298.5500000000001C281.09 287.4700000000001 300.86 247.9100000000001 353.9 247.9100000000001C396.31 247.9100000000001 430.81 282.4100000000001 430.81 324.8300000000001C430.81 355.2000000000001 409.31 382.0800000000001 379.81 388.7400000000001C369.28 392.67 361 385.95 361 377.78V361.5C361 357.03 363.4700000000001 353.02 367.2200000000001 351.02C378.92 346.9 390.81 341.95 390.81 324.82C390.81 304.46 374.25 287.9 353.9 287.9C325.68 287.9 302.74 310.85 302.74 339.06C302.74 377.08 333.68 408.01 371.68 408.01C398.44 408.01 423.36 395.63 440.4 376.01H508.8099999999999C523.81 376.01 536 363.81 536 348.79V335.13C606.12 293.42 596.88 307.89 575.66 264zM496 336C487.16 336 480 328.8400000000001 480 320S487.16 304 496 304S512 311.16 512 320S504.84 336 496 336z" />
+    <glyph glyph-name="ramp-loading"
+      unicode="&#xF4D4;"
+      horiz-adv-x="384" d=" M384 96V416C384 433.7 369.7 448 352 448H32C14.3 448 0 433.7 0 416V96C0 78.3 14.3 64 32 64H38.9L3.2 -19.4C-5.9 -40.5 9.6 -64 32.6 -64H351.5C374.5 -64 390 -40.5 380.9 -19.4L345.1 64H352C369.7 64 384 78.3 384 96zM56.8 -16L111.7 112H272.3L327.2 -16H56.8zM312.3 140.6C307.3 152.4 295.7 160 282.9000000000001 160H101.1C88.3 160 76.7 152.4 71.7 140.6L59.5 112H48V400H336V112H324.5L312.3 140.6z" />
+    <glyph glyph-name="random"
+      unicode="&#xF074;"
+      horiz-adv-x="512" d=" M505 48L425.8 -24.9C410.7 -40 384 -29.3 384 -7.9V32.1H353C349.7 32.1 346.5 33.5 344.2 36L254.4 133.2L292.5 174.5L372.3 88.2H384V136.2C384 157.6 410.7 168.3 425.8 153.2L505 82.2C514.3 72.6 514.3 57.4 505 48zM12 296H103.8L183.6 209.7L221.7 251L131.9 348.2C129.6 350.7 126.4 352.1 123.1 352.1H12C5.4 352.1 0 346.7 0 340.1V308.1C0 301.4000000000001 5.4 296 12 296zM505 337.9L425.8 408.9C410.7 424 384 413.3 384 392V352H353C349.7 352 346.5 350.6 344.2 348.1L103.8 88H12C5.4 88 0 82.6 0 76V44C0 37.4 5.4 32 12 32H123C126.3 32 129.5 33.4 131.8 35.9L372.2 296H384V248C384 226.6 410.7 215.9 425.8 231L505 304C514.3 313.4 514.3 328.6 505 337.9z" />
+    <glyph glyph-name="receipt"
+      unicode="&#xF543;"
+      horiz-adv-x="448" d=" M344 160H104C99.6 160 96 156.4 96 152V120C96 115.6 99.6 112 104 112H344C348.4 112 352 115.6 352 120V152C352 156.4 348.4 160 344 160zM400.8 442.3L357.3 411L318.7 438.8C301.9 450.9 279.5 450.9 262.6 438.8L224 411L185.4 438.8A47.888 47.888 0 0 1 129.3 438.8L90.7 411L47.2 442.3C27.4 456.5 0 442.4 0 418.1V-34.2C0 -58 27.1 -72.7999999999999 47.2 -58.4L90.7 -27L129.3 -54.8C146.1 -66.9 168.5 -66.9 185.4 -54.8L224 -27L262.6 -54.8C279.4000000000001 -66.9 301.9000000000001 -66.9 318.7000000000001 -54.8L357.3000000000001 -27L400.8000000000001 -58.3C420.6000000000001 -72.5 448.0000000000001 -58.4 448.0000000000001 -34.2V418.1C448 442 420.9 456.7 400.8 442.3zM400 1.5L357.3 32.2L290.6 -15.8L223.9 32.2L157.2000000000001 -15.8L90.5 32.2L48 1.5V382.5L90.7 351.8L157.4 399.8L224.1 351.8L290.8 399.8L357.5 351.8L400 382.5V1.5zM344 272H104C99.6 272 96 268.4 96 264V232C96 227.6 99.6 224 104 224H344C348.4 224 352 227.6 352 232V264C352 268.4 348.4 272 344 272z" />
+    <glyph glyph-name="rectangle-landscape"
+      unicode="&#xF2FA;"
+      horiz-adv-x="510" d=" M462 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H462C488.5 0 510 21.5 510 48V336C510 362.5 488.5 384 462 384zM456 48H54C50.7 48 48 50.7 48 54V330C48 333.3 50.7 336 54 336H456C459.3 336 462 333.3 462 330V54C462 50.7 459.3 48 456 48z" />
+    <glyph glyph-name="rectangle-portrait"
+      unicode="&#xF2FB;"
+      horiz-adv-x="385" d=" M385 -16V400C385 426.5 363.5 448 337 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H337C363.5 -64 385 -42.5 385 -16zM48 -10V394C48 397.3 50.7 400 54 400H331C334.3 400 337 397.3 337 394V-10C337 -13.3 334.3 -16 331 -16H54C50.7 -16 48 -13.3 48 -10z" />
+    <glyph glyph-name="rectangle-wide"
+      unicode="&#xF2FC;"
+      horiz-adv-x="640" d=" M592 351.5H48C21.5 351.5 0 330 0 303.5V80.5C0 54 21.5 32.5 48 32.5H592C618.5 32.5 640 54 640 80.5V303.5C640 330 618.5 351.5 592 351.5zM586 80.5H54C50.7 80.5 48 83.2 48 86.5V297.5C48 300.8 50.7 303.5 54 303.5H586C589.3 303.5 592 300.8 592 297.5V86.5C592 83.2 589.3 80.5 586 80.5z" />
+    <glyph glyph-name="recycle"
+      unicode="&#xF1B8;"
+      horiz-adv-x="512" d=" M214.951 376.932L185.408 328.1620000000001C181.983 322.5080000000001 174.63 320.689 168.964 324.093L148.402 336.448C142.708 339.87 140.877 347.267 144.317 352.949L173.902 401.81C211.232 463.404 300.779 463.389 338.1 401.81L382.2150000000001 328.954L417.1450000000001 349.942C429.413 357.313 444.3350000000001 346.084 440.9100000000001 332.357L419.024 244.542C416.887 235.968 408.203 230.75 399.629 232.888L311.8250000000001 254.794C298.0030000000001 258.24 295.2750000000001 276.7150000000001 307.4550000000001 284.033L341.086 304.241L297.041 376.948C278.405 407.695 233.585 407.678 214.951 376.932zM55.006 112.896L104.602 194.769L138.632 174.322C150.812 167.004 165.843 178.085 162.397 191.907L140.517 279.718C138.38 288.2920000000001 129.696 293.51 121.122 291.372L33.312 269.47C19.583 266.049 16.674 247.602 28.942 240.231L63.496 219.469L14.021 137.758C-24.729 73.819 21.448 -8 96.12 -8H164C170.627 -8 176 -2.627 176 4V28C176 34.627 170.627 40 164 40H96.045C58.786 40 35.619 80.907 55.006 112.896zM497.986 137.757L462.995 195.545C459.571 201.2 452.217 203.021 446.55 199.616L426.02 187.28C420.325 183.858 418.494 176.459 421.937 170.776L457.011 112.879C476.323 81.012 453.337 40 415.96 40H320V79.98C320 94.19 302.76 101.366 292.687 91.293L228.687 27.313C222.438 21.065 222.438 10.934 228.687 4.686L292.687 -59.303C302.689 -69.308 320 -62.3 320 -47.989V-8H415.887C490.651 -8 536.689 73.898 497.986 137.757z" />
+    <glyph glyph-name="redo-alt"
+      unicode="&#xF2F9;"
+      horiz-adv-x="512" d=" M483.515 419.515L431.35 367.35C386.475 412.233 324.485 440 256.001 440C119.34 440 7.9 328.475 8 191.815C8.1 54.933 119.095 -56 256 -56C319.926 -56 378.202 -31.813 422.178 7.908C427.291 12.526 427.531 20.469 422.6600000000001 25.341L402.9220000000001 45.079C398.4240000000001 49.577 391.1690000000001 49.864 386.4210000000001 45.631C351.787 14.754 306.105 -4 256 -4C147.679 -4 60 83.662 60 192C60 300.3210000000001 147.662 388 256 388C310.163 388 359.157 366.077 394.6140000000001 330.6140000000001L340.4860000000001 276.485C332.9260000000001 268.925 338.2800000000001 256 348.9710000000001 256H492C498.627 256 504 261.373 504 268V411.029C504 421.7200000000001 491.074 427.074 483.515 419.515z" />
+    <glyph glyph-name="redo"
+      unicode="&#xF01E;"
+      horiz-adv-x="512" d=" M500 440H472.289C465.55 440 460.132 434.452 460.292 427.714L462.639 329.146C418.075 396.166 341.788 440.27 255.207 439.999C118.82 439.572 7.787 327.991 8 191.604C8.214 54.819 119.165 -56 256 -56C319.926 -56 378.202 -31.813 422.178 7.908C427.291 12.526 427.532 20.469 422.6600000000001 25.341L402.9220000000001 45.079C398.4240000000001 49.577 391.1690000000001 49.864 386.4210000000001 45.631C351.787 14.754 306.105 -4 256 -4C147.678 -4 60 83.662 60 192C60 300.322 147.662 388 256 388C335.545 388 403.9410000000001 340.718 434.675 272.698L308.286 275.707C301.549 275.867 296 270.45 296 263.71V236C296 229.373 301.373 224 308 224H500C506.627 224 512 229.373 512 236V428C512 434.627 506.627 440 500 440z" />
+    <glyph glyph-name="registered"
+      unicode="&#xF25D;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -8C145.468 -8 56 81.451 56 192C56 302.531 145.451 392 256 392C366.532 392 456 302.549 456 192C456 81.468 366.549 -8 256 -8zM366.442 73.791C313.396 170.075 316.192 165.259 313.171 169.876C337.438 183.755 352.653 211.439 352.653 243.052C352.653 295.555 322.406 328.304 251.1550000000001 328.304H172.488C165.8710000000001 328.304 160.488 322.921 160.488 316.304V68C160.488 61.383 165.8710000000001 56 172.488 56H211.0560000000001C217.673 56 223.0560000000001 61.383 223.0560000000001 68V151.663H255.0140000000001L302.5290000000001 62.36A11.98 11.98 0 0 1 313.1220000000001 56H355.9320000000001C365.0720000000001 56 370.8460000000001 65.799 366.4420000000001 73.791zM256.933 208.094H223.058V272.234H250.435C282.852 272.234 289.3640000000001 260.101 289.3640000000001 240.525C289.3630000000001 219.612 277.846 208.094 256.9330000000001 208.094z" />
+    <glyph glyph-name="repeat-1-alt"
+      unicode="&#xF366;"
+      horiz-adv-x="512" d=" M481.162 283.674C500.64 257.996 512.159 225.965 511.998 191.286C511.61 107.362 442.361 40 358.436 40H176V-24C175.999 -34.683 163.051 -40.021 155.515 -32.485L67.515 55.51C62.829 60.196 62.828 67.794 67.515 72.481L155.515 160.486C163.095 168.066 176 162.626 176 152.001V88.001H358.668C415.933 88 464.06 134.846 464 192.111C463.977 214.483 456.851 235.222 444.763 252.193C441.332 257.01 441.801 263.58 445.986 267.757C454.255 276.012 459.578 281.302 463.123 284.861C468.254 290.013 476.768 289.466 481.162 283.674zM48 191.889C47.94 249.154 96.067 296 153.332 296H336V232C336 221.375 348.905 215.934 356.485 223.515L444.485 311.52C449.1720000000001 316.206 449.171 323.805 444.485 328.491L356.485 416.486C348.949 424.021 336.001 418.683 336 408V344H153.564C69.639 344 0.389 276.6380000000001 0.002 192.714C-0.158 158.035 11.36 126.004 30.838 100.326C35.232 94.5340000000001 43.746 93.987 48.877 99.138C52.422 102.6970000000001 57.744 107.987 66.014 116.2430000000001C70.199 120.4210000000001 70.667 126.9910000000001 67.237 131.8070000000001C55.149 148.7780000000001 48.024 169.5170000000001 48 191.8890000000001zM227.263 148.473C227.263 155.95 231.18 160.045 238.836 160.045H253.967V199.923C253.967 205.086 254.501 210.426 254.501 210.426H254.145S252.366 207.756 251.297 206.688C246.846 202.415 240.793 202.237 235.631 207.756L230.113 213.987C224.771 219.328 225.129 225.203 230.647 230.366L252.367 250.305C256.816 254.4 260.733 256.002 266.787 256.002H278.892C286.548 256.002 290.641 252.086 290.641 244.43V160.046H306.129C313.784 160.046 317.701 155.952 317.701 148.474V139.573C317.701 132.096 313.7840000000001 128.001 306.129 128.001H238.836C231.18 128.001 227.263 132.096 227.263 139.573V148.473z" />
+    <glyph glyph-name="repeat-1"
+      unicode="&#xF365;"
+      horiz-adv-x="512" d=" M512 192C512 108.187 443.813 40 360 40H136.535L192.297 -14.545C197.072 -19.215 197.114 -26.886 192.391 -31.609L175.514 -48.486C170.828 -53.172 163.23 -53.172 158.543 -48.486L54.543 55.514C49.857 60.1999999999999 49.857 67.798 54.543 72.485L154.59 172.532C159.276 177.218 166.874 177.218 171.561 172.532L188.438 155.655C193.161 150.932 193.119 143.262 188.344 138.591L136.535 88H360C417.346 88 464 134.654 464 192C464 211.452 458.628 229.671 449.294 245.258A11.991 11.991 0 0 0 451.098 259.9020000000001L468.49 277.294C473.852 282.656 482.8059999999999 281.778 486.9809999999999 275.447C502.788 251.479 512 222.797 512 192zM62.706 138.742C53.372 154.329 48 172.548 48 192C48 249.346 94.654 296 152 296H375.4650000000001L323.6560000000001 245.408C318.8810000000001 240.7380000000001 318.8390000000001 233.067 323.5620000000001 228.344L340.4390000000001 211.467C345.1250000000001 206.781 352.7230000000001 206.781 357.4100000000001 211.467L457.4570000000001 311.514C462.1430000000001 316.2000000000001 462.1430000000001 323.798 457.4570000000001 328.485L353.4570000000001 432.485C348.7710000000002 437.171 341.1730000000001 437.171 336.4860000000001 432.485L319.6090000000001 415.608C314.8860000000001 410.885 314.9280000000001 403.2150000000001 319.7030000000001 398.5440000000001L375.465 344H152C68.187 344 0 275.813 0 192C0 161.203 9.212 132.521 25.019 108.553C29.194 102.222 38.148 101.344 43.51 106.706L60.902 124.098A11.991 11.991 0 0 1 62.706 138.742zM227.263 148.473C227.263 155.95 231.18 160.045 238.836 160.045H253.967V199.923C253.967 205.086 254.501 210.426 254.501 210.426H254.145S252.366 207.756 251.297 206.688C246.846 202.415 240.793 202.237 235.631 207.756L230.113 213.987C224.771 219.328 225.129 225.203 230.647 230.366L252.367 250.305C256.816 254.4 260.733 256.002 266.787 256.002H278.892C286.548 256.002 290.641 252.086 290.641 244.43V160.046H306.129C313.784 160.046 317.701 155.952 317.701 148.474V139.573C317.701 132.096 313.7840000000001 128.001 306.129 128.001H238.836C231.18 128.001 227.263 132.096 227.263 139.573V148.473z" />
+    <glyph glyph-name="repeat-alt"
+      unicode="&#xF364;"
+      horiz-adv-x="512" d=" M481.162 283.674C500.64 257.996 512.159 225.965 511.998 191.286C511.61 107.362 442.361 40 358.436 40H176V-24C175.999 -34.683 163.051 -40.021 155.515 -32.485L67.515 55.51C62.829 60.196 62.828 67.794 67.515 72.481L155.515 160.486C163.095 168.066 176 162.626 176 152.001V88.001H358.668C415.933 88 464.06 134.846 464 192.111C463.977 214.483 456.851 235.222 444.763 252.193C441.332 257.01 441.801 263.58 445.986 267.757C454.255 276.012 459.578 281.302 463.123 284.861C468.254 290.013 476.768 289.466 481.162 283.674zM48 191.889C47.94 249.154 96.067 296 153.332 296H336V232C336 221.375 348.905 215.934 356.485 223.515L444.485 311.52C449.1720000000001 316.206 449.171 323.805 444.485 328.491L356.485 416.486C348.949 424.021 336.001 418.683 336 408V344H153.564C69.639 344 0.389 276.6380000000001 0.002 192.714C-0.158 158.035 11.36 126.004 30.838 100.326C35.232 94.5340000000001 43.746 93.987 48.877 99.138C52.422 102.6970000000001 57.744 107.987 66.014 116.2430000000001C70.199 120.4210000000001 70.667 126.9910000000001 67.237 131.8070000000001C55.149 148.7780000000001 48.024 169.5170000000001 48 191.8890000000001z" />
+    <glyph glyph-name="repeat"
+      unicode="&#xF363;"
+      horiz-adv-x="512" d=" M512 192C512 108.187 443.813 40 360 40H136.535L192.297 -14.545C197.072 -19.215 197.114 -26.886 192.391 -31.609L175.514 -48.486C170.828 -53.172 163.23 -53.172 158.543 -48.486L54.543 55.514C49.857 60.1999999999999 49.857 67.798 54.543 72.485L158.543 176.485C163.229 181.1709999999999 170.827 181.1709999999999 175.514 176.485L192.391 159.608C197.114 154.8849999999999 197.072 147.2149999999999 192.297 142.5439999999999L136.535 88H360C417.346 88 464 134.654 464 192C464 211.452 458.628 229.671 449.294 245.258A11.991 11.991 0 0 0 451.098 259.9020000000001L468.49 277.294C473.852 282.656 482.8059999999999 281.778 486.9809999999999 275.447C502.788 251.479 512 222.797 512 192zM62.706 138.742C53.372 154.329 48 172.548 48 192C48 249.346 94.654 296 152 296H375.4650000000001L319.7030000000001 241.455C314.9280000000001 236.785 314.886 229.114 319.6090000000001 224.391L336.4860000000001 207.514C341.1720000000001 202.828 348.7700000000001 202.828 353.4570000000001 207.514L457.4570000000001 311.514C462.143 316.2 462.143 323.798 457.4570000000001 328.485L353.4570000000001 432.485C348.7710000000001 437.171 341.1730000000001 437.171 336.4860000000001 432.485L319.6090000000001 415.608C314.886 410.885 314.9280000000001 403.215 319.7030000000001 398.544L375.465 344H152C68.187 344 0 275.813 0 192C0 161.203 9.212 132.521 25.019 108.553C29.194 102.222 38.148 101.344 43.51 106.706L60.902 124.098A11.991 11.991 0 0 1 62.706 138.742z" />
+    <glyph glyph-name="reply-all"
+      unicode="&#xF122;"
+      horiz-adv-x="640" d=" M142.06 174.06L302.06 14.09C332.08 -15.9299999999999 384 5.11 384 48.03V119.11C502.18 114.17 505.95 88.12 488.44 29.94C475.27 -13.81 524.65 -48.77 561.54 -23.49C612.15 11.21 640 55.84 640 119.62C640 262.02 512.84 290.64 384 295.23V367.96C384 410.84 332.11 431.96 302.06 401.9L142.06 241.94C123.31 223.2 123.31 192.8 142.06 174.06zM176 208L336 368V248C456.616 248 592 241.487 592 119.62C592 63.82 563.21 35.75 534.4 16C575.4019999999999 152.247 473.571 168 336 168V48L176 208zM14.059 241.941L174.059 401.903C194.448 422.292 224.881 419.123 242.349 401.593L48 208L242.35 14.397C224.876 -3.134 194.429 -6.278 174.059 14.091L14.059 174.058C-4.686 192.804 -4.686 223.196 14.059 241.941z" />
+    <glyph glyph-name="reply"
+      unicode="&#xF3E5;"
+      horiz-adv-x="576" d=" M14.062 190.06L190.06 14.12C220.27 -16.09 272 5.42 272 48.06V126.34C418.5900000000001 117.8 430.53 76.141 406.18 -1.539C392.5300000000001 -45.099 441.25 -80.429 478.37 -55.999C537.98 -16.768 576 44.2 576 117.95C576 288.32 409.9600000000001 315.1 272 319.25V399.953C272 442.673 220.21 464.043 190.06 433.8930000000001L14.062 257.94C-4.688 239.2 -4.688 208.8 14.062 190.06zM48 224L224 400V271.9700000000001C367.1810000000001 271.3400000000001 528 260.192 528 117.95C528 50.99 488 8 451.98 -15.7C501.44 142.089 388.521 174.12 224 175.91V48L48 224z" />
+    <glyph glyph-name="republican"
+      unicode="&#xF75E;"
+      horiz-adv-x="640" d=" M189 303.8L161.6 307.8L149.4 332.6C147.2 337 140.9 337.1 138.7 332.6L126.5 307.8L99.1 303.8C94.2 303.1 92.2 297 95.8 293.6L115.6 274.3L110.9 247C110.1 242.1 115.2 238.4 119.6 240.7L144.1 253.6L168.6 240.7C172.9 238.4 178.1 242.1 177.3 247L172.6 274.3L192.4 293.6C195.8000000000001 297.1 193.9 303.1 189 303.8zM317 303.8L289.6 307.8L277.4000000000001 332.6C275.2000000000001 337 268.9000000000001 337.1 266.7000000000001 332.6L254.5000000000001 307.8L227.1000000000001 303.8C222.2000000000001 303.1 220.2000000000001 297 223.8000000000001 293.6L243.6000000000001 274.3L238.9000000000001 247C238.1000000000001 242.1 243.2000000000001 238.4 247.6000000000001 240.7L272.1 253.6L296.6 240.7C300.9000000000001 238.4 306.1 242.1 305.3 247L300.6 274.3L320.4000000000001 293.6C323.8 297.1 321.9000000000001 303.1 317.0000000000001 303.8zM445 303.8L417.6 307.8L405.4000000000001 332.6C403.2000000000001 337 396.9000000000001 337.1 394.7000000000001 332.6L382.5000000000001 307.8L355.1000000000001 303.8C350.2000000000001 303.1 348.2000000000001 297 351.8000000000001 293.6L371.6000000000001 274.3L366.9000000000001 247C366.1000000000001 242.1 371.2000000000001 238.4 375.6000000000001 240.7L400.1000000000001 253.6L424.6000000000001 240.7C428.9000000000001 238.4 434.1000000000001 242.1 433.3000000000001 247L428.6000000000001 274.3L448.4000000000001 293.6C451.8000000000001 297.1 449.9000000000001 303.1 445.0000000000001 303.8zM624 128H608C599.2 128 592 120.8 592 112V40C592 26.8 581.2 16 568 16S544 26.8 544 40V256C544 344.4 472.4 416 384 416H160C71.6 416 0 344.4 0 256V0C0 -17.7 14.3 -32 32 -32H128C145.7 -32 160 -17.7 160 0V64H288V0C288 -17.7 302.3 -32 320 -32H416C433.7 -32 448 -17.7 448 0V64H496V44.3C496 6.7 523 -27.7 560.4 -31.6C562.9 -31.9 565.5 -32 568 -32C607.7 -32 640 0.3 640 40V112C640 120.8 632.8 128 624 128zM496 112H432C414.3 112 400 97.7 400 80V16H336V80C336 97.7 321.7 112 304 112H144C126.3 112 112 97.7 112 80V16H48V160H496V112zM496 208H48V256C48 317.9 98.1 368 160 368H384C445.8 368 496 317.8 496 256V208z" />
+    <glyph glyph-name="restroom"
+      unicode="&#xF7BD;"
+      horiz-adv-x="640" d=" M328 448H312C303.2 448 296 440.8 296 432V-48C296 -56.8 303.2 -64 312 -64H328C336.8 -64 344 -56.8 344 -48V432C344 440.8 336.8 448 328 448zM200.8 310.6C210.4 324.7 216 341.7 216 360C216 408.6 176.6 448 128 448S40 408.6 40 360C40 341.7 45.6 324.7 55.2 310.6C22.7 295.2 0 262.4 0 224V112C0 94.3 14.3 80 32 80H48V-32C48 -49.7 62.3 -64 80 -64H176C193.7 -64 208 -49.7 208 -32V80H224C241.7 80 256 94.3 256 112V224C256 262.4 233.3 295.2 200.8 310.6zM128 400C150.1 400 168 382.1 168 360S150.1 320 128 320S88 337.9 88 360S105.9 400 128 400zM208 128H160V-16H96V128H48V224C48 250.5 69.5 272 96 272H160C186.5 272 208 250.5 208 224V128zM638.8 117.7L601.0999999999999 252.4C596.1999999999999 270.1 585.9999999999999 285.1 572.8999999999999 296.7C589.5999999999999 312.7 599.9999999999999 335.1 599.9999999999999 360C599.9999999999999 408.6 560.5999999999999 448 511.9999999999999 448S423.9999999999999 408.6 423.9999999999999 360C423.9999999999999 335.1 434.4999999999999 312.7 451.0999999999999 296.7C437.8999999999999 285.1 427.7999999999999 270.1 422.8999999999999 252.4L385.2 117.7C382.0999999999999 104.9 385 91.5 393.2 81.1C401.7 70.3 414.5999999999999 64.1 428.5 64.1H432V-23.9C432 -46.0000000000001 449.8999999999999 -63.9 471.9999999999999 -63.9H552C574.1 -63.9 592 -46.0000000000001 592 -23.9V64.1H595.5C609.4 64.1 622.3 70.3 630.8 81.1C639 91.4999999999999 641.9 104.8 638.8 117.7zM512 400C534.1 400 552 382.1 552 360S534.1 320 512 320S472 337.9 472 360S489.9 400 512 400zM544 112V-16H480V112L433.1 110.8L469.1 239.5C474.4 258.7 492.1 272 512 272S549.5 258.6 554.9 239.5L590.5 112H544z" />
+    <glyph glyph-name="retweet-alt"
+      unicode="&#xF361;"
+      horiz-adv-x="640" d=" M388.461 60.485C396.021 52.925 390.6670000000001 40 379.976 40H128C114.745 40 104 50.745 104 64V276.813L31.838 276.814C21.155 276.815 15.816 289.7630000000001 23.353 297.299L119.509 393.455C124.195 398.141 131.793 398.142 136.48 393.455L232.64 297.295C240.22 289.715 234.78 276.81 224.155 276.81L152 276.812V88H355.976C359.159 88 362.211 86.736 364.461 84.485L388.461 60.485zM608.162 107.185L536 107.187V320C536 333.255 525.255 344 512 344H260.024C249.333 344 243.979 331.074 251.539 323.515L275.539 299.515A12.002 12.002 0 0 1 284.024 296H488V107.188L415.846 107.189C405.221 107.189 399.7800000000001 94.284 407.361 86.704L503.521 -9.456C508.2069999999999 -14.143 515.8059999999999 -14.142 520.492 -9.456L616.6479999999999 86.7C624.1829999999999 94.236 618.8449999999999 107.185 608.1619999999999 107.185z" />
+    <glyph glyph-name="retweet"
+      unicode="&#xF079;"
+      horiz-adv-x="640" d=" M624.485 94.544L520.485 -9.456C515.799 -14.142 508.201 -14.142 503.514 -9.456L399.514 94.544C394.8280000000001 99.23 394.8280000000001 106.828 399.514 111.515L416.391 128.392C421.1140000000001 133.115 428.784 133.073 433.4550000000001 128.298L488 72.535V296H284.024A11.996 11.996 0 0 0 275.539 299.515L251.539 323.515C243.979 331.075 249.333 344 260.024 344H512C525.255 344 536 333.255 536 320V72.535L590.545 128.297C595.216 133.072 602.886 133.114 607.6089999999999 128.391L624.4859999999999 111.514C629.1719999999999 106.828 629.1719999999999 99.23 624.4849999999999 94.544zM364.461 84.485A12.002 12.002 0 0 1 355.976 87.9999999999999H152V311.4650000000001L206.545 255.703C211.216 250.928 218.886 250.886 223.609 255.609L240.486 272.486C245.1720000000001 277.1720000000001 245.1720000000001 284.77 240.486 289.457L136.486 393.457C131.8 398.1430000000001 124.202 398.1430000000001 119.515 393.457L15.515 289.457C10.829 284.771 10.829 277.173 15.515 272.486L32.392 255.609C37.115 250.886 44.785 250.928 49.456 255.703L104 311.4650000000001V64C104 50.745 114.745 40 128 40H379.976C390.667 40 396.021 52.926 388.461 60.485L364.461 84.485z" />
+    <glyph glyph-name="ribbon"
+      unicode="&#xF4D6;"
+      horiz-adv-x="448" d=" M437.7 43.4L329.5 161L367 201.3C401.8 238.7 406 292.6 377.8 338.6L347 388.9C332 413.4 309.8 431.3 284.6 439.4C248.6 450.9 199.5 450.9 163.6 439.4C138.3 431.3 116.1 413.4 101.2 388.9L67.9 334.6C42 292.4 47.5 237.6 81.2 201.4L118.7 161L10.4 43.3C-6.1 25.4 -2.4 -2.6 17.9 -15.9L81.2 -57.2C105.2 -72.9 126.7 -57.3 132.6 -51L224.1 47.5L315.5 -50.9C321.3 -57.2 343.1 -72.7999999999999 366.9 -57.2L430.2 -15.9C450.3 -2.8 454.2 25.4 437.7 43.4zM328.2 327.8L336.9 313.6C353.8 286.1 351.8 255.6 331.8 234.1L296.9 196.5L256.6 240.3L302.1 289.8C313.8 301.2000000000001 322 314.7000000000001 328.2 327.8zM178.2 393.7C204.7 402.2 243.4 402.2 269.9 393.7C279 390.8 287.4 385.2 294.7 377.9C292 365 284.9 340 267.7 323.1L224 275.7L179.6 324C163 340.3 156 365.3 153.4 378.1C160.6 385.4 169.1 390.8 178.2 393.7zM101.9 -13.5L52.8 18.6L151.3 125.8L191.3 82.8L101.9 -13.5zM346.2 -13.5L116.3 234C97.2 254.6 94.1 285.6 108.8 309.5L119.7 327.4C125.7 314.6 133.9 301.6 145.1 290.6L395.3 18.5L346.2 -13.5z" />
+    <glyph glyph-name="ring"
+      unicode="&#xF70B;"
+      horiz-adv-x="512" d=" M256 384C110.06 384 0 322.0900000000001 0 240V141.87C0 63.52 114.62 0 256 0S512 63.52 512 141.87V240C512 322.0900000000001 401.94 384 256 384zM256 336C366.46 336 456 300.18 456 256C456 246.91 452.03 238.21 445.05 230.07C398.24 255.77 331 272 256 272S113.76 255.77 66.95 230.07C59.97 238.21 56 246.91 56 256C56 300.18 145.54 336 256 336zM397.7 199.55C361.48 185.01 311.38 176 256 176S150.52 185.01 114.3 199.55C150 213.7 198.38 224 256 224S362 213.7 397.7 199.55zM464 141.87C464 103.6 382.9700000000001 48 256 48S48 103.59 48 141.87V181.65C94.43 149.22 170.15 128 256 128S417.57 149.22 464 181.64V141.87z" />
+    <glyph glyph-name="road"
+      unicode="&#xF018;"
+      horiz-adv-x="576" d=" M267.73 256H308.2700000000001C315.4000000000001 256 320.9500000000001 262.17 320.2000000000001 269.26L315.6 312.84A8 8 0 0 1 307.6400000000001 320H268.35C264.2600000000001 320 260.8200000000001 316.91 260.3900000000001 312.84L255.7900000000001 269.26C255.0500000000001 262.17 260.6100000000001 256 267.7300000000001 256zM260.36 144H315.6500000000001C325.1500000000001 144 332.5600000000001 152.23 331.5600000000001 161.68L326.4900000000001 209.68C325.6300000000001 217.82 318.7700000000001 224 310.5800000000001 224H265.4300000000001C257.2400000000001 224 250.3800000000001 217.82 249.5200000000001 209.68L244.4500000000001 161.68C243.4500000000001 152.23 250.8600000000001 144 260.3600000000001 144zM273.42 352H302.5800000000001C307.3300000000001 352 311.0300000000001 356.12 310.54 360.8400000000001L308.85 376.8400000000001A8 8 0 0 1 300.8900000000001 384H275.11C271.0200000000001 384 267.5800000000001 380.91 267.1500000000001 376.8400000000001L265.4600000000001 360.8400000000001C264.9700000000001 356.12 268.67 352 273.42 352zM322.4000000000001 112H253.6C245.4100000000001 112 238.55 105.82 237.6900000000001 97.68L229.2400000000001 17.68C228.2400000000001 8.23 235.6500000000001 0 245.1500000000001 0H330.8400000000001C340.3400000000001 0 347.7500000000001 8.23 346.7500000000001 17.68L338.3000000000001 97.68C337.4500000000001 105.82 330.5900000000001 112 322.4000000000001 112zM173.35 384H157.35A7.990000000000001 7.990000000000001 0 0 1 149.97 379.08L1.25 22.15C-3.14 11.62 4.6 0 16.02 0H60.02C67.13 0 73.39 4.69 75.38 11.52L181.03 373.76C182.52 378.88 178.68 384 173.35 384zM574.75 22.15L426.04 379.08A8 8 0 0 1 418.6600000000001 384H402.6600000000001C397.3300000000001 384 393.49 378.88 394.98 373.76L500.63 11.52A15.995999999999999 15.995999999999999 0 0 1 515.99 0H559.99C571.4 0 579.14 11.62 574.75 22.15z" />
+    <glyph glyph-name="robot"
+      unicode="&#xF544;"
+      horiz-adv-x="608" d=" M208 232C185.9 232 168 214.1 168 192S185.9 152 208 152S248 169.9 248 192S230.1 232 208 232zM176 40H240V88H176V40zM272 40H336V88H272V40zM560 224H528V256C528 309 485 352 432 352H328V424C328 437.3 317.3 448 304 448S280 437.3 280 424V352H176C123 352 80 309 80 256V224H48C21.5 224 0 202.5 0 176V80C0 53.5 21.5 32 48 32H80V0C80 -35.3 108.7 -64 144 -64H464C499.3 -64 528 -35.3 528 0V32H560C586.5 32 608 53.5 608 80V176C608 202.5 586.5 224 560 224zM80 80H48V176H80V80zM480 0C480 -8.8 472.8 -16 464 -16H144C135.2 -16 128 -8.8 128 0V256C128 282.5 149.5 304 176 304H432C458.5 304 480 282.5 480 256V0zM560 80H528V176H560V80zM368 40H432V88H368V40zM400 232C377.9 232 360 214.1 360 192S377.9 152 400 152S440 169.9 440 192S422.1 232 400 232z" />
+    <glyph glyph-name="rocket"
+      unicode="&#xF135;"
+      horiz-adv-x="512" d=" M512 336C512 372.8 511.2 383.2 501 425.1C499.6 430.9 495.1 435.4 489.3 436.9C451.4 446.2 440 448 400 448C331.7 448 272.6 408.5 223 352H96C80.8 352 67 343.4 60.2 329.9L4.2 217.9C-9 191.3 10.3 160 40.1 160H106.4C99.7 145 93.5 130.2 87.8 115.9C85.4 110 86.8 103.2 91.4 98.7L162.7 27.4C167.2 22.9 174 21.5 179.9 23.8C194.2 29.4999999999999 209 35.6999999999999 224 42.4V-23.9C224 -53.6 255.3 -73 281.9 -59.7L393.9 -3.7C407.5 3.1 416 16.9 416 32.1V159C472.5 208.6 512 267.7 512 336zM53 208L101 304H185.7C164.6 273.7 145.8 240.9 129.1 208H53zM140.1 117.8C196.8 256.9 293 400 400.1 400C422.7000000000001 400 434.8 400 458.9 394.8C464.0000000000001 370.8 464.0000000000001 358.6 464.0000000000001 336C464.0000000000001 228.9 320.9000000000001 132.8 181.8000000000001 76.1L140.1000000000001 117.8zM368 37L272 -11V65.2C304.9 81.8 337.7 100.7 368 121.8V37zM368 352C394.5 352 416 330.5 416 304S394.5 256 368 256S320 277.5 320 304S341.5 352 368 352z" />
+    <glyph glyph-name="route-highway"
+      unicode="&#xF61A;"
+      horiz-adv-x="448" d=" M428.4 178.79C397.92 224.21 416.6 283.26 441.4 334.1900000000001C445.36 342.3200000000001 444.74 351.9400000000001 439.53 359.3200000000001L398.36 417.68C393.8 424.1500000000001 386.56 427.8200000000001 379.08 427.8200000000001C376.3399999999999 427.8200000000001 373.56 427.3300000000001 370.87 426.3C355.5 420.42 338.2 417.4100000000001 320.61 417.4100000000001C291.1 417.4100000000001 260.8 425.88 237.45 443.5200000000001C233.48 446.5 228.74 448 224 448S214.52 446.5 210.56 443.51C187.21 425.87 156.9 417.4 127.39 417.4C109.8 417.4 92.5 420.41 77.14 426.29A22.929 22.929 0 0 1 68.93 427.81C61.45 427.81 54.21 424.14 49.65 417.68L8.47 359.31C3.26 351.93 2.64 342.32 6.6 334.18C31.4 283.26 50.07 224.21 19.6 178.78C-18.34 122.26 1.05 39.35 58.41 12.75L223.97 -64L389.5900000000001 12.76C446.9600000000001 39.36 466.34 122.27 428.4000000000001 178.79zM78.65 375.52C94.22 371.49 110.77 369.4 127.4 369.4C162.38 369.4 196.03 378.34 224.01 394.85C251.99 378.35 285.63 369.4 320.62 369.4C337.25 369.4 353.8 371.49 369.37 375.52L392.38 342.9C385.25 327.5 376.08 305.3400000000001 370.3 280H77.72C71.93 305.33 62.77 327.49 55.64 342.9L78.65 375.52zM397.2 92.37C392.47 75.45 382.33 62.3 369.41 56.31L223.98 -11.09L78.6 56.31C65.67 62.31 55.54 75.4499999999999 50.8 92.37C45.02 113.04 48.25 135.35 59.46 152.04C76.69 177.72 83.04 205.37 83.29 232H364.71C364.97 205.38 371.31 177.7099999999999 388.54 152.03C399.75 135.35 402.98 113.05 397.2 92.37z" />
+    <glyph glyph-name="route-interstate"
+      unicode="&#xF61B;"
+      horiz-adv-x="480" d=" M464.83 392.86C461.76 402.81 453.17 409.53 443.89 409.53C442.16 409.53 440.4 409.3 438.65 408.81C420.42 403.69 400.91 400.85 380.55 400.85C331.43 400.85 286.94 416.92 254.38 442.96C250.18 446.32 245.09 448 240 448S229.82 446.32 225.62 442.9700000000001C193.06 416.93 148.57 400.86 99.45 400.86C79.09 400.86 59.58 403.7 41.35 408.82C39.6 409.31 37.84 409.54 36.11 409.54C26.83 409.54 18.24 402.81 15.17 392.87C-21.83 272.89 -6.68 37.66 240 -64C486.68 37.66 501.83 272.89 464.83 392.86zM55.32 356.56C69.84 354.1 84.6 352.86 99.46 352.86C150.82 352.86 200 367.38 240 394.07C280 367.38 329.18 352.85 380.55 352.85C395.4000000000001 352.85 410.17 354.09 424.69 356.55C429.4100000000001 334.44 432.12 308.19 431.68 279.99H48.32C47.88 308.2000000000001 50.6 334.4500000000001 55.32 356.56zM240 -11.61C153.46 28.67 95.16 90.8 66.55 173.29C59.74 192.93 55.28 212.65 52.34 232.0000000000001H427.65C424.71 212.65 420.25 192.93 413.44 173.29C384.84 90.8 326.54 28.67 240 -11.61z" />
+    <glyph glyph-name="route"
+      unicode="&#xF4D7;"
+      horiz-adv-x="512" d=" M424 112H328C305.9 112 288 129.9 288 152S305.9 192 328 192H416S512 299 512 352S469 448 416 448S320 405 320 352C320 322.2 350.3 275.3 376.9 240H328C279.5 240 240 200.5 240 152S279.5 64 328 64H424C446.1 64 464 46.1 464 24S446.1 -16 424 -16H135.1C161.7 19.3 192 66.2 192 96C192 149 149 192 96 192S0 149 0 96S96 -64 96 -64H424C472.5 -64 512 -24.5 512 24S472.5 112 424 112zM368 352C368 378.5 389.5 400 416 400S464 378.5 464 352.1C463.5 338.7 443.2 303.9 416 267.7C388.8 303.9 368.5 338.6 368 352zM96 11.7C68.8 47.9 48.5 82.6 48 96C48 122.5 69.5 144 96 144S144 122.5 144 96.1C143.5 82.7000000000001 123.2 47.9 96 11.7zM96 112C87.2 112 80 104.8 80 96S87.2 80 96 80S112 87.2 112 96S104.8 112 96 112zM432 352C432 360.8 424.8 368 416 368S400 360.8 400 352S407.2 336 416 336S432 343.2 432 352z" />
+    <glyph glyph-name="rss-square"
+      unicode="&#xF143;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM176 104C176 81.909 158.091 64 136 64S96 81.909 96 104S113.909 144 136 144S176 126.091 176 104zM269.5660000000001 73.595C264.7920000000001 161.9380000000001 194.0320000000001 232.7880000000001 105.595 237.5660000000001C100.375 237.8480000000001 96 233.654 96 228.4260000000001V200.9580000000001C96 196.1500000000001 99.709 192.1170000000001 104.507 191.8050000000001C168.411 187.6430000000001 219.634 136.5470000000001 223.805 72.5070000000001C224.118 67.7090000000001 228.1500000000001 64.0000000000001 232.9580000000001 64.0000000000001H260.4260000000001C265.6540000000001 64.0000000000001 269.8480000000001 68.3750000000001 269.5660000000001 73.5950000000001zM351.9940000000001 73.43C347.1980000000001 207.042 239.694 315.174 105.43 319.9940000000001C100.271 320.179 96 316.011 96 310.848V283.3810000000001C96 278.452 99.906 274.4410000000001 104.83 274.2390000000001C214.0750000000001 269.76 301.7600000000001 182.0580000000001 306.238 72.831C306.44 67.906 310.451 64.001 315.38 64.001H342.847C348.011 64.0000000000001 352.179 68.271 351.994 73.43z" />
+    <glyph glyph-name="rss"
+      unicode="&#xF09E;"
+      horiz-adv-x="448" d=" M80 80C97.645 80 112 65.645 112 48S97.645 16 80 16S48 30.355 48 48S62.355 80 80 80M80 128C35.817 128 0 92.183 0 48S35.817 -32 80 -32S160 3.817 160 48S124.183 128 80 128zM447.996 -19.615C441.547 218.219 249.939 409.548 12.386 415.995C5.609 416.179 0 410.771 0 403.993V379.973C0 373.491 5.147 368.165 11.626 367.981C223.602 361.941 393.942 191.246 399.98 -20.373C400.165 -26.852 405.49 -31.999 411.972 -31.999H435.992C442.772 -31.9999999999999 448.179 -26.391 447.996 -19.615zM311.757 -19.565C305.401 142.99 174.966 273.401 12.435 279.757C5.643 280.023 0 274.5560000000001 0 267.7580000000001V243.734C0 237.303 5.072 232.029 11.497 231.754C148.265 225.907 257.908 116.2430000000001 263.755 -20.504C264.03 -26.929 269.304 -32.001 275.735 -32.001H299.759C306.5560000000001 -32.0000000000001 312.023 -26.357 311.757 -19.5650000000001z" />
+    <glyph glyph-name="ruble-sign"
+      unicode="&#xF158;"
+      horiz-adv-x="384" d=" M243.128 133.62C324.987 133.62 384 190.731 384 275.762S324.987 416 243.128 416H76C69.373 416 64 410.627 64 404V188.193H12C5.373 188.193 0 182.82 0 176.193V145.621C0 138.994 5.373 133.621 12 133.621H64V96H12C5.373 96 0 90.627 0 84V60C0 53.373 5.373 48 12 48H64V-20C64 -26.627 69.373 -32 76 -32H116C122.627 -32 128 -26.627 128 -20V48H308C314.627 48 320 53.373 320 60V84C320 90.627 314.627 96 308 96H128V133.62H243.128zM128 361.428H233.61C286.913 361.428 319.911 329.7 319.911 275.762C319.911 221.824 286.913 188.193 232.976 188.193H128V361.428z" />
+    <glyph glyph-name="ruler-combined"
+      unicode="&#xF546;"
+      horiz-adv-x="512" d=" M480 160H224V416C224 433.67 209.67 448 192 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H480C497.67 -64 512 -49.67 512 -32V128C512 145.67 497.67 160 480 160zM48 400H176V352H104C99.58 352 96 348.42 96 344V328C96 323.58 99.58 320 104 320H176V272H104C99.58 272 96 268.42 96 264V248C96 243.58 99.58 240 104 240H176V192H104C99.58 192 96 188.42 96 184V168C96 163.58 99.58 160 104 160H176V134.62L48 6.62V400zM464 -16H70.62L198.62 112H224V40C224 35.58 227.58 32 232 32H248C252.42 32 256 35.58 256 40V112H304V40C304 35.58 307.58 32 312 32H328C332.42 32 336 35.58 336 40V112H384V40C384 35.58 387.58 32 392 32H408C412.42 32 416 35.58 416 40V112H464V-16z" />
+    <glyph glyph-name="ruler-horizontal"
+      unicode="&#xF547;"
+      horiz-adv-x="640" d=" M608 320H32C14.33 320 0 305.67 0 288V96C0 78.33 14.33 64 32 64H608C625.67 64 640 78.33 640 96V288C640 305.67 625.67 320 608 320zM592 112H48V272H112V216C112 211.58 115.58 208 120 208H136C140.42 208 144 211.58 144 216V272H208V216C208 211.58 211.58 208 216 208H232C236.42 208 240 211.58 240 216V272H304V216C304 211.58 307.58 208 312 208H328C332.42 208 336 211.58 336 216V272H400V216C400 211.58 403.58 208 408 208H424C428.42 208 432 211.58 432 216V272H496V216C496 211.58 499.58 208 504 208H520C524.42 208 528 211.58 528 216V272H592V112z" />
+    <glyph glyph-name="ruler-triangle"
+      unicode="&#xF61C;"
+      horiz-adv-x="512" d=" M501.65 -4.08L59.91 437.65C52.76 444.8 43.97 448 35.35 448C17.31 448 0 433.99 0 412.83V-28.9C0 -48.29 15.71 -64 35.1 -64H476.83C508.1 -64 523.76 -26.2 501.65 -4.08zM48 -16V381.68L111.08 318.6L99.77 307.29C93.52 301.04 93.52 290.9100000000001 99.77 284.6600000000001L111.08 273.35C117.33 267.1 127.46 267.1 133.71 273.35L145.02 284.6600000000001L190.28 239.4100000000001L178.97 228.1C172.72 221.85 172.72 211.72 178.97 205.47L190.28 194.16C196.53 187.91 206.66 187.91 212.91 194.16L224.22 205.47L269.4700000000001 160.22L258.1600000000001 148.91C251.9100000000001 142.66 251.9100000000001 132.53 258.1600000000001 126.28L269.4700000000001 114.97C275.7200000000001 108.72 285.85 108.72 292.1 114.97L303.4100000000001 126.28L348.6600000000001 81.02L337.35 69.71C331.1 63.46 331.1 53.33 337.35 47.08L348.6600000000001 35.77C354.9100000000001 29.52 365.04 29.52 371.29 35.77L382.6 47.08L445.68 -16H48zM128 64H252.54L128 188.54V64z" />
+    <glyph glyph-name="ruler-vertical"
+      unicode="&#xF548;"
+      horiz-adv-x="256" d=" M224 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H224C241.67 -64 256 -49.67 256 -32V416C256 433.67 241.67 448 224 448zM48 -16V400H208V352H152C147.58 352 144 348.42 144 344V328C144 323.58 147.58 320 152 320H208V256H152C147.58 256 144 252.42 144 248V232C144 227.58 147.58 224 152 224H208V160H152C147.58 160 144 156.42 144 152V136C144 131.58 147.58 128 152 128H208V64H152C147.58 64 144 60.42 144 56V40C144 35.58 147.58 32 152 32H208V-16H48z" />
+    <glyph glyph-name="ruler"
+      unicode="&#xF545;"
+      horiz-adv-x="640" d=" M635.7 268.8L543.2 431.7C535.6 445.2 516.7 453.7 499.5000000000001 443.6L16 159.7C0.7 150.7 -4.6 130.8 4.3 115.2L96.8 -47.7C104.4 -61.1 123.3 -69.7 140.5 -59.6L624 224.3C639.3 233.3 644.5 253.2 635.7 268.8zM130.3000000000001 -9.2L53.9 125.5L99.9 152.5L134.1 92.2C136.3 88.3 141.2 87 145 89.2L171.6 104.8C175.4 107 176.7 112 174.5 115.9L140.3 176.2000000000001L180.7 199.9L199.4 167.0000000000001C201.6 163.1000000000001 206.5 161.8000000000001 210.3 164.0000000000001L236.9 179.6000000000001C240.7 181.8000000000001 242 186.8000000000001 239.8 190.7000000000001L221.1 223.6000000000001L261.5 247.3000000000001L295.7 187.0000000000001C297.9 183.1000000000001 302.8 181.8000000000001 306.6 184.0000000000001L333.2 199.6000000000001C337 201.8000000000001 338.3 206.8000000000001 336.1 210.7000000000001L302 271.2L342.4 294.9L361.1 262C363.3 258.1 368.2 256.8 372 259L398.6 274.6C402.4 276.8 403.7 281.8 401.5 285.7L382.8 318.6L423.2 342.3L457.3999999999999 282C459.5999999999999 278.1 464.4999999999999 276.8 468.2999999999999 279L494.8999999999999 294.6C498.6999999999999 296.8 499.9999999999999 301.8 497.7999999999999 305.7L463.6 366L509.6 393L586.1 258.3L130.3 -9.2z" />
+    <glyph glyph-name="running"
+      unicode="&#xF70C;"
+      horiz-adv-x="416" d=" M126.16 131.14L106.31 84.86C105.04 81.91 102.17 80 98.96 80H24.01C10.76 80 0 69.25 0 56S10.76 32 24.01 32H98.96C121.39 32 141.61 45.31 150.46 65.94L164.01 97.54L154.45 103.31C142.57 110.49 133.23 120.18 126.16 131.14zM272.15 352C298.67 352 320.18 373.49 320.18 400S298.68 448 272.15 448S224.12 426.51 224.12 400S245.63 352 272.15 352zM392.06 207.44L343.66 207.61C340.13 207.63 337.06 209.91 336.05 213.27L322.1 259.19C312.91 289.38 288.08 312.4600000000001 257.28 319.42L179.03 337.12C153.3 342.98 126.58 337.04 105.77 320.9L57.4 283.54C46.91 275.45 44.97 260.37 53.09 249.88C61.17 239.38 76.32 237.47 86.77 245.57L135.16 282.93C144.62 290.26 156.84 292.85 168.46 290.31L183.34 286.94L148.04 199.59C137.69 173.97 147.35 145 171.02 130.68L254.8 80.1A8.004 8.004 0 0 0 258.35 71.05L225.05 -33.42C221.41 -46.17 228.79 -59.4499999999999 241.54 -63.09C243.74 -63.71 245.96 -64.01 248.15 -64.01C258.59 -64.01 268.21 -57.15 271.23 -46.6L304.53 57.87C311.46 82.12 301.22 108.15 279.63 121.2L227.78 152.5L269.7200000000001 257.3C272.4400000000001 253.6600000000001 274.7800000000001 249.71 276.1400000000001 245.23L290.1 199.29C297.31 175.63 318.7700000000001 159.68 343.51 159.6L391.91 159.43H391.99C405.22 159.43 415.9599999999999 170.12 416 183.35C416.05 196.61 405.3399999999999 207.39 392.06 207.44z" />
+    <glyph glyph-name="rupee-sign"
+      unicode="&#xF156;"
+      horiz-adv-x="320" d=" M308 368C314.627 368 320 373.373 320 380V404C320 410.627 314.627 416 308 416H12C5.373 416 0 410.627 0 404V372.341C0 365.714 5.373 360.341 12 360.341H105.61C144.675 360.341 172.813 342.9410000000001 185.068 312H12C5.373 312 0 306.627 0 300V276C0 269.373 5.373 264 12 264H191.59C188.16 214.262 155.913 183.659 104.975 183.659H12C5.373 183.659 0 178.286 0 171.659V136.685C0 133.19 1.524 129.869 4.173 127.589L186.267 -29.096A11.996 11.996 0 0 1 194.094 -32H255.42C266.55 -32 271.683 -18.163 263.247 -10.904L101.818 128H115.128C194.13 128 251.846 182.257 255.778 264H308C314.627 264 320 269.373 320 276V300C320 306.627 314.627 312 308 312H251.646C246.579 333.636 237.237 352.497 224.444 368H308z" />
+    <glyph glyph-name="rv"
+      unicode="&#xF7BE;"
+      horiz-adv-x="640" d=" M592.1 240H596C620.3 240 640 259.7 640 284C640 356.9 580.9 416 508 416H384V432C384 440.8 376.8 448 368 448H240C231.2 448 224 440.8 224 432V416H64C28.7 416 0 387.3 0 352V154.5C0 137.5 6.7 121.2 18.7 109.2L96 32V16C96 -28.2 131.8 -64 176 -64S256 -28.2 256 16C256 21.5 255.4 26.8 254.4 32H417.6C416.5 26.8 416 21.5 416 16C416 -28.2 451.8 -64 496 -64S576 -28.2 576 16C576 21.5 575.4 26.8 574.4 32H608C625.6 32 640 46.4 640 64V165.6C640 182.6 633.3 198.8 621.3 210.8L592.1 240zM176 -16C158.4 -16 144 -1.6 144 16S158.4 48 176 48S208 33.6 208 16S193.6 -16 176 -16zM368 80H223.6C210.3 89.9 193.9 96 176 96S141.8 89.9 128.4 80H115.8L52.6 143.2C49.6 146.2 47.9 150.2 47.9 154.5V352C47.9 360.8 55.1 368 63.9 368H507.9C552.9 368 589.6999999999999 332.5 591.8 288H368V80zM572.2 192H416V240H517.5C521.8 240 525.9 238.3 529 235.2L572.2 192zM496 -16C478.4 -16 464 -1.6 464 16S478.4 48 496 48S528 33.6 528 16S513.6 -16 496 -16zM592 80H543.6C530.3000000000001 89.9 513.9 96 496 96S461.8 89.9 448.4 80H416V144H592V80zM304 320H112C103.2 320 96 312.8 96 304V208C96 199.2 103.2 192 112 192H304C312.8 192 320 199.2 320 208V304C320 312.8 312.8 320 304 320zM272 240H144V272H272V240z" />
+    <glyph glyph-name="sad-cry"
+      unicode="&#xF5B3;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM392 53.6V168C392 181.2 381.2 192 368 192S344 181.2 344 168V16.6C315.5 1 282.8 -8 248 -8S180.5 1 152 16.6V168C152 181.2 141.2 192 128 192S104 181.2 104 168V53.6C69.4 89.6 48 138.3 48 192C48 302.3 137.7 392 248 392S448 302.3 448 192C448 138.3 426.6 89.5 392 53.6zM205.8 213.5C210.2 215.9 212.7 220.9 211.9 225.9C207.9 251.1 177.7 268 152.1 268S96.2 251.1 92.3 225.9C91.5 220.9 94 215.9 98.4 213.5C102.8 211.1 108.3 211.7 112.1 215.1L121.6 223.6C136.4 236.8 167.8 236.8 182.6 223.6L192.1 215.1C194.6 212.8 200 210.3 205.8 213.5zM344 268C318.3 268 288.1 251.1 284.2 225.9C283.4 220.9 285.9 215.9 290.3 213.5C294.8 211.1 300.2 211.7 304 215.1L313.5 223.6C328.3 236.8 359.7 236.8 374.5 223.6L384 215.1C386.5 212.9 392 210.4 397.7 213.5C402.1 215.9 404.6 220.9 403.8 225.9C399.9000000000001 251.1 369.7 268 344 268zM248 176C217.1 176 192 147.3 192 112S217.1 48 248 48S304 76.7 304 112S278.9 176 248 176z" />
+    <glyph glyph-name="sad-tear"
+      unicode="&#xF5B4;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM256 144C242.8 144 232 133.2 232 120S242.8 96 256 96C279.8 96 302.3 85.5 317.6 67.2C325.7000000000001 57.4 340.8 55.3 351.4000000000001 64.1C361.6 72.6 363.0000000000001 87.7 354.5000000000001 97.9C330 127.2 294.1 144 256 144zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272zM162.4 173.2C151 157.9 126 122.6 126 105.1C126 82.4 144.8 64 168 64S210 82.4 210 105.1C210 122.6 185 157.9 173.6 173.2000000000001C170.8 176.9 165.2 176.9 162.4 173.2000000000001z" />
+    <glyph glyph-name="satellite-dish"
+      unicode="&#xF7C0;"
+      horiz-adv-x="512" d=" M194.3 107.7L216.2 129.6C218.8 128.9 221.2 128 224 128C241.7 128 256 142.3 256 160S241.7 192 224 192S192 177.6999999999999 192 160C192 157.1999999999999 192.9 154.8 193.6 152.1999999999999L171.7 130.3L51 251.1C47.7 254.4 43.3 256 39.1 256C33.5 256 28.1 253.3 25.2 247.9C-17.9 167.7 -5.7 65.7 62 -2C103.3 -43.3 157.5 -64 211.7 -64C246.2 -64 280.8 -55.6 312 -38.8C321.4 -33.7 322.7 -20.6 315.1 -13L194.3 107.7zM211.7 -16C168 -16 126.9 1 96 31.9C56.2 71.7 40.4 129 51.8 182.4L246.5 -12.3C235 -14.7 223.4 -16 211.7 -16zM208.7 448C199.6 448.4 192 440.8 192 431.7V415.7C192 407.1 198.8 400.4 207.4 399.9C345.6 392.2 457.2 281.6 464 143.5C464.4 134.9 471.2 128 479.8 128H495.8C504.9 128 512.5 135.6 512.1 144.7C503.5 308.1 372.1 439.5 208.7 448zM208.8 352C199.7 352.7 192 345 192 335.8V319.8C192 311.2000000000001 198.8 304.5 207.4 304C292.7 298.1 360.6 228.7 367.8 143.3C368.5 134.8 375.1 128.1 383.6 128.1H399.8C408.9 128.1 416.6 135.8 416 144.9C407.7 255.3000000000001 319.3 343.8000000000001 208.8 352z" />
+    <glyph glyph-name="satellite"
+      unicode="&#xF7BF;"
+      horiz-adv-x="512" d=" M431.8 253.9L502.6 324.7C515.1 337.2 515.1 357.5 502.6 370L433.9 438.6C427.7 444.9 419.5 448 411.3 448C403.1 448 394.9000000000001 444.9 388.7 438.6L317.9 367.8L247.1 438.7C240.8 444.9 232.7 448 224.5 448C216.3 448 208.2 444.9 202 438.7L105.3 342C92.9 329.6 92.9 309.4 105.3 296.9L150.6 251.6C136.7 254.4000000000001 122.5 255.9000000000001 108.3 255.9000000000001C73.8 255.9000000000001 39.2 247.5000000000001 8 230.7000000000001C-1.4 225.6000000000001 -2.7 212.5000000000001 4.9 204.9L125.6 84.2000000000001L103.7 62.3000000000001C101.1 63.0000000000001 98.7 63.9000000000001 95.9 63.9000000000001C78.2 63.9000000000001 63.9 49.6000000000001 63.9 31.9000000000001S78.2 -0.0999999999999 95.9 -0.0999999999999S127.9 14.2000000000001 127.9 31.9000000000001C127.9 34.7000000000001 127 37.1000000000001 126.3 39.7000000000001L148.2 61.6000000000001L269 -59.1C272.3 -62.4 276.7 -64 280.9 -64C286.5 -64 291.9 -61.3 294.8 -55.9C318.6 -11.6 324.9 39.2 314.9 87.4L360.9 41.4C367.1 35.2 375.3 32.1 383.4 32.1S399.7 35.2 405.9 41.4L502.6 138.1C515 150.5 515 170.7000000000001 502.6 183.2000000000001L431.8 253.9000000000001zM411.3 393.4L457.4 347.3L279.1 169.1C272.7000000000001 177.8 265.8 186.2000000000001 258 194C250.1 201.9 241.7 208.7 233 215.1L411.3 393.4zM224.5 393.3L283.9 333.9L210.1 260.1L150.7 319.5L224.5 393.3zM268.2 9.6L73.6 204.3C85 206.8 96.7 208 108.4 208C152.1 208 193.2 191 224.1 160.1C263.8 120.3 279.6 63 268.2 9.6zM383.5 86.7000000000001L324.1 146.1L397.9000000000001 219.9L457.3 160.5000000000001L383.5 86.7000000000001z" />
+    <glyph glyph-name="save"
+      unicode="&#xF0C7;"
+      horiz-adv-x="448" d=" M433.941 318.059L350.059 401.9410000000001A48 48 0 0 1 316.118 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V284.118A48 48 0 0 1 433.941 318.059zM272 368V288H144V368H272zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H96V264C96 250.745 106.745 240 120 240H296C309.255 240 320 250.745 320 264V364.118L398.243 285.875A6 6 0 0 0 400 281.632V22A6 6 0 0 0 394 16zM224 216C175.477 216 136 176.523 136 128S175.477 40 224 40S312 79.477 312 128S272.523 216 224 216zM224 88C201.944 88 184 105.944 184 128S201.944 168 224 168S264 150.056 264 128S246.056 88 224 88z" />
+    <glyph glyph-name="scalpel-path"
+      unicode="&#xF61E;"
+      horiz-adv-x="640" d=" M509.82 434.18C496.61 443.6 481.33 448 465.99 448C441.77 448 417.4 437.04 400.75 417.58L165.67 142.88C158.88 134.94 160.73 124.6 166.94 118.11L0 -64H0.38C101.75 -64 198.76 -29.88 273.35 30.68C273.5800000000001 30.87 273.81 31.06 274.04 31.24C299.9700000000001 52.49 316.05 81.2 323.5 111.99H333.82C344.75 111.99 355.14 116.77 362.25 125.08L524.43 314.6C555.1999999999999 350.54 549.2099999999999 406.08 509.8199999999999 434.18zM243.09 67.95C209.21 40.44 170.28 19.21 128.35 4.98L226.45 112H273.94C267.72 94.72 257.23 79.54 243.09 67.95zM487.96 345.81L328.94 160H243.5L437.2200000000001 386.37C444.4100000000001 394.78 455.43 400 465.99 400C472.02 400 477.39 398.35 481.95 395.1C492.4 387.65 495.08 377.35 495.75 371.88C496.92 362.3 494.15 353.04 487.96 345.81zM488 -16H408C403.58 -16 400 -19.58 400 -24V-56C400 -60.42 403.58 -64 408 -64H488C492.42 -64 496 -60.42 496 -56V-24C496 -19.58 492.42 -16 488 -16zM344 -16H264C259.58 -16 256 -19.58 256 -24V-56C256 -60.42 259.58 -64 264 -64H344C348.42 -64 352 -60.42 352 -56V-24C352 -19.58 348.42 -16 344 -16zM632 -16H552C547.58 -16 544 -19.58 544 -24V-56C544 -60.42 547.58 -64 552 -64H632C636.42 -64 640 -60.42 640 -56V-24C640 -19.58 636.42 -16 632 -16z" />
+    <glyph glyph-name="scalpel"
+      unicode="&#xF61D;"
+      horiz-adv-x="544" d=" M509.82 434.18C496.61 443.6 481.33 448 465.99 448C441.77 448 417.4 437.04 400.75 417.58L165.67 142.88C158.88 134.94 160.73 124.6 166.94 118.11L0 -64H0.38C101.75 -64 198.76 -29.88 273.35 30.68C273.5800000000001 30.87 273.81 31.06 274.04 31.24C299.9700000000001 52.49 316.05 81.2 323.5 111.99H333.82C344.75 111.99 355.14 116.77 362.25 125.08L524.43 314.6C555.1999999999999 350.54 549.2099999999999 406.08 509.8199999999999 434.18zM243.09 67.95C209.21 40.44 170.28 19.21 128.35 4.98L226.45 112H273.94C267.72 94.72 257.23 79.54 243.09 67.95zM487.96 345.81L328.94 160H243.5L437.2200000000001 386.37C444.4100000000001 394.78 455.43 400 465.99 400C472.02 400 477.39 398.35 481.95 395.1C492.4 387.65 495.08 377.35 495.75 371.88C496.92 362.3 494.15 353.04 487.96 345.81z" />
+    <glyph glyph-name="scanner-keyboard"
+      unicode="&#xF489;"
+      horiz-adv-x="576" d=" M400 384H16C7.2 384 0 376.8 0 368V185.4C0 176.9 3.4 168.8 9.4 162.8L32 140.1V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V140.1L406.6 162.7000000000001C412.6 168.7000000000001 416 176.8000000000001 416 185.3000000000001V368C416 376.8 408.8 384 400 384zM368 192L336 160V-16H80V160L48 192V336H368V192zM184 80H120C115.6 80 112 76.4 112 72V24C112 19.6 115.6 16 120 16H184C188.4 16 192 19.6 192 24V72C192 76.4 188.4 80 184 80zM296 80H232C227.6 80 224 76.4 224 72V24C224 19.6 227.6 16 232 16H296C300.4 16 304 19.6 304 24V72C304 76.4 300.4 80 296 80zM184 176H120C115.6 176 112 172.4 112 168V120C112 115.6 115.6 112 120 112H184C188.4 112 192 115.6 192 120V168C192 172.4 188.4 176 184 176zM296 176H232C227.6 176 224 172.4 224 168V120C224 115.6 227.6 112 232 112H296C300.4 112 304 115.6 304 120V168C304 172.4 300.4 176 296 176zM112 224H304C312.8 224 320 231.2 320 240V272C320 280.8 312.8 288 304 288H112C103.2 288 96 280.8 96 272V240C96 231.2 103.2 224 112 224zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V416H256V440zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V416H320V440zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM408 448H360C355.6 448 352 444.4 352 440V416H416V440C416 444.4 412.4 448 408 448zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448z" />
+    <glyph glyph-name="scanner-touchscreen"
+      unicode="&#xF48A;"
+      horiz-adv-x="576" d=" M400 384H16C7.2 384 0 376.8 0 368V185.4C0 176.9 3.4 168.8 9.4 162.8L32 140.1V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V140.1L406.6 162.7000000000001C412.6 168.7000000000001 416 176.8000000000001 416 185.3000000000001V368C416 376.8 408.8 384 400 384zM368 192L336 160V-16H80V160L48 192V336H368V192zM144 32H272C280.8 32 288 39.2 288 48V272C288 280.8 280.8 288 272 288H144C135.2 288 128 280.8 128 272V48C128 39.2 135.2 32 144 32zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V416H256V440zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V416H320V440zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448zM408 448H360C355.6 448 352 444.4 352 440V416H416V440C416 444.4 412.4 448 408 448z" />
+    <glyph glyph-name="scanner"
+      unicode="&#xF488;"
+      horiz-adv-x="640" d=" M632 384H456C451.6 384 448 380.4 448 376V328C448 323.6 451.6 320 456 320H632C636.4 320 640 323.6 640 328V376C640 380.4 636.4 384 632 384zM632 448H456C451.6 448 448 444.4 448 440V424C448 419.6 451.6 416 456 416H632C636.4 416 640 419.6 640 424V440C640 444.4 636.4 448 632 448zM632 288H456C451.6 288 448 284.4 448 280V232C448 227.6 451.6 224 456 224H632C636.4 224 640 227.6 640 232V280C640 284.4 636.4 288 632 288zM632 96H456C451.6 96 448 92.4 448 88V72C448 67.6 451.6 64 456 64H632C636.4 64 640 67.6 640 72V88C640 92.4 636.4 96 632 96zM632 160H456C451.6 160 448 156.4 448 152V136C448 131.6 451.6 128 456 128H632C636.4 128 640 131.6 640 136V152C640 156.4 636.4 160 632 160zM368 384H112C50.1 384 0 333.9 0 272C0 221.7 33.3 179.7 78.9 165.5L6.4 40C-6.9 17 1 -12.3 24 -25.6L79.4 -57.6C87 -62 95.2 -64 103.4 -64C120 -64 136.1 -55.4 145 -40L205 64H272C298.5 64 320 85.5 320 112V160H368C376.8 160 384 167.2 384 176V368C384 376.8 376.8 384 368 384zM103.4 -16L48 16L131.1 160H205L103.4 -16zM288 112C288 103.2 280.8 96 272 96H223.5L260.4 160H288V112zM336 208H112C76.7 208 48 236.7 48 272S76.7 336 112 336H336V208zM632 0H456C451.6 0 448 -3.6 448 -8V-56C448 -60.4 451.6 -64 456 -64H632C636.4 -64 640 -60.4 640 -56V-8C640 -3.6 636.4 0 632 0z" />
+    <glyph glyph-name="scarecrow"
+      unicode="&#xF70D;"
+      horiz-adv-x="448" d=" M445.6600000000001 261.66L419.31 288L437.65 306.3400000000001C442.69 311.38 439.12 320 431.99 320H320V352C320 405.02 277.02 448 224 448C222.29 448 220.57 447.96 218.84 447.87C166.93 445.15 128 398.55 128 346.57V320H16C8.87 320 5.3 311.38 10.34 306.3400000000001L28.69 288L2.34 261.66C-0.78 258.54 -0.78 253.47 2.34 250.35L28.69 224L10.35 205.66C5.3 200.62 8.87 192 16 192H122.13L96.23 50.66C94.52 40.38 102.69 32 112 32C114.36 32 116.8 32.54 119.16 33.72L151.87 57.97A15.949999999999998 15.949999999999998 0 0 0 161.4 61.12C163.98 61.12 166.56 60.5 168.93 59.24L200 42.67V-48C200 -56.84 207.16 -64 216 -64H232C240.84 -64 248 -56.84 248 -48V42.67L279.07 59.24C281.43 60.5 284.02 61.12 286.6 61.12C289.97 61.12 293.32 60.06 296.13 57.97L328.8399999999999 33.72C331.2099999999999 32.54 333.64 32 336 32C345.31 32 353.49 40.38 351.7699999999999 50.66L325.87 192H432C439.13 192 442.7 200.62 437.6600000000001 205.66L419.31 224L445.65 250.34A8.006 8.006 0 0 1 445.66 261.66zM221.35 399.93L224 400C245.96 400 264.32 385.0900000000001 270.01 364.93C267.02 366.71 263.73 368 260 368C248.96 368 240 359.05 240 348C240 336.9600000000001 248.96 328 260 328C264.59 328 268.62 329.81 272 332.41V320C272 311.18 264.82 304 256 304H192C183.18 304 176 311.18 176 320V346.57C176 347.16 176.14 347.7200000000001 176.16 348.31C179.51 345.78 183.48 344 188 344C199.04 344 208 352.96 208 364C208 374.46 199.89 382.78 189.67 383.66C197.85 393.1 209.02 399.29 221.35 399.93zM367.43 240H268.26L278.64 183.35L292.29 108.88A64.148 64.148 0 0 1 256.47 101.6L224 84.27L191.51 101.59A64.267 64.267 0 0 1 161.4 109.12C159.48 109.12 157.58 109.04 155.69 108.87L169.34 183.3399999999999L179.73 240H80.57L64.57 256L80.57 272H150.07C161.32 262.16 175.87 256 192 256H256C272.12 256 286.67 262.16 297.93 272H367.44L383.44 256L367.43 240z" />
+    <glyph glyph-name="scarf"
+      unicode="&#xF7C1;"
+      horiz-adv-x="512" d=" M509.7 52.3L440.9 120.9L366.6 195.1L390.7 219.8C439.3 273.5 403.7 333.1 402.2 335.6L358.6 408.7C354.3 415.9 348.7 422 341.8 426.7C296 457.3 209.4 452.8999999999999 170.3 426.5C163.4 421.8 157.8 415.7 153.5 408.5L109.9 335.4C108.4 332.9 72.8 273.3 121.4 219.6L145.5 194.9L71.2 120.7L2.2999999999999 52.3C-0.8000000000001 49.1999999999999 -0.8000000000001 44.1 2.2999999999999 40.9999999999999L13.5999999999999 29.6999999999999C16.6999999999999 26.5999999999999 21.7999999999999 26.5999999999999 24.8999999999999 29.6999999999999L93.6999999999999 98.3L116.2999999999999 75.6999999999999L47.4999999999999 7.0999999999999C44.3999999999999 3.9999999999999 44.3999999999999 -1.1000000000001 47.4999999999999 -4.2000000000001L58.7999999999999 -15.5000000000001C61.8999999999999 -18.6000000000001 66.9999999999999 -18.6000000000001 70.0999999999999 -15.5000000000001L138.8999999999999 53.0999999999999L161.3999999999999 30.5999999999999L92.6999999999999 -39.1000000000001C89.5999999999999 -42.2000000000001 89.5999999999999 -47.3000000000001 92.6999999999999 -50.4000000000001L103.9999999999999 -61.7000000000001C107.0999999999999 -64.8000000000001 112.1999999999999 -64.8000000000001 115.2999999999999 -61.7000000000001L256 82.1L396.5 -61.6C399.6 -64.6999999999999 404.7 -64.6999999999999 407.8 -61.6L419.1 -50.3C422.2000000000001 -47.1999999999999 422.2000000000001 -42.1 419.1 -38.9999999999999L350.4000000000001 30.7L372.9000000000001 53.2L441.7000000000001 -15.4C444.8000000000001 -18.5 449.9000000000001 -18.5 453.0000000000001 -15.4L464.3000000000001 -4.1C467.4000000000001 -0.9999999999999 467.4000000000001 4.1 464.3000000000001 7.2L395.5000000000001 75.8000000000001L418.1000000000001 98.4000000000001L486.9000000000001 29.8000000000001C490.0000000000001 26.7 495.1000000000001 26.7 498.2000000000001 29.8000000000001L509.5000000000001 41.1000000000001C512.8000000000001 44.1000000000001 512.8000000000001 49.1000000000001 509.7000000000001 52.3000000000001zM361 310.9C365.3 303.5 377.6 277.5 355.6 252.6L332.5 229L289.8 271.8L349 331L361 310.9zM194.7 383.9C207.3 404.9 304.9 404.9 317.4 384L323.7 373.5L256 305.7L188.4 373.5L194.7 383.9zM221.7 115.6L183.5 76.5L139.1 120.8L179.1 160.7L222.5 116.4L221.7 115.6zM328.5 76.6L156.4 252.6C134.4 277.5 146.7 303.5 151.1 311L163.1 331.1L372.9 121L328.5 76.6z" />
+    <glyph glyph-name="school"
+      unicode="&#xF549;"
+      horiz-adv-x="640" d=" M368 96H272C263.1600000000001 96 256 88.84 256 80V-48C256 -56.84 263.1600000000001 -64 272 -64H368C376.84 -64 384 -56.84 384 -48V80C384 88.84 376.84 96 368 96zM320 328C271.4 328 232 288.6 232 240S271.4 152 320 152S408 191.4 408 240S368.6 328 320 328zM368 216C368 211.58 364.42 208 360 208H312C307.58 208 304 211.58 304 216V280C304 284.42 307.58 288 312 288H328C332.42 288 336 284.42 336 280V240H360C364.42 240 368 236.42 368 232V216zM608 256H512V309.33C512 320.03 506.65 330.02 497.75 335.95L337.75 442.62A31.899999999999995 31.899999999999995 0 0 1 320 448A31.97 31.97 0 0 1 302.25 442.63L142.25 335.96A32.015 32.015 0 0 1 128 309.3400000000001V256H32C14.33 256 0 241.67 0 224V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V208H128V-64H176V300.77L320 396.77L464 300.77V-64H512V208H592V-48C592 -56.84 599.16 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V224C640 241.67 625.67 256 608 256z" />
+    <glyph glyph-name="screwdriver"
+      unicode="&#xF54A;"
+      horiz-adv-x="512" d=" M400 224L512 373.33L437.33 448L288 336V257.94L212.15 182.09C167.27 205.88 129.47 181.67 115.74 167.93L12.03 64.23C-4.01 48.18 -4.01 22.17 12.03 6.12L70.12 -51.97C78.15 -59.99 88.66 -64 99.18 -64C109.69 -64 120.21 -59.99 128.23 -51.97L231.94 51.74C258.08 77.8799999999999 262.55 117.11 246.1 148.15L321.94 224H400zM336 312L432.83 384.62L448.62 368.8300000000001L376 272H336V312zM197.99 85.68L99.17 -13.14L50.86 35.17L149.68 133.99C163.02 147.33 184.63 147.35 197.99 133.99C211.31 120.67 211.31 99 197.99 85.68z" />
+    <glyph glyph-name="scroll-old"
+      unicode="&#xF70F;"
+      horiz-adv-x="640" d=" M608 112H544V177.94L529.94 192L544 206.06V305.94L529.94 320L544 334.06V360C544 408.52 504.53 448 456 448H80C35.88 448 0 412.11 0 368V304C0 286.36 14.34 272 32 272H112V206.06L126.06 192L112 177.94V44.56C112 -10.88 153.69 -60.9 210.66 -63.74L522.66 -64C587.38 -64 640 -11.36 640 53.33V80C640 97.64 625.66 112 608 112zM48 320V368C48 385.64 62.34 400 80 400S112 385.64 112 368V320H48zM160 44.56V158.06L193.94 192L160 225.94V368C160 379.38 157.62 390.2 153.31 400H456C478.06 400 496 382.06 496 360V353.94L462.06 320L496 286.06V225.94L462.06 192L496 158.06V112H430.06L416 97.94L401.94 112H304C286.34 112 272 97.64 272 80V40C272 24.22 265.28 9.08 253.56 -1.53C241.68 -12.26 226.31 -17.2 210.15 -15.72C182.03 -12.89 160 13.58 160 44.5600000000001zM592 53.33C592 15.1 560.91 -16 522.66 -16H303.11C313.7800000000001 0.62 320 19.92 320 40V64H382.06L416 30.06L449.94 64H592V53.33z" />
+    <glyph glyph-name="scroll"
+      unicode="&#xF70E;"
+      horiz-adv-x="640" d=" M608 112H544V360C544 408.52 504.53 448 456 448H80C35.88 448 0 412.11 0 368V304C0 286.36 14.34 272 32 272H112V44.56C112 -10.88 153.69 -60.9 210.66 -63.74V-64H522.66C587.38 -64 640 -11.36 640 53.33V80C640 97.64 625.66 112 608 112zM48 320V368C48 385.64 62.34 400 80 400S112 385.64 112 368V320H48zM160 44.56V368C160 379.38 157.62 390.2 153.31 400H456C478.06 400 496 382.06 496 360V112H304C286.34 112 272 97.64 272 80V40C272 -31.98 160 -38.07 160 44.56zM592 53.33C592 15.1 560.91 -16 522.66 -16H303.11C313.7800000000001 0.62 320 19.92 320 40V64H592V53.33z" />
+    <glyph glyph-name="scrubber"
+      unicode="&#xF2F8;"
+      horiz-adv-x="496" d=" M248 392C358.5 392 448 302.5 448 192S358.5 -8 248 -8S48 81.5 48 192S137.5 392 248 392M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 256C212.7 256 184 227.3 184 192S212.7 128 248 128S312 156.7 312 192S283.3 256 248 256z" />
+    <glyph glyph-name="scythe"
+      unicode="&#xF710;"
+      horiz-adv-x="512" d=" M511.54 288.15C500.76 343.44 445.6600000000001 448 314.4700000000001 448C222.68 448 144.67 383.94 124.72 292.2100000000001C119.75 269.37 118.27 241.83 120.71 214.8L53.34 147.43C47.09 141.18 47.09 131.05 53.34 124.8L75.93 102.2L9.33 35.6C-3.13 23.14 -3.13 2.93 9.33 -9.53L54.46 -54.66C60.69 -60.89 68.86 -64.01 77.03 -64.01S93.36 -60.89 99.6 -54.66L166.2 11.9400000000001L188.8 -10.66C195.02 -16.88 205.13 -16.9 211.37 -10.66L279.07 57.04C285.3 63.27 285.3 73.37 279.07 79.61L264.61 94.07L278.3400000000001 107.78C284.3800000000001 113.82 284.0900000000001 123.47 278.6600000000001 130.06C258.54 154.4599999999999 250.1200000000001 185.3399999999999 255.0000000000001 217.16C262.5100000000001 266.42 300.4500000000001 307.8 353.5600000000001 317.8999999999999C359.9200000000001 319.1099999999999 366.3900000000001 319.7 372.8700000000001 319.7C388.5500000000001 319.7 404.2600000000001 316.26 418.6000000000001 309.88C439.6400000000001 300.51 456.8800000000001 286.8399999999999 469.6500000000001 269.5199999999999C474.2000000000001 263.33 481.1700000000001 259.92 488.4100000000001 259.92C491.5800000000001 259.92 494.8000000000001 260.57 497.8900000000001 261.93C508.0900000000001 266.39 513.69 277.18 511.5400000000001 288.1499999999999zM200.04 45.7L166.16 79.58L77.05 -9.52L54.48 13.05L143.68 102.06L109.52 136.22L132.15 158.85L222.66 68.34L200.04 45.7zM372.88 367.57C363.35 367.57 353.84 366.68 344.64 364.93C273.48 351.41 218.44 294.92 207.69 224.41C203.27 195.57 206.88 167.31 217.25 141.45L173.24 185.94L170.34 202.7C165.88 228.5 166.32 258.16 171.51 282.03C186.63 351.56 245.42 400.11 314.48 400.12C362.2000000000001 400.12 395.3200000000001 382.64 418.05 360.96C403.32 365.31 388 367.57 372.88 367.57z" />
+    <glyph glyph-name="sd-card"
+      unicode="&#xF7C2;"
+      horiz-adv-x="448" d=" M384 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H384C419.3 -64 448 -35.3 448 0V384C448 419.3 419.3 448 384 448zM400 0C400 -8.8 392.8 -16 384 -16H64C55.2 -16 48 -8.8 48 0V300.1L147.9 400H384C392.8 400 400 392.8 400 384V0zM320 272H368V368H320V272zM240 272H288V368H240V272zM160 272H208V368H160V272z" />
+    <glyph glyph-name="search-dollar"
+      unicode="&#xF688;"
+      horiz-adv-x="512" d=" M235.09 248.58L190.09 262.0800000000001C184.93 263.63 181.32 268.86 181.32 274.81C181.32 282.0800000000001 186.62 288 193.12 288H221.23C225.79 288 230.1900000000001 286.7100000000001 234.05 284.28C237.29 282.25 241.4100000000001 282.37 244.18 285.01L255.93 296.2200000000001C259.46 299.5900000000001 259.26 305.43 255.36 308.36C246.26 315.1900000000001 235.2800000000001 319.13 223.99 319.7100000000001V336C223.99 340.42 220.41 344 215.99 344H199.99C195.57 344 191.99 340.42 191.99 336V319.88C168.37 319.25 149.32 299.33 149.32 274.81C149.32 254.84 162.3 237 180.9 231.42L225.9 217.92C231.06 216.37 234.67 211.14 234.67 205.19C234.67 197.92 229.37 192 222.87 192H194.76C190.2 192 185.8 193.29 181.94 195.72C178.7 197.75 174.58 197.63 171.81 194.9900000000001L160.06 183.78C156.53 180.41 156.73 174.5700000000001 160.63 171.6400000000001C169.73 164.8100000000001 180.71 160.8700000000001 192 160.29V144C192 139.58 195.58 136 200 136H216C220.42 136 224 139.58 224 144V160.12C247.62 160.75 266.67 180.66 266.67 205.19C266.67 225.16 253.6900000000001 243 235.0900000000001 248.58zM508.47 -20.88L387.0800000000001 100.52C384.7800000000001 102.82 381.7800000000001 104.02 378.5800000000001 104.02H365.3800000000001C396.8800000000001 140.52 415.9800000000001 188.02 415.9800000000001 240.01C415.98 354.9 322.88 448 207.99 448S0 354.9 0 240.01C0 125.12 93.1 32.02 207.99 32.02C259.99 32.02 307.48 51.12 343.98 82.62V69.42C343.98 66.22 345.2800000000001 63.22 347.48 60.92L468.87 -60.47C473.57 -65.17 481.17 -65.17 485.87 -60.47L508.47 -37.8699999999999C513.1800000000001 -33.1799999999999 513.1800000000001 -25.5799999999999 508.47 -20.8799999999999zM207.99 80.02C119.59 80.02 48 151.62 48 240.01C48 328.41 119.59 400 207.99 400C296.38 400 367.98 328.4 367.98 240.01C367.98 151.61 296.38 80.02 207.99 80.02z" />
+    <glyph glyph-name="search-location"
+      unicode="&#xF689;"
+      horiz-adv-x="512" d=" M208 336C167.22 336 134.17 302.95 134.17 262.17C134.17 229.21 182.42 169.12 200.91 147.31A9.24 9.24 0 0 1 215.09 147.31C233.5800000000001 169.12 281.8300000000001 229.2 281.8300000000001 262.17C281.8300000000001 302.9500000000001 248.7800000000001 336 208.0000000000001 336zM208 240C194.75 240 184 250.75 184 264C184 277.26 194.75 288 208 288S232 277.26 232 264C232 250.75 221.25 240 208 240zM508.47 -20.88L387.0800000000001 100.52C384.7800000000001 102.82 381.7800000000001 104.02 378.5800000000001 104.02H365.3800000000001C396.8800000000001 140.52 415.9800000000001 188.02 415.9800000000001 240.01C415.98 354.9 322.88 448 207.99 448S0 354.9 0 240.01C0 125.12 93.1 32.02 207.99 32.02C259.99 32.02 307.48 51.12 343.98 82.62V69.42C343.98 66.22 345.2800000000001 63.22 347.48 60.92L468.87 -60.47C473.57 -65.17 481.17 -65.17 485.87 -60.47L508.47 -37.8699999999999C513.1800000000001 -33.1799999999999 513.1800000000001 -25.5799999999999 508.47 -20.8799999999999zM207.99 80.02C119.59 80.02 48 151.62 48 240.01C48 328.41 119.59 400 207.99 400C296.38 400 367.98 328.4 367.98 240.01C367.98 151.61 296.38 80.02 207.99 80.02z" />
+    <glyph glyph-name="search-minus"
+      unicode="&#xF010;"
+      horiz-adv-x="512" d=" M312 252V228C312 221.4 306.6 216 300 216H116C109.4 216 104 221.4 104 228V252C104 258.6 109.4 264 116 264H300C306.6 264 312 258.6 312 252zM508.5 -37.9L485.9 -60.5C481.2 -65.2 473.6 -65.2 468.9 -60.5L347.5 60.9C345.2 63.2 344 66.2 344 69.4V82.6C307.5 51.1 260 31.9999999999999 208 31.9999999999999C93.1 32 0 125.1 0 240S93.1 448 208 448S416 354.9 416 240C416 188 396.9 140.5 365.4 104H378.6C381.8 104 384.8 102.7 387.1 100.5L508.5 -20.9C513.2 -25.6 513.2 -33.2 508.5 -37.9zM368 240C368 328.4 296.4 400 208 400S48 328.4 48 240S119.6 80 208 80S368 151.6 368 240z" />
+    <glyph glyph-name="search-plus"
+      unicode="&#xF00E;"
+      horiz-adv-x="512" d=" M312 252V228C312 221.4 306.6 216 300 216H232V148C232 141.4 226.6 136 220 136H196C189.4 136 184 141.4 184 148V216H116C109.4 216 104 221.4 104 228V252C104 258.6 109.4 264 116 264H184V332C184 338.6 189.4 344 196 344H220C226.6 344 232 338.6 232 332V264H300C306.6 264 312 258.6 312 252zM508.5 -37.9L485.9 -60.5C481.2 -65.2 473.6 -65.2 468.9 -60.5L347.5 60.9C345.2 63.2 344 66.2 344 69.4V82.6C307.5 51.1 260 31.9999999999999 208 31.9999999999999C93.1 32 0 125.1 0 240S93.1 448 208 448S416 354.9 416 240C416 188 396.9 140.5 365.4 104H378.6C381.8 104 384.8 102.7 387.1 100.5L508.5 -20.9C513.2 -25.6 513.2 -33.2 508.5 -37.9zM368 240C368 328.4 296.4 400 208 400S48 328.4 48 240S119.6 80 208 80S368 151.6 368 240z" />
+    <glyph glyph-name="search"
+      unicode="&#xF002;"
+      horiz-adv-x="512" d=" M508.5 -20.9L387.1 100.5C384.8 102.8 381.8 104 378.6 104H365.4000000000001C396.9000000000001 140.5 416.0000000000001 188 416.0000000000001 240C416 354.9 322.9 448 208 448S0 354.9 0 240S93.1 32 208 32C260 32 307.5 51.1 344 82.6V69.4C344 66.2000000000001 345.3 63.2000000000001 347.5 60.9L468.9 -60.5C473.6 -65.2 481.2 -65.2 485.9 -60.5L508.5 -37.9C513.2 -33.2 513.2 -25.6 508.5 -20.9zM208 80C119.6 80 48 151.6 48 240S119.6 400 208 400S368 328.4 368 240S296.4 80 208 80z" />
+    <glyph glyph-name="seedling"
+      unicode="&#xF4D8;"
+      horiz-adv-x="512" d=" M436.4 416C345.4 416 268.1 348.1 241.7 254.6C204.6 313.4 144 352 75.6 352H0V328C0 200.1 91.7 96 204.4 96H232V-16C232 -24.8 239.2 -32 248 -32H264C272.8 -32 280 -24.8 280 -16V160H307.6C420.3 160 512 264.1 512 392V416H436.4zM204.4 144C125.1 144 59.3 213.8 49.3 304H75.5C154.8 304 220.6 234.2 230.6 144H204.4zM307.6 208H281.4C291.4 298.2 357.2 368 436.5 368H462.7C452.7 277.8 386.9 208 307.6 208z" />
+    <glyph glyph-name="server"
+      unicode="&#xF233;"
+      horiz-adv-x="512" d=" M424 48C424 34.745 413.255 24 400 24S376 34.745 376 48S386.745 72 400 72S424 61.255 424 48zM336 72C322.745 72 312 61.255 312 48S322.745 24 336 24S360 34.745 360 48S349.255 72 336 72zM400 216C386.745 216 376 205.255 376 192S386.745 168 400 168S424 178.745 424 192S413.255 216 400 216zM336 216C322.745 216 312 205.255 312 192S322.745 168 336 168S360 178.745 360 192S349.255 216 336 216zM512 288A47.75800000000001 47.75800000000001 0 0 0 505.562 264A47.75800000000001 47.75800000000001 0 0 0 512 240V144A47.75800000000001 47.75800000000001 0 0 0 505.562 120A47.75800000000001 47.75800000000001 0 0 0 512 96V0C512 -26.51 490.51 -48 464 -48H48C21.49 -48 0 -26.51 0 0V96A47.75800000000001 47.75800000000001 0 0 0 6.438 120A47.75800000000001 47.75800000000001 0 0 0 0 144V240A47.75800000000001 47.75800000000001 0 0 0 6.438 264A47.75800000000001 47.75800000000001 0 0 0 0 288V384C0 410.51 21.49 432 48 432H464C490.51 432 512 410.51 512 384V288zM48 288H464V384H48V288zM464 240H48V144H464V240zM464 96H48V0H464V96zM400 312C413.255 312 424 322.745 424 336S413.255 360 400 360S376 349.255 376 336S386.745 312 400 312zM336 312C349.255 312 360 322.745 360 336S349.255 360 336 360S312 349.255 312 336S322.745 312 336 312z" />
+    <glyph glyph-name="shapes"
+      unicode="&#xF61F;"
+      horiz-adv-x="512" d=" M480 160H320C302.33 160 288 145.67 288 128V-32C288 -49.67 302.33 -64 320 -64H480C497.67 -64 512 -49.67 512 -32V128C512 145.67 497.67 160 480 160zM464 -16H336V112H464V-16zM128 192C57.31 192 0 134.69 0 64S57.31 -64 128 -64S256 -6.69 256 64S198.69 192 128 192zM128 -16C83.89 -16 48 19.89 48 64S83.89 144 128 144S208 108.11 208 64S172.11 -16 128 -16zM506.98 246.86L400.07 429.71C392.95 441.9 380.4700000000001 448 368 448S343.05 441.9 335.93 429.71L229.02 246.86C214.76 222.48 232.58 192 261.0900000000001 192H474.91C503.42 192 521.24 222.48 506.98 246.86zM280.61 240L368 389.4700000000001L455.39 240H280.61z" />
+    <glyph glyph-name="share-all"
+      unicode="&#xF367;"
+      horiz-adv-x="640" d=" M497.94 241.94L337.94 401.9C307.89 431.96 256 410.8400000000001 256 367.96V295.23C127.16 290.64 0 262.02 0 119.62C0 55.84 27.85 11.21 78.46 -23.49C115.35 -48.77 164.73 -13.81 151.56 29.94C134.05 88.12 137.82 114.17 256 119.11V48.03C256 5.11 307.92 -15.9299999999999 337.94 14.09L497.94 174.0600000000001C516.69 192.8000000000001 516.69 223.2000000000001 497.94 241.9400000000001zM304 48V168C166.429 168 64.598 152.247 105.6 16C76.79 35.75 48 63.82 48 119.62C48 241.487 183.384 248 304 248V368L464 208L304 48zM625.941 174.059L465.941 14.092C445.5710000000001 -6.278 415.124 -3.133 397.6500000000001 14.398L592 208L397.652 401.593C415.12 419.123 445.552 422.2920000000001 465.942 401.903L625.942 241.9410000000001C644.686 223.196 644.686 192.804 625.941 174.059z" />
+    <glyph glyph-name="share-alt-square"
+      unicode="&#xF1E1;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM394 16H54A6 6 0 0 0 48 22V362A6 6 0 0 0 54 368H394A6 6 0 0 0 400 362V22A6 6 0 0 0 394 16zM336 112C336 85.49 314.51 64 288 64S240 85.49 240 112C240 114.007 240.138 115.981 240.377 117.923L171.246 152.488A47.76800000000001 47.76800000000001 0 0 0 144 144C117.49 144 96 165.49 96 192S117.49 240 144 240A47.762 47.762 0 0 0 171.246 231.511L240.377 266.076A48.461 48.461 0 0 0 240 272C240 298.51 261.49 320 288 320S336 298.51 336 272S314.51 224 288 224C275.0590000000001 224 263.323 229.131 254.69 237.457L190.15 205.187A47.93500000000001 47.93500000000001 0 0 0 190.15 178.813L254.69 146.543C263.323 154.87 275.0590000000001 160 288 160C314.51 160 336 138.51 336 112z" />
+    <glyph glyph-name="share-alt"
+      unicode="&#xF1E0;"
+      horiz-adv-x="448" d=" M448 32C448 -21.019 405.019 -64 352 -64S256 -21.019 256 32A95.942 95.942 0 0 0 260.438 60.924L162.101 122.384C144.887 106.034 121.616 96 96 96C42.981 96 0 138.981 0 192S42.981 288 96 288C121.616 288 144.887 277.966 162.101 261.615L260.438 323.076A95.942 95.942 0 0 0 256 352C256 405.019 298.981 448 352 448S448 405.019 448 352S405.019 256 352 256C326.384 256 303.113 266.034 285.899 282.385L187.562 220.924C193.479 202.174 193.484 181.841 187.562 163.076L285.899 101.615C303.113 117.966 326.384 128 352 128C405.019 128 448 85.019 448 32zM352 400C325.533 400 304 378.467 304 352S325.533 304 352 304S400 325.533 400 352S378.467 400 352 400M96 240C69.533 240 48 218.467 48 192S69.533 144 96 144S144 165.533 144 192S122.467 240 96 240M352 80C325.533 80 304 58.467 304 32S325.533 -16 352 -16S400 5.533 400 32S378.467 80 352 80" />
+    <glyph glyph-name="share-square"
+      unicode="&#xF14D;"
+      horiz-adv-x="576" d=" M561.938 289.94L417.94 433.908C387.926 463.922 336 442.903 336 399.968V342.77C293.55 340.89 251.97 336.2200000000001 215.24 324.7800000000001C180.07 313.8300000000001 152.17 297.2000000000001 132.33 275.36C108.22 248.8 96 215.4 96 176.06C96 114.363 129.178 63.605 180.87 31.3C218.416 7.792 266.118 43.951 251.89 87.04C236.375 134.159 234.734 157.963 336 165.8V112C336 69.007 387.968 48.087 417.94 78.06L561.938 222.06C580.688 240.8 580.688 271.2 561.938 289.94zM384 112V215.84C255.309 213.918 166.492 192.65 206.31 72C176.79 90.45 144 123.92 144 176.06C144 285.394 273.14 295.007 384 295.91V400L528 256L384 112zM408.74 27.507A82.658 82.658 0 0 1 429.714 36.81C437.69 41.762 448 35.984 448 26.596V-16C448 -42.51 426.51 -64 400 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H180C186.627 384 192 378.627 192 372V367.514C192 362.597 189.013 358.145 184.431 356.362C170.729 351.031 158.035 344.825 146.381 337.777A12.138 12.138 0 0 0 140.101 336H54A6 6 0 0 1 48 330V-10A6 6 0 0 1 54 -16H394A6 6 0 0 1 400 -10V15.966C400 21.336 403.579 26.025 408.74 27.507z" />
+    <glyph glyph-name="share"
+      unicode="&#xF064;"
+      horiz-adv-x="576" d=" M561.938 257.94L385.94 433.8930000000001C355.79 464.043 304 442.673 304 399.953V319.25C166.04 315.1 0 288.32 0 117.95C0 44.2 38.02 -16.769 97.63 -55.999C134.75 -80.429 183.47 -45.099 169.82 -1.539C145.47 76.141 157.41 117.8 304 126.34V48.0599999999999C304 5.42 355.73 -16.09 385.94 14.1199999999999L561.937 190.06C580.688 208.8 580.688 239.2 561.938 257.94zM352 48V175.91C187.479 174.12 74.56 142.0890000000001 124.02 -15.7C88 8 48 50.99 48 117.95C48 260.192 208.819 271.34 352 271.9700000000001V400L528 224L352 48z" />
+    <glyph glyph-name="sheep"
+      unicode="&#xF711;"
+      horiz-adv-x="640" d=" M496 352C487.16 352 480 344.8400000000001 480 336S487.16 320 496 320S512 327.16 512 336S504.84 352 496 352zM609.81 347.08L584 362.44V368C584 398.87 558.88 424 528 424H446.38C442.76 437.7 430.84 448 416 448C398.33 448 384 433.67 384 416V348.96C371.61 350.67 359.17 349.05 347.81 343.95C330.7 353.4 307.04 355.51 286 344.95C267.59 354.15 244.81 354.15 226.41 345.01C207.57 354.48 183.5 354.09 164.94 344.01C152 349.9 137.38 351.53 122.63 348.38C104.75 344.36 89.51 333.27 79.94 318.04C62.35 315.96 45.88 306.88 34.28 292.21C23.03 277.64 18.06 259.27 20 241.33C7.38 228.55 0 210.99 0 192.31S7.25 156.12 19.69 143.39C17.63 125.22 22.63 106.77 33.97 92.45C45.25 77.78 61.63 68.64 79.22 66.54C83.99 58.83 90.18 52.18 97.39 46.97L118.18 -39.49C121.64 -53.87 134.5 -64.01 149.29 -64.01H223.99C244.85 -64.01 260.13 -44.37 255.01 -24.15L240.3400000000001 33.76A66.566 66.566 0 0 1 255.57 31.99C266.0700000000001 31.99 276.29 34.44 285.5100000000001 39.08C291.1500000000001 36.33 297.4700000000001 34.63 304.0300000000001 33.51V-32C304.0300000000001 -49.67 318.36 -64 336.0300000000001 -64H416.0300000000001C433.7000000000001 -64 448.0300000000001 -49.67 448.0300000000001 -32V70.14C459.39 74.48 469.75 81.7 477.73 91.78C488.98 106.36 493.95 124.73 492.01 142.67C504.63 155.4499999999999 512.01 173.0099999999999 512.01 191.69C512.01 200.1699999999999 510.33 208.34 507.54 216H575.67C593.42 216 609.98 225.56 618.89 241.05C637.83 274.25 640.01 289.19 640.01 297.53C640 318.5899999999999 628.47 337.4699999999999 609.81 347.08zM161.89 -16L149.48 35.61C154.5 36.59 159.45 37.94 164.18 40.07C172.37 35.61 181.66 33.35 191.09 32.67L203.42 -16H161.89zM400.02 -16H352.02V38.2C363.72 33.97 376.42 32.82 389.37 35.61C393.07 36.44 396.57 37.75 400.02 39.16V-16zM453.44 173.03L435.1 162.76L442.85 143.23C449.05 127.71 436.63 111.18 421.0700000000001 113.76L399.8800000000001 117.53L393.8500000000001 96.86C390.0200000000001 83.72 373.7100000000001 76.41 361.9700000000001 86.9399999999999L344.8100000000001 102.16L328.8100000000001 85.72C322.2500000000001 78.94 310.4000000000001 77.43 301.9300000000001 85.49L285.3400000000001 101.2699999999999L268.8100000000001 85.43C261.4000000000001 78.41 249.7500000000001 78.37 242.8100000000001 85.1999999999999L226.2200000000001 101.5699999999999L209.3800000000001 85.43C200.8200000000001 77.1999999999999 187.0000000000001 81.15 182.6900000000001 85.68L167 101.91L149.84 87.27C138.63 77.77 121.86 82.4 117.65 97.3200000000001L111.71 118.2300000000001L90.3 114.4000000000001C75.71 111.7600000000001 62.43 127.7700000000001 68.83 143.8800000000001L76.58 163.4000000000001L58.24 173.6700000000001C44.82 181.2300000000001 44.27 202.9500000000001 58.55 210.9800000000001L76.89 221.2500000000001L69.14 240.7800000000001C62.91 256.3900000000001 75.6 273.0000000000001 90.92 270.2500000000001L112.11 266.4800000000001L118.14 287.1500000000001C122.01 300.4200000000001 138.36 307.4800000000001 150.02 297.0700000000001L167.18 281.8700000000001L183.15 298.2900000000001C187.59 302.7900000000001 201.43 306.7300000000001 209.37 298.8700000000001L225.96 282.4200000000001L242.87 298.5800000000001C250.15 305.5600000000001 262.06 305.6600000000001 269.46 298.5500000000001L286.08 282.7100000000001L302.64 298.6200000000001C312.68 308.3200000000001 324.51 303.3300000000001 329.33 298.3400000000001L344.99 282.1400000000001L362.1500000000001 296.7600000000001C374.3 307.0600000000001 390.4500000000001 300.4800000000002 394.3400000000001 286.7100000000001L400.2800000000001 265.8000000000001L421.6900000000001 269.6300000000001C436.3200000000001 272.3200000000001 449.5300000000001 256.1900000000001 443.1600000000001 240.1500000000001L435.4100000000001 220.6300000000001L453.7500000000001 210.3600000000001C467.1700000000001 202.7900000000001 467.7200000000001 181.0700000000001 453.4400000000001 173.0300000000001zM575.66 264H490.83C488.61 273.9600000000001 484.46 283.44 478.04 291.55C466.76 306.2200000000001 450.3799999999999 315.36 432.79 317.4600000000001C432.56 317.8300000000001 432.24 318.12 432.01 318.49V376H528.01C532.42 376 536.01 372.41 536.01 368V335.13L585.98 305.41C595.64 300.13 594.58 294.92 575.66 264z" />
+    <glyph glyph-name="shekel-sign"
+      unicode="&#xF20B;"
+      horiz-adv-x="384" d=" M216 288V96C216 87.16 223.16 80 232 80H264C272.84 80 280 87.16 280 96V288C280 358.69 222.69 416 152 416H24C10.75 416 0 405.26 0 392V-16C0 -24.84 7.16 -32 16 -32H48C56.84 -32 64 -24.84 64 -16V352H152C187.35 352 216 323.35 216 288zM368 416H336C327.1600000000001 416 320 408.8400000000001 320 400V96C320 60.65 291.35 32 256 32H168V288C168 296.8400000000001 160.84 304 152 304H120C111.16 304 104 296.8400000000001 104 288V-8C104 -21.25 114.75 -32 128 -32H256C326.69 -32 384 25.31 384 96V400C384 408.8400000000001 376.84 416 368 416z" />
+    <glyph glyph-name="shield-alt"
+      unicode="&#xF3ED;"
+      horiz-adv-x="512" d=" M113.12 288.467L256 348V38.35C178.27 85.909 121.514 172.2810000000001 113.12 288.467zM496 320C496 98.718 360.0660000000001 -24.645 274.461 -60.308A48 48 0 0 0 237.538 -60.308C130.495 -15.713 16 121.513 16 320A48 48 0 0 0 45.539 364.308L237.539 444.308A48 48 0 0 0 274.462 444.308L466.462 364.308A48 48 0 0 0 496 320zM448 320L255.999 400L64 320C64 150.722 158.451 24.639 255.998 -15.999C349.602 22.983 448 146.196 448 320z" />
+    <glyph glyph-name="shield-check"
+      unicode="&#xF2F7;"
+      horiz-adv-x="512" d=" M466.461 364.308L274.461 444.308A48 48 0 0 1 237.538 444.308L45.538 364.308A48 48 0 0 1 16 320C16 121.513 130.495 -15.713 237.539 -60.308A48 48 0 0 1 274.462 -60.308C360.066 -24.645 496 98.718 496 320A48 48 0 0 1 466.461 364.308zM255.998 -15.999C158.451 24.639 64 150.722 64 320L255.999 400L448 320C448 146.196 349.602 22.983 255.998 -15.999zM403.82 257.724L231.232 86.52C226.527 81.853 218.929 81.883 214.262 86.588L123.481 178.104C118.814 182.809 118.844 190.407 123.55 195.075L146.268 217.611C150.973 222.278 158.571 222.248 163.238 217.542L223.03 157.265L364.382 297.48C369.087 302.147 376.685 302.117 381.352 297.412L403.888 274.694C408.556 269.989 408.525 262.391 403.82 257.724z" />
+    <glyph glyph-name="shield-cross"
+      unicode="&#xF712;"
+      horiz-adv-x="448" d=" M420.43 364.31L241.23 444.31C235.72 446.77 229.86 448 224 448S212.28 446.77 206.77 444.31L27.57 364.31C10.88 356.86 0 339.38 0 320C0 121.51 106.86 -15.71 206.77 -60.31C212.28 -62.77 218.14 -64 224 -64S235.72 -62.77 241.23 -60.31C321.13 -24.64 448 98.72 448 320C448 339.38 437.12 356.86 420.43 364.31zM398.33 280H248V388.5900000000001L400 320C400 306.19 399.36 292.92 398.33 280zM200 388.7200000000001V280H49.17C48.02 293.19 47.21 306.6 47.14 320.48L200 388.7200000000001zM55.76 232H200V-1.96C137.82 37.72 77.53 119.11 55.76 232zM248 -1.75V232H391.8400000000001C368.77 108.29 300.17 32.58 248 -1.75z" />
+    <glyph glyph-name="shield"
+      unicode="&#xF132;"
+      horiz-adv-x="512" d=" M237.5 -60.3C249.3 -65.2 262.6 -65.2 274.4 -60.3C360.1 -24.6 496 98.7 496 320C496 339.4 484.3 356.9 466.5 364.3L274.5 444.3A48.15 48.15 0 0 1 237.6 444.3L45.6 364.3C27.7 356.9 16 339.4 16 320C16 121.5 130.5 -15.7 237.5 -60.3zM256 400L448 320C448 146.2 349.6 23 256 -16C158.5 24.6 64 150.7 64 320L256 400z" />
+    <glyph glyph-name="ship"
+      unicode="&#xF21A;"
+      horiz-adv-x="640" d=" M484.843 68.604L559.006 131.357C587.3639999999999 155.351 578.817 201.204 543.702 213.359L488 232.641V360C488 373.255 477.255 384 464 384H416V424C416 437.255 405.255 448 392 448H248C234.745 448 224 437.255 224 424V384H176C162.745 384 152 373.255 152 360V232.641L96.299 213.36C61.196 201.209 52.628 155.36 80.995 131.358L155.158 68.605C131.794 17.213 84.576 -16 12 -16C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64C73.682 -64 126.334 -46.985 169.164 2.492C175.604 -35.207 208.493 -64 248 -64H392C431.507 -64 464.396 -35.207 470.836 2.492C513.949 -47.312 566.824 -64 628 -64C634.627 -64 640 -58.627 640 -52V-28C640 -21.373 634.627 -16 628 -16C556.02 -16 508.452 16.672 484.843 68.604zM264 408H376V384H264V408zM200 336H440V249.256L335.701 285.3590000000001A48 48 0 0 1 304.298 285.3590000000001L200 249.256V336zM424 16C424 -1.673 409.673 -16 392 -16H248C230.327 -16 216 -1.673 216 16V80L112 168L320 240L528 168L424 80V16z" />
+    <glyph glyph-name="shipping-fast"
+      unicode="&#xF48B;"
+      horiz-adv-x="640" d=" M624 80H608V196.1C608 215.1 600.3 233.6 586.9 247L503 330.9C489.6 344.3 471 352 452.1 352H416V392C416 422.9 390.9 448 360 448H120C89.1 448 64 422.9 64 392V352H8C3.6 352 0 348.4 0 344V328C0 323.6 3.6 320 8 320H248C252.4 320 256 323.6 256 328V344C256 348.4 252.4 352 248 352H112V392C112 396.4 115.6 400 120 400H360C364.4 400 368 396.4 368 392V80H242.7C226.1 108.6 195.5 128 160 128C142.4 128 126.2 122.9 112 114.7V160H64V32C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM416 304H452.1C458.4 304 464.6 301.4 469.1 297L542.1 224H416V304zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 84.9C542.8 110.8 513.4 128 480 128C455.3 128 433 118.4 416 103.1V176H560V84.9zM256 200V216C256 220.4 252.4 224 248 224H8C3.6 224 0 220.4 0 216V200C0 195.6 3.6 192 8 192H248C252.4 192 256 195.6 256 200zM280 256C284.4 256 288 259.6 288 264V280C288 284.4 284.4 288 280 288H40C35.6 288 32 284.4 32 280V264C32 259.6 35.6 256 40 256H280z" />
+    <glyph glyph-name="shipping-timed"
+      unicode="&#xF48C;"
+      horiz-adv-x="640" d=" M208 360C150.6 360 104 313.4 104 256S150.6 152 208 152S312 198.6 312 256S265.4 360 208 360zM256 232C256 227.6 252.4 224 248 224H200C195.6 224 192 227.6 192 232V312C192 316.4 195.6 320 200 320H216C220.4 320 224 316.4 224 312V256H248C252.4 256 256 252.4 256 248V232zM624 80H608V196.1C608 215.1 600.3 233.6 586.9 247L503 330.9C489.6 344.3 471 352 452.1 352H416V392C416 422.9 390.9 448 360 448H56C25.1 448 0 422.9 0 392V88C0 57.1 25.1 32 56 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM368 80H242.7C226.1 108.6 195.5 128 160 128S93.9 108.6 77.3 80H56C51.6 80 48 83.6 48 88V392C48 396.4 51.6 400 56 400H360C364.4 400 368 396.4 368 392V80zM416 304H452.1C458.4 304 464.6 301.4 469.1 297L542.1 224H416V304zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 84.9C542.8 110.8 513.4 128 480 128C455.3 128 433 118.4 416 103.1V192H560V84.9z" />
+    <glyph glyph-name="shoe-prints"
+      unicode="&#xF54B;"
+      horiz-adv-x="640" d=" M491.42 440.3C468.38 445.6 444.87 448 421.3 448C412.1500000000001 448 402.99 447.64 393.8400000000001 446.95C366.54 444.88 339.74 438.62 313.5300000000001 430.83L256 416H192C156.65 416 128 383.02 128 345.14C128 307.27 156.65 276.57 192 276.57H256C316.2 276.57 335.94 259.8400000000001 360.73 242.28C389.3 222.06 430.54 208 465.46 208C555.82 208 640 242.29 640 310.86C640 359.31 600.9 415.11 491.42 440.3zM240 324.57H192C183.33 324.57 176 333.99 176 345.14C176 357.8 184.75 368 192 368H240V324.57zM465.46 256C441.3 256 409.64 266.4700000000001 388.47 281.4600000000001L384.39 284.37C363.43 299.3400000000001 337.85 317.2 288.01 322.7200000000001V374.68L325.52 384.3400000000001L326.38 384.56L327.23 384.81C354.76 393 377.0800000000001 397.53 397.49 399.08C405.43 399.68 413.37 400 421.32 400C442.03 400 462.01 397.82 480.68 393.52C562.75 374.63 592 338.43 592 310.86C592 276.52 527.66 256 465.46 256zM337.46 176C302.55 176 261.3 161.94 232.73 141.71C207.94 124.16 188.21 107.42 128 107.42H64C28.65 107.42 0 76.72 0 38.85S28.65 -32 64 -32H128L185.53 -46.82C211.74 -54.61 238.54 -60.87 265.8400000000001 -62.94C274.98 -63.63 284.1500000000001 -63.99 293.3 -63.99C316.87 -63.99 340.39 -61.59 363.42 -56.29C472.9 -31.11 512 24.7 512 73.14C512 141.71 427.82 176 337.46 176zM112 16H64C56.75 16 48 26.2 48 38.86C48 50.01 55.33 59.43 64 59.43H112V16zM352.66 -9.52C333.98 -13.82 314.01 -16 293.3 -16C285.36 -16 277.41 -15.68 269.47 -15.08C249.07 -13.53 226.74 -9 199.21 -0.81L198.36 -0.56L197.5 -0.34L160 9.3200000000001V61.2900000000001C209.84 66.8100000000001 235.43 84.6600000000001 256.38 99.6300000000001L260.46 102.5400000000001C281.64 117.5300000000002 313.3 128.0000000000001 337.46 128.0000000000001C399.66 128.0000000000001 464 107.4800000000001 464 73.1400000000001C464 45.5700000000001 434.75 9.3700000000001 352.66 -9.5199999999999z" />
+    <glyph glyph-name="shopping-bag"
+      unicode="&#xF290;"
+      horiz-adv-x="448" d=" M352 320C352 390.58 294.579 448 224 448C153.42 448 96 390.58 96 320H0V16C0 -28.183 35.817 -64 80 -64H368C412.183 -64 448 -28.183 448 16V320H352zM224 400C268.112 400 304 364.112 304 320H144C144 364.112 179.888 400 224 400zM400 16C400 -1.645 385.645 -16 368 -16H80C62.355 -16 48 -1.645 48 16V272H96V232C96 218.745 106.745 208 120 208S144 218.745 144 232V272H304V232C304 218.745 314.745 208 328 208S352 218.745 352 232V272H400V16z" />
+    <glyph glyph-name="shopping-basket"
+      unicode="&#xF291;"
+      horiz-adv-x="576" d=" M564 256H491.098L362.286 407.543C353.703 417.642 338.557 418.87 328.456 410.286C318.3570000000001 401.702 317.129 386.555 325.714 376.456L428.102 256H147.899L250.287 376.457C258.871 386.556 257.6430000000001 401.703 247.544 410.287S222.298 417.642 213.714 407.544L84.901 256H12C5.373 256 0 250.627 0 244V220C0 213.373 5.373 208 12 208H30.667L58.251 9.397C61.546 -14.334 81.836 -32 105.794 -32H470.206C494.164 -32 514.454 -14.334 517.75 9.397L545.333 208H564C570.627 208 576 213.373 576 220V244C576 250.627 570.627 256 564 256zM470.206 16H105.794L79.127 208H496.872L470.206 16zM312 152V72C312 58.745 301.255 48 288 48S264 58.745 264 72V152C264 165.255 274.745 176 288 176S312 165.255 312 152zM424 152V72C424 58.745 413.255 48 400 48S376 58.745 376 72V152C376 165.255 386.745 176 400 176S424 165.255 424 152zM200 152V72C200 58.745 189.255 48 176 48S152 58.745 152 72V152C152 165.255 162.745 176 176 176S200 165.255 200 152z" />
+    <glyph glyph-name="shopping-cart"
+      unicode="&#xF07A;"
+      horiz-adv-x="576" d=" M551.991 384H144.28L135.554 428.608C133.35 439.872 123.478 448 112 448H12C5.373 448 0 442.627 0 436V412C0 405.373 5.373 400 12 400H92.24L161.834 44.299C150.796 32.799 144 17.198 144 0C144 -35.346 172.654 -64 208 -64S272 -35.346 272 0A63.681 63.681 0 0 1 263.417 32H408.584A63.681 63.681 0 0 1 400.0009999999999 0C400.0009999999999 -35.346 428.6549999999999 -64 464.0009999999999 -64C499.3469999999999 -64 528.001 -35.346 528.001 0C528.001 18.136 520.4449999999999 34.496 508.325 46.142L509.36 50.899C512.614 65.859 501.218 80 485.908 80H203.76L194.37 128H506.775C518.0649999999999 128 527.829 135.869 530.227 146.902L575.443 354.902C578.695 369.861 567.299 384 551.991 384zM208 -24C194.766 -24 184 -13.234 184 0S194.766 24 208 24S232 13.234 232 0S221.234 -24 208 -24zM464 -24C450.766 -24 440 -13.234 440 0S450.766 24 464 24S488 13.234 488 0S477.234 -24 464 -24zM487.438 176H184.98L153.67 336H522.218L487.438 176z" />
+    <glyph glyph-name="shovel-snow"
+      unicode="&#xF7C3;"
+      horiz-adv-x="512" d=" M503.2 375.7L439.7 439.2C428 450.9 409 450.9 397.3 439.2L372.8 414.7C358.6 400.5 350.9000000000001 381.5 350.9000000000001 361.8C350.9000000000001 356.9 351.4000000000001 352 352.4000000000001 347C353.7000000000001 340.5 356.0000000000001 334.4000000000001 358.8 328.6L262 231.8L220.5 273.3C210.8 283 198 287.9 185.2 287.9C174.5 287.9 163.7 284.5 154.7 277.5L19.4 173.1C-4.4 154.7000000000001 -6.7 119.6 14.6 98.3L162.3 -49.4C172.1 -59.2 184.9 -64 197.6 -64C212.4 -64 227.2 -57.4 237.1 -44.6L341.6 90.6C357 110.4999999999999 355.2 138.7 337.4 156.4L295.9 197.9L392.7 294.7C398.5 291.9 404.6 289.6 411.1 288.3C435.7 283.4 460.9999999999999 291 478.6999999999999 308.8L503.1999999999999 333.3C514.9 345 514.9 364 503.1999999999999 375.7zM303.4 122.5C304.1 121.8 304.2 120.7 303.6 120L199.1 -15.2C199 -15.4 198.8 -15.6 197.9 -15.6C197.5 -15.6 196.9 -15.4999999999999 196.2 -15.3L48.6 132.2L48.8 135.1L184 239.6C184.2 239.8 184.6 240 185.2 240L186.6 239.4L303.4 122.5zM444.8 342.7C438.4 336.3 429.3 333.6 420.5 335.4C409.8 337.5 401.5 345.8 399.3999999999999 356.5C397.7 365.4 400.3999999999999 374.4 406.7 380.8L418.5 392.6L456.6 354.5L444.8 342.7zM153.7 182.3L121.7 150.3C112.3 140.9 112.3 125.7 121.7 116.4C126.4 111.7000000000001 132.5 109.4 138.7 109.4S151 111.7000000000001 155.7 116.4L187.7 148.4C197.1 157.8 197.1 173.0000000000001 187.7 182.3C178.2 191.7 163.1 191.7 153.7 182.3zM180.4 57.7000000000001C185.1 53.0000000000001 191.2 50.7 197.4 50.7S209.7 53.0000000000001 214.4 57.7000000000001L246.4 89.7000000000001C255.8 99.1 255.8 114.3000000000001 246.4 123.6S221.8 133 212.5 123.6L180.5 91.6C171 82.3 171 67.1 180.4 57.7000000000001z" />
+    <glyph glyph-name="shovel"
+      unicode="&#xF713;"
+      horiz-adv-x="512" d=" M502.71 358.45L422.45 438.71C416.26 444.9 408.14 448 400.02 448S383.78 444.9 377.59 438.71L346.03 407.15C329.26 390.38 320.12 367.9 320.12 344.66C320.12 324.17 327.05 309.42 331.51 301.43L207.22 177.14L154.56 229.8C148.32 236.05 140.13 239.17 131.95 239.17S115.58 236.05 109.34 229.8L39.72 160.18C-11.22 109.24 -6.4 -24.29 16.66 -47.35C26.71 -57.41 57.81 -64 93.89 -64C140.51 -64 195.46 -53 224.18 -24.29L293.8 45.33C306.29 57.82 306.29 78.07 293.8 90.56L241.14 143.22L365.4600000000001 267.54C383.29 257.5900000000001 399.6600000000001 256.0900000000001 408.7200000000001 256.0900000000001C433.42 256.0900000000001 456.88 267.76 474.42 285.29L502.71 313.5900000000001C515.1 325.98 515.1 346.0600000000001 502.71 358.4500000000001zM190.26 9.63C174.91 -5.72 136.18 -16.03 93.89 -16.03C74.41 -16.03 59.99 -13.76 51.99 -11.72C44.12 17.59 46.68 99.33 73.62 126.27L131.93 184.59L248.56 67.96L190.26 9.63zM440.49 319.22C430.88 309.61 419.32 304.09 407.73 304.09C372.73 304.09 354.5900000000001 347.87 379.9500000000001 373.24L400.0200000000001 393.31L457.3000000000001 336.03L440.4900000000001 319.22z" />
+    <glyph glyph-name="shower"
+      unicode="&#xF2CC;"
+      horiz-adv-x="512" d=" M358.545 360.485L350.2200000000001 352.16C317.4500000000001 384.14 269.7700000000001 391.99 229.6900000000001 375.7C205.38 400.55 171.5 416 134.08 416C60.33 416 0.32 356 0.32 282.24V-32H48.32V281.1670000000001C48.32 328.458 86.15 367.651 133.439 367.998C154.768 368.155 174.338 360.479 189.44 347.68C149.47 304.13 150.27 236.36 191.84 193.78L183.515 185.455C178.829 180.769 178.829 173.171 183.515 168.484L200.484 151.515C205.17 146.829 212.768 146.829 217.455 151.515L392.4840000000001 326.544C397.17 331.23 397.17 338.828 392.4840000000001 343.515L375.5150000000001 360.484C370.8290000000001 365.171 363.2310000000001 365.171 358.5450000000001 360.485zM225.79 227.73C201.657 252.891 202.263 292.826 226.75 317.25C251.371 341.871 291.246 342.212 316.27 318.2100000000001L225.79 227.73zM368 256C359.163 256 352 248.837 352 240S359.163 224 368 224S384 231.163 384 240S376.837 256 368 256zM432 224C440.837 224 448 231.163 448 240S440.837 256 432 256S416 248.837 416 240S423.163 224 432 224zM496 256C487.163 256 480 248.837 480 240S487.163 224 496 224S512 231.163 512 240S504.837 256 496 256zM336 224C327.163 224 320 216.837 320 208S327.163 192 336 192S352 199.163 352 208S344.837 224 336 224zM384 208C384 199.163 391.163 192 400 192S416 199.163 416 208S408.837 224 400 224S384 216.837 384 208zM464 224C455.163 224 448 216.837 448 208S455.163 192 464 192S480 199.163 480 208S472.837 224 464 224zM304 192C295.163 192 288 184.837 288 176S295.163 160 304 160S320 167.163 320 176S312.837 192 304 192zM368 160C376.837 160 384 167.163 384 176S376.837 192 368 192S352 184.837 352 176S359.163 160 368 160zM432 192C423.163 192 416 184.837 416 176S423.163 160 432 160S448 167.163 448 176S440.837 192 432 192zM336 128C344.837 128 352 135.163 352 144S344.837 160 336 160S320 152.837 320 144S327.163 128 336 128zM400 160C391.163 160 384 152.837 384 144S391.163 128 400 128S416 135.163 416 144S408.837 160 400 160zM304 128C295.163 128 288 120.837 288 112S295.163 96 304 96S320 103.163 320 112S312.837 128 304 128zM368 128C359.163 128 352 120.837 352 112S359.163 96 368 96S384 103.163 384 112S376.837 128 368 128zM336 96C327.163 96 320 88.837 320 80S327.163 64 336 64S352 71.163 352 80S344.837 96 336 96zM304 64C295.163 64 288 56.837 288 48S295.163 32 304 32S320 39.163 320 48S312.837 64 304 64z" />
+    <glyph glyph-name="shredder"
+      unicode="&#xF68A;"
+      horiz-adv-x="512" d=" M432 272V348.12C432 360.85 426.94 373.06 417.94 382.06L366.06 433.94C357.06 442.94 344.85 448 332.12 448H110.48C93.64 448 80 433.67 80 416V272C35.82 272 0 236.18 0 192V64C0 55.16 7.16 48 16 48H40V-48C40 -56.84 47.16 -64 56 -64H72C80.84 -64 88 -56.84 88 -48V48H136V-48C136 -56.84 143.16 -64 152 -64H168C176.84 -64 184 -56.84 184 -48V48H232V-48C232 -56.84 239.16 -64 248 -64H264C272.84 -64 280 -56.84 280 -48V48H328V-48C328 -56.84 335.1600000000001 -64 344 -64H360C368.84 -64 376 -56.84 376 -48V48H424V-48C424 -56.84 431.1600000000001 -64 440 -64H456C464.84 -64 472 -56.84 472 -48V48H496C504.84 48 512 55.16 512 64V192C512 236.18 476.18 272 432 272zM128 400H320V352C320 343.16 327.1600000000001 336 336 336H384V272H128V400zM464 96H48V192C48 209.64 62.36 224 80 224H432C449.64 224 464 209.64 464 192V96zM400 184C386.75 184 376 173.26 376 160C376 146.75 386.75 136 400 136S424 146.75 424 160C424 173.26 413.25 184 400 184z" />
+    <glyph glyph-name="shuttle-van"
+      unicode="&#xF5B6;"
+      horiz-adv-x="640" d=" M628.88 237.35L499.19 392.9700000000001A64.006 64.006 0 0 1 450.02 416H32C14.33 416 0 401.67 0 384V96C0 78.33 14.33 64 32 64H64C64 11.07 107.06 -32 160 -32S256 11.07 256 64H384C384 11.07 427.06 -32 480 -32S576 11.07 576 64H608C625.67 64 640 78.33 640 96V206.62A48.03 48.03 0 0 1 628.88 237.35zM376 368H450.02C454.78 368 459.26 365.9 462.31 362.24L550.85 256H376V368zM216 368H328V256H216V368zM48 368H168V256H48V368zM160 16C133.49 16 112 37.49 112 64S133.49 112 160 112S208 90.51 208 64S186.51 16 160 16zM480 16C453.49 16 432 37.49 432 64S453.49 112 480 112S528 90.51 528 64S506.51 16 480 16zM592 112H562.64C545.99 140.55 515.37 160 480 160S414.01 140.55 397.36 112H242.64C225.99 140.55 195.37 160 160 160S94.01 140.55 77.36 112H48V208H590.85L592 206.62V112z" />
+    <glyph glyph-name="shuttlecock"
+      unicode="&#xF45B;"
+      horiz-adv-x="512" d=" M472 256H432V328C432 350.1 414.1 368 392 368H320V408C320 430.1 302.1 448 280 448H245.1C229.6 448 215.3 438.9 208.8 424.9L95.5 181.5L31.1 117C-10.3 75.6 -10.3 8.4 31.1 -33C72.4 -74.2999999999999 139.5 -74.5 181.1 -33L245.6 31.5L488.9 144.8C503 151.3 512.1 165.6 512.1 181.1V216C512 238.1 494.1 256 472 256zM384 320V257.6L292.8 228.8L321.6 320H384zM85.1 103.2L106 124.1L188.1 42L167.2 21.1L85.1 103.2000000000001zM250.2 400H272V349.8L210 313.8L250.2 400zM261.1 288L234.8 204.9L164 134L138.3 159.7L174.6 237.6L261.1 288zM65 1C43.2 22.8 42.6 57.6 62.8 80.4L144.4 -1.2C120.6 -22.3000000000001 86.2 -20.2 65 0.9999999999999zM223.7 74.3L198 100.1L268.8 170.9L351.9 197.2000000000001L301.6 110.7000000000001L223.7 74.3000000000001zM464 186.2L377.8 146.1L413.8 208H464V186.2z" />
+    <glyph glyph-name="sigma"
+      unicode="&#xF68B;"
+      horiz-adv-x="320" d=" M287.96 0H42.36A42.314 42.314 0 0 0 3.44 25.62C-3.26 41.2 0 59.2 11.7 71.48L126.63 192L11.7 312.52C0 324.8 -3.26 342.8 3.44 358.38A42.32500000000001 42.32500000000001 0 0 0 42.36 384H287.96C305.65 384 320 369.67 320 352V304C320 295.16 312.83 288 303.98 288H287.9600000000001C279.11 288 271.9400000000001 295.16 271.9400000000001 304V336H55.66L171.93 214.06C183.72 201.7 183.72 182.28 171.93 169.92L55.66 48H271.94V80C271.94 88.84 279.11 96 287.96 96H303.98C312.83 96 320 88.84 320 80V32C320 14.33 305.6499999999999 0 287.9599999999999 0z" />
+    <glyph glyph-name="sign-in-alt"
+      unicode="&#xF2F6;"
+      horiz-adv-x="512" d=" M144 336V284.4H48C21.5 284.4 0 262.9 0 236.4V147.8C0 121.3 21.5 99.8 48 99.8H144V48.2C144 5.6 195.7 -16 225.9 14.3L369.9 158.2000000000001C388.6 176.9 388.6 207.3000000000001 369.9 226.1000000000001L225.9 370.1C195.8 400 144 378.7 144 336zM336 192L192 48V147.7H48V236.3H192V336L336 192zM416 0H332C325.4 0 320 5.4 320 12V36C320 42.6 325.4 48 332 48H416C442.5 48 464 69.5 464 96V288C464 314.5 442.5 336 416 336H332C325.4 336 320 341.4 320 348V372C320 378.6 325.4 384 332 384H416C469 384 512 341 512 288V96C512 43 469 0 416 0z" />
+    <glyph glyph-name="sign-in"
+      unicode="&#xF090;"
+      horiz-adv-x="512" d=" M416 0H332C325.4 0 320 5.4 320 12V36C320 42.6 325.4 48 332 48H416C442.5 48 464 69.5 464 96V288C464 314.5 442.5 336 416 336H332C325.4 336 320 341.4 320 348V372C320 378.6 325.4 384 332 384H416C469 384 512 341 512 288V96C512 43 469 0 416 0zM167.1 364.5L147.5 344.9C142.7 340.1 142.8 332.4 147.7 327.8L260.8 218H12C5.4 218 0 212.6 0 206V178C0 171.4 5.4 166 12 166H260.8L147.7 56.3C142.9 51.6 142.8 43.9 147.5 39.2L167.1 19.6C171.8 14.9 179.4 14.9 184.1 19.6L348.5 183.6C353.2 188.3 353.2 195.9 348.5 200.6L184.1 364.6C179.4 369.2 171.8 369.2 167.1 364.5z" />
+    <glyph glyph-name="sign-language"
+      unicode="&#xF2A7;"
+      horiz-adv-x="448" d=" M447.968 192.867L443.68 326.263C442.076 376.118 381.919 399.874 347.174 364.575L300.5 425.765C289.722 439.895 273.399 447.999 255.718 448C239.988 448.001 225.866 441.539 215.656 431.174C199.46 436.451 179.975 434.522 164.085 422.383C148.56 410.523 140.792 392.028 141.968 373.214C112.449 355.834 105.483 316.855 125.009 289.91C102.77 271.11 98.563 238.791 114.044 215H80.98C46.529 215 20.438 184.301 25 150.342C10.133 140.232 0.372 123.34 0.01 104.089C-0.363 84.189 9.483 66.7 24.468 56.275C19.536 21.97 45.622 -7.489 78.4 -8.946C79.42 -39.494 104.228 -64 134.857 -64H226.913C238.48 -64 250.053 -62.629 261.31 -59.925L330.286 -43.357C358.08 -36.681 377.469 -11.577 377.469 16.961V104.689L424.579 142.136C439.855 154.277 448.599 173.243 447.968 192.867zM135.341 9H188.735A9 9 0 0 1 197.735 18V23A9 9 0 0 1 188.735 32H80.851C60.128 32 59.466 64 80.368 64H188.735A9 9 0 0 1 197.735 73V78A9 9 0 0 1 188.735 87H56.974C36.247 87 35.594 119 56.49 119H188.735A9 9 0 0 1 197.735 128V133A9 9 0 0 1 188.735 142H81.463C60.74 142 60.078 174 80.98 174H225.465A9 9 0 0 1 230.829 190.227L204.184 210.006C187.247 222.58 205.888 248.145 222.263 235.991L328.001 157.49C333.303 153.554 336.468 147.185 336.468 140.455V16.96C336.468 7.148 329.988 -1.263 320.71 -3.491L251.733 -20.058A106.36200000000001 106.36200000000001 0 0 0 226.912 -22.999H134.856C113.959 -23 114.615 9 135.341 9zM182.503 333.812L247.978 247.975L237.027 256.105C225.891 264.3730000000001 211.266 266.204 198.497 261.1420000000001L158.468 313.6210000000001C145.075 331.1750000000001 170.106 350.0700000000001 182.503 333.812zM173.767 255.742L180.478 246.945C170.238 232.54 170.4800000000001 213.111 180.5030000000001 199H177.6100000000001L149.1360000000001 236.3300000000001C136.1980000000001 253.2930000000001 160.9500000000001 272.5500000000001 173.7670000000001 255.7420000000001zM342.765 177.6040000000001L254.458 243.1640000000001A8.995 8.995 0 0 1 261.838 244.9410000000001L265.702 248.0130000000001A9.001 9.001 0 0 1 267.2579999999999 260.5170000000001L186.307 366.6430000000001C172.917 384.198 197.947 403.092 210.343 386.834L291.591 280.317A9.007 9.007 0 0 1 297.636 276.844A8.993 8.993 0 0 1 304.3470000000001 278.73L308.2120000000001 281.802A9 9 0 0 1 309.7690000000001 294.306L243.8640000000001 380.707C230.472 398.263 255.499 417.157 267.9 400.9L356.668 284.524C361.973 277.569 373.1 281.552 372.819 290.272L371.738 323.886C371.04 345.569 402.032 345.705 402.701 324.947L406.99 191.5510000000001C407.206 184.8220000000001 404.245 178.347 399.067 174.232L361.182 144.1180000000001C360.13 157.3790000000001 353.413 169.698 342.765 177.6040000000001z" />
+    <glyph glyph-name="sign-out-alt"
+      unicode="&#xF2F5;"
+      horiz-adv-x="512" d=" M272 336V284.4H176C149.5 284.4 128 262.9 128 236.4V147.8C128 121.3 149.5 99.8 176 99.8H272V48.2C272 5.6 323.7 -16 353.9 14.3L497.9 158.2000000000001C516.6 176.9 516.6 207.3000000000001 497.9 226.1000000000001L353.9 370.1C323.8 400 272 378.7 272 336zM464 192L320 48V147.7H176V236.3H320V336L464 192zM96 384H180C186.6 384 192 378.6 192 372V348C192 341.4 186.6 336 180 336H96C69.5 336 48 314.5 48 288V96C48 69.5 69.5 48 96 48H180C186.6 48 192 42.6 192 36V12C192 5.4 186.6 0 180 0H96C43 0 0 43 0 96V288C0 341 43 384 96 384z" />
+    <glyph glyph-name="sign-out"
+      unicode="&#xF08B;"
+      horiz-adv-x="512" d=" M96 384H180C186.6 384 192 378.6 192 372V348C192 341.4 186.6 336 180 336H96C69.5 336 48 314.5 48 288V96C48 69.5 69.5 48 96 48H180C186.6 48 192 42.6 192 36V12C192 5.4 186.6 0 180 0H96C43 0 0 43 0 96V288C0 341 43 384 96 384zM327.1 364.5L307.5 344.9C302.7 340.1 302.8 332.4 307.7 327.8L420.8 218H172C165.4 218 160 212.6 160 206V178C160 171.4 165.4 166 172 166H420.8L307.7 56.3C302.9 51.6 302.8 43.9 307.5 39.2L327.1 19.6C331.8 14.9 339.4000000000001 14.9 344.1 19.6L508.5 183.6C513.2 188.3 513.2 195.9 508.5 200.6L344.1 364.6C339.4000000000001 369.2 331.8 369.2 327.1 364.5z" />
+    <glyph glyph-name="sign"
+      unicode="&#xF4D9;"
+      horiz-adv-x="512" d=" M496 384H112V432C112 440.8 104.8 448 96 448H80C71.2 448 64 440.8 64 432V384H16C7.2 384 0 376.8 0 368V352C0 343.2 7.2 336 16 336H64V-48C64 -56.8 71.2 -64 80 -64H96C104.8 -64 112 -56.8 112 -48V336H192V288C174.3 288 160 273.7 160 256V96C160 78.3 174.3 64 192 64H448C465.7 64 480 78.3 480 96V256C480 273.7 465.7 288 448 288V336H496C504.8 336 512 343.2 512 352V368C512 376.8 504.8 384 496 384zM432 112H208V240H432V112zM416 288H224V336H416V288z" />
+    <glyph glyph-name="signal-1"
+      unicode="&#xF68C;"
+      horiz-adv-x="640" d=" M80 64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V48C96 56.84 88.84 64 80 64z" />
+    <glyph glyph-name="signal-2"
+      unicode="&#xF68D;"
+      horiz-adv-x="640" d=" M208 160H176C167.16 160 160 152.84 160 144V-48C160 -56.84 167.16 -64 176 -64H208C216.84 -64 224 -56.84 224 -48V144C224 152.84 216.84 160 208 160zM80 64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V48C96 56.84 88.84 64 80 64z" />
+    <glyph glyph-name="signal-3"
+      unicode="&#xF68E;"
+      horiz-adv-x="640" d=" M208 160H176C167.16 160 160 152.84 160 144V-48C160 -56.84 167.16 -64 176 -64H208C216.84 -64 224 -56.84 224 -48V144C224 152.84 216.84 160 208 160zM80 64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V48C96 56.84 88.84 64 80 64zM336 256H304C295.1600000000001 256 288 248.84 288 240V-48C288 -56.84 295.1600000000001 -64 304 -64H336C344.84 -64 352 -56.84 352 -48V240C352 248.84 344.84 256 336 256z" />
+    <glyph glyph-name="signal-4"
+      unicode="&#xF68F;"
+      horiz-adv-x="640" d=" M208 160H176C171.58 160 168 156.42 168 152V-56C168 -60.42 171.58 -64 176 -64H208C212.42 -64 216 -60.42 216 -56V152C216 156.42 212.42 160 208 160zM80 64H48C43.58 64 40 60.42 40 56V-56C40 -60.42 43.58 -64 48 -64H80C84.42 -64 88 -60.42 88 -56V56C88 60.42 84.42 64 80 64zM336 256H304C299.58 256 296 252.42 296 248V-56C296 -60.42 299.58 -64 304 -64H336C340.42 -64 344 -60.42 344 -56V248C344 252.42 340.42 256 336 256zM464 352H432C427.58 352 424 348.42 424 344V-56C424 -60.42 427.58 -64 432 -64H464C468.42 -64 472 -60.42 472 -56V344C472 348.42 468.42 352 464 352z" />
+    <glyph glyph-name="signal-alt-1"
+      unicode="&#xF691;"
+      horiz-adv-x="640" d=" M96 48V-16H64V48H96M112 96H48C30.33 96 16 81.67 16 64V-32C16 -49.67 30.33 -64 48 -64H112C129.67 -64 144 -49.67 144 -32V64C144 81.67 129.67 96 112 96z" />
+    <glyph glyph-name="signal-alt-2"
+      unicode="&#xF692;"
+      horiz-adv-x="640" d=" M256 144V-16H224V144H256M96 48V-16H64V48H96M272 192H208C190.33 192 176 177.67 176 160V-32C176 -49.67 190.33 -64 208 -64H272C289.67 -64 304 -49.67 304 -32V160C304 177.67 289.67 192 272 192zM112 96H48C30.33 96 16 81.67 16 64V-32C16 -49.67 30.33 -64 48 -64H112C129.67 -64 144 -49.67 144 -32V64C144 81.67 129.67 96 112 96z" />
+    <glyph glyph-name="signal-alt-3"
+      unicode="&#xF693;"
+      horiz-adv-x="640" d=" M416 272V-16H384V272H416M256 144V-16H224V144H256M96 48V-16H64V48H96M432 320H368C350.33 320 336 305.67 336 288V-32C336 -49.67 350.33 -64 368 -64H432C449.67 -64 464 -49.67 464 -32V288C464 305.67 449.67 320 432 320zM272 192H208C190.33 192 176 177.67 176 160V-32C176 -49.67 190.33 -64 208 -64H272C289.67 -64 304 -49.67 304 -32V160C304 177.67 289.67 192 272 192zM112 96H48C30.33 96 16 81.67 16 64V-32C16 -49.67 30.33 -64 48 -64H112C129.67 -64 144 -49.67 144 -32V64C144 81.67 129.67 96 112 96z" />
+    <glyph glyph-name="signal-alt-slash"
+      unicode="&#xF694;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM544 400H576V83.25L624 45.72V416C624 433.67 609.67 448 592 448H528C510.33 448 496 433.67 496 416V145.79L544 108.26V400zM384 272H416V208.34L464 170.81V288C464 305.67 449.67 320 432 320H368C350.33 320 336 305.67 336 288V270.88L384 233.35V272zM112 96H48C30.33 96 16 81.67 16 64V-32C16 -49.67 30.33 -64 48 -64H112C129.67 -64 144 -49.67 144 -32V64C144 81.67 129.67 96 112 96zM96 -16H64V48H96V-16zM416 -16H384V50.58L336 88.11V-32C336 -49.67 350.33 -64 368 -64H432C449.67 -64 464 -49.67 464 -32V-11.97L416 25.5599999999999V-16zM176 160V-32C176 -49.67 190.33 -64 208 -64H272C289.67 -64 304 -49.67 304 -32V113.12L204.11 191.21C188.36 189.21 176 176.29 176 160.0000000000001zM224 144H256V-16H224V144z" />
+    <glyph glyph-name="signal-alt"
+      unicode="&#xF690;"
+      horiz-adv-x="640" d=" M576 400V-16H544V400H576M416 272V-16H384V272H416M256 144V-16H224V144H256M96 48V-16H64V48H96M592 448H528C510.33 448 496 433.67 496 416V-32C496 -49.67 510.33 -64 528 -64H592C609.67 -64 624 -49.67 624 -32V416C624 433.67 609.67 448 592 448zM432 320H368C350.33 320 336 305.67 336 288V-32C336 -49.67 350.33 -64 368 -64H432C449.67 -64 464 -49.67 464 -32V288C464 305.67 449.67 320 432 320zM272 192H208C190.33 192 176 177.67 176 160V-32C176 -49.67 190.33 -64 208 -64H272C289.67 -64 304 -49.67 304 -32V160C304 177.67 289.67 192 272 192zM112 96H48C30.33 96 16 81.67 16 64V-32C16 -49.67 30.33 -64 48 -64H112C129.67 -64 144 -49.67 144 -32V64C144 81.67 129.67 96 112 96z" />
+    <glyph glyph-name="signal-slash"
+      unicode="&#xF695;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM80 64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V48C96 56.84 88.84 64 80 64zM480 336C480 344.8400000000001 472.84 352 464 352H432C423.1600000000001 352 416 344.8400000000001 416 336V208.34L480 158.3V336zM608 432C608 440.84 600.84 448 592 448H560C551.16 448 544 440.84 544 432V108.27L608 58.23V432zM416 -48C416 -56.84 423.1600000000001 -64 432 -64H464C472.84 -64 480 -56.84 480 -48V-24.48L416 25.56V-48zM288 -48C288 -56.84 295.1600000000001 -64 304 -64H336C344.84 -64 352 -56.84 352 -48V75.59L288 125.63V-48zM208 160H176C167.16 160 160 152.84 160 144V-48C160 -56.84 167.16 -64 176 -64H208C216.84 -64 224 -56.84 224 -48V144C224 152.84 216.84 160 208 160z" />
+    <glyph glyph-name="signal"
+      unicode="&#xF012;"
+      horiz-adv-x="640" d=" M208 160H176C167.16 160 160 152.84 160 144V-48C160 -56.84 167.16 -64 176 -64H208C216.84 -64 224 -56.84 224 -48V144C224 152.84 216.84 160 208 160zM80 64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V48C96 56.84 88.84 64 80 64zM336 256H304C295.1600000000001 256 288 248.84 288 240V-48C288 -56.84 295.1600000000001 -64 304 -64H336C344.84 -64 352 -56.84 352 -48V240C352 248.84 344.84 256 336 256zM464 352H432C423.1600000000001 352 416 344.8400000000001 416 336V-48C416 -56.84 423.1600000000001 -64 432 -64H464C472.84 -64 480 -56.84 480 -48V336C480 344.8400000000001 472.84 352 464 352zM592 448H560C551.16 448 544 440.84 544 432V-48C544 -56.84 551.16 -64 560 -64H592C600.84 -64 608 -56.84 608 -48V432C608 440.84 600.84 448 592 448z" />
+    <glyph glyph-name="signature"
+      unicode="&#xF5B7;"
+      horiz-adv-x="640" d=" M637.2 248.2C636.3000000000001 249.1 634.2 250.7 631.5 250.4C595.3 248 546.9 220.5 508.1 198.5C492.1 189.4 478.3 181.6 467 176.5C436.3 162.5 409.9 150.3 385.6 150.3C375 150.3 367.1 153.3 361.8 159.6C352.3 170.6 352.5 189.3 355.7 213.9C359.4 242.3000000000001 355.8 264.4000000000001 346 275.2000000000001C340 281.7000000000001 331.5 284.5000000000001 320.5 283.8000000000001C292.7 282.2000000000001 243.9 244.8000000000001 151.8 154.7000000000001L124.4 127.8000000000001L181 272.1C194.2 305.6 185 342.2 157.7 365.2C135.9 383.6 98.9 394.4 60 369.2L4 330.9C0 328.3 -1.1 323.1 1.3 319.3L18.9 291C20.1 289.1 21.9 287.8 24.1 287.3C26.2 286.9 28.4 287.2000000000001 30.3 288.4L89.6 329C95 332.4 100.8 334.1 106.6 334.1C113.6 334.1 120.5 331.6 126.3 326.7C136.9 317.7 140.5 303.6 135.4 290.6L34.6 34.4C31.7 27.1 32.9 17.1 37.6 10.1C40.7 5.4999999999999 46.6 -1e-13 57.5 -1e-13C64.1 -1e-13 70.3 2.6 74.9 7.3C118.4 51.4999999999999 233.4 164.5 292.2000000000001 212.3L307.0000000000001 224.3L305.5000000000001 205.1C303.4000000000001 177.2 303.0000000000001 147.9 324.5000000000001 123.9C338.6000000000001 108.2 359.2000000000001 100.2 385.7000000000001 100.2C420.5000000000001 100.2 452.9 115.1 487.3000000000001 130.8C497.8000000000001 135.6 512.3000000000001 144.2 527.6 153.3C562.8000000000001 174.2 602.7 197.8 632 200.3C636.7 200.7 640.1 204.1 640.1 208.5V242C640 244.3 639 246.6 637.2 248.2z" />
+    <glyph glyph-name="sim-card"
+      unicode="&#xF7C4;"
+      horiz-adv-x="448" d=" M384 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H384C419.3 -64 448 -35.3 448 0V384C448 419.3 419.3 448 384 448zM400 0C400 -8.8 392.8 -16 384 -16H64C55.2 -16 48 -8.8 48 0V300.1L147.9 400H384C392.8 400 400 392.8 400 384V0zM96 64C96 46.3 110.3 32 128 32H160V96H96V64zM256 288H192V224H256V288zM192 32H256V96H192V32zM160 288H128C110.3 288 96 273.7 96 256V224H160V288zM288 32H320C337.7 32 352 46.3 352 64V96H288V32zM320 288H288V224H352V256C352 273.7 337.7 288 320 288zM96 128H352V192H96V128z" />
+    <glyph glyph-name="sitemap"
+      unicode="&#xF0E8;"
+      horiz-adv-x="640" d=" M104 176H296V128H344V176H536V128H584V185.59C584 206.7600000000001 566.78 224 545.59 224H344V288H384C401.67 288 416 302.3300000000001 416 320V416C416 433.67 401.67 448 384 448H256C238.33 448 224 433.67 224 416V320C224 311.16 227.58 303.16 233.37 297.37S247.16 288 256 288H296V224H94.41C73.22 224 56 206.77 56 185.59V128H104V176zM272 336V400H368V336H272zM608 96H512C494.33 96 480 81.67 480 64V-32C480 -49.67 494.33 -64 512 -64H608C625.67 -64 640 -49.67 640 -32V64C640 81.67 625.67 96 608 96zM592 -16H528V48H592V-16zM368 96H272C254.33 96 240 81.67 240 64V-32C240 -49.67 254.33 -64 272 -64H368C385.67 -64 400 -49.67 400 -32V64C400 81.67 385.67 96 368 96zM352 -16H288V48H352V-16zM128 96H32C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H128C145.67 -64 160 -49.67 160 -32V64C160 81.67 145.67 96 128 96zM112 -16H48V48H112V-16z" />
+    <glyph glyph-name="skating"
+      unicode="&#xF7C5;"
+      horiz-adv-x="448" d=" M400 448C373.5 448 352 426.5 352 400S373.5 352 400 352S448 373.5 448 400S426.5 448 400 448zM152 304H255.1L218.6 272.7C206.8 262.6 199.7 247.9 199.1 232.3C198.5 216.8 204.5 201.5 216.3 189.8L304 109.8V24C304 10.8 314.7 0 328 0S352 10.8 352 24V113.4C352 123.9 347.7 134.2 339.5 142.4L266.7 208.7L355.3 297.3C364.5 306.5 367.2 320.2 362.2 332.2S345.5999999999999 351.9 332.5999999999999 351.9H152C138.8 351.9 128 341.1 128 327.9S138.7 304 152 304zM187.5 174.6L85.9 73C76.5 63.6 76.5 48.4 85.9 39.1C90.6 34.4 96.7 32.1 102.9 32.1S115.2 34.4 119.9 39.1L222 141.3L193.6 167.2C191.3 169.5 189.6 172.1 187.5 174.6zM400 0C391.2 0 384 -7.2 384 -16S376.8 -32 368 -32H272C263.2 -32 256 -39.2 256 -48S263.2 -64 272 -64H368C394.5 -64 416 -42.5 416 -16C416 -7.2 408.8 0 400 0zM117.8 -8.6C111.6 -14.8 101.4 -14.8 95.2 -8.6L27.3 59.3C21.1 65.4999999999999 10.9 65.4999999999999 4.7 59.3S-1.5 42.9 4.7 36.6999999999999L72.6 -31.2C81.9 -40.6 94.3 -45.2 106.5 -45.2S131.1 -40.5000000000001 140.4 -31.2C146.6 -25.0000000000001 146.6 -14.8000000000001 140.4 -8.6S124.1 -2.3 117.8000000000001 -8.6z" />
+    <glyph glyph-name="skeleton"
+      unicode="&#xF620;"
+      horiz-adv-x="512" d=" M496 288H280V336H432C440.84 336 448 343.16 448 352V368C448 376.8400000000001 440.84 384 432 384H280V432C280 440.84 272.84 448 264 448H248C239.16 448 232 440.84 232 432V384H80C71.16 384 64 376.8400000000001 64 368V352C64 343.16 71.16 336 80 336H232V288H16C7.16 288 0 280.8400000000001 0 272V256C0 247.16 7.16 240 16 240H232V192H80C71.16 192 64 184.84 64 176V160C64 151.16 71.16 144 80 144H232V96H112C67.82 96 32 60.18 32 16S67.82 -64 112 -64S192 -28.18 192 16C192 27.39 189.54 38.19 185.25 48H326.76C322.47 38.19 320.01 27.39 320.01 16C320.01 -28.18 355.83 -64 400.01 -64S480.01 -28.18 480.01 16S444.19 96 400.01 96H280V144H432C440.84 144 448 151.16 448 160V176C448 184.84 440.84 192 432 192H280V240H496C504.84 240 512 247.16 512 256V272C512 280.8400000000001 504.84 288 496 288zM144 16C144 -1.64 129.64 -16 112 -16S80 -1.64 80 16S94.36 48 112 48S144 33.64 144 16zM432 16C432 -1.64 417.64 -16 400 -16S368 -1.64 368 16S382.36 48 400 48S432 33.64 432 16z" />
+    <glyph glyph-name="ski-jump"
+      unicode="&#xF7C7;"
+      horiz-adv-x="512" d=" M400 352C426.5 352 448 373.5 448 400S426.5 448 400 448S352 426.5 352 400S373.5 352 400 352zM510.7 257.9C508.5 271 495.9 279.9 483 277.6C469.9 275.4 461.1 263 463.3 249.9C466.6 230.6 457.3 211 441.2 201.8L169 61.6L219.5 184.2000000000001C219.9 185.3000000000001 220.7 186.3000000000001 221.5 187.1L342.7 297.4000000000001C351.9 306.6 354.6 320.3000000000001 349.6 332.3000000000001S333 352 320 352H136C122.7 352 112 341.2 112 328S122.8 304 136 304H249.7L181 214.6C179.7 213 179.3 212.6 175.1 202.5L121.8 73.1C117 61.6 122.2 48.8 133 43L13 -18.7C1.2 -24.7 -3.4 -39.2 2.7 -51C7 -59.3 15.4 -64 24.1 -64C27.8 -64 31.5 -63.1 35 -61.3L464.2 159.6C498.6 179.3 517.3 218.8 510.7 257.9000000000001z" />
+    <glyph glyph-name="ski-lift"
+      unicode="&#xF7C8;"
+      horiz-adv-x="512" d=" M112 320C138.5 320 160 341.5 160 368S138.5 416 112 416S64 394.5 64 368S85.5 320 112 320zM256 448H224V232L256 240V448zM191.6 66.6C204.2 70.8 211 84.4 206.8 97C202.6 109.6 189.1 116.5 176.4 112.2L158 106C139 99.6 118 108.5 109.3 126.7L45.7 259.7C40 271.6 25.7 276.7 13.7 271C1.7 265.3 -3.3 251 2.4 239L66 106C81 74.8 112.4 56 145.5 56C158.1 56 162.5 56.9 191.6 66.6zM488 160C474.8 160 464 149.2 464 136C464 122.1 455.2 109.5 442.2 104.7L312 56.5V192C312 207.8 297 219 282.2 215.3L188.7 191.9L149 277.4000000000001C141.6 293.4000000000001 122.7 300.5 106.5 293C93.9 287.2000000000001 82.4 268.8000000000001 90.8 250.5000000000001L138.1 149.9C142.9 139.4 154.6 133.8 165.7 136.7000000000001L263.9 161.2000000000001V38.7L111.6 -17.6C99.2 -22.2 92.8 -35.9999999999999 97.4 -48.4C101 -58.1 110.2 -64.1 119.9 -64.1C122.7 -64.1 125.5 -63.6 128.2 -62.6L458.6999999999999 59.5C490.4999999999999 71.3 511.8999999999999 102 511.8999999999999 135.9C511.9999999999999 149.2 501.1999999999999 160 487.9999999999999 160z" />
+    <glyph glyph-name="skiing-nordic"
+      unicode="&#xF7CA;"
+      horiz-adv-x="576" d=" M336 352C362.5 352 384 373.5 384 400S362.5 448 336 448S288 426.5 288 400S309.5 352 336 352zM552 32C538.8 32 528 21.3 528 8C528 -5.2 517.2 -16 504 -16H434.5L462.7 181.4C468.2 185.8 472 192.3 472 199.9C472 213.1 461.2 223.9 448 223.9H399L370.8 281.6C359.5 304.7 338.4000000000001 322.2 314.2 328.3L242.8 349.5C217.2 355.7 190.2 349.9 169.1 333.7L129.4 303.3C124.3 299.4 121 293.8 120.2 287.4C119.4 281.6 121 275.9 124.3 271L66.9 -16H24C10.8 -16 0 -26.7 0 -40S10.8 -64 24 -64H504C543.7 -64 576 -31.7 576 8C576 21.2 565.2 32 552 32zM297.4 -16H185.7L237.1 92.5L219.7 102.8C211.1 107.9 203.9 114.3 197.7 121.6L132.6 -16H99.5L155.5 263.8C156.5 264.4 157.7 264.6 158.6 265.3L198.3 295.7000000000001C205.4 301.2000000000001 214.2 304.2000000000001 222.7 304.2000000000001C225.3 304.2000000000001 227.9 303.9 230.3 303.3L254.1 296.3L213.1 200.6C202.1 174.8 211.9 144.6 236.1 130.3L326.6 76.9L297.4000000000001 -16zM402.1 -16H347.7L374.6 69.8C379.4 86.9 372 105.6 356.4 115L289.3 154.6L329.8 256L358 198.4C364.7 184.8 378.8 176 393.9 176H429.4L402.1 -16z" />
+    <glyph glyph-name="skiing"
+      unicode="&#xF7C9;"
+      horiz-adv-x="512" d=" M432 352C458.5 352 480 373.5 480 400S458.5 448 432 448S384 426.5 384 400S405.5 352 432 352zM120 356.4L108.5 333.9C122.9 326.6 139.6 329 151.3 338.7L284 272.5L345.1 296.9L359.2000000000001 254.6C362.6 244.5000000000001 369.7000000000001 236.3 379.3000000000001 231.5000000000001L437.4000000000001 202.5C449.3000000000001 196.5 463.7000000000001 201.4 469.6000000000001 213.2C475.5000000000001 225.1 470.7000000000001 239.5000000000001 458.8000000000001 245.4000000000001L403.6 273L385.5 327.4C380.6 342 369.9 354 355.9 360.5C341.9 367 325.8 367.4 311.6 361.7L237.1 331.9L164.9 367.7C165.2 382.2 157.7 396.2 144 403.3L132.9 381.6H132.6L98.2 388.6C96.4 389 94.5 388.4 93.2 386.9C91.3 384.7 91.5 381.4 93.7 379.5L120 356.4zM505 -4C495.6 5.4 480.4 5.3 471.1 -4C459 -16.1 440.4000000000001 -19.3 426 -12.7L283 61.2000000000001L332.7 135.8000000000001C343.3 151.6000000000001 341.2 172.9000000000001 327.7 186.3000000000001L270.5 243.5000000000001L193.6 281.6C192 265.0000000000001 197.4 248.6000000000001 209.3 236.7000000000001L289.1 156.9L240 83.3000000000001L35 189.3000000000001C23.1 195.4000000000001 8.7 190.8000000000001 2.7 179.0000000000001C-3.4 167.2000000000001 1.2 152.7000000000001 13 146.7000000000001L404.9 -55.8C416.8 -61.2999999999999 429.4 -63.9 442 -63.9C465.2 -63.9 488.1 -54.9 505 -37.9C514.3 -28.6 514.3 -13.4 505 -4z" />
+    <glyph glyph-name="skull-crossbones"
+      unicode="&#xF714;"
+      horiz-adv-x="448" d=" M184 288C197.24 288 208 298.76 208 312S197.24 336 184 336S160 325.24 160 312S170.76 288 184 288zM264 288C277.24 288 288 298.76 288 312S277.24 336 264 336S240 325.24 240 312S250.76 288 264 288zM135.85 219.46L128.52 184.85C125.85 172.23 133.94 160 144.97 160H303.05C314.08 160 322.17 172.23 319.5 184.85L312.17 219.46C345.9100000000001 242.89 368 278.99 368 320C368 390.69 303.53 448 224 448S80 390.69 80 320C80 278.99 102.09 242.89 135.85 219.46zM224 400C276.94 400 320 364.11 320 320C320 296.7 307.1600000000001 274.43 284.79 258.9L258.5900000000001 240.72L265.2000000000001 209.52L265.5200000000001 208H182.4900000000001L182.81 209.52L189.4200000000001 240.72L163.2200000000001 258.9C140.84 274.43 128 296.7 128 320C128 364.11 171.07 400 224 400zM438.7 -18.95L284.31 48L438.7 114.95C446.73 118.66 450.23 128.16 446.52 136.19L439.81 150.71C436.1 158.73 426.6 162.23 418.58 158.53L224 74.15L29.42 158.52C21.4 162.22 11.89 158.72 8.19 150.7L1.48 136.18C-2.23 128.16 1.27 118.65 9.3 114.94L163.69 48L9.3 -18.95C1.27 -22.65 -2.23 -32.16 1.48 -40.19L8.19 -54.71C11.9 -62.73 21.4 -66.23 29.42 -62.53L224 21.85L418.5800000000001 -62.52C426.6 -66.22 436.11 -62.72 439.8100000000001 -54.7L446.5200000000001 -40.18C450.23 -32.16 446.73 -22.65 438.7000000000001 -18.95z" />
+    <glyph glyph-name="skull"
+      unicode="&#xF54C;"
+      horiz-adv-x="512" d=" M344 248C313.1 248 288 222.9 288 192S313.1 136 344 136S400 161.1 400 192S374.9 248 344 248zM168 248C137.1 248 112 222.9 112 192S137.1 136 168 136S224 161.1 224 192S198.9 248 168 248zM256 448C114.6 448 0 347.7 0 224C0 153.9 36.9 91.4 94.5 50.3C104.2 43.4 109.7 32.2 108 20.4L101.2 -27.4999999999999C98.5 -46.8 113.4 -63.9999999999999 132.9 -63.9999999999999H379.2000000000001C398.7000000000001 -63.9999999999999 413.6 -46.8 410.9000000000001 -27.4999999999999L404.1 20.4C402.4000000000001 32.1 407.9000000000001 43.4 417.6 50.3C475.1 91.4 512 153.9 512 224C512 347.7 397.4 448 256 448zM389.7 89.4C365.1 71.9 352.4 42.9 356.5 13.7L360.7 -16H320V24C320 28.4 316.4 32 312 32H296C291.6 32 288 28.4 288 24V-16H224V24C224 28.4 220.4 32 216 32H200C195.6 32 192 28.4 192 24V-16H151.3L155.5 13.7C159.6 42.9 146.9 71.9 122.3 89.4C75.1 123.1 48 172.1 48 224C48 321 141.3 400 256 400S464 321 464 224C464 172.1 436.9 123.1 389.7 89.4z" />
+    <glyph glyph-name="slash"
+      unicode="&#xF715;"
+      horiz-adv-x="640" d=" M604 -60.49L6.01 407.02C-0.89 412.54 -2.01 422.61 3.52 429.51L13.51 442C19.03 448.9 29.1 450.01 36 444.49L634 -23.02C640.9 -28.54 642.02 -38.61 636.49 -45.51L626.49 -58C620.97 -64.9 610.9 -66.01 604 -60.49z" />
+    <glyph glyph-name="sledding"
+      unicode="&#xF7CB;"
+      horiz-adv-x="512" d=" M505 28C495.6 37.4 480.4 37.3 471.1 28C459 15.9 440.4000000000001 12.7 426 19.3L375 45.7C380.4 50.1 384.1 56.5 384.1 64V144C384.1 166.1 366.2000000000001 184 344.1 184H272.6L340.3 251.7C351.8 263.2 355.2 280.3 349 295.3C342.8 310.3 328.3 320 312 320H152C138.7 320 128 309.2 128 296S138.8 272 152 272H259L159 186.2C152.8 180.9 149.7 172.8 150.8 164.7C151 163.2 152 162.1 152.5 160.7L35 221.3C23.1 227.4 8.7 222.8 2.7 211C-3.4 199.2 1.2 184.7 13 178.7L404.9 -23.8C416.8 -29.3 429.4 -31.9 442 -31.9C465.2 -31.9 488.1 -22.9 505 -5.9C514.3 3.4 514.3 18.6 505 27.9999999999999zM336 65.7L200.1 136H336V65.7zM400 320C426.5 320 448 341.5 448 368S426.5 416 400 416S352 394.5 352 368S373.5 320 400 320z" />
+    <glyph glyph-name="sleigh"
+      unicode="&#xF7CC;"
+      horiz-adv-x="640" d=" M612.7 97.3L603.4000000000001 104.7C596.5000000000001 110.2 586.4000000000001 109.1 580.9000000000001 102.2L570.9000000000001 89.7C565.4000000000001 82.8 566.5000000000001 72.7 573.4000000000001 67.2L582.7 59.8C588.6 55.1 591.9000000000001 48.1 591.9000000000001 40.6C591.9000000000001 27 580.9000000000001 16 567.3000000000001 16H440V64C506.2 64 560 117.8 560 184V304H592C600.8 304 608 311.2 608 320V336C608 344.8 600.8 352 592 352H432C423.2 352 416 344.8 416 336V264C416 198.7 281.6 211.7 234.8 306.6C201.5 374.1 134.6 416 60.2 416H16C7.2 416 0 408.8 0 400V384C0 375.2 7.2 368 16 368H32V216C32 149.1 75.8 92.7 136 72.5V16H48C39.2 16 32 8.8 32 0V-16C32 -24.8 39.2 -32 48 -32H564C603 -32 637.7 -2.7 639.9 36.3C641.3 60.1 631.1999999999999 82.6 612.6999999999999 97.3zM80 216V366.6C127.9 360.1 169.6 330.2 191.7 285.4C260.3 146.4 464 139.6 464 264V304H512V184C512 144.3 479.7 112 440 112H184C126.7 112 80 158.7 80 216zM392 16H184V64H392V16z" />
+    <glyph glyph-name="sliders-h-square"
+      unicode="&#xF3F0;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM394 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H394C397.3 368 400 365.3 400 362V22C400 18.7 397.3 16 394 16zM352 260V252C352 245.4 346.6 240 340 240H192V216C192 202.7 181.3 192 168 192H152C138.7 192 128 202.7 128 216V240H108C101.4 240 96 245.4 96 252V260C96 266.6 101.4 272 108 272H128V296C128 309.3 138.7 320 152 320H168C181.3 320 192 309.3 192 296V272H340C346.6 272 352 266.6 352 260zM352 132V124C352 117.4 346.6 112 340 112H320V88C320 74.7 309.3 64 296 64H280C266.7 64 256 74.7 256 88V112H108C101.4 112 96 117.4 96 124V132C96 138.6 101.4 144 108 144H256V168C256 181.3 266.7 192 280 192H296C309.3 192 320 181.3 320 168V144H340C346.6 144 352 138.6 352 132z" />
+    <glyph glyph-name="sliders-h"
+      unicode="&#xF1DE;"
+      horiz-adv-x="512" d=" M496 376H288V400C288 408.8 280.8 416 272 416H240C231.2 416 224 408.8 224 400V376H16C7.2 376 0 368.8 0 360V344C0 335.2 7.2 328 16 328H224V304C224 295.2 231.2 288 240 288H272C280.8 288 288 295.2 288 304V328H496C504.8 328 512 335.2 512 344V360C512 368.8 504.8 376 496 376zM496 56H160V80C160 88.8 152.8 96 144 96H112C103.2 96 96 88.8 96 80V56H16C7.2 56 0 48.8 0 40V24C0 15.2 7.2 8 16 8H96V-16C96 -24.8 103.2 -32 112 -32H144C152.8 -32 160 -24.8 160 -16V8H496C504.8 8 512 15.2 512 24V40C512 48.8 504.8 56 496 56zM496 216H416V240C416 248.8 408.8 256 400 256H368C359.2 256 352 248.8 352 240V216H16C7.2 216 0 208.8 0 200V184C0 175.2 7.2 168 16 168H352V144C352 135.2 359.2 128 368 128H400C408.8 128 416 135.2 416 144V168H496C504.8 168 512 175.2 512 184V200C512 208.8 504.8 216 496 216z" />
+    <glyph glyph-name="sliders-v-square"
+      unicode="&#xF3F2;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM394 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H394C397.3 368 400 365.3 400 362V22C400 18.7 397.3 16 394 16zM224 264V248C224 234.7 213.3 224 200 224H176V76C176 69.4 170.6 64 164 64H156C149.4 64 144 69.4 144 76V224H120C106.7 224 96 234.7 96 248V264C96 277.3 106.7 288 120 288H144V308C144 314.6 149.4 320 156 320H164C170.6 320 176 314.6 176 308V288H200C213.3 288 224 277.3 224 264zM352 136V120C352 106.7 341.3 96 328 96H304V76C304 69.4 298.6 64 292 64H284C277.4 64 272 69.4 272 76V96H248C234.7 96 224 106.7 224 120V136C224 149.3 234.7 160 248 160H272V308C272 314.6 277.4 320 284 320H292C298.6 320 304 314.6 304 308V160H328C341.3 160 352 149.3 352 136z" />
+    <glyph glyph-name="sliders-v"
+      unicode="&#xF3F1;"
+      horiz-adv-x="448" d=" M272 96H248V432C248 440.8 240.8 448 232 448H216C207.2 448 200 440.8 200 432V96H176C167.2 96 160 88.8 160 80V48C160 39.2 167.2 32 176 32H200V-48C200 -56.8 207.2 -64 216 -64H232C240.8 -64 248 -56.8 248 -48V32H272C280.8 32 288 39.2 288 48V80C288 88.8 280.8 96 272 96zM112 352H88V432C88 440.8 80.8 448 72 448H56C47.2 448 40 440.8 40 432V352H16C7.2 352 0 344.8 0 336V304C0 295.2 7.2 288 16 288H40V-48C40 -56.8 47.2 -64 56 -64H72C80.8 -64 88 -56.8 88 -48V288H112C120.8 288 128 295.2 128 304V336C128 344.8 120.8 352 112 352zM432 224H408V432C408 440.8 400.8 448 392 448H376C367.2 448 360 440.8 360 432V224H336C327.2 224 320 216.8 320 208V176C320 167.2 327.2 160 336 160H360V-48C360 -56.8 367.2 -64 376 -64H392C400.8 -64 408 -56.8 408 -48V160H432C440.8 160 448 167.2 448 176V208C448 216.8 440.8 224 432 224z" />
+    <glyph glyph-name="smile-beam"
+      unicode="&#xF5B8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM332 135.4C311.2 110.4 280.5 96 248 96S184.8 110.3 164 135.4C155.5 145.6 140.4 146.9 130.2 138.5C120 130 118.7 114.9 127.1 104.7C157.1 68.7 201.2 48.1 248 48.1S338.9 68.7 368.9 104.7C377.4 114.9 376 130 365.8 138.5C355.6 146.9 340.5 145.6 332 135.4zM136.5 237C144.2 250.7 155.7 258.6 168 258.6S191.8 250.7 199.5 237L209 220C211.1 216.3 215.2 215.3 218.3 216.3C221.9 217.4 224.3 220.8 224 224.6C220.7 266.7000000000001 191.8 296 168 296S115.3 266.7000000000001 112 224.6C111.7 220.9 114.1 217.4 117.7 216.3C121.1 215.2 125.1 216.8 127 220L136.5 237zM328 296C304.2 296 275.3 266.7 272 224.6C271.7 220.9 274.1 217.4 277.7 216.3C281.2 215.2 285.1 216.8 287 220L296.5 237C304.2 250.7 315.7 258.6 328 258.6S351.8 250.7 359.5 237L369 220C371.1 216.3 375.2 215.3 378.3 216.3C381.9000000000001 217.4 384.3 220.8 384 224.6C380.7 266.7 351.8 296 328 296z" />
+    <glyph glyph-name="smile-plus"
+      unicode="&#xF5B9;"
+      horiz-adv-x="640" d=" M208 352C93.1 352 0 258.9 0 144S93.1 -64 208 -64S416 29.1 416 144S322.9 352 208 352zM208 -16C119.8 -16 48 55.8 48 144S119.8 304 208 304S368 232.2 368 144S296.2 -16 208 -16zM269.8 108.2C239.2 72.4 176.9 72.4 146.3 108.2C137.6 118.3 122.5 119.4 112.5 110.9C102.4 102.3 101.3 87.1 109.8 77.1C134.2 48.4999999999999 170 32.1 208 32.1S281.8 48.4999999999999 306.2 77.1C314.8 87.2 313.6 102.3 303.5 110.9C293.5 119.4 278.4 118.3 269.8 108.2zM144 160C161.7 160 176 174.3 176 192S161.7 224 144 224S112 209.7 112 192S126.3 160 144 160zM272 160C289.7 160 304 174.3 304 192S289.7 224 272 224S240 209.7 240 192S254.3 160 272 160zM624 360H552V432C552 440.8 544.8 448 536 448H520C511.2 448 504 440.8 504 432V360H432C423.2 360 416 352.8 416 344V328C416 319.2 423.2 312 432 312H504V240C504 231.2 511.2 224 520 224H536C544.8 224 552 231.2 552 240V312H624C632.8 312 640 319.2 640 328V344C640 352.8 632.8 360 624 360z" />
+    <glyph glyph-name="smile-wink"
+      unicode="&#xF4DA;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM365.8 138.4C355.6 146.9 340.5 145.5 332 135.3C311.2 110.3 280.5 95.9 248 95.9S184.8 110.2 164 135.3C155.5 145.5 140.3 146.8 130.2 138.4C120 129.9 118.7 114.8 127.1 104.6C157.1 68.6 201.2 47.9999999999999 248 47.9999999999999S338.9 68.6 368.9 104.6C377.4 114.8 376 129.9 365.8 138.4zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 268C302.3 268 272.1 251.1 268.1 225.9C266.4000000000001 214.7 279.6 207.7 287.9000000000001 215.1L297.4000000000001 223.6C312.2000000000001 236.8 343.6 236.8 358.4000000000001 223.6L367.9000000000001 215.1C376.4000000000001 207.7 389.5000000000001 214.8 387.7000000000001 225.9C383.9000000000001 251.1 353.7000000000001 268 328.0000000000001 268z" />
+    <glyph glyph-name="smile"
+      unicode="&#xF118;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM168 208C185.7 208 200 222.3 200 240S185.7 272 168 272S136 257.7 136 240S150.3 208 168 208zM328 208C345.7 208 360 222.3 360 240S345.7 272 328 272S296 257.7 296 240S310.3 208 328 208zM332 135.4C311.2 110.4 280.5 96 248 96S184.8 110.3 164 135.4C155.5 145.6 140.3 146.9 130.2 138.5C120 130 118.7 114.9 127.1 104.7C157.1 68.7 201.2 48.1 248 48.1S338.9 68.7 368.9 104.7C377.4 114.9 376 130 365.8 138.5C355.7 146.9 340.5 145.6 332 135.4z" />
+    <glyph glyph-name="smog"
+      unicode="&#xF75F;"
+      horiz-adv-x="640" d=" M624 80H80C71.2 80 64 72.8 64 64V48C64 39.2 71.2 32 80 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM144 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H144C152.8 -64 160 -56.8 160 -48V-32C160 -23.2 152.8 -16 144 -16zM560 -16H224C215.2 -16 208 -23.2 208 -32V-48C208 -56.8 215.2 -64 224 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM144 160H257C285 139 317.7 128 352 128S419.1 139 447 160H512C582.6 160 640 217.4 640 288S582.6 416 512 416C494.2 416 476.6 412.2 460.3 405C430.8 432.5 392.2 448 352 448C311.9 448 274.3 433.1 245.1 406.5C218.4 432.8 182.3 448 144 448C64.6 448 0 383.4 0 304S64.6 160 144 160zM144 400C169.4 400 193.3 390.2 211.3 372.3L243.7 340.3L277.4 371C297.9 389.7 324.4 400 352 400C379.9 400 406.7 389.3 427.6 369.9L450.8 348.2L479.8 361.1C490.1 365.7 500.9 368 512 368C556.1 368 592 332.1 592 288S556.1 208 512 208H431L418.2 198.4C398.4 183.5 376.1 176 352 176S305.6 183.5 285.8 198.4L273 208H144C91.1 208 48 251.1 48 304S91.1 400 144 400z" />
+    <glyph glyph-name="smoke"
+      unicode="&#xF760;"
+      horiz-adv-x="640" d=" M640 200C640 283.8 571.8 352 488 352C473.6 352 459.6 349.3 446 345.3C418.2 387.7 370.5 416 316 416C296.2 416 276.7 412.1 257.9 404.3C229.6 432.3 191.9 448 152 448C68.2 448 0 379.8 0 296C0 258.2 14.3 224 37.4 197.5C14.4 169.8 0 134.7 0 96C0 7.8 71.8 -64 160 -64H512C582.6 -64 640 -6.6 640 64C640 87.8 633 109.9 621.6 129.1C633.1 150.2000000000001 640 174.2000000000001 640 200zM592 200C592 188.7 589.9 177.9 586.5 167.7C565.5 182.9 539.9 192 512 192C490.4 192 469.6 186.6 450.9 176.1C423.8 206.5 385.3 224 344 224C319.9 224 296.7 217.9 275.6 206.3C268.7000000000001 213.6 261 219.9 252.9000000000001 225.7C268.7 253.2 298 272 332 272C347.6 272 362.8 267.8 377.2 259.5L394.9 249.4L407.8 265.2000000000001C427.9 289.8 457.1 304 487.9999999999999 304C545.3 304 592 257.3 592 200zM152 400C183.6 400 213.2 385.4 233.3 360L246 343.9L263.9 353.9C280.6 363.2 298.2 368 316 368C351.3 368 382.4 350.7 402.1 324.4C395.7000000000001 319.9 389.3 315.2000000000001 383.6 309.7000000000001C367 316.6 349.7 320 332 320C279.2 320 233.7 290.4 209.9 247.1C193.9 252.5 177.2 256 160 256C127.7 256 97.7 246.2 72.5 229.7C57.3 247.7 48 270.7 48 296C48 353.3 94.7 400 152 400zM512 -16H160C98.2 -16 48 34.2 48 96S98.2 208 160 208C196 208 230.1 190.3 251.2 160.6L265.7 140.2000000000001L285.5 155.6C302.8 168.9 323 176 344 176C377.1 176 407.4 159 425.2 130.6L439.8 107.2000000000001L460.9 124.9C471.3 133.6 488.5000000000001 143.9 512 143.9C556.1 143.9 592 108.0000000000001 592 63.9S556.1 -16 512 -16z" />
+    <glyph glyph-name="smoking-ban"
+      unicode="&#xF54D;"
+      horiz-adv-x="512" d=" M112 128H218.2L122.2 224H112C103.2 224 96 216.8 96 208V144C96 135.2 103.2 128 112 128zM320.6 320C305 320 292 331.2 289.2000000000001 345.9C288.5000000000001 349.5 285.2000000000001 352 281.5000000000001 352H265.3000000000001C260.3000000000001 352 256.6000000000001 347.5 257.3000000000001 342.6C261.9000000000001 311.7 288.5000000000001 288 320.6000000000001 288C336.2000000000001 288 349.2000000000001 276.8 352.0000000000001 262.1C352.7000000000001 258.5 356.0000000000001 256 359.7000000000001 256H375.9000000000001C380.9000000000001 256 384.6 260.5 383.9000000000001 265.4C379.3 296.3 352.7000000000001 320 320.6 320zM256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM256 -16C141.3 -16 48 77.3 48 192C48 240.7 65 285.5 93.1 321L385 29.1C349.5 1 304.7 -16 256 -16zM289.9 192H384V160H321.9L289.9 192zM418.9 63L353.9 128H400C408.8 128 416 135.2 416 144V208C416 216.8 408.8 224 400 224H257.9L127 354.9C162.5 383 207.3 400 256 400C370.7 400 464 306.7 464 192C464 143.3 447 98.5 418.9 63z" />
+    <glyph glyph-name="smoking"
+      unicode="&#xF48D;"
+      horiz-adv-x="640" d=" M503.7 306.4C479.8 323 464 348.7 464 377.7V440C464 444.4 460.4 448 456 448H424C419.6 448 416 444.4 416 440V373.6C416 329.9 440.6 292 476.3 266.9C498.7 251.2 512 225.7 512 198.3V168C512 163.6 515.6 160 520 160H552C556.4 160 560 163.6 560 168V198.3C560 241.6 539 281.7000000000001 503.7 306.4zM553.3 360.9C547.5999999999999 364.7 544 370.9 544 377.7V440C544 444.4 540.4 448 536 448H504C499.6 448 496 444.4 496 440V377.7C496 355.7 506.2 334.3 524.6 322.3C566.8000000000001 295 592 248.5 592 198.3V168C592 163.6 595.6 160 600 160H632C636.4 160 640 163.6 640 168V198.3C640 263.8 607.6 324.5 553.3 360.9zM632 96H600C595.6 96 592 92.4 592 88V-56C592 -60.4 595.6 -64 600 -64H632C636.4 -64 640 -60.4 640 -56V88C640 92.4 636.4 96 632 96zM552 96H520C515.6 96 512 92.4 512 88V-56C512 -60.4 515.6 -64 520 -64H552C556.4 -64 560 -60.4 560 -56V88C560 92.4 556.4 96 552 96zM456 96H48C21.5 96 0 74.5 0 48V-16C0 -42.5 21.5 -64 48 -64H456C469.2 -64 480 -53.2 480 -40V72C480 85.2 469.2 96 456 96zM432 -16H224V48H432V-16z" />
+    <glyph glyph-name="sms"
+      unicode="&#xF7CD;"
+      horiz-adv-x="512" d=" M135.4 229.5C134 230.7 133.3 232 133.3 233.3C133.3 236.4 137.8 239.9 143.7 239.9H156C160.4 239.9 164 243.5 164 247.9V263.9C164 268.3 160.4 271.9 156 271.9H143.8C120.4 271.9 101.4 254.6 101.4 233.3C101.4 222.6 106.3 212.4 114.7 205.2L136.6 186.4C138 185.2000000000001 138.7 183.9 138.7 182.6C138.7 179.5 134.2 176 128.3 176H116C111.6 176 108 172.4 108 168V152C108 147.6 111.6 144 116 144H128.3C151.7 144 170.7 161.3 170.7 182.6C170.7 193.3 165.8 203.5 157.4 210.7L135.4 229.5000000000001zM304 272H288C281.9 272 276.4 268.6 273.7 263.2L256 227.8L238.3 263.2000000000001C235.6 268.6 230.1 272 224 272H208C199.2 272 192 264.8000000000001 192 256V152C192 147.6 195.6 144 200 144H216C220.4 144 224 147.6 224 152V220.2L248.8 164.4C251.7 158.5 260.2 158.5 263.1 164.4L287.9000000000001 220.2V152C287.9000000000001 147.6 291.5000000000001 144 295.9000000000001 144H311.9000000000001C316.3 144 319.9000000000001 147.6 319.9000000000001 152V256C320.0000000000001 264.8 312.8 272 304.0000000000001 272zM375.4 229.5C374 230.7 373.3 232 373.3 233.3C373.3 236.4 377.8 239.9 383.7 239.9H396C400.4 239.9 404 243.5 404 247.9V263.9C404 268.3 400.4 271.9 396 271.9H383.7C360.3 271.9 341.3 254.6 341.3 233.3C341.3 222.6 346.2 212.4 354.6 205.2L376.5 186.4C377.9 185.2000000000001 378.6 183.9 378.6 182.6C378.6 179.5 374.1 176 368.2000000000001 176H356C351.6 176 348 172.4 348 168V152C348 147.6 351.6 144 356 144H368.3C391.7 144 410.7 161.3 410.7 182.6C410.7 193.3 405.8 203.5 397.4 210.7L375.4 229.5000000000001zM256 416C114.6 416 0 322.9 0 208C0 160.4 19.9 116.8 52.9 81.7C38 42.3 7 8.9 6.5 8.5C-0.1 1.5 -1.9 -8.7 1.9 -17.5C5.7 -26.3 14.4 -32 24 -32C85.5 -32 134 -6.3 163.1 14.3C192 5.2 223.2 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 48C229.3 48 202.9 52.1 177.6 60.1L154.9 67.3L135.4 53.5C121.1 43.4 101.5 32.1 77.9 24.5C85.2 36.6 92.3 50.2 97.8 64.7L108.4 92.8L87.8 114.6C69.7 133.9 48 165.8 48 208C48 296.2 141.3 368 256 368S464 296.2 464 208S370.7 48 256 48z" />
+    <glyph glyph-name="snake"
+      unicode="&#xF716;"
+      horiz-adv-x="640" d=" M512 200C503.16 200 496 192.84 496 184S503.16 168 512 168S528 175.16 528 184S520.84 200 512 200zM611.76 283.0900000000001C514.96 318.06 514.02 319.98 496.02 319.98C461.64 319.98 430.93 297.24 420.31 264.49C362.35 245.87 320 192.07 320 128V80C320 71.18 312.82 64 304 64S288 71.18 288 80V298.3C288 353.69 246.48 448 144 448C64.56 448 0 383.53 0 304V144.47C0 80.15 11.45 17 34.04 -43.23C38.77 -55.85 50.53 -64 64 -64C77.47 -64 89.23 -55.85 93.96 -43.24C116.55 16.99 128 80.15 128 144.47V304C128 312.82 135.18 320 144 320S160 312.82 160 304V85.7C160 30.3 201.52 -64 304 -64C383.4 -64 448 0.6 448 80V111.14C461.53 100.98 478.24 95.05 495.87 95.05C514.07 95.05 517.3100000000001 97.91 611.34 130.57C628.33 135.6 639.99 151.23 639.99 168.97V244.82C640 262.4 628.54 277.92 611.76 283.09zM592 177.02C498.63 142.97 503.44 143.98 496.02 143.98C482.58 143.98 470.23 153.15 465.97 166.27L460.3099999999999 183.74C426.8 182.36 400.01 154.97 400.01 121.13V80C400.01 -45.3 208.0099999999999 -51.89 208.0099999999999 85.7V300.4C208.0099999999999 332.29 186.2999999999999 361.93 154.8299999999999 367.11C114.77 373.71 80 342.8400000000001 80 304V144.47C80 102.4500000000001 74.63 60.98 64 20.65C53.37 60.98 48 102.4500000000001 48 144.47V300.54C48 374.89 109.92 400 144 400C199.06 400 240 352.11 240 298.3V83.6C240 -7.25 368 -3.55 368 80V128C368 188.1 415.88 212.66 435 218.8L458.39 226.32L465.97 249.7C470.23 262.8200000000001 482.58 271.99 496.02 271.99C503.46 271.99 498.64 273 592 238.95V177.0200000000001zM496 232C496 223.16 503.16 216 512 216S528 223.16 528 232S520.84 248 512 248S496 240.84 496 232z" />
+    <glyph glyph-name="snow-blowing"
+      unicode="&#xF761;"
+      horiz-adv-x="640" d=" M350.4 342.6L338.3 363.6C334.9 369.4 327.5 371.4 321.7 368L295.0999999999999 352.7L300.5999999999999 373.1C302.2999999999999 379.6 298.4999999999999 386.2 291.9999999999999 388L280.2999999999999 391.1C273.7999999999999 392.8 267.1999999999999 389 265.3999999999999 382.5L250.3999999999999 327L199.9999999999999 297.9V354.8L240.2 395C244.9 399.7 244.9 407.3 240.2 412L231.7 420.5C227 425.2 219.4 425.2 214.7 420.5L200 405.7V436C200 442.6 194.6 448 188 448H164C157.4 448 152 442.6 152 436V405.7L137.2 420.5C132.5 425.2 124.9 425.2 120.2 420.5L111.7 412C107 407.3 107 399.7 111.7 395L152 354.8V297.9L101.6 327L86.6 382.7C84.9 389.2 78.2 393 71.7 391.3L60 388.1C53.5 386.4 49.7 379.7 51.4 373.2L56.9 352.8L30.4 368.1C24.6 371.5 17.2 369.5 13.8 363.7L1.7 342.7C-1.7 336.9 0.3 329.5 6.1 326.1L32.7 310.8L12.3 305.3C5.8 303.6 2 296.9 3.7 290.4L6.8 278.7C8.5 272.2 15.2 268.4 21.7 270.1L77.3 285L127.5 256L77.3 227L21.6 242C15.1 243.7 8.5 239.9 6.7 233.4L3.6 221.7C1.9 215.2 5.7 208.6 12.2 206.8L32.6 201.3L6.1 185.9C0.3 182.5000000000001 -1.7 175.1 1.7 169.3L13.8 148.3C17.2 142.5 24.6 140.5 30.4 143.9L57 159.2L51.5 138.8C49.8 132.3 53.6 125.7 60.1 123.9L71.8 120.8C78.3 119.1 84.9 122.9 86.7 129.4L101.6 185.0000000000001L152 214.1000000000001V157.2000000000001L111.8 117C107.1 112.3 107.1 104.7 111.8 100L120.3 91.5C125 86.8 132.6 86.8 137.3 91.5L152.1 106.3V76C152.1 69.4 157.5 64 164.1 64H188.1C194.7 64 200.1 69.4 200.1 76V106.3L214.9 91.5C219.6 86.8 227.2000000000001 86.8 231.9000000000001 91.5L240.4000000000001 100C245.1 104.7 245.1 112.3 240.4000000000001 117L200 157.2V214.1L250.4 185L265.3 129.4C267 122.9 273.7 119.1 280.2 120.8L291.9 123.9C298.4 125.6 302.2 132.3 300.5 138.8L295 159.1999999999999L321.6 143.8999999999999C327.4000000000001 140.5 334.8 142.5 338.2000000000001 148.2999999999999L350.3000000000001 169.2999999999999C353.7000000000001 175.0999999999999 351.7000000000001 182.4999999999999 345.9000000000001 185.8999999999999L319.3000000000001 201.1999999999999L339.7000000000001 206.6999999999999C346.2000000000001 208.3999999999999 350.0000000000001 215.0999999999999 348.3000000000001 221.5999999999999L345.2000000000001 233.3C343.5000000000001 239.8 336.8000000000001 243.6 330.3000000000001 241.8999999999999L274.7 227L224.5 256L274.7 285L330.3 270.1C336.8 268.4 343.4000000000001 272.2 345.2 278.7L348.3 290.4C350 296.9 346.2 303.5 339.7 305.3L319.3 310.8L345.9000000000001 326.1C351.7000000000001 329.4 353.7000000000001 336.8 350.4000000000001 342.6zM544 128H368C359.2 128 352 120.8 352 112V96C352 87.2 359.2 80 368 80H544C575.4 80 599.9 49.7 589.6 16.7C585.2 2.4 573.5 -9.2 559.2 -13.7C530.7 -22.6 504.1 -5.4 497.5000000000001 19.8C495.7 26.7 490.0000000000001 31.9 482.8000000000001 31.9H464.4000000000001C455.2000000000001 31.9 447.8000000000001 23.7 449.5000000000001 14.7C458.8000000000001 -36.4999999999999 508.7000000000001 -73.5999999999999 564.6000000000001 -61.9C600.9000000000001 -54.3 630.2000000000002 -25 637.8000000000002 11.3C650.8000000000002 73.4 603.8000000000002 128 544.0000000000002 128zM400 160H544C603.8 160 650.8 214.6 637.8 276.6C630.1999999999999 312.9 600.9 342.2 564.5999999999999 349.8C508.6999999999999 361.5 458.7999999999999 324.4 449.4999999999999 273.2C447.8999999999999 264.2 455.2999999999999 256 464.3999999999999 256H482.7999999999998C489.9999999999998 256 495.6999999999998 261.2 497.4999999999998 268.1C504.0999999999999 293.3 530.6999999999998 310.5 559.1999999999998 301.6C573.4999999999998 297.1 585.0999999999998 285.5 589.5999999999998 271.2C599.7999999999998 238.3 575.3999999999997 207.9 543.9999999999998 207.9H400C391.2 207.9 384 200.7 384 191.9V175.9C384 167.2 391.2 160 400 160z" />
+    <glyph glyph-name="snowboarding"
+      unicode="&#xF7CE;"
+      horiz-adv-x="512" d=" M432 352C458.5 352 480 373.5 480 400S458.5 448 432 448S384 426.5 384 400S405.5 352 432 352zM473.4 197C477.7 193.7 482.9 192 488 192C495.2 192 502.3 195.2 507.1 201.4C515.2 211.9 513.2 227 502.7 235.1L383 326.7C369.9 336.5 355.4 344.1 339.8 349.3L272.8 371.7000000000001L236.9 435.7000000000001C230.4 447.2 215.7 451.4 204.2 444.9C192.6 438.4 188.5 423.8 195 412.2L231.5 347.1C236.3 337.6 244.5 330.5 254.6 327.1L289.4 315.5L231 286.3C211.9 276.8 200 257.6 200 236.2V181.3C200 178.1 198.1 175.2 195.1 173.9L118.8 142.1C106.6 137 100.8 122.9 105.9 110.7000000000001C107.1 107.7000000000001 109 105.3000000000001 111.2 103.2000000000001L67.6 119.1C57.9 122.6 50.2 129.7000000000001 45.8 139.1C40.2 151.1 25.9 156.4 13.9 150.7000000000001C1.9 145.1 -3.3 130.8000000000001 2.3 118.8000000000001C12.1 97.8000000000001 29.4 82.0000000000001 51.1 74.0000000000001L415.9 -58.7999999999999C425.6 -62.2999999999999 435.6 -64.0999999999999 445.6 -64.0999999999999C458.1 -64.0999999999999 470.4999999999999 -61.3999999999999 482.1 -55.8999999999999C494.1 -50.2999999999999 499.3 -35.9999999999999 493.7 -23.9999999999999S473.8 -6.8 461.8 -12.3999999999999C452.5 -16.6999999999999 442 -17.1999999999999 432.3 -13.6999999999999L328.5 24.1000000000001C339.3 24.4000000000001 349 31.9000000000001 351.4 43.0000000000001L373.2 145.0000000000001C376.4 160.2000000000001 370.5 176.1000000000001 358.1 185.4L295.4 232.4000000000001L377.6 270.3000000000001L473.4 197.0000000000001zM325.3 150L304.5 53C302.6 44 306.2 35.3 312.7 29.8L129.8999999999999 96.3C132.3999999999999 96.5 134.7999999999999 96.8 137.1999999999999 97.8L213.5 129.6C234.4 138.3 247.9 158.6 247.9 181.3V208L325.3 150z" />
+    <glyph glyph-name="snowflake"
+      unicode="&#xF2DC;"
+      horiz-adv-x="448" d=" M440.1 92.8L400.9000000000001 115.8L435.0000000000001 125.1C443.4000000000001 127.4 448.4000000000001 136.2000000000001 446.1000000000001 144.7000000000001L442.0000000000001 160.2000000000001C439.8000000000001 168.7000000000001 431.1000000000001 173.8000000000001 422.7000000000001 171.5000000000001L343 149.8L271.2 192L343.1 234.2L422.8 212.5C431.2 210.2 439.8 215.3 442.1 223.8L446.2000000000001 239.3C448.4000000000001 247.8 443.5000000000001 256.6 435.1 258.9L401 268.2000000000001L440.2 291.2000000000001C447.7 295.6 450.3 305.4 446 313.1L438.1 327C433.8 334.7000000000001 424.1 337.3 416.6 332.9000000000001L377.4000000000001 309.9000000000001L386.5000000000001 344.6C388.7000000000001 353.1 383.8000000000001 361.9000000000001 375.4000000000001 364.2000000000001L360.2000000000001 368.3000000000001C351.8000000000001 370.6 343.2000000000001 365.5000000000001 340.9000000000001 357.0000000000001L319.6 276.0000000000001L247.7 233.8000000000001V318.3000000000001L306 377.6C312.1 383.8 312.1 394 306 400.2L294.9 411.5C288.8 417.7 278.8 417.7 272.7 411.5L247.8 386.1V432C247.8 440.8 240.8 448 232.1 448H216.4C207.7 448 200.7 440.8 200.7 432V385.9L175.8 411.3C169.7 417.5 159.7 417.5 153.6 411.3L142.1 400C136 393.8 136 383.6 142.1 377.4L200.4 318.1V233.6L128.5 275.8L107.2 356.8C105 365.3 96.3 370.4 87.9 368.1L72.7 364C64.3 361.7 59.3 352.9 61.6 344.4L70.7 309.7L31.5 332.7C24 337.1 14.4 334.5 10 326.8L2.1 312.9C-2.2 305.2 0.3 295.5 7.9 291L47.1 268L13 258.9C4.6 256.6 -0.4 247.8 1.9 239.3L6 223.8C8.2 215.3 16.9 210.2 25.3 212.5L105 234.2L176.9 192L105 149.8L25.3 171.5C16.9 173.8 8.3 168.7 6 160.2L1.9 144.7C-0.3 136.2 4.6 127.4 13 125.1L47.1 115.8L7.9 92.8C0.4 88.4 -2.2 78.6 2.1 70.9L10 57C14.3 49.3 24 46.7 31.5 51.1L70.7 74.1L61.6 39.4C59.4 30.9 64.3 22.1 72.7 19.8L87.9 15.7C96.3 13.4 104.9 18.5 107.2 27L128.5 108L200.4 150.2V65.7L142.1 6.4C136 0.2 136 -10 142.1 -16.2L153.2 -27.5000000000001C159.3 -33.7 169.3 -33.7 175.4 -27.5000000000001L200.3 -2.1000000000001V-48C200.3 -56.8 207.3 -64 216 -64H231.7C240.4 -64 247.4 -56.8 247.4 -48V-1.9L272.3 -27.3C278.4 -33.4999999999999 288.4 -33.4999999999999 294.5 -27.3L305.6 -15.9999999999999C311.7 -9.8 311.7 0.4 305.6 6.6000000000001L247.3 65.9000000000001V150.4000000000001L319.2 108.2000000000001L340.5 27.2000000000001C342.7 18.7000000000001 351.3999999999999 13.6000000000001 359.8 15.9000000000001L375 20C383.4 22.3 388.4 31.1 386.1 39.6L377 74.3L416.2 51.3C423.7 46.9 433.3 49.5 437.7 57.2L445.6 71.1C450.2 78.6 447.7 88.4 440.1 92.8z" />
+    <glyph glyph-name="snowflakes"
+      unicode="&#xF7CF;"
+      horiz-adv-x="640" d=" M527.9 328C527.9 323.6 531.5 320 535.9 320H551.9C556.3 320 559.9 323.6 559.9 328V356.4L587.9 340.3C591.6999999999999 338.1 596.6 339.4 598.8 343.2000000000001L606.8 357.1C609 360.9000000000001 607.6999999999999 365.8 603.9 368L576 384L603.9 400C607.6999999999999 402.2 609 407.1 606.8 410.9L598.8 424.8C596.5999999999999 428.6 591.6999999999999 429.9 587.9 427.7L559.9 411.6V440C559.9 444.4 556.3 448 551.9 448H535.9C531.5 448 527.9 444.4 527.9 440V411.6L499.9 427.7C496.1 429.9 491.2 428.6 489 424.8L481 410.9C478.8 407.1 480.1 402.2 483.9 400L511.8 384L483.9 368C480.1 365.8 478.8 360.9 481 357.1L489 343.2C491.2 339.4 496.1 338.1 499.9 340.3L527.9 356.4V328zM608.1 192L636 208C639.8 210.2 641.1 215.1 638.9 218.9L630.9 232.8C628.6999999999999 236.6 623.8 237.9 620 235.7L592 219.6V248C592 252.4 588.4 256 584 256H568C563.6 256 560 252.4 560 248V219.6L532 235.7C528.2 237.9 523.3 236.6 521.1 232.8L513.1 218.9C510.9 215.1 512.2 210.2 516 208L543.9 192L516 176C512.2 173.8 510.9 168.9 513.1 165.1L521.1 151.2000000000001C523.3000000000001 147.4 528.2 146.1 532 148.3000000000001L560 164.4000000000001V136C560 131.6 563.6 128 568 128H584C588.4 128 592 131.6 592 136V164.4L620 148.3C623.8 146.1 628.7 147.4 630.9 151.1999999999999L638.9 165.0999999999999C641.1 168.8999999999999 639.8 173.7999999999999 636 175.9999999999999L608.1 191.9999999999999zM445.9 313.1L438 327C433.7 334.7 424 337.3 416.5 332.9L377.3 309.9L386.4000000000001 344.6C388.6 353.1 383.7000000000001 361.9 375.3 364.2000000000001L360.1 368.3C351.7000000000001 370.6 343.1 365.5 340.8 357L319.5 276L247.6 233.8V318.3L305.9 377.6C312 383.8 312 394 305.9 400.2L294.8 411.5C288.7 417.7 278.7 417.7 272.6 411.5L247.7 386.1V432C247.7 440.8 240.7 448 232 448H216.3C207.6 448 200.6 440.8 200.6 432V385.9L175.7 411.3C169.6 417.5 159.6 417.5 153.5 411.3L142.1 400C136 393.8 136 383.6 142.1 377.4L200.4 318.1V233.6L128.5 275.8L107.2 356.8C105 365.3 96.3 370.4 87.9 368.1L72.7 364C64.3 361.7 59.3 352.9 61.6 344.4L70.7 309.7L31.5 332.7C24 337.1 14.4 334.5 10 326.8L2.1 312.9C-2.2 305.2 0.3 295.5 7.9 291L47.1 268L13 258.9C4.6 256.6 -0.4 247.8 1.9 239.3L6 223.8C8.2 215.3 16.9 210.2 25.3 212.5L105 234.2L176.9 192L105 149.8L25.3 171.5C16.9 173.8 8.3 168.7 6 160.2L1.9 144.7C-0.3 136.2 4.6 127.4 13 125.1L47.1 115.8L7.9 92.8C0.4 88.4 -2.2 78.6 2.1 70.9L10 57C14.3 49.3 24 46.7 31.5 51.1L70.7 74.1L61.6 39.4C59.4 30.9 64.3 22.1 72.7 19.8L87.9 15.7C96.3 13.4 104.9 18.5 107.2 27L128.5 108L200.4 150.2V65.7L142.1 6.4C136 0.2 136 -10 142.1 -16.2L153.2 -27.5000000000001C159.3 -33.7 169.3 -33.7 175.4 -27.5000000000001L200.3 -2.1000000000001V-48C200.3 -56.8 207.3 -64 216 -64H231.7C240.4 -64 247.4 -56.8 247.4 -48V-1.9L272.3 -27.3C278.4 -33.4999999999999 288.4 -33.4999999999999 294.5 -27.3L305.6 -15.9999999999999C311.7 -9.8 311.7 0.4 305.6 6.6000000000001L247.3 65.9000000000001V150.4000000000001L319.2 108.2000000000001L340.5 27.2000000000001C342.7 18.7000000000001 351.3999999999999 13.6000000000001 359.8 15.9000000000001L375 20C383.4 22.3 388.4 31.1 386.1 39.6L377 74.3L416.2 51.3C423.7 46.9 433.3 49.5 437.7 57.2L445.6 71.1C450.2 78.6 447.7 88.4 440.1 92.8L400.9 115.8L435 125.1C443.4 127.4 448.4 136.2 446.1 144.7L442 160.2C439.8 168.7 431.1 173.8 422.7 171.5L343 149.8L271.2 192L343.1 234.2L422.8 212.5C431.2 210.2 439.8 215.3 442.1 223.8L446.2000000000001 239.3C448.4000000000001 247.8 443.5000000000001 256.6 435.1 258.9L401 268.2000000000001L440.2 291.2000000000001C447.6 295.6 450.2 305.4 445.9 313.1z" />
+    <glyph glyph-name="snowman"
+      unicode="&#xF7D0;"
+      horiz-adv-x="512" d=" M256 160C247.2 160 240 152.8 240 144S247.2 128 256 128S272 135.2 272 144S264.8 160 256 160zM256 224C247.2 224 240 216.8 240 208S247.2 192 256 192S272 199.2 272 208S264.8 224 256 224zM224 360C215.2 360 208 352.8 208 344S215.2 328 224 328S240 335.2 240 344S232.8 360 224 360zM256 96C247.2 96 240 88.8 240 80S247.2 64 256 64S272 71.2 272 80S264.8 96 256 96zM510.9 263.7L505 278.2C501.7 286.2 492.4 290.1 484.2 286.9L456 275.4V304.4C456 313 448.8 320 440 320H424C415.2 320 408 313 408 304.4V257.5C408 257 408.3 256.5 408.3 256L382.1 245.3C378.4000000000001 254.5 374 263.6 368.4000000000001 271.9C376 288.2 380 306 380 324C380 392.4 324.4 448 256 448S132 392.4 132 324C132 306 136 288.2 143.6 271.9C137.9 263.5 133.5 254.5 129.9 245.3L103.7 256C103.8 256.5 104 257 104 257.5V304.4C104 313 96.8 320 88 320H72C63.2 320 56 313 56 304.4V275.4L27.9 286.9C19.7 290.1 10.4 286.2000000000001 7.1 278.2000000000001L1.2 263.7000000000001C-2.1 255.7 1.9 246.6 10.1 243.4L120.2 198.5C120.2 197.7 120 196.9 120 196.1C120 189 120.7 181.8 122.1 174.1C103.9 147.3 94.3 116.2000000000001 94.3 83.4C94.3 28.0000000000001 122.5 -22.8 169.6 -52.6999999999999C181.1 -59.9999999999999 195.3 -63.7999999999999 210.8 -63.7999999999999H300.7C317.7 -63.7999999999999 334.0999999999999 -58.6999999999999 348.0999999999999 -48.9C400.8999999999999 -12.3 426.5999999999999 49.9 415.0999999999999 113.4C411.2 134.7000000000001 402.5999999999999 155.4 389.9999999999999 174.0000000000001C391.3999999999999 181.7000000000001 392.0999999999999 189.1000000000001 392.0999999999999 196.2000000000001C392.0999999999999 197.0000000000001 391.8999999999999 197.8000000000001 391.8999999999999 198.6000000000001L502 243.5C510.1 246.5 514.1 255.6 510.9 263.7zM320.7 -9.7C314.8 -13.8 307.8 -16 300.6 -16H210.7C206.3 -16 200 -15.4 195.2 -12.3C162 8.7 142.2 44.5 142.2 83.3C142.2 109.1 150.6 133.5 166.6 153.6999999999999L173.9 163L171 174.5C168.9 182.6999999999999 167.9 189.6 167.9 196.0999999999999C167.9 223 180 242.3999999999999 190.1 253.8999999999999L202.1 267.5999999999999L192.2 282.7999999999999C184.1 295.2999999999999 179.9 309.4999999999999 179.9 324.0999999999999C179.9 365.9999999999999 214 400.0999999999999 255.9 400.0999999999999S331.9 365.9999999999999 331.9 324.0999999999999C331.9 309.5999999999999 327.6 295.2999999999999 319.6 282.7999999999999L309.7 267.5999999999999L321.7 253.8999999999999C331.9 242.3999999999999 343.9 222.8999999999999 343.9 196.0999999999999C343.9 189.4999999999999 342.9 182.5999999999999 340.8 174.3999999999999L337.9 162.8999999999999L345.2 153.5999999999999C356.8 138.8999999999999 364.6 121.9999999999999 367.7 104.6999999999999C375.9 59.8999999999999 357.9 16.0999999999999 320.7 -9.7zM288 360C279.2 360 272 352.8 272 344S279.2 328 288 328S304 335.2 304 344S296.8 360 288 360zM256 320C247.2 320 240 312.8 240 304S256 272 256 272S272 295.2 272 304S264.8 320 256 320z" />
+    <glyph glyph-name="snowmobile"
+      unicode="&#xF7D1;"
+      horiz-adv-x="640" d=" M636.8 1.6L627.1999999999999 14.4C621.9 21.5000000000001 611.9 22.9 604.8 17.6L570.7 -8C563.8000000000001 -13.2 555.4000000000001 -16 546.7 -16H546L492 56L568.9 107.3C573.4 110.3 576 115.3 576 120.6V198.1C576 204.2 572.6 209.7 567.2 212.4L414.5000000000001 288.8000000000001L373.5000000000001 370.8000000000001C367.6000000000001 382.6 353.2000000000001 387.5000000000001 341.3000000000001 381.5000000000001C329.4000000000001 375.6 324.6000000000001 361.2000000000001 330.5000000000001 349.3000000000001L365.5000000000001 279.4000000000001L342 248H301C298.9 248 296.9 248.8 295.4 250.2L240.4 303.6C227.6 316.3 209.3 322.1 191.8 319.3C174.1 316.4 158.7 305.1 150.7 289.1L120.9 229.4C114.2 216 113.1 200.8 117.9 186.6C119.2 182.7 121.4 179.4 123.4 176H112C99.9 176 88.8 169.1999999999999 83.4 158.3L51.4 94.3C50.7 92.9 50.4 91.4 49.9 89.9999999999999C20.7 78.1 0 49.5 0 16C0 -28.1 35.9 -64 80 -64H240C284.1 -64 320 -28.1 320 16C320 27.4 317.5 38.2 313.2 48H438L486 -16H432C423.2 -16 416 -23.2 416 -32V-48C416 -56.8 423.2 -64 432 -64H546.7C565.7 -64 584.3000000000001 -57.8 599.5 -46.4L633.6 -20.8C640.7 -15.4999999999999 642.1 -5.4999999999999 636.8000000000001 1.6zM220 256.4L262 215.7C272.5 205.5 286.3 199.9 301 199.9H306L288 175.9H209.7L185.8 187.8L220 256.4zM240 -16H80C62.3 -16 48 -1.7 48 16S62.3 48 80 48H240C257.7 48 272 33.7 272 16S257.7 -16 240 -16zM465.5 96H105.9L121.9 128H312L398.4 243.2L528 178.3V137.7L465.5 96zM240 352C266.5 352 288 373.5 288 400S266.5 448 240 448S192 426.5 192 400S213.5 352 240 352z" />
+    <glyph glyph-name="snowplow"
+      unicode="&#xF7D2;"
+      horiz-adv-x="640" d=" M120 72C106.7 72 96 61.3 96 48S106.7 24 120 24S144 34.7 144 48S133.3 72 120 72zM579.7 30.2C572.2 37.7 568 47.9 568 58.5V197.5C568 208.1 572.2 218.3 579.7 225.8L635.3000000000001 281.4C641.5000000000001 287.6 641.5000000000001 297.8 635.3000000000001 304L624 315.3C617.8 321.5 607.6 321.5 601.4 315.3L545.8 259.7000000000001C529.3 243.2 520 220.8 520 197.5V152H432V210.9C432 219.6 430.2 228.1 426.8 236.1L348.5 418.9C340.9 436.6 323.6 448 304.3 448H160C133.5 448 112 426.5 112 400V320H96C69.5 320 48 298.5 48 272V139.7C19 119.5 0 86 0 48C0 -13.9 50.1 -64 112 -64H368C429.9 -64 480 -13.9 480 48C480 68.5 474.1 87.5 464.5 104H520V58.5C520 35.2 529.3 12.8 545.8 -3.7L601.4 -59.3C607.6 -65.5 617.8 -65.5 624 -59.3L635.3 -48C641.5 -41.8 641.5 -31.6 635.3 -25.4L579.6999999999999 30.2zM160 400H304.4L369.5 248H220.6L160 335.5V400zM96 272H145.6L188.3 210.3C192.8 203.8 200.1 200 208 200H384V158.4C378.7 159.2 373.5 160 368 160H112C106.5 160 101.3 159.1 96 158.4V272zM368 -16H112C76.7 -16 48 12.7 48 48S76.7 112 112 112H368C403.3 112 432 83.3 432 48S403.3 -16 368 -16zM200 72C186.7 72 176 61.3 176 48S186.7 24 200 24S224 34.7 224 48S213.3 72 200 72zM360 72C346.7 72 336 61.3 336 48S346.7 24 360 24S384 34.7 384 48S373.3 72 360 72zM280 72C266.7 72 256 61.3 256 48S266.7 24 280 24S304 34.7 304 48S293.3 72 280 72z" />
+    <glyph glyph-name="socks"
+      unicode="&#xF696;"
+      horiz-adv-x="512" d=" M448 448H352.17C340.2800000000001 448 329.29 444.56 319.75 438.94C310.34 444.4 299.68 448 288 448H192.17C156.85 448 128.21 419.54 128.17 384.2200000000001C128.1 310.73 128 200 128 200L48.23 140.61C2.26 106.12 -14.59 42.12 14.17 -7.64C35.46 -44.47 73.2 -64 111.49 -64C134.87 -64 159.06 -56.7 179.19 -41.59L192.95 -31.27C214.42 -52.73 243.08 -63.99 272.1 -63.99C295.48 -63.99 319.0700000000001 -56.69 339.1900000000001 -41.58L460.8000000000001 49.62A128.006 128.006 0 0 1 512.0100000000001 152.02V384C512 419.35 483.35 448 448 448zM352.17 400H448C456.82 400 464 392.82 464 384V352H336.14L336.17 384.17C336.18 392.9 343.36 400 352.17 400zM192.17 400H288C288.8 400 289.5 399.71 290.26 399.57C289.03 394.63 288.18 389.54 288.18 384.21L288.1500000000001 351.99H176.15L176.18 384.1600000000001C176.18 392.9000000000001 183.3600000000001 400 192.1700000000001 400zM111.49 -16C88.29 -16 67.45 -3.89 55.73 16.38C39.94 43.7 49.3 81.4 77.04 102.21L175.98 175.98L176.1 304H288.1C288.05 249.35 288 200 288 200L208.84 140.61C167.94 109.93 150.3 55.93 167.12 9.35L150.38 -3.2C139.22 -11.58 125.38 -16.0000000000001 111.49 -16.0000000000001zM432 88L310.37 -3.21C299.2200000000001 -11.58 285.99 -16 272.0900000000001 -16C248.8900000000001 -16 228.0500000000001 -3.89 216.3300000000001 16.38C200.5400000000001 43.7 209.9 81.4 237.6400000000001 102.21L335.98 175.98L336.1 304H464V152.01C464 126.96 452.04 103.03 432 88z" />
+    <glyph glyph-name="solar-panel"
+      unicode="&#xF5BA;"
+      horiz-adv-x="640" d=" M585.24 421.26C582.62 436.69 569.02 448 553.09 448H86.91C70.98 448 57.38 436.69 54.76 421.26L0.45 101.26C-2.86 81.76 12.46 64 32.6 64H224V-16.24L192.02 -16.27C183.2 -16.28 176.05 -23.43 176.04 -32.25L176 -47.98C175.9900000000001 -56.83 183.17 -64.01 192.0200000000001 -64L447.9600000000001 -63.74C456.78 -63.73 463.9300000000001 -56.58 463.9400000000001 -47.76L463.9800000000001 -32.04C463.9900000000001 -23.1899999999999 456.8100000000001 -16.01 447.9600000000001 -16.02L416.0000000000001 -16.05V64H607.4000000000001C627.5400000000001 64 642.8600000000001 81.76 639.5400000000001 101.26L585.2400000000001 421.26zM558.3 288H436.9100000000001L425.7100000000001 400H539.2900000000001L558.3000000000001 288zM251.31 288L262.51 400H377.4799999999999L388.6799999999999 288H251.31zM393.49 240L406.29 112H233.71L246.51 240H393.49zM100.71 400H214.29L203.09 288H81.7L100.71 400zM73.55 240H198.28L185.48 112H51.83L73.55 240zM368 -16.1L272 -16.2V64H368V-16.1zM454.51 112L441.71 240H566.4399999999999L588.16 112H454.51z" />
+    <glyph glyph-name="sort-alpha-down"
+      unicode="&#xF15D;"
+      horiz-adv-x="384" d=" M156.718 43.76L88.724 -28.242C83.992 -33.252 76.011 -33.256 71.276 -28.242L3.283 43.76C-3.883 51.348 1.428 64 12.007 64H56V404C56 410.627 61.373 416 68 416H92C98.627 416 104 410.627 104 404V64H147.994C158.581 64 163.878 51.342 156.718 43.76zM262.571 232.693A12 12 0 0 0 251.036 224H221.903C213.683 224 207.896 232.078 210.541 239.861L267.638 407.861A11.999000000000002 11.999000000000002 0 0 0 278.999 416H314.8930000000001C320.0320000000001 416 324.6010000000001 412.727 326.2550000000001 407.861L383.3520000000001 239.861C385.997 232.078 380.211 224 371.99 224H342.818A12 12 0 0 0 331.303 232.622L322.51 262.5990000000001H271.143L262.571 232.693zM284.034 306.635H309.64L300.818 337.29C299.541 341.709 298.167 347.282 296.947 352.531C295.726 347.28 294.352 341.707 293.075 337.286L284.034 306.635zM291.52 14.531C293.794 17.185 296.505 20.587 299.449 24.766L369.268 123.826A11.999000000000002 11.999000000000002 0 0 1 371.459 130.739V148C371.459 154.627 366.086 160 359.459 160H236.493C229.866 160 224.493 154.627 224.493 148V125.39C224.493 118.763 229.866 113.39 236.493 113.39H296.175C297.827 113.39 299.3880000000001 113.42 300.83 113.468C298.556 110.8149999999999 295.846 107.413 292.903 103.235L223.343 4.693A12.001000000000001 12.001000000000001 0 0 1 221.147 -2.227V-20C221.147 -26.627 226.52 -32 233.147 -32H360.746C367.373 -32 372.746 -26.627 372.746 -20V2.61C372.746 9.237 367.373 14.61 360.746 14.61H296.175C294.523 14.61 292.962 14.579 291.52 14.531z" />
+    <glyph glyph-name="sort-alpha-up"
+      unicode="&#xF15E;"
+      horiz-adv-x="448" d=" M35.282 340.24L103.276 412.242C108.008 417.252 115.989 417.256 120.724 412.242L188.717 340.24C195.883 332.653 190.573 320 179.993 320H136V-20C136 -26.627 130.627 -32 124 -32H100C93.373 -32 88 -26.627 88 -20V320H44.006C33.419 320 28.122 332.658 35.282 340.24zM301.624 232.693A12 12 0 0 0 290.089 224H260.956C252.736 224 246.949 232.078 249.594 239.861L306.6910000000001 407.861A12 12 0 0 0 318.053 416H353.947C359.086 416 363.6550000000001 412.727 365.3090000000001 407.861L422.406 239.861C425.051 232.078 419.265 224 411.044 224H381.872A12 12 0 0 0 370.357 232.622L361.564 262.5990000000001H310.197L301.624 232.693zM323.087 306.635H348.693L339.871 337.29C338.594 341.709 337.22 347.282 336 352.531C334.779 347.28 333.405 341.707 332.128 337.286L323.087 306.635zM330.573 14.531C332.847 17.185 335.558 20.587 338.502 24.766L408.321 123.826A11.999000000000002 11.999000000000002 0 0 1 410.512 130.739V148C410.512 154.627 405.139 160 398.512 160H275.546C268.919 160 263.546 154.627 263.546 148V125.39C263.546 118.763 268.919 113.39 275.546 113.39H335.228C336.88 113.39 338.4410000000001 113.42 339.883 113.468C337.609 110.8149999999999 334.899 107.413 331.956 103.235L262.396 4.693A12.001000000000001 12.001000000000001 0 0 1 260.2 -2.227V-20C260.2 -26.627 265.5729999999999 -32 272.2 -32H399.8C406.427 -32 411.8 -26.627 411.8 -20V2.61C411.8 9.237 406.427 14.61 399.8 14.61H335.229C333.5759999999999 14.61 332.015 14.579 330.5729999999999 14.531z" />
+    <glyph glyph-name="sort-amount-down"
+      unicode="&#xF160;"
+      horiz-adv-x="512" d=" M156.718 43.76L88.724 -28.242C83.992 -33.252 76.011 -33.256 71.276 -28.242L3.283 43.76C-3.883 51.348 1.428 64 12.007 64H56V404C56 410.627 61.373 416 68 416H92C98.627 416 104 410.627 104 404V64H147.994C158.581 64 163.878 51.342 156.718 43.76zM236 312H500C506.627 312 512 317.373 512 324V348C512 354.627 506.627 360 500 360H236C229.373 360 224 354.627 224 348V324C224 317.373 229.373 312 236 312zM224 228V252C224 258.627 229.373 264 236 264H436C442.627 264 448 258.627 448 252V228C448 221.373 442.627 216 436 216H236C229.373 216 224 221.373 224 228zM224 36V60C224 66.627 229.373 72 236 72H308C314.627 72 320 66.627 320 60V36C320 29.373 314.627 24 308 24H236C229.373 24 224 29.373 224 36zM224 132V156C224 162.627 229.373 168 236 168H372C378.627 168 384 162.627 384 156V132C384 125.373 378.627 120 372 120H236C229.373 120 224 125.373 224 132z" />
+    <glyph glyph-name="sort-amount-up"
+      unicode="&#xF161;"
+      horiz-adv-x="512" d=" M3.282 340.24L71.276 412.242C76.008 417.252 83.989 417.256 88.724 412.242L156.717 340.24C163.883 332.653 158.573 320 147.993 320H104V-20C104 -26.627 98.627 -32 92 -32H68C61.373 -32 56 -26.627 56 -20V320H12.006C1.419 320 -3.878 332.658 3.282 340.24zM236 312H500C506.627 312 512 317.373 512 324V348C512 354.627 506.627 360 500 360H236C229.373 360 224 354.627 224 348V324C224 317.373 229.373 312 236 312zM224 228V252C224 258.627 229.373 264 236 264H436C442.627 264 448 258.627 448 252V228C448 221.373 442.627 216 436 216H236C229.373 216 224 221.373 224 228zM224 36V60C224 66.627 229.373 72 236 72H308C314.627 72 320 66.627 320 60V36C320 29.373 314.627 24 308 24H236C229.373 24 224 29.373 224 36zM224 132V156C224 162.627 229.373 168 236 168H372C378.627 168 384 162.627 384 156V132C384 125.373 378.627 120 372 120H236C229.373 120 224 125.373 224 132z" />
+    <glyph glyph-name="sort-down"
+      unicode="&#xF0DD;"
+      horiz-adv-x="320" d=" M272 160H48.1C5.5 160 -16.1 108.3 14.2 78.1L126.1 -33.9C144.8 -52.6 175.2 -52.6 194 -33.9L306 78.1C336 108.2000000000001 314.7 160 272 160zM160 0L48 112H272L160 0z" />
+    <glyph glyph-name="sort-numeric-down"
+      unicode="&#xF162;"
+      horiz-adv-x="384" d=" M372.777 258.61V236C372.777 229.373 367.404 224 360.777 224H254.279C247.652 224 242.279 229.373 242.279 236V258.61C242.279 265.237 247.652 270.61 254.279 270.61H281.393C281.393 349.2050000000001 281.389 343.73 281.401 345.448C280.589 344.636 280.768 344.826 275.394 339.952C270.538 335.5470000000001 263.045 335.855 258.567 340.6430000000001L243.408 356.8520000000001C238.886 361.688 239.134 369.2720000000001 243.964 373.802L285.498 412.754A11.999000000000002 11.999000000000002 0 0 0 293.707 416.0010000000001H321.406C328.033 416.0010000000001 333.406 410.6280000000001 333.406 404.0010000000001V270.6110000000001H360.778C367.4050000000001 270.61 372.7770000000001 265.2370000000001 372.7770000000001 258.61zM284.975 -35C273.362 -35 261.25 -33.483 250.116 -29.601C244.054 -27.487 240.84 -20.857 242.76 -14.731L250.106 8.714C252.0830000000001 15.025 258.771 18.69 265.0940000000001 16.753C284.7720000000001 10.727 303.4450000000001 14.508 313.5910000000001 32.885C271.1670000000001 20.075 231.3520000000001 51.467 231.3520000000001 97.038C231.3520000000001 129.015 254.7410000000001 163 298.0860000000001 163C340.1680000000001 163 376.6470000000001 130.162 376.6470000000001 71.07C376.6470000000001 15.704 341.7620000000001 -35 284.975 -35zM283.577 97.294C283.577 86.178 289.8210000000001 74.301 307.343 74.301C317.3130000000001 74.301 322.367 76.674 322.367 81.354C322.367 101.493 308.225 113.86 298.086 113.86C288.6620000000001 113.86 283.577 105.325 283.577 97.294zM147.994 64H104V404C104 410.627 98.627 416 92 416H68C61.373 416 56 410.627 56 404V64H12.007C1.427 64 -3.883 51.348 3.283 43.76L71.276 -28.242C76.011 -33.256 83.992 -33.252 88.724 -28.242L156.718 43.76C163.878 51.342 158.581 64 147.994 64z" />
+    <glyph glyph-name="sort-numeric-up"
+      unicode="&#xF163;"
+      horiz-adv-x="384" d=" M372.777 258.61V236C372.777 229.373 367.404 224 360.777 224H254.279C247.652 224 242.279 229.373 242.279 236V258.61C242.279 265.237 247.652 270.61 254.279 270.61H281.393C281.393 349.2050000000001 281.389 343.73 281.401 345.448C280.589 344.636 280.768 344.826 275.394 339.952C270.538 335.5470000000001 263.045 335.855 258.567 340.6430000000001L243.408 356.8520000000001C238.886 361.688 239.134 369.2720000000001 243.964 373.802L285.498 412.754A11.999000000000002 11.999000000000002 0 0 0 293.707 416.0010000000001H321.406C328.033 416.0010000000001 333.406 410.6280000000001 333.406 404.0010000000001V270.6110000000001H360.778C367.4050000000001 270.61 372.7770000000001 265.2370000000001 372.7770000000001 258.61zM284.975 -35C273.362 -35 261.25 -33.483 250.116 -29.601C244.054 -27.487 240.84 -20.857 242.76 -14.731L250.106 8.714C252.0830000000001 15.025 258.771 18.69 265.0940000000001 16.753C284.7720000000001 10.727 303.4450000000001 14.508 313.5910000000001 32.885C271.1670000000001 20.075 231.3520000000001 51.467 231.3520000000001 97.038C231.3520000000001 129.015 254.7410000000001 163 298.0860000000001 163C340.1680000000001 163 376.6470000000001 130.162 376.6470000000001 71.07C376.6470000000001 15.704 341.7620000000001 -35 284.975 -35zM283.577 97.294C283.577 86.178 289.8210000000001 74.301 307.343 74.301C317.3130000000001 74.301 322.367 76.674 322.367 81.354C322.367 101.493 308.225 113.86 298.086 113.86C288.6620000000001 113.86 283.577 105.325 283.577 97.294zM12.006 320H56V-20C56 -26.627 61.373 -32 68 -32H92C98.627 -32 104 -26.627 104 -20V320H147.993C158.573 320 163.883 332.652 156.717 340.24L88.724 412.241C83.989 417.255 76.008 417.251 71.276 412.241L3.282 340.24C-3.878 332.658 1.419 320 12.006 320z" />
+    <glyph glyph-name="sort-up"
+      unicode="&#xF0DE;"
+      horiz-adv-x="320" d=" M48 224H271.9C314.5 224 336.1 275.7 305.8 305.9L193.9 417.9C175.2 436.6 144.8 436.6 126 417.9L13.9999999999999 305.9C-16 275.8 5.3 224 48 224zM160 384L272 272H48L160 384z" />
+    <glyph glyph-name="sort"
+      unicode="&#xF0DC;"
+      horiz-adv-x="320" d=" M272 160H48.1C5.5 160 -16.1 108.3 14.2 78.1L126.1 -33.9C144.8 -52.6 175.2 -52.6 194 -33.9L306 78.1C336 108.2000000000001 314.7 160 272 160zM160 0L48 112H272L160 0zM48 224H271.9C314.5 224 336.1 275.7 305.8 305.9L193.9 417.9C175.2 436.6 144.8 436.6 126 417.9L13.9999999999999 305.9C-16 275.8 5.3 224 48 224zM160 384L272 272H48L160 384z" />
+    <glyph glyph-name="spa"
+      unicode="&#xF5BB;"
+      horiz-adv-x="576" d=" M568.28 256H568.24C546.86 255.9 483.75 252.37 420.49 219.97C393.9000000000001 298.28 351.2200000000001 366.55 298.76 412.19C295.84 414.73 291.93 416 288.02 416S280.2 414.73 277.28 412.19C224.81 366.55 182.12 298.28 155.5 219.96C92.25 252.37 29.14 255.9 7.75 256H7.71C3.32 256 -0.05 252.59 -0.01 248.18C0.22 220.26 7.13 122.04 88.76 48.88C170.99 -31.18 252.43 -32 285.87 -32H290.35C323.92 -32 405.18 -31.02 487.23 48.88C568.87 122.05 575.77 220.26 576 248.18C576.04 252.59 572.68 256 568.28 256zM122.26 83.27L121.55 83.96L120.81 84.62C78.42 122.61 60.59 169.02 53.17 203.83C91.95 197.25 145.11 180.52 188.09 138.62L188.82 137.9L189.58 137.22C213.12 116.16 230.8 90.83 243.63 59.79L261.42 16.7499999999999C227.65 19.3999999999999 175.81 31.12 122.26 83.2699999999999zM288 78.14C274.95 109.7 254.71 143.37 221.59 173C213.66 180.73 205.32 187.26 196.94 193.62C217.02 257.45 248.79 314.36 288.02 355.98C327.24 314.36 358.98 257.44 379.05 193.62C370.68 187.26 362.34 180.73 354.41 173.01C321.29 143.37 301.05 109.7 288 78.14zM455.19 84.62L454.45 83.96L453.74 83.27C400.1 31.04 348.27 19.36 314.56 16.75L332.36 59.8C345.19 90.84 362.87 116.16 386.4100000000001 137.23L387.17 137.91L387.9000000000001 138.6300000000001C430.9100000000001 180.5500000000001 484.1 197.2800000000001 522.83 203.8500000000001C515.4200000000001 169.0400000000001 497.58 122.6200000000001 455.1900000000001 84.6200000000001z" />
+    <glyph glyph-name="space-shuttle"
+      unicode="&#xF197;"
+      horiz-adv-x="640" d=" M456 280C248 280 266.989 416 96 416C51.335 416 29.6 391.61 29.6 352V296C9.056 296 0 285.432 0 272V224C0 211.166 8.412 200 29.6 200V184C9.056 184 0 173.432 0 160V112C0 99.166 8.412 88 29.6 88V32C29.6 -7.602 51.327 -32 96 -32C267.029 -32 248 104 456 104C552 104 640 137.5 640 192C640 243 552 280 456 280zM115.417 368C181.277 368 240 304 288 280H144C130.001 289.503 112.845 296 96 296V368H115.417zM115.417 16H96V88C112.845 88 130.001 94.497 144 104H288C240 80 190.513 16 115.417 16zM456 144H168.786C178.182 173.293 178.629 209.315 168.786 240H456C495.888 240 532.728 236.222 559.734 224C559.8240000000001 223.959 559.8240000000001 160.041 559.734 160C532.7280000000001 147.778 495.888 144 456.0000000000001 144zM480.242 155.429A8 8 0 0 0 472.242 163.429V220.572A8 8 0 0 0 480.242 228.572C522.626 228.571 522.5450000000001 155.429 480.242 155.429z" />
+    <glyph glyph-name="spade"
+      unicode="&#xF2F4;"
+      horiz-adv-x="512" d=" M256 400S430.6 232.7 448.2 208C458.2 193.9 464.1 176.6 464 157.9C463.7 110.8 424.5 73.1 377.4 73.1H376.6C338.5 73.4 327.7 79.1 298.2 109.3C297 110.6 295.5 111.1 294 111.1C290.8999999999999 111.1 288 108.7 288 105.1V88C288 50.3 285.7 39.2 312.7 5.1C319.5 -3.4 313.3999999999999 -16 302.5 -16H209.3C198.4 -16 192.4 -3.4 199.1 5.1C226.1 39.1 223.8 50.3 223.8 88V105.1C223.8 108.7000000000001 220.8 111.1 217.8 111.1C216.3 111.1 214.8 110.5 213.6 109.3C184.4 79.4 173.5 73.5 135.3 73.1H134.5C87.2999999999999 73.1 48.0999999999999 110.9 47.9 158.2000000000001C47.8 176.9 53.8 194.2000000000001 63.9 208.3000000000001C81.6 232.8 256 400 256 400M256 448C244 448 232.1 443.5 222.8 434.6C222.4 434.2 178.5 392.1 133 347.6C38.5 255 29.4 242.4 25 236.3C8.5 213.4 -0.1 186.3 0 158.1C0.3 84.8 60.6 25.2 134.6 25.2H135.8C142.8 25.3000000000001 149.4 25.5000000000001 155.8 26.0000000000001C151.9 18.8000000000001 149.5 10.8000000000001 148.7 2.5000000000001C147.7 -8.4999999999999 149.7 -19.6 154.6 -29.4999999999999C159.4 -39.4999999999999 166.8 -47.8999999999999 176 -53.9999999999999C185.9 -60.4999999999999 197.5 -63.9999999999999 209.5 -63.9999999999999H302.7C314.7 -63.9999999999999 326.3 -60.4999999999999 336.2 -53.9999999999999C345.4 -47.8999999999999 352.8 -39.4999999999999 357.6 -29.4999999999999C362.4 -19.4999999999999 364.4 -8.4999999999999 363.5 2.5000000000001C362.8 10.8000000000001 360.3 18.7 356.3999999999999 26.0000000000001C362.7999999999999 25.5000000000001 369.3999999999999 25.2 376.3999999999999 25.2H377.5999999999999C412.9999999999999 25.2 446.4999999999999 38.8000000000001 471.8999999999999 63.5000000000001C497.5999999999999 88.5000000000001 511.8999999999999 122.0000000000001 512.1999999999999 157.6C512.4 185.8 503.8999999999999 212.9 487.4999999999999 235.9000000000001C483.1 242.0000000000001 473.9999999999999 254.8000000000001 379.3 347.6C333.8 392.2000000000001 289.9 434.3000000000001 289.4 434.7000000000001C279.9 443.6 268 448 256 448z" />
+    <glyph glyph-name="spider-black-widow"
+      unicode="&#xF718;"
+      horiz-adv-x="576" d=" M313.59 160H262.41C257.14 160 254.13 154.98 257.29 151.47L278.4 128L257.29 104.54C254.13 101.02 257.14 96 262.41 96H313.59C318.86 96 321.87 101.02 318.71 104.54L297.6 128L318.7100000000001 151.47C321.8700000000001 154.98 318.86 160 313.5900000000001 160zM151.17 280.65L181.77 272L186.99 298.12C187.71 301.7000000000001 188.79 305.7000000000001 190.2 309.91L169.91 350.49L193.71 421.88C196.5 430.26 191.98 439.32 183.59 442.12L168.42 447.18C160.04 449.98 150.97 445.45 148.18 437.06L122.29 359.38A32.04 32.04 0 0 1 124.02 334.95L151.17 280.65zM406.09 350.49L385.8 309.9100000000001C387.21 305.7000000000001 388.29 301.7000000000001 389.01 298.12L394.23 272L424.83 280.6500000000001L451.98 334.9500000000001A31.991999999999997 31.991999999999997 0 0 1 453.71 359.38L427.82 437.0600000000001C425.03 445.44 415.96 449.98 407.58 447.18L392.41 442.12C384.03 439.32 379.5 430.26 382.29 421.88L406.09 350.49zM573.31 98.62L520.56 177.74A32.002 32.002 0 0 1 493.9399999999999 191.99H416L484.99 216.35A32.03 32.03 0 0 1 501.5 228.9600000000001L555.1 309.37C560 316.7200000000001 558.01 326.6600000000001 550.66 331.5600000000001L537.35 340.4400000000001C530 345.3400000000001 520.0600000000001 343.35 515.16 336L464.6 260.17L404.1 240H368L357.63 291.85C355.44 302.82 340.26 352 288 352C235.74 352 220.56 302.82 218.37 291.85L208 240H171.9L111.41 260.17L60.84 336C55.94 343.35 46.01 345.3400000000001 38.65 340.44L25.34 331.56C17.99 326.66 16 316.73 20.9 309.37L74.5 228.96A32.03 32.03 0 0 1 91.01 216.35L160 192H82.06C71.36 192 61.37 186.65 55.44 177.75L2.69 98.62C-2.21 91.27 -0.23 81.33 7.13 76.43L20.44 67.55C27.79 62.65 37.73 64.64 42.63 71.99L90.63 143.99H137.69L76.86 46.66A31.988 31.988 0 0 1 72 29.7V-48C72 -56.84 79.16 -64 88 -64H104C112.84 -64 120 -56.84 120 -48V25.11L194.08 143.64C193.07 129.59 192 115.53 192 101.43C192 48.36 232.76 0 288 0S384 48.36 384 101.43C384 115.53 382.92 129.59 381.92 143.64L456 25.11V-48C456 -56.84 463.16 -64 472 -64H488C496.84 -64 504 -56.84 504 -48V29.71C504 35.71 502.31 41.58 499.14 46.67L438.31 144H485.37L533.37 72C538.27 64.65 548.21 62.66 555.5600000000001 67.56L568.87 76.44C576.23 81.34 578.21 91.27 573.3100000000001 98.62zM288 48C259.29 48 240 75.63 240 101.43C240 137.14 243.55 173 250.55 208.02L265.4100000000001 282.31C266.55 287.4 271.53 304 288 304C304.46 304 309.45 287.39 310.56 282.44L325.44 208.02C332.44 173 335.99 137.15 335.99 101.44C336 75.63 316.71 48 288 48z" />
+    <glyph glyph-name="spider-web"
+      unicode="&#xF719;"
+      horiz-adv-x="576" d=" M569.41 208.5C510.41 270.7 466.72 347.48 443.09 430.53C439.56 442.98 426.9 450.47 414.15 447.25C331.59 426.53 244.4 426.53 161.83 447.25C149.02 450.42 136.45 442.98 132.89 430.53C109.28 347.48 65.59 270.7 6.59 208.5C-2.19 199.23 -2.19 184.74 6.59 175.47C65.59 113.2700000000001 109.28 36.49 132.91 -46.5599999999999C136.44 -58.9999999999999 148.97 -66.39 161.85 -63.28C244.41 -42.5599999999999 331.6 -42.5599999999999 414.17 -63.28C416.14 -63.76 418.11 -64 420.01 -64C430.51 -64 440.0999999999999 -57.09 443.0999999999999 -46.56C466.7299999999999 36.5 510.4099999999999 113.27 569.4199999999998 175.47C578.1999999999998 184.74 578.1999999999998 199.2400000000001 569.4099999999999 208.5zM500.5699999999999 215.98H454.5799999999999C426.8499999999999 247.86 405.75 285.53 392.7099999999999 326.23L415.2 365.43C436.19 311.59 464.9799999999999 261.2 500.5699999999999 215.98zM246.57 215.98H182.5299999999999A362.54800000000006 362.54800000000006 0 0 1 214.3099999999999 272.2L246.5699999999999 215.98zM254.11 299.25C276.6499999999999 296.98 299.3599999999999 296.98 321.8999999999999 299.25L288 240.19L254.11 299.25zM246.57 167.99L214.3199999999999 111.79A362.814 362.814 0 0 1 182.5199999999999 167.99H246.57zM288 143.78L321.9 84.71C310.63 85.84 299.32 86.54 288 86.54S265.37 85.85 254.1 84.71L288 143.78zM329.43 167.99H393.48A365.39899999999994 365.39899999999994 0 0 1 361.68 111.79L329.43 167.99zM329.43 215.98L361.69 272.2A363.01 363.01 0 0 1 393.4700000000001 215.98H329.43zM374.6 391.1L352.81 353.13A289.70000000000005 289.70000000000005 0 0 0 223.19 353.13L201.4 391.1A568.257 568.257 0 0 1 374.6 391.1zM160.81 365.43L183.3 326.23C170.26 285.53 149.15 247.86 121.43 215.98H75.43C111.02 261.2000000000001 139.81 311.5900000000001 160.81 365.43zM75.43 167.99H121.41C149.14 136.14 170.25 98.46 183.3 57.75L160.81 18.55C139.81 72.38 111.02 122.77 75.43 167.99zM201.4 -7.12L223.19 30.85A289.70000000000005 289.70000000000005 0 0 0 352.81 30.85L374.6 -7.12C345.9100000000001 -2.69 317.01 0.27 288 0.27S230.09 -2.7 201.4 -7.12zM415.19 18.55L392.7 57.75C405.75 98.47 426.85 136.14 454.59 167.99H500.57C464.98 122.77 436.19 72.38 415.19 18.55z" />
+    <glyph glyph-name="spider"
+      unicode="&#xF717;"
+      horiz-adv-x="576" d=" M151.17 280.65L181.77 272L186.99 298.12C187.71 301.7000000000001 188.79 305.7000000000001 190.2 309.91L169.91 350.49L193.71 421.88C196.5 430.26 191.98 439.32 183.59 442.12L168.42 447.18C160.04 449.98 150.97 445.45 148.18 437.06L122.29 359.38A32.04 32.04 0 0 1 124.02 334.95L151.17 280.65zM406.09 350.49L385.8 309.9100000000001C387.21 305.7000000000001 388.29 301.7000000000001 389.01 298.12L394.23 272L424.83 280.6500000000001L451.98 334.9500000000001A31.991999999999997 31.991999999999997 0 0 1 453.71 359.38L427.82 437.0600000000001C425.03 445.44 415.96 449.98 407.58 447.18L392.41 442.12C384.03 439.32 379.5 430.26 382.29 421.88L406.09 350.49zM573.31 98.62L520.56 177.74A32.002 32.002 0 0 1 493.9399999999999 191.99H416L484.99 216.35A32.03 32.03 0 0 1 501.5 228.9600000000001L555.1 309.37C560 316.7200000000001 558.01 326.6600000000001 550.66 331.5600000000001L537.35 340.4400000000001C530 345.3400000000001 520.0600000000001 343.35 515.16 336L464.6 260.17L404.1 240H368L357.63 291.85C355.44 302.82 340.26 352 288 352C235.74 352 220.56 302.82 218.37 291.85L208 240H171.9L111.41 260.17L60.84 336C55.94 343.35 46.01 345.3400000000001 38.65 340.44L25.34 331.56C17.99 326.66 16 316.73 20.9 309.37L74.5 228.96A32.03 32.03 0 0 1 91.01 216.35L160 192H82.06C71.36 192 61.37 186.65 55.44 177.75L2.69 98.62C-2.21 91.27 -0.23 81.33 7.13 76.43L20.44 67.55C27.79 62.65 37.73 64.64 42.63 71.99L90.63 143.99H137.69L76.86 46.66A31.988 31.988 0 0 1 72 29.7V-48C72 -56.84 79.16 -64 88 -64H104C112.84 -64 120 -56.84 120 -48V25.11L194.08 143.64C193.07 129.59 192 115.53 192 101.43C192 48.36 232.76 0 288 0S384 48.36 384 101.43C384 115.53 382.92 129.59 381.92 143.64L456 25.11V-48C456 -56.84 463.16 -64 472 -64H488C496.84 -64 504 -56.84 504 -48V29.71C504 35.71 502.31 41.58 499.14 46.67L438.31 144H485.37L533.37 72C538.27 64.65 548.21 62.66 555.5600000000001 67.56L568.87 76.44C576.23 81.34 578.21 91.27 573.3100000000001 98.62zM288 48C259.29 48 240 75.63 240 101.43C240 137.14 243.55 173 250.55 208.02L265.4100000000001 282.31C266.55 287.4 271.53 304 288 304C304.46 304 309.45 287.39 310.56 282.44L325.44 208.02C332.44 173 335.99 137.15 335.99 101.44C336 75.63 316.71 48 288 48z" />
+    <glyph glyph-name="spinner-third"
+      unicode="&#xF3F4;"
+      horiz-adv-x="512" d=" M460.116 74.154L439.293 86.176C433.752 89.375 431.753 96.335 434.63 102.05C464.767 161.936 462.973 233.702 429.244 291.996C395.603 350.39 334.348 387.829 267.417 391.6720000000001C261.028 392.039 256 397.249 256 403.648V427.691C256 434.5950000000001 261.808 440.028 268.703 439.673C352.259 435.367 428.866 388.809 470.813 315.996C512.876 243.3 514.8919999999999 153.68 476.844 79.164C473.704 73.016 466.094 70.703 460.116 74.154z" />
+    <glyph glyph-name="spinner"
+      unicode="&#xF110;"
+      horiz-adv-x="512" d=" M296 400C296 377.909 278.091 360 256 360S216 377.909 216 400S233.909 440 256 440S296 422.091 296 400zM256 24C233.909 24 216 6.091 216 -16S233.909 -56 256 -56S296 -38.091 296 -16S278.091 24 256 24zM504 192C504 214.091 486.091 232 464 232S424 214.091 424 192S441.909 152 464 152S504 169.909 504 192zM88 192C88 214.091 70.091 232 48 232S8 214.091 8 192S25.909 152 48 152S88 169.909 88 192zM108.922 379.078C86.831 379.078 68.922 361.169 68.922 339.078S86.831 299.078 108.922 299.078S148.922 316.987 148.922 339.078C148.922 361.17 131.013 379.078 108.922 379.078zM403.078 84.922C380.987 84.922 363.078 67.013 363.078 44.922S380.987 4.922 403.078 4.922C425.17 4.922 443.078 22.831 443.078 44.922S425.17 84.922 403.078 84.922zM108.922 84.922C86.831 84.922 68.922 67.013 68.922 44.922S86.831 4.922 108.922 4.922S148.922 22.831 148.922 44.922S131.013 84.922 108.922 84.922z" />
+    <glyph glyph-name="splotch"
+      unicode="&#xF5BC;"
+      horiz-adv-x="512" d=" M459.67 268.37L398.92 288.86C389.23 292.14 381.92 298.9100000000001 379.89 306.56L365.39 360.53C358.55 385.9700000000001 337.7 405.58 309.64 412.95C278.77 421.01 246.55 412.78 225.42 391.29L183.61 348.74C176.61 341.5800000000001 164.99 337.7200000000001 153.45 338.6L88.3 343.62C54.74 346.04 23.27 330.42 8.4 303.41C-4.47 280.03 -2.47 253.09 13.74 231.36L48.64 184.5800000000001C53.26 178.3900000000001 53.98 171.42 50.67 164.91L24.92 114.03C13.08 90.67 15.67 64.18 31.89 43.1800000000001C51.14 18.1900000000001 84.89 6.71 117.98 13.8000000000001L181.38 27.4400000000001C192.72 29.9400000000001 205.16 27.4900000000001 213.75 21.1600000000001L263 -15.28C277.87 -26.3099999999999 296.28 -32 314.87 -32C327.56 -32 340.31 -29.36 352.12 -23.97C377.5300000000001 -12.3800000000001 393.87 9.8 395.87 35.38L400.12 90.62C400.68 98.06 406.15 105.09 414.7800000000001 109.42L470.97 137.7700000000001C498.1900000000001 151.5100000000001 513.84 177.4 511.84 205.3200000000001C509.8 234.0400000000001 489.8 258.2200000000001 459.67 268.3700000000001zM449.3300000000001 180.62L393.1400000000001 152.27C369.3900000000001 140.29 354.11 118.61 352.2400000000001 94.3L347.9900000000001 39.0599999999999C347.1200000000001 27.68 336.6500000000001 21.73 332.1800000000001 19.6999999999999C321.9900000000001 15.0699999999999 305.1800000000001 13.1999999999999 291.5600000000001 23.2799999999999L242.3400000000001 59.7299999999999C227.6800000000001 70.5899999999999 209.1500000000001 76.3999999999999 190.3100000000001 76.3999999999999C183.9700000000001 76.3999999999999 177.5600000000001 75.7299999999999 171.2800000000001 74.3799999999999L107.8800000000001 60.74C90.8800000000001 56.99 76.4800000000001 63.97 69.9100000000001 72.49C65.0400000000001 78.8199999999999 64.2900000000001 85.5099999999999 67.7500000000001 92.3299999999999L93.5 143.2C104.97 165.78 102.53 192.64 87.13 213.3L52.23 260.08C47.29 266.67 46.7 273.47 50.45 280.27C54.89 288.29 66.48 297.02 84.64 295.79L149.79 290.77C175.04 288.69 200.91 297.86 217.88 315.12L259.69 357.68C268.56 366.73 283.38 370.21 297.44 366.54C308.6600000000001 363.59 316.7200000000001 356.7 319.03 348.07L333.53 294.13C339.78 270.82 358.5 251.86 383.62 243.39L444.37 222.9C455.99 218.98 463.31 211.12 463.96 201.9C464.58 193.37 459.24 185.61 449.33 180.62z" />
+    <glyph glyph-name="spray-can"
+      unicode="&#xF5BD;"
+      horiz-adv-x="512" d=" M480 320C462.33 320 448 305.67 448 288S462.33 256 480 256S512 270.3300000000001 512 288S497.67 320 480 320zM480 224C462.33 224 448 209.67 448 192S462.33 160 480 160S512 174.33 512 192S497.67 224 480 224zM480 352C497.67 352 512 366.33 512 384S497.67 416 480 416S448 401.67 448 384S462.33 352 480 352zM384 320C366.33 320 352 305.67 352 288S366.33 256 384 256S416 270.3300000000001 416 288S401.67 320 384 320zM384 416C366.33 416 352 401.67 352 384S366.33 352 384 352S416 366.33 416 384S401.67 416 384 416zM288 416C270.33 416 256 401.67 256 384S270.33 352 288 352S320 366.33 320 384S305.67 416 288 416zM224 320V416C224 433.67 209.67 448 192 448H128C110.33 448 96 433.67 96 416V320C42.98 320 0 277.02 0 224V-32C0 -49.67 14.33 -64 32 -64H288C305.67 -64 320 -49.67 320 -32V224C320 277.02 277.02 320 224 320zM144 400H176V320H144V400zM272 -16H48V224C48 250.47 69.53 272 96 272H224C250.47 272 272 250.47 272 224V-16zM160 192C124.65 192 96 163.35 96 128S124.65 64 160 64S224 92.65 224 128S195.35 192 160 192z" />
+    <glyph glyph-name="square-full"
+      unicode="&#xF45C;"
+      horiz-adv-x="512" d=" M0 448V-64H512V448H0zM464 -16H48V400H464V-16z" />
+    <glyph glyph-name="square-root-alt"
+      unicode="&#xF698;"
+      horiz-adv-x="512" d=" M507.45 208.46L496.46 219.45C490.39 225.52 480.55 225.52 474.48 219.45L432 176.97L389.53 219.44C383.46 225.51 373.62 225.51 367.55 219.44L356.56 208.45C350.49 202.38 350.49 192.54 356.56 186.47L399.03 144L356.56 101.53C350.49 95.46 350.49 85.62 356.56 79.55L367.55 68.56C373.62 62.49 383.46 62.49 389.53 68.56L432 111.03L474.47 68.56C480.54 62.49 490.3800000000001 62.49 496.45 68.56L507.4400000000001 79.55C513.5100000000001 85.62 513.5100000000001 95.46 507.4400000000001 101.53L464.97 144L507.4400000000001 186.47C513.5200000000001 192.54 513.5200000000001 202.39 507.45 208.46zM496 416H316.59C298.09 416 282.09 403.42 277.68 385.38L180.48 36.14C178.65 28.96 168.89 27.91 165.57 34.54L89.93 185.87A40.034 40.034 0 0 1 54.12 208H16C7.16 208 0 200.84 0 192V176C0 167.16 7.16 160 16 160H49.19L132.25 -6.11C140.19 -22.08 156.22 -32 174.06 -32C195.75 -32 214.47 -17.28 219.56 3.8L322.88 368H496C504.84 368 512 375.16 512 384V400C512 408.8400000000001 504.84 416 496 416z" />
+    <glyph glyph-name="square-root"
+      unicode="&#xF697;"
+      horiz-adv-x="512" d=" M174.06 -32C156.22 -32 140.18 -22.08 132.25 -6.11L49.19 160H16C7.16 160 0 167.16 0 176V192C0 200.84 7.16 208 16 208H54.12C69.28 208 83.15 199.43 89.93 185.87L165.58 34.54C168.89 27.91 178.66 28.96 180.49 36.14L277.68 385.38C282.09 403.42 298.09 416 316.59 416H496C504.84 416 512 408.8400000000001 512 400V384C512 375.16 504.84 368 496 368H322.88L219.56 3.8C214.47 -17.28 195.75 -32 174.06 -32z" />
+    <glyph glyph-name="square"
+      unicode="&#xF0C8;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM394 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H394C397.3 368 400 365.3 400 362V22C400 18.7 397.3 16 394 16z" />
+    <glyph glyph-name="squirrel"
+      unicode="&#xF71A;"
+      horiz-adv-x="512" d=" M480 192C497.67 192 512 206.33 512 224V256C512 314.44 474.91 361.88 424 373.3400000000001V400C424 413.25 413.25 424 400 424C344.58 424 311.27 381.24 293.44 350.77C265.04 405.04 206.07 448 147.72 448C66.28 448 0 381.73 0 300.27C0 231.24 47.59 173.11 111.69 156.97L102.88 138.67C84.24 89.76 91.33 38.55 125.51 -4.14C156.89 -43.34 206.05 -64 256.26 -64H496C504.22 -64 511.57 -57.78 511.96 -49.57C512.84 -31.18 498.19 -16 480 -16H450.15C462.87 2.38 472 24.48 472 48C472 99.33 441.94 137.67 396.16 148.75L404.04 192H480zM353.3 104C373.8 104 394.13 96.87 408.61 82.37C450.44 40.48 395.2100000000001 -10.67 381.64 -16H242.44C186.41 -16 140.82 29.59 140.82 85.64C140.82 97.42 143.16 109.52 146.94 119.69L185.97 200.53H151.19C100.51 200.53 55.29 236.87 48.85 287.15C41.05 347.9700000000001 88.4 400 147.72 400C202.63 400 262.94 339.7 262.94 284.8H263.38L209.05 154.12C205.66 145.96 209.52 136.6 217.68 133.2L232.44 127.06C240.6 123.66 249.97 127.53 253.36 135.69L325.4700000000001 309.27C341.4700000000001 341.25 357.9100000000001 361.2200000000001 376 370.29V328H400C435.88 328 464 296.38 464 256V240H363.9700000000001L339.25 104H353.3zM400 272C408.84 272 416 279.16 416 288S408.84 304 400 304S384 296.8400000000001 384 288S391.1600000000001 272 400 272z" />
+    <glyph glyph-name="staff"
+      unicode="&#xF71B;"
+      horiz-adv-x="512" d=" M448 448H371.77A64 64 0 0 1 314.53 412.62L298.53 380.62C294.58 372.7200000000001 297.78 363.11 305.68 359.16L334.31 344.85C342.2099999999999 340.9 351.82 344.1 355.78 352L371.78 384H448V280.14L279.0800000000001 231.86A159.974 159.974 0 0 1 209.93 191.17L146.75 128H112C103.16 128 96 120.84 96 112V77.25L4.69 -14.06C-1.56 -20.31 -1.56 -30.44 4.69 -36.69L27.31 -59.31C33.56 -65.5599999999999 43.69 -65.5599999999999 49.94 -59.31L255.15 145.9A96.027 96.027 0 0 0 296.69 170.34L367 190.44L402.14 170.15C409.79 165.73 419.58 168.35 424 176.01L445.24 212.8L465.59 218.62C493.0600000000001 226.47 512 251.58 512 280.15V384C512 419.35 483.35 448 448 448z" />
+    <glyph glyph-name="stamp"
+      unicode="&#xF5BF;"
+      horiz-adv-x="512" d=" M416 192H349.44C333.18 192 320 205.18 320 221.44V230.9C320 258.27 328.88 284.32 341.46 308.63C350.57 326.24 354.36 347.01 350.51 369.05C343.74 407.83 312.04 439.75 273.25 446.5C267.4100000000001 447.51 261.65 448 256 448C202.98 448 160 405.02 160 352C160 337.8400000000001 163.12 324.4600000000001 168.68 312.43C182.02 283.57 192 253.29 192 221.5V221.44C192 205.18 178.82 192 162.56 192H96C42.98 192 0 149.02 0 96V48C0 39.16 7.16 32 16 32H32V-32C32 -49.67 46.33 -64 64 -64H448C465.67 -64 480 -49.67 480 -32V32H496C504.84 32 512 39.16 512 48V96C512 149.02 469.02 192 416 192zM48 96C48 122.47 69.53 144 96 144H162.56C205.26 144 240 178.74 240 221.5C240 256.32 231.18 291.61 212.26 332.56C209.43 338.68 208 345.2200000000001 208 352C208 378.4700000000001 229.53 400 256 400C258.96 400 262 399.73 265.02 399.21C283.84 395.93 299.91 379.78 303.22 360.79C305.09 350.08 303.61 339.94 298.82 330.68C280.78 295.79 272 263.15 272 230.9V221.44C272 178.74 306.74 144 349.44 144H416C442.4700000000001 144 464 122.47 464 96V80H48V96zM432 -16H80V32H432V-16z" />
+    <glyph glyph-name="star-and-crescent"
+      unicode="&#xF699;"
+      horiz-adv-x="512" d=" M340.4700000000001 -18.36C339.0200000000001 -18.36 333.5800000000001 -18.82 331.29 -18.82C215.04 -18.82 120.47 75.75 120.47 192S215.04 402.82 331.29 402.82C333.61 402.82 338.99 402.36 340.4700000000001 402.36C347.6 402.36 353.8 407.39 355.2200000000001 414.43C356.68 421.68 352.67 428.92 345.75 431.52C316.58 442.46 286.39 448 256 448C114.84 448 0 333.16 0 192S114.84 -64 256 -64C286.23 -64 316.28 -58.51 345.32 -47.68C351.28 -45.66 355.6 -40.04 355.6 -33.42C355.6 -25.33 349.21 -18.36 340.47 -18.36zM48 192C48 262.16 82.92 324.3300000000001 136.3 362.02C96.57 316.51 72.47 257.02 72.47 192C72.47 126.98 96.57 67.49 136.3 21.98C82.93 59.67 48 121.84 48 192zM503.46 234.14L427.08 245.24L392.92 314.45C391.09 318.15 387.54 320 383.99 320S376.89 318.15 375.06 314.45L340.9 245.24L264.52 234.14C256.35 232.96 253.09 222.92 259 217.15L314.27 163.28L301.22 87.21C300.11 80.77 305.23 75.55 311.03 75.55C312.56 75.55 314.14 75.91 315.67 76.72L384 112.63L452.31 76.72C453.84 75.92 455.42 75.55 456.95 75.55C462.75 75.55 467.87 80.78 466.76 87.21L453.71 163.28L508.98 217.15C514.89 222.9200000000001 511.6299999999999 232.9600000000001 503.46 234.1400000000001zM420.21 197.66L402.14 180.05L406.41 155.18L406.43 155.08L406.34 155.13L384 166.86L361.6600000000001 155.12L361.5700000000001 155.08L361.5900000000001 155.18L365.86 180.05L347.79 197.66L347.7200000000001 197.73L347.8200000000001 197.74L372.7900000000001 201.37L383.96 224L384 224.09L384.04 224L395.2100000000001 201.37L420.1800000000001 197.74L420.2800000000001 197.73L420.2100000000001 197.66z" />
+    <glyph glyph-name="star-christmas"
+      unicode="&#xF7D4;"
+      horiz-adv-x="512" d=" M487.7 223.1L365.9 253.6L426.6 329C434.4 338.8 433.7 352.2 424.9 361C416.1 369.8 402.7 370.4 392.9 362.7L317.4 302.3L287.1 423.7000000000001C283.5 438 270.7 448 256 448H255.9C241.1 448 228.4 438 224.9 423.7L194.4 301.8L119 362.5C109.2 370.3 95.8 369.6 87 360.8C78.2 352 77.5 338.6 85.3 328.8L145.7 253.3L24.3 223.1C10 219.5 0 206.7 0 192C0 177.3 10 164.5 24.3 160.9L146.1 130.4L85.4 55C77.6 45.2 78.3 31.8 87.1 23C91.8 18.3 97.9 15.9 103.9 15.9C109.2 15.9 114.5 17.7 119 21.3L194.5 81.6999999999999L224.9 -39.8000000000001C228.4 -54.1000000000001 241.2 -64.1 255.9 -64.1H256C270.7 -64.1 283.5 -54.1 287.1 -39.8L317.6 82L393 21.3C397.5 17.7 402.8 15.9 408.1 15.9C414.2000000000001 15.9 420.2000000000001 18.3 424.9000000000001 23.0000000000001C433.7000000000001 31.8000000000001 434.4000000000001 45.2 426.6 55.0000000000001L366.2000000000001 130.5000000000001L487.7 160.9C502 164.5 512 177.3 512 192C512 206.7 502 219.5 487.7 223.1zM287.6 160.4L256 33.9L224.4 160.4L97.9 192L224.4 223.6L256 350.1L287.6 223.6L414.1 192L287.6 160.4z" />
+    <glyph glyph-name="star-exclamation"
+      unicode="&#xF2F3;"
+      horiz-adv-x="576" d=" M252.5 263.4C252.1 268 255.8 272 260.5 272H315.6C320.3 272 323.9000000000001 268 323.6 263.4L316.8 175.4C316.5 171.2 313 168 308.8 168H267.3C263.1 168 259.6 171.2 259.3 175.4L252.5 263.4zM288 152C265.9 152 248 134.1 248 112S265.9 72 288 72S328 89.9 328 112S310.1 152 288 152zM545.9 222L440.1 119L465.1 -26.5C469.6 -52.7 442 -72.5 418.7000000000001 -60.2L288 8.4L157.3 -60.3C133.9 -72.6 106.4 -52.7 110.9 -26.6L135.9 118.9L30.1 222C11.1 240.5 21.6 272.8 47.8 276.6L194 297.8L259.3 430.2000000000001C271.1 454 305 453.9 316.7 430.2000000000001L382 297.8L528.1 276.6C554.3000000000001 272.8 564.8000000000001 240.5000000000001 545.9 222zM489.1 233.7L350.1 253.9L288 379.9L225.8 254L86.8 233.8L187.4 135.8L163.7 -2.6L288 62.7L412.3 -2.7L388.6 135.6999999999999L489.1 233.7z" />
+    <glyph glyph-name="star-half-alt"
+      unicode="&#xF5C0;"
+      horiz-adv-x="536" d=" M390.6 8.39L382.6600000000001 2.51L360.2700000000001 -39.99L398.9400000000001 -60.27C403.6400000000001 -62.72 408.6200000000001 -63.97 413.7700000000001 -63.97C423.1800000000001 -63.97 432.4500000000001 -59.59 438.5100000000001 -52.38C443.35 -46.63 445.9200000000001 -39.65 445.9200000000001 -32.18L438.0100000000001 16.51L390.6 8.39zM278.98 56.4C272.2100000000001 59.94 264.06 60.61 256.8 56.8L143.48 -2.64L167.31 135.67L66.51 233.69L205.79 253.97L267.99 379.8499999999999L278.01 359.56L321.16 380.78L296.75 430.19C291.29 441.17 280.24 448 267.92 448C255.46 448 244.73 441.33 239.24 430.19L173.83 297.81L27.43 276.51C15.22 274.71 5.32 266.32 1.63 254.78C-2.21 243.09 0.89 230.5 9.72 221.92L115.62 118.92L90.57 -26.58C88.96 -36.03 91.43 -45.22 97.51 -52.41C103.63 -59.6799999999999 112.85 -63.9999999999999 122.2 -63.9999999999999C127.4 -63.9999999999999 132.45 -62.6999999999999 137.06 -60.2499999999999L268.01 8.4300000000001L313.59 -15.48L335.98 27.02L279.21 56.8000000000001L278.98 56.4000000000001zM330.2100000000001 253.97L406.1600000000001 242.91L413.11 290.41L362.1500000000001 297.82L339.3800000000001 343.91L296.2300000000001 322.69L330.2100000000001 253.97zM534.4300000000001 254.59C530.6700000000001 266.32 520.7600000000001 274.71 508.5400000000001 276.51L465.2200000000001 282.82L458.2700000000001 235.32L461.4800000000001 225.9L495.0500000000001 191.52L526.38 222C532.6 228.09 536.01 236.14 536.01 244.66L534.43 254.59zM368.68 135.67L381.69 60.15L429.1 68.27L420.38 118.91L457.24 154.7700000000001L423.67 189.15L368.68 135.67z" />
+    <glyph glyph-name="star-half"
+      unicode="&#xF089;"
+      horiz-adv-x="576" d=" M288 62.7L163.7 -2.7L187.4 135.6999999999999L86.8 233.7L225.8 253.8999999999999L288 379.8999999999999V448C276.6 448 265.2 442.1 259.3 430.2L194 297.8L47.9 276.6C21.7 272.8 11.2 240.5 30.2 222L135.9 119L110.9 -26.5C106.4 -52.6 133.9 -72.5 157.3 -60.2L288 8.4V62.7z" />
+    <glyph glyph-name="star-of-david"
+      unicode="&#xF69A;"
+      horiz-adv-x="464" d=" M405.68 192L458.89 281.39C473.3 305.6 455.48 336 426.88 336H319.96L264.01 429.98C256.86 441.99 244.43 448 232 448S207.14 441.99 199.99 429.98L144.04 336H37.11C8.51 336 -9.31 305.6 5.1 281.39L58.32 192L5.11 102.61C-9.31 78.4 8.51 48 37.11 48H144.04L199.99 -45.98C207.14 -57.99 219.57 -64 232 -64S256.86 -57.99 264.01 -45.98L319.96 48H426.89C455.49 48 473.31 78.4 458.9 102.61L405.68 192zM406.9700000000001 288L377.75 238.92L348.53 288H406.97zM349.8200000000001 192L292.6700000000001 96H171.33L114.18 192L171.33 288H292.67L349.82 192zM232 389.92L264.1 336H199.9L232 389.92zM57.03 288H115.47L86.25 238.92L57.03 288zM57.03 96L86.25 145.08L115.47 96H57.03zM232 -5.92L199.9 48H264.1L232 -5.92zM348.53 96L377.75 145.08L406.9700000000001 96H348.5300000000001z" />
+    <glyph glyph-name="star-of-life"
+      unicode="&#xF621;"
+      horiz-adv-x="512" d=" M288 -64H224C201.94 -64 184 -46.06 184 -24V68.36L93.07 21.53C74.01 10.73 49.42 17.26 38.26 36.03L5.55 91.52C0.05 100.83 -1.42 111.66 1.39 122.05C4.2 132.49 10.98 141.16 20.45 146.49L101.04 192L20.39 237.55C10.98 242.85 4.2 251.52 1.39 261.9600000000001C-1.42 272.35 0.05 283.18 5.51 292.4600000000001L38.26 347.93C49.42 366.74 73.98 373.24 93.07 362.4600000000001L184 315.65V408C184 430.06 201.94 448 224 448H288C310.06 448 328 430.06 328 408V315.64L418.93 362.47C438.02 373.25 462.58 366.75 473.74 347.97L506.46 292.49C511.96 283.18 513.4300000000001 272.35 510.6200000000001 261.96C507.8100000000001 251.52 501.0300000000001 242.85 491.5600000000001 237.52L410.96 192L491.55 146.48C501.02 141.15 507.8 132.48 510.61 122.04C513.42 111.65 511.9499999999999 100.8200000000001 506.49 91.54L473.74 36.0700000000001C462.6199999999999 17.26 438.06 10.7300000000001 418.93 21.5400000000001L328 68.35V-24C327.99 -46.06 310.06 -64 288 -64zM232 -16H280V150.58L436.2100000000001 66.91L460.86 108.6899999999999L305.34 192L460.86 275.31L436.2100000000001 317.0900000000001L280 233.42V400H232V233.42L75.8 317.0900000000001L51.15 275.31L206.66 192L51.14 108.69L75.79 66.91L232 150.58V-16z" />
+    <glyph glyph-name="star"
+      unicode="&#xF005;"
+      horiz-adv-x="576" d=" M528.1 276.5L382 297.8L316.7 430.2C305 453.8 271.1 454.1 259.3 430.2L194 297.8L47.9 276.5C21.7 272.7 11.2 240.4 30.2 221.9L135.9 118.9L110.9 -26.6C106.4 -52.9 134.1 -72.6 157.3 -60.3L288 8.4L418.7 -60.3C441.9 -72.5 469.6 -52.9 465.1 -26.6L440.1 118.9L545.8 221.9C564.8 240.4 554.3 272.7 528.0999999999999 276.5zM388.6 135.7L412.3 -2.7L288 62.6L163.7 -2.7L187.4 135.7000000000001L86.8 233.7000000000001L225.8 253.9000000000001L288 379.9000000000001L350.2 253.9000000000001L489.2 233.7000000000001L388.6 135.7000000000001z" />
+    <glyph glyph-name="stars"
+      unicode="&#xF762;"
+      horiz-adv-x="512" d=" M364.3 180.7L259.5 196L212.6 291.2C208.4 299.7 200.2 304 191.9 304C183.7 304 175.6 299.8 171.4 291.2L124.5 196L19.7 180.7C0.9 178 -6.7 154.8 7 141.5L82.9 67.5L64.9 -37.1C62.3 -52 74.2 -64 87.5 -64C91 -64 94.7 -63.2 98.2 -61.3L192 -11.9L285.8 -61.3C289.3 -63.1 292.9000000000001 -64 296.4000000000001 -64C309.7000000000001 -64 321.6 -52.1 319.1 -37.1L301.2000000000001 67.5L377.1 141.5C390.7000000000001 154.8 383.1 178 364.3 180.7zM267.6 101.8L249.5000000000001 84.1999999999999L253.8000000000001 59.3L263.2000000000001 4.8L214.3000000000001 30.4999999999999L192 42.3L169.6 30.4999999999999L120.7 4.8L130.1 59.3L134.4 84.1999999999999L116.3000000000001 101.8L76.6 140.5L131.4 148.5L156.4 152.1L167.6 174.7L192 224.3L216.4 174.7L227.6 152.1L252.6 148.5L307.4000000000001 140.5L267.6 101.8zM336 288L362.7 341.3L416 368L362.7 394.7L336 448L309.3 394.7L256 368L309.3 341.3L336 288zM480 256L464 288L448 256L416 240L448 224L464 192L480 224L512 240L480 256z" />
+    <glyph glyph-name="steering-wheel"
+      unicode="&#xF622;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 392C350.14 392 434.51 314.98 446.42 216H361.77C348.92 248.71 317.22 272 280 272H216C178.78 272 147.08 248.71 134.23 216H49.58C61.5 314.98 145.86 392 248 392zM248 121.95L177 192.93C181.06 210.7 197 223.99 216 223.99H280C299 223.99 314.94 210.69 319 192.93L248 121.95zM49.58 168H134.06L224 78.07V-6.42C132.9 4.55 60.55 76.9 49.58 168zM272 -6.42V78.07L361.94 168H446.42C435.46 76.9 363.1 4.55 272 -6.42z" />
+    <glyph glyph-name="step-backward"
+      unicode="&#xF048;"
+      horiz-adv-x="448" d=" M76 -32H100C106.6 -32 112 -26.6 112 -20V163L331.5 -24.6C352.1 -41.8 384 -27.4 384 0V384C384 411.4 352.1 425.8 331.5 408.6L112 219.9V404C112 410.6 106.6 416 100 416H76C69.4 416 64 410.6 64 404V-20C64 -26.6 69.4 -32 76 -32zM336 349.5V34.4L149.3 191.5L336 349.5z" />
+    <glyph glyph-name="step-forward"
+      unicode="&#xF051;"
+      horiz-adv-x="448" d=" M372 416H348C341.4 416 336 410.6 336 404V221L116.5 408.6C95.9 425.7 64 411.4 64 384V0C64 -27.4 95.9 -41.8 116.5 -24.6L336 164.1V-20C336 -26.6 341.4 -32 348 -32H372C378.6 -32 384 -26.6 384 -20V404C384 410.6 378.6 416 372 416zM112 34.5V349.6L298.7 192.5L112 34.5z" />
+    <glyph glyph-name="stethoscope"
+      unicode="&#xF0F1;"
+      horiz-adv-x="512" d=" M120 114V96C120 7.8 195.4 -64 288 -64S456 7.8 456 96V195.7C488.3 205.8 511.7 235.9 512 271.4C512.3 314.8 477.4 351 433.9 352C388.9 353 352 316.8 352 272C352 236.2 375.5 205.9 408 195.7V96C408 34.2 354.2 -16 288 -16S168 34.2 168 96V114C236 125.5 288 184.8 288 256V420.5C288 426.1 284.1 431 278.6 432.2L208.9 447.7C202.4 449.1 196 445.1 194.6 438.6L189.4 415.2C188 408.7 192 402.3 198.5 400.9L240 391.7V257.3C240 204.4 197.8 160.6 144.9 160.1C91.6 159.5 48 202.7 48 256V391.6L89.5 400.8C96 402.2 100 408.6 98.6 415.1L93.4 438.6C92 445.1 85.5 449.1 79.1 447.7L9.4 432.2C3.9 431 0 426.1 0 420.5V256C0 184.8 52 125.5 120 114zM432 304C449.6 304 464 289.6 464 272S449.6 240 432 240S400 254.4 400 272S414.4 304 432 304z" />
+    <glyph glyph-name="sticky-note"
+      unicode="&#xF249;"
+      horiz-adv-x="448" d=" M448 99.894V368C448 394.51 426.51 416 400 416H48C21.49 416 0 394.51 0 368V16.012C0 -10.498 21.49 -31.988 48 -31.988H316.118A48 48 0 0 1 350.059 -17.929L433.941 65.953A48 48 0 0 1 448 99.894zM320 19.894V96.012H396.118L320 19.894zM400 368V144.012H296C282.745 144.012 272 133.267 272 120.012V16.012H48V368H400z" />
+    <glyph glyph-name="stocking"
+      unicode="&#xF7D5;"
+      horiz-adv-x="384" d=" M368 448H80C71.2 448 64 440.8 64 432V368C64 359.2 71.2 352 80 352H96V196.5L57 170.5C-1.8 131.3 -17.7 51.8 21.5 -7C46.2 -44 86.7 -64 128.1 -64C152.5 -64 177.2 -57 199 -42.5L280.7 12C325.3 41.7 351.9 91.5 351.9 145.1V352H367.9C376.7 352 383.9 359.2 383.9 368V432C384 440.8 376.8 448 368 448zM304 145.1C304 107.6 285.4 72.7000000000001 254.1 51.9L172.3 -2.6C118.6 -38.4 72.5 3.0000000000001 61.4 19.6C36.9 56.4 46.8 106 83.6 130.6L144 170.8V352H304V145.1z" />
+    <glyph glyph-name="stomach"
+      unicode="&#xF623;"
+      horiz-adv-x="512" d=" M397.9100000000001 351.25C341.63 357.26 292.2 326.31 269.45 280H256C216.24 280 184 312.24 184 352V432C184 440.84 176.84 448 168 448H152C143.16 448 136 440.84 136 432V352C136 285.73 189.73 232 256 232H256.81C256.64 229.3 256 226.74 256 224V160C256 120.24 223.76 88 184 88H120C53.73 88 0 34.27 0 -32V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V-32C48 -31.6 48 -31.21 48.01 -30.82C48.84 20.56 112.1 45.98 151.99 13.58L189.23 -16.67C217.49 -39.63 250.89 -56.39 286.9100000000001 -61.76C407.75 -79.79 512 13.77 512 131.22V218.4C512 284.77 463.91 344.2100000000001 397.91 351.25zM316.78 -16C283.09 -16 250.12 -4.3 223.94 16.95L194.97 40.5C241.57 44.74 280.36 75.8 296.21 118L296.47 117.31C320.78 126.43 350.85 122.95 369.53 108.84C389.62 93.67 416.22 85.7 443.06 85.7C447.53 85.7 451.97 86.41 456.42 86.86C437.4700000000001 27.45 382.4100000000001 -16 316.78 -16zM464 136.89C441.26 130.86 415.31 134.4 398.4700000000001 147.16C373.11 166.31 337.4700000000001 173.77 304 168.44V224C304 268.11 339.88 304 384 304S464 268.11 464 224V136.89z" />
+    <glyph glyph-name="stop-circle"
+      unicode="&#xF28D;"
+      horiz-adv-x="512" d=" M504 192C504 329 393 440 256 440S8 329 8 192S119 -56 256 -56S504 55 504 192zM56 192C56 302.5 145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8S56 81.5 56 192zM352 272V112C352 103.2 344.8 96 336 96H176C167.2 96 160 103.2 160 112V272C160 280.8 167.2 288 176 288H336C344.8 288 352 280.8 352 272z" />
+    <glyph glyph-name="stop"
+      unicode="&#xF04D;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM394 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H394C397.3 368 400 365.3 400 362V22C400 18.7 397.3 16 394 16z" />
+    <glyph glyph-name="stopwatch"
+      unicode="&#xF2F2;"
+      horiz-adv-x="448" d=" M393.9 264L416.5 286.6C421.2 291.3 421.2 298.9 416.5 303.6L399.5 320.6C394.8 325.3 387.2 325.3 382.5 320.6L361.8 299.9C330.7 327.4 291.4 345.8 248 350.7V400H276C282.6 400 288 405.4 288 412V436C288 442.6 282.6 448 276 448H172C165.4 448 160 442.6 160 436V412C160 405.4 165.4 400 172 400H200V350.6C96.4 338.7 16 250.8 16 144C16 29.1 109.1 -64 224 -64S432 29.1 432 144C432 188.7 417.9 230.1 393.9 264zM224 -16C135.6 -16 64 55.6 64 144S135.6 304 224 304S384 232.4 384 144S312.4 -16 224 -16zM236 96H212C205.4 96 200 101.4 200 108V244C200 250.6 205.4 256 212 256H236C242.6 256 248 250.6 248 244V108C248 101.4 242.6 96 236 96z" />
+    <glyph glyph-name="store-alt"
+      unicode="&#xF54F;"
+      horiz-adv-x="640" d=" M635.7 271.9L544.3000000000001 431.9C538.6 441.8 528 448 516.5 448H123.5C112 448 101.4 441.8 95.7 431.9L4.3 271.9C-7.9 250.5 7.4 224 32 224H64V-28.8C64 -48.2 78.3 -64 96 -64H352C369.7 -64 384 -48.2 384 -28.8V224H528V-48C528 -56.8 535.2 -64 544 -64H560C568.8 -64 576 -56.8 576 -48V224H608C632.6 224 647.9 250.5 635.7 271.9zM336 -16H112V79.8H336V-16zM336 127.8H112V224H336V127.8zM59.6 272L132.7 400H507.2L580.3 272H59.6z" />
+    <glyph glyph-name="store"
+      unicode="&#xF54E;"
+      horiz-adv-x="616" d=" M602 329.4L537.1 433C531.3 442.3 521 448 510 448H106C95 448 84.7 442.3 78.9 433L14 329.4C-15.6 282.2 4 218.8 52 198.6V-28.8C52 -48.2 66.3 -64 84 -64H532C549.7 -64 564 -48.2 564 -28.8V198.6C612 218.8 631.6 282.2 602 329.4zM516 -16H100V80H516V-16zM516 128.2H100V192.9C124 196.2 145.1 208.1 160.3 225.1C178.3 205 204.6 192 234.1 192C263.7000000000001 192 289.9000000000001 205 307.9000000000001 225.0999999999999C325.9000000000001 205 352.2000000000001 192 381.7000000000001 192C411.3000000000001 192 437.5000000000001 205 455.5000000000001 225.0999999999999C470.8000000000001 208.0999999999999 491.8000000000001 196.1999999999999 515.8000000000001 192.8999999999999V128.1999999999999zM563.7 261.2C560.5 254.4 552.8000000000001 242.6 536.7 240.4C534.3000000000001 240.1 531.9000000000001 239.9 529.5 239.9C514.8 239.9 501.3 246 491.4 257.1L455.7 297L420 257.2C410.1 246.1 396.5 240 381.9 240S353.7 246.1 343.8 257.2L308 297L272.3 257.2C262.4000000000001 246.1 248.8 240 234.2 240C219.5 240 206 246.1 196.1 257.2L160.3 297L124.6 257.2C114.7 246.1 101.1 240 86.5 240C84 240 81.6 240.2 79.3 240.5C63.3 242.7 55.5 254.4 52.3 261.3C47.3 272.1 45.2 288.9 54.6 303.9L114.8 400H501.1L561.3000000000001 303.9C570.8000000000001 288.8 568.8000000000001 272 563.7 261.2z" />
+    <glyph glyph-name="stream"
+      unicode="&#xF550;"
+      horiz-adv-x="512" d=" M16 320H432C440.84 320 448 327.16 448 336V368C448 376.8400000000001 440.84 384 432 384H16C7.16 384 0 376.8400000000001 0 368V336C0 327.16 7.16 320 16 320zM496 224H80C71.16 224 64 216.84 64 208V176C64 167.16 71.16 160 80 160H496C504.84 160 512 167.16 512 176V208C512 216.84 504.84 224 496 224zM432 64H16C7.16 64 0 56.84 0 48V16C0 7.16 7.16 0 16 0H432C440.84 0 448 7.16 448 16V48C448 56.84 440.84 64 432 64z" />
+    <glyph glyph-name="street-view"
+      unicode="&#xF21D;"
+      horiz-adv-x="512" d=" M168 109.41V64C168 33.12 193.12 8 224 8H288C318.88 8 344 33.12 344 64V109.41C362.9100000000001 118.41 376 137.71 376 160V232C376 260.78 358.9100000000001 285.48 334.46 297C345.43 312.6 352 331.51 352 352C352 404.94 308.94 448 256 448S160 404.94 160 352C160 331.51 166.57 312.6 177.55 297C153.09 285.48 136 260.78 136 232V160C136 137.7 149.09 118.41 168 109.41zM256 400C282.51 400 304 378.51 304 352S282.51 304 256 304S208 325.49 208 352S229.49 400 256 400zM184 232C184 245.23 194.78 256 208 256H304C317.2200000000001 256 328 245.23 328 232V160C328 155.59 324.4100000000001 152 320 152H296V64C296 59.59 292.4100000000001 56 288 56H224C219.59 56 216 59.59 216 64V152H192C187.59 152 184 155.59 184 160V232zM393.61 112.86C388.7100000000001 105.21 383.06 98.03 376 92.17V77.68C429.18 67.54 464 50.87 464 31.99C464 1.06 370.88 -24.01 256 -24.01S48 1.07 48 32C48 50.88 82.82 67.54 136 77.69V92.18C128.94 98.04 123.29 105.21 118.39 112.87C47.28 95.81 0 66 0 32C0 -21.02 114.62 -64 256 -64S512 -21.02 512 32C512 66 464.72 95.81 393.61 112.86z" />
+    <glyph glyph-name="strikethrough"
+      unicode="&#xF0CC;"
+      horiz-adv-x="512" d=" M500 168H12C5.373 168 0 173.373 0 180V204C0 210.627 5.373 216 12 216H500C506.627 216 512 210.627 512 204V180C512 173.373 506.627 168 500 168zM292.427 152C321.5730000000001 137.097 342.3590000000001 118.173 342.3590000000001 85.475C342.3590000000001 41.026 304.8950000000001 16.895 253.4600000000001 16.895C213.4450000000001 16.895 163.927 31.985 163.927 72.0000000000001C163.927 80.8370000000001 156.763 88.0000000000001 147.927 88.0000000000001H121.507C112.671 88.0000000000001 105.507 80.8370000000001 105.507 72.0000000000001V55.6300000000001C105.507 -8.5049999999999 183.611 -39.6189999999999 253.4600000000001 -39.6189999999999C336.6450000000001 -39.6189999999999 406.4940000000001 4.8300000000001 406.4940000000001 90.5550000000001C406.4940000000001 115.8500000000001 400.427 135.7860000000001 390.151 152.0000000000001H292.427zM253.9160000000001 232C212.891 248.155 179.8010000000001 265.653 179.8010000000001 306.453C179.8010000000001 347.727 214.7250000000001 368.0470000000001 258.5390000000001 368.0470000000001C294.8950000000001 368.0470000000001 335.5400000000001 354.284 335.3730000000001 327.838C335.3180000000001 319.064 342.6 312 351.3730000000001 312H378.4280000000001C387.2640000000001 312 394.4280000000001 319.163 394.4280000000001 328V349.632C394.4280000000001 398.527 325.8480000000001 423.926 258.5380000000001 423.926C182.9740000000001 423.926 115.0300000000001 387.731 115.0300000000001 303.277C115.0300000000001 272.303 124.2220000000001 249.554 138.9340000000001 232H253.9160000000001z" />
+    <glyph glyph-name="stroopwafel"
+      unicode="&#xF551;"
+      horiz-adv-x="512" d=" M256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM256 -16C141.31 -16 48 77.31 48 192S141.31 400 256 400S464 306.69 464 192S370.69 -16 256 -16zM414.39 192L442.67 220.28C445.79 223.4 445.79 228.47 442.67 231.59L431.36 242.9C428.24 246.02 423.17 246.02 420.05 242.9L391.77 214.62L346.51 259.87L369.14 282.5L386.11 265.53C389.23 262.41 394.3 262.41 397.42 265.53L408.73 276.8400000000001C411.85 279.9600000000001 411.85 285.03 408.73 288.15L391.76 305.12L397.42 310.78C400.54 313.9 400.54 318.9700000000001 397.42 322.0900000000001L386.11 333.4C382.99 336.52 377.92 336.52 374.8 333.4L369.14 327.74L352.17 344.7100000000001C349.05 347.8300000000001 343.98 347.8300000000001 340.86 344.7100000000001L329.55 333.4C326.43 330.28 326.43 325.2100000000001 329.55 322.0900000000001L346.52 305.12L323.89 282.49L278.63 327.74L306.92 356.02C310.04 359.14 310.04 364.2100000000001 306.92 367.3300000000001L295.6 378.68C292.48 381.8 287.4100000000001 381.8 284.29 378.68L256 350.39L227.71 378.68C224.59 381.8 219.52 381.8 216.4 378.68L205.09 367.37C201.97 364.25 201.97 359.18 205.09 356.06L233.38 327.78L188.13 282.53L165.5 305.16L182.47 322.13C185.59 325.25 185.59 330.32 182.47 333.44L171.16 344.75C168.04 347.87 162.97 347.87 159.85 344.75L142.88 327.78L137.22 333.44C134.1 336.56 129.03 336.56 125.91 333.44L114.6 322.13C111.48 319.01 111.48 313.94 114.6 310.82L120.26 305.16L103.29 288.19C100.17 285.07 100.17 280 103.29 276.88L114.6 265.57C117.72 262.45 122.79 262.45 125.91 265.57L142.88 282.54L165.51 259.91L120.26 214.66L91.97 242.94C88.85 246.06 83.78 246.06 80.66 242.94L69.32 231.6C66.2 228.48 66.2 223.41 69.32 220.29L97.61 192L69.32 163.71C66.2 160.59 66.2 155.52 69.32 152.4L80.63 141.09C83.75 137.97 88.82 137.97 91.94 141.09L120.23 169.37L165.48 124.12L142.85 101.49L125.88 118.46C122.76 121.5800000000001 117.69 121.5800000000001 114.57 118.46L103.26 107.15C100.14 104.03 100.14 98.96 103.26 95.84L120.23 78.87L114.57 73.21C111.45 70.09 111.45 65.02 114.57 61.9L125.88 50.59C129 47.47 134.07 47.47 137.19 50.59L142.85 56.25L159.82 39.28C162.94 36.16 168.01 36.16 171.13 39.28L182.44 50.59C185.56 53.71 185.56 58.78 182.44 61.9L165.47 78.87L188.1 101.5L233.36 56.24L205.07 27.95C201.95 24.83 201.95 19.76 205.07 16.64L216.38 5.33C219.5 2.21 224.57 2.21 227.69 5.33L256 33.61L284.29 5.32C287.4100000000001 2.2 292.48 2.2 295.6 5.32L306.9100000000001 16.63C310.0300000000001 19.75 310.0300000000001 24.82 306.9100000000001 27.94L278.62 56.23L323.88 101.49L346.51 78.86L329.54 61.89C326.42 58.77 326.42 53.7 329.54 50.58L340.85 39.27C343.97 36.15 349.04 36.15 352.16 39.27L369.13 56.24L374.79 50.58C377.9100000000001 47.46 382.98 47.46 386.1 50.58L397.4100000000001 61.89C400.5300000000001 65.01 400.5300000000001 70.08 397.4100000000001 73.2L391.75 78.86L408.7200000000001 95.83C411.8400000000001 98.9500000000001 411.8400000000001 104.02 408.7200000000001 107.14L397.4100000000001 118.4500000000001C394.29 121.5700000000001 389.2200000000001 121.5700000000001 386.1 118.4500000000001L369.13 101.48L346.5 124.11L391.75 169.36L420.04 141.0800000000001C423.1600000000001 137.96 428.23 137.96 431.35 141.0800000000001L442.6600000000001 152.3900000000001C445.7800000000001 155.5100000000001 445.7800000000001 160.5800000000001 442.6600000000001 163.7000000000001L414.39 192zM256 305.14L301.25 259.89L256 214.63L210.75 259.88L256 305.14zM142.86 192L188.11 237.26L233.37 192L188.11 146.74L142.86 192zM256 78.86L210.74 124.12L256 169.38L301.26 124.12L256 78.86zM323.88 146.75L278.63 192L323.89 237.25L369.14 192L323.88 146.75z" />
+    <glyph glyph-name="subscript"
+      unicode="&#xF12C;"
+      horiz-adv-x="512" d=" M500.065 17.309H383.611C386.703 35.651 407.626 51.331 431.595 67.347C466.01 90.342 507.7329999999999 117.989 507.7329999999999 170.569C507.7329999999999 220.87 469.2529999999999 256 414.156 256C376.527 256 342.04 236.542 323.362 205.686C320.041 200.2 321.656 193.063 326.993 189.506L351.413 173.23C356.733 169.684 363.969 170.8660000000001 367.722 176.042C377.965 190.172 392.547 200.722 409.89 200.722C436.079 200.722 447.802 183.434 447.802 166.3010000000001C447.802 145.0820000000001 425.331 129.4470000000001 399.312 111.345C363.543 86.459 319.029 55.4880000000001 319.029 -3.586C319.029 -9.148 319.587 -14.6109999999999 320.462 -21.501C321.224 -27.498 326.3229999999999 -32 332.368 -32H500C506.627 -32 512 -26.627 512 -20V5.375C512 11.966 506.657 17.309 500.065 17.309zM245.92 176H276C282.627 176 288 170.627 288 164V140C288 133.373 282.627 128 276 128H216.325A12 12 0 0 0 206.135 133.662L151.931 220.815C148.669 225.707 145.799 230.943 143.941 234.529C142.168 230.97 139.366 225.706 135.812 220.212L82.754 133.724A12.005 12.005 0 0 0 72.524 128H12C5.373 128 0 133.373 0 140V164C0 170.627 5.373 176 12 176H43.728L109.208 276.449L48.755 368H12C5.373 368 0 373.373 0 380V404C0 410.627 5.373 416 12 416H78.764A12 12 0 0 0 88.998 410.266L136.523 332.642C139.509 327.666 142.265 322.192 144.063 318.448C145.919 322.084 148.781 327.439 152.047 332.665L200.677 410.366A12.002 12.002 0 0 0 210.85 416H276C282.627 416 288 410.627 288 404V380C288 373.373 282.627 368 276 368H239.231L178.257 277.016L245.92 176z" />
+    <glyph glyph-name="subway"
+      unicode="&#xF239;"
+      horiz-adv-x="448" d=" M280 120C280 142.091 297.909 160 320 160S360 142.091 360 120S342.091 80 320 80S280 97.909 280 120zM128 80C150.091 80 168 97.909 168 120S150.091 160 128 160S88 142.091 88 120S105.909 80 128 80zM448 338.286V109.714C448 60.52 404.294 19.085 348.9410000000001 5.001L407.699 -53.757C411.479 -57.537 408.802 -64 403.456 -64H355.029A11.996 11.996 0 0 0 346.544 -60.485L286.0590000000001 0H161.941L101.456 -60.485A12.002 12.002 0 0 0 92.971 -64H44.544C39.199 -64 36.522 -57.537 40.301 -53.757L99.059 5.001C43.886 19.039 0 60.344 0 109.714V338.286C0 402.072 71.001 448 138.286 448H309.714C377.889 448 448 402.078 448 338.286zM50.774 352H397.308C387.108 378.136 349.337 400 309.713 400H138.286C99.424 400 61.275 378.33 50.774 352zM48 224H200V304H48V224zM400 176H48V109.714C48 73.505 99.975 48 138.286 48H309.714C347.479 48 400 73.184 400 109.714V176zM400 304H248V224H400V304z" />
+    <glyph glyph-name="suitcase-rolling"
+      unicode="&#xF5C1;"
+      horiz-adv-x="384" d=" M336 320H288V400C288 426.51 266.51 448 240 448H144C117.49 448 96 426.51 96 400V320H48C21.49 320 0 298.51 0 272V16C0 -10.51 21.49 -32 48 -32H64V-48C64 -56.84 71.16 -64 80 -64H112C120.84 -64 128 -56.84 128 -48V-32H256V-48C256 -56.84 263.1600000000001 -64 272 -64H304C312.84 -64 320 -56.84 320 -48V-32H336C362.51 -32 384 -10.51 384 16V272C384 298.51 362.51 320 336 320zM144 400H240V320H144V400zM336 16H48V272H336V16zM104 64H280C284.42 64 288 67.58 288 72V104C288 108.42 284.42 112 280 112H104C99.58 112 96 108.42 96 104V72C96 67.58 99.58 64 104 64zM104 176H280C284.42 176 288 179.58 288 184V216C288 220.42 284.42 224 280 224H104C99.58 224 96 220.42 96 216V184C96 179.58 99.58 176 104 176z" />
+    <glyph glyph-name="suitcase"
+      unicode="&#xF0F2;"
+      horiz-adv-x="512" d=" M464 320H384V368C384 394.5 362.5 416 336 416H176C149.5 416 128 394.5 128 368V320H48C21.5 320 0 298.5 0 272V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V272C512 298.5 490.5 320 464 320zM176 368H336V320H176V368zM48 16V272H128V16H48zM176 16V272H336V16H176zM464 16H384V272H464V16z" />
+    <glyph glyph-name="sun-cloud"
+      unicode="&#xF763;"
+      horiz-adv-x="640" d=" M580.5 222C561.8 261.6 521.9 288 476 288C433.6 288 396 264.6 375.8 229.8C326.4000000000001 224.1 288 182.1 288 131.2000000000001C288 76.5000000000001 332.5 32.0000000000001 387.2 32.0000000000001H540.8C595.5 32.0000000000001 640 76.5000000000001 640 131.2000000000001C640 171.8000000000001 615.7 206.7000000000001 580.5 222.0000000000001zM540.8 80H387.2C358.9 80 336 102.9 336 131.2S358.9 182.4 387.2 182.4C394.9 182.4 402 180.2 408.5 177.1C411.2 212.2 440.2 240 476 240C510.1 240 538 214.9 543 182.2C570.2 181 592 158.8 592 131.2C592 102.9 569.1 80 540.8 80zM256 -10L204.1 67L113.2 49.4L130.8 140.6L54 192.6L130.8 244.6L113.2 335.8L204.2 318.2L256 395L307.9 318.1L398.9 335.7L390.5 292.2C406.5 303.7 424.7 312 444 316.3L448.1 337.6C450.7 350.8 446.5 364.4 437 374C427.4 383.5 413.8 387.7 400.8 385.1L329.9 371.4L289.5 431.3C274.4 453.6 237.6 453.6 222.5 431.3L182.1 371.4L111.3 385.1C98 387.6 84.5 383.5 75 373.9C65.5 364.3 61.3 350.8 63.9 337.6L77.6 266.6L17.8 226.1C6.6 218.5 0 206 0 192.5S6.7 166.5 17.8 159L77.6 118.5L63.9 47.5C61.3 34.3 65.5 20.7 75 11.2C84.5 1.7 97.9 -2.5 111.3 0.1L182.1 13.8L222.5 -46.1C230 -57.3 242.6 -64 256 -64S282 -57.3 289.5 -46.2L329.9 13.7C315.3 20.9 302.2 30.5 291.2 42.3L256 -10zM256 248C273.1 248 288.3 240.1 298.6 227.9C310.4000000000001 238.7 324.4000000000001 247.2 339.7000000000001 253.2C320.7000000000001 279 290.4000000000001 296 256.0000000000001 296C198.7000000000001 296 152.0000000000001 249.3 152.0000000000001 192S198.7000000000001 88 256.0000000000001 88C258.6000000000001 88 261.1000000000001 88.6 263.7000000000001 88.8C259.1 102.2 256.0000000000001 116.3 256.0000000000001 131.2C256.0000000000001 132.8 256.4000000000001 134.4 256.4000000000001 136H256.0000000000001C225.1000000000001 136 200.0000000000001 161.1 200.0000000000001 192S225.1000000000001 248 256.0000000000001 248z" />
+    <glyph glyph-name="sun-dust"
+      unicode="&#xF764;"
+      horiz-adv-x="512" d=" M160 0C142.3 0 128 -14.3 128 -32S142.3 -64 160 -64S192 -49.7 192 -32S177.7 0 160 0zM480 256C497.7 256 512 270.3 512 288S497.7 320 480 320S448 305.7 448 288S462.3 256 480 256zM384 160C384 177.7 369.7 192 352 192S320 177.7 320 160S334.3 128 352 128S384 142.3 384 160zM240 96C222.3 96 208 81.7 208 64S222.3 32 240 32S272 46.3 272 64S257.7 96 240 96zM400 96C382.3 96 368 81.7 368 64S382.3 32 400 32S432 46.3 432 64S417.7 96 400 96zM480 0C462.3 0 448 -14.3 448 -32S462.3 -64 480 -64S512 -49.7 512 -32S497.7 0 480 0zM480 192C462.3 192 448 177.7 448 160S462.3 128 480 128S512 142.3 512 160S497.7 192 480 192zM320 0C302.3 0 288 -14.3 288 -32S302.3 -64 320 -64S352 -49.7 352 -32S337.7 0 320 0zM256 248C271.4 248 285.4 241.7 295.6 231.6L329.5 265.5C310.7 284.3 284.7 296 256 296C198.7 296 152 249.3 152 192C152 163.3 163.7 137.3 182.5 118.5L216.4 152.4C206.3 162.6 200 176.6 200 192C200 222.9 225.1 248 256 248zM400.8 385.1L329.9 371.4L289.5 431.3C274.4 453.6 237.6 453.6 222.5 431.3L182.1 371.4L111.3 385.1C98 387.6 84.5 383.5 75 373.9C65.5 364.3 61.3 350.8 63.9 337.6L77.6 266.6L17.8 226.1C6.6 218.5 0 206 0 192.5S6.7 166.5 17.8 159L77.6 118.5L63.9 47.5C61.3 34.3 65.5 20.7 75 11.2L75.1 11.1L113.4 49.4L113.1 49.3L130.7 140.5L53.9 192.5L130.7 244.5L113.1 335.7L204.1 318.0999999999999L256 395L307.9 318.1L398.9 335.7L398.7 334.7L437.5 373.5C437.3 373.7 437.3 373.9 437.1 374C427.5 383.5 413.8 387.6 400.8 385.1z" />
+    <glyph glyph-name="sun-haze"
+      unicode="&#xF765;"
+      horiz-adv-x="640" d=" M80 112H416C424.8 112 432 119.2 432 128V144C432 152.8 424.8 160 416 160H80C71.2 160 64 152.8 64 144V128C64 119.2 71.2 112 80 112zM624 160H496C487.2 160 480 152.8 480 144V128C480 119.2 487.2 112 496 112H624C632.8 112 640 119.2 640 128V144C640 152.8 632.8 160 624 160zM208 -16H80C71.2 -16 64 -23.2 64 -32V-48C64 -56.8 71.2 -64 80 -64H208C216.8 -64 224 -56.8 224 -48V-32C224 -23.2 216.8 -16 208 -16zM624 -16H288C279.2 -16 272 -23.2 272 -32V-48C272 -56.8 279.2 -64 288 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16zM576 40V56C576 64.8 568.8 72 560 72H16C7.2 72 0 64.8 0 56V40C0 31.2 7.2 24 16 24H560C568.8 24 576 31.2 576 40zM194.7 244.5L177.1 335.7L268.1 318.1L320 395L371.9 318.1L462.9 335.7L445.3 244.6L499.3 208H572.6999999999999C569.6999999999999 215.2 564.9 221.6 558.3 226.1L498.4999999999999 266.6L512.1999999999999 337.6C514.8 350.8 510.5999999999999 364.4 501.0999999999999 374C491.4999999999999 383.5 477.8999999999999 387.7 464.8999999999999 385.1L394 371.4L353.6 431.3C338.5 453.6 301.7000000000001 453.6 286.6 431.3L246.2 371.4L175.4 385.1C162.1 387.7 148.6 383.5 139.1 374C129.6 364.4000000000001 125.4 350.9 128 337.7000000000001L141.7 266.7000000000001L81.9 226.2C75.3 221.7 70.5 215.3 67.5 208.1H140.9L194.7000000000001 244.5000000000001zM217.6 208H266.6C273.5 231 294.7000000000001 248 320 248S366.5 231 373.4 208H422.4C414.6 257.7 371.9 296 320 296S225.4 257.7 217.6 208z" />
+    <glyph glyph-name="sun"
+      unicode="&#xF185;"
+      horiz-adv-x="512" d=" M494.2 226.1L434.4 266.6L448.1 337.6C450.7 350.8 446.5 364.4 437 374C427.3999999999999 383.5 413.8 387.7 400.8 385.1L329.9 371.4L289.5 431.3C274.4 453.6 237.6 453.6 222.5 431.3L182.1 371.4L111.3 385.1C98 387.6 84.5 383.5 75 373.9C65.5 364.3 61.3 350.8 63.9 337.6L77.6 266.6L17.8 226.1C6.6 218.5 0 206 0 192.5S6.7 166.5 17.8 159L77.6 118.5L63.9 47.5C61.3 34.3 65.5 20.7 75 11.2C84.5 1.7 97.9 -2.5 111.3 0.1L182.1 13.8L222.5 -46.1C230 -57.3 242.6 -64 256 -64S282 -57.3 289.5 -46.2L329.9 13.7L400.8 0C414.2 -2.7 427.6 1.6 437.1 11.1C446.6 20.6 450.7 34.2 448.2 47.4L434.5 118.4L494.3 158.9C505.4 166.4 512.1 179.0000000000001 512.1 192.4C512 206 505.4 218.5 494.2 226.1zM381.3 140.5L398.9 49.3L307.9 66.9L256 -10L204.1 67L113.2 49.4L130.8 140.6L54 192.6L130.8 244.6L113.2 335.8L204.2 318.2L256 395L307.9 318.1L398.9 335.7L381.3 244.6L458.1 192.6L381.3 140.5zM256 296C198.7 296 152 249.3 152 192S198.7 88 256 88S360 134.7 360 192S313.3 296 256 296zM256 136C225.1 136 200 161.1 200 192S225.1 248 256 248S312 222.9 312 192S286.9 136 256 136z" />
+    <glyph glyph-name="sunrise"
+      unicode="&#xF766;"
+      horiz-adv-x="576" d=" M560 -16H491.5L520.9 28.7C528.3 39.9 529.6 54 524.5 66.5C519.3 78.9 508.4 88 495.2 90.7L424.5 105.2L410 176C407.3 189.2 398.3 200.2 385.8 205.4C373.3 210.6 359.1 209.1 348.1 201.8L287.8 162L227.6 201.9C205.1 216.8 171.1 202.7 165.7 176.2L151.3 105.4L80.6 91C67.3 88.3 56.5 79.3 51.3 66.8C46.2 54.3 47.5 40.2 55 29L84.7 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM234.6 -16C239.3 -0.4 250.6 13 266.8 19.7C295.3 31.5 328.2 17.9 340 -10.6C340.7 -12.4 341.1 -14.2 341.6 -16H234.6zM434 -16H390.7C389.5 -8 387.6 0 384.4 7.8C362.5 60.8 301.5 86 248.5 64.1C213.8 49.7 191.1 18.6 185.7 -16H142.3L101.4 46.1L192.2 64.7000000000001L210.7 155.6L288.1 104.4L365.4000000000001 155.5000000000001L384.1 64.6L474.9 45.9L434 -16zM190.2 312.4C196.4 306.1 206.6 306.1 212.8 312.3L264 363.1V256C264 247.2 271.2 240 280 240H296C304.8 240 312 247.2 312 256V363.1L363.1 312.3C369.4000000000001 306.1 379.5 306.1 385.7000000000001 312.4L397.0000000000001 323.8C403.2000000000001 330.1 403.2000000000001 340.2000000000001 396.9000000000001 346.4L299.2000000000001 443.4C293.0000000000001 449.6 282.9000000000001 449.6 276.7000000000001 443.4L179.0000000000001 346.4C172.7000000000001 340.2 172.7000000000001 330 178.9000000000001 323.8L190.2000000000001 312.4z" />
+    <glyph glyph-name="sunset"
+      unicode="&#xF767;"
+      horiz-adv-x="576" d=" M560 -16H491.5L520.9 28.7C528.3 39.9 529.6 54 524.5 66.5C519.3 78.9 508.4 88 495.2 90.7L424.5 105.2L410 176C407.3 189.2 398.3 200.2 385.8 205.4C373.3 210.6 359.1 209.1 348.1 201.8L287.8 162L227.6 201.9C205.1 216.8 171.1 202.7 165.7 176.2L151.3 105.4L80.6 91C67.3 88.3 56.5 79.3 51.3 66.8C46.2 54.3 47.5 40.2 55 29L84.7 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM234.6 -16C239.3 -0.4 250.6 13 266.8 19.7C295.3 31.5 328.2 17.9 340 -10.6C340.7 -12.4 341.1 -14.2 341.6 -16H234.6zM434 -16H390.7C389.5 -8 387.6 0 384.4 7.8C362.5 60.8 301.5 86 248.5 64.1C213.8 49.7 191.1 18.6 185.7 -16H142.3L101.4 46.1L192.2 64.7000000000001L210.7 155.6L288.1 104.4L365.4000000000001 155.5000000000001L384.1 64.6L474.9 45.9L434 -16zM276.7 244.6C282.9 238.4 293 238.4 299.2 244.6L396.9 341.6C403.2 347.8 403.2 358 397 364.2L385.7 375.6C379.5 381.9 369.3 381.9 363.1 375.7L312 324.9V432C312 440.8 304.8 448 296 448H280C271.2 448 264 440.8 264 432V324.9L212.9 375.7C206.6 381.9 196.5 381.9 190.3 375.6L179 364.2C172.8 357.9 172.8 347.8 179.1 341.6L276.7 244.6z" />
+    <glyph glyph-name="superscript"
+      unicode="&#xF12B;"
+      horiz-adv-x="512" d=" M500.065 177.309H383.611C386.703 195.651 407.626 211.331 431.595 227.3470000000001C466.01 250.3420000000001 507.7329999999999 277.9890000000001 507.7329999999999 330.569C507.7329999999999 380.87 469.2529999999999 416 414.156 416C376.527 416 342.04 396.5420000000001 323.362 365.6860000000001C320.041 360.2000000000001 321.656 353.0630000000001 326.993 349.5060000000001L351.413 333.23C356.733 329.6840000000001 363.969 330.8660000000001 367.722 336.0420000000001C377.965 350.1720000000001 392.547 360.7220000000001 409.89 360.7220000000001C436.079 360.7220000000001 447.802 343.4340000000001 447.802 326.3010000000001C447.802 305.0820000000001 425.331 289.4470000000001 399.312 271.3450000000001C363.543 246.4590000000001 319.029 215.488 319.029 156.4140000000001C319.029 150.852 319.587 145.3890000000001 320.462 138.499C321.224 132.502 326.3229999999999 128 332.368 128H500C506.627 128 512 133.373 512 140V165.375C512 171.966 506.657 177.309 500.065 177.309zM245.92 16H276C282.627 16 288 10.627 288 4V-20C288 -26.627 282.627 -32 276 -32H216.325A12 12 0 0 0 206.135 -26.338L151.931 60.815C148.669 65.707 145.799 70.943 143.941 74.529C142.168 70.97 139.366 65.706 135.812 60.212L82.754 -26.276A12.005 12.005 0 0 0 72.524 -32H12C5.373 -32 0 -26.627 0 -20V4C0 10.627 5.373 16 12 16H43.728L109.208 116.449L48.755 208H12C5.373 208 0 213.373 0 220V244C0 250.627 5.373 256 12 256H78.764A12 12 0 0 0 88.998 250.266L136.523 172.642C139.509 167.666 142.265 162.192 144.063 158.448C145.919 162.084 148.781 167.439 152.047 172.665L200.677 250.366A12 12 0 0 0 210.849 256H276C282.627 256 288 250.627 288 244V220C288 213.373 282.627 208 276 208H239.231L178.257 117.016L245.92 16z" />
+    <glyph glyph-name="surprise"
+      unicode="&#xF5C2;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM248 168C212.7 168 184 139.3 184 104S212.7 40 248 40S312 68.7 312 104S283.3 168 248 168zM200 240C200 257.7 185.7 272 168 272S136 257.7 136 240S150.3 208 168 208S200 222.3 200 240zM328 272C310.3 272 296 257.7 296 240S310.3 208 328 208S360 222.3 360 240S345.7 272 328 272z" />
+    <glyph glyph-name="swatchbook"
+      unicode="&#xF5C3;"
+      horiz-adv-x="512" d=" M112 24C125.25 24 136 34.75 136 48C136 61.26 125.25 72 112 72S88 61.26 88 48C88 34.75 98.75 24 112 24zM480 160H382.39L451.41 229.02C463.91 241.52 463.91 261.78 451.41 274.27L338.27 387.41C332.02 393.66 323.83 396.78 315.64 396.78S299.26 393.66 293.01 387.41L224 318.39V416C224 433.67 209.67 448 192 448H32C14.33 448 0 433.67 0 416V48C0 -13.86 50.14 -64 112 -64H480C497.67 -64 512 -49.67 512 -32V128C512 145.67 497.67 160 480 160zM176 48C176 30.12 168.59 13.97 156.73 2.35C153.08 -1.22 149.03 -4.1799999999999 144.74 -6.7C143.88 -7.21 142.98 -7.66 142.1 -8.13C137.63 -10.47 132.98 -12.44 128.08 -13.7C122.92 -15.05 117.6 -15.99 112.02 -15.99H112C76.71 -15.99 48 12.72 48 48.01V144.01H176V48zM176 192H48V272H176V192zM176 320H48V400H176V320zM224 250.51L315.65 342.16L406.16 251.65L224 69.49V250.51zM464 -16H206.39L334.39 112H464V-16z" />
+    <glyph glyph-name="swimmer"
+      unicode="&#xF5C4;"
+      horiz-adv-x="640" d=" M185.53 124.62C186.87 123.5 188.3 122.63 189.61 121.42C193.14 118.16 204.88 112 224 112C228.81 112 233.14 112.39 237.01 113.03L262.8 149.14C277.69 170.01 294.2200000000001 189.48 311.51 208.25L442.1 116.8C445.99 118.43 449.0100000000001 120.14 450.4 121.42C462.3700000000001 132.46 475.72 139.59 489.61 142.5L346.12 242.98C366.7800000000001 262.1 388.42 280.25 411.7100000000001 296.56C421.0200000000001 303.0800000000001 432.8100000000001 305.45 444.8000000000001 302.9700000000001L547.1800000000001 284.89C560.5000000000001 282.61 573.22 291.2200000000001 575.61 304.26C578 317.31 569.17 329.78 555.85 332.13L454.26 350.06C429.59 355.2200000000001 403.71 349.98 383.28 335.62C290.39 270.57 235.72 194.91 222.7 176.67L185.53 124.62zM624 80H608C581.96 80 562.2 88.42 551.91 97.9C543.01 106.11 532.25 112 520.14 112H503.84C491.73 112 480.97 106.11 472.07 97.9C461.8 88.42 442.04 80 416 80S370.2 88.42 359.91 97.9C351.01 106.11 340.25 112 328.14 112H311.84C299.73 112 288.97 106.11 280.07 97.9C269.8 88.42 250.04 80 224 80S178.2 88.42 167.91 97.9C159.01 106.11 148.25 112 136.14 112H119.84C107.73 112 96.97 106.11 88.07 97.9C77.8 88.42 58.04 80 32 80H16C7.16 80 0 72.84 0 64V48C0 39.16 7.16 32 16 32H32C70.62 32 104.72 44.19 128 63.84C151.28 44.18 185.38 32 224 32S296.7200000000001 44.19 320 63.84C343.28 44.18 377.38 32 416 32S488.72 44.19 512 63.84C535.28 44.18 569.38 32 608 32H624C632.84 32 640 39.16 640 48V64C640 72.84 632.84 80 624 80zM128 160C181.02 160 224 202.98 224 256S181.02 352 128 352S32 309.02 32 256S74.98 160 128 160zM128 304C154.47 304 176 282.4700000000001 176 256S154.47 208 128 208S80 229.53 80 256S101.53 304 128 304z" />
+    <glyph glyph-name="swimming-pool"
+      unicode="&#xF5C5;"
+      horiz-adv-x="640" d=" M624 16H608C581.96 16 562.2 24.42 551.91 33.9C543.01 42.11 532.25 48 520.14 48H503.84C491.73 48 480.97 42.11 472.07 33.9C461.8 24.42 442.04 16 416 16S370.2 24.42 359.91 33.9C351.01 42.11 340.25 48 328.14 48H311.84C299.73 48 288.97 42.11 280.07 33.9C269.8 24.42 250.04 16 224 16S178.2 24.42 167.91 33.9C159.01 42.11 148.25 48 136.14 48H119.84C107.73 48 96.97 42.11 88.07 33.9C77.8 24.42 58.04 16 32 16H16C7.16 16 0 8.84 0 0V-16C0 -24.84 7.16 -32 16 -32H32C70.62 -32 104.72 -19.81 128 -0.16C151.28 -19.82 185.38 -32 224 -32S296.7200000000001 -19.81 320 -0.16C343.28 -19.82 377.38 -32 416 -32S488.72 -19.81 512 -0.16C535.28 -19.82 569.38 -32 608 -32H624C632.84 -32 640 -24.84 640 -16V0C640 8.84 632.84 16 624 16zM216 48.63V160H424V48.63C438.2200000000001 50.06 447.4 54.67 450.39 57.42C457.18 63.68 464.48 68.4 472 72.09V328C472 350.06 489.94 368 512 368S552 350.06 552 328V304C552 295.16 559.16 288 568 288H584C592.84 288 600 295.16 600 304V328C600 376.53 560.53 416 512 416S424 376.53 424 328V208H216V328C216 350.06 233.94 368 256 368S296 350.06 296 328V304C296 295.16 303.1600000000001 288 312 288H328C336.84 288 344 295.16 344 304V328C344 376.53 304.53 416 256 416S168 376.53 168 328V72.1C175.52 68.41 182.82 63.69 189.61 57.43C192.59 54.67 201.78 50.05 216 48.63z" />
+    <glyph glyph-name="sword"
+      unicode="&#xF71C;"
+      horiz-adv-x="512" d=" M511.84 429.73C513.23 439.51 505.57 448 496.04 448C495.28 448 494.51 447.95 493.73 447.84L400 432L148.51 180.51L109.69 219.33C103.47 225.55 93.38 225.56 87.15 219.33L68.43 200.6C63.06 195.23 62.22 186.81 66.44 180.49L119.63 100.7L66.4 47.48L37.25 62.05C36.04 62.66 28 66.19 21.28 59.46L4.05 42.24C-1.35 36.83 -1.35 28.07 4.05 22.67L86.67 -59.95C89.37 -62.65 92.91 -64 96.45 -64S103.53 -62.65 106.24 -59.95L123.47 -42.72A13.840000000000002 13.840000000000002 0 0 1 126.06 -26.7499999999999L111.49 2.4L164.71 55.6300000000001L244.5 2.4400000000001C250.82 -1.7699999999999 259.24 -0.9399999999999 264.61 4.4300000000001L283.3400000000001 23.1500000000001C289.5600000000001 29.3700000000001 289.5600000000001 39.4700000000001 283.3400000000001 45.6900000000001L244.5200000000001 84.5100000000001L496 336L511.84 429.73zM451.22 359.11L210.57 118.45L182.45 146.57L423.11 387.23L456.94 392.95L451.22 359.11z" />
+    <glyph glyph-name="swords"
+      unicode="&#xF71D;"
+      horiz-adv-x="512" d=" M507.31 -14.06L448 45.25L479.64 104.28C482.97 110.5 481.84 118.16 476.85 123.15L459.3099999999999 140.68C453.0599999999999 146.93 442.93 146.93 436.68 140.68L420 124L112 432L18.27 447.84C8.27 449.27 -1.42 440.83 0.17 429.74L16.01 336.01L324.01 28.01L307.32 11.32C301.07 5.07 301.07 -5.06 307.32 -11.3L324.85 -28.84A16 16 0 0 1 343.7200000000001 -31.63L402.75 0L462.06 -59.31C468.31 -65.5599999999999 478.44 -65.5599999999999 484.69 -59.31L507.31 -36.69C513.56 -30.44 513.56 -20.31 507.31 -14.06zM357.95 61.95L60.78 359.11L55.06 392.94L88.9 387.2200000000001L386.0700000000001 90.06L357.9500000000001 61.9499999999999zM423.12 387.22L456.95 392.94L451.23 359.1L340.7 248.57L374.64 214.63L496.01 336L511.85 429.73C513.28 439.73 504.84 449.42 493.7499999999999 447.83L400.0199999999999 431.99L278.64 310.63L312.58 276.69L423.12 387.2200000000001zM199.45 107.31L154.07 61.93L125.95 90.05L171.33 135.43L137.39 169.37L92.01 123.99L75.32 140.68C69.07 146.93 58.94 146.93 52.7 140.68L35.16 123.15A16 16 0 0 1 32.37 104.28L64 45.25L4.69 -14.06C-1.56 -20.31 -1.56 -30.44 4.69 -36.69L27.31 -59.31C33.56 -65.5599999999999 43.69 -65.5599999999999 49.94 -59.31L109.25 0L168.28 -31.64C174.5 -34.97 182.16 -33.84 187.15 -28.85L204.68 -11.3099999999999C210.93 -5.0599999999999 210.93 5.0700000000001 204.68 11.3200000000001L188 28L233.38 73.38L199.45 107.31z" />
+    <glyph glyph-name="synagogue"
+      unicode="&#xF69B;"
+      horiz-adv-x="640" d=" M320 128C274.48 128 256 86.39 256 61.25V-48C256 -56.84 263.1600000000001 -64 272 -64H368C376.84 -64 384 -56.84 384 -48V64C384 99.35 355.35 128 320 128zM631.99 179.71L555.99 251.49C552.8 254.5 548.4 256 543.99 256S535.1800000000001 254.5 531.99 251.49L495.99 217.49V300.17A35.21 35.21 0 0 1 482.78 327.66L341.99 440.29A35.157 35.157 0 0 1 320 448C312.2200000000001 448 304.44 445.43 298.01 440.29L157.21 327.65A35.196 35.196 0 0 1 144 300.16V217.49L108 251.49C104.81 254.5 100.41 256 96 256S87.19 254.5 84 251.49L8 179.71C2.85 174.84 0 168.57 0 162.07V-48C0 -56.84 7.16 -64 16 -64H32C40.84 -64 48 -56.84 48 -48V151.46L96 196.79L144 151.46V-48C144 -56.84 151.16 -64 160 -64H176C184.84 -64 192 -56.84 192 -48V294.01L320 396.41L448 294.01V-48C448 -56.84 455.16 -64 464 -64H480C488.84 -64 496 -56.84 496 -48V151.46L544 196.79L592 151.46V-48C592 -56.84 599.16 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V162.07C640 168.57 637.15 174.84 631.99 179.71zM388.06 293.8H349.11L324 333.79C322.15 336.74 317.85 336.74 316 333.79L290.88 293.81H251.94C248.22 293.81 245.96 289.7200000000001 247.94 286.57L267.14 256.01L247.94 225.45C245.96 222.3 248.23 218.21 251.94 218.21H290.88L316 178.21C317.85 175.26 322.15 175.26 324 178.21L349.12 218.19H388.06C391.7800000000001 218.19 394.04 222.28 392.06 225.43L372.87 256L392.07 286.56C394.04 289.7100000000001 391.78 293.8 388.06 293.8z" />
+    <glyph glyph-name="sync-alt"
+      unicode="&#xF2F1;"
+      horiz-adv-x="512" d=" M483.515 419.515L431.35 367.35C386.475 412.233 324.485 440 256 440C123.228 440 14.824 335.6620000000001 8.31 204.507C7.971 197.689 13.475 192 20.301 192H48.346C54.699 192 59.959 196.952 60.319 203.294C66.161 306.351 151.453 388 256 388C310.163 388 359.157 366.077 394.6140000000001 330.6140000000001L340.4860000000001 276.485C332.9260000000001 268.925 338.2800000000001 256 348.9710000000001 256H492C498.627 256 504 261.373 504 268V411.029C504 421.7200000000001 491.074 427.074 483.515 419.515zM491.699 192H463.654C457.301 192 452.041 187.048 451.681 180.706C445.839 77.649 360.5470000000001 -4 256 -4C201.837 -4 152.843 17.923 117.386 53.386L171.514 107.515C179.074 115.0750000000001 173.72 128.0000000000001 163.029 128.0000000000001H20C13.373 128.0000000000001 8 122.6270000000001 8 116.0000000000001V-27.0289999999999C8 -37.7199999999999 20.926 -43.074 28.485 -35.514L80.65 16.65C125.525 -28.233 187.516 -56 256 -56C388.773 -56 497.176 48.338 503.69 179.493C504.029 186.311 498.525 192 491.699 192z" />
+    <glyph glyph-name="sync"
+      unicode="&#xF021;"
+      horiz-adv-x="512" d=" M500 440H472.289C465.55 440 460.132 434.452 460.292 427.714L462.639 329.139C418.212 395.957 342.256 440 256 440C134.813 440 33.933 353.076 12.296 238.176C10.908 230.807 16.604 224 24.103 224H52.679C58.353 224 63.221 227.982 64.416 233.529C83.441 321.872 161.917 388 256 388C335.545 388 403.942 340.718 434.676 272.698L308.286 275.707C301.549 275.867 296 270.45 296 263.71V236C296 229.373 301.373 224 308 224H500C506.627 224 512 229.373 512 236V428C512 434.627 506.627 440 500 440zM487.897 160H459.321C453.647 160 448.779 156.018 447.584 150.471C428.5590000000001 62.128 350.0830000000001 -4 256 -4C176.454 -4 108.058 43.282 77.324 111.302L203.714 108.293C210.451 108.133 216 113.55 216 120.29V148C216 154.627 210.627 160 204 160H12C5.373 160 0 154.627 0 148V-44C0 -50.627 5.373 -56 12 -56H39.711C46.45 -56 51.868 -50.452 51.708 -43.714L49.361 54.861C93.788 -11.957 169.744 -56 256 -56C377.187 -56 478.067 30.924 499.704 145.824C501.092 153.193 495.396 160 487.897 160z" />
+    <glyph glyph-name="syringe"
+      unicode="&#xF48E;"
+      horiz-adv-x="512" d=" M475.7 332.5C478.8 329.4 483.9 329.4 487 332.5L509.6 355.1C512.7 358.2 512.7 363.3 509.6 366.4L430.5 445.7C427.4 448.8 422.3 448.8 419.2 445.7L396.5 423C393.4 419.9 393.4 414.8 396.5 411.7L419.1 389.1L385.2000000000001 355.2L317.3 423C314.2 426.1 309.1 426.1 306 423L283.4 400.4C280.3 397.3 280.3 392.2 283.4 389.1L294.7 377.8L78.9 161.9C59.9 142.9 50.7 116.7 53.7 89.9L61.5 20L2.3 -39C-0.8 -42.1 -0.8 -47.2 2.3 -50.3L13.6 -61.6C16.7 -64.7 21.8 -64.7 24.9 -61.6L84 -2.6C158.8 -10.9 157 -10.9 163.8 -10.9C187 -10.9 209.2 -1.8 225.9 14.9L441.7000000000001 230.7L453.0000000000001 219.4C456.1000000000001 216.3 461.2 216.3 464.3000000000001 219.4L487 242C490.1 245.1 490.1 250.2 487 253.3L419.1 321.2000000000001L453 355.1L475.7 332.5zM192 48.8C183.4 40.1 171.4 35.9 159.3 37.3L107.1 43.1L101.3 95.2000000000001C100 107.4 104.2 119.3000000000001 112.8 127.9L125 140.1L153.3 111.8C159.5 105.6 169.7 105.6 175.9 111.8L187.2 123.1C193.4 129.3 193.4 139.5 187.2 145.7000000000001L158.9 174L192.8 207.9L221.1 179.6C227.3 173.4 237.5000000000001 173.4 243.7 179.6L255.0000000000001 190.9C261.2000000000001 197.1 261.2000000000001 207.3000000000001 255.0000000000001 213.5L226.8 242L260.7 275.9L289 247.6C295.2 241.4 305.4 241.4 311.6 247.6L323 259C329.2 265.2 329.2 275.4 323 281.6L294.7 309.9L328.6 343.8L407.8 264.6L192 48.8z" />
+    <glyph glyph-name="table-tennis"
+      unicode="&#xF45D;"
+      horiz-adv-x="512" d=" M483.2 122.2C529.7 205.6 518.6 312.9 448 383.7C406.6 425.2 351.7 448 293.2 448C187.8 448 140.5 385.7 75.2 320.3C24.3 269.3 24.3 186.3 75.2 135.2L88.3 122.1L14.4 57.9C-3.9 42 -4.9 13.9 12.2 -3.2L60.6 -51.7C78.3 -69.5 106.4 -67.3000000000001 121.8 -49.5000000000001L185.7 24.4C195.8 14.3 239.1 -40.1 316.3 -25.7C336.8 -49 366.6 -64 400 -64C461.8 -64 512 -13.8 512 48C512 76.6 500.9 102.4 483.2 122.2zM293.2 400C338.8 400 381.7 382.2 413.9 349.9C467.7 296 477.3 215.2 444.2 150.8C386.1 175.9 339.2 144.9 321.9 128L136.3 313.6C167.6 344.9 209.2 400 293.2 400zM183.2 94.9L89.9 -13.1L50.9 26L158.6 119.6L109.1 169.1C79.2 199.1 77.4 246.4000000000001 103.1 278.9000000000001L295.3 86.7000000000001C284.8 58.4 287.6 37.3000000000001 291.6 21.3000000000001C248.6 21.4000000000001 235.1 42.9000000000001 183.2 94.9000000000001zM400 -16C364.7 -16 336 12.7 336 48S364.7 112 400 112S464 83.3 464 48S435.3 -16 400 -16z" />
+    <glyph glyph-name="table"
+      unicode="&#xF0CE;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM232 16H54A6 6 0 0 0 48 22V152H232V16zM232 200H48V336H232V200zM458 16H280V152H464V22A6 6 0 0 0 458 16zM464 200H280V336H464V200z" />
+    <glyph glyph-name="tablet-alt"
+      unicode="&#xF3FA;"
+      horiz-adv-x="448" d=" M356 80H92C85.4 80 80 85.4 80 92V356C80 362.6 85.4 368 92 368H356C362.6 368 368 362.6 368 356V92C368 85.4 362.6 80 356 80zM448 400V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H400C426.5 448 448 426.5 448 400zM400 -10V394C400 397.3 397.3 400 394 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10zM224 64C206.3 64 192 49.7 192 32S206.3 0 224 0S256 14.3 256 32S241.7 64 224 64z" />
+    <glyph glyph-name="tablet-android-alt"
+      unicode="&#xF3FC;"
+      horiz-adv-x="448" d=" M356 80H92C85.4 80 80 85.4 80 92V356C80 362.6 85.4 368 92 368H356C362.6 368 368 362.6 368 356V92C368 85.4 362.6 80 356 80zM448 400V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H400C426.5 448 448 426.5 448 400zM400 -10V394C400 397.3 397.3 400 394 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10zM288 28V36C288 42.6 282.6 48 276 48H172C165.4 48 160 42.6 160 36V28C160 21.4 165.4 16 172 16H276C282.6 16 288 21.4 288 28z" />
+    <glyph glyph-name="tablet-android"
+      unicode="&#xF3FB;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM394 -16H54C50.7 -16 48 -13.3 48 -10V394C48 397.3 50.7 400 54 400H394C397.3 400 400 397.3 400 394V-10C400 -13.3 397.3 -16 394 -16zM276 16H172C165.4 16 160 21.4 160 28V36C160 42.6 165.4 48 172 48H276C282.6 48 288 42.6 288 36V28C288 21.4 282.6 16 276 16z" />
+    <glyph glyph-name="tablet-rugged"
+      unicode="&#xF48F;"
+      horiz-adv-x="448" d=" M439.2 283.6C444.6 286.3 448 291.8 448 297.9V374.1C448 380.2 444.6 385.7 439.2 388.4L416 400C416 426.5 394.5 448 368 448H80C53.5 448 32 426.5 32 400L8.8 388.4C3.4 385.7 0 380.2 0 374.1V297.9C0 291.8 3.4 286.3 8.8 283.6L32 272V256L8.8 244.4C3.4 241.7 0 236.2 0 230.1V153.9C0 147.8 3.4 142.3 8.8 139.6L32 128V112L8.8 100.4C3.4 97.7 0 92.2 0 86.1V9.9C0 3.8 3.4 -1.7 8.8 -4.4L32 -16C32 -42.5 53.5 -64 80 -64H368C394.5 -64 416 -42.5 416 -16L439.2 -4.4C444.6 -1.7 448 3.8 448 9.9V86.1C448 92.2000000000001 444.6 97.7000000000001 439.2 100.4L416 112V128L439.2 139.6C444.6 142.3 448 147.8 448 153.9V230.1C448 236.2 444.6 241.7 439.2 244.4000000000001L416 256V272L439.2 283.6zM368 0C368 -8.8 360.8 -16 352 -16H96C87.2 -16 80 -8.8 80 0V384C80 392.8 87.2 400 96 400H352C360.8 400 368 392.8 368 384V0z" />
+    <glyph glyph-name="tablet"
+      unicode="&#xF10A;"
+      horiz-adv-x="448" d=" M256 32C256 14.3 241.7 0 224 0S192 14.3 192 32C192 53.3 206.3 64 224 64S256 49.7 256 32zM448 400V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V400C0 426.5 21.5 448 48 448H400C426.5 448 448 426.5 448 400zM400 -10V394C400 397.3 397.3 400 394 400H54C50.7 400 48 397.3 48 394V-10C48 -13.3 50.7 -16 54 -16H394C397.3 -16 400 -13.3 400 -10z" />
+    <glyph glyph-name="tablets"
+      unicode="&#xF490;"
+      horiz-adv-x="640" d=" M160 256C71.6 256 0 184.4 0 96S71.6 -64 160 -64S320 7.6 320 96S248.4 256 160 256zM50.7 72H269.2C243.6 -45 76.4 -44.7 50.7 72zM50.7 120C76.4 236.9 243.6 236.9 269.2 120H50.7zM593.1 401.1C530.7 463.5 429.3 463.6 366.8 401.1S304.3 237.3 366.8 174.8C429.2 112.4 530.6 112.3 593.1 174.8S655.6 338.7000000000001 593.1 401.1zM385.8 348.3L540.3 193.8C439.7 129.2 321 247.5 385.8 348.3zM574.2 227.7L419.7 382.2C520.3 446.9 639 328.5 574.2 227.7z" />
+    <glyph glyph-name="tachometer-alt-average"
+      unicode="&#xF624;"
+      horiz-adv-x="576" d=" M176 272C158.33 272 144 257.67 144 240S158.33 208 176 208S208 222.33 208 240S193.67 272 176 272zM128 160C110.33 160 96 145.67 96 128S110.33 96 128 96S160 110.33 160 128S145.67 160 128 160zM432 240C432 257.67 417.67 272 400 272S368 257.67 368 240S382.33 208 400 208S432 222.33 432 240zM416 128C416 110.33 430.33 96 448 96S480 110.33 480 128S465.67 160 448 160S416 145.67 416 128zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16zM312 155.25V288C312 301.25 301.25 312 288 312S264 301.25 264 288V155.25C240.56 145.75 224 122.84 224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352 122.85 335.44 145.75 312 155.25z" />
+    <glyph glyph-name="tachometer-alt-fast"
+      unicode="&#xF625;"
+      horiz-adv-x="576" d=" M416 128C416 110.33 430.33 96 448 96S480 110.33 480 128S465.67 160 448 160S416 145.67 416 128zM224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352.01 107.67 348.65 118.46 343.2 127.88L418.95 225.27C427.11 235.74 425.2 250.82 414.76 258.94C404.2 267.11 389.2 265.19 381.07 254.74L305.31 157.34C299.77 158.9 294.04 160.0100000000001 288.01 160.0100000000001C252.65 160 224 131.35 224 96zM320 288C320 305.67 305.67 320 288 320S256 305.67 256 288S270.33 256 288 256S320 270.3300000000001 320 288zM128 160C110.33 160 96 145.67 96 128S110.33 96 128 96S160 110.33 160 128S145.67 160 128 160zM176 208C193.67 208 208 222.33 208 240S193.67 272 176 272S144 257.67 144 240S158.33 208 176 208zM0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416S0 287.06 0 128zM48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16H75.73C57.56 50.37 48 88.88 48 128z" />
+    <glyph glyph-name="tachometer-alt-fastest"
+      unicode="&#xF626;"
+      horiz-adv-x="576" d=" M400 208C417.67 208 432 222.33 432 240S417.67 272 400 272S368 257.67 368 240S382.33 208 400 208zM128 160C110.33 160 96 145.67 96 128S110.33 96 128 96S160 110.33 160 128S145.67 160 128 160zM288 256C305.67 256 320 270.3300000000001 320 288S305.67 320 288 320S256 305.67 256 288S270.33 256 288 256zM443.28 151.53L341.41 131.15C329.96 148.51 310.35 160 288 160C252.65 160 224 131.35 224 96C224 84.28 227.38 73.45 232.88 64H343.13C346.67 70.08 348.86 76.89 350.31 83.99L452.72 104.47C465.72 107.06 474.1300000000001 119.7000000000001 471.53 132.7000000000001S456.22 154.3100000000001 443.2800000000001 151.53zM176 272C158.33 272 144 257.67 144 240S158.33 208 176 208S208 222.33 208 240S193.67 272 176 272zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-alt-slow"
+      unicode="&#xF627;"
+      horiz-adv-x="576" d=" M128 160C110.33 160 96 145.67 96 128S110.33 96 128 96S160 110.33 160 128S145.67 160 128 160zM288 160C281.96 160 276.23 158.89 270.7 157.33L194.94 254.73C186.82 265.18 171.82 267.11 161.25 258.93C150.81 250.81 148.91 235.73 157.06 225.26L232.81 127.87C227.36 118.45 224 107.66 224 95.99C224 84.27 227.38 73.44 232.88 63.99H343.13C348.63 73.44 352.01 84.27 352.01 95.99C352 131.35 323.35 160 288 160zM288 256C305.67 256 320 270.3300000000001 320 288S305.67 320 288 320S256 305.67 256 288S270.33 256 288 256zM416 128C416 110.33 430.33 96 448 96S480 110.33 480 128S465.67 160 448 160S416 145.67 416 128zM432 240C432 257.67 417.67 272 400 272S368 257.67 368 240S382.33 208 400 208S432 222.33 432 240zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-alt-slowest"
+      unicode="&#xF628;"
+      horiz-adv-x="576" d=" M288 160C265.65 160 246.04 148.51 234.59 131.16L132.72 151.54C119.66 154.31 107.06 145.71 104.47 132.71S110.28 107.0700000000001 123.28 104.48L225.69 84C227.14 76.9 229.33 70.09 232.87 64.01H343.12C348.62 73.46 352 84.29 352 96.01C352 131.35 323.35 160 288 160zM176 208C193.67 208 208 222.33 208 240S193.67 272 176 272S144 257.67 144 240S158.33 208 176 208zM416 128C416 110.33 430.33 96 448 96S480 110.33 480 128S465.67 160 448 160S416 145.67 416 128zM288 256C305.67 256 320 270.3300000000001 320 288S305.67 320 288 320S256 305.67 256 288S270.33 256 288 256zM432 240C432 257.67 417.67 272 400 272S368 257.67 368 240S382.33 208 400 208S432 222.33 432 240zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-alt"
+      unicode="&#xF3FD;"
+      horiz-adv-x="576" d=" M128 160C110.33 160 96 145.67 96 128S110.33 96 128 96S160 110.33 160 128S145.67 160 128 160zM282.65 257.08L298.89 305.79C300.05 309.24 302.07 312.14 303.81 315.2200000000001C299.08 317.98 293.87 320 288 320C270.33 320 256 305.67 256 288C256 272.2200000000001 267.63 259.7100000000001 282.65 257.08zM176 272C158.33 272 144 257.67 144 240S158.33 208 176 208S208 222.33 208 240S193.67 272 176 272zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16zM416 128C416 110.33 430.33 96 448 96S480 110.33 480 128S465.67 160 448 160S416 145.67 416 128zM359.5900000000001 310.77C346.87 315 333.43 308.15 329.2100000000001 295.6L283.87 159.59C250.49 157.42 224 129.94 224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352.01 115.45 343.15 132.66 329.46 144.4L374.8 280.41C378.97 292.98 372.16 306.58 359.59 310.77zM432 240C432 255.8 420.34 268.33 405.28 270.93C405.21 270.7200000000001 405.21 270.5 405.14 270.28L385.64 211.79C390.01 209.55 394.75 207.99 400 207.99C417.67 208 432 222.33 432 240z" />
+    <glyph glyph-name="tachometer-average"
+      unicode="&#xF629;"
+      horiz-adv-x="576" d=" M312 155.25V288C312 301.25 301.25 312 288 312S264 301.25 264 288V155.25C240.56 145.75 224 122.84 224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352 122.85 335.44 145.75 312 155.25zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-fast"
+      unicode="&#xF62A;"
+      horiz-adv-x="576" d=" M381.06 254.73L305.3 157.33C299.76 158.89 294.0300000000001 160 288 160C252.65 160 224 131.35 224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352.01 107.67 348.65 118.46 343.2 127.88L418.95 225.27C427.11 235.74 425.2 250.82 414.76 258.94C404.19 267.0900000000001 389.16 265.17 381.06 254.73zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-fastest"
+      unicode="&#xF62B;"
+      horiz-adv-x="576" d=" M443.28 151.53L341.41 131.15C329.96 148.51 310.35 160 288 160C252.65 160 224 131.35 224 96C224 84.28 227.38 73.45 232.88 64H343.13C346.67 70.08 348.86 76.89 350.31 83.99L452.72 104.47C465.72 107.06 474.1300000000001 119.7000000000001 471.53 132.7000000000001S456.22 154.3100000000001 443.2800000000001 151.53zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-slow"
+      unicode="&#xF62C;"
+      horiz-adv-x="576" d=" M288 160C281.96 160 276.23 158.89 270.7 157.33L194.94 254.73C186.82 265.18 171.82 267.11 161.25 258.93C150.81 250.81 148.91 235.73 157.06 225.26L232.81 127.87C227.36 118.45 224 107.66 224 95.99C224 84.27 227.38 73.44 232.88 63.99H343.13C348.63 73.44 352.01 84.27 352.01 95.99C352 131.35 323.35 160 288 160zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer-slowest"
+      unicode="&#xF62D;"
+      horiz-adv-x="576" d=" M288 160C265.65 160 246.04 148.51 234.59 131.16L132.72 151.54C119.66 154.31 107.06 145.71 104.47 132.71S110.28 107.0700000000001 123.28 104.48L225.69 84C227.14 76.9 229.33 70.09 232.87 64.01H343.12C348.62 73.46 352 84.29 352 96.01C352 131.35 323.35 160 288 160zM288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16z" />
+    <glyph glyph-name="tachometer"
+      unicode="&#xF0E4;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM500.27 16H75.73C57.56 50.37 48 88.88 48 128C48 260.3400000000001 155.66 368 288 368S528 260.3400000000001 528 128C528 88.88 518.44 50.37 500.27 16zM359.59 310.77C346.87 315 333.43 308.15 329.21 295.6L283.87 159.59C250.49 157.42 224 129.94 224 96C224 84.28 227.38 73.45 232.88 64H343.13C348.63 73.45 352.01 84.28 352.01 96C352.01 115.45 343.15 132.66 329.46 144.4L374.8 280.41C378.97 292.98 372.16 306.58 359.59 310.77z" />
+    <glyph glyph-name="tag"
+      unicode="&#xF02B;"
+      horiz-adv-x="512" d=" M497.941 222.059L286.0590000000001 433.941A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V195.882A47.998000000000005 47.998000000000005 0 0 1 14.059 161.941L225.941 -49.941C244.686 -68.6859999999999 275.078 -68.687 293.823 -49.941L497.941 154.177C516.6859999999999 172.922 516.6859999999999 203.314 497.941 222.059zM259.886 -15.996L48 195.882V400H252.118L464 188.118L259.886 -15.996zM192 304C192 277.49 170.51 256 144 256S96 277.49 96 304S117.49 352 144 352S192 330.51 192 304z" />
+    <glyph glyph-name="tags"
+      unicode="&#xF02C;"
+      horiz-adv-x="640" d=" M625.941 154.177L421.823 -49.941C403.077 -68.687 372.685 -68.6859999999999 353.941 -49.941L353.581 -49.581L592 188.118L331.397 448H380.118A48 48 0 0 0 414.059 433.941L625.941 222.059C644.686 203.314 644.686 172.922 625.941 154.177zM497.941 154.177L293.823 -49.941C284.451 -59.314 272.166 -64 259.882 -64C247.598 -64 235.313 -59.314 225.941 -49.941L14.059 161.941A48 48 0 0 0 0 195.882V400C0 426.51 21.49 448 48 448H252.118A47.998000000000005 47.998000000000005 0 0 0 286.059 433.941L497.941 222.059C516.6859999999999 203.314 516.6859999999999 172.922 497.941 154.177zM464 188.118L252.118 400H48V195.882L259.886 -15.996L464 188.118zM144 352C117.49 352 96 330.51 96 304S117.49 256 144 256S192 277.49 192 304S170.51 352 144 352z" />
+    <glyph glyph-name="tally"
+      unicode="&#xF69C;"
+      horiz-adv-x="640" d=" M639.25 276.0900000000001L634.41 291.3400000000001C631.74 299.76 622.75 304.43 614.3199999999999 301.76L536 276.92V400C536 408.8400000000001 528.84 416 520 416H504C495.16 416 488 408.8400000000001 488 400V261.7L408 236.33V400C408 408.8400000000001 400.84 416 392 416H376C367.1600000000001 416 360 408.8400000000001 360 400V221.11L280 195.74V400C280 408.8400000000001 272.84 416 264 416H248C239.16 416 232 408.8400000000001 232 400V180.53L152 155.16V400C152 408.8400000000001 144.84 416 136 416H120C111.16 416 104 408.8400000000001 104 400V139.94L11.17 110.5C2.75 107.83 -1.92 98.84 0.75 90.41L5.59 75.16C8.26 66.74 17.26 62.0700000000001 25.68 64.75L104 89.59V-16C104 -24.84 111.16 -32 120 -32H136C144.84 -32 152 -24.84 152 -16V104.81L232 130.18V-16C232 -24.84 239.16 -32 248 -32H264C272.84 -32 280 -24.84 280 -16V145.39L360 170.76V-16C360 -24.84 367.1600000000001 -32 376 -32H392C400.84 -32 408 -24.84 408 -16V185.98L488 211.35V-16C488 -24.84 495.16 -32 504 -32H520C528.84 -32 536 -24.84 536 -16V226.56L628.83 256C637.26 258.67 641.9200000000001 267.66 639.25 276.0900000000001z" />
+    <glyph glyph-name="tape"
+      unicode="&#xF4DB;"
+      horiz-adv-x="640" d=" M624 16H362.3C414.4000000000001 57 448 120.5 448 192C448 315.7 347.7 416 224 416S0 315.7 0 192S100.3 -32 224 -32H624C632.8 -32 640 -24.8 640 -16V0C640 8.8 632.8 16 624 16zM224 16C127 16 48 95 48 192S127 368 224 368S400 289 400 192S321 16 224 16zM224 288C171 288 128 245 128 192S171 96 224 96S320 139 320 192S277 288 224 288zM224 144C197.5 144 176 165.5 176 192S197.5 240 224 240S272 218.5 272 192S250.5 144 224 144z" />
+    <glyph glyph-name="tasks"
+      unicode="&#xF0AE;"
+      horiz-adv-x="512" d=" M512 320V352C512 358.6 506.6 364 500 364H204C197.4 364 192 358.5 192 351.8V320C192 313.4 197.4 308 204 308H500C506.6 308 512 313.4 512 320zM512 160V192C512 198.6 506.6 204 500 204H204C197.4 204 192 198.6 192 192V160C192 153.4 197.4 148 204 148H500C506.6 148 512 153.4 512 160zM512 0V32C512 38.6 506.6 44 500 44H204C197.4 44 192 38.6 192 32V0C192 -6.6 197.4 -12 204 -12H500C506.6 -12 512 -6.6 512 0zM162.1 383.2L70.1 291.4C65.4 286.7000000000001 57.8 286.7000000000001 53.1 291.4L40.7 303.8L3.5 341.3C-1.2 346 -1.2 353.6 3.5 358.3L15.9 370.7000000000001C20.6 375.4000000000001 28.2 375.4000000000001 32.9 370.7000000000001L61.7 341.5L132.8 412.6C137.5 417.3 145.1 417.3 149.8 412.6L162.2 400.2C166.8 395.4000000000001 166.8 387.8 162.1 383.2000000000001zM162.1 223.3L70.1 131.3C65.4 126.6 57.8 126.6 53.1 131.3L40.7 143.7L3.5 181.4C-1.2 186.1 -1.2 193.7 3.5 198.4L15.9 210.8C20.6 215.5 28.2 215.5 32.9 210.8L61.7 181.6L132.8 252.7C137.5 257.4 145.1 257.4 149.8 252.7L162.2 240.3C166.8 235.6 166.8 228 162.1 223.3zM64 64C37.5 64 16.4 42.5 16.4 16S37.5 -32 64 -32S112 -10.5 112 16S90.5 64 64 64z" />
+    <glyph glyph-name="taxi"
+      unicode="&#xF1BA;"
+      horiz-adv-x="512" d=" M112 168C94.33 168 80 153.67 80 136S94.33 104 112 104S144 118.33 144 136S129.67 168 112 168zM400 168C382.33 168 368 153.67 368 136S382.33 104 400 104S432 118.33 432 136S417.67 168 400 168zM328 144H184C179.58 144 176 140.42 176 136V120C176 115.58 179.58 112 184 112H328C332.42 112 336 115.58 336 120V136C336 140.42 332.42 144 328 144zM454.15 232.03L439.12 309.69C432.56 343.48 402.84 368 368.44 368H352V384C352 401.67 337.67 416 320 416H192C174.33 416 160 401.67 160 384V368H143.56C109.15 368 79.44 343.48 72.87 309.69L57.84 232.03C23.83 217.26 0 183.45 0 144V96C0 72.37 12.95 51.96 32 40.88V-8C32 -21.25 42.75 -32 56 -32H88C101.25 -32 112 -21.25 112 -8V32H400V-8C400 -21.25 410.75 -32 424 -32H456C469.25 -32 480 -21.25 480 -8V40.88C499.05 51.97 512 72.37 512 96V144C512 183.45 488.17 217.26 454.15 232.03zM120 300.56C122.19 311.8300000000001 132.09 320 143.56 320H368.44C379.9100000000001 320 389.82 311.8300000000001 392 300.56L403.7200000000001 240H108.28L120 300.56zM464 96C464 87.18 456.82 80 448 80H64C55.18 80 48 87.18 48 96V144C48 170.47 69.53 192 96 192H416C442.4700000000001 192 464 170.47 464 144V96z" />
+    <glyph glyph-name="teeth-open"
+      unicode="&#xF62F;"
+      horiz-adv-x="640" d=" M544 448H96C42.98 448 0 405.02 0 352V256C0 220.65 28.66 192 64 192H576C611.34 192 640 220.65 640 256V352C640 405.02 597.02 448 544 448zM160 235.43C160 229.12 154.88 224 148.57 224H91.43C85.12 224 80 229.12 80 235.43V248C80 270.0900000000001 97.91 288 120 288S160 270.0900000000001 160 248V235.43zM304 237.71C304 230.14 297.86 224 290.29 224H221.72C214.15 224 208.01 230.14 208.01 237.71V272C208.01 298.51 229.5000000000001 320 256.01 320S304.01 298.51 304.01 272V237.71zM432 237.71C432 230.14 425.86 224 418.29 224H349.7200000000001C342.1500000000001 224 336.0100000000001 230.14 336.0100000000001 237.71V272C336.0100000000001 298.51 357.5000000000001 320 384.0100000000001 320S432.0100000000001 298.51 432.0100000000001 272V237.71zM560 235.43C560 229.12 554.88 224 548.57 224H491.4300000000001C485.1200000000001 224 480.0000000000001 229.12 480.0000000000001 235.43V248C480.0000000000001 270.0900000000001 497.9100000000001 288 520 288S560 270.0900000000001 560 248V235.43zM592 297.94C575.96 320.87 549.53 336 520 336C500.65 336 482.56 329.57 467.87 318.69C451.44 348.08 420 368 384 368C359.44 368 337 358.73 320 343.5C303 358.73 280.56 368 256 368C220 368 188.56 348.08 172.13 318.69C157.44 329.57 139.35 336 120 336C90.47 336 64.04 320.87 48 297.94V352C48 378.4700000000001 69.53 400 96 400H544C570.47 400 592 378.4700000000001 592 352V297.94zM576 160H64C28.66 160 0 131.35 0 96V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V96C640 131.35 611.34 160 576 160zM480 116.57C480 122.88 485.12 128 491.43 128H548.57C554.88 128 560 122.88 560 116.57V104C560 81.91 542.09 64 520 64S480 81.91 480 104V116.57zM336 114.29C336 121.86 342.14 128 349.71 128H418.28C425.85 128 431.99 121.86 431.99 114.29V112C431.99 85.49 410.5 64 383.99 64S335.99 85.49 335.99 112V114.29zM208 114.29C208 121.86 214.14 128 221.71 128H290.28C297.85 128 303.99 121.86 303.99 114.29V112C303.99 85.49 282.5 64 255.99 64S207.99 85.49 207.99 112V114.29zM80 116.57C80 122.88 85.12 128 91.43 128H148.57C154.88 128 160 122.88 160 116.57V104C160 81.91 142.09 64 120 64S80 81.91 80 104V116.57zM592 32C592 5.53 570.47 -16 544 -16H96C69.53 -16 48 5.53 48 32V53.68C63.93 30.96 90.21 16 120 16C146.38 16 170.09 27.67 186.23 46.12C203.75 27.58 228.55 16 256 16C280.56 16 303 25.27 320 40.5C337 25.27 359.44 16 384 16C411.45 16 436.25 27.58 453.77 46.12C469.91 27.67 493.62 16 520 16C549.79 16 576.07 30.96 592 53.68V32z" />
+    <glyph glyph-name="teeth"
+      unicode="&#xF62E;"
+      horiz-adv-x="640" d=" M544 448H96C42.98 448 0 405.02 0 352V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V352C640 405.02 597.02 448 544 448zM592 32C592 5.53 570.47 -16 544 -16H96C69.53 -16 48 5.53 48 32V61.68C63.93 38.96 90.21 24 120 24C146.38 24 170.09 35.67 186.23 54.12C203.75 35.58 228.55 24 256 24C280.56 24 303 33.27 320 48.5C337 33.27 359.44 24 384 24C411.45 24 436.25 35.58 453.77 54.12C469.91 35.67 493.62 24 520 24C549.79 24 576.07 38.96 592 61.68V32zM93.33 160H146.66C154.02 160 159.99 154.03 159.99 146.67V112C159.99 89.91 142.08 72 119.99 72S79.99 89.91 79.99 112V146.67C80 154.03 85.97 160 93.33 160zM80 205.33V240C80 262.0900000000001 97.91 280 120 280S160 262.0900000000001 160 240V205.33C160 197.97 154.03 192 146.67 192H93.33C85.97 192 80 197.97 80 205.33zM221.71 160H290.28C297.85 160 303.99 153.86 303.99 146.29V120C303.99 93.49 282.5 72 255.99 72S207.99 93.49 207.99 120V146.29C208 153.86 214.14 160 221.71 160zM208 205.71V264C208 290.51 229.49 312 256 312S304 290.51 304 264V205.71C304 198.14 297.86 192 290.29 192H221.72C214.14 192 208 198.14 208 205.71zM349.71 160H418.28C425.85 160 431.99 153.86 431.99 146.29V120C431.99 93.49 410.5 72 383.99 72S335.99 93.49 335.99 120V146.29C336 153.86 342.14 160 349.71 160zM336 205.71V264C336 290.51 357.49 312 384 312S432 290.51 432 264V205.71C432 198.14 425.86 192 418.29 192H349.7200000000001C342.1400000000001 192 336 198.14 336 205.71zM493.33 160H546.66C554.02 160 559.99 154.03 559.99 146.67V112C559.99 89.91 542.08 72 519.99 72S479.99 89.91 479.99 112V146.67C480 154.03 485.97 160 493.33 160zM480 205.33V240C480 262.0900000000001 497.91 280 520 280S560 262.0900000000001 560 240V205.33C560 197.97 554.03 192 546.67 192H493.34C485.97 192 480 197.97 480 205.33zM592 290.32C576.07 313.04 549.79 328 520 328C500.47 328 482.41 321.61 467.8 310.8C451.35 340.14 419.95 360 384 360C359.44 360 337 350.73 320 335.5C303 350.73 280.56 360 256 360C220.05 360 188.65 340.14 172.2 310.8C157.59 321.6 139.52 328 120 328C90.21 328 63.93 313.04 48 290.3200000000001V352C48 378.4700000000001 69.53 400 96 400H544C570.47 400 592 378.4700000000001 592 352V290.32z" />
+    <glyph glyph-name="temperature-frigid"
+      unicode="&#xF768;"
+      horiz-adv-x="576" d=" M200 322.8L240.2 363C244.9 367.7 244.9 375.3 240.2 380L231.7 388.5C227 393.2 219.4 393.2 214.7 388.5L200 373.7V404C200 410.6 194.6 416 188 416H164C157.4 416 152 410.6 152 404V373.7L137.2 388.5C132.5 393.2 124.9 393.2 120.2 388.5L111.7 380C107 375.3 107 367.7 111.7 363L151.9 322.8V265.9L101.6 295L86.6 350.7C84.9 357.2 78.2 361 71.7 359.3L60 356.1C53.5 354.4 49.7 347.7 51.4 341.2L56.9 320.8L30.3 336.1C24.5 339.5 17.1 337.5 13.7 331.7L1.6 310.7C-1.8 304.9 0.2 297.5 6 294.1L32.6 278.8L12.2 273.3C5.7 271.6 1.9 264.9 3.6 258.4L6.7 246.7C8.4 240.2 15.1 236.4 21.6 238.1L77.3 253L127.5 224L77.3 195L21.6 210C15.1 211.7 8.5 207.9 6.7 201.4L3.6 189.7C1.9 183.2 5.7 176.6 12.2 174.8L32.6 169.3L6.1 153.9C0.3 150.5000000000001 -1.7 143.1 1.7 137.3L13.8 116.3C17.2 110.5 24.6 108.5 30.4 111.9L57 127.2L51.5 106.8C49.8 100.3 53.6 93.7 60.1 91.9L71.8 88.8C78.3 87.1 84.9 90.9 86.7 97.4L101.6 153.0000000000001L152 182.1000000000001V125.2000000000001L111.8 85C107.1 80.3 107.1 72.7 111.8 68L120.3 59.5C125 54.8 132.6 54.8 137.3 59.5L152.1 74.3V44C152.1 37.4 157.5 32 164.1 32H188.1C194.7 32 200.1 37.4 200.1 44V74.3L214.9 59.5C219.6 54.8 227.2000000000001 54.8 231.9000000000001 59.5L240.4000000000001 68C245.1 72.7 245.1 80.3 240.4000000000001 85L200 125.2V182.1L268.3 142.7C273.4000000000001 155.7 279.7 168.4 288 180.2V187.4L224.6 224L288 260.6V316.7L200 265.9V322.8zM544 169.5V336C544 397.9 493.9 448 432 448S320 397.9 320 336V169.5C300.3 144.9 288 114 288 80C288 0.5 352.5 -64 432 -64S576 0.5 576 80C576 114 563.7 144.9 544 169.5zM432 -16C379.1 -16 336 27.1 336 80C336 107 347.7 127.3 357.5 139.5L368 152.6V336C368 371.3 396.7 400 432 400S496 371.3 496 336V152.7L506.5 139.6C516.3 127.3 528 107 528 80C528 27.1 484.9 -16 432 -16zM448 125.1V144C448 152.8 440.8 160 432 160S416 152.8 416 144V125.1C397.4 118.5 384 100.9 384 80C384 53.5 405.5 32 432 32S480 53.5 480 80C480 100.9 466.6 118.5 448 125.1z" />
+    <glyph glyph-name="temperature-high"
+      unicode="&#xF769;"
+      horiz-adv-x="448" d=" M368 448C323.9 448 288 412.1 288 368S323.9 288 368 288S448 323.9 448 368S412.1 448 368 448zM368 336C350.3 336 336 350.3 336 368S350.3 400 368 400S400 385.7 400 368S385.7 336 368 336zM256 336C256 397.9 205.9 448 144 448S32 397.9 32 336V169.5C12.3 144.9 0 114 0 80C0 0.5 64.5 -64 144 -64S288 0.5 288 80C288 114 275.7 144.9 256 169.5V336zM144 -16C91.1 -16 48 27.1 48 80C48 107 59.7 127.3 69.5 139.5L80 152.6V336C80 371.3 108.7 400 144 400S208 371.3 208 336V152.7L218.5 139.6C228.3 127.3 240 107 240 80C240 27.1 196.9 -16 144 -16zM160 125.1V336C160 344.8 152.8 352 144 352S128 344.8 128 336V125.1C109.4 118.5 96 100.9 96 80C96 53.5 117.5 32 144 32S192 53.5 192 80C192 100.9 178.6 118.5 160 125.1z" />
+    <glyph glyph-name="temperature-hot"
+      unicode="&#xF76A;"
+      horiz-adv-x="576" d=" M448 125.1V336C448 344.8 440.8 352 432 352S416 344.8 416 336V125.1C397.4 118.5 384 100.9 384 80C384 53.5 405.5 32 432 32S480 53.5 480 80C480 100.9 466.6 118.5 448 125.1zM258.7 109.5L248.9 94.9L224 58L199.1 94.9L181.3 121.2L150.1 115.2L106.5 106.7L115 150.6L121 181.7L94.8 199.5L57.8 224.6L94.8 249.7L121 267.5L115 298.6L106.5 342.5L150.2 334L181.4 328L199.2 354.3L224 391L248.9 354.1L266.6 327.8L288 331.9V336C288 352.3 291.3 367.8 296.4 382.4L288.7 380.9L253.3 433.3C246.7 443.1 235.4 448 224 448S201.3 443.1 194.7 433.3L159.3 380.9L97.3 392.9C95 393.3 92.8 393.6 90.5 393.6C81.2 393.6 72.2 389.9 65.5 383.2C57.2 374.8 53.6 363 55.8 351.4L67.8 289.3L15.5 253.8C5.8 247.2 0 236.2 0 224.5C0 212.7 5.8 201.8 15.6 195.2L67.9 159.8L55.9 97.7C53.7 86.1 57.3 74.2 65.6 65.9C72.3 59.2 81.2 55.5 90.6 55.5C92.8 55.5 95.1 55.7 97.4 56.1L159.4 68.1L194.8 15.7A35.318 35.318 0 0 1 253.4 15.7L263.3 30.4C258.6 46.2 256 62.8 256 80.1C256 90 257 99.8 258.7 109.5zM544 169.5V336C544 397.9 493.9 448 432 448S320 397.9 320 336V169.5C300.3 144.9 288 114 288 80C288 0.5 352.5 -64 432 -64S576 0.5 576 80C576 114 563.7 144.9 544 169.5zM432 -16C379.1 -16 336 27.1 336 80C336 107 347.7 127.3 357.5 139.5L368 152.6V336C368 371.3 396.7 400 432 400S496 371.3 496 336V152.7L506.5 139.6C516.3 127.3 528 107 528 80C528 27.1 484.9 -16 432 -16zM288 284C271.9 301.1 249.3 312 224 312C175.5 312 136 272.5 136 224S175.5 136 224 136C241.5 136 257.6 141.3 271.3 150.1C275.9000000000001 160.5 281.2 170.6 288 180.2000000000001V284zM224 184C201.9 184 184 201.9 184 224S201.9 264 224 264S264 246.1 264 224S246.1 184 224 184z" />
+    <glyph glyph-name="temperature-low"
+      unicode="&#xF76B;"
+      horiz-adv-x="448" d=" M160 125.1V144C160 152.8 152.8 160 144 160S128 152.8 128 144V125.1C109.4 118.5 96 100.9 96 80C96 53.5 117.5 32 144 32S192 53.5 192 80C192 100.9 178.6 118.5 160 125.1zM256 336C256 397.9 205.9 448 144 448S32 397.9 32 336V169.5C12.3 144.9 0 114 0 80C0 0.5 64.5 -64 144 -64S288 0.5 288 80C288 114 275.7 144.9 256 169.5V336zM144 -16C91.1 -16 48 27.1 48 80C48 107 59.7 127.3 69.5 139.5L80 152.6V336C80 371.3 108.7 400 144 400S208 371.3 208 336V152.7L218.5 139.6C228.3 127.3 240 107 240 80C240 27.1 196.9 -16 144 -16zM368 448C323.9 448 288 412.1 288 368S323.9 288 368 288S448 323.9 448 368S412.1 448 368 448zM368 336C350.3 336 336 350.3 336 368S350.3 400 368 400S400 385.7 400 368S385.7 336 368 336z" />
+    <glyph glyph-name="tenge"
+      unicode="&#xF7D7;"
+      horiz-adv-x="384" d=" M372 304H12C5.4 304 0 298.6 0 292V252C0 245.4 5.4 240 12 240H160V-20C160 -26.6 165.4 -32 172 -32H212C218.6 -32 224 -26.6 224 -20V240H372C378.6 240 384 245.4 384 252V292C384 298.6 378.6 304 372 304zM372 416H12C5.4 416 0 410.6 0 404V364C0 357.4 5.4 352 12 352H372C378.6 352 384 357.4 384 364V404C384 410.6 378.6 416 372 416z" />
+    <glyph glyph-name="tennis-ball"
+      unicode="&#xF45E;"
+      horiz-adv-x="496" d=" M495 211.8C495 211.9 495.1 212 495.1 212.1H495C485.2 332.8 388.8 429.2 268.1 439V439.1C268 439.1 267.9000000000001 439 267.8 439C261.3 439.5 254.7 440 248 440C111.2 440 0 328.8 0 192C0 185.3 0.5 178.7 1 172.1V172C10.7 51.2 107.2 -45.3 228 -55H228.1C234.7 -55.5 241.3 -56 248 -56C384.8 -56 496 55.2 496 192C496 198.7 495.5 205.2 495 211.8zM219.3 389.7C217.6 383.5 216.5 377.1 216.5 370.4C216.5 332.7 199.6 290.5 174.6 265.5C149.5 240.5 107.4 223.6 69.7 223.6C63 223.6 56.6 222.5 50.4 220.8C63 308 132 377 219.3 389.7zM50 165.1C54.2 171.5 61.4 175.6 69.6 175.6C119.9 175.6 174.4 197.6 208.4 231.6C242.4 265.6 264.3 320.1 264.4 370.4000000000001C264.4 378.6 268.4 385.8 274.8 390.0000000000001C363.6 378 434 307.6 446 218.8C441.8 212.4 434.6 208.4 426.4 208.4C376 208.4 321.6 186.4 287.6 152.4C253.6 118.4 231.7 64 231.6 13.6C231.6 5.3 227.5 -1.9 221.1 -6.1C132.4 6 62 76.4 50 165.1zM276.8 -5.7C278.5 0.5 279.6 6.9 279.6 13.6C279.6 51.3 296.5 93.5 321.5 118.5C346.6 143.6 388.7 160.4 426.4 160.4C433.1 160.4 439.5 161.5 445.7 163.2C433 76 364 7 276.8 -5.7z" />
+    <glyph glyph-name="terminal"
+      unicode="&#xF120;"
+      horiz-adv-x="640" d=" M41.678 409.899L251.092 200.485C255.778 195.799 255.778 188.201 251.092 183.514L41.678 -25.899C36.992 -30.585 29.394 -30.585 24.707 -25.899L4.908 -6.101C0.222 -1.415 0.222 6.183 4.908 10.87L185.607 192L4.908 373.13C0.222 377.8160000000001 0.222 385.414 4.908 390.101L24.707 409.9C29.393 414.586 36.991 414.586 41.678 409.899zM640 -20V8C640 14.627 634.627 20 628 20H300C293.373 20 288 14.627 288 8V-20C288 -26.627 293.373 -32 300 -32H628C634.627 -32 640 -26.627 640 -20z" />
+    <glyph glyph-name="text-height"
+      unicode="&#xF034;"
+      horiz-adv-x="512" d=" M0 308.8690000000001V404C0 410.627 5.373 416 12 416H308C314.627 416 320 410.627 320 404V308.8690000000001C320 302.242 314.627 296.8690000000001 308 296.8690000000001H281.253C274.626 296.8690000000001 269.253 302.242 269.253 308.8690000000001V368H187.238V16H236C242.627 16 248 10.627 248 4V-20C248 -26.627 242.627 -32 236 -32H84C77.373 -32 72 -26.627 72 -20V4C72 10.627 77.373 16 84 16H132.762V368H50.125V308.8690000000001C50.125 302.242 44.752 296.8690000000001 38.125 296.8690000000001H12C5.373 296.8690000000001 0 302.241 0 308.8690000000001zM423.276 412.241L355.2820000000001 340.24C348.122 332.659 353.4190000000001 320 364.0060000000001 320H408V64H364.007C353.427 64 348.117 51.348 355.283 43.76L423.276 -28.241C428.011 -33.255 435.992 -33.251 440.724 -28.241L508.718 43.76C515.8779999999999 51.341 510.581 64 499.994 64H456V320H499.993C510.573 320 515.883 332.652 508.717 340.24L440.724 412.241C435.989 417.255 428.008 417.251 423.276 412.241z" />
+    <glyph glyph-name="text-width"
+      unicode="&#xF035;"
+      horiz-adv-x="448" d=" M0 308.8690000000001V404C0 410.627 5.373 416 12 416H436C442.627 416 448 410.627 448 404V308.8690000000001C448 302.242 442.627 296.8690000000001 436 296.8690000000001H409.253C402.626 296.8690000000001 397.253 302.242 397.253 308.8690000000001V368H251.238V176H300C306.627 176 312 170.627 312 164V140C312 133.373 306.627 128 300 128H148C141.373 128 136 133.373 136 140V164C136 170.627 141.373 176 148 176H196.762V368H50.125V308.8690000000001C50.125 302.242 44.752 296.8690000000001 38.125 296.8690000000001H12C5.373 296.8690000000001 0 302.241 0 308.8690000000001zM444.241 56.724L372.24 124.718C364.659 131.878 352 126.581 352 115.994V72H96V115.993C96 126.573 83.348 131.883 75.76 124.717L3.759 56.724C-1.255 51.989 -1.251 44.008 3.759 39.276L75.76 -28.718C83.341 -35.878 96 -30.581 96 -19.994V24H352V-19.993C352 -30.573 364.652 -35.883 372.24 -28.717L444.241 39.276C449.255 44.011 449.251 51.992 444.241 56.724z" />
+    <glyph glyph-name="th-large"
+      unicode="&#xF009;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM232 368V216H48V362A6 6 0 0 0 54 368H232zM48 168H232V16H54A6 6 0 0 0 48 22V168zM280 16V168H464V22A6 6 0 0 0 458 16H280zM464 216H280V368H458A6 6 0 0 0 464 362V216z" />
+    <glyph glyph-name="th-list"
+      unicode="&#xF00B;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM472 144H197.333V240H472V144zM472 104V20C472 13.373 466.627 8 460 8H197.333V104H472zM40 240H157.333V144H40V240zM197.333 280V376H460C466.627 376 472 370.627 472 364V280H197.333zM157.333 376V280H40V364C40 370.627 45.373 376 52 376H157.333zM40 104H157.333V8H52C45.373 8 40 13.373 40 20V104z" />
+    <glyph glyph-name="th"
+      unicode="&#xF00A;"
+      horiz-adv-x="512" d=" M0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416H48C21.49 416 0 394.51 0 368zM472 144H354.667V240H472V144zM314.6670000000001 144H197.333V240H314.666V144zM314.6670000000001 104V8H197.333V104H314.6670000000001zM40 240H157.333V144H40V240zM197.333 280V376H314.666V280H197.333zM157.333 376V280H40V364C40 370.627 45.373 376 52 376H157.333zM40 104H157.333V8H52C45.373 8 40 13.373 40 20V104zM354.667 8V104H472V8H354.667zM472 280H354.667V376H472V280z" />
+    <glyph glyph-name="theater-masks"
+      unicode="&#xF630;"
+      horiz-adv-x="640" d=" M206.86 203.53C170.98 193.05 146.91 162.23 149.33 129.24C160.73 142 178.14 153 199.23 160.24L206.86 203.53zM606.8 328.0900000000001C562.31 352.85 514.4499999999999 369.74 465.15 378.43C415.85 387.12 365.1 387.62 314.83 379.57C287.52 375.2 265.75 353.25 260.79 325.0800000000001L229.06 145.12C213.67 57.85 324.34 -51.64 387.37 -62.76C450.4 -73.87 591.84 -8.83 607.23 78.44L638.96 258.4C643.9200000000001 286.57 630.97 314.64 606.8000000000001 328.0900000000001zM559.9399999999999 86.77C549.7199999999999 28.82 435.74 -22.55 395.69 -15.49C355.63 -8.43 266.0999999999999 78.83 276.31 136.78L308.04 316.74C309.44 324.7 315.35 331.04 322.4 332.17C367.15 339.33 412.36 338.99 456.8 331.15C501.24 323.32 543.8499999999999 308.17 583.4399999999999 286.14C589.68 282.67 593.06 274.68 591.66 266.72L559.9399999999999 86.77zM80.05 150.34L48.32 329.78C46.92 337.7100000000001 50.29 345.67 56.54 349.14C116.67 382.51 184.72 400.14 253.33 400.14C261.78 400.14 270.27 399.6600000000001 278.75 399.13C288.27 404.39 298.6600000000001 408.21 309.78 409.99C328.67 413 347.82 414.53 366.96 415.31C356.97 429.26 342.49 439.53 325.19 442.3C301.27 446.11 277.24 448 253.32 448C176.66 448 101.02 428.59 33.2 390.96C9.03 377.55 -3.92 349.56 1.05 321.4700000000001L32.78 142.02C47.02 61.54 169.11 0 237.23 0C240.92 0 244.18 0.46 247.52 0.82C235.31 16.38 224.41 32.96 215.92 50.2C163.04 60.7 88.06 105.05 80.05 150.34zM193.36 291.35C192.63 295.48 191.13 299.24 189.29 302.77C181.04 293.83 168.62 286.98 153.97 284.4C139.32 281.82 125.3 284 114.4900000000001 289.58C113.9700000000001 285.63 113.85 281.58 114.5800000000001 277.45C118.4200000000001 255.69 139.16 241.17 160.9200000000001 245S197.2000000000001 269.5999999999999 193.3600000000001 291.3499999999999zM505.95 241.26C484.2 245.1 463.45 230.57 459.61 208.81C458.88 204.68 459 200.63 459.52 196.68C470.33 202.26 484.35 204.45 499.0000000000001 201.86C513.6500000000001 199.28 526.08 192.43 534.33 183.49C536.1700000000001 187.0199999999999 537.6700000000001 190.78 538.4000000000001 194.92C542.2300000000001 216.68 527.71 237.43 505.9500000000001 241.26zM372.95 224.1C387.6 221.52 400.03 214.67 408.27 205.73C410.11 209.26 411.61 213.02 412.34 217.16C416.18 238.92 401.65 259.66 379.89 263.5C358.14 267.34 337.39 252.81 333.55 231.05C332.82 226.92 332.94 222.87 333.46 218.92C344.28 224.49 358.3 226.68 372.95 224.1zM417.26 106.8C373.98 114.43 338.37 135.12 317.77 160.72C313.29 106.95 351.14 57.36 406.81 47.54C462.49 37.72 515.02 71.3799999999999 529.19 123.44C501.08 106.43 460.5400000000001 99.17 417.2600000000001 106.8z" />
+    <glyph glyph-name="thermometer-empty"
+      unicode="&#xF2CB;"
+      horiz-adv-x="256" d=" M184 64C184 33.072 158.928 8 128 8S72 33.072 72 64S97.072 120 128 120S184 94.928 184 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM216 64C216 101.167 194.848 121.235 184 133.527V352C184 382.878 158.878 408 128 408C97.121 408 72 382.878 72 352V133.527C61.023 121.088 40.189 101.246 40.001 64.463C39.754 16.172 79.092 -23.662 127.368 -23.998L128 -24C176.524 -24 216 15.477 216 64z" />
+    <glyph glyph-name="thermometer-full"
+      unicode="&#xF2C7;"
+      horiz-adv-x="256" d=" M224 352C224 405.019 181.019 448 128 448S32 405.019 32 352V148.653C12.225 126.244 0.166 96.864 0.002 64.667C-0.357 -5.636 56.789 -63.509 127.091 -63.997C127.39 -63.999 127.701 -64 128 -64C198.698 -64 256 -6.696 256 64C256 96.459 243.912 126.09 224 148.653V352zM128 -24L127.369 -23.998C79.093 -23.663 39.755 16.172 40.002 64.463C40.19 101.246 61.024 121.088 72.001 133.5270000000001V352C72.001 382.878 97.122 408 128.001 408C158.879 408 184.001 382.878 184.001 352V133.527C194.849 121.235 216.001 101.166 216.001 64C216 15.477 176.524 -24 128 -24zM184 64C184 33.072 158.928 8 128 8S72 33.072 72 64C72 86.338 85.082 105.615 104 114.604V352C104 365.255 114.745 376 128 376S152 365.255 152 352V114.6040000000001C170.918 105.6150000000001 184 86.338 184 64.0000000000001z" />
+    <glyph glyph-name="thermometer-half"
+      unicode="&#xF2C9;"
+      horiz-adv-x="256" d=" M184 64C184 33.072 158.928 8 128 8S72 33.072 72 64C72 86.338 85.082 105.615 104 114.604V232C104 245.255 114.745 256 128 256S152 245.255 152 232V114.604C170.918 105.615 184 86.338 184 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM216 64C216 101.167 194.848 121.235 184 133.527V352C184 382.878 158.878 408 128 408C97.121 408 72 382.878 72 352V133.527C61.023 121.088 40.189 101.246 40.001 64.463C39.754 16.172 79.092 -23.662 127.368 -23.998L128 -24C176.524 -24 216 15.477 216 64z" />
+    <glyph glyph-name="thermometer-quarter"
+      unicode="&#xF2CA;"
+      horiz-adv-x="256" d=" M184 64C184 33.072 158.928 8 128 8S72 33.072 72 64C72 86.338 85.082 105.615 104 114.604V168C104 181.255 114.745 192 128 192S152 181.255 152 168V114.604C170.918 105.615 184 86.338 184 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM216 64C216 101.167 194.848 121.235 184 133.527V352C184 382.878 158.878 408 128 408C97.121 408 72 382.878 72 352V133.527C61.023 121.088 40.189 101.246 40.001 64.463C39.754 16.172 79.092 -23.662 127.368 -23.998L128 -24C176.524 -24 216 15.477 216 64z" />
+    <glyph glyph-name="thermometer-three-quarters"
+      unicode="&#xF2C8;"
+      horiz-adv-x="256" d=" M184 64C184 33.072 158.928 8 128 8S72 33.072 72 64C72 86.338 85.082 105.615 104 114.604V296C104 309.255 114.745 320 128 320S152 309.255 152 296V114.6040000000001C170.918 105.6150000000001 184 86.338 184 64.0000000000001zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.698 -64 128 -64C127.701 -64 127.39 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.244 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM216 64C216 101.167 194.848 121.235 184 133.527V352C184 382.878 158.878 408 128 408C97.121 408 72 382.878 72 352V133.527C61.023 121.088 40.189 101.246 40.001 64.463C39.754 16.172 79.092 -23.662 127.368 -23.998L128 -24C176.524 -24 216 15.477 216 64z" />
+    <glyph glyph-name="thermometer"
+      unicode="&#xF491;"
+      horiz-adv-x="512" d=" M476.8 427.6C439.3 458.3 381.3 453.9 344.9 417.4L96 166.9V66L7 -23C-2.4 -32.4 -2.4 -47.6 7 -56.9C16.4 -66.2999999999999 31.6 -66.2999999999999 40.9 -56.9L129.9 32.1H229.8L484 285.4C518.9 320.3 526.2 386.9 476.8 427.6zM450.1 319.4L210 80H144V147.1L177.1 180.4L204.7 152.8C210.9 146.6 221.1 146.6 227.3 152.8L238.6 164.1C244.8 170.3 244.8 180.5 238.6 186.7000000000001L211 214.5L244.8 248.6L272.6 220.8C278.8 214.6 289 214.6 295.2000000000001 220.8L306.5000000000001 232.1C312.8000000000001 238.3 312.8000000000001 248.5 306.5000000000001 254.7L278.5000000000001 282.7L312.3000000000001 316.8L340.4000000000001 288.7C346.6000000000001 282.5 356.8000000000001 282.5 363.0000000000001 288.7L374.3000000000002 300C380.5000000000001 306.3 380.5000000000001 316.4 374.3000000000002 322.6L346.1000000000002 350.8L378.7000000000002 383.6C397.9000000000002 402.7 427.5000000000002 405.8 446.1000000000002 390.6C471.6000000000001 369.6 467.2000000000002 336.5 450.1000000000002 319.4z" />
+    <glyph glyph-name="theta"
+      unicode="&#xF69E;"
+      horiz-adv-x="352" d=" M176 416C78.8 416 0 315.7100000000001 0 192S78.8 -32 176 -32S352 68.29 352 192S273.2 416 176 416zM176 368C239.46 368 293.77 300.51 302.6 216H49.4C58.23 300.51 112.54 368 176 368zM176 16C112.54 16 58.23 83.49 49.4 168H302.6C293.7700000000001 83.49 239.4600000000001 16 176 16z" />
+    <glyph glyph-name="thumbs-down"
+      unicode="&#xF165;"
+      horiz-adv-x="512" d=" M466.27 222.69C470.944 245.337 467.134 267.228 457.28 285.68C460.238 309.548 453.259 334.245 439.94 352.67C438.986 408.577 404.117 448 327 448C320 448 312 447.99 304.78 447.99C201.195 447.99 168.997 408 128 408H117.155C111.515 412.975 104.113 416 96 416H32C14.327 416 0 401.673 0 384V144C0 126.327 14.327 112 32 112H96C107.842 112 118.175 118.438 123.708 128H130.76C149.906 111.047 176.773 67.347 199.52 44.6C213.187 30.9330000000001 209.673 -64 271.28 -64C328.86 -64 366.55 -32.064 366.55 40.73C366.55 59.14 362.62 74.46 357.7 87.27H394.18C442.782 87.27 479.9999999999999 128.835 479.9999999999999 172.85C479.9999999999999 192 475.04 207.84 466.2699999999999 222.69zM64 152C50.745 152 40 162.745 40 176S50.745 200 64 200S88 189.255 88 176S77.255 152 64 152zM394.18 135.27H290.19C290.19 97.45 318.55 79.9 318.55 40.73C318.55 16.98 318.55 -16.0000000000001 271.2800000000001 -16.0000000000001C252.3700000000001 2.91 261.8200000000001 50.18 233.4600000000001 78.54C206.9 105.11 167.28 176 138.92 176H128V362.17C181.611 362.17 228.001 399.99 299.64 399.99H337.46C372.972 399.99 398.28 382.87 390.58 334.0900000000001C405.78 325.93 417.08 297.65 404.52 276.52C426.101 256.136 423.219 225.455 409.73 210.9C419.18 210.9 432.09 191.99 432 173.09C431.91 154.18 415.29 135.2700000000001 394.18 135.2700000000001z" />
+    <glyph glyph-name="thumbs-up"
+      unicode="&#xF164;"
+      horiz-adv-x="512" d=" M466.27 161.31C475.04 176.16 480 192 480 211.15C480 255.165 442.782 296.73 394.18 296.73H357.7C362.62 309.54 366.55 324.86 366.55 343.27C366.55 416.064 328.86 448 271.28 448C209.673 448 213.187 353.067 199.52 339.4C176.773 316.653 149.905 272.953 130.76 256H32C14.327 256 0 241.673 0 224V-16C0 -33.673 14.327 -48 32 -48H96C110.893 -48 123.408 -37.826 126.978 -24.05C171.487 -25.051 202.038 -63.99 304.78 -63.99C312 -63.99 320 -64 327 -64C404.117 -64 438.986 -24.577 439.94 31.33C453.259 49.755 460.239 74.452 457.28 98.32C467.134 116.772 470.944 138.663 466.27 161.31zM404.52 107.48C417.08 86.35 405.78 58.0700000000001 390.58 49.91C398.28 1.13 372.972 -15.99 337.46 -15.99H299.64C228.001 -15.99 181.611 21.83 128 21.83V208H138.92C167.28 208 206.9 278.89 233.46 305.46C261.82 333.82 252.37 381.09 271.28 400C318.55 400 318.55 367.02 318.55 343.27C318.55 304.1 290.19 286.55 290.19 248.73H394.18C415.29 248.73 431.91 229.82 432 210.91C432.0899999999999 192.01 419.18 173.1 409.73 173.1C423.219 158.545 426.101 127.864 404.52 107.48zM88 16C88 2.745 77.255 -8 64 -8S40 2.745 40 16S50.745 40 64 40S88 29.255 88 16z" />
+    <glyph glyph-name="thumbtack"
+      unicode="&#xF08D;"
+      horiz-adv-x="384" d=" M306.49 261.36L300.8 304H328C341.25 304 352 314.75 352 328V424C352 437.25 341.25 448 328 448H56C42.75 448 32 437.25 32 424V328C32 314.75 42.75 304 56 304H83.2L77.51 261.36C29.582 228.603 0 177.34 0 120C0 106.75 10.75 96 24 96H168V-8.014A8 8 0 0 1 168.411 -10.544L184.411 -58.544C186.834 -65.813 197.163 -65.8249999999999 199.59 -58.544L215.59 -10.544A8 8 0 0 1 216.001 -8.014V96H360.001C373.251 96 384.001 106.75 384.001 120C384 177.306 354.441 228.587 306.49 261.36zM50.54 144C58.793 182.45 86.17 214.048 122 231.83L138.02 352H80V400H304V352H245.98L262 231.83C297.849 214.039 325.212 182.428 333.46 144H50.54z" />
+    <glyph glyph-name="thunderstorm-moon"
+      unicode="&#xF76D;"
+      horiz-adv-x="640" d=" M277.6 112.7H219.9L237.2000000000001 177.9C239.2000000000001 185.5 233.5000000000001 193.1 225.6000000000001 193.1H157.6000000000001C151.6000000000001 193.1 146.5000000000001 188.6 145.7000000000001 182.6L129.7000000000001 62.1C128.7000000000001 54.9 134.3000000000001 48.4999999999999 141.6000000000001 48.4999999999999H201L178 -49.1C176.2 -56.7 182 -63.9 189.7 -63.9C193.9 -63.9 197.9 -61.7 200.1 -57.9L288.1 94.6999999999999C292.6 102.5999999999999 286.9000000000001 112.6999999999999 277.6 112.6999999999999zM363.4000000000001 263.9C351.3 300.8 316.7000000000001 327.5 276 327.5C272.9 327.5 269.9 327.3 266.9 327C245.3 342.9 219.3 351.6 192 351.6C139.6 351.6 94.4 320.2 74.8 274.1C31.4 260 0 219.1 0 170.9C0 114.6 43.2 68.7 97.9 63.5C98 64.4 97.8 65.4 98 66.3L103.9 111.1C72.7 113.2000000000001 47.9 139 47.9 170.9C47.9 204.2000000000001 74.8 231.1 107.9 231.1C109.5 231.1 111.1 230.7 112.7 230.6C116.5 271.4000000000001 150.3 303.4000000000001 191.9 303.4000000000001C217.1 303.4000000000001 239.3 291.5 254 273.2000000000001C260.5 277.0000000000001 267.9 279.3000000000001 275.9 279.3000000000001C300.2 279.3000000000001 319.9 259.5 319.9 235.1C319.9 233.3 319.6 231.6 319.4 229.9000000000001C347 224.5 367.9 200.1 367.9 170.8C367.9 141.7 347.4 117.4 320 111.8C322.9 100.7 321.4 88.6 315.6 78.4L306.4000000000001 62.4H307.9000000000001C367.5000000000001 62.4 415.9000000000001 111.0000000000001 415.9000000000001 170.8000000000001C416.0000000000001 209.8000000000001 395.2000000000001 244.8000000000001 363.4000000000001 263.9000000000001zM637.8 210.4C634 218.3 626 223.5 617.3 223.5H615.8L613 223C606.9 221.8 600.7 221.2 594.6 221.2C541.4 221.2 498.1 264.8 498.1 318.4C498.1 353.3 516.9 385.7 547.1 402.9C555.5 407.7 559.9 417 558.3000000000001 426.6C556.7 436.2 549.5000000000001 443.5 540.0000000000001 445.2C530.3 447.1 520.5 448 510.7 448C437.1 448 375.6 397.5 357.1 329.3C370.9000000000001 317.4 382.1 302.4 389.7000000000001 285C390.3000000000001 284.6 390.7000000000001 284.1 391.3000000000001 283.7C391.3000000000001 284.9 390.9000000000001 286.1 390.9000000000001 287.3C390.9000000000001 346.4 433.5000000000001 395.7 489.5000000000001 405.9C469.6000000000001 381.6 458.2000000000001 350.8 458.2000000000001 318.4C458.2000000000001 250.8 507.0000000000001 194.4 571.1000000000001 183.1C553.1000000000001 172.5 532.4000000000001 166.8 510.9000000000001 166.8C487.5000000000002 166.8 465.8000000000001 173.8 447.3000000000002 185.6C447.8000000000002 180.7 448.2000000000001 175.8 448.2000000000001 170.9C448.2000000000001 160.8 446.9000000000001 151 444.9000000000001 141.5C465.1000000000001 132.2 487.3000000000001 126.7 511.0000000000001 126.7C559.4000000000001 126.7 604.6000000000001 148.4 635.2000000000002 186.2C640.5000000000001 193.1 641.6000000000001 202.4 637.8000000000002 210.4z" />
+    <glyph glyph-name="thunderstorm-sun"
+      unicode="&#xF76E;"
+      horiz-adv-x="640" d=" M500 112H442.3L459.6 176.9C461.6 184.5 455.9 192 448 192H380C374 192 368.9 187.5 368.1 181.6L352.1 61.6C351.1 54.4 356.7000000000001 48 364 48H423.3L400.3 -49.2C398.5 -56.8 404.3 -64 412 -64C416.2 -64 420.2 -61.8 422.4 -58L510.4 94C515 102 509.2 112 500 112zM192.9 184.3L187 175.6L176.2 159.6L165 176.3L147.2 202.6L116 196.6L96.6 192.8L100.4 212.4L106.4 243.5L80.2 261.3L63.7 272.5L80.2 283.7L106.4 301.5L100.4 332.6L96.6 352.1L116 348.3L147.2 342.3L165 368.5L175.8 384.5L187 367.7L204.8 341.4L236 347.4L255.4 351.1L251.6 331.5L245.6 300.4L259.1 291.2000000000001C264.4000000000001 294.4 269.8 297.4 275.5 299.9C282.5 312.9 291.2 324.7 301.2 335.1L308.2 371.2000000000001C310 380.3 307.1 389.6 300.6 396.2000000000001C295.4 401.5 288.3 404.4000000000001 281 404.4000000000001C279.2 404.4000000000001 277.3999999999999 404.2000000000001 275.7 403.9000000000001L227 394.5L199 435.8C193.9 443.4 185.2 448 176 448C167.1 448 158.1 444.2 153 436.5L125.2 395.3L76.5 404.7C74.7 405 72.9 405.2 71.2 405.2C63.9 405.2 56.9 402.3 51.6 397C45.1 390.4 42.2 381.1 44 372L53.4 323.2L12.3 295.3C4.6 290.2 0 281.6 0 272.4S4.6 254.5 12.2 249.3L53.3 221.5L43.9 172.7C42.1 163.6 45 154.3 51.5 147.7C56.7 142.4 63.8 139.5 71.1 139.5C72.9 139.5 74.7 139.7 76.4 140L125.1 149.4L152.9 108.2C158.1 100.5 166.7 95.9 175.9 95.9C184.8 95.9 193.8 99.7 198.9 107.4L204.1 115.2C196.3 132.6 191.8 151.7 191.8 171.9C192 176.2 192.5 180.2 192.9 184.3zM587.4 264.6C575.4 301.4000000000001 540.6999999999999 328 500 328C496.9 328 493.9 327.8 490.9 327.5C469.3 343.3 443.2 352 416 352C363.6 352 318.4 320.7 298.8 274.8C255.4 260.7 224 220 224 172C224 116.4 266.3 71.1 320.4 65.2V65.8L326.6 112.5C296 115.3 272 140.7 272 172C272 205.1 298.9 232 332 232C333.6 232 335.2 231.6 336.8 231.5C340.6 272.1 374.4000000000001 304 416 304C441.2 304 463.4 292.1 478.1 273.9C484.6 277.7000000000001 492 280 500 280C524.3 280 544 260.3 544 236C544 234.2 543.7 232.6 543.5 230.8C571.1 225.4 592 201.2 592 172C592 142.2 570.2 117.7 541.8 113C545.4 101.4 544.3 88.7 538.0999999999999 78L529.9999999999999 64H531.9999999999999C591.5999999999999 64 639.9999999999999 112.4 639.9999999999999 172C639.9999999999999 210.8 619.1999999999999 245.6 587.3999999999999 264.6zM176 312C153.9 312 136 294.1 136 272S153.9 232 176 232S216 249.9 216 272S198.1 312 176 312z" />
+    <glyph glyph-name="thunderstorm"
+      unicode="&#xF76C;"
+      horiz-adv-x="512" d=" M337 160H264.9L287.5 237.1C290 246.6 282.9 256 273 256H191C183.5 256 177.1 250.4 176.1 243L160.1 113C158.9 104 165.9 96 175 96H256L224.4 -45.5C222.2 -55 229.4 -64 239 -64C244.2 -64 249.2 -61.3 252 -56.5L350 137.5C355.7 147.5 348.5 160 337 160zM410.7 343.8C397.2 386.2 358 416 312 416C298.5 416 285.2 413.4 272.8 408.3C250.3 433.5 218.4 448 184 448C120 448 67.6 397.7 64.2 334.6C25.6 317.6 0 279.5 0 236C0 176.5 48.4 128 108 128H129.7L135.6 176H108C74.9 176 48 202.9 48 236C48 264 67.1 288 94.4 294.3L115.2 299.1L112.4 324C112.2 325.3 112 326.6 112 328C112 367.7000000000001 144.3 400 184 400C209.2 400 232.2 386.9000000000001 245.4 364.9000000000001L258.7 342.8000000000001L279.8 357.7000000000001C289.4 364.4 300.5 368 312 368C340.6 368 364.4 346.3 367.3 317.6L369.5 296H404C437.1 296 464 269.1 464 236S437.1 176 404 176H371.9C374 173.6 376.1 171.3 377.7 168.5C384.9 156.1 385.5 141.2 380.4 128H404C463.6 128 512 176.5 512 236C512 293.3 467.1 340.3 410.7 343.8z" />
+    <glyph glyph-name="ticket-alt"
+      unicode="&#xF3FF;"
+      horiz-adv-x="576" d=" M400 240V144H176V240H400M424 288H152C138.745 288 128 277.255 128 264V120C128 106.745 138.745 96 152 96H424C437.255 96 448 106.745 448 120V264C448 277.255 437.255 288 424 288zM568 232H576V336C576 362.51 554.51 384 528 384H48C21.49 384 0 362.51 0 336V232H8C30.091 232 48 214.091 48 192S30.091 152 8 152H0V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V152H568C545.909 152 528 169.909 528 192S545.909 232 568 232zM528 270.372C499.53 255.782 480 226.129 480 192S499.53 128.218 528 113.628V48H48V113.628C76.471 128.218 96 157.871 96 192S76.471 255.782 48 270.372V336H528V270.372z" />
+    <glyph glyph-name="ticket"
+      unicode="&#xF145;"
+      horiz-adv-x="576" d=" M568 232H576V336C576 362.51 554.51 384 528 384H48C21.49 384 0 362.51 0 336V232H8C30.091 232 48 214.091 48 192S30.091 152 8 152H0V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V152H568C545.909 152 528 169.909 528 192S545.909 232 568 232zM528 270.372C499.53 255.782 480 226.129 480 192S499.53 128.218 528 113.628V48H48V113.628C76.471 128.218 96 157.871 96 192S76.471 255.782 48 270.372V336H528V270.372z" />
+    <glyph glyph-name="tilde"
+      unicode="&#xF69F;"
+      horiz-adv-x="448" d=" M316.25 97.33C284.77 102.07 257.27 121.41 238.55 147.16L167.59 244.78C148.3900000000001 271.14 110.99 281.11 79.62 262.28C59.2 250.01 48 226.63 48 202.81V144C48 135.16 40.84 128 32 128H16C7.16 128 0 135.16 0 144V200.21C0 246.5 25.01 290.98 67.26 309.9C118.56 332.87 175.84 315.04 206.41 273.02L280.4100000000001 171.22C299.61 144.86 337.0100000000001 134.8900000000001 368.38 153.72C388.8 165.98 400 189.37 400 213.19V272C400 280.8400000000001 407.1600000000001 288 416 288H432C440.84 288 448 280.8400000000001 448 272V210.11C448 141.4 386.9700000000001 86.69 316.25 97.33z" />
+    <glyph glyph-name="times-circle"
+      unicode="&#xF057;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM256 -8C145.5 -8 56 81.5 56 192S145.5 392 256 392S456 302.5 456 192S366.5 -8 256 -8zM357.8 254.2L295.6 192L357.8 129.8C362.5 125.1 362.5 117.5 357.8 112.8L335.2 90.2C330.5 85.5 322.9 85.5 318.2 90.2L256 152.4L193.8 90.2C189.1 85.5 181.5 85.5 176.8 90.2L154.2 112.8C149.5 117.5 149.5 125.1 154.2 129.8L216.4 192L154.2000000000001 254.2C149.5000000000001 258.9 149.5000000000001 266.5 154.2000000000001 271.2L176.8000000000001 293.8C181.5 298.5 189.1000000000001 298.5 193.8000000000001 293.8L256.0000000000001 231.6L318.2000000000001 293.8C322.9000000000001 298.5 330.5000000000001 298.5 335.2000000000001 293.8L357.8000000000001 271.2C362.5000000000001 266.5 362.5000000000001 258.9 357.8000000000001 254.2z" />
+    <glyph glyph-name="times-hexagon"
+      unicode="&#xF2EE;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001zM400 0H176L64 192L176 384H400L512 192L400 0zM389.8 112.8L367.2 90.2C362.5 85.5 354.9 85.5 350.2 90.2L288 152.4L225.8 90.2C221.1 85.5 213.5 85.5 208.8 90.2L186.2 112.8C181.5 117.5 181.5 125.1 186.2 129.8L248.4000000000001 192L186.2000000000001 254.2C181.5000000000001 258.9 181.5000000000001 266.5 186.2000000000001 271.2L208.8000000000001 293.8C213.5 298.5 221.1000000000001 298.5 225.8000000000001 293.8L288.0000000000001 231.6L350.2000000000001 293.8C354.9000000000001 298.5 362.5000000000001 298.5 367.2000000000001 293.8L389.8000000000001 271.2C394.5000000000001 266.5 394.5000000000001 258.9 389.8000000000001 254.2L327.6 192L389.8 129.8C394.5 125.1 394.5 117.5 389.8 112.8z" />
+    <glyph glyph-name="times-octagon"
+      unicode="&#xF2F0;"
+      horiz-adv-x="512" d=" M497.9 297.5L361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512 276.3 506.9 288.5 497.9 297.5zM464 120.5L327.5 -16H184.5L48 120.5V263.5L184.5 400H327.6L464 263.5V120.5zM357.8 112.8L335.2 90.2C330.5 85.5 322.9 85.5 318.2 90.2L256 152.4L193.8 90.2C189.1 85.5 181.5 85.5 176.8 90.2L154.2 112.8C149.5 117.5 149.5 125.1 154.2 129.8L216.4 192L154.2000000000001 254.2C149.5000000000001 258.9 149.5000000000001 266.5 154.2000000000001 271.2L176.8000000000001 293.8C181.5 298.5 189.1000000000001 298.5 193.8000000000001 293.8L256.0000000000001 231.6L318.2000000000001 293.8C322.9000000000001 298.5 330.5000000000001 298.5 335.2000000000001 293.8L357.8000000000001 271.2C362.5000000000001 266.5 362.5000000000001 258.9 357.8000000000001 254.2L295.6 192L357.8 129.8C362.5 125.1 362.5 117.5 357.8 112.8z" />
+    <glyph glyph-name="times-square"
+      unicode="&#xF2D3;"
+      horiz-adv-x="448" d=" M325.8 254.2L263.6 192L325.8 129.8C330.5 125.1 330.5 117.5 325.8 112.8L303.2 90.2C298.5 85.5 290.9 85.5 286.2 90.2L224 152.4L161.8 90.2C157.1 85.5 149.5 85.5 144.8 90.2L122.2 112.8C117.5 117.5 117.5 125.1 122.2 129.8L184.4 192L122.2 254.2C117.5 258.9 117.5 266.5 122.2 271.2L144.8000000000001 293.8C149.5 298.5 157.1000000000001 298.5 161.8000000000001 293.8L224.0000000000001 231.6L286.2000000000001 293.8C290.9000000000001 298.5 298.5000000000001 298.5 303.2000000000001 293.8L325.8000000000001 271.2C330.5000000000001 266.5 330.5000000000001 258.9 325.8000000000001 254.2zM448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM400 22V362C400 365.3 397.3 368 394 368H54C50.7 368 48 365.3 48 362V22C48 18.7 50.7 16 54 16H394C397.3 16 400 18.7 400 22z" />
+    <glyph glyph-name="times"
+      unicode="&#xF00D;"
+      horiz-adv-x="320" d=" M207.6 192L315.32 299.7200000000001C321.55 305.95 321.55 316.06 315.32 322.3L290.29 347.33C284.06 353.56 273.95 353.56 267.71 347.33L160 239.6L52.28 347.32C46.05 353.55 35.94 353.55 29.7 347.32L4.68 322.3C-1.55 316.07 -1.55 305.9600000000001 4.68 299.7200000000001L112.4 192L4.68 84.28C-1.55 78.05 -1.55 67.94 4.68 61.7L29.71 36.67C35.94 30.4399999999999 46.05 30.4399999999999 52.29 36.67L160 144.4L267.7200000000001 36.68C273.9500000000001 30.4499999999999 284.06 30.4499999999999 290.3 36.68L315.3300000000001 61.7099999999999C321.5600000000001 67.9399999999999 321.5600000000001 78.0499999999999 315.3300000000001 84.2899999999999L207.6 192z" />
+    <glyph glyph-name="tint-slash"
+      unicode="&#xF5C7;"
+      horiz-adv-x="640" d=" M633.99 -23.01L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.01zM320 364.3400000000001C343.15 307.51 372.02 266.24 396.2 231.68C400.4 225.68 404.36 219.99 408.15 214.47L492.39 148.61C474.47 236.31 391.03 284.88 349.2200000000001 425.9100000000001C345.21 440.46 332.61 448 319.9700000000001 448C307.62 448 295.23 440.8 290.7800000000001 425.9100000000001C280.3400000000001 390.71 267.2000000000001 361.44 253.1600000000001 335.64L291.2800000000001 305.8400000000001C301.29 323.5900000000001 311.11 342.55 320 364.3400000000001zM320 -16C249.42 -16 192 42.36 192 114.09C192 140.4400000000001 199.73 161.74 212.76 184.46L174.7 214.22C156.55 183.98 144 153.28 144 114.09C144 15.65 222.72 -64 320 -64C372.93 -64 420.23 -40.31 452.48 -2.96L414.31 26.88C390.88 0.73 357.46 -16 320 -16z" />
+    <glyph glyph-name="tint"
+      unicode="&#xF043;"
+      horiz-adv-x="352" d=" M205.22 425.9100000000001C201.21 440.4700000000001 188.61 448 175.97 448C163.62 448 151.23 440.8 146.78 425.9100000000001C100.01 268.15 0 225.28 0 114.09C0 15.65 78.72 -64 176 -64S352 15.65 352 114.09C352 225.8400000000001 252.21 267.4300000000001 205.22 425.9100000000001zM176 -16C105.42 -16 48 42.36 48 114.09C48 157.42 68.67 187.04 99.96 231.8800000000001C124.11 266.4900000000001 152.94 307.8000000000001 176 364.3400000000001C199.15 307.5100000000001 228.02 266.2400000000001 252.2 231.6800000000001C283.39 187.1000000000001 304 157.6500000000001 304 114.0800000000001C304 42.36 246.58 -16 176 -16zM192 48C147.88 48 112 83.89 112 128C112 136.84 104.84 144 96 144S80 136.84 80 128C80 66.25 130.25 16 192 16C200.84 16 208 23.16 208 32S200.84 48 192 48z" />
+    <glyph glyph-name="tire-flat"
+      unicode="&#xF632;"
+      horiz-adv-x="512" d=" M0 -40.02C0 -53.25 10.71 -63.96 23.92 -64H488.08C501.3000000000001 -63.96 512 -53.24 512 -40.02C512 -26.76 501.26 -16.02 488 -16.02H467.62C495.6 25.02 512 74.58 512 128C512 269.38 397.38 384 256 384S0 269.38 0 128C0 74.58 16.4 25.02 44.38 -16.02H24C10.74 -16.02 0 -26.76 0 -40.02zM232 6.43C195.87 13.55 165.77 36.64 148.28 67.78L190.99 81.66C200.95 67.72 215.3 57.35 232 52.0700000000001V6.4300000000001zM176.07 127.28L133.47 113.44C132.89 118.28 132 123.02 132 128C132 160.48 144.83 189.85 165.34 211.98L191.89 175.43C182.03 162.13 176 145.83 176 128C176 127.75 176.07 127.53 176.07 127.28zM256 96C238.33 96 224 110.33 224 128S238.33 160 256 160S288 145.67 288 128S273.67 96 256 96zM204.11 240.25C228.24 251.46 265.69 259.85 307.88 240.25L281.22 203.55C259.16 210.92 243.59 207.83 230.77 203.55L204.11 240.25zM280 6.43V52.07C296.7 57.35 311.04 67.71 321.01 81.66L363.72 67.78C346.23 36.63 316.13 13.55 280 6.43zM320.11 175.43L346.6600000000001 211.98C367.17 189.85 380 160.48 380 128C380 123.01 379.1 118.27 378.53 113.44L335.93 127.28C335.93 127.53 336 127.75 336 128C336 145.83 329.97 162.13 320.11 175.43zM256 336C370.69 336 464 242.69 464 128C464 72.11 441.73 21.4 405.73 -16.02H349.61C396.71 14.67 428 67.59 428 128C428 222.99 350.99 300 256 300S84 222.99 84 128C84 67.59 115.29 14.67 162.4 -16.02H106.27C70.27 21.4 48 72.11 48 128C48 242.69 141.31 336 256 336z" />
+    <glyph glyph-name="tire-pressure-warning"
+      unicode="&#xF633;"
+      horiz-adv-x="512" d=" M246.48 191.98H265.52C273.74 191.98 280.62 198.21 281.44 206.39L294.24 334.39C295.18 343.81 287.79 351.98 278.32 351.98H233.68C224.21 351.98 216.82 343.81 217.76 334.39L230.5600000000001 206.39C231.38 198.21 238.26 191.98 246.48 191.98zM504.15 232.29C498.13 260.8400000000001 484.66 287.0800000000001 469.92 312.2700000000001C455.57 336.79 448 363.11 448 388.53V432C448 440.84 440.84 448 432 448H416C407.1600000000001 448 400 440.84 400 432V388.53C400 299.49 455.66 276.05 463.19 182.3300000000001C467.92 123.3900000000001 452.14 77.11 409.9700000000001 29.0600000000001C402.5300000000001 20.59 391.49 16.0000000000001 380.2200000000001 16.0000000000001H131.78C120.49 16.0000000000001 109.44 20.59 102 29.08C59.84 77.14 44.07 123.4300000000001 48.81 182.37C56.21 274.2200000000001 112 300.9 112 388.53V432C112 440.84 104.84 448 96 448H80C71.16 448 64 440.84 64 432V388.53C64 363.11 56.44 336.8 42.09 312.3C27.35 287.14 13.89 260.92 7.87 232.38C-11.84 139.03 4.83 67.3 65.58 -2.16C69.9 -7.09 74.77 -11.41 80.01 -15.2V-48C80.01 -56.84 87.17 -64 96.01 -64H128.01C136.85 -64 144.01 -56.84 144.01 -48V-32H176.01V-48C176.01 -56.84 183.17 -64 192.01 -64H224.01C232.85 -64 240.01 -56.84 240.01 -48V-32H272.01V-48C272.01 -56.84 279.17 -64 288.01 -64H320.01C328.85 -64 336.01 -56.84 336.01 -48V-32H368.01V-48C368.01 -56.84 375.17 -64 384.01 -64H416.01C424.85 -64 432.01 -56.84 432.01 -48V-15.2C437.23 -11.42 442.09 -7.11 446.4 -2.19C507.15 67.25 523.8399999999999 138.97 504.15 232.29zM256 159.98C238.33 159.98 224 145.65 224 127.98S238.33 95.98 256 95.98S288 110.31 288 127.98C288 145.66 273.67 159.98 256 159.98z" />
+    <glyph glyph-name="tire-rugged"
+      unicode="&#xF634;"
+      horiz-adv-x="512" d=" M474.35 282.45C481.24 307.33 474.92 335.12 455.41 354.64L418.63 391.4C404.65 405.38 386.07 413.08 366.3 413.08C359.48 413.08 352.81 412.16 346.4100000000001 410.39C333.69 432.83 309.58 448 282 448H230C202.42 448 178.31 432.83 165.58 410.39A74.512 74.512 0 0 1 145.69 413.08C125.92 413.08 107.34 405.38 93.36 391.4L56.6 354.64C37.08 335.12 30.77 307.32 37.66 282.45C15.19 269.73 0 245.61 0 218V166C0 138.4 15.19 114.28 37.65 101.56C30.76 76.68 37.08 48.89 56.59 29.37L93.36 -7.4C107.34 -21.38 125.92 -29.07 145.69 -29.07C152.51 -29.07 159.18 -28.15 165.58 -26.38C178.3 -48.83 202.41 -64 230 -64H282C309.59 -64 333.7 -48.83 346.42 -26.39A74.457 74.457 0 0 1 366.31 -29.08C386.08 -29.08 404.6600000000001 -21.38 418.63 -7.41L455.4 29.36C474.92 48.88 481.23 76.68 474.34 101.55C496.81 114.28 512 138.4 512 166V218C512 245.61 496.81 269.73 474.35 282.45zM464 166C464 151.64 452.36 140 438 140H430.36C426.76 127.91 422.0200000000001 116.31 416.11 105.42L421.4600000000001 100.07C431.61 89.92 431.61 73.45 421.4600000000001 63.3L384.6900000000001 26.53C379.6100000000001 21.45 372.9600000000001 18.91 366.3100000000001 18.91S353.0000000000001 21.45 347.9300000000001 26.53L342.5800000000001 31.8800000000001C331.6900000000001 25.9800000000001 320.0900000000001 21.2400000000001 308.0000000000001 17.6300000000001V10C308.0000000000001 -4.36 296.3600000000001 -16 282.0000000000001 -16H230.0000000000001C215.6400000000001 -16 204.0000000000001 -4.36 204.0000000000001 10V17.64C191.9100000000001 21.24 180.3100000000001 25.98 169.4200000000001 31.89L164.0700000000001 26.54C158.9900000000001 21.46 152.3400000000001 18.92 145.6900000000001 18.92S132.3800000000001 21.46 127.3100000000001 26.54L90.5400000000001 63.31C80.3900000000001 73.4599999999999 80.3900000000001 89.93 90.5400000000001 100.0799999999999L95.8900000000001 105.43C89.9900000000001 116.3199999999999 85.2500000000001 127.92 81.6400000000001 140.0099999999999H74C59.64 140.0099999999999 48 151.6499999999999 48 166.0099999999999V218.0099999999999C48 232.37 59.64 244.01 74 244.01H81.64C85.24 256.0999999999999 89.98 267.7 95.89 278.5899999999999L90.54 283.93C80.39 294.08 80.39 310.55 90.54 320.7L127.31 357.4699999999999C132.39 362.55 139.04 365.0899999999999 145.69 365.0899999999999S159 362.55 164.07 357.4699999999999L169.42 352.13C180.31 358.03 191.91 362.7699999999999 204 366.37V374C204 388.36 215.64 400 230 400H282C296.36 400 308 388.36 308 374V366.36C320.09 362.76 331.69 358.02 342.58 352.12L347.93 357.4600000000001C353.01 362.54 359.6600000000001 365.0800000000001 366.31 365.0800000000001S379.62 362.54 384.69 357.4600000000001L421.46 320.69C431.61 310.54 431.61 294.07 421.46 283.92L416.11 278.58C422.01 267.69 426.75 256.09 430.36 244H438C452.36 244 464 232.36 464 218V166zM256 336.02C176.47 336.02 112 271.55 112 192.02S176.47 48.02 256 48.02S400 112.49 400 192.02S335.53 336.02 256 336.02zM256 80.02C194.24 80.02 144 130.26 144 192.02S194.24 304.02 256 304.02S368 253.78 368 192.02S317.76 80.02 256 80.02zM256 272C242.75 272 232 261.26 232 248C232 234.75 242.75 224 256 224S280 234.75 280 248C280 261.26 269.25 272 256 272zM256 160.02C242.75 160.02 232 149.28 232 136.02C232 122.77 242.75 112.02 256 112.02S280 122.77 280 136.02S269.25 160.02 256 160.02zM312 216C298.75 216 288 205.26 288 192C288 178.75 298.75 168 312 168S336 178.75 336 192C336 205.26 325.25 216 312 216zM200 216C186.75 216 176 205.26 176 192C176 178.75 186.75 168 200 168S224 178.75 224 192C224 205.26 213.25 216 200 216z" />
+    <glyph glyph-name="tire"
+      unicode="&#xF631;"
+      horiz-adv-x="512" d=" M256 364C161.01 364 84 286.99 84 192S161.01 20 256 20S428 97.01 428 192S350.99 364 256 364zM256 316C274.58 316 292.05 311.6 307.89 304.25L281.23 267.55C273.26 270.2100000000001 264.88 272 256.01 272S238.76 270.2100000000001 230.79 267.55L204.13 304.25C219.95 311.6 237.42 316 256 316zM133.47 177.44C132.89 182.28 132 187.02 132 192C132 224.48 144.83 253.85 165.34 275.98L191.89 239.43C182.03 226.13 176 209.83 176 192C176 191.75 176.07 191.53 176.07 191.28L133.47 177.44zM232 70.43C195.87 77.55 165.77 100.64 148.28 131.78L190.99 145.66C200.95 131.72 215.3 121.35 232 116.0700000000001V70.4300000000001zM256 160C238.33 160 224 174.33 224 192S238.33 224 256 224S288 209.67 288 192S273.67 160 256 160zM280 70.43V116.07C296.7 121.35 311.04 131.71 321.01 145.66L363.72 131.78C346.23 100.63 316.13 77.55 280 70.43zM335.93 191.28C335.93 191.53 336 191.75 336 192C336 209.83 329.9700000000001 226.13 320.11 239.43L346.6600000000001 275.98C367.17 253.85 380 224.48 380 192C380 187.01 379.1 182.27 378.53 177.44L335.93 191.28zM256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM256 -16C141.31 -16 48 77.31 48 192S141.31 400 256 400S464 306.69 464 192S370.69 -16 256 -16z" />
+    <glyph glyph-name="tired"
+      unicode="&#xF5C8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8zM377.1 295.8C373.3 300.2000000000001 366.8 301.2000000000001 361.8 298.3L281.8 250.3C278.2 248.1 276 244.2 276 240S278.2 231.9 281.8 229.7L361.8 181.7C367.2 178.5 373.6 180.1 377.1 184.2C380.9000000000001 188.7 381 195.2 377.2000000000001 199.7L343.6 240L377.2000000000001 280.3C381.0000000000001 284.8 380.9000000000001 291.4 377.1 295.8zM220 240C220 244.2 217.8 248.1 214.2 250.3L134.2 298.3C129.2 301.3 122.7 300.2000000000001 118.9 295.8C115.1 291.3 115 284.8 118.8 280.3L152.4 240L118.8 199.7C115 195.2 115.1 188.7 118.9 184.2C122.4 180.1 128.8 178.5 134.2 181.7L214.2 229.7C217.8 231.9 220 235.8 220 240zM248 176C202.6 176 147.1 137.7 140.2 82.7C138.7 70.9 147.1 61.1 155.7 64.8C178.4 74.5 212 80 248 80S317.6 74.5 340.3 64.8C348.8 61.1 357.3 70.8 355.8 82.7C348.9000000000001 137.7 293.4000000000001 176 248 176z" />
+    <glyph glyph-name="toggle-off"
+      unicode="&#xF204;"
+      horiz-adv-x="576" d=" M384 384H192C85.961 384 0 298.039 0 192S85.961 0 192 0H384C490.039 0 576 85.961 576 192S490.039 384 384 384zM48 192C48 271.583 112.404 336 192 336C271.582 336 336 271.596 336 192C336 112.418 271.596 48 192 48C112.418 48 48 112.404 48 192zM384 48H318.98C405.6840000000001 124.515 405.663 259.504 318.98 336H384C463.582 336 528 271.596 528 192C528 112.418 463.596 48 384 48z" />
+    <glyph glyph-name="toggle-on"
+      unicode="&#xF205;"
+      horiz-adv-x="576" d=" M576 192C576 85.961 490.039 0 384 0H192C85.961 0 0 85.961 0 192S85.961 384 192 384H384C490.039 384 576 298.039 576 192zM384 336C304.418 336 240 271.596 240 192C240 112.418 304.404 48 384 48C463.582 48 528 112.404 528 192C528 271.582 463.596 336 384 336" />
+    <glyph glyph-name="toilet-paper-alt"
+      unicode="&#xF71F;"
+      horiz-adv-x="576" d=" M464 304C450.75 304 440 282.51 440 256S450.75 208 464 208C477.26 208 488 229.49 488 256S477.26 304 464 304zM464 448H144C82.14 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H344.93C358.7 -64 370.93 -55.19 375.29 -42.12C386.4500000000001 -8.64 396.88 21.42 399.4000000000001 64H464C525.86 64 576 149.96 576 256S525.86 448 464 448zM352 256V83.93C352 42.86 343.98 15.89 333.4 -16H60.6C73.16 21.52 80 46.22 80 83.93V256C80 342.57 118.52 400 144 400H390.0900000000001C366.78 364.81 352 313.42 352 256zM464 112C438.52 112 400 169.43 400 256S438.52 400 464 400C489.48 400 528 342.57 528 256S489.48 112 464 112z" />
+    <glyph glyph-name="toilet-paper"
+      unicode="&#xF71E;"
+      horiz-adv-x="576" d=" M216 216C229.25 216 240 226.75 240 240C240 253.26 229.25 264 216 264S192 253.26 192 240C192 226.75 202.75 216 216 216zM296 216C309.25 216 320 226.75 320 240C320 253.26 309.25 264 296 264S272 253.26 272 240C272 226.75 282.75 216 296 216zM112 240C112 226.75 122.75 216 136 216S160 226.75 160 240C160 253.26 149.25 264 136 264S112 253.26 112 240zM464 304C450.75 304 440 282.51 440 256S450.75 208 464 208C477.26 208 488 229.49 488 256S477.26 304 464 304zM464 448H144C82.14 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H344.93C358.7 -64 370.93 -55.19 375.29 -42.12C386.4500000000001 -8.64 396.88 21.42 399.4000000000001 64H464C525.86 64 576 149.96 576 256S525.86 448 464 448zM352 256V83.93C352 42.86 343.98 15.89 333.4 -16H60.6C73.16 21.52 80 46.22 80 83.93V256C80 342.57 118.52 400 144 400H390.0900000000001C366.78 364.81 352 313.42 352 256zM464 112C438.52 112 400 169.43 400 256S438.52 400 464 400C489.48 400 528 342.57 528 256S489.48 112 464 112z" />
+    <glyph glyph-name="toilet"
+      unicode="&#xF7D8;"
+      horiz-adv-x="384" d=" M152 384H104C99.6 384 96 380.4 96 376V360C96 355.6 99.6 352 104 352H152C156.4 352 160 355.6 160 360V376C160 380.4 156.4 384 152 384zM368 400C376.8 400 384 407.2 384 416V432C384 440.8 376.8 448 368 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H32V243.3C11.8 233.2 0 221.1 0 208C0 146.6 28.9 92.1 73.7 57L49.4 -22.7C43.1 -43.2 58.5 -64 80 -64H304C325.5 -64 340.9 -43.2 334.6 -22.7L310.3 57C355.1 92.1 384 146.7 384 208C384 221.1 372.2 233.2 352 243.3V400H368zM80 400H304V259.9C272.5 267.5 233.8 272 192 272S111.5 267.5 80 259.9V400zM101.6 -16L116.1 31.6C139.4 21.6 165 16 192 16S244.6 21.6 267.9 31.6L282.4 -16H101.6zM192 64C128.4 64 74.7 105.6 55.7 162.9C90.5 151.2 138.7 144 192 144S293.5 151.2 328.3 162.9C309.3 105.6 255.6 64 192 64zM192 180C114.9 180 52.4 192.5 52.4 208S114.9 236 192 236S331.6 223.5 331.6 208S269.1 180 192 180z" />
+    <glyph glyph-name="tombstone-alt"
+      unicode="&#xF721;"
+      horiz-adv-x="512" d=" M496 -16H448V256C448 362.04 362.04 448 256 448S64 362.04 64 256V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-32C512 -23.16 504.84 -16 496 -16zM400 -16H112V256C112 335.4 176.6 400 256 400S400 335.4 400 256V-16z" />
+    <glyph glyph-name="tombstone"
+      unicode="&#xF720;"
+      horiz-adv-x="512" d=" M336 288H280V336C280 344.8400000000001 272.84 352 264 352H248C239.16 352 232 344.8400000000001 232 336V288H176C167.16 288 160 280.8400000000001 160 272V256C160 247.16 167.16 240 176 240H232V112C232 103.16 239.16 96 248 96H264C272.84 96 280 103.16 280 112V240H336C344.84 240 352 247.16 352 256V272C352 280.8400000000001 344.84 288 336 288zM496 -16H448V256C448 362.04 362.04 448 256 448S64 362.04 64 256V-16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-32C512 -23.16 504.84 -16 496 -16zM400 -16H112V256C112 335.4 176.6 400 256 400S400 335.4 400 256V-16z" />
+    <glyph glyph-name="toolbox"
+      unicode="&#xF552;"
+      horiz-adv-x="512" d=" M512 210.75C512 219.24 508.63 227.37 502.63 233.38L457.37 278.64C451.37 284.64 443.23 288.01 434.74 288.01H384V368C384 394.51 362.51 416 336 416H176C149.49 416 128 394.51 128 368V288H77.26C68.77 288 60.63 284.63 54.63 278.63L9.37 233.37C3.37 227.37 0 219.23 0 210.74L0.01 144L0 0C0 -17.67 14.33 -32 32 -32H480C497.67 -32 512 -17.67 512 0V210.75zM176 368H336V288H176V368zM48 204.12L83.88 240H428.11L464 204.12L464.01 144H376V160C376 168.84 368.84 176 360 176H344C335.1600000000001 176 328 168.84 328 160V144H184V160C184 168.84 176.84 176 168 176H152C143.16 176 136 168.84 136 160V144H48.01L48 204.12zM464 16H48V96H136V80C136 71.16 143.16 64 152 64H168C176.84 64 184 71.16 184 80V96H328V80C328 71.16 335.1600000000001 64 344 64H360C368.84 64 376 71.16 376 80V96H464V16z" />
+    <glyph glyph-name="tools"
+      unicode="&#xF7D9;"
+      horiz-adv-x="512" d=" M224 351.9V303.1L253.7 273.4000000000001C246.9 308.2000000000001 257.2 343.7000000000001 282.2 368.7000000000001C302.5 389 329.4 399.9000000000001 357.2 399.9000000000001H358.4L301 342.7L316.1 252.1L406.7000000000001 237.0000000000001L464.0000000000001 294.3C464.3000000000001 266 453.4 238.8 432.8000000000001 218.2C423.5000000000001 208.9 412.6000000000001 201.8 401.0000000000001 196.6C402.8000000000001 195 404.9000000000001 193.7 406.6000000000001 192L437.3000000000001 161.3C447.8000000000001 167.6 457.8000000000001 175.2 466.7 184.2C504.8000000000001 222.3 520.4000000000001 278.5 507.4 330.8C504.4 343 495 352.6 483 356C470.8 359.4 457.8 355.9 449 347L390.3 288.4L357.9000000000001 293.8L352.5000000000001 326.2000000000001L411.1000000000001 384.8C420.0000000000001 393.7000000000001 423.4000000000001 406.7000000000001 420.0000000000001 418.8C416.7000000000001 430.9000000000001 407.0000000000001 440.3 394.8000000000001 443.3C341.6000000000001 456.5 286.9000000000001 441.3 248.2000000000001 402.7000000000001C238 392.5 229.7 381 222.9 368.8L224 368V351.9zM106 -6C93.2 -18.8 70.7 -18.8 57.9 -6C51.5 0.4 47.9 9 47.9 18C47.9 27.1 51.4 35.6 57.9 42L192.3 176.4L158.4 210.3L24 76C8.5 60.5 0 39.9 0 18S8.5 -24.5 24 -40S60.1 -64 82 -64S124.5 -55.5 140 -40L240.9 60.9C231.2 76.7 225.7 94.7 225.2 113L106 -6zM501.1 52.3L384 169.4C360.9 192.5 326.4 197 298.6 183.3L192 289.9V352L64 448L0 384L96 256H158.1L264.7 149.4C251.1 121.6 255.5 87.1 278.6 64L395.7 -53.1C410.3 -67.7 433.8999999999999 -67.7 448.3999999999999 -53.1L501.0999999999999 -0.4C515.5999999999999 14.2 515.5999999999999 37.8 501.0999999999999 52.3z" />
+    <glyph glyph-name="tooth"
+      unicode="&#xF5C9;"
+      horiz-adv-x="448" d=" M443.96 351.8C432.93 397.09 396.83 433.87 351.99 445.5C324.51 452.66 294.5 444.4700000000001 262.8300000000001 421.19C251.3800000000001 412.77 237.6300000000001 408.17 224.0200000000001 407.89C217.7400000000001 408.01 206.9 407.76 183.59 422.25C183.4900000000001 422.31 183.38 422.3 183.29 422.36C152.33 444.6 122.92 452.46 96.04 445.51C51.19 433.87 15.08 397.08 4.04 351.78C-5.55 312.26 2.09 273.04 25.55 241.33C46.06 213.62 57.59 179.51 61.84 133.98C65.45 95.29 71.1 44.36 82.77 -6.34L90.57 -40.33C93.79 -54.27 105.99 -64 120.24 -64C134.21 -64 146.36 -54.5 149.78 -40.84L184.26 97.59C188.82 115.9400000000001 205.16 128.7500000000001 224 128.7500000000001C242.84 128.7500000000001 259.2 115.9400000000001 263.76 97.59L298.22 -40.89C301.65 -54.5 313.8 -64 327.77 -64C342.02 -64 354.22 -54.26 357.44 -40.31L365.24 -6.34C376.9100000000001 44.37 382.57 95.29 386.17 133.98C390.42 179.52 401.95 213.63 422.4500000000001 241.33C445.9200000000001 273.04 453.5600000000001 312.26 443.9600000000001 351.8zM383.87 269.9C357.94 234.85 343.49 193.08 338.39 138.45C335.87 111.6 332.36 78.71 326.45 44.44L310.33 109.19C300.41 148.96 264.91 176.74 224 176.74C183.07 176.74 147.57 148.96 137.68 109.17L121.54 44.42C115.64 78.67 112.12 111.6 109.6 138.44C104.51 193.07 90.06 234.84 64.11 269.89C49.27 289.95 44.49 315 50.66 340.41C57.56 368.76 80.11 391.77 108.1 399.04C110.63 399.7 113.24 400.02 115.85 400.02C131.77 400.02 133.75 396.67 251.33 323.62C255.27 321.17 259.64 320.01 263.97 320.01C271.98 320.01 279.83 324.03 284.37 331.35C291.35 342.6 287.8999999999999 357.4 276.64 364.4L268.18 369.66C276.26 373.13 284.08 377.21 291.26 382.48C310.4799999999999 396.64 326.38 402.61 339.89 399.01C367.87 391.76 390.4099999999999 368.74 397.3 340.41C403.51 315.02 398.73 289.9700000000001 383.87 269.9z" />
+    <glyph glyph-name="toothbrush"
+      unicode="&#xF635;"
+      horiz-adv-x="640" d=" M624 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-32C640 -23.16 632.84 -16 624 -16zM48 224C39.16 224 32 216.84 32 208V16H80V208C80 216.84 72.84 224 64 224H48zM416 224C407.1600000000001 224 400 216.84 400 208V16H448V208C448 216.84 440.84 224 432 224H416zM144 224C135.16 224 128 216.84 128 208V16H176V208C176 216.84 168.84 224 160 224H144zM320 224C311.1600000000001 224 304 216.84 304 208V16H352V208C352 216.84 344.84 224 336 224H320zM232 224C223.16 224 216 216.84 216 208V16H264V208C264 216.84 256.84 224 248 224H232zM64 256H416C451.35 256 480 284.65 480 320C480 390.69 422.69 448 352 448C375.62 424.38 358.89 384 325.49 384H64C28.65 384 0 355.35 0 320S28.65 256 64 256zM64 336H325.49C357.94 336 387.15 354.11 401.67 382.68C420.13 368.01 432 345.36 432 320C432 311.18 424.82 304 416 304H64C55.18 304 48 311.18 48 320S55.18 336 64 336z" />
+    <glyph glyph-name="torah"
+      unicode="&#xF6A0;"
+      horiz-adv-x="448" d=" M448 64V432C448 440.8 440.8 448 432 448H80C35.8 448 0 412.2 0 368V16C0 -28.2 35.8 -64 80 -64H432C440.8 -64 448 -56.8 448 -48V-32C448 -24.2 442.4 -17.7 435.1 -16.3C430.9000000000001 -3.3 430.9000000000001 35.3 435.1 48.3C442.5 49.8 448 56.1999999999999 448 63.9999999999999zM394 -16H80C62.3 -16 48 -1.7 48 16C48 33.6 62.4 48 80 48H394C391.3 30.7 391.3 1.3 394 -16zM400 96H80C68.6 96 57.8 93.6 48 89.3V368C48 385.7 62.3 400 80 400H400V96zM136.71 203.08H189.79C190.69 203.08 191.52 202.62 192 201.86L226.4000000000001 147.1C229.0000000000001 142.97 235.0100000000001 142.97 237.6100000000001 147.1L272.0100000000001 201.86A2.61 2.61 0 0 0 274.2200000000001 203.08H327.3C332.5 203.08 335.67 208.81 332.9000000000001 213.21L306.01 256L332.89 298.79C335.66 303.2 332.49 308.93 327.29 308.93H274.21C273.31 308.93 272.48 309.39 272 310.15L237.6 364.9C235 369.03 228.99 369.03 226.39 364.9L192 310.15A2.61 2.61 0 0 0 189.79 308.93H136.71C131.51 308.93 128.34 303.2000000000001 131.11 298.79L157.99 256L131.11 213.21C128.34 208.8 131.51 203.08 136.71 203.08z" />
+    <glyph glyph-name="torii-gate"
+      unicode="&#xF6A1;"
+      horiz-adv-x="512" d=" M376.45 416H135.55A303.17 303.17 0 0 0 0 448V304C0 286.33 14.33 272 32 272H64V208H16C7.16 208 0 200.84 0 192V176C0 167.16 7.16 160 16 160H64V-48C64 -56.84 71.16 -64 80 -64H96C104.84 -64 112 -56.84 112 -48V160H400V-48C400 -56.84 407.1600000000001 -64 416 -64H432C440.84 -64 448 -56.84 448 -48V160H496C504.84 160 512 167.16 512 176V192C512 200.84 504.84 208 496 208H448V272H480C497.67 272 512 286.3300000000001 512 304V448A303.17 303.17 0 0 0 376.45 416zM112 208V272H232V208H112zM400 208H280V272H400V208zM464 320H48V379.14C76.58 371.79 106.08 368 135.55 368H376.44C405.92 368 435.41 371.79 463.99 379.14V320z" />
+    <glyph glyph-name="tornado"
+      unicode="&#xF76F;"
+      horiz-adv-x="512" d=" M429.1 422.8C436.5 433.4 429.1 448 416.2000000000001 448H16.2C7.1 448 -0.3 440.4 0 431.5C13.3 78.8 452 211.7 331.7 -41.1C326.7 -51.7 334.3 -64 346 -64H373.4C381.3 -64 389.2 -61 395.1 -55.7C715.7 231 256.2 174.1 429.1 422.8zM360.4 400C346.6 370.2 341.1 343.7 341.1 320H76.4C64.1 342 55.2 368.1 50.8 400H360.4000000000001zM114.6 272H349.3C361.1 238.7 383.6 212.7 404.4 192H257.1C252.8 193.9 248.6 195.8 244.3 197.7C196.7 218.6 150.4 239.1 114.6 272zM399.2000000000001 14.4C402.4000000000001 38.7 400.1 61 392.4000000000001 81.6C382.6 107.9 365.5000000000001 127.6 344.3 144.1H451.6C459.6 133.9 464.1 124.7 463.9 115C463.7 100.6999999999999 454.2 70.1 399.2000000000001 14.4z" />
+    <glyph glyph-name="tractor"
+      unicode="&#xF722;"
+      horiz-adv-x="640" d=" M608 288H528V336C528 346.5900000000001 531.52 356.82 537.86 365.13C541.1800000000001 369.48 540.52 375.67 536.87 379.75L520.65 397.87C515.65 403.45 506.91 403.06 502.12 397.29C487.93 380.17 480 358.49 480 336V288H364.4L306.2200000000001 423.77C299.88 438.48 285.44 448 269.44 448H136C113.94 448 96 430.06 96 408V263.4700000000001C84.03 262.6 72.85 257.75 64.28 249.18L38.83 223.73C29.39 214.28 24.19 201.73 24.19 188.37C24.19 183.43 24.9 178.6 26.27 174C10.63 165.53 0 148.98 0 130V94C0 75.02 10.63 58.47 26.26 50C24.89 45.4 24.18 40.57 24.18 35.63C24.18 22.27 29.38 9.72 38.83 0.28L64.29 -25.18C73.73 -34.62 86.29 -39.82 99.64 -39.83C104.58 -39.83 109.41 -39.12 114.01 -37.74C122.47 -53.37 139.02 -64 158.01 -64H194.02C213 -64 229.54 -53.36 238.01 -37.74A50.3 50.3 0 0 1 252.38 -39.83C265.74 -39.83 278.3 -34.63 287.74 -25.18L313.19 0.27C322.63 9.72 327.83 22.27 327.83 35.63C327.83 40.57 327.12 45.4 325.75 50C332.02 53.4 337.17 58.36 341.4700000000001 64H421.8900000000001C418.3200000000001 53.95 416.0100000000001 43.28 416.0100000000001 32C416.0100000000001 -21.02 458.9900000000001 -64 512.01 -64S608.01 -21.02 608.01 32C608.01 58.51 597.27 82.51 579.89 99.88L630.63 150.62C636.63 156.62 640 164.76 640 173.25V256C640 273.67 625.67 288 608 288zM144 400H264.19L312.17 288H157.99C153.13 288 148.44 287.26 144 285.9600000000001V400zM304 94C304 92.9 303.1 92 302 92H284.23C277.5 69.43 277.98 70.59 266.68 49.61L279.24 37.05C279.9100000000001 36.38 279.9000000000001 34.89 279.24 34.23L253.78 8.77H250.95L238.4 21.33C217.38 10.01 218.52 10.4900000000001 196 3.78V-14A2 2 0 0 0 194 -16H158C156.9 -16 156 -15.1 156 -14V3.77C133.51 10.48 134.62 10 113.6 21.32L101.04 8.76H98.21L72.75 34.22C72.08 34.89 72.08 36.38 72.75 37.05L85.3 49.61C74 70.59 74.47 69.47 67.76 92H50C48.9 92 48 92.9 48 94V130C48 131.1 48.9 132 50 132H67.77C74.5 154.57 74.02 153.41 85.32 174.39L72.76 186.95C72.09 187.62 72.1 189.11 72.76 189.77L98.22 215.23H101.05L113.6 202.67C134.62 213.99 133.48 213.51 156 220.22V238A2 2 0 0 0 158 240H194C195.1 240 196 239.1 196 238V220.23C218.49 213.53 217.38 214.01 238.4 202.68L250.96 215.24H253.79L279.25 189.78C279.92 189.11 279.92 187.62 279.25 186.95L266.7 174.39C278 153.41 277.53 154.53 284.24 132H302C303.1 132 304 131.1 304 130V94zM512 -16C485.53 -16 464 5.53 464 32S485.53 80 512 80S560 58.47 560 32S538.47 -16 512 -16zM592 179.88L536.55 124.43C528.67 126.52 520.54 128 511.9999999999999 128C492.41 128 474.24 122.07 459.05 112H352V130C352 148.98 341.37 165.53 325.74 174C327.11 178.6 327.82 183.43 327.82 188.37C327.82 201.73 322.62 214.28 313.17 223.72L296.9 240H592V179.88zM211.78 165.07C201.57 171.97 189.25 176 176 176S150.43 171.97 140.22 165.07A64.352 64.352 0 0 1 122.93 147.78C116.03 137.57 112 125.26 112 112C112 76.65 140.65 48 176 48S240 76.65 240 112C240 125.26 235.97 137.57 229.07 147.78A64.352 64.352 0 0 1 211.78 165.07zM176 96C167.18 96 160 103.18 160 112S167.18 128 176 128S192 120.82 192 112S184.82 96 176 96z" />
+    <glyph glyph-name="trademark"
+      unicode="&#xF25C;"
+      horiz-adv-x="640" d=" M105.014 301.972H12C5.373 301.972 0 307.3450000000001 0 313.972V340C0 346.627 5.373 352 12 352H256.169C262.796 352 268.169 346.627 268.169 340V313.972C268.169 307.3450000000001 262.796 301.972 256.169 301.972H163.155V44C163.155 37.373 157.782 32 151.155 32H117.014C110.387 32 105.014 37.373 105.014 44V301.972zM343.779 352H386.762A12 12 0 0 0 397.919 344.418L457.565 193.802C464.776 174.873 473.79 146.929 473.79 146.929H474.692S483.255 174.873 490.467 193.802L550.1129999999999 344.418A12 12 0 0 0 561.27 352H604.237A12 12 0 0 0 616.198 340.9600000000001L639.961 44.96C640.522 37.9760000000001 635.005 32.0000000000001 627.999 32.0000000000001H594.438A12 12 0 0 0 582.472 43.0960000000001L569.79 210.93C568.438 232.113 569.3389999999999 260.507 569.3389999999999 260.507H568.438S558.973 229.408 551.311 210.93L502.563 94.356A12 12 0 0 0 491.492 86.986H456.567A12 12 0 0 0 445.4820000000001 94.391L397.17 210.93C389.5080000000001 229.409 379.593 260.958 379.593 260.958H378.6910000000001S379.593 232.113 378.24 210.93L365.557 43.096A12 12 0 0 0 353.591 32H319.598C312.5850000000001 32 307.067 37.988 307.6380000000001 44.977L331.819 340.977A12 12 0 0 0 343.779 352z" />
+    <glyph glyph-name="traffic-cone"
+      unicode="&#xF636;"
+      horiz-adv-x="512" d=" M496 -16H474.61L294.54 436.48A18.284 18.284 0 0 1 277.55 448H234.44C226.95 448 220.22 443.43 217.45 436.48L37.39 -16H16C7.16 -16 0 -23.16 0 -32V-56C0 -60.42 3.58 -64 8 -64H504C508.42 -64 512 -60.42 512 -56V-32C512 -23.16 504.84 -16 496 -16zM365.64 128H146.36L190.93 240H321.0800000000001L365.6400000000001 128zM254.6 400H257.4L301.97 288H210.03L254.6 400zM127.25 80H384.74L422.94 -16H89.05L127.25 80z" />
+    <glyph glyph-name="traffic-light-go"
+      unicode="&#xF638;"
+      horiz-adv-x="384" d=" M384 256H336V301.31C364.57 317.94 384 348.55 384 384H336V416C336 433.67 321.67 448 304 448H80C62.33 448 48 433.67 48 416V384H0C0 348.56 19.43 317.95 48 301.31V256H0C0 220.56 19.43 189.95 48 173.31V128H0C0 90.27 21.97 57.95 53.63 42.26C70.3 -18.84 125.62 -64 192 -64S313.7 -18.84 330.37 42.26C362.03 57.95 384 90.27 384 128H336V173.31C364.57 189.95 384 220.56 384 256zM288 80C288 27.07 244.94 -16 192 -16S96 27.07 96 80V400H288V80zM192 272C218.51 272 240 293.49 240 320S218.51 368 192 368S144 346.51 144 320S165.49 272 192 272zM192 344C205.23 344 216 333.23 216 320S205.23 296 192 296S168 306.77 168 320S178.77 344 192 344zM192 144C218.51 144 240 165.49 240 192S218.51 240 192 240S144 218.51 144 192S165.49 144 192 144zM192 216C205.23 216 216 205.23 216 192S205.23 168 192 168S168 178.77 168 192S178.77 216 192 216zM192 16C218.51 16 240 37.49 240 64S218.51 112 192 112S144 90.51 144 64S165.49 16 192 16z" />
+    <glyph glyph-name="traffic-light-slow"
+      unicode="&#xF639;"
+      horiz-adv-x="384" d=" M384 256H336V301.31C364.57 317.94 384 348.55 384 384H336V416C336 433.67 321.67 448 304 448H80C62.33 448 48 433.67 48 416V384H0C0 348.56 19.43 317.95 48 301.31V256H0C0 220.56 19.43 189.95 48 173.31V128H0C0 90.27 21.97 57.95 53.63 42.26C70.3 -18.84 125.62 -64 192 -64S313.7 -18.84 330.37 42.26C362.03 57.95 384 90.27 384 128H336V173.31C364.57 189.95 384 220.56 384 256zM288 80C288 27.07 244.94 -16 192 -16C139.07 -16 96 27.07 96 80V400H288V80zM192 272C218.51 272 240 293.49 240 320S218.51 368 192 368S144 346.51 144 320S165.49 272 192 272zM192 344C205.23 344 216 333.23 216 320S205.23 296 192 296S168 306.77 168 320S178.77 344 192 344zM192 16C218.51 16 240 37.49 240 64S218.51 112 192 112S144 90.51 144 64S165.49 16 192 16zM192 88C205.23 88 216 77.23 216 64S205.23 40 192 40S168 50.77 168 64S178.77 88 192 88zM192 144C218.51 144 240 165.49 240 192S218.51 240 192 240S144 218.51 144 192S165.49 144 192 144z" />
+    <glyph glyph-name="traffic-light-stop"
+      unicode="&#xF63A;"
+      horiz-adv-x="384" d=" M384 256H336V301.31C364.57 317.94 384 348.55 384 384H336V416C336 433.67 321.67 448 304 448H80C62.33 448 48 433.67 48 416V384H0C0 348.56 19.43 317.95 48 301.31V256H0C0 220.56 19.43 189.95 48 173.31V128H0C0 90.27 21.97 57.95 53.63 42.26C70.3 -18.84 125.62 -64 192 -64S313.7 -18.84 330.37 42.26C362.03 57.95 384 90.27 384 128H336V173.31C364.57 189.95 384 220.56 384 256zM288 80C288 27.07 244.94 -16 192 -16C139.07 -16 96 27.07 96 80V400H288V80zM192 272C218.51 272 240 293.49 240 320S218.51 368 192 368S144 346.51 144 320S165.49 272 192 272zM192 144C218.51 144 240 165.49 240 192S218.51 240 192 240S144 218.51 144 192S165.49 144 192 144zM192 216C205.23 216 216 205.23 216 192S205.23 168 192 168S168 178.77 168 192S178.77 216 192 216zM192 16C218.51 16 240 37.49 240 64S218.51 112 192 112S144 90.51 144 64S165.49 16 192 16zM192 88C205.23 88 216 77.23 216 64S205.23 40 192 40S168 50.77 168 64S178.77 88 192 88z" />
+    <glyph glyph-name="traffic-light"
+      unicode="&#xF637;"
+      horiz-adv-x="384" d=" M384 256H336V301.31C364.57 317.94 384 348.55 384 384H336V416C336 433.67 321.67 448 304 448H80C62.33 448 48 433.67 48 416V384H0C0 348.56 19.43 317.95 48 301.31V256H0C0 220.56 19.43 189.95 48 173.31V128H0C0 90.27 21.97 57.95 53.63 42.26C70.3 -18.84 125.62 -64 192 -64S313.7 -18.84 330.37 42.26C362.03 57.95 384 90.27 384 128H336V173.31C364.57 189.95 384 220.56 384 256zM288 80C288 27.07 244.94 -16 192 -16C139.07 -16 96 27.07 96 80V400H288V80zM192 272C218.51 272 240 293.49 240 320S218.51 368 192 368S144 346.51 144 320S165.49 272 192 272zM192 144C218.51 144 240 165.49 240 192S218.51 240 192 240S144 218.51 144 192S165.49 144 192 144zM192 16C218.51 16 240 37.49 240 64S218.51 112 192 112S144 90.51 144 64S165.49 16 192 16z" />
+    <glyph glyph-name="train"
+      unicode="&#xF238;"
+      horiz-adv-x="448" d=" M264 112C264 89.909 246.091 72 224 72S184 89.909 184 112S201.909 152 224 152S264 134.091 264 112zM448 338.286V109.714C448 60.52 404.295 19.085 348.9410000000001 5.001L407.699 -53.757C411.479 -57.537 408.802 -64 403.456 -64H355.029A11.996 11.996 0 0 0 346.544 -60.485L286.0590000000001 0H161.941L101.456 -60.485A12.002 12.002 0 0 0 92.971 -64H44.544C39.199 -64 36.522 -57.537 40.301 -53.757L99.059 5.001C43.886 19.039 0 60.344 0 109.714V338.286C0 402.072 71.001 448 138.286 448H309.714C377.889 448 448 402.078 448 338.286zM48 224H400V304H48V224zM50.774 352H397.308C387.108 378.136 349.337 400 309.713 400H138.286C99.424 400 61.275 378.33 50.774 352zM400 109.714V176H48V109.714C48 73.505 99.974 48 138.286 48H309.714C347.479 48 400 73.184 400 109.714z" />
+    <glyph glyph-name="tram"
+      unicode="&#xF7DA;"
+      horiz-adv-x="512" d=" M511.1 398.4C507.6 411.2 494.4 418.6 481.6 415.2L17.6 287.2C4.8 283.7 -2.7 270.4 0.8 257.7C3.8 247 13.5 240 24 240C26.1 240 28.3 240.3 30.4 240.9L232 296.5V224H64C46.3 224 32 209.7 32 192V-32C32 -49.7 46.3 -64 64 -64H448C465.7 -64 480 -49.7 480 -32V192C480 209.7 465.7 224 448 224H280V309.7L494.4 368.8C507.2 372.4 514.6999999999999 385.6 511.1 398.4zM432 176V-16H80V176H432zM144 64H176C184.8 64 192 71.2 192 80V112C192 120.8 184.8 128 176 128H144C135.2 128 128 120.8 128 112V80C128 71.2 135.2 64 144 64zM240 64H272C280.8 64 288 71.2 288 80V112C288 120.8 280.8 128 272 128H240C231.2 128 224 120.8 224 112V80C224 71.2 231.2 64 240 64zM336 64H368C376.8 64 384 71.2 384 80V112C384 120.8 376.8 128 368 128H336C327.2 128 320 120.8 320 112V80C320 71.2 327.2 64 336 64zM192 352C209.7 352 224 366.3 224 384S209.7 416 192 416S160 401.7 160 384S174.3 352 192 352zM288 384C305.7 384 320 398.3 320 416S305.7 448 288 448S256 433.7 256 416S270.3 384 288 384z" />
+    <glyph glyph-name="transgender-alt"
+      unicode="&#xF225;"
+      horiz-adv-x="480" d=" M468 448H405C394.3 448 389 435.1 396.5 427.5L411 413L323.4 325.4C299.9 342.1 271.1 352 240 352S180.1 342.1 156.6 325.4L130.6 351.4L150 370.9C154.7 375.6 154.7 383.2 150 387.9L133 404.9C128.3 409.6 120.7 409.6 116 404.9L96.6 385.4L69 413L83.5 427.5C91.1 435.1 85.7 448 75 448H12C5.4 448 0 442.6 0 436V373C0 362.3 12.9 357 20.5 364.5L35 379L62.6 351.4L43.2 332C38.5 327.3 38.5 319.7 43.2 315L60.2 298C64.9 293.3 72.5 293.3 77.2 298L96.7 317.5L122.7 291.5C105.9 267.9 96 239.1 96 208C96 136.6 147.9 77.4 216 66V32H172C165.4 32 160 26.6 160 20V-4C160 -10.6 165.4 -16 172 -16H216V-52C216 -58.6 221.4 -64 228 -64H252C258.6 -64 264 -58.6 264 -52V-16H308C314.6 -16 320 -10.6 320 -4V20C320 26.6 314.6 32 308 32H264V66C332.1 77.4 384 136.6 384 208C384 239.1 374.1 267.9 357.4 291.4L445 379L459.5 364.5C467.1 356.9 480 362.3 480 373V436C480 442.6 474.6 448 468 448zM240 112C187.1 112 144 155.1 144 208S187.1 304 240 304S336 260.9 336 208S292.9 112 240 112z" />
+    <glyph glyph-name="transgender"
+      unicode="&#xF224;"
+      horiz-adv-x="384" d=" M372 448H309C298.3 448 293 435.1 300.5 427.5L315 413L227.4 325.4C203.9 342.1 175.1 352 144 352C64.5 352 0 287.5 0 208C0 136.6 51.9 77.4 120 66V32H76C69.4 32 64 26.6 64 20V-4C64 -10.6 69.4 -16 76 -16H120V-52C120 -58.6 125.4 -64 132 -64H156C162.6 -64 168 -58.6 168 -52V-16H212C218.6 -16 224 -10.6 224 -4V20C224 26.6 218.6 32 212 32H168V66C236.1 77.4 288 136.6 288 208C288 239.1 278.1 267.9 261.4 291.4L349 379L363.5 364.5C371.1 356.9 384 362.3 384 373V436C384 442.6 378.6 448 372 448zM144 112C91.1 112 48 155.1 48 208S91.1 304 144 304S240 260.9 240 208S196.9 112 144 112z" />
+    <glyph glyph-name="trash-alt"
+      unicode="&#xF2ED;"
+      horiz-adv-x="448" d=" M192 260V44C192 37.373 186.627 32 180 32H156C149.373 32 144 37.373 144 44V260C144 266.627 149.373 272 156 272H180C186.627 272 192 266.627 192 260zM292 272H268C261.373 272 256 266.627 256 260V44C256 37.373 261.373 32 268 32H292C298.627 32 304 37.373 304 44V260C304 266.627 298.627 272 292 272zM424 368C437.255 368 448 357.255 448 344V332C448 325.373 442.627 320 436 320H416V-16C416 -42.51 394.51 -64 368 -64H80C53.49 -64 32 -42.51 32 -16V320H12C5.373 320 0 325.373 0 332V344C0 357.255 10.745 368 24 368H98.411L132.429 424.6960000000001A48 48 0 0 0 173.589 448H274.412A48 48 0 0 0 315.572 424.6960000000001L349.589 368H424zM154.389 368H293.612L276.1600000000001 397.087A6 6 0 0 1 271.015 400H176.987A6 6 0 0 1 171.842 397.087L154.389 368zM368 320H80V-10A6 6 0 0 1 86 -16H362A6 6 0 0 1 368 -10V320z" />
+    <glyph glyph-name="trash"
+      unicode="&#xF1F8;"
+      horiz-adv-x="512" d=" M381.6 368L347.6 424.7C338.9 439.2 323.3 448 306.4 448H205.6C188.7 448 173.1 439.2 164.4 424.7L130.4 368H40C26.7 368 16 357.3 16 344V332C16 325.4 21.4 320 28 320H44.4L76 -20.4C78.3 -45.1 99 -64 123.8 -64H388.3C413.1 -64 433.8 -45.1 436.1 -20.4L467.6 320H484C490.6 320 496 325.4 496 332V344C496 357.3 485.3 368 472 368H381.6zM205.6 400H306.4000000000001L325.6 368H186.4L205.6 400zM388.2000000000001 -16H123.8L92.6 320H419.3L388.2 -16z" />
+    <glyph glyph-name="treasure-chest"
+      unicode="&#xF723;"
+      horiz-adv-x="576" d=" M448 416H128C57.31 416 0 358.69 0 288V0C0 -17.67 14.33 -32 32 -32H544C561.67 -32 576 -17.67 576 0V288C576 358.69 518.69 416 448 416zM96 16H48V160H96V16zM96 208H48V288C48 320.7200000000001 67.8 348.8400000000001 96 361.2200000000001V208zM432 16H144V160H224V112C224 103.16 231.16 96 240 96H336C344.84 96 352 103.16 352 112V160H432V16zM272 160V192C272 200.84 279.1600000000001 208 288 208S304 200.84 304 192V160C304 151.16 296.84 144 288 144S272 151.16 272 160zM432 208H352V240C352 248.84 344.84 256 336 256H240C231.16 256 224 248.84 224 240V208H144V368H432V208zM528 16H480V160H528V16zM528 208H480V361.2200000000001C508.2 348.8400000000001 528 320.7200000000001 528 288V208z" />
+    <glyph glyph-name="tree-alt"
+      unicode="&#xF400;"
+      horiz-adv-x="512" d=" M463.16 249.91A94.96 94.96 0 0 1 465.6 271.27C465.6 329.83 413.63 376.69 354.54 371.18C343.81 415.19 303.69 448 256 448S168.19 415.19 157.47 371.17C98.38 376.69 46.41 329.83 46.41 271.26C46.41 264.07 47.22 256.93 48.85 249.9C18.88 232.11 0 200.14 0 164.36C0 109.02 45.47 64 101.34 64H224V7.55L193.71 -40.85C188.39 -51.4899999999999 196.13 -64.01 208.02 -64.01H303.98C315.87 -64.01 323.61 -51.49 318.29 -40.85L288 7.55V64H410.66C466.53 64 512 109.02 512 164.36C512 200.14 493.12 232.11 463.16 249.9100000000001zM410.6600000000001 112H101.34C71.94 112 48 135.48 48 164.36C48 187.31 63.22 207.31 85.84 214.11L113.43 222.39L100.31 248.0300000000001C96.37 255.67 94.4 263.48 94.4 271.26C94.4 300.14 118.31 323.64 147.71 323.64C155.12 323.64 162.49 322.0300000000001 169.65 318.87L207.18 302.2100000000001L202.65 347.63C202.66 376.52 226.59 400 256 400S309.3400000000001 376.52 309.19 346.62L304.81 302.2100000000001L342.3400000000001 318.87C377.9300000000001 334.5900000000001 417.5900000000001 307.42 417.5900000000001 271.26C417.5900000000001 263.48 415.62 255.67 411.68 248.03L398.56 222.39L426.15 214.11C448.77 207.31 463.99 187.31 463.99 164.36C464 135.48 440.06 112 410.6600000000001 112z" />
+    <glyph glyph-name="tree-christmas"
+      unicode="&#xF7DB;"
+      horiz-adv-x="512" d=" M232 192C218.7 192 208 181.3 208 168S218.7 144 232 144S256 154.7 256 168S245.3 192 232 192zM312 96C298.7 96 288 85.3 288 72S298.7 48 312 48S336 58.7 336 72S325.3 96 312 96zM502.1 13.2L435.6 100.2C446.2000000000001 105 455 113.5 459.9 124.6C467.6 142 464.3 162.2 451.5000000000001 176.3L338 301.2L350.4 307.4C361.2 312.8 368.1 323.9 368.1 336S361.3 359.2 350.4 364.6L306.6 386.5L284.7 430.3C279.2 441.2 268.1 448 256 448S232.8 441.2 227.4 430.3L205.5 386.5L161.7 364.6C150.8 359.2 144 348.1 144 336S150.8 312.8 161.7 307.4L174.1 301.2000000000001L60.5 176.3C47.7 162.2 44.4 142 52.1 124.6C57 113.5 65.8 105 76.4 100.2000000000001L9.9 13.2C-1.2 -1.3 -3.1 -20.9 5 -37.1999999999999C13.1 -53.5999999999999 29.8 -63.8999999999999 48 -63.8999999999999H464C482.3 -63.8999999999999 498.9 -53.4999999999999 507 -37.1999999999999C515.1 -20.8999999999999 513.2 -1.3 502.1 13.2zM236.5 348.4C239.6 349.9 242.1 352.5 243.7 355.6L256 380.2L268.4 355.5C269.9 352.4 272.5 349.9 275.6 348.3L300.3 335.9L275.6 323.5C272.5 322 270 319.4 268.4 316.3L256 291.8L243.6 316.5C242.1 319.6 239.5 322.1 236.4 323.7L211.8 336L236.5 348.4zM48 -16L170.4 144H96L212.3 271.9L227.4 241.7C232.8 230.9 243.9 224 256 224S279.2 230.8000000000001 284.6 241.7L299.7000000000001 271.9L416 144H341.6L464 -16H48z" />
+    <glyph glyph-name="tree-decorated"
+      unicode="&#xF7DC;"
+      horiz-adv-x="512" d=" M500.3 15.4L453.7 69.1C462.9 73.8 470.5 81.3 475.2 90.9C483.2 107.4 481.1 127.1 469.8 141.5L413.6 213C423.5 218 431.5 226.3 436.1 236.9C443.7000000000001 254.5 440.1 274.9 426.9000000000001 288.9L290.9000000000001 432.9C281.8 442.6 269.2 448 256 448S230.2 442.6 221.1 433L85.1 289C71.9 275.1 68.3 254.6 75.9 237C80.5 226.4 88.5 218.1 98.4 213.1L42.2 141.6C30.8 127.2000000000001 28.7 107.5 36.8 91C41.5 81.4 49.1 73.8 58.3 69.2L11.7 15.5C-0.6 1.3 -3.5 -18.8 4.3 -35.9C12.1 -53 29.2 -64 48 -64H464C482.8 -64 499.9 -53 507.7 -35.9C515.5 -18.8 512.6 1.2 500.3 15.4zM48 -16L158.9 112H80L193.1 256H120L256 400L392 256H318.9L432 112H353.1L464 -16H48zM304 72C290.7 72 280 61.3 280 48S290.7 24 304 24S328 34.7 328 48S317.3 72 304 72zM192 184C178.7 184 168 173.3 168 160S178.7 136 192 136S216 146.7 216 160S205.3 184 192 184zM296 272C296 285.3 285.3 296 272 296S248 285.3 248 272S258.7 248 272 248S296 258.7 296 272z" />
+    <glyph glyph-name="tree-large"
+      unicode="&#xF7DD;"
+      horiz-adv-x="512" d=" M500.3 15.4L453.7 69.1C462.9 73.8 470.5 81.3 475.2 90.9C483.2 107.4 481.1 127.1 469.8 141.5L413.6 213C423.5 218 431.5 226.3 436.1 236.9C443.7000000000001 254.5 440.1 274.9 426.9000000000001 288.9L290.9000000000001 432.9C281.8 442.6 269.2 448 256 448S230.2 442.6 221.1 433L85.1 289C71.9 275.1 68.3 254.6 75.9 237C80.5 226.4 88.5 218.1 98.4 213.1L42.2 141.6C30.8 127.2000000000001 28.7 107.5 36.8 91C41.5 81.4 49.1 73.8 58.3 69.2L11.7 15.5C-0.6 1.3 -3.5 -18.8 4.3 -35.9C12.1 -53 29.2 -64 48 -64H464C482.8 -64 499.9 -53 507.7 -35.9C515.5 -18.8 512.6 1.2 500.3 15.4zM48 -16L158.9 112H80L193.1 256H120L256 400L392 256H318.9L432 112H353.1L464 -16H48z" />
+    <glyph glyph-name="tree"
+      unicode="&#xF1BB;"
+      horiz-adv-x="448" d=" M442.19 71.77L386.7200000000001 136.14H392C401.34 136.14 409.84 141.57 413.78 150.06C417.72 158.53 416.34 168.54 410.31 175.67L355.75 240.2200000000001H368C377.4700000000001 240.2200000000001 386.06 245.8000000000001 389.94 254.4600000000001A24.088 24.088 0 0 1 385.85 280.3100000000001L241.85 440.4200000000001C232.7200000000001 450.52 215.29 450.52 206.16 440.4200000000001L62.16 280.3100000000001A24.063 24.063 0 0 1 58.07 254.4600000000001C61.95 245.8000000000001 70.54 240.2200000000001 80.01 240.2200000000001H92.26L37.7 175.67C31.67 168.54 30.29 158.53 34.23 150.06A24.021000000000004 24.021000000000004 0 0 1 56.01 136.14H61.29L5.81 71.77C-0.32 64.66 -1.72 54.62 2.18 46.08A23.998000000000005 23.998000000000005 0 0 1 23.99 32.07H191.99V7.61L161.7 -40.82C156.38 -51.47 164.12 -63.99 176.01 -63.99H271.9700000000001C283.86 -63.99 291.6 -51.46 286.2800000000001 -40.82L256 7.61V32.07H424C433.38 32.07 441.9100000000001 37.54 445.81 46.08C449.7200000000001 54.62 448.32 64.65 442.19 71.77zM76.37 80.1L166.03 184.17H107.75L195.75 288.24H133.87L224 388.45L314.13 288.25H252.25L340.25 184.18H281.9700000000001L371.63 80.11H76.37z" />
+    <glyph glyph-name="trees"
+      unicode="&#xF724;"
+      horiz-adv-x="640" d=" M634.19 71.77L578.72 136.14H584C593.34 136.14 601.84 141.57 605.78 150.06C609.72 158.53 608.3399999999999 168.54 602.31 175.67L547.75 240.2200000000001H560C569.47 240.2200000000001 578.06 245.8000000000001 581.94 254.4600000000001A24.088 24.088 0 0 1 577.85 280.3100000000001L433.85 440.4200000000001C424.7200000000001 450.52 407.29 450.52 398.1600000000001 440.4200000000001L320 353.52L241.84 440.42C232.71 450.52 215.28 450.52 206.15 440.42L62.15 280.31A24.063 24.063 0 0 1 58.06 254.46C61.94 245.8 70.53 240.22 80 240.22H92.25L37.69 175.67C31.66 168.54 30.28 158.53 34.22 150.06A24.021000000000004 24.021000000000004 0 0 1 56 136.14H61.28L5.81 71.77C-0.32 64.66 -1.72 54.62 2.18 46.08A23.998000000000005 23.998000000000005 0 0 1 23.99 32.07H191.99V7.61L161.7 -40.82C156.38 -51.47 164.12 -63.99 176.01 -63.99H271.9700000000001C283.86 -63.99 291.6 -51.46 286.2800000000001 -40.82L256 7.61V32.07H384V7.61L353.71 -40.82C348.39 -51.47 356.13 -63.99 368.02 -63.99H463.98C475.8699999999999 -63.99 483.61 -51.46 478.29 -40.82L448 7.61V32.07H616C625.38 32.07 633.91 37.54 637.81 46.08C641.7199999999999 54.62 640.3199999999999 64.65 634.1899999999999 71.77zM304 80.1H76.37L166.03 184.17H107.75L195.75 288.24H133.87L224 388.45L314.13 288.25H252.25L340.25 184.18H281.9700000000001L371.63 80.11H304zM435 80.1L386.71 136.1400000000001H392C401.34 136.1400000000001 409.84 141.5700000000001 413.78 150.0600000000001C417.72 158.5300000000001 416.34 168.5400000000001 410.31 175.6700000000001L355.75 240.2200000000001H368C377.4700000000001 240.2200000000001 386.06 245.8000000000001 389.94 254.4600000000001A24.088 24.088 0 0 1 385.85 280.3100000000001L352.3 317.6200000000001L416 388.45L506.13 288.25H444.25L532.25 184.18H473.97L563.63 80.11H435z" />
+    <glyph glyph-name="triangle"
+      unicode="&#xF2EC;"
+      horiz-adv-x="576" d=" M329.6 424C311.2000000000001 456 264.9000000000001 456 246.4000000000001 424L6.5 8C-11.9 -23.9 11.1 -64 48.1 -64H528C564.9 -64 588 -24 569.6 8L329.6 424zM48 -16L288 400L528 -16H48z" />
+    <glyph glyph-name="trophy-alt"
+      unicode="&#xF2EB;"
+      horiz-adv-x="576" d=" M359.3 309.1L315.9000000000001 315.4L296.5000000000001 354.7C293.0000000000001 361.7 283.0000000000001 361.8 279.5000000000001 354.7L260.1000000000001 315.4L216.7000000000001 309.1C208.9000000000001 308 205.8000000000001 298.4 211.4000000000001 292.9L242.8000000000001 262.3L235.4000000000001 219.1C234.1000000000001 211.4 242.2000000000001 205.4 249.2000000000001 209.1L288.0000000000001 229.5000000000001L326.8000000000001 209.1C333.7000000000001 205.5 341.9000000000001 211.3 340.6000000000001 219.1L333.2000000000001 262.3L364.6000000000001 292.9C370.2000000000001 298.4 367.1000000000001 308 359.3000000000001 309.1zM448 384V432C448 440.8 440.8 448 432 448H144C135.2 448 128 440.8 128 432V384H16C7.2 384 0 376.8 0 368V307.2C0 246.9 68.3 182 159.6 164.6C187 106.7000000000001 227.7 76.4 264 67.2000000000001V-16H200C177.9 -16 160 -33.9 160 -56C160 -60.4 163.6 -64 168 -64H408C412.4 -64 416 -60.4 416 -56C416 -33.9 398.1 -16 376 -16H312V67.2C348.3 76.5 389 106.7 416.4 164.6C507.5 181.9 576 246.8 576 307.2V368C576 376.8 568.8 384 560 384H448zM48 307.2V336H128C128 296.8 130.1 259.8 140.3 219.2C85.2 238.1 48 278.1 48 307.2zM288 112C235 112 176 190.4 176 328V400H400V328C400 187.5 339.2 112 288 112zM528 307.2C528 278.1 490.8 238.1 435.7 219.2C445.9 259.8 448 296.9 448 336H528V307.2z" />
+    <glyph glyph-name="trophy"
+      unicode="&#xF091;"
+      horiz-adv-x="576" d=" M448 384V432C448 440.8 440.8 448 432 448H144C135.2 448 128 440.8 128 432V384H16C7.2 384 0 376.8 0 368V307.2C0 246.9 68.3 182 159.6 164.6C187 106.7000000000001 227.7 76.4 264 67.2000000000001V-16H200C177.9 -16 160 -33.9 160 -56C160 -60.4 163.6 -64 168 -64H408C412.4 -64 416 -60.4 416 -56C416 -33.9 398.1 -16 376 -16H312V67.2C348.3 76.5 389 106.7 416.4 164.6C507.5 181.9 576 246.8 576 307.2V368C576 376.8 568.8 384 560 384H448zM48 307.2V336H128C128 296.8 130.1 259.8 140.3 219.2C85.2 238.1 48 278.1 48 307.2zM288 112C235 112 176 190.4 176 328V400H400V328C400 187.5 339.2 112 288 112zM528 307.2C528 278.1 490.8 238.1 435.7 219.2C445.9 259.8 448 296.9 448 336H528V307.2z" />
+    <glyph glyph-name="truck-container"
+      unicode="&#xF4DC;"
+      horiz-adv-x="640" d=" M32 144H368C385.7 144 400 158.3 400 176V384C400 401.7 385.7 416 368 416H32C14.3 416 0 401.7 0 384V176C0 158.3 14.3 144 32 144zM48 368H352V192H48V368zM621.3 242.7L562.8 301.2C550.8 313.2 534.5 319.9 517.5 319.9H464C446.3 319.9 432 305.6 432 287.9V111.9H32C14.3 111.9 0 97.6 0 79.9V52.1C0 11.3 28.7 -26 69.1 -31.4C99.8 -35.5000000000001 127.4 -21.9 144 0.3C162.4 -24.4 194.4 -38.4 229.3 -29.4C254.5 -22.9 275.4000000000001 -3.2 283.7 21.4C288.6 36.2 289.1 50.6 286.5 63.8H449.7C447 50.6 447.5 36.1999999999999 452.5 21.4C460.9 -3.7 482.4 -23.5 508.1 -29.7C560.9 -42.5000000000001 608.1 -2.8000000000001 608.1 47.9C608.1 53.4 607.5 58.7 606.5 63.9H624C632.8 63.9 640 71.1 640 79.9V197.5C640 214.5 633.3 230.7 621.3 242.7zM80 16C62.4 16 48 30.4 48 48S62.4 80 80 80S112 65.6 112 48S97.6 16 80 16zM208 16C190.4 16 176 30.4 176 48S190.4 80 208 80S240 65.6 240 48S225.6 16 208 16zM480 272H517.5C521.8 272 525.8 270.3 528.8 267.3L572.0999999999999 224H480V272zM528 16C510.4 16 496 30.4 496 48S510.4 80 528 80S560 65.6 560 48S545.6 16 528 16zM592 112H575.6C562.3000000000001 121.9 545.9 128 528 128S493.8 121.9 480.4 112H480V192H592V112zM136 336H104C99.6 336 96 332.4 96 328V232C96 227.6 99.6 224 104 224H136C140.4 224 144 227.6 144 232V328C144 332.4 140.4 336 136 336zM296 336H264C259.6 336 256 332.4 256 328V232C256 227.6 259.6 224 264 224H296C300.4 224 304 227.6 304 232V328C304 332.4 300.4 336 296 336zM216 336H184C179.6 336 176 332.4 176 328V232C176 227.6 179.6 224 184 224H216C220.4 224 224 227.6 224 232V328C224 332.4 220.4 336 216 336z" />
+    <glyph glyph-name="truck-couch"
+      unicode="&#xF4DD;"
+      horiz-adv-x="640" d=" M13.8 210.1C16.3 211.1 18.7 212.2 21.3 212.9C27.4 214.5 33.7 215.4 40 215.4C69.8 215.4 96.1 196.9 106.8 169.6L231.8 203.1C229.3 219.2 232.1 235.5000000000001 240.3 249.8C249.9 266.5 265.4000000000001 278.4 284 283.3C286.6 284 289.3 284 292 284.4L291.7 285.4C282.6 319.5 247.5 339.8 213.3 330.7L58.9 289.2C24.8 280.1 4.5 245 13.6 210.8L13.8 210.1zM7.6 109.8L24.1 48L101.4 68.7L286.9 118.4L301.7 122.4L320 127.3V249.3C311.7 253.3 302 254.9 292.4 252.4C271.1 246.7 258.4 224.7 264.1 203.4L270.3 180.1999999999999L127.1 141.8L115.7 138.8L84.8 130.5L78.6 153.6999999999999C72.9 175 50.9 187.6999999999999 29.6 182C8.3 176.3 -4.4 154.3 1.3 133L7.6 109.8zM640 400V448H384C366.3 448 352 433.7 352 416V75.4L5.9 -17.4C1.6 -18.5 -0.9 -22.9 0.2 -27.2L8.5 -58.1C9.6 -62.4 14 -64.9 18.3 -63.7999999999999L416.5 43C419.2 -16.5 467.9 -64 528 -64C589.9 -64 640 -13.9 640 48S589.9 160 528 160C483.4 160 445.2 133.7 427.2 96H400V400H640zM528 112C563.3 112 592 83.3 592 48S563.3 -16 528 -16S464 12.7 464 48S492.7 112 528 112z" />
+    <glyph glyph-name="truck-loading"
+      unicode="&#xF4DE;"
+      horiz-adv-x="640" d=" M640 400V448H384C366.3 448 352 433.7 352 416V75.4L5.9 -17.4C1.6 -18.5 -0.9 -22.9 0.2 -27.2L8.5 -58.1C9.6 -62.4 14 -64.9 18.3 -63.7999999999999L416.5 43C419.2 -16.5 467.9 -64 528 -64C589.9 -64 640 -13.9 640 48S589.9 160 528 160C483.4 160 445.2 133.7 427.2 96H400V400H640zM528 112C563.3 112 592 83.3 592 48S563.3 -16 528 -16S464 12.7 464 48S492.7 112 528 112zM50.2 72.4C52.5 63.9 61.3 58.8 69.8 61.1L286.2000000000001 119.1C294.7000000000001 121.4 299.8000000000001 130.2 297.5000000000001 138.7L247.8000000000001 324.2C245.5000000000001 332.7 236.7000000000001 337.8 228.2000000000001 335.5L151 314.7L175.8 222L114 205.5L89.2 298.2L11.9 277.5C3.4 275.2 -1.7 266.4 0.6 257.9L50.2 72.4z" />
+    <glyph glyph-name="truck-monster"
+      unicode="&#xF63B;"
+      horiz-adv-x="640" d=" M272 96H266.8C264.6 103.33 261.73 110.28 258.1500000000001 116.89L261.8200000000001 120.56C268.0700000000001 126.81 268.0700000000001 136.94 261.8200000000001 143.19L239.1900000000001 165.82C232.9400000000001 172.07 222.8100000000001 172.07 216.5600000000001 165.82L212.8900000000001 162.15A110.84999999999998 110.84999999999998 0 0 1 192 170.8V176C192 184.84 184.84 192 176 192H144C135.16 192 128 184.84 128 176V170.8C120.67 168.6 113.72 165.73 107.11 162.15L103.44 165.8200000000001C97.19 172.0700000000001 87.06 172.0700000000001 80.81 165.8200000000001L58.18 143.2C51.93 136.95 51.93 126.82 58.18 120.57L61.85 116.9A110.84999999999998 110.84999999999998 0 0 1 53.2 96.01H48C39.16 96.01 32 88.85 32 80.01V48.01C32 39.17 39.16 32.01 48 32.01H53.2C55.4 24.68 58.27 17.73 61.85 11.12L58.18 7.45C51.93 1.2 51.93 -8.93 58.18 -15.18L80.81 -37.81C87.06 -44.06 97.19 -44.06 103.44 -37.81L107.11 -34.14C113.72 -37.71 120.68 -40.59 128.01 -42.79V-47.9899999999999C128.01 -56.8299999999999 135.17 -63.9899999999999 144.01 -63.9899999999999H176.01C184.85 -63.9899999999999 192.01 -56.8299999999999 192.01 -47.9899999999999V-42.79C199.34 -40.59 206.29 -37.72 212.91 -34.14L216.58 -37.81C222.83 -44.06 232.96 -44.06 239.21 -37.81L261.84 -15.18C268.09 -8.93 268.09 1.2 261.84 7.45L258.17 11.12A110.84999999999998 110.84999999999998 0 0 1 266.82 32.01H272.0199999999999C280.8599999999999 32.01 288.0199999999999 39.17 288.0199999999999 48.01V80.01C288 88.84 280.84 96 272 96zM160 0C124.65 0 96 28.65 96 64S124.65 128 160 128S224 99.35 224 64S195.35 0 160 0zM592 96H586.8C584.5999999999999 103.33 581.7299999999999 110.28 578.15 116.89L581.8199999999999 120.56C588.0699999999999 126.81 588.0699999999999 136.94 581.8199999999999 143.19L559.1899999999999 165.82C552.9399999999999 172.07 542.81 172.07 536.56 165.82L532.89 162.15A110.84999999999998 110.84999999999998 0 0 1 512 170.8V176C512 184.84 504.84 192 496 192H464C455.16 192 448 184.84 448 176V170.8C440.67 168.6 433.7200000000001 165.73 427.11 162.15L423.44 165.8200000000001C417.19 172.0700000000001 407.06 172.0700000000001 400.81 165.8200000000001L378.18 143.1900000000001C371.93 136.9400000000001 371.93 126.8100000000001 378.18 120.5600000000001L381.85 116.8900000000001A110.84999999999998 110.84999999999998 0 0 1 373.2 96H368C359.1600000000001 96 352 88.84 352 80V48C352 39.16 359.1600000000001 32 368 32H373.2C375.4 24.67 378.27 17.72 381.85 11.11L378.18 7.44C371.93 1.19 371.93 -8.94 378.18 -15.19L400.81 -37.82C407.06 -44.07 417.19 -44.07 423.44 -37.82L427.11 -34.15C433.72 -37.72 440.68 -40.6 448.01 -42.8V-47.9999999999999C448.01 -56.8399999999999 455.17 -63.9999999999999 464.0099999999999 -63.9999999999999H496.0099999999999C504.8499999999999 -63.9999999999999 512.01 -56.8399999999999 512.01 -47.9999999999999V-42.8C519.34 -40.6 526.29 -37.73 532.91 -34.15L536.5799999999999 -37.82C542.8299999999999 -44.07 552.9599999999999 -44.07 559.2099999999999 -37.82L581.8399999999999 -15.19C588.0899999999999 -8.94 588.0899999999999 1.19 581.8399999999999 7.44L578.17 11.11A110.84999999999998 110.84999999999998 0 0 1 586.8199999999999 32H592.02C600.86 32 608.02 39.16 608.02 48V80C608 88.84 600.84 96 592 96zM480 0C444.65 0 416 28.65 416 64S444.65 128 480 128S544 99.35 544 64S515.35 0 480 0zM624 208H608V288C608 305.67 593.67 320 576 320H502.4L419.21 423.98A63.99 63.99 0 0 1 369.24 448H256C238.33 448 224 433.67 224 416V320H64C46.33 320 32 305.67 32 288V208H16C7.16 208 0 200.84 0 192V176C0 167.16 7.16 160 16 160H32V159.12C44.92 176.47 61.22 190.88 80 201.81V272H560V201.81C578.78 190.88 595.08 176.47 608 159.12V160H624C632.84 160 640 167.16 640 176V192C640 200.84 632.84 208 624 208zM272 320V400H369.24C374.13 400 378.68 397.81 381.73 394L440.93 320H272z" />
+    <glyph glyph-name="truck-moving"
+      unicode="&#xF4DF;"
+      horiz-adv-x="640" d=" M621.3 242.7L562.8 301.2C550.8 313.2 534.5 319.9 517.5 319.9H480V384C480 401.7 465.7 416 448 416H32C14.3 416 0 401.7 0 384V48C0 3.8 35.8 -32 80 -32C106.3 -32 129.4 -19.1 144 0.4C158.6 -19.2 181.7 -32 208 -32C252.2 -32 288 3.8 288 48C288 53.5 287.4 58.8 286.4 64H449.6C448.5 58.8 448 53.5 448 48C448 3.8 483.8 -32 528 -32S608 3.8 608 48C608 53.5 607.4 58.8 606.4 64H624C632.8 64 640 71.2 640 80V197.5C640 214.5 633.3 230.7 621.3 242.7zM517.5 272C521.8 272 525.8 270.3 528.8 267.3L572.0999999999999 224H480V272H517.5zM528 128C510.1 128 493.8 121.9 480.4 112H480V192H592V112H575.6C562.2 121.9 545.9 128 528 128zM80 16C62.4 16 48 30.4 48 48S62.4 80 80 80S112 65.6 112 48S97.6 16 80 16zM208 16C190.4 16 176 30.4 176 48S190.4 80 208 80S240 65.6 240 48S225.6 16 208 16zM432 112H255.6C242.3 121.9 225.9 128 208 128S173.8 121.9 160.4 112H127.5C114.2 121.9 97.8 128 79.9 128C68.5 128 57.7 125.5 47.9 121.2V368H431.9V112zM528 16C510.4 16 496 30.4 496 48S510.4 80 528 80S560 65.6 560 48S545.6 16 528 16z" />
+    <glyph glyph-name="truck-pickup"
+      unicode="&#xF63C;"
+      horiz-adv-x="640" d=" M624 112H608V240C608 257.67 593.67 272 576 272H515.2L419.21 391.98A63.99 63.99 0 0 1 369.24 416H256C238.33 416 224 401.67 224 384V272H64C46.33 272 32 257.67 32 240V112H16C7.16 112 0 104.84 0 96V80C0 71.16 7.16 64 16 64H65.61C73.43 9.79 119.62 -32 176 -32S278.56 9.79 286.39 64H353.62C361.44 9.79 407.63 -32 464.01 -32S566.5699999999999 9.79 574.4 64H624C632.84 64 640 71.16 640 80V96C640 104.84 632.84 112 624 112zM272 368H369.24C374.13 368 378.68 365.81 381.73 362L453.73 272H272V368zM176 16C140.65 16 112 44.65 112 80S140.65 144 176 144S240 115.35 240 80S211.35 16 176 16zM464 16C428.71 16 400 44.71 400 80S428.71 144 464 144S528 115.29 528 80S499.29 16 464 16zM560 136.86C540.48 169.73 505 192 464 192C413.3400000000001 192 371.04 158.15 357.2 112H282.8C268.96 158.15 226.66 192 176 192C135 192 99.5199999999999 169.73 79.9999999999999 136.86V224H560V136.86z" />
+    <glyph glyph-name="truck-plow"
+      unicode="&#xF7DE;"
+      horiz-adv-x="640" d=" M579.7 62.2C572.2 69.7 568 79.9 568 90.5V229.5C568 240.1 572.2 250.3 579.7 257.8L635.3000000000001 313.4C641.5000000000001 319.6 641.5000000000001 329.8 635.3000000000001 336L624 347.3C617.8 353.5 607.6 353.5 601.4 347.3L545.8 291.7C529.3 275.2 520 252.8 520 229.5V184H480V224C480 241.7 465.7 256 448 256H405.6L321.2 396.5C314 408.5 300.9 416 286.9 416H160C142.3 416 128 401.6 128 384V256H32C14.3 256 0 241.7 0 224V96C0 78.3 14.3 64 32 64C32 11 75 -32 128 -32S224 11 224 64H288C288 11 331 -32 384 -32S480 11 480 64V136H520V90.5C520 67.2 529.3 44.8 545.8 28.3L601.4 -27.3C607.6 -33.5 617.8 -33.5 624 -27.3L635.3 -16C641.5 -9.8 641.5 0.4 635.3 6.6L579.6999999999999 62.2000000000001zM176 368H282.4L349.6 256H176V368zM128 16C101.5 16 80 37.5 80 64S101.5 112 128 112S176 90.5 176 64S154.5 16 128 16zM210.7 112C194.1 140.6 163.5 160 128 160C94.6 160 65.2 142.9 48 116.9V208H432V146.7C417.8 154.9 401.6 160 384 160C348.6 160 317.9 140.6 301.3 112H210.7zM384 16C357.5 16 336 37.5 336 64S357.5 112 384 112S432 90.5 432 64S410.5 16 384 16z" />
+    <glyph glyph-name="truck-ramp"
+      unicode="&#xF4E0;"
+      horiz-adv-x="640" d=" M544 400H640V448H384C366.3 448 352 433.7 352 416V75.4L5.9 -17.4C1.6 -18.5 -0.9 -22.9 0.2 -27.2L8.5 -58.1C9.6 -62.4 14 -64.9 18.3 -63.7999999999999L416.5 43C419.2 -16.5 467.9 -64 528 -64C589.9 -64 640 -13.9 640 48S589.9 160 528 160C483.4 160 445.2 133.7 427.2 96H400V400H544zM528 112C563.3 112 592 83.3 592 48S563.3 -16 528 -16S464 12.7 464 48S492.7 112 528 112z" />
+    <glyph glyph-name="truck"
+      unicode="&#xF0D1;"
+      horiz-adv-x="640" d=" M624 80H608V196.1C608 215.1 600.3 233.6 586.9 247L503 330.9C489.6 344.3 471 352 452.1 352H416V392C416 422.9 390.9 448 360 448H56C25.1 448 0 422.9 0 392V88C0 57.1 25.1 32 56 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM368 80H242.7C226.1 108.6 195.5 128 160 128S93.9 108.6 77.3 80H56C51.6 80 48 83.6 48 88V392C48 396.4 51.6 400 56 400H360C364.4 400 368 396.4 368 392V80zM416 304H452.1C458.4 304 464.6 301.4 469.1 297L542.1 224H416V304zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 84.9C542.8 110.8 513.4 128 480 128C455.3 128 433 118.4 416 103.1V176H560V84.9z" />
+    <glyph glyph-name="tshirt"
+      unicode="&#xF553;"
+      horiz-adv-x="640" d=" M638 327C634.7 336.8 627.8 344.8 618.5 349.4L420.2 448C410.7 434.8 391.8 397.7 320 397.7C247.6 397.7 228.9 435.4 219.8 448L21.6 349.4C12.3 344.8 5.3 336.8 2 327C-1.3 317.1 -0.6 306.6 4.1 297.3L57.1 191.1C66.7 171.9 90.1 164.1 108.7 173.4L132.7 184.7000000000001C138 187.2000000000001 144.1 183.3000000000001 144.1 177.5000000000001V-7.8C144.1 -38.8 169.2 -63.9999999999999 200.1 -63.9999999999999H440.1C471 -63.9999999999999 496.1 -38.8 496.1 -7.8V177.4C496.1 183.3 502.2 187.1 507.5 184.6L531 173.5C550.1 163.8 573.5 171.6999999999999 583.1 190.8999999999999L636.1 297.0999999999999C640.5 306.5999999999999 641.3000000000001 317.0999999999999 638 326.9999999999999zM544 220.6L470.8 255.2C460.2 260.2 448 252.5 448 240.7V-7.9C448 -12.3 444.4 -15.9 440 -15.9H200C195.6 -15.9 192 -12.3 192 -7.9V240.7C192 252.4 179.8 260.2 169.2 255.2L96 220.6L51.2 310.5L206.7 387.8C233.1 363.8 274.5 349.5 320 349.5S406.9 363.8 433.2 387.7L588.7 310.4L544 220.6z" />
+    <glyph glyph-name="tty"
+      unicode="&#xF1E4;"
+      horiz-adv-x="512" d=" M256.015 447.996zM504.702 288.726L467.644 229.435C455.33 209.734 430.679 201.683 409.1140000000001 210.31L334.694 240.079C314.839 248.022 302.632 268.141 304.759 289.42L307.365 315.4930000000001C270.795 324.611 240.004 324.313 204.636 315.4930000000001L207.243 289.4210000000001C209.3710000000001 268.141 197.164 248.02 177.307 240.0770000000001L102.885 210.309C81.306 201.678 56.66 209.749 44.355 229.4360000000001L7.297 288.728C-4.579 307.73 -1.728 332.421 14.166 348.216C147.724 480.938 363.625 481.585 497.834 348.2150000000001C513.728 332.42 516.579 307.728 504.702 288.726zM464.001 314.1670000000001C348.785 428.6620000000001 163.102 428.548 48.001 314.168L85.06 254.876L159.482 284.644L152.977 349.688C228.759 377.072 283.287 377.055 359.023 349.688L352.521 284.645L426.941 254.876L464.001 314.167zM126 18H98C91.373 18 86 23.373 86 30V58C86 64.627 91.373 70 98 70H126C132.627 70 138 64.627 138 58V30C138 23.373 132.627 18 126 18zM222 18H194C187.373 18 182 23.373 182 30V58C182 64.627 187.373 70 194 70H222C228.627 70 234 64.627 234 58V30C234 23.373 228.627 18 222 18zM318 18H290C283.373 18 278 23.373 278 30V58C278 64.627 283.373 70 290 70H318C324.627 70 330 64.627 330 58V30C330 23.373 324.627 18 318 18zM414 18H386C379.373 18 374 23.373 374 30V58C374 64.627 379.373 70 386 70H414C420.627 70 426 64.627 426 58V30C426 23.373 420.627 18 414 18zM78 -64H50C43.373 -64 38 -58.627 38 -52V-24C38 -17.373 43.373 -12 50 -12H78C84.627 -12 90 -17.373 90 -24V-52C90 -58.627 84.627 -64 78 -64zM462 -64H434C427.373 -64 422 -58.627 422 -52V-24C422 -17.373 427.373 -12 434 -12H462C468.627 -12 474 -17.373 474 -24V-52C474 -58.627 468.627 -64 462 -64zM78 100H50C43.373 100 38 105.373 38 112V140C38 146.627 43.373 152 50 152H78C84.627 152 90 146.627 90 140V112C90 105.373 84.627 100 78 100zM174 100H146C139.373 100 134 105.373 134 112V140C134 146.627 139.373 152 146 152H174C180.627 152 186 146.627 186 140V112C186 105.373 180.627 100 174 100zM270 100H242C235.373 100 230 105.373 230 112V140C230 146.627 235.373 152 242 152H270C276.627 152 282 146.627 282 140V112C282 105.373 276.627 100 270 100zM366 100H338C331.373 100 326 105.373 326 112V140C326 146.627 331.373 152 338 152H366C372.627 152 378 146.627 378 140V112C378 105.373 372.627 100 366 100zM462 100H434C427.373 100 422 105.373 422 112V140C422 146.627 427.373 152 434 152H462C468.627 152 474 146.627 474 140V112C474 105.373 468.627 100 462 100zM364 -58H148C141.373 -58 136 -52.627 136 -46V-30C136 -23.373 141.373 -18 148 -18H364C370.627 -18 376 -23.373 376 -30V-46C376 -52.627 370.627 -58 364 -58z" />
+    <glyph glyph-name="turkey"
+      unicode="&#xF725;"
+      horiz-adv-x="640" d=" M534.02 240.07C542.35 235.78 551.3299999999999 233.18 560.71 232.34C588.49 229.85 635.1400000000001 246.8 639.71 298.29C643.0400000000001 335.76 617.14 369.24 580.89 376.18C580.55 404 558.34 448 507.96 448C470.02 448 438.87 419.52 435.51 381.75C434.72 372.91 435.56 364.11 438.01 355.6C441.78 342.49 435.12 339.51 425.85 331.77C420.07 326.95 413.81 322.8 407.45 318.82C371.03 339.28 330.67 352 288 352C128.94 352 0 178.87 0 64S128.94 -64 288 -64S576 -50.88 576 64C576 115.4 550.06 178.38 507.29 232.37C509.06 233.96 510.52 235.81 512.36 237.35C515.1800000000001 239.7 520.97 246.8 534.02 240.07zM528 64C528 13.33 488.73 -16 288 -16S48 13.33 48 64C48 156.58 157.84 304 288 304C306.6 304 324.71 300.7100000000001 342.21 295.28C337.26 294.57 332.35 293.56 327.34 293.31C309.23 292.4 219.67 284.99 196.42 196.42C185.96 156.5800000000001 194.24 115.23 219.14 82.9500000000001C266.28 21.84 334.07 31.61 349.29 34.5000000000001C398.82 43.9 438.65 83.84 450.78 136.2500000000001C455.8 157.96 464.36 177.71 475.72 195.4700000000001C508.22 152.01 528 103.14 528 64zM481.61 274.2100000000001C443.12 242.1 415.57 196.95 404.0300000000001 147.07C396.1900000000001 113.19 371.1900000000001 87.51 340.35 81.66C334.9700000000001 80.64 329.0800000000001 80.1 323.29 80.1C304.44 80.1 277.67 85.68 257.1600000000001 112.27C241.42 132.67 236.2100000000001 158.9 242.86 184.23C246.4 197.72 263.13 242.02 329.75 245.37C403.0900000000001 249.05 448.56 287.89 463.51 300.66L465.77 302.58C492.18 324.6099999999999 487.15 353.31 484.46 368.7299999999999C479.26 398.43 504.35 399.93 507.66 399.93C518.01 399.93 534.61 393.33 532.81 373.06C532.31 367.56 512 320 512 320C566.54 329.06 573.97 333.95 585.35 321.51C590.13 316.29 592.51 309.38 591.9 302.54C591.43 297.2100000000001 584.17 271.75 553.9 283.7100000000001C545.67 286.9600000000001 535.43 291.0100000000001 523.15 291.0100000000001C508.77 291.0100000000001 495.19 285.5100000000001 481.61 274.2100000000001z" />
+    <glyph glyph-name="turtle"
+      unicode="&#xF726;"
+      horiz-adv-x="640" d=" M637.12 287.54C631.92 308.19 618.26 325.81 600.94 338.18C556.31 370.06 545.09 384 507.68 384C468.05 384 434.0900000000001 360.43 421.42 326.1C380.78 376.55 317.81 416 248.39 416C232.27 416 84.6 404.14 35.54 256.51C30.17 240.37 30.97 223.37 37.45 208H32C14.33 208 0 193.67 0 176V160C0 148.11 6.59 137.2 17.11 131.67L98.64 88.82L70.46 40C61.91 25.2 61.91 6.8 70.46 -8S94.93 -32 112.03 -32H148.98C166.13 -32 181.98 -22.85 190.55 -8L218.19 39.88C258.53 29.46 315.73 29 357.82 39.88L385.46 -8C394.03 -22.85 409.88 -32 427.03 -32H463.98C481.0699999999999 -32 496.9999999999999 -22.8 505.55 -8S514.0999999999999 25.2 505.55 40L474.8699999999999 93.13C505.5199999999999 113.91 526.0699999999999 143.16 536.3699999999999 176H551.3499999999999C607.6899999999999 176 651.9099999999999 228.82 637.1199999999999 287.54zM81.1 241.37C100.2 298.86 167.51 368 247.61 368H248.4C328.5 368 395.81 298.86 414.91 241.37C418.18 231.54 408.22 209.05 384.17 208.25C383.23 208.19 114.6 208 114.6 208C92.13 208 75.49 224.5 81.1 241.37zM551.34 224H504C492.71 133.67 429.12 122.38 407.5 113.81L463.97 16H427L380.25 97.05C313.35 75.12 271.48 72.22 195.75 97.05L148.97 16H112L165.19 108.08L66.38 160H383.06C415.0900000000001 160 463.86 181.8 464 239.78V295C464 314.8400000000001 475.64 325.56 485.78 330.75C517.24 346.88 532.89 327.78 574.97 297.73C585.63 290.11 592 277.73 592 264.65C592 242.23 573.75 224 551.34 224zM512 304C503.16 304 496 296.8400000000001 496 288S503.16 272 512 272S528 279.16 528 288S520.84 304 512 304z" />
+    <glyph glyph-name="tv-retro"
+      unicode="&#xF401;"
+      horiz-adv-x="512" d=" M400 204V212C400 218.6 405.4 224 412 224H420C426.6 224 432 218.6 432 212V204C432 197.4 426.6 192 420 192H412C405.4 192 400 197.4 400 204zM412 128H420C426.6 128 432 133.4 432 140V148C432 154.6 426.6 160 420 160H412C405.4 160 400 154.6 400 148V140C400 133.4 405.4 128 412 128zM376 264.5S374.5 272 232 272S87.5 264.5 87.5 264.5S80 264 80 160S87.5 55.5 87.5 55.5S88 48 232 48S376 55.5 376 55.5S383.5 56 383.5 160S376 264.5 376 264.5zM512 304V16C512 -10.5 490.5 -32 464 -32H448V-64H400L389.3 -32H122.7L112 -64H64V-32H48C21.5 -32 0 -10.5 0 16V304C0 330.5 21.5 352 48 352H188.9L134.9 407.2C125.6 416.7 125.8 431.9 135.2 441.1C144.7 450.4 159.9 450.2 169.1 440.8L256 352L342.9 440.8C352.2 450.3 367.4 450.4 376.8 441.1C386.3 431.8 386.4 416.6 377.1 407.2L323.1 352H464C490.5 352 512 330.5 512 304zM464 304H48V16H464V304z" />
+    <glyph glyph-name="tv"
+      unicode="&#xF26C;"
+      horiz-adv-x="640" d=" M592 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H296V-16H152C138.7 -16 128 -26.7 128 -40S138.7 -64 152 -64H488C501.3 -64 512 -53.3 512 -40S501.3 -16 488 -16H344V32H592C618.5 32 640 53.5 640 80V400C640 426.5 618.5 448 592 448zM586 80H54C50.7 80 48 82.7 48 86V394C48 397.3 50.7 400 54 400H586C589.3 400 592 397.3 592 394V86C592 82.7 589.3 80 586 80z" />
+    <glyph glyph-name="umbrella-beach"
+      unicode="&#xF5CA;"
+      horiz-adv-x="640" d=" M443.48 429.92C409.77 442.19 375.31 448 341.4100000000001 448C250.9400000000001 448 164.57 406.55 107.97 335.67C101.27 327.28 105.3 314.63 115.39 310.9600000000001L344.5700000000001 227.55L254.84 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H560C568.84 -64 576 -56.84 576 -48V-32C576 -23.16 568.84 -16 560 -16H306.01L389.68 211.12L618.34 127.9C620.1700000000001 127.23 622.0400000000001 126.92 623.87 126.92C632.14 126.92 639.7 133.27 639.91 142.06C642.9399999999999 266.7199999999999 567.14 384.91 443.48 429.92zM452.58 239.31L307.4 292.15C321.65 317.41 337.94 339.44 355.56 356.12C380.8999999999999 380.15 405.5899999999999 390.28 422.9699999999999 383.89C440.4999999999999 377.51 452.8099999999999 353.9700000000001 456.8099999999999 319.27C459.5799999999999 295.16 457.8999999999999 267.82 452.5799999999999 239.31zM177.9500000000001 339.26C220.84 375.92 275.7600000000001 397.5 332.5000000000001 399.5900000000001C328.0300000000001 395.83 295.6400000000001 371.14 262.2100000000001 308.5900000000001L177.9500000000001 339.26zM497.77 222.86C505.15 257.93 509.83 299.93 501.8800000000001 341.14C547.6500000000001 302.86 579.0200000000001 249.4700000000001 588.75 189.75L497.77 222.86z" />
+    <glyph glyph-name="umbrella"
+      unicode="&#xF0E9;"
+      horiz-adv-x="576" d=" M575.2 194.2C546.3 315.5 434.3 390.3 312 399.1V424C312 437.3 301.3 448 288 448S264 437.3 264 424V399.1C142.1 390.4 30.5 316.2 0.8 194.3C-5.1 170.7 23.1 150.5 44.4 168.8L44.9 169.2C94.1 215 134.4 197.3 170.2 141.5C181.5 123.7 205 124.6 215.8 141.5C229.3 162.4 243.4 181.7 264 190.3V8C264 -5.2 253.2 -16 240 -16C229.8 -16 220.7 -9.6 217.3 0C212.9 12.5 199.2 19 186.7 14.6S167.7 -3.5 172.1 -16C182.3 -44.7 209.5 -64 240.0000000000001 -64C279.7000000000001 -64 312 -31.7 312 8V190C337.9 179.2 350 157.4 360.2 141.5C371 124.6 394.4 123.7 405.8 141.5C442 197.5 482.4 214.6 531.2 169.2L531.7 168.8C552.8000000000001 150.6 581 170.5 575.2 194.2zM383.8000000000001 192.7C359.8000000000001 222.7 327.0000000000001 243 288.0000000000001 243C248.6000000000001 243 218.3000000000001 224.3 193.4000000000001 193.1C157.7000000000001 237.4 110.6000000000001 250.2 70.7000000000001 239.9C115 313.2 202 352 288 352C373.6 352 461.8 313 505.8 239.2C457.9 253 416 231.1 383.8 192.7z" />
+    <glyph glyph-name="underline"
+      unicode="&#xF0CD;"
+      horiz-adv-x="448" d=" M0 -52V-28C0 -21.373 5.373 -16 12 -16H436C442.627 -16 448 -21.373 448 -28V-52C448 -58.627 442.627 -64 436 -64H12C5.373 -64 0 -58.627 0 -52zM278.066 436V412C278.066 405.373 283.439 400 290.066 400H330.506V189.2580000000001C330.506 114.8340000000001 290.549 77.114 224.004 77.114C157.108 77.114 117.503 112.4110000000001 117.503 188.119V400H157.943C164.57 400 169.943 405.373 169.943 412V436C169.943 442.627 164.57 448 157.943 448H22.162C15.535 448 10.162 442.627 10.162 436V412C10.162 405.373 15.535 400 22.162 400H62.603V187.55C62.603 80.838 128.637 25.66 224.004 25.66C317.5780000000001 25.66 385.406 81.6660000000001 385.406 187.55V400H425.846C432.473 400 437.846 405.373 437.846 412V436C437.846 442.627 432.473 448 425.846 448H290.0660000000001C283.439 448 278.0660000000001 442.627 278.0660000000001 436z" />
+    <glyph glyph-name="undo-alt"
+      unicode="&#xF2EA;"
+      horiz-adv-x="512" d=" M28.485 419.515L80.65 367.35C125.525 412.233 187.515 440 255.999 440C392.6600000000001 440 504.1 328.475 504 191.815C503.9 54.933 392.905 -56 256 -56C192.074 -56 133.798 -31.813 89.822 7.908C84.709 12.526 84.469 20.469 89.34 25.341L109.078 45.079C113.576 49.577 120.831 49.864 125.579 45.631C160.213 14.754 205.895 -4 256 -4C364.3210000000001 -4 452 83.662 452 192C452 300.3210000000001 364.338 388 256 388C201.837 388 152.843 366.077 117.386 330.6140000000001L171.514 276.485C179.074 268.925 173.72 256 163.029 256H20C13.373 256 8 261.373 8 268V411.029C8 421.7200000000001 20.926 427.074 28.485 419.515z" />
+    <glyph glyph-name="undo"
+      unicode="&#xF0E2;"
+      horiz-adv-x="512" d=" M12 440H39.711C46.45 440 51.868 434.452 51.708 427.714L49.361 329.146C93.925 396.166 170.212 440.27 256.793 439.999C393.18 439.572 504.213 327.991 504 191.604C503.786 54.819 392.835 -56 256 -56C192.074 -56 133.798 -31.813 89.822 7.908C84.709 12.526 84.468 20.469 89.34 25.341L109.078 45.079C113.576 49.577 120.831 49.864 125.579 45.631C160.213 14.754 205.895 -4 256 -4C364.322 -4 452 83.662 452 192C452 300.322 364.338 388 256 388C176.455 388 108.059 340.718 77.325 272.698L203.714 275.707C210.451 275.867 216 270.45 216 263.71V236C216 229.373 210.627 224 204 224H12C5.373 224 0 229.373 0 236V428C0 434.627 5.373 440 12 440z" />
+    <glyph glyph-name="unicorn"
+      unicode="&#xF727;"
+      horiz-adv-x="640" d=" M631.98 384H526.61L511.33 402.57C527.7 407.8 540.36 421.29 543.84 438.36C544.85 443.32 540.96 448 535.9 448H399.95C331.54 448 274.12 400.05 259.53 336H176C137.87 336 104.23 316.78 83.99 287.6C37.36 285.45 0 247.16 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.6 229.09 64 226.63 64 224C64 193.87 75.9 165.91 96.16 145.42L83.21 101.66A78.913 78.913 0 0 1 82.16 60.8200000000001L106.28 -39.47C109.74 -53.85 122.6 -63.9899999999999 137.39 -63.9899999999999H212.09C232.95 -63.9899999999999 248.23 -44.35 243.11 -24.1299999999999L217.58 76.6300000000001L226.09 100.34L256 91.8V-32C256 -49.67 270.33 -64 288 -64H368C385.67 -64 400 -49.67 400 -32V123.65C420.57 146.8 432 176.45 432 208V213.62C452.95 206.65 470.32 212.9 472.93 213.79L503.96 224.38C527.9200000000001 232.56 544.02 255.08 544 280.39L543.96 332.66L636.4200000000001 369.33C643.0100000000001 373.73 639.9000000000001 384 631.98 384zM488.46 269.81L457.44 259.2200000000001C455.93 258.7 447.73 256.27 440.96 263.05L416 288H384V208C384 181.91 371.32 158.97 352 144.36V-16H304V128L196.09 158.83L167.44 79.05L191.53 -16H150L128.87 71.86A31.697999999999997 31.697999999999997 0 0 0 129.24 88.04L151.94 164.76C128.54 174.28 112 197.17 112 224C112 259.35 140.65 288 176 288H303.95V304C303.95 357.02 346.93 400 399.95 400H451.28L495.95 345.7200000000001L496 280.37C496 275.6 492.97 271.35 488.46 269.81zM432 368C423.1600000000001 368 416 360.8400000000001 416 352S423.1600000000001 336 432 336S448 343.16 448 352S440.84 368 432 368z" />
+    <glyph glyph-name="union"
+      unicode="&#xF6A2;"
+      horiz-adv-x="320" d=" M272 368V163.22C272 109.77 235.88 61.14 183.52 50.41C111.54 35.67 48 90.56 48 160V368C48 376.8400000000001 40.84 384 32 384H16C7.16 384 0 376.8400000000001 0 368V167.14C0 83.63 60.89 8.9 144.01 0.79C239.38 -8.53 320 66.5 320 160V368C320 376.8400000000001 312.84 384 304 384H288C279.1600000000001 384 272 376.8400000000001 272 368z" />
+    <glyph glyph-name="universal-access"
+      unicode="&#xF29A;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 -16C141.047 -16 48 77.029 48 192C48 306.953 141.029 400 256 400C370.953 400 464 306.971 464 192C464 77.047 370.971 -16 256 -16zM399.594 270.6600000000001C402.132 259.9100000000001 395.475 249.1380000000001 384.725 246.599C354.86 239.5480000000001 326.886 233.313 299.1280000000001 229.848C299.807 118.518 311.7820000000001 101.3920000000001 326.0970000000001 64.732C330.92 52.386 324.8220000000001 38.467 312.475 33.645C300.1350000000001 28.822 286.2120000000001 34.915 281.3880000000001 47.267C271.829 71.734 263.2990000000001 90.216 257.5830000000001 132.387H254.4190000000001C248.6980000000001 90.181 240.1500000000001 71.681 230.6140000000001 47.267C225.7980000000001 34.938 211.893 28.816 199.5270000000001 33.644C187.1810000000001 38.467 181.0820000000001 52.385 185.9040000000001 64.732C200.2340000000001 101.418 212.1940000000001 118.569 212.8730000000001 229.8480000000001C185.1150000000001 233.3130000000001 157.1410000000001 239.5470000000001 127.2760000000001 246.5990000000001C116.5260000000001 249.1370000000001 109.8690000000001 259.9100000000001 112.4070000000001 270.6600000000001C114.9460000000001 281.4100000000001 125.7190000000001 288.0650000000001 136.4680000000001 285.5290000000001C241.2360000000001 260.7930000000001 270.9150000000001 260.8280000000001 375.5340000000001 285.5290000000001C386.2830000000001 288.0670000000001 397.0560000000001 281.4110000000001 399.5940000000001 270.6600000000001zM217.806 313.8060000000001C217.806 334.9 234.906 352 256 352S294.194 334.9 294.194 313.806S277.094 275.612 256 275.612S217.806 292.713 217.806 313.806z" />
+    <glyph glyph-name="university"
+      unicode="&#xF19C;"
+      horiz-adv-x="512" d=" M472 8H464V64C464 77.255 453.255 88 440 88H424V240H376V88H328V240H280V88H232V240H184V88H136V240H88V88H72C58.745 88 48 77.255 48 64V8H40C26.745 8 16 -2.745 16 -16V-32A8 8 0 0 1 24 -40H488A8 8 0 0 1 496 -32V-16C496 -2.745 485.255 8 472 8zM416 8H96V40H416V8zM488.267 330.942L271.179 421.537A48.004000000000005 48.004000000000005 0 0 1 240.821 421.537L23.733 330.942A11.999000000000002 11.999000000000002 0 0 1 16 319.726V292C16 285.373 21.373 280 28 280H48V268C48 261.373 53.373 256 60 256H452C458.627 256 464 261.373 464 268V280H484C490.627 280 496 285.373 496 292V319.726C496 324.708 492.923 329.171 488.267 330.942zM64 304L256 376L448 304H64z" />
+    <glyph glyph-name="unlink"
+      unicode="&#xF127;"
+      horiz-adv-x="512" d=" M304.0830000000001 59.064C308.769 54.378 308.769 46.78 304.0830000000001 42.093L239.026 -22.963C184.317 -77.674 95.756 -77.684 41.037 -22.963C-13.676 31.7500000000001 -13.682 120.307 41.037 175.0260000000001L106.093 240.0830000000001C110.779 244.7690000000001 118.377 244.7690000000001 123.064 240.0830000000001L145.691 217.4560000000001C150.377 212.7700000000001 150.377 205.1720000000001 145.691 200.4850000000001L81.386 136.18C47.045 101.839 47.935 47.911 81.983 15.314C114.56 -15.873 166.771 -16.023 199.428 16.634L264.485 81.69C269.171 86.376 276.769 86.376 281.456 81.69L304.0830000000001 59.064zM247.5150000000001 302.3090000000001L311.8190000000001 366.6130000000001C346.1650000000001 400.959 400.1050000000001 400.0660000000001 432.7010000000001 366.0010000000001C463.8810000000001 333.415 464.0100000000001 281.216 431.3660000000001 248.5710000000001L366.3100000000001 183.514C361.6240000000002 178.828 361.6240000000002 171.23 366.3100000000001 166.543L388.9370000000002 143.916C393.6230000000001 139.23 401.2210000000001 139.23 405.9080000000002 143.916L470.9640000000001 208.973C525.6750000000001 263.682 525.6850000000001 352.2440000000001 470.9640000000001 406.963C416.2540000000002 461.674 327.6940000000001 461.683 272.9750000000002 406.963L207.9180000000001 341.906C203.2320000000001 337.2200000000001 203.2320000000001 329.622 207.9180000000001 324.935L230.5450000000002 302.308C235.2300000000002 297.6230000000001 242.8280000000001 297.6230000000001 247.5150000000002 302.3090000000001zM485.8580000000001 -60.485L508.4850000000001 -37.8579999999999C513.171 -33.172 513.171 -25.574 508.4850000000001 -20.8869999999999L43.112 444.485C38.426 449.171 30.828 449.171 26.141 444.485L3.515 421.858C-1.171 417.1720000000001 -1.171 409.574 3.515 404.887L468.888 -60.486C473.574 -65.172 481.172 -65.172 485.8579999999999 -60.485z" />
+    <glyph glyph-name="unlock-alt"
+      unicode="&#xF13E;"
+      horiz-adv-x="448" d=" M400 208H128V302.8C128 355.6 170.1 399.5 223 400C276.4 400.6 320 357.3 320 304V280C320 266.7 330.7 256 344 256S368 266.7 368 280V302.6C368 382.2 304 447.8 224.3 448C144.8 448.2 80 383.5 80 304V208H48C21.5 208 0 186.5 0 160V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V160C448 186.5 426.5 208 400 208zM400 -16H48V160H400V-16zM224 16C208.5 16 196 28.5 196 44V100C196 115.5 208.5 128 224 128S252 115.5 252 100V44C252 28.5 239.5 16 224 16z" />
+    <glyph glyph-name="unlock"
+      unicode="&#xF09C;"
+      horiz-adv-x="448" d=" M400 208H128V302.8C128 355.6 170.1 399.5 223 400C276.4 400.6 320 357.3 320 304V280C320 266.7 330.7 256 344 256S368 266.7 368 280V302.6C368 382.2 304 447.8 224.3 448C144.8 448.2 80 383.5 80 304V208H48C21.5 208 0 186.5 0 160V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V160C448 186.5 426.5 208 400 208zM400 -16H48V160H400V-16z" />
+    <glyph glyph-name="upload"
+      unicode="&#xF093;"
+      horiz-adv-x="576" d=" M528 160H384V192H448C490.6 192 512.2 243.7 481.9 273.9L321.9 433.9C303.1 452.7 272.8 452.6 254 433.9L94 273.9C63.9 243.8 85.3 192 128 192H192V160H48C21.5 160 0 138.5 0 112V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V112C576 138.5 554.5 160 528 160zM128 240L288 400L448 240H336V80H240V240H128zM528 -16H48V112H192V80C192 53.5 213.5 32 240 32H336C362.5 32 384 53.5 384 80V112H528V-16zM488 48C488 34.7 477.3 24 464 24S440 34.7 440 48S450.7 72 464 72S488 61.3 488 48z" />
+    <glyph glyph-name="usd-circle"
+      unicode="&#xF2E8;"
+      horiz-adv-x="496" d=" M291 204L219 225.9C210 228.7 203.8 238 203.8 248.6C203.8 261.5 213 272 224.3 272H269.3C276.3 272 283.1 270.1 289.2 266.6C295.6 262.9 303.5 263.2 308.9 268.2L320.9 279.5C328.5 286.7 327.2 298.9 318.6 304.7C304.8 314 288.7 319.2 272.2 319.8V336C272.2 344.8 265 352 256.2 352H240.2C231.4 352 224.2 344.8 224.2 336V320C186.6 319.9 156 287.9 156 248.6C156 217.1 176.2 188.9 205.2 180L277.2 158.1C286.2 155.3 292.4 146 292.4 135.4C292.4 122.5000000000001 283.2 112.0000000000001 271.9 112.0000000000001H226.9C219.9 112.0000000000001 213.1 113.9 207 117.4C200.6 121.1 192.7 120.8 187.3 115.8L175.3 104.5C167.7 97.3 169 85.1 177.6 79.3C191.4 70 207.5 64.8 224 64.2V48C224 39.2 231.2 32 240 32H256C264.8 32 272 39.2 272 48V64C309.6 64.1 340.2 96.1 340.2 135.4C340.2 166.9 320 195.1 291 204zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C137.7 -8 48 81.7 48 192S137.7 392 248 392S448 302.3 448 192S358.3 -8 248 -8z" />
+    <glyph glyph-name="usd-square"
+      unicode="&#xF2E9;"
+      horiz-adv-x="448" d=" M261.8 205.7L200 224.3C193.8 226.2 189.4 232.6 189.4 239.9C189.4 248.8 195.8 256 203.6 256H242.2C248.8 256 255.2 253.9 260.6 249.9C263.6 247.7 267.8 248.2 270.4 250.8L293.8 273.1C297.1 276.3 297.3 281.8 293.8 284.7000000000001C280.9 295.6 264.7 302.1 247.9 303.3V328C247.9 332.4 244.3 336 239.9 336H207.9C203.5 336 199.9 332.4 199.9 328V303.6C167.3 301.7 141.1999999999999 273.9 141.1999999999999 239.8C141.1999999999999 211.5 159.5999999999999 186.1 186 178.2L247.9 159.6C254.1 157.7 258.5 151.3 258.5 144C258.5 135.1 252.1 127.8999999999999 244.3 127.8999999999999H205.7C199.1 127.8999999999999 192.7 130 187.3 134C184.3 136.1999999999999 180.1 135.6999999999999 177.5 133.1L154.0999999999999 110.8C150.7999999999999 107.6 150.5999999999999 102.1 154.0999999999999 99.1999999999999C167 88.3 183.1999999999999 81.8 200 80.5999999999999V56C200 51.6 203.5999999999999 48 208 48H240C244.4 48 248 51.6 248 56V80.4C280.6 82.3 306.7 110.1 306.7 144.2C306.7 172.5 288.2 197.8 261.8 205.7zM392 416H56C25.1 416 0 390.9 0 360V24C0 -6.9 25.1 -32 56 -32H392C422.9 -32 448 -6.9 448 24V360C448 390.9 422.9 416 392 416zM400 24C400 19.6 396.4 16 392 16H56C51.6 16 48 19.6 48 24V360C48 364.4 51.6 368 56 368H392C396.4 368 400 364.4 400 360V24z" />
+    <glyph glyph-name="user-alt-slash"
+      unicode="&#xF4FA;"
+      horiz-adv-x="640" d=" M634 -23L479.5 97.8L400 159.9L115.6 382.3L113.4 384L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L50.3 372.4L89.3 341.9L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23zM320 400C381.8 400 432 349.8 432 288C432 260.7 421.8 236 405.5 216.5L429.6 197.7L443.2000000000001 187C465.9 214.7 480.0000000000001 249.5 480.0000000000001 288C480 376.4 408.4 448 320 448C267.5 448 221.3 422.4 192.2 383.3L229.9 353.8C250.3 381.7 282.9 400 320 400zM112 -16C112 5.4 120.3 25.5 135.4 40.6C150.5 55.7 170.6 64 192 64H228.8C233.9 64 240.3 62.7 248.8 59.8C271.8 52 295.8 48 320 48C339.3 48 358.2 51.2 376.9 56.2L325.4 96.5C323.6 96.4 321.9 96.1 320.1 96.1C300.6 96.1 281.8 99.4 264.3 105.3C252.8 109.2 241 112.1 228.9 112.1H192C121.3 112.1 64 54.8 64 -15.9V-31.9C64 -49.6 78.3 -63.9 96 -63.9H530.6L469.2 -15.9H112z" />
+    <glyph glyph-name="user-alt"
+      unicode="&#xF406;"
+      horiz-adv-x="512" d=" M384 112C343.4 112 336.4 113.5 311.8 105.2C294.3 99.3 275.5 96 256 96S217.7 99.3 200.2 105.2C175.6 113.5 168.7 112 128 112C57.3 112 0 54.7 0 -16V-32C0 -49.7 14.3 -64 32 -64H480C497.7 -64 512 -49.7 512 -32V-16C512 54.7 454.7 112 384 112zM464 -16H48C48 5.4 56.3 25.5 71.4 40.6C86.5 55.7 106.6 64 128 64C169.1 64 169 65.1 184.8 59.8C207.8 52 231.8 48 256 48C280.2 48 304.2 52 327.2 59.8C343 65.2 342.9 64 384 64C428.1 64 464 28.1 464 -16zM256 128C344.4 128 416 199.6 416 288S344.4 448 256 448S96 376.4 96 288S167.6 128 256 128zM256 400C317.8 400 368 349.8 368 288S317.8 176 256 176S144 226.2 144 288S194.2 400 256 400z" />
+    <glyph glyph-name="user-astronaut"
+      unicode="&#xF4FB;"
+      horiz-adv-x="448" d=" M358.6 119.2C379.1 139.4 395 164.3 404.8 192H416C424.8 192 432 199.2 432 208V304C432 312.8 424.8 320 416 320H404.8C378.5 394.5 307.6 448 224 448S69.5 394.5 43.2 320H32C23.2 320 16 312.8 16 304V208C16 199.2 23.2 192 32 192H43.2C53 164.3 68.9 139.4 89.4 119.2C37.4 100.7 0 51.9 0 -6.4V-40C0 -53.3 10.7 -64 24 -64S48 -53.3 48 -40V-6.4C48 41.2 86.8 80 134.4 80H147.4C170.9 69.8 196.8 64 224 64S277.1 69.8 300.6 80H313.6C361.2000000000001 80 400 41.2 400 -6.4V-40C400 -53.3 410.7 -64 424 -64S448 -53.3 448 -40V-6.4C448 51.9 410.6 100.7000000000001 358.6 119.2000000000001zM224 112C144.6 112 80 176.6 80 256S144.6 400 224 400S368 335.4 368 256S303.4 112 224 112zM304 32H144C126.3 32 112 17.7 112 0V-64H160V-16C160 -7.2 167.2 0 176 0S192 -7.2 192 -16V-64H336V0C336 17.7 321.7 32 304 32zM272 -32C263.2 -32 256 -24.8 256 -16S263.2 0 272 0S288 -7.2 288 -16S280.8 -32 272 -32zM288 320H160C133.5 320 112 298.5 112 272V256C112 203 155 160 208 160H240C293 160 336 203 336 256V272C336 298.5 314.5 320 288 320zM204 228L192 192L180 228L144 240L180 252L192 288L204 252L240 240L204 228z" />
+    <glyph glyph-name="user-chart"
+      unicode="&#xF6A3;"
+      horiz-adv-x="640" d=" M160 128C213.02 128 256 170.98 256 224S213.02 320 160 320S64 277.02 64 224S106.98 128 160 128zM160 272C186.47 272 208 250.47 208 224S186.47 176 160 176S112 197.53 112 224S133.53 272 160 272zM226.79 105.98C216.89 105.98 206.9 104.53 197.21 101.59C185.4200000000001 98.0100000000001 172.97 95.99 160 95.99S134.5800000000001 98 122.79 101.59C113.11 104.53 103.12 105.98 93.21 105.98C62.98 105.98 33.56 92.5 16.31 66.87C6.01 51.58 0 33.16 0 13.33V-24C0 -46.09 17.91 -64 40 -64H280C302.09 -64 320 -46.09 320 -24V13.33C320 33.16 313.99 51.58 303.69 66.87C286.44 92.5 257.03 105.98 226.79 105.98zM272 -16H48V13.33C48 22.93 50.81 32.17 56.12 40.07C63.67 51.28 77.53 57.98 93.2 57.98C98.51 57.98 103.77 57.2000000000001 108.83 55.67C125.59 50.58 142.8 48 160 48S194.41 50.58 211.16 55.67A53.633 53.633 0 0 0 226.79 57.98C242.46 57.98 256.32 51.28 263.87 40.07C269.18 32.17 271.99 22.93 271.99 13.33V-16zM592 448H208C181.53 448 160 425.75 160 398.41V352C166.44 352 171.4 351.38 175.8 350.41C181.22 349.74 186.54 348.89 191.73 347.56C195.9 346.58 199.9 345.2100000000001 203.89 343.78C205.23 343.29 206.68 343.04 208.01 342.5V400H592.01V80H352.01V32H592.01C618.48 32 640.01 54.25 640.01 81.59V398.41C640 425.75 618.47 448 592 448zM416.9700000000001 191.03L488.97 263.03L513.27 238.73C524.61 227.39 544 235.42 544 251.46V340C544 346.63 538.63 352 532 352H443.46C427.42 352 419.39 332.61 430.73 321.27L455.03 296.9700000000001L400 241.94L344.9700000000001 296.9700000000001C335.6 306.3400000000001 320.4000000000001 306.3400000000001 311.0300000000001 296.9700000000001L280.3 266.24C284.9700000000001 252.95 288 238.89 288 224.01C288 217.18 287.02 210.61 285.99 204.06L328 246.0600000000001L383.03 191.03C392.4 181.66 407.6 181.66 416.97 191.03z" />
+    <glyph glyph-name="user-check"
+      unicode="&#xF4FC;"
+      horiz-adv-x="640" d=" M637 286.9L617.9 306.1C613.9 310.2 607.3 310.2 603.3 306.1L500.2 202.4L452.8 250.1C448.8 254.2 442.2 254.2 438.2 250.1L419 230.9C415 226.8 415 220.3 419 216.2L492.8 141.9C496.8 137.8 503.4 137.8 507.4 141.9L637 272.2C641 276.2 641 282.8 637 286.9zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM313.6 144C284.8 144 271.2000000000001 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83.8 387.8 144 313.6 144zM400 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C361.2000000000001 96 400 57.2 400 9.6V-16z" />
+    <glyph glyph-name="user-circle"
+      unicode="&#xF2BD;"
+      horiz-adv-x="496" d=" M248 344C195 344 152 301 152 248S195 152 248 152S344 195 344 248S301 344 248 344zM248 200C221.5 200 200 221.5 200 248S221.5 296 248 296S296 274.5 296 248S274.5 200 248 200zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 -8C198.3 -8 152.9 10.3 117.9 40.4C132.8 63.4 158.3 79 187.5 79.9C208.3 73.5 228.1 70.3 248 70.3S287.7 73.4 308.5 79.9C337.7 78.9 363.2 63.4 378.1 40.4C343.1 10.3 297.7000000000001 -8 248.0000000000001 -8zM410.7 76.1C386.3 107.5 348.6 128 305.6 128C295.4000000000001 128 279.6 118.4 248.0000000000001 118.4C216.5 118.4 200.6 128 190.4 128C147.5 128 109.8 107.5 85.3 76.1C61.9 108.8 48 148.8 48 192C48 302.3 137.7 392 248 392S448 302.3 448 192C448 148.8 434.1 108.8 410.7 76.1z" />
+    <glyph glyph-name="user-clock"
+      unicode="&#xF4FD;"
+      horiz-adv-x="640" d=" M224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM48 -16V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C267 80 294.4 92.1 304.7 94.6C306 111.7000000000001 309.6 128.2000000000001 315.1 143.8C283.7 144.2 272 128 224 128C176.9 128 163.2 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H369.4C353.8 -50.3 340.4 -34.1 329.9 -16H48zM496 224C416.4 224 352 159.6 352 80S416.4 -64 496 -64S640 0.4 640 80S575.6 224 496 224zM560 73.7C560 68.4 555.6 64 550.3 64H489.6999999999999C484.3999999999999 64 479.9999999999999 68.4 479.9999999999999 73.7V150.3C479.9999999999999 155.6 484.3999999999999 160 489.6999999999999 160H502.3C507.6 160 511.9999999999999 155.6 511.9999999999999 150.3V96H550.3C555.5999999999999 96 560 91.6 560 86.3V73.7z" />
+    <glyph glyph-name="user-cog"
+      unicode="&#xF4FE;"
+      horiz-adv-x="640" d=" M340.3 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C266.6 80 294 91.9 304.1 94.4C304 101.9 304 119.2 310.2000000000001 143.6C281.6 142.2 269.3000000000001 128 224.0000000000001 128C176.9000000000001 128 163.2000000000001 144 134.4000000000001 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H390C370.6 -51.1 353.8 -34.8 340.3 -16zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM610.5 74.7C613.1 88.8 613.1 103.2 610.5 117.3L636.3 132.2C639.3 133.9 640.5999999999999 137.4 639.5999999999999 140.7C632.8999999999999 162.3 621.3999999999999 181.9 606.3999999999999 198.1C604.0999999999999 200.6 600.3999999999999 201.2 597.3999999999999 199.5L571.5999999999999 184.6C560.6999999999999 193.9 548.1999999999999 201.1 534.6999999999999 205.9V235.7000000000001C534.6999999999999 239.1000000000001 532.3 242.1000000000001 528.9999999999999 242.8000000000001C506.6999999999999 247.8000000000001 483.9999999999999 247.6000000000001 462.7999999999999 242.8000000000001C459.4999999999999 242.1000000000001 457.0999999999999 239.1000000000001 457.0999999999999 235.7000000000001V205.9C443.5999999999999 201.1 431.0999999999999 193.9 420.2 184.6L394.3999999999999 199.5C391.5 201.2 387.7 200.6 385.3999999999999 198.1C370.3999999999999 181.9 358.8999999999999 162.3 352.2 140.7000000000001C351.2 137.4 352.5999999999999 133.9 355.5 132.2000000000001L381.3 117.3000000000001C378.7 103.2000000000001 378.7 88.8000000000001 381.3 74.7000000000001L355.5 59.8000000000001C352.5 58.1000000000001 351.2 54.6000000000001 352.2 51.3000000000001C358.8999999999999 29.7 370.3999999999999 10.2 385.3999999999999 -6.0999999999999C387.7 -8.5999999999999 391.3999999999999 -9.1999999999999 394.3999999999999 -7.4999999999999L420.2 7.4000000000001C431.0999999999999 -1.8999999999999 443.5999999999999 -9.0999999999999 457.0999999999999 -13.8999999999999V-43.6999999999999C457.0999999999999 -47.0999999999999 459.4999999999999 -50.0999999999999 462.7999999999999 -50.8C485.0999999999999 -55.8 507.7999999999999 -55.6 528.9999999999999 -50.8C532.2999999999998 -50.1 534.6999999999999 -47.1 534.6999999999999 -43.6999999999999V-13.8999999999999C548.1999999999999 -9.0999999999999 560.6999999999999 -1.8999999999999 571.5999999999999 7.4000000000001L597.3999999999999 -7.4999999999999C600.2999999999998 -9.1999999999999 604.0999999999999 -8.5999999999999 606.3999999999999 -6.0999999999999C621.3999999999999 10.1000000000001 632.8999999999999 29.7000000000001 639.5999999999999 51.3000000000001C640.5999999999999 54.6000000000001 639.1999999999999 58.1000000000001 636.3 59.8000000000001L610.5 74.7000000000001zM496 47.5C469.2 47.5 447.5 69.3 447.5 96S469.3 144.5 496 144.5S544.5 122.7 544.5 96S522.8 47.5 496 47.5z" />
+    <glyph glyph-name="user-crown"
+      unicode="&#xF6A4;"
+      horiz-adv-x="448" d=" M224 160C294.7 160 352 217.31 352 288V448L288 416L224 448L160 416L96 448V288C96 217.31 153.31 160 224 160zM144 320H304V288C304 243.89 268.11 208 224 208S144 243.89 144 288V320zM313.6 144C302.56 144 291.8200000000001 141.4 281.4000000000001 137.76C263.4000000000001 131.48 244.1200000000001 128 224 128C203.8900000000001 128 184.6 131.48 166.61 137.76C156.19 141.4 145.44 144 134.4 144C60.17 144 0 83.83 0 9.6V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V9.6C448 83.83 387.83 144 313.6 144zM400 -16H48V9.6C48 57.24 86.76 96 134.4 96C138.58 96 143.93 94.84 150.78 92.45C174.44 84.19 199.07 80 224 80S273.56 84.19 297.2200000000001 92.45C304.0700000000001 94.84 309.43 96 313.6 96C361.24 96 400 57.24 400 9.6V-16z" />
+    <glyph glyph-name="user-edit"
+      unicode="&#xF4FF;"
+      horiz-adv-x="640" d=" M358.9 14.7L352.1 -46.3C351 -56.5 359.6 -65.1 369.7 -63.9L430.6 -57.1L568.5 80.8L496.8 152.5L358.9 14.6999999999999zM633 179.1L595.1 217C585.8000000000001 226.3 570.6 226.3 561.3000000000001 217L519.5000000000001 175.2L591.3000000000001 103.5L633.1 145.3C642.3000000000001 154.6 642.3000000000001 169.7 633 179.1zM223.9 160C303.5 159.9 368.1 224.5 368 304.1C367.9 382.4 302.4 447.9 224.1 448C144.5 448.1 79.9 383.5 80 303.9C80.1 225.6 145.6 160.1 223.9 160zM219.5 399.9C276 402.5 322.5 356 319.9 299.5C317.6 250.3 277.8 210.4 228.5 208.1C172 205.5 125.5 252 128.1 308.5C130.4 357.8 170.3 397.6 219.5 399.9zM134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C330.3 96 345.8 91 359.1 82.7L393.5 117.1C371.1 133.8 343.7 144 313.6 144C284.9000000000001 144 271.1 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H306.3C302.5 -49.4 304.1 -43.7 307.2 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96z" />
+    <glyph glyph-name="user-friends"
+      unicode="&#xF500;"
+      horiz-adv-x="640" d=" M480 192C533 192 576 235 576 288S533 384 480 384S384 341 384 288S427 192 480 192zM480 336C506.5 336 528 314.5 528 288S506.5 240 480 240S432 261.5 432 288S453.5 336 480 336zM272.1 172C260.2000000000001 172 248.2 170.3 236.6 166.7C222.4 162.4 207.5 160 191.9 160S161.4 162.4 147.2000000000001 166.7C135.6000000000001 170.2 123.6000000000001 172 111.7000000000001 172C75.4000000000001 172 40.1000000000001 155.8 19.4 125.1C7.2 106.7 0 84.6 0 60.8V16C0 -10.5 21.5 -32 48 -32H336C362.5 -32 384 -10.5 384 16V60.8C384 84.6 376.8 106.7 364.4 125.1C343.7 155.8 308.4 172 272.1 172zM336 16H48V60.8C48 89.7 66.4 114.4 92.1 123.9C102.4 127.7000000000001 113.7 127.6 124 123.9C146.1 116.0000000000001 169 112.0000000000001 192 112.0000000000001S237.8 116.0000000000001 260.1 123.9C270.4000000000001 127.6 281.7000000000001 127.7000000000001 292 123.9C317.7 114.5000000000001 336.1 89.7000000000001 336.1 60.8V16zM192 192C253.9 192 304 242.1 304 304S253.9 416 192 416S80 365.9 80 304S130.1 192 192 192zM192 368C227.3 368 256 339.3 256 304S227.3 240 192 240S128 268.7 128 304S156.7 368 192 368zM623.7 130.9C606.4 156.5 577 170 546.8 170C519 170 511.9999999999999 160 479.9999999999999 160S441 170 413.2 170C399.8999999999999 170 387 167 375 161.9C380.8 156 386.3 149.9 391 143C395.7 136 399.6 128.6 403 121C406.3 121.7 409.7 122.1 413.2 122.1C430.3999999999999 122.1 442.8 112.1 479.9999999999999 112.1C517.4 112.1 529.5 122.1 546.8 122.1C562.5 122.1 576.3 115.4 583.9 104.2000000000001C589.1999999999999 96.3000000000001 592 87.1 592 77.5000000000001V48H416V16C416 10.5 415.4 5.2 414.4 0H600C622.1 0 640 17.9 640 40V77.3C640 97.2 634 115.6 623.7 130.9z" />
+    <glyph glyph-name="user-graduate"
+      unicode="&#xF501;"
+      horiz-adv-x="448" d=" M13.2 348L20 346V308.4C13 304.2000000000001 8 296.9 8 288.1C8 279.7 12.6 272.7 19.1 268.4L3.5 206C1.8 199.1 5.6 192 11.1 192H52.9C58.4 192 62.2 199.1 60.5 206L44.9 268.3C51.4 272.6 56 279.6 56 288C56 296.8 51 304.1 44 308.3V338.8L90.6 325C84 308.6 80 290.8 80 272C80 192.5 144.5 128 224 128S368 192.5 368 272C368 290.8 364 308.6 357.4 325L434.8 348C452.4 353.2 452.4 382.8 434.8 388L240.9 445.5C235.3 447.2 229.7 448 224 448S212.7 447.2 207.1 445.5L13.2 388C-4.4 382.8 -4.4 353.2 13.2 348zM224 176C171.1 176 128 219.1 128 272C128 286.1 131.3 299.3 136.8 311.3L207.2 290.4C222 286 234.4 288.4 241 290.4L311.4 311.3C316.9 299.3 320.2 286 320.2 272C320 219.1 276.9 176 224 176zM220.8 399.5C221.8 399.8 224.1 400.4 227.3 399.5L333.5 368L227.2 336.5C225.1 335.9 223 335.8 220.7 336.5L114.5 368L220.8 399.5zM319.4 127.4L224 48L128.6 127.4C57.1 124.3 0 65.8 0 -6.4V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V-6.4C448 65.8 390.9 124.3 319.4 127.4zM200 -16H48V-6.4C48 34 75.9 68 114 77.1L200 5.5V-16zM400 -16H248V5.5L334 77.1C372.1 68 400 34 400 -6.4V-16z" />
+    <glyph glyph-name="user-injured"
+      unicode="&#xF728;"
+      horiz-adv-x="448" d=" M224 160C303.53 160 368 224.47 368 304S303.53 448 224 448S80 383.53 80 304S144.47 160 224 160zM306.64 352H239.99L279.76 381.83C290.75 373.93 299.8 363.73 306.64 352zM224 400C231.85 400 239.37 398.79 246.68 397L186.68 352H141.36C158.01 380.55 188.63 400 224 400zM129.62 320H318.39C319.28 314.77 320.01 309.48 320.01 304C320.01 251.07 276.95 208 224.01 208C171.08 208 128.01 251.07 128.01 304C128 309.48 128.73 314.77 129.62 320zM313.6 144C302.56 144 291.8200000000001 141.4 281.4000000000001 137.76C263.4000000000001 131.48 244.1200000000001 128 224 128C203.8900000000001 128 184.6 131.48 166.61 137.76C156.19 141.4 145.44 144 134.4 144C60.17 144 0 83.83 0 9.6V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V9.6C448 83.83 387.83 144 313.6 144zM80 -16H48V9.6C48 36.52 60.63 60.31 80 76.17V-16zM112 -16V92.68C119.19 94.63 126.61 96 134.4 96C138.58 96 143.93 94.84 150.78 92.45C152.24 91.94 153.77 91.78 155.24 91.3L202.93 -16H112zM283.0800000000001 -16H237.9600000000001L216.6300000000001 32H256C273.6600000000001 32 288 17.64 288 0C288 -5.95 285.93 -11.22 283.08 -16zM400 -16H317.73C319.07 -10.86 320 -5.56 320 0C320 35.3 291.28 64 256 64H202.4L194.17 82.52C204.05 81.17 213.97 80 224 80C248.93 80 273.56 84.19 297.2200000000001 92.45C304.0700000000001 94.84 309.43 96 313.6 96C361.24 96 400 57.24 400 9.6V-16z" />
+    <glyph glyph-name="user-lock"
+      unicode="&#xF502;"
+      horiz-adv-x="640" d=" M608 160H576V208C576 252.2 540.2 288 496 288S416 252.2 416 208V160H384C366.3 160 352 145.7 352 128V-32C352 -49.7 366.3 -64 384 -64H608C625.7 -64 640 -49.7 640 -32V128C640 145.7 625.7 160 608 160zM464 208C464 225.6 478.4 240 496 240S528 225.6 528 208V160H464V208zM592 -16H400V112H592V-16zM304 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C266.3 80 293.5 91.7 304 94.4V128C304 133.2 304.6 138.2 305.5 143.1C279.3 140.2000000000001 265.5 128 224 128C176.9 128 163.2 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H310.8C302.9000000000001 -46 304 -33.3 304 -16zM224 448C144.5 448 80 383.5 80 304S144.5 160 224 160S368 224.5 368 304S303.5 448 224 448zM224 208C171.1 208 128 251.1 128 304S171.1 400 224 400S320 356.9 320 304S276.9 208 224 208z" />
+    <glyph glyph-name="user-md"
+      unicode="&#xF0F0;"
+      horiz-adv-x="448" d=" M224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM313.6 144C302.6 144 291.8 141.4 281.4000000000001 137.8C263.4000000000001 131.5 244.1 128 224 128S184.6 131.5 166.6 137.8C156.2 141.4 145.4 144 134.4 144C60.2 144 0 83.8 0 9.6V-40C0 -53.3 10.7 -64 24 -64S48 -53.3 48 -40V9.6C48 55.1 83.4 92 128 95.4V45.4C104.9 38.5000000000001 88 17.3 88 -7.9999999999999C88 -38.8999999999999 113.1 -63.9999999999999 144 -63.9999999999999S200 -38.8999999999999 200 -7.9999999999999C200 17.3000000000001 183.1 38.5000000000001 160 45.4V90.1C180.8 83.8 202.3 80 224 80C245.8 80 267.2 83.8 288 90.1V53.8C259.8 46.3 240 19.3 240 -10.8V-40C240 -44.2 241.7 -48.3 244.7 -51.3L255 -61.6C258.1 -64.7 263.2 -64.7 266.3 -61.6L277.6 -50.3C280.7000000000001 -47.2 280.7000000000001 -42.1 277.6 -39L271.9000000000001 -33.3V-8C271.9000000000001 11.4 289.3 26.8 309.3 23.6C325 21 335.9000000000001 6.2 335.9000000000001 -9.7V-33.3L330.2000000000001 -39C327.1 -42.1 327.1 -47.2 330.2000000000001 -50.3L341.5000000000001 -61.6C344.6000000000001 -64.7 349.7000000000001 -64.7 352.8000000000001 -61.6L363.1000000000001 -51.3C366.1000000000001 -48.3 367.8000000000001 -44.2 367.8000000000001 -40V-8C367.8000000000001 21.7 347.3000000000001 46.5 319.8000000000001 53.6V95.3C364.4000000000001 92 399.8000000000001 55 399.8000000000001 9.5V-40C399.8000000000001 -53.3 410.5000000000001 -64 423.8000000000001 -64S447.8000000000001 -53.3 447.8000000000001 -40V9.6C448.0000000000001 83.8 387.8000000000001 144 313.6000000000001 144zM168 -8C168 -21.3 157.3 -32 144 -32S120 -21.3 120 -8S130.7 16 144 16S168 5.3 168 -8z" />
+    <glyph glyph-name="user-minus"
+      unicode="&#xF503;"
+      horiz-adv-x="640" d=" M624 232H432C423.2 232 416 224.8 416 216V200C416 191.2 423.2 184 432 184H624C632.8 184 640 191.2 640 200V216C640 224.8 632.8 232 624 232zM313.6 144C284.8 144 271.2000000000001 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83.8 387.8 144 313.6 144zM400 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C361.2000000000001 96 400 57.2 400 9.6V-16zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400z" />
+    <glyph glyph-name="user-ninja"
+      unicode="&#xF504;"
+      horiz-adv-x="448" d=" M32 240C53 240 72.3 246.9 88.1 258.4C107.2 201.4 160.5 160 224 160C303.5 160 368 224.5 368 304S303.5 448 224 448C169.5 448 122.6 417.3 98.1 372.6C80.9 389.3 57.9 400 32 400C32 366.6 49.1 337.2 75.1 320C49.1 302.8 32 273.4 32 240zM224 400C259.4 400 290 380.6 306.6 352H141.4C158 380.6 188.6 400 224 400zM320 304C320 251.1 276.9 208 224 208S128 251.1 128 304H320zM325.4 158.8L224 80L122.6 158.8C54 152.7 0 95.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 95.8 394 152.7000000000001 325.4 158.8zM200 -16H48V25.6C48 64.5 73.7 97.4 109.9 107.8L200 37.8V-16zM400 -16H248V37.9L338.1 107.9C374.4000000000001 97.4 400 64.6 400 25.7V-16z" />
+    <glyph glyph-name="user-plus"
+      unicode="&#xF234;"
+      horiz-adv-x="640" d=" M224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM313.6 144C284.9000000000001 144 271.1 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83.8 387.8 144 313.6 144zM400 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C361.2000000000001 96 400 57.2 400 9.6V-16zM624 232H552V304C552 312.8 544.8 320 536 320H520C511.2 320 504 312.8 504 304V232H432C423.2 232 416 224.8 416 216V200C416 191.2 423.2 184 432 184H504V112C504 103.2 511.2 96 520 96H536C544.8 96 552 103.2 552 112V184H624C632.8 184 640 191.2 640 200V216C640 224.8 632.8 232 624 232z" />
+    <glyph glyph-name="user-secret"
+      unicode="&#xF21B;"
+      horiz-adv-x="448" d=" M383.9 139.7L407.8 202.3C411.8 212.8 404.1 224 392.8 224H359.2C364.5999999999999 239.1 368 255.1 368 272C368 278.6 367.3 285.1 366.3999999999999 291.4C397.1 299 416 309 416 320C416 333.3 388.7 345.1 345.9 353C336.7 385.8 318.9 418.8 305.3 435.8C299.1 443.7 289.7 448 280.1 448C275.3 448 270.4000000000001 446.9 265.8 444.6C236 429.7 233.5 427.5 224 427.5S211.7 429.9 182.1 444.7C177.5 447 172.7 448.1 167.8 448.1C158.2 448.1 148.9 443.8 142.6 435.9C129.1 418.9 111.2 385.9 102 353.1C59.3 345.1 32 333.3 32 320C32 309 50.9 299 81.6 291.4C80.6 285 80 278.6 80 272C80 255.1 83.5 239.1 88.8 224H56.3C44.8 224 37.1 212.3 41.6 201.7L67.4 141.5C27.3 118.2 0 75.3 0 25.6V-19.2C0 -43.9 20.1 -64 44.8 -64H403.2C427.9 -64 448 -43.9 448 -19.2V25.6C448 74 422.2 116 383.9 139.7000000000001zM173 395.5C189.2 387.4 202 379.5 224 379.5C245.8 379.5 258.8 387.4 275 395.5C294 365.1 300.7 336.3 302.7 329.3C280.9 326.9 254.6 325.4 224 325.4S167.2 327 145.3 329.3C147.3 336.4 154 365.1 173 395.5zM128 272.3C128.1 272.2000000000001 133.5 269.1 134.3 266.5C138.2 254.6 141.3 241.9 150.8 233.1C158.8 225.7 197.8 208 214.8 258.1C217.6 266.5 230.2 266.5 233.1 258.1C249.1 210.7 287 223.7 297.1 233.1C306.6 241.9 309.8 254.6 313.6 266.5C314.4000000000001 269 319.8 272.1 319.9000000000001 272.2V271.9C319.9000000000001 219 276.8 175.9 223.9 175.9S127.9 219 127.9 271.9C128 272.1 128 272.2 128 272.3zM48 25.6C48 56.4 64.2 84.2000000000001 91.5 99.9L128.3 121.2000000000001L104.8 176.0000000000001H117.4C134.4 157.1000000000001 156.2 143.1000000000001 181 135.3000000000001L208 88.0000000000001L183.5 -15.9999999999999H48V25.6000000000001zM400 -16H264.5L240 88L267 135.3C291.8 143.1 313.6 157.2 330.6 176H346.3L324.8 119.7L358.6 98.9C384.5 82.9 399.9000000000001 55.5 399.9000000000001 25.7V-16z" />
+    <glyph glyph-name="user-shield"
+      unicode="&#xF505;"
+      horiz-adv-x="640" d=" M622.3 176.9L507.1 221.9C502.9999999999999 223.5 494.4999999999999 225.6 484.9 221.9L369.7 176.9C359 172.7 352 162.9 352 152C352 40.4 420.7 -36.8 484.9 -61.9C494.5 -65.6 502.9 -63.5 507.1 -61.9C558.4 -41.9 640 27.5 640 152C640 162.9 633 172.7 622.3 176.9zM496 -14.4V174.7L591.5 137.4C585.9 50.3 530.6 2 496 -14.4zM356.2 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C271.1 80 294.9 93.5 309.4 95.5C306.5 110.7 304.8 126.5 304.3 143C278.7 139.8 264.8 128 223.9 128C176.8 128 163.1 144 134.3 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H399.3C383.8 -50.3 369.1 -34.3 356.2 -16zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400z" />
+    <glyph glyph-name="user-slash"
+      unicode="&#xF506;"
+      horiz-adv-x="640" d=" M634 -23L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23zM320 400C372.9 400 416 356.9 416 304C416 275.9 403.6 250.7 384.2 233.2L422.6 203.2C448.1 229.2 463.9999999999999 264.7 463.9999999999999 304C464 383.5 399.5 448 320 448C268.1 448 223 420.3 197.6 379.1L235.8 349.2C252.1 379.3 283.5 400 320 400zM144 -16V9.6C144 57.2000000000001 182.8 96 230.4 96C234.6 96 239.9 94.8 246.8 92.4C270.5 84.1 295.1 80 320 80C328 80 335.9 81.1 343.8 82L277.4 133.9C272.5 135.2 267.4 136.1 262.6 137.7C252.2 141.3 241.4 143.9 230.4 143.9C156.2 144 96 83.8 96 9.6V-16C96 -42.5 117.5 -64 144 -64H496C505.3 -64 513.9 -61.2 521.2 -56.7L469.2 -16H144z" />
+    <glyph glyph-name="user-tag"
+      unicode="&#xF507;"
+      horiz-adv-x="640" d=" M630.6 83.1L540.3000000000001 173.3C528.3000000000001 185.3 512.0000000000001 192 495.0000000000001 192H415.7000000000001C398.0000000000001 192 383.7000000000001 177.7 383.7000000000001 160V80.8C383.7000000000001 63.8 390.4000000000001 47.6 402.4000000000001 35.6L492.7 -54.6C505.2 -67.0999999999999 525.5 -67.0999999999999 538 -54.6L630.5 37.9C643.1 50.4 643.1 70.6 630.6 83.1zM447.8 104.1C434.5 104.1 423.8 114.8 423.8 128.1S434.5 152.1 447.8 152.1S471.8 141.4 471.8 128.1C471.8 114.9 461.1 104.1 447.8 104.1zM48 -15.8V9.8C48 57.4 86.8 96.2000000000001 134.4 96.2000000000001C149 96.2000000000001 172.7 80.2000000000001 224 80.2000000000001C275.7 80.2000000000001 298.9 96.2000000000001 313.6 96.2000000000001C321.3 96.2000000000001 328.7000000000001 94.9 335.8 92.9V141.9C328.5 143.1 321.2 144.1 313.6 144.1C284.9000000000001 144.1 271.1 128.1 224 128.1C176.9 128.1 163.2000000000001 144.1 134.4 144.1C60.2 144.1 0 84 0 9.7V-15.9C0 -42.4 21.5 -63.9 48 -63.9H400C409.7 -63.9 418.7 -61.0000000000001 426.3 -56.0000000000001L386.2 -15.9H48zM224 160.1C303.5 160.1 368 224.6 368 304.1S303.5 448 224 448S80 383.6 80 304C80 224.5 144.5 160.1 224 160.1zM224 400C276.9 400 320 357 320 304C320 251.1 276.9 208 224 208S128 251.1 128 304C128 357 171.1 400 224 400z" />
+    <glyph glyph-name="user-tie"
+      unicode="&#xF508;"
+      horiz-adv-x="448" d=" M224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM315.9 143.8L259.4 -10.7L240 72L272 128H176L208 72L188.5 -10.7L132 143.8C58.9 142.5 0 83 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83 389.1 142.5 315.9 143.8zM96 -16H48V9.6C48 45 69.9 75.8 101 89L139.4 -16H96zM400 -16H308.7L347 89C378 75.8 400 45 400 9.6V-16z" />
+    <glyph glyph-name="user-times"
+      unicode="&#xF235;"
+      horiz-adv-x="640" d=" M593.9 208L635.3 249.4C641.5 255.6 641.5 265.8 635.3 272L624 283.3C617.8 289.5 607.6 289.5 601.4 283.3L560 241.9L518.6 283.3C512.4 289.5 502.2 289.5 496 283.3L484.7 272C478.5 265.8 478.5 255.6 484.7 249.4L526.1 208L484.7 166.6C478.5000000000001 160.4 478.5000000000001 150.2000000000001 484.7 144L496.0000000000001 132.7C502.2 126.5 512.4000000000001 126.5 518.6 132.7L560 174.1L601.4 132.7C607.6 126.5 617.8 126.5 624 132.7L635.3 144C641.5 150.2 641.5 160.4 635.3 166.6L593.9 208zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400zM313.6 144C284.8 144 271.2000000000001 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83.8 387.8 144 313.6 144zM400 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C361.2000000000001 96 400 57.2 400 9.6V-16z" />
+    <glyph glyph-name="user"
+      unicode="&#xF007;"
+      horiz-adv-x="448" d=" M313.6 144C284.9000000000001 144 271.1 128 224 128C176.9 128 163.2000000000001 144 134.4 144C60.2 144 0 83.8 0 9.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V9.6C448 83.8 387.8 144 313.6 144zM400 -16H48V9.6C48 57.2000000000001 86.8 96 134.4 96C149 96 172.7 80 224 80C275.7 80 298.9 96 313.6 96C361.2000000000001 96 400 57.2 400 9.6V-16zM224 160C303.5 160 368 224.5 368 304S303.5 448 224 448S80 383.5 80 304S144.5 160 224 160zM224 400C276.9 400 320 356.9 320 304S276.9 208 224 208S128 251.1 128 304S171.1 400 224 400z" />
+    <glyph glyph-name="users-class"
+      unicode="&#xF63D;"
+      horiz-adv-x="640" d=" M80 400H560V266.38C577.64 263.82 594.01 257.4700000000001 608 247.67V398.41C608 425.75 586.47 448 560 448H80C53.53 448 32 425.75 32 398.41V247.68C45.99 257.48 62.36 263.8300000000001 80 266.39V400zM108 44H84C37.69 44 0 6.31 0 -40C0 -53.25 10.75 -64 24 -64S48 -53.25 48 -40C48 -20.16 64.16 -4 84 -4H108C127.84 -4 144 -20.16 144 -40C144 -53.25 154.75 -64 168 -64S192 -53.25 192 -40C192 6.31 154.31 44 108 44zM544 236C499.82 236 464 200.18 464 156S499.82 76 544 76S624 111.82 624 156S588.18 236 544 236zM544 124C526.36 124 512 138.36 512 156S526.36 188 544 188S576 173.64 576 156S561.64 124 544 124zM556 44H532C485.69 44 448 6.31 448 -40C448 -53.25 458.75 -64 472 -64S496 -53.25 496 -40C496 -20.16 512.16 -4 532 -4H556C575.84 -4 592 -20.16 592 -40C592 -53.25 602.75 -64 616 -64S640 -53.25 640 -40C640 6.31 602.31 44 556 44zM96 76C140.18 76 176 111.82 176 156S140.18 236 96 236S16 200.18 16 156S51.82 76 96 76zM96 188C113.64 188 128 173.64 128 156S113.64 124 96 124S64 138.36 64 156S78.36 188 96 188zM240 156C240 111.82 275.82 76 320 76S400 111.82 400 156S364.18 236 320 236S240 200.18 240 156zM352 156C352 138.36 337.64 124 320 124S288 138.36 288 156S302.36 188 320 188S352 173.64 352 156zM332 44H308C261.69 44 224 6.31 224 -40C224 -53.25 234.75 -64 248 -64S272 -53.25 272 -40C272 -20.16 288.1600000000001 -4 308 -4H332C351.84 -4 368 -20.16 368 -40C368 -53.25 378.75 -64 392 -64S416 -53.25 416 -40C416 6.31 378.31 44 332 44z" />
+    <glyph glyph-name="users-cog"
+      unicode="&#xF509;"
+      horiz-adv-x="640" d=" M315.3 192.5C322.1 211.5 331.7 229 343.7 244.7C336.3 241.7 328.3 240 319.9 240C284.6 240 255.9 268.7 255.9 304S284.6 368 319.9 368S383.9 339.3 383.9 304C383.9 295.6 382.2 287.6 379.2 280.2C394.9 292.2 412.4 301.9 431.4 308.6C429 368.3 380.3 416 320 416C258.1 416 208 365.9 208 304C208 243.7 255.7 195 315.3 192.5zM96 224C140.2 224 176 259.8 176 304S140.2 384 96 384S16 348.2 16 304S51.8 224 96 224zM96 336C113.6 336 128 321.6 128 304S113.6 272 96 272S64 286.4 64 304S78.4 336 96 336zM340.3 16H176V60.8C176 97.2 205.2 127 241.4 128C262 119.4 283.3 114.4 304.8 112.8C304.1 122.1 302.8 136.8 307.1 161.4C290.3 162.9 274 166.3 259.1 172.6C254.0000000000001 174.7000000000001 248.7 176 243.2 176C179.6 176 128 124.4 128 60.8V16C128 -10.5 149.5 -32 176 -32H390C370.6 -19.1 353.8 -2.8 340.3 16zM154.8 177.7C141.4 186.7 125.3 192 108 192H84C37.7 192 0 154.3 0 108C0 94.8 10.8 84 24 84S48 94.8 48 108C48 127.8 64.2 144 84 144H108C112.4 144 116.5 142.9 120.3 141.5C129.6 155.5 141.4 167.6 154.8 177.7zM610.5 106.7C613.1 120.8 613.1 135.2 610.5 149.3L636.3 164.2C639.3 165.9 640.5999999999999 169.4 639.5999999999999 172.7C632.8999999999999 194.3 621.3999999999999 213.9 606.3999999999999 230.1C604.0999999999999 232.6 600.3999999999999 233.2 597.3999999999999 231.5L571.5999999999999 216.6C560.6999999999999 225.9 548.1999999999999 233.1 534.6999999999999 237.9V267.7000000000001C534.6999999999999 271.1 532.3 274.1 528.9999999999999 274.8C506.6999999999999 279.8 483.9999999999999 279.6 462.7999999999999 274.8C459.4999999999999 274.1 457.0999999999999 271.1 457.0999999999999 267.7000000000001V237.9C443.5999999999999 233.1 431.0999999999999 225.9 420.2 216.6L394.3999999999999 231.5C391.5 233.2 387.7 232.6 385.3999999999999 230.1C370.3999999999999 213.9 358.8999999999999 194.3 352.2 172.7C351.2 169.4 352.5999999999999 165.9 355.5 164.2L381.3 149.3C378.7 135.2 378.7 120.8 381.3 106.7L355.5 91.8C352.5 90.1 351.2 86.6 352.2 83.3C358.8999999999999 61.7 370.3999999999999 42.2 385.3999999999999 25.9C387.7 23.4 391.3999999999999 22.8 394.3999999999999 24.5000000000001L420.2 39.4C431.0999999999999 30.1 443.5999999999999 22.9 457.0999999999999 18.1V-11.7C457.0999999999999 -15.1 459.4999999999999 -18.1 462.7999999999999 -18.8C485.0999999999999 -23.8 507.7999999999999 -23.6 528.9999999999999 -18.8C532.2999999999998 -18.1 534.6999999999999 -15.1 534.6999999999999 -11.7V18.1C548.1999999999999 22.9 560.6999999999999 30.1 571.5999999999999 39.4L597.3999999999999 24.5000000000001C600.2999999999998 22.8000000000001 604.0999999999999 23.4 606.3999999999999 25.9C621.3999999999999 42.1 632.8999999999999 61.7000000000001 639.5999999999999 83.3C640.5999999999999 86.6 639.1999999999999 90.1 636.3 91.8L610.5 106.7zM496 79.5C469.2 79.5 447.5 101.3 447.5 128S469.3 176.5 496 176.5S544.5 154.7 544.5 128S522.8 79.5 496 79.5z" />
+    <glyph glyph-name="users-crown"
+      unicode="&#xF6A5;"
+      horiz-adv-x="640" d=" M556 192H532C514.7 192 498.61 186.73 485.23 177.72C498.6 167.5800000000001 510.41 155.54 519.66 141.5C523.54 142.94 527.62 144 532 144H556C575.84 144 592 127.84 592 108C592 94.75 602.75 84 616 84S640 94.75 640 108C640 154.31 602.31 192 556 192zM544 224C588.18 224 624 259.82 624 304S588.18 384 544 384S464 348.18 464 304S499.82 224 544 224zM544 336C561.64 336 576 321.64 576 304S561.64 272 544 272S512 286.36 512 304S526.36 336 544 336zM154.77 177.72C141.39 186.73 125.3 192 108 192H84C37.69 192 0 154.31 0 108C0 94.75 10.75 84 24 84S48 94.75 48 108C48 127.84 64.16 144 84 144H108C112.37 144 116.46 142.94 120.34 141.5C129.59 155.54 141.4 167.58 154.77 177.72zM96 224C140.18 224 176 259.82 176 304S140.18 384 96 384S16 348.18 16 304S51.82 224 96 224zM96 336C113.64 336 128 321.64 128 304S113.64 272 96 272S64 286.36 64 304S78.36 336 96 336zM364.6600000000001 166.72C350.5 162.42 335.56 160 320 160S289.5 162.42 275.3400000000001 166.72C228.2600000000001 181.0200000000001 175.05 165.8800000000001 147.5700000000001 125.0600000000001C135.21 106.7 128 84.59 128 60.8V16C128 -10.51 149.49 -32 176 -32H464C490.51 -32 512 -10.51 512 16V60.8C512 84.59 504.79 106.7 492.43 125.05C464.95 165.87 411.74 181.02 364.6600000000001 166.72zM464 16H176V60.8C176 97.24 205.16 127 241.38 127.98C266.88 117.37 293.32 112 320 112C346.67 112 373.11 117.37 398.62 127.98C434.84 127 464 97.24 464 60.8V16zM320 192C381.86 192 432 242.14 432 304V416L376 388L320 416L264 388L208 416V304C208 242.14 258.14 192 320 192zM256 320H384V304C384 268.7100000000001 355.29 240 320 240S256 268.7100000000001 256 304V320z" />
+    <glyph glyph-name="users"
+      unicode="&#xF0C0;"
+      horiz-adv-x="640" d=" M544 224C588.2 224 624 259.8 624 304S588.2 384 544 384S464 348.2 464 304S499.8 224 544 224zM544 336C561.6 336 576 321.6 576 304S561.6 272 544 272S512 286.4 512 304S526.4 336 544 336zM96 224C140.2 224 176 259.8 176 304S140.2 384 96 384S16 348.2 16 304S51.8 224 96 224zM96 336C113.6 336 128 321.6 128 304S113.6 272 96 272S64 286.4 64 304S78.4 336 96 336zM492.4 125.1C464.9 165.9 411.7 181.1 364.6 166.8C350.4 162.5 335.5 160.1 319.9 160.1S289.4 162.5 275.2 166.8C228.1 181.1 174.9 166 147.4 125.1C135 106.7000000000001 127.8 84.6 127.8 60.8V16C127.8 -10.5 149.3 -32 175.8 -32H463.8C490.3 -32 511.8 -10.5 511.8 16V60.8C511.9999999999999 84.6 504.8 106.7 492.4 125.1zM464 16H176V60.8C176 97.2 205.2 127 241.4 128C266.9 117.4 293.3 112 320 112C346.7 112 373.1 117.4 398.6 128C434.8 127 464 97.3 464 60.8V16zM556 192H532C514.7 192 498.6 186.7 485.2 177.7C498.6 167.6 510.4 155.5 519.6 141.5C523.5 142.9 527.6 144 531.9 144H555.9C575.6999999999999 144 591.9 127.8 591.9 108C591.9 94.8 602.6999999999999 84 615.9 84S639.9 94.8 639.9 108C640 154.3 602.3 192 556 192zM320 192C381.9 192 432 242.1 432 304S381.9 416 320 416S208 365.9 208 304S258.1 192 320 192zM320 368C355.3 368 384 339.3 384 304S355.3 240 320 240S256 268.7 256 304S284.7 368 320 368zM154.8 177.7C141.4 186.7 125.3 192 108 192H84C37.7 192 0 154.3 0 108C0 94.8 10.8 84 24 84S48 94.8 48 108C48 127.8 64.2 144 84 144H108C112.4 144 116.5 142.9 120.3 141.5C129.6 155.5 141.4 167.6 154.8 177.7z" />
+    <glyph glyph-name="utensil-fork"
+      unicode="&#xF2E3;"
+      horiz-adv-x="512" d=" M457.4 340.7C451.1 365.5 428.5 387.4 404.7 393.5C394.5 433.3 344.7 464.3 307.1 438.7C294 429.9 230.8 387.1 207 363.2C165.7 321.9 155.8 266.8 172.4 217.7L18.2 79.8C-5.3 58.8 -6.1 22.3 16.3 -0.1L63.9 -47.7C86.5 -70.3000000000001 123 -69.1 143.8 -45.8000000000001L281.7000000000001 108.4999999999999C333.2000000000001 91.1 387.6 103.4999999999999 427.2000000000001 143.1C451.0000000000001 166.9 493.7 230 502.5000000000001 243.2C528.9000000000001 281.6 495.9 330.9 457.4 340.7zM462.9 270.1S415.1 198.8 393.2 177C358.9 142.7 310.6 140 270 167.5L108 -13.9C105.5 -16.8 100.8 -16.8 97.8 -13.8L50.2 33.8000000000001C47.3 36.7 47.2 41.4000000000001 50.1 44.0000000000001L231.5 206.0000000000001C204.3 246.1000000000001 206.3 294.5000000000001 241 329.2000000000001C262.9 351.1 334.1 398.9000000000001 334.1 398.9000000000001C342.6 404.9000000000001 363.7000000000001 383.6000000000001 357.3 375.3000000000001L267.2000000000001 285.2000000000001C259.5000000000001 276.0000000000001 281.0000000000001 254.2000000000001 290.4000000000001 261.6000000000001L386.8000000000001 346.3000000000001C395.2000000000001 352.2000000000001 416.1000000000001 331.3000000000001 410.2000000000001 322.9000000000001L325.5000000000001 226.5000000000001C318.1000000000001 217.1000000000001 339.9000000000001 195.5000000000001 349.1000000000001 203.3000000000001L439.2000000000001 293.4000000000001C447.6 299.7000000000001 469.0000000000001 278.7000000000001 462.9 270.1000000000001z" />
+    <glyph glyph-name="utensil-knife"
+      unicode="&#xF2E4;"
+      horiz-adv-x="512" d=" M463.3 431.4C441.2 452.5 406.3 454.1 384.3 433.1L16.7 82.9C-6.5 60.8 -5.2 23.8 18.5 1.2L69.5 -47.4C93.4 -70.2 130.9 -69.6 151.9 -45.5000000000001L274.5 95.1999999999999C340.9 86.9999999999999 402.6 95.8999999999999 450.9 141.8C492 181.1 512 237.3 512 295.4C512 342.9 497.8 398.5 463.3 431.4zM417.7 176.7C374 135.1 314.7 136.1 255.6 146.7L115.7 -13.9C112.8 -17.3 106.6 -16.4 102.6 -12.6L51.6 35.9C47.7 39.7 46.8 45.2 49.8 48.1L417.4 398.3C420.4 401.1 426.2 400.4 430.2 396.6C470.8 357.9 483.9 239.6 417.7 176.7z" />
+    <glyph glyph-name="utensil-spoon"
+      unicode="&#xF2E5;"
+      horiz-adv-x="512" d=" M474.4 410.5C410.4 474.5 293.7 450.2 229.2 385.7C184.2 340.6 171.3 287.6 188.7 232.3L18.8 79.8C-5.4 58.1 -6.5 20.4 16.6 -2.7L61.3 -47.4C84.6 -70.6999999999999 122.3 -69.1 143.8 -45.2L296.2000000000001 124.7000000000001C350.0000000000001 107.8000000000001 403.3000000000001 118.9 449.6 165.2000000000001C513 228.7000000000001 539.3000000000001 345.6 474.4 410.5000000000001zM415.7 199.3C375.4 159 332.8 156.3 283.2 182.2L108 -13.1C104.7 -16.8 98.8 -17.1 95.2 -13.4L50.5 31.3C46.9 34.9 47.1 40.6999999999999 50.8 44.1L246 219.3C221.8 265.8 220.7 309.4 263.1 351.8C311.4000000000001 400.1 398.2000000000001 418.8 440.4000000000001 376.6C484.4 332.7000000000001 461.5000000000001 245.1 415.7000000000001 199.3z" />
+    <glyph glyph-name="utensils-alt"
+      unicode="&#xF2E6;"
+      horiz-adv-x="576" d=" M0 373.9C0 259.7 47.3 174.9 156.1 150.9L88 91.4C56.1 63.2 54.6 13.8 84.7 -16.3L111.6 -42.3C141.9 -72.6 191.2 -70.7999999999999 219.3 -39L289.4 40.1C363.4 -47.2 356.5 -39.1 357.9 -40.6C386.1 -70.6999999999999 434.3 -72.1999999999999 464.2 -42.3L490.2 -16.3C519.9 13.4 518.9 61.8000000000001 488.2 90.3000000000001L428.8 145.5000000000001C454.3 149.4 479.1 161.7000000000001 500.1 182.7000000000001C520.8000000000001 203.4 558.5 257.5000000000001 566.2 268.6C589.7 302.2000000000001 567.4000000000001 347.5000000000001 530.4000000000001 360.5000000000001C524.0000000000001 379.0000000000001 507.6000000000001 395.8000000000001 488.4000000000001 402.6000000000001C475.6000000000001 438.9000000000001 430.4000000000001 462.2 396.5000000000001 438.4000000000001C385.3000000000002 430.6000000000001 331.3000000000002 393.0000000000001 310.6000000000002 372.3000000000001C287.6000000000002 349.3000000000001 274.3000000000002 320.9000000000001 272.3000000000002 290.9000000000001L124.4 428.1C76.9 472.2 0 438.1 0 373.9zM348.3 220.3C314.7 253.9 308.2 301.9 344.6 338.3C363.4 357.1 424 399 424 399C431.3 404.3 448.1 387.2 442.6 380.1L365 302.5C358.3 294.7 375.5 277.2 383.6 283.6L466.2 356.9C473.4 362 490.1 345.4 484.9 338.2L411.6 255.6C405.2000000000001 247.5 422.6 230.3 430.5 237L508.1 314.6C515.2 320.1 532.2 303.3 527 296C527 296 485.1 235.4 466.3 216.5C430.5 180.7 382.5 186 348.3 220.3zM209.6 134.2000000000001L258.1 77.1L183.5 -7.2C173.6 -18.4 156.2 -18.9 145.7000000000001 -8.3L119.7000000000001 17.7C109.1000000000001 28.3 109.6000000000001 45.6 120.8000000000001 55.5L209.6 134.2zM48 374C48 396.6 75 408.5 91.7 393L455.7 55C466.5 45 466.8 28 456.4 17.6L430.4 -8.4C420 -18.8 403.1 -18.5 393 -7.8L223.5 192C93.5 192 48 265.2 48 374z" />
+    <glyph glyph-name="utensils"
+      unicode="&#xF2E7;"
+      horiz-adv-x="544" d=" M288 290.5C288 321 275.1 388.3 272.4 402.2C267.5 427.9 244.1 448 210.6 448C199.2 448 187.5 445.6 177.3 440.2C167.3 445.5 155.5 448 144 448C132.5 448 120.7 445.5 110.7 440.2C100.6 445.6 88.8 448 77.4 448C44.1 448 20.5 428.1 15.6 402.2C12.9 388.4 0 321.1 0 290.5C0 237.8 28.2 195.7 69.8 173.8L59.6 -6.9C57.8 -37.9 82.7 -64 114 -64H174C205.3 -64 230.2 -37.9 228.4 -6.9L218.2 173.9C259.6 195.6 288 237.7000000000001 288 290.5zM168.3 206.9L180.5 -9.6C180.7 -13 177.8 -16 174 -16H114C110.3 -16 107.3 -13.1 107.5 -9.6L119.7 206.9C77.3 215 48 246.7 48 290.5C48 318.1 62.8 393.2 62.8 393.2C64.4 402.4 91.1 402.2 92.3 393V279.3C93.2 268.7000000000001 120.5 268.5 121.8 279.1L129.2 393.2000000000001C130.8 402.2000000000001 157.1 402.2000000000001 158.7 393.2000000000001L166.1 279.1C167.4 268.5 194.7 268.7000000000001 195.6 279.3V393C196.8 402.2 223.5 402.4 225.1 393.2C225.1 393.2 239.9 318.1 239.9 290.5C240 246.9 210.9 215.1 168.3 206.9zM389.5 137.4L376.2 -5.1C373.3 -36.7 398.9 -64 432 -64H488C518.9 -64 544 -39.8 544 -10V394C544 423.8 518.9 448 488 448C416.2 448 320 365 320 266.3C320 205.9 355 165.1 389.5 137.4zM368 266.3C368 338.9 443.4 400 488 400C492.3 400 496 397.2 496 394V-10C496 -13.3 492.3 -16 488 -16H432C427.4 -16 423.7 -13 424 -9.6L439.8 159.9C400.2 186.9 368 218.9 368 266.3z" />
+    <glyph glyph-name="value-absolute"
+      unicode="&#xF6A6;"
+      horiz-adv-x="448" d=" M32 416H16C7.16 416 0 408.8400000000001 0 400V-16C0 -24.84 7.16 -32 16 -32H32C40.84 -32 48 -24.84 48 -16V400C48 408.8400000000001 40.84 416 32 416zM347.31 304L336 315.31C329.75 321.56 319.62 321.56 313.37 315.31L224 225.94L134.62 315.32C128.37 321.57 118.24 321.57 111.99 315.32L100.69 304C94.44 297.75 94.44 287.62 100.69 281.37L190.06 192L100.68 102.62C94.43 96.37 94.43 86.24 100.68 79.99L112 68.69C118.25 62.44 128.38 62.44 134.63 68.69L224 158.06L313.38 68.68C319.63 62.43 329.76 62.43 336.01 68.68L347.31 80C353.56 86.25 353.56 96.38 347.31 102.63L257.94 192L347.32 281.38C353.56 287.62 353.56 297.76 347.31 304zM432 416H416C407.1600000000001 416 400 408.8400000000001 400 400V-16C400 -24.84 407.1600000000001 -32 416 -32H432C440.84 -32 448 -24.84 448 -16V400C448 408.8400000000001 440.84 416 432 416z" />
+    <glyph glyph-name="vector-square"
+      unicode="&#xF5CB;"
+      horiz-adv-x="512" d=" M480 288C497.67 288 512 302.3300000000001 512 320V416C512 433.67 497.67 448 480 448H384C366.33 448 352 433.67 352 416V400H160V416C160 433.67 145.67 448 128 448H32C14.33 448 0 433.67 0 416V320C0 302.33 14.33 288 32 288H48V96H32C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H128C145.67 -64 160 -49.67 160 -32V-16H352V-32C352 -49.67 366.33 -64 384 -64H480C497.67 -64 512 -49.67 512 -32V64C512 81.67 497.67 96 480 96H464V288H480zM400 400H464V336H400V400zM48 400H112V336H48V400zM112 -16H48V48H112V-16zM464 -16H400V48H464V-16zM416 96H384C366.33 96 352 81.67 352 64V32H160V64C160 81.67 145.67 96 128 96H96V288H128C145.67 288 160 302.3300000000001 160 320V352H352V320C352 302.33 366.33 288 384 288H416V96z" />
+    <glyph glyph-name="venus-double"
+      unicode="&#xF226;"
+      horiz-adv-x="512" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 200.6 51.9 141.4 120 130V72H76C69.4 72 64 66.6 64 60V36C64 29.4 69.4 24 76 24H120V-20C120 -26.6 125.4 -32 132 -32H156C162.6 -32 168 -26.6 168 -20V24H212C218.6 24 224 29.4 224 36V60C224 66.6 218.6 72 212 72H168V130C236.1 141.4 288 200.6 288 272zM48 272C48 324.9 91.1 368 144 368S240 324.9 240 272S196.9 176 144 176S48 219.1 48 272zM392 130V72H436C442.6 72 448 66.6 448 60V36C448 29.4 442.6 24 436 24H392V-20C392 -26.6 386.6 -32 380 -32H356C349.4 -32 344 -26.6 344 -20V24H300C293.4 24 288 29.4 288 36V60C288 66.6 293.4 72 300 72H344V130C319.7 134.1 297.4 144.3 278.8 158.9C289.2 171.3 297.9000000000001 185 304.6 199.9C321.5 185 343.7000000000001 175.9 368 175.9C420.9 175.9 464 219 464 271.9S420.9 367.9 368 367.9C343.7 367.9 321.5 358.8 304.6 343.9C297.9000000000001 358.8 289.2000000000001 372.6 278.8 384.9C303.4 404.4 334.3 416 368 416C447.5 416 512 351.5 512 272C512 200.6 460.1 141.4 392 130z" />
+    <glyph glyph-name="venus-mars"
+      unicode="&#xF228;"
+      horiz-adv-x="576" d=" M288 240C288 319.5 223.5 384 144 384S0 319.5 0 240C0 168.6 51.9 109.4 120 98V40H76C69.4 40 64 34.6 64 28V4C64 -2.6 69.4 -8 76 -8H120V-52C120 -58.6 125.4 -64 132 -64H156C162.6 -64 168 -58.6 168 -52V-8H212C218.6 -8 224 -2.6 224 4V28C224 34.6 218.6 40 212 40H168V98C236.1 109.4 288 168.6 288 240zM48 240C48 292.9 91.1 336 144 336S240 292.9 240 240S196.9 144 144 144S48 187.1 48 240zM576 436V373C576 362.3 563.1 357 555.5 364.5L541 379L485.4 323.4C502.2 299.9 512 271.1 512 240C512 160.5 447.5 96 368 96C334.3 96 303.4 107.6 278.8 126.9C289.2 139.3 297.9000000000001 153 304.6 167.9C321.5 153 343.7000000000001 143.9 368 143.9C420.9 143.9 464 187 464 239.9S420.9 335.9 368 335.9C343.7 335.9 321.5 326.8 304.6 311.9C297.9000000000001 326.8 289.2000000000001 340.6 278.8 352.9C303.4 372.4 334.3 384 368 384C399.1 384 427.9 374.1 451.4 357.4L507 413L492.5 427.5C484.9 435.1 490.3 448 501 448H564C570.6 448 576 442.6 576 436z" />
+    <glyph glyph-name="venus"
+      unicode="&#xF221;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 200.6 51.9 141.4 120 130V72H76C69.4 72 64 66.6 64 60V36C64 29.4 69.4 24 76 24H120V-20C120 -26.6 125.4 -32 132 -32H156C162.6 -32 168 -26.6 168 -20V24H212C218.6 24 224 29.4 224 36V60C224 66.6 218.6 72 212 72H168V130C236.1 141.4 288 200.6 288 272zM48 272C48 324.9 91.1 368 144 368S240 324.9 240 272S196.9 176 144 176S48 219.1 48 272z" />
+    <glyph glyph-name="vial"
+      unicode="&#xF492;"
+      horiz-adv-x="480" d=" M477.7 261.9L309.9 429.7C308.3 431.3 306.3 432 304.2 432C302.2 432 300.1 431.2 298.5 429.7L276.2 407.4C273.1 404.3 273.1 399.2 276.2 396.1L287.5 385L30.1 127.6C-10 87.5 -10 22.2 30.1 -17.9C70.2 -57.9 135.4 -58 175.6 -17.9L433 239.5L444.1 228.4C445.7000000000001 226.8 447.7000000000001 226.1 449.8 226.1S453.9 226.9 455.5 228.4L477.8 250.7C480.8 253.7 480.8 258.8 477.7 261.9zM141.6 16C120.3 -5.3 85.5 -5.5 64 16C42.6 37.4 42.6 72.2 64 93.6L114.4 144H269.6L141.6 16zM317.6 192H162.4L321 350.6L398.6 273L317.6 192z" />
+    <glyph glyph-name="vials"
+      unicode="&#xF493;"
+      horiz-adv-x="640" d=" M72 400H96V112C96 67.9 131.9 32 176 32S256 67.9 256 112V400H280C284.4 400 288 403.6 288 408V440C288 444.4 284.4 448 280 448H72C67.6 448 64 444.4 64 440V408C64 403.6 67.6 400 72 400zM144 400H208V288H144V400zM144 240H208V112C208 69.7 144 69.7 144 112V240zM632 -16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-24C640 -19.6 636.4 -16 632 -16zM360 400H384V112C384 67.9 419.9 32 464 32S544 67.9 544 112V400H568C572.4 400 576 403.6 576 408V440C576 444.4 572.4 448 568 448H360C355.6 448 352 444.4 352 440V408C352 403.6 355.6 400 360 400zM432 400H496V288H432V400zM432 240H496V112C496 69.7 432 69.7 432 112V240z" />
+    <glyph glyph-name="video-plus"
+      unicode="&#xF4E1;"
+      horiz-adv-x="576" d=" M543.9 352C537.6999999999999 352 531.4 350.2 525.6999999999999 346.3L416 277.9V336.2C416 362.6 392.8 384 364.2 384H51.8C23.2 384 0 362.6 0 336.2V47.8C0 21.4 23.2 0 51.8 0H364.2C392.8 0 416 21.4 416 47.8V106.1L525.7 37.8C531.4000000000001 33.8 537.8000000000001 32.1 543.9000000000001 32.1C560.5000000000001 32.1 576.0000000000001 45.1 576.0000000000001 63.6V320.5C576 339 560.5 352 543.9 352zM368 49.1C367.4 48.7 366.2 48 364.2 48H51.8C49.8 48 48.6 48.6 48 49.1V334.9C48.6 335.3 49.8 336 51.8 336H364.2C366.2 336 367.4 335.4 368 334.9V49.1zM528 92.8L416 162.6V221.3L528 291.1V92.8zM288 216H232V272C232 280.8 224.8 288 216 288H200C191.2 288 184 280.8 184 272V216H128C119.2 216 112 208.8 112 200V184C112 175.2 119.2 168 128 168H184V112C184 103.2 191.2 96 200 96H216C224.8 96 232 103.2 232 112V168H288C296.8 168 304 175.2 304 184V200C304 208.8 296.8 216 288 216z" />
+    <glyph glyph-name="video-slash"
+      unicode="&#xF4E2;"
+      horiz-adv-x="640" d=" M396.2 336C398.2 336 399.4 335.4 400 334.9V220.8L448 183.3V221.3L560 291.1V95.7000000000001L607 58.9C607.2 60.5000000000001 608 61.8 608 63.5000000000001V320.5000000000001C608 339 592.5 352 575.9 352C569.6999999999999 352 563.4 350.2 557.6999999999999 346.3L448 277.9V336.2C448 362.6 424.8 384 396.2 384H191.3L252.7 336H396.2000000000001zM634 -23L479.5 97.8L400 159.9L115.6 382.3L113.4 384L36 444.5C29.1 450 19 448.9 13.5 442L3.5 429.5C-2 422.6 -0.9 412.5 6 407L50.3 372.4L89.3 341.9L604 -60.5C610.9 -66 621 -64.9 626.5 -58L636.5 -45.5C642 -38.6 640.9 -28.5 634 -23zM83.8 48C81.8 48 80.6 48.6 80 49.1V288.2L32 325.7V47.8C32 21.4 55.2 0 83.8 0H396.2C410 0 422.5 5.1 431.8 13.2L387.3 48H83.8z" />
+    <glyph glyph-name="video"
+      unicode="&#xF03D;"
+      horiz-adv-x="576" d=" M543.9 352C537.6999999999999 352 531.4 350.2 525.6999999999999 346.3L416 277.9V336.2C416 362.6 392.8 384 364.2 384H51.8C23.2 384 0 362.6 0 336.2V47.8C0 21.4 23.2 0 51.8 0H364.2C392.8 0 416 21.4 416 47.8V106.1L525.7 37.8C531.4000000000001 33.8 537.8000000000001 32.1 543.9000000000001 32.1C560.5000000000001 32.1 576.0000000000001 45.1 576.0000000000001 63.6V320.5C576 339 560.5 352 543.9 352zM368 248V49.1C367.4 48.7 366.2 48 364.2 48H51.8C49.8 48 48.6 48.6 48 49.1V334.9C48.6 335.3 49.8 336 51.8 336H364.2C366.2 336 367.4 335.4 368 334.9V248zM528 92.8L416 162.6V221.3L528 291.1V92.8z" />
+    <glyph glyph-name="vihara"
+      unicode="&#xF6A7;"
+      horiz-adv-x="640" d=" M632.88 63.06L544 128V160L599.16 183.59C610.9499999999999 191.45 610.9499999999999 213.89 599.16 221.75L480 288V320L507.31 336.3C515.03 344.02 512.92 357.04 503.15 361.92L320 448L136.85 361.93C127.08 357.05 124.97 344.03 132.69 336.31L160 320V288L40.84 221.75C29.05 213.89 29.05 191.45 40.84 183.59L96 160V128L7.12 63.06C-3.1 53.97 -2.15 33.55 8.84 26.23L64 0V-48C64 -56.84 71.16 -64 80 -64H96C104.84 -64 112 -56.84 112 -48V0H296V-48C296 -56.84 303.1600000000001 -64 312 -64H328C336.84 -64 344 -56.84 344 -48V0H528V-48C528 -56.84 535.16 -64 544 -64H560C568.84 -64 576 -56.84 576 -48V0L631.15 26.23C642.14 33.55 643.1 53.97 632.88 63.06zM320 394.96L377.39 368H262.62L320 394.96zM208 320H432V288H208V320zM172.45 240H467.56L525.11 208H114.89L172.45 240zM144 160H496V128H144V160zM111.67 80H528.33L576 48H64L111.67 80z" />
+    <glyph glyph-name="volcano"
+      unicode="&#xF770;"
+      horiz-adv-x="512" d=" M500.9 21.5L341.6 219.7C331.5 232.6 316.3 240 299.8 240H212C195.6 240 180.4 232.6 170.4 219.9L10.7 20.8C-1.5 4.6 -3.4 -16.6 5.6 -34.7S32.8 -64 53 -64H459C479.2 -64 497.4 -52.8 506.4 -34.7S513.5 4.7 500.9 21.5zM208.2 190.1C209.1 191.3 210.6 192 212.1 192H299.9C301.4 192 302.9 191.3 304 189.8L353.4 128.3L324.5 92.7C320.9 88.5 316.4 87.9 314 87.9C311.6 87.9 307.1 88.5 303.5 92.7L274.9 126.1C262.9 140.1 245.2 147 227 147.7C208.6 147.4 191.3 138.9 179.8 124.5C176.2 120 171.5 119.3 169 119.3S161.8 120 159.8 122.2L157.1 126.5L208.2 190.1zM459 -16H53.1C51 -16 49.5 -15.1 48.6 -13.2C47.7 -11.4 47.8 -9.6 48.6 -8.5L126.8 88.8C152 65.7 195.4 67.4 217.3 94.6C220.8 99 225.4 99.7000000000001 227.8 99.8C230.8 100.2 234.8 99.2 238.5 95L267.1 61.6C278.9 47.8 296 40 314 40C332.1 40 349.2 47.8 361.3 62.1L384.1 90.2000000000001L463 -8C464.3 -9.7 464.4 -11.4 463.5 -13.3C462.5 -15.1 461 -16 459 -16zM160 304C172.9 304 184.8 307.9 194.8 314.4L224 272H288L317.2 314.4C327.2 307.9 339.1 304 352 304C387.3 304 416 332.7 416 368S387.3 432 352 432C336.2 432 322 426.1 310.8 416.6C299.6 435.3 279.4 448 256 448S212.4 435.3 201.2 416.6C190.1 426.1 175.8 432 160 432C124.7 432 96 403.3 96 368S124.7 304 160 304z" />
+    <glyph glyph-name="volleyball-ball"
+      unicode="&#xF45F;"
+      horiz-adv-x="496" d=" M248 440C111.2 440 0 328.8 0 192S111.2 -56 248 -56S496 55.2 496 192S384.8 440 248 440zM394.6 56.4C319.3 43.7 242.0000000000001 60.9 178.9 104.2C198.7000000000001 127.8 222.4 148.1 249.2000000000001 164.5C344.2000000000001 113.1 426.6 124.4 436.3000000000001 125.2C427.1000000000001 99.4 412.8000000000001 76.1 394.6000000000001 56.4zM447.1 174.5C428.2000000000001 171.9 409.2000000000001 171 390.3 172.2C395.9000000000001 240.6 380 308.5 345.3 366.6C374.1 350.4 457.2 290 447.1 174.5zM291.9 387C340.7 328.1 364.5 252.4 358.6 176C328.4 181.3 299 191.6 271.5 206.5C269.7 272.2 248.9 335 211.6 388.5C223.6 390.7 252.7 395.8 291.9 387zM163.7 373.1C175.4 358 185.6 342 194 325.2C132 295.9 81.1 248.2 48.1 189C46.8 276.3 100.1 343.4 163.7 373.1zM57.1 132.3C83.7 204.1 137.3 262.7000000000001 206.5 295.8C217 267 222.8 236.4 223.6 205.1C167.6 170.7000000000001 123.6 121.3 96 62.3C78.7 82.6 65.3 106.3 57.1 132.3zM133.3 28.4C140.4 46 149.2 62.6 159.4 78.3C193.1 54.9999999999999 258.3 19.1 350.2000000000001 20.4C320.2000000000001 2.5 285.4000000000001 -8 248.0000000000001 -8C205.3000000000001 -8 165.8000000000001 5.6 133.3000000000001 28.4z" />
+    <glyph glyph-name="volume-down"
+      unicode="&#xF027;"
+      horiz-adv-x="384" d=" M338.23 268.87C326.6500000000001 275.2000000000001 312.04 271.03 305.62 259.42C299.23 247.81 303.46 233.2200000000001 315.07 226.81C327.98 219.72 336 206.37 336 192S327.98 164.28 315.08 157.19C303.47 150.78 299.24 136.19 305.63 124.58C312.06 112.92 326.68 108.78 338.24 115.13C366.4700000000001 130.68 384.01 160.13 384.01 192S366.47 253.33 338.23 268.87zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM208 81.95L145.94 144H48V240H145.94L208 302.05V81.9500000000001z" />
+    <glyph glyph-name="volume-mute"
+      unicode="&#xF6A9;"
+      horiz-adv-x="512" d=" M231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM208 81.95L160 129.94L145.94 144H48V240H145.94L160 254.06L208 302.05V81.9500000000001zM465.94 192L507.31 233.37C513.56 239.62 513.56 249.75 507.31 256L496 267.31C489.75 273.56 479.62 273.56 473.37 267.31L432 225.94L390.63 267.31C384.38 273.56 374.25 273.56 368 267.31L356.69 256C350.44 249.75 350.44 239.62 356.69 233.37L398.06 192L356.69 150.63C350.44 144.38 350.44 134.25 356.69 128L368 116.68C374.25 110.43 384.38 110.43 390.63 116.68L432 158.06L473.37 116.69C479.62 110.44 489.75 110.44 496 116.69L507.31 128C513.56 134.25 513.56 144.38 507.31 150.63L465.94 192z" />
+    <glyph glyph-name="volume-off"
+      unicode="&#xF026;"
+      horiz-adv-x="256" d=" M231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM208 81.95L145.94 144H48V240H145.94L208 302.05V81.9500000000001z" />
+    <glyph glyph-name="volume-slash"
+      unicode="&#xF2E2;"
+      horiz-adv-x="640" d=" M633.99 -23.02L36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.01 -38.61 640.9 -28.54 633.99 -23.02zM370.23 268.87C361.0900000000001 273.87 350.2200000000001 272.12 342.82 265.54L413.49 210.29C408.18 234.78 392.92 256.38 370.23 268.87zM400.5200000000001 306.62C440.27 281.4 464 238.56 464 192C464 185.25 463.36 178.62 462.39 172.07L504.05 139.5C509.0799999999999 156.32 511.9999999999999 173.89 511.9999999999999 192C511.9999999999999 255.09 479.9399999999999 313.0900000000001 426.23 347.16C415.04 354.25 400.2 350.96 393.11 339.75C386.02 328.54 389.33 313.7200000000001 400.52 306.62zM453.79 387.58C520.0600000000001 344.0900000000001 559.61 270.98 559.61 192C559.61 162.87 554.15 134.58 544.04 108.24L583.27 77.57C599.07 113.09 608 151.81 608 192C608 287.33 560.27 375.5800000000001 480.35 428.03C469.18 435.36 454.17 432.27 446.8400000000001 421.08C439.5000000000001 409.9100000000001 442.62 394.9 453.79 387.58zM288 359.98C288 374.49 276.13 384 263.81 384C257.9 384 251.89 381.82 247.03 376.95L226.53 356.4600000000001L288 308.41V359.98zM240 81.9500000000001L177.94 144H80V240H141.71L80.31 288H56C42.74 288 32 277.26 32 264V120C32 106.75 42.74 96 56 96H158.06L247.03 7.05C251.9 2.18 257.9100000000001 0 263.81 0C276.14 0 288 9.52 288 24.02V125.63L240 163.16V81.95z" />
+    <glyph glyph-name="volume-up"
+      unicode="&#xF028;"
+      horiz-adv-x="576" d=" M338.23 268.88C326.6500000000001 275.2100000000001 312.04 271.04 305.62 259.43C299.23 247.82 303.46 233.23 315.07 226.82C327.98 219.72 336 206.38 336 192C336 177.63 327.98 164.28 315.08 157.19C303.47 150.78 299.24 136.19 305.63 124.58C312.06 112.92 326.68 108.78 338.24 115.13C366.4700000000001 130.68 384.01 160.13 384.01 192S366.47 253.33 338.23 268.88zM480 192C480 255.09 447.94 313.0900000000001 394.23 347.15C383.04 354.24 368.2000000000001 350.95 361.11 339.74S357.3300000000001 313.7100000000001 368.5200000000001 306.62C408.27 281.41 432 238.56 432 192S408.27 102.6 368.52 77.38C357.33 70.29 354.02 55.46 361.11 44.26C367.62 33.98 382.23 29.23 394.23 36.85C447.94 70.91 480 128.91 480 192zM448.35 428.03C437.18 435.36 422.17 432.27 414.8400000000001 421.08C407.5000000000001 409.9100000000001 410.62 394.9 421.79 387.57C488.06 344.0900000000001 527.61 270.98 527.61 192C527.61 113.02 488.06 39.92 421.79 -3.57C410.62 -10.89 407.5 -25.91 414.8400000000001 -37.07C421.8800000000001 -47.78 436.7700000000001 -51.63 448.35 -44.02C528.27 8.43 576 96.67 576 192S528.27 375.58 448.35 428.03zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.19 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM208 81.96L145.94 144H48V240H145.94L208 302.05V81.96z" />
+    <glyph glyph-name="volume"
+      unicode="&#xF6A8;"
+      horiz-adv-x="480" d=" M394.23 347.15C383.04 354.24 368.2000000000001 350.95 361.11 339.74S357.3300000000001 313.7100000000001 368.5200000000001 306.62C408.27 281.4 432 238.56 432 192S408.27 102.59 368.52 77.38C357.33 70.29 354.02 55.46 361.11 44.26C367.62 33.98 382.23 29.23 394.23 36.85C447.94 70.91 480 128.91 480 192S447.94 313.0900000000001 394.23 347.15zM338.23 268.87C326.6500000000001 275.2000000000001 312.04 271.03 305.62 259.42C299.23 247.81 303.46 233.2200000000001 315.07 226.81C327.98 219.72 336 206.37 336 192C336 177.63 327.98 164.28 315.08 157.19C303.47 150.78 299.24 136.19 305.63 124.58C312.06 112.92 326.68 108.78 338.24 115.13C366.4700000000001 130.68 384.01 160.13 384.01 192S366.47 253.33 338.23 268.87zM231.81 384C225.9 384 219.89 381.82 215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C219.9 2.18 225.91 0 231.81 0C244.14 0 256 9.52 256 24.02V359.98C256 374.49 244.13 384 231.81 384zM208 81.95L145.94 144H48V240H145.94L208 302.05V81.9500000000001z" />
+    <glyph glyph-name="vote-nay"
+      unicode="&#xF771;"
+      horiz-adv-x="640" d=" M246.5 179.6L257.8 168.3C264 162.1 274.2 162.1 280.4000000000001 168.3L320.0000000000001 207.9L359.6000000000001 168.3C365.8000000000001 162.1 376.0000000000001 162.1 382.2000000000001 168.3L393.5000000000001 179.6C399.7000000000001 185.8 399.7000000000001 196 393.5000000000001 202.2L353.9000000000001 241.8L393.5000000000001 281.4C399.7000000000001 287.6 399.7000000000001 297.8 393.5000000000001 304L382.2000000000001 315.3C376.0000000000001 321.5 365.8000000000002 321.5 359.6000000000001 315.3L320 275.7L280.4 315.3C274.2 321.5 264 321.5 257.8 315.3L246.5 304C240.3 297.8 240.3 287.6 246.5 281.4L286.1 241.8L246.5000000000001 202.2C240.2 195.9 240.2 185.8 246.5000000000001 179.6zM592 176H512V409.8C512 430.9 497.5 448 479.7 448H160.3C142.5 448 128 430.9 128 409.8V176H48C21.5 176 0 154.5 0 128V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V128C640 154.5 618.5 176 592 176zM464 400V80H176V400H464zM592 -16H48V128H128V80H105.6C100.3 80 96 76.4 96 72V40C96 35.6 100.3 32 105.6 32H534.4C539.6999999999999 32 544 35.6 544 40V72C544 76.4 539.7 80 534.4 80H512V128H592V-16z" />
+    <glyph glyph-name="vote-yea"
+      unicode="&#xF772;"
+      horiz-adv-x="640" d=" M288.1 162.9C291.9000000000001 159 298.2000000000001 159 302.1 162.8L419.9000000000001 279.6C423.8 283.4 423.8 289.7 420.0000000000001 293.6L396.8 317C393 320.9 386.7 320.9 382.8 317.1L295.4 230.4L257.5 268.6C253.7 272.5 247.4 272.5 243.5 268.7L220.1 245.5C216.2 241.7 216.2 235.4 220 231.5L288.1 162.9zM592 176H512V409.8C512 430.9 497.5 448 479.7 448H160.3C142.5 448 128 430.9 128 409.8V176H48C21.5 176 0 154.5 0 128V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V128C640 154.5 618.5 176 592 176zM464 400V80H176V400H464zM592 -16H48V128H128V80H105.6C100.3 80 96 76.4 96 72V40C96 35.6 100.3 32 105.6 32H534.4C539.6999999999999 32 544 35.6 544 40V72C544 76.4 539.7 80 534.4 80H512V128H592V-16z" />
+    <glyph glyph-name="vr-cardboard"
+      unicode="&#xF729;"
+      horiz-adv-x="640" d=" M576 384H64C28.65 384 0 355.35 0 320V64C0 28.65 28.65 0 64 0H193.13C230.91 0 265.17 22.16 280.67 56.61L288.74 74.54C294.6600000000001 87.69 306.76 96 320 96S345.34 87.69 351.26 74.54L359.33 56.61C374.83 22.16 409.1 0 446.87 0H576C611.35 0 640 28.65 640 64V320C640 355.35 611.35 384 576 384zM592 64C592 55.18 584.82 48 576 48H446.87C428.02 48 410.83 59.11 403.1 76.3L395.0300000000001 94.23C381.43 124.46 351.98 144 320 144S258.57 124.46 244.97 94.23L236.9 76.3C229.16 59.11 211.98 48 193.13 48H64C55.18 48 48 55.18 48 64V320C48 328.82 55.18 336 64 336H576C584.82 336 592 328.82 592 320V64zM176 272C140.65 272 112 243.35 112 208S140.65 144 176 144S240 172.65 240 208S211.35 272 176 272zM464 272C428.65 272 400 243.35 400 208S428.65 144 464 144S528 172.65 528 208S499.35 272 464 272z" />
+    <glyph glyph-name="walking"
+      unicode="&#xF554;"
+      horiz-adv-x="320" d=" M94.8 100.2S94.7 100.3 94.7 100.4L74.3 49.4C72.3 44.4 69.3 39.8 65.4 36L7 -22.5C-2.4 -31.9 -2.4 -47.1 7 -56.4C11.7 -61.1 17.8 -63.4 23.9 -63.4S36.2 -61.1 40.8 -56.4L99.2 2.1C107.7 10.6 114.2 20.6 118.6 31.6L132.1 65.3L95.9 98.8L94.8 100.2zM207.8 352C234.3 352 255.7 373.5 255.7 400S234.2 448 207.8 448C181.3 448 159.9 426.5 159.9 400S181.3 352 207.8 352zM312.5 177.1L283.2 206C282.3 206.9 281.6 208 281.2 209.2L268.3 248C253.9 291.1 213.9 320 168.5 320C133.7 320 115.5 311.2 72.8 294C51.9 285.6 34.9 269.9 24.6 249.2L10.2 218.1C-3.1 189.4 40.3 169 53.7 197.9L67.7 228.3C72.5 237.9 80.6 245.3 90.5 249.3C112.2 258 123.6 262.8 134.8 266.4L115 187.2C110.3 168.3 115.3 148.4 129.9 132.6L208.9 59.6C214.8 54.1 218.9 47.1 220.7 39.2L240.2 -45.6C242.8 -57.1 254.6 -66.8000000000001 268.9000000000001 -63.6C281.8 -60.6 289.8 -47.7 286.8 -34.8L267.3 49.9C263.3 67.2 254.3 82.7 241.3 94.8L187.5 144.4L213.7 249.2C221.1 239.5 221.2 236.6 235.5 193.8C238.3 185.5 243 177.9 249.3 171.6L278.6 142.6C300.9000000000001 121.1 335.3 154.5 312.5 177.1z" />
+    <glyph glyph-name="wallet"
+      unicode="&#xF555;"
+      horiz-adv-x="512" d=" M448 336V352C448 387.35 419.35 416 384 416H96C42.98 416 0 373.02 0 320V64C0 10.98 42.98 -32 96 -32H448C483.35 -32 512 -3.35 512 32V272C512 307.35 483.35 336 448 336zM464 32C464 23.18 456.82 16 448 16H96C69.53 16 48 37.53 48 64V320C48 346.4700000000001 69.53 368 96 368H384C392.82 368 400 360.82 400 352V320H112C103.16 320 96 312.8400000000001 96 304S103.16 288 112 288H448C456.82 288 464 280.82 464 272V32zM384 192C366.33 192 352 177.67 352 160S366.33 128 384 128S416 142.33 416 160S401.67 192 384 192z" />
+    <glyph glyph-name="wand-magic"
+      unicode="&#xF72B;"
+      horiz-adv-x="512" d=" M80 288L106.66 341.33L160 368L106.67 394.67L80 448L53.33 394.67L0 368L53.33 341.33L80 288zM431.99 160L405.33 106.67L351.99 80L405.32 53.33L431.99 0L458.65 53.33L511.98 80L458.65 106.67L431.99 160zM223.99 352L239.99 384L271.99 400L239.99 416L223.99 448L207.99 416L175.99 400L207.99 384L223.99 352zM431.99 256C440.83 256 447.99 263.16 447.99 272V306.11L502.02 366C515.8299999999999 381.2200000000001 515.24 404.53 500.71 419.0900000000001L483.05 436.7200000000001C468.55 451.24 445.2099999999999 451.8 430.05 438.08L157.28 192H112C103.16 192 96 184.84 96 176V136.72L17.47 65.88L17.41 65.83C6.72 56.14 0.38 42.31 0.04 27.88C-0.33 13.44 5.32 -0.7 15.54 -10.93L53.07 -48.45C62.94 -58.37 76.57 -64 90.57 -64C112.74 -64 126.14 -50.63 129.85 -46.53L402.78 256H431.99zM94.22 -14.36C93.4 -15.27 89.99 -17.6 87 -14.53L49.47 22.99C46.5 25.9999999999999 48.74 29.43 49.63 30.2599999999999L455.49 396.39L460.4 391.51L94.22 -14.36z" />
+    <glyph glyph-name="wand"
+      unicode="&#xF72A;"
+      horiz-adv-x="511.99" d=" M431.9700000000001 256C440.81 256 447.9700000000001 263.16 447.9700000000001 272V306.11L502 366C515.81 381.2200000000001 515.22 404.53 500.69 419.0900000000001L483.03 436.7200000000001C468.53 451.24 445.19 451.8 430.03 438.08L157.26 192H111.98C103.14 192 95.98 184.84 95.98 176V136.72L17.45 65.88L17.39 65.83C6.7 56.14 0.36 42.31 0.02 27.88C-0.35 13.44 5.3 -0.7 15.52 -10.93L53.05 -48.45C62.92 -58.37 76.55 -64 90.55 -64C112.72 -64 126.12 -50.63 129.83 -46.53L402.76 256H431.97zM94.2 -14.36C93.38 -15.27 89.97 -17.6 86.98 -14.53L49.45 22.99C46.48 25.9999999999999 48.72 29.43 49.61 30.2599999999999L455.47 396.39L460.3800000000001 391.51L94.2 -14.36z" />
+    <glyph glyph-name="warehouse-alt"
+      unicode="&#xF495;"
+      horiz-adv-x="640" d=" M528 96H352V208C352 216.8 344.8 224 336 224H112C103.2 224 96 216.8 96 208V-48C96 -56.8 103.2 -64 112 -64H528C536.8 -64 544 -56.8 544 -48V80C544 88.8 536.8 96 528 96zM304 -16H144V48H304V-16zM304 112H144V176H304V112zM496 -16H352V48H496V-16zM597.9 337.9L346.3 442.7C329.3 449.7 310.6 449.8 293.7 442.7L42.1 337.9C16.5 327.3 0 302.5 0 274.8V-48C0 -56.8 7.2 -64 16 -64H32C40.8 -64 48 -56.8 48 -48V274.8C48 283.1 52.9 290.5 60.5 293.6L312.2 398.4C317.3 400.5 322.8 400.5 327.9 398.4L579.5 293.6C587.1 290.4 592 283 592 274.8V-48C592 -56.8 599.2 -64 608 -64H624C632.8 -64 640 -56.8 640 -48V274.8C640 302.5 623.5 327.3 597.9 337.9z" />
+    <glyph glyph-name="warehouse"
+      unicode="&#xF494;"
+      horiz-adv-x="640" d=" M504 240H136C113.9 240 96 222.1 96 200V-48C96 -56.8 103.2 -64 112 -64H128C136.8 -64 144 -56.8 144 -48V0H496V-48C496 -56.8 503.2 -64 512 -64H528C536.8 -64 544 -56.8 544 -48V200C544 222.1 526.1 240 504 240zM496 32H144V96H496V32zM496 128H144V192H496V128zM597.9 337.9L346.3 442.7C329.3 449.7 310.6 449.8 293.7 442.7L42.1 337.9C16.5 327.3 0 302.5 0 274.8V-48C0 -56.8 7.2 -64 16 -64H32C40.8 -64 48 -56.8 48 -48V274.8C48 283.1 52.9 290.5 60.5 293.6L312.2 398.4C317.3 400.5 322.8 400.5 327.9 398.4L579.5 293.6C587.1 290.4 592 283 592 274.8V-48C592 -56.8 599.2 -64 608 -64H624C632.8 -64 640 -56.8 640 -48V274.8C640 302.5 623.5 327.3 597.9 337.9z" />
+    <glyph glyph-name="watch-fitness"
+      unicode="&#xF63E;"
+      horiz-adv-x="384" d=" M320 366.39V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V366.39C27.49 358.9700000000001 0 326.7 0 288V96C0 57.3 27.49 25.03 64 17.61V-32C64 -49.67 78.33 -64 96 -64H288C305.67 -64 320 -49.67 320 -32V17.61C356.52 25.02 384 57.3 384 96V288C384 326.7 356.52 358.9700000000001 320 366.39zM112 400H272V368H112V400zM272 -16H112V16H272V-16zM336 96C336 78.36 321.64 64 304 64H80C62.36 64 48 78.36 48 96V288C48 305.64 62.36 320 80 320H304C321.64 320 336 305.64 336 288V96zM264.51 246.1C242.46 263.29 213.65 255.64 198.92 241.74L191.99 235.2L185.06 241.74C170.7 255.29 141.77 263.47 119.47 246.1C97.38 228.89 96.22 197.97 115.99 179.31L184.03 115.11C188.42 110.97 195.55 110.96 199.94 115.11L267.98 179.31C287.76 197.97 286.6 228.89 264.51 246.1z" />
+    <glyph glyph-name="watch"
+      unicode="&#xF2E1;"
+      horiz-adv-x="384" d=" M320 335.1V424C320 437.2 309.2 448 296 448H88C74.8 448 64 437.2 64 424V335.1C24.7 300 0 248.9 0 192S24.7 84 64 48.9V-40C64 -53.2 74.8 -64 88 -64H296C309.2 -64 320 -53.2 320 -40V48.9C359.3 84 384 135.1 384 192S359.3 300 320 335.1zM104 408H280V362.7C253.6 376.3 223.7 384 192 384S130.4 376.3 104 362.7V408zM280 -24H104V21.3C130.4 7.7 160.3 0 192 0S253.6 7.7 280 21.3V-24zM192 48C113.1 48 48 111.8 48 192C48 270.6 111.5 336 192 336C270.9 336 336 272.2 336 192C336 113.4 272.5 48 192 48zM230.3 119.6L169.2 161.2000000000001C165.9 163.4 164 167.1 164 171.1V284C164 290.6 169.4 296 176 296H208C214.6 296 220 290.6 220 284V194.4L261.9000000000001 165.9C267.4000000000001 162.2 268.8 154.7 265.1 149.2L247.1 122.8C243.3 117.3 235.8 115.9 230.3 119.6z" />
+    <glyph glyph-name="water-lower"
+      unicode="&#xF774;"
+      horiz-adv-x="576" d=" M276.7 228.6C282.9 222.4 293 222.4 299.2 228.6L396.9 325.6C403.2 331.8 403.2 342 397 348.2L385.7 359.6C379.5 365.9 369.3 365.9 363.1 359.7L312 308.9V432C312 440.8 304.8 448 296 448H280C271.2 448 264 440.8 264 432V308.9L212.9 359.7C206.6 365.9 196.5 365.9 190.3 359.6L179 348.2C172.8 341.9 172.8 331.8 179.1 325.6L276.7 228.6zM561.5 -15.9C536.4 -13.3 512.3 -4 495.1 10C486.4 17.1 473.5 17 464.8 9.9C444.3 -7 414.8 -16.7 384 -16.7C353.9 -16.7 323.7 -6.7 303.1 9.9999999999999C294.4000000000001 17.1 281.5 16.9999999999999 272.8 9.8999999999999C252.3 -7.0000000000001 222.8 -16.7000000000001 192 -16.7000000000001C161.9 -16.7000000000001 131.7 -6.7000000000001 111.1 9.9999999999999C102.4 17.0999999999999 89.5 16.9999999999999 80.8 9.8999999999999C63.6 -4.3000000000001 40.1 -13.4000000000001 14.7 -15.9000000000001C6.5 -16.8000000000001 0 -23.2000000000002 0 -31.4000000000001V-47.9000000000001C0 -57.0000000000002 7.6 -64.7000000000002 16.7 -63.9000000000001C45.6 -61.4000000000001 73.2 -52.4000000000001 96 -38.1000000000001C150.9 -72.3000000000002 233.9 -72.0000000000001 288 -38.1000000000001C342.9 -72.3000000000002 425.9 -72.0000000000001 480 -38.1000000000001C502.9 -52.4000000000001 530.5 -61.4000000000001 559.2 -63.9000000000001C568.3000000000001 -64.7000000000002 575.9000000000001 -57.0000000000002 575.9000000000001 -47.9000000000001V-31.2000000000002C576.0000000000001 -23.1000000000001 569.6000000000001 -16.8000000000002 561.5000000000001 -15.9000000000001zM561.5 128.8C536.4 131.4 512.3 140.7 495.1 154.7C486.4 161.8 473.5 161.7 464.8 154.6C444.3 137.7 414.8 128 384 128C353.9 128 323.7 138 303.1 154.6999999999999C294.4000000000001 161.8 281.5 161.6999999999999 272.8 154.5999999999999C252.3 137.6999999999999 222.8 127.9999999999999 192 127.9999999999999C161.9 127.9999999999999 131.7 137.9999999999999 111.1 154.6999999999999C102.4 161.7999999999999 89.5 161.6999999999999 80.8 154.5999999999999C63.6 140.3999999999999 40.1 131.2999999999999 14.7 128.7999999999999C6.5 128 0 121.6 0 113.3V96.8C0 87.7 7.6 80 16.7 80.8C45.6 83.3 73.2 92.3 96 106.6C150.9 72.4 233.9 72.7000000000001 288 106.6C342.9 72.4 425.9 72.7000000000001 480 106.6C502.9 92.3 530.5 83.3 559.2 80.8C568.3000000000001 80 575.9000000000001 87.7 575.9000000000001 96.8V113.5C576.0000000000001 121.7 569.6000000000001 128 561.5000000000001 128.8z" />
+    <glyph glyph-name="water-rise"
+      unicode="&#xF775;"
+      horiz-adv-x="576" d=" M190.2 312.4C196.4 306.1 206.6 306.1 212.8 312.3L264 363.1V240C264 231.2 271.2 224 280 224H296C304.8 224 312 231.2 312 240V363.1L363.1 312.3C369.4000000000001 306.1 379.5 306.1 385.7000000000001 312.4L397.0000000000001 323.8C403.2000000000001 330.1 403.2000000000001 340.2000000000001 396.9000000000001 346.4L299.2000000000001 443.4C293.0000000000001 449.6 282.9000000000001 449.6 276.7000000000001 443.4L179.0000000000001 346.4C172.7000000000001 340.2 172.7000000000001 330 178.9000000000001 323.8L190.2000000000001 312.4zM561.5 -15.9C536.4 -13.3 512.3 -4 495.1 10C486.4 17.1 473.5 17 464.8 9.9C444.3 -7 414.8 -16.7 384 -16.7C353.9 -16.7 323.7 -6.7 303.1 9.9999999999999C294.4000000000001 17.1 281.5 16.9999999999999 272.8 9.8999999999999C252.3 -7.0000000000001 222.8 -16.7000000000001 192 -16.7000000000001C161.9 -16.7000000000001 131.7 -6.7000000000001 111.1 9.9999999999999C102.4 17.0999999999999 89.5 16.9999999999999 80.8 9.8999999999999C63.6 -4.3000000000001 40.1 -13.4000000000001 14.7 -15.9000000000001C6.5 -16.8000000000001 0 -23.2000000000002 0 -31.4000000000001V-47.9000000000001C0 -57.0000000000002 7.6 -64.7000000000002 16.7 -63.9000000000001C45.6 -61.4000000000001 73.2 -52.4000000000001 96 -38.1000000000001C150.9 -72.3000000000002 233.9 -72.0000000000001 288 -38.1000000000001C342.9 -72.3000000000002 425.9 -72.0000000000001 480 -38.1000000000001C502.9 -52.4000000000001 530.5 -61.4000000000001 559.2 -63.9000000000001C568.3000000000001 -64.7000000000002 575.9000000000001 -57.0000000000002 575.9000000000001 -47.9000000000001V-31.2000000000002C576.0000000000001 -23.1000000000001 569.6000000000001 -16.8000000000002 561.5000000000001 -15.9000000000001zM561.5 128.8C536.4 131.4 512.3 140.7 495.1 154.7C486.4 161.8 473.5 161.7 464.8 154.6C444.3 137.7 414.8 128 384 128C353.9 128 323.7 138 303.1 154.6999999999999C294.4000000000001 161.8 281.5 161.6999999999999 272.8 154.5999999999999C252.3 137.6999999999999 222.8 127.9999999999999 192 127.9999999999999C161.9 127.9999999999999 131.7 137.9999999999999 111.1 154.6999999999999C102.4 161.7999999999999 89.5 161.6999999999999 80.8 154.5999999999999C63.6 140.3999999999999 40.1 131.2999999999999 14.7 128.7999999999999C6.5 128 0 121.6 0 113.3V96.8C0 87.7 7.6 80 16.7 80.8C45.6 83.3 73.2 92.3 96 106.6C150.9 72.4 233.9 72.7000000000001 288 106.6C342.9 72.4 425.9 72.7000000000001 480 106.6C502.9 92.3 530.5 83.3 559.2 80.8C568.3000000000001 80 575.9000000000001 87.7 575.9000000000001 96.8V113.5C576.0000000000001 121.7 569.6000000000001 128 561.5000000000001 128.8z" />
+    <glyph glyph-name="water"
+      unicode="&#xF773;"
+      horiz-adv-x="576" d=" M561.5 48.1C536.4 50.7 512.3 60 495.1 74C486.4 81.1 473.5 81 464.8 73.9C444.3 57 414.8 47.3 384 47.3C353.9 47.3 323.7 57.3 303.1 73.9999999999999C294.4000000000001 81.1 281.5 80.9999999999999 272.8 73.8999999999999C252.3 56.9999999999999 222.8 47.2999999999999 192 47.2999999999999C161.9 47.2999999999999 131.7 57.2999999999999 111.1 73.9999999999999C102.4 81.0999999999999 89.5 80.9999999999999 80.8 73.8999999999999C63.6 59.6999999999999 40.1 50.5999999999999 14.7 48.0999999999999C6.5 47.1999999999999 0 40.7999999999998 0 32.5999999999999V16.0999999999999C0 6.9999999999998 7.6 -0.7000000000002 16.7 0.0999999999999C45.6 2.5999999999999 73.2 11.5999999999999 96 25.8999999999999C150.9 -8.3000000000001 233.9 -8.0000000000001 288 25.8999999999999C342.9 -8.3000000000001 425.9 -8.0000000000001 480 25.8999999999999C502.9 11.5999999999999 530.5 2.5999999999999 559.2 0.0999999999999C568.3000000000001 -0.7000000000002 575.9000000000001 6.9999999999998 575.9000000000001 16.0999999999999V32.7999999999998C576.0000000000001 40.8999999999999 569.6000000000001 47.1999999999998 561.5000000000001 48.0999999999999zM561.5 352.8C536.4 355.4 512.3 364.7000000000001 495.1 378.7000000000001C486.4 385.8 473.5 385.7000000000001 464.8 378.6C444.3 361.7 414.8 352 384 352C353.9 352 323.7 362 303.1 378.7C294.4000000000001 385.8 281.5 385.7 272.8 378.6C252.3 361.7 222.8 352 192 352C161.9 352 131.7 362 111.1 378.7C102.4 385.8 89.5 385.7 80.8 378.6C63.6 364.5 40.1 355.4 14.7 352.8C6.5 352 0 345.6 0 337.3V320.8C0 311.7 7.6 304 16.7 304.8C45.6 307.3 73.2 316.3 96 330.6C150.9 296.4 233.9 296.7000000000001 288 330.6C342.9 296.4 425.9 296.7000000000001 480 330.6C502.9 316.3 530.5 307.3 559.2 304.8C568.3000000000001 304 575.9000000000001 311.7000000000001 575.9000000000001 320.8V337.5C576.0000000000001 345.7000000000001 569.6000000000001 352 561.5000000000001 352.8zM561.5 200.8C536.4 203.4 512.3 212.7 495.1 226.7C486.4 233.8 473.5 233.7 464.8 226.6C444.3 209.7 414.8 200 384 200C353.9 200 323.7 210 303.1 226.7C294.4000000000001 233.8 281.5 233.7 272.8 226.6C252.3 209.7 222.8 200 192 200C161.9 200 131.7 210 111.1 226.7C102.4 233.8 89.5 233.7 80.8 226.6C63.6 212.4 40.1 203.3 14.7 200.8C6.5 200 0 193.6 0 185.3V168.8C0 159.7 7.6 152 16.7 152.8C45.6 155.3 73.2 164.3 96 178.6C150.9 144.4 233.9 144.7000000000001 288 178.6C342.9 144.4 425.9 144.7000000000001 480 178.6C502.9 164.3 530.5 155.3 559.2 152.8C568.3000000000001 152 575.9000000000001 159.7 575.9000000000001 168.8V185.5C576.0000000000001 193.7 569.6000000000001 200 561.5000000000001 200.8z" />
+    <glyph glyph-name="weight-hanging"
+      unicode="&#xF5CD;"
+      horiz-adv-x="512" d=" M510.28 2.14L437.25 294.27C433.45 309.46 420.81 319.99 406.38 319.99H333.9700000000001C340.17 332.04 344.0100000000001 345.5 344.0100000000001 359.99C344.0100000000001 408.59 304.6100000000001 447.99 256.0100000000001 447.99S168.0100000000001 408.59 168.0100000000001 359.99C168.0100000000001 345.5 171.8400000000001 332.04 178.0500000000001 319.99H105.64C91.21 319.99 78.5600000000001 309.45 74.77 294.27L1.72 2.14C-6.61 -31.17 16.38 -64 48.03 -64H463.98C495.62 -64 518.61 -31.17 510.28 2.14zM216 360C216 382.06 233.94 400 256 400S296 382.06 296 360C296 337.95 278.06 320 256 320S216 337.95 216 360zM462.72 -16H49.28C48.58 -15.04 47.47 -12.77 48.28 -9.5L118.66 272H393.3400000000001L463.72 -9.5C464.53 -12.77 463.42 -15.04 462.72 -16z" />
+    <glyph glyph-name="weight"
+      unicode="&#xF496;"
+      horiz-adv-x="512" d=" M448 384H383.19C353.95 422.62 308.07 448 256 448S158.05 422.62 128.81 384H64C28.71 384 0 355.29 0 320V0C0 -35.29 28.71 -64 64 -64H448C483.29 -64 512 -35.29 512 0V320C512 355.29 483.29 384 448 384zM256 400C317.86 400 368 349.86 368 288S317.86 176 256 176S144 226.14 144 288S194.14 400 256 400zM464 0C464 -8.84 456.84 -16 448 -16H64C55.16 -16 48 -8.84 48 0V320C48 328.8400000000001 55.16 336 64 336H104.17C99.33 320.75 96 304.8300000000001 96 288C96 199.78 167.78 128 256 128S416 199.78 416 288C416 304.83 412.67 320.75 407.83 336H448C456.84 336 464 328.8400000000001 464 320V0zM256 208C273.67 208 288 222.33 288 240C288 248.06 284.75 255.22 279.82 260.85L303.18 330.94C309.8400000000001 351.02 279.55 361.14 272.8 341.06L249.33 270.65C234.97 267.51 224 255.31 224 240C224 222.33 238.33 208 256 208z" />
+    <glyph glyph-name="whale"
+      unicode="&#xF72C;"
+      horiz-adv-x="640" d=" M512 320C370.86 320 304.85 236.53 203.31 137.69C200.05 134.43 196.04 132.97 192.11 132.97C183.88 132.97 175.99 139.36 175.99 149V211.87L207.37 228.36C217.76 234.3 224 244.3 224 255V367.9700000000001C224 377.38 214.99 384 205.28 384H205.27C201.8 384 198.25 383.15 194.98 381.29L112 333.87L29.02 381.29A20.781 20.781 0 0 1 18.72 384C9.01 384 0 377.39 0 367.9700000000001V255C0 244.3 6.24 234.31 16.62 228.38L48 211.88V131.88C48 59.04 107.04 0 179.88 0H544C597.02 0 640 42.98 640 96V192C640 262.69 582.69 320 512 320zM592 96C592 69.53 570.47 48 544 48H179.88C133.63 48 96 85.63 96 131.88V240.88L70.33 254.37L48 266.11V315.1600000000001L88.19 292.2000000000001L112 278.5800000000001L135.82 292.19L176 315.16V266.11L153.67 254.37L128 240.88V149.01C128 113.7 156.76 84.98 192.12 84.98C209.12 84.98 225.15 91.65 236.8 103.3C248.33 114.5200000000001 259.4000000000001 125.54 270.18 136.27C352.28 218 406.52 272 512 272C556.11 272 592 236.11 592 192V96zM432 168C418.75 168 408 157.26 408 144C408 130.75 418.75 120 432 120S456 130.75 456 144C456 157.26 445.25 168 432 168z" />
+    <glyph glyph-name="wheat"
+      unicode="&#xF72D;"
+      horiz-adv-x="512" d=" M460.88 295.54C457.72 298.7 463.08 295.67 479.06 310.52C505.62 339.39 513.81 385.6 511.68 430.67C510.75 450.33 487.66 447.9 481.05 447.9C446.76 447.9 404.11 441.48 375.36 414.74C356.82 396.1 363.63 392.92 359.1 397.45L319.54 437.04C313.2800000000001 443.3 303.17 443.2800000000001 296.94 437.04L262.86 402.94C250.27 390.3400000000001 242.29 375.03 238.15 358.93C226.97 367.0900000000001 217.79 357.8 217.58 357.5800000000001L183.89 323.87C171.31 311.28 163.32 295.9700000000001 159.19 279.88C148 288.04 138.84 278.74 138.62 278.52L104.75 244.63C67.26 207.12 67.26 146.28 104.75 108.76L121.7 91.8L7.03 -23.01C-2.34 -32.39 -2.34 -47.59 7.03 -56.96C11.72 -61.65 17.83 -64 23.99 -64S36.26 -61.65 40.95 -56.96L155.63 57.84L172.56 40.8800000000001C210.02 3.3600000000001 270.78 3.34 308.26 40.8800000000001L342.31 75C347.95 80.65 348.21 89.34 343.6600000000001 95.6C359.74 99.74 375.0300000000001 107.73 387.62 120.34L421.29 154.0700000000001C426.93 159.72 427.19 168.41 422.6400000000001 174.66C438.7100000000001 178.8 453.9900000000001 186.79 466.5700000000001 199.39L500.4200000000001 233.3C506.6600000000001 239.55 506.6600000000001 249.68 500.4200000000001 255.93L460.8800000000001 295.54zM166.9 137.07L155.61 125.76L138.66 142.73C119.92 161.49 119.89 191.88 138.66 210.66L149.93 221.94L166.88 204.97C175.95 195.9 180.94 183.84 180.94 171C180.94 158.18 175.95 146.13 166.9 137.07zM296.77 368.9700000000001L308.24 380.45L325.19 363.49C343.93 344.74 343.96 314.3400000000001 325.19 295.56L313.72 284.0800000000001L296.77 301.04C278.03 319.7800000000001 277.99 350.18 296.77 368.9700000000001zM217.8 289.9L228.88 300.99L245.83 284.03C264.57 265.28 264.61 234.9 245.84 216.1L234.75 205L217.8 221.96C199.06 240.72 199.03 271.11 217.8 289.9zM274.3300000000001 74.83C255.5900000000001 56.0500000000001 225.2300000000001 56.04 206.4800000000001 74.83L189.5400000000001 91.8000000000001L201.0800000000001 103.3500000000001C219.8800000000001 122.1100000000001 250.1700000000001 122.0000000000001 268.85 103.2900000000001L285.79 86.3200000000001L274.3300000000001 74.83zM353.6900000000001 154.28C334.9500000000001 135.5 304.5900000000001 135.49 285.8400000000001 154.28L268.9000000000001 171.25L279.98 182.35C298.73 201.13 329.0800000000001 201.14 347.8300000000001 182.35L364.7700000000001 165.38L353.6900000000001 154.28zM432.6400000000001 233.3400000000001C413.8900000000001 214.56 383.54 214.5500000000001 364.7900000000001 233.3400000000001L347.8500000000001 250.3100000000001L359.1100000000001 261.5900000000001C377.8600000000001 280.37 408.2100000000001 280.38 426.9600000000001 261.5900000000001L443.9000000000001 244.6200000000001L432.6400000000001 233.3400000000001zM389.9900000000001 325.9700000000001C391.5900000000001 346 396.7300000000001 367.5900000000001 408.7000000000001 380.1900000000001C420.23 390.4700000000001 439.2400000000001 397.0100000000001 463.2900000000001 399.12C461.2300000000001 375.29 454.9100000000001 356.1500000000001 445.0100000000001 344.4400000000001C433.1800000000001 334.3 414.0400000000001 327.92 389.9900000000001 325.9700000000001z" />
+    <glyph glyph-name="wheelchair"
+      unicode="&#xF193;"
+      horiz-adv-x="512" d=" M500.1 48.22L510.75 26.726C513.687 20.798 511.272 13.61 505.351 10.659L442.073 -21.505C429.939 -27.519 415.092 -22.306 409.502 -9.782L344.431 136H184.003C171.973 136 161.8 144.908 160.211 156.833C125.74 415.359 128.263 395.557 128 400C128 427.152 150.544 449.038 177.935 447.962C202.722 446.988 222.914 426.855 223.956 402.07C225.016 376.862 206.621 355.7440000000001 182.551 352.456L192.212 280H340C346.627 280 352 274.627 352 268V244C352 237.373 346.627 232 340 232H198.613L205.013 184H360A23.999000000000002 23.999000000000002 0 0 0 381.916 169.782L443.149 32.597L483.983 53.626C489.926 56.597 497.151 54.173 500.1 48.22zM313.291 88H301.733C290.467 28.854 238.377 -16 176 -16C105.421 -16 48 41.421 48 112C48 155.765 70.083 194.463 103.686 217.556L96.802 269.143C39.428 240.11 0 180.577 0 112C0 14.953 78.953 -64 176 -64C246.605 -64 307.621 -22.203 335.636 37.941L313.291 88z" />
+    <glyph glyph-name="whistle"
+      unicode="&#xF460;"
+      horiz-adv-x="640" d=" M250.6 194C250.6 171.7 232.5 153.6 210.2 153.6S169.8 171.7000000000001 169.8 194C169.8 216.3000000000001 187.9 234.4000000000001 210.2 234.4000000000001S250.6 216.3000000000001 250.6 194zM482.5 244.2L633.9 123C640.6999999999999 117.5 642 107.7 636.6999999999999 100.7L557.6999999999999 -4.6C552.8 -11.1 543.8 -13 536.8 -8.9L385.1 77.9C377.5 66.5 368.7 55.6 358.6 45.5C317.6 4.5 263.9 -16 210.1 -16C53.1 -16 -48.3 150.6 23.3 290A64.714 64.714 0 0 0 0.2 339.6C0.2 375.2 29.2 404.2 64.8 404.2C84 404.2 101.7 395.4 113.9 380.8C144 396.3 177 403.9 210 403.9C296.7 403.9 336.5 361 404.5 306.6C409.8 302.3 411.9 295.2 409.7 288.7L399.5 259C398.4 255.8 399.4 252.2 402.1 250.1L427.6 229.7C430.2000000000001 227.6 433.9000000000001 227.3 436.8 229.1L464.3 245.5C470 248.9 477.3 248.4 482.5 244.2zM41 318.2C47.3 326.7 54 335 61.7 342.7C69.5 350.5 77.8 357.3 86.4 363.6C80.5 368.9 72.9 371.9 64.8 371.9C47 371.9 32.5 357.4 32.5 339.6C32.5 331.5 35.8 324 41 318.2zM574.5 98.5C577.1 102 576.5 106.9 573.1 109.7L469.7 192.4L437.4000000000001 173.2C431.6 169.8 424.3 170.3 419.1 174.5L349.6 230C344.3 234.3 342.2000000000001 241.4 344.4000000000001 247.9L356.5000000000001 283.1S304.5000000000001 324.6 295.9000000000001 330.9000000000001C262.1 352.1 170.5 383 96 308.5C33 245.5 33 143 96 80C126.5 49.5 167.1 32.5 210.2 32.5C312.3 32.5 352.4 116.2 369.9 142.4L530 50.8C533.5 48.8 538 49.7 540.5 53L574.5 98.5z" />
+    <glyph glyph-name="wifi-1"
+      unicode="&#xF6AA;"
+      horiz-adv-x="640" d=" M320 80C337.64 80 352 65.64 352 48S337.64 16 320 16S288 30.36 288 48S302.35 80 320 80M320 128C275.82 128 240 92.18 240 48S275.82 -32 320 -32S400 3.82 400 48S364.18 128 320 128z" />
+    <glyph glyph-name="wifi-2"
+      unicode="&#xF6AB;"
+      horiz-adv-x="640" d=" M320 80C337.64 80 352 65.64 352 48S337.64 16 320 16S288 30.36 288 48S302.35 80 320 80M320 128C275.82 128 240 92.18 240 48S275.82 -32 320 -32S400 3.82 400 48S364.18 128 320 128zM524.69 159.83C529.3100000000001 164.7 529.07 172.47 524.1 176.98C408.36 282.3 231.69 282.36 115.88 176.98C110.92 172.47 110.68 164.7 115.29 159.83L131.76 142.46C136.22 137.75 143.57 137.51 148.38 141.86C245.82 229.99 394.06 230.07 491.6 141.86C496.41 137.5099999999999 503.76 137.7599999999999 508.22 142.46L524.69 159.83z" />
+    <glyph glyph-name="wifi-slash"
+      unicode="&#xF6AC;"
+      horiz-adv-x="640" d=" M36 444.49C29.1 450.01 19.03 448.9 13.51 442L3.51 429.51C-2.02 422.61 -0.9 412.54 6 407.02L604 -60.49C610.9 -66.01 620.96 -64.89 626.49 -58L636.49 -45.51C642.02 -38.61 640.9 -28.54 634 -23.02L36 444.49zM503.18 140.18C504.95 140.78 506.85 141.01 508.23 142.47L524.69 159.84C529.3100000000001 164.71 529.07 172.48 524.11 176.99C476.44 220.37 418.4000000000001 245.6 358.56 253.25L503.18 140.18zM603.27 259.14C608.0699999999999 254.75 615.56 255.01 620.0799999999999 259.68L636.68 276.87C641.3299999999999 281.68 641.05 289.3 636.1099999999999 293.82C509.51 409.62 333.7 442.6 178.62 393.92L225.33 357.4C356.03 387.33 498.45 354.89 603.27 259.14zM3.89 293.82C-1.05 289.3 -1.33 281.68 3.32 276.87L19.92 259.68C24.44 255 31.93 254.75 36.73 259.14C49.45 270.76 62.89 281.11 76.63 290.88L37.34 321.6C25.87 312.91 14.68 303.69 3.89 293.82zM115.89 176.99C110.93 172.47 110.69 164.71 115.31 159.84L131.77 142.47C136.23 137.7600000000001 143.58 137.5200000000001 148.39 141.87C168.09 159.68 189.92 173.71 212.93 184.33L171.42 216.78C151.87 205.75 133.14 192.69 115.89 176.99zM240 48C240 3.82 275.82 -32 320 -32C361.03 -32 394.45 -1 399.07 38.79L291.83 122.63C261.6 111.21 240 82.23 240 48zM320 80C337.64 80 352 65.64 352 48S337.64 16 320 16S288 30.36 288 48S302.36 80 320 80z" />
+    <glyph glyph-name="wifi"
+      unicode="&#xF1EB;"
+      horiz-adv-x="640" d=" M320 80C337.64 80 352 65.64 352 48S337.64 16 320 16S288 30.36 288 48S302.35 80 320 80M320 128C275.82 128 240 92.18 240 48S275.82 -32 320 -32S400 3.82 400 48S364.18 128 320 128zM524.69 159.83C529.3100000000001 164.7 529.07 172.47 524.1 176.98C408.36 282.3 231.69 282.36 115.88 176.98C110.92 172.47 110.68 164.7 115.29 159.83L131.76 142.46C136.22 137.75 143.57 137.51 148.38 141.86C245.82 229.99 394.06 230.07 491.6 141.86C496.41 137.5099999999999 503.76 137.7599999999999 508.22 142.46L524.69 159.83zM636.11 293.81C457.86 456.86 181.84 456.59 3.89 293.81C-1.05 289.29 -1.33 281.67 3.32 276.86L19.92 259.68C24.44 255 31.93 254.75 36.73 259.14C196.32 404.93 443.55 405.05 603.27 259.14C608.0799999999999 254.7500000000001 615.56 255.01 620.0799999999999 259.68L636.68 276.86C641.3299999999999 281.67 641.05 289.3 636.1099999999999 293.81z" />
+    <glyph glyph-name="wind-warning"
+      unicode="&#xF776;"
+      horiz-adv-x="640" d=" M544 128H420.1C410.9000000000001 110.6 399.4000000000001 94.6 386.4000000000001 80H544C575.4 80 599.9 49.7 589.6 16.7C585.2 2.4 573.5 -9.2 559.2 -13.7C530.7 -22.6 504.1 -5.4 497.5000000000001 19.8C495.7 26.7 490.0000000000001 31.9 482.8000000000001 31.9H464.4000000000001C455.2000000000001 31.9 447.8000000000001 23.7 449.5000000000001 14.7C458.8000000000001 -36.4999999999999 508.7000000000001 -73.5999999999999 564.6000000000001 -61.9C600.9000000000001 -54.3 630.2000000000002 -25 637.8000000000002 11.3C650.8000000000002 73.4 603.8000000000002 128 544.0000000000002 128zM637.8 276.7C630.1999999999999 313 600.9 342.3 564.5999999999999 349.9C508.6999999999999 361.6 458.7999999999999 324.5 449.4999999999999 273.3C447.8999999999999 264.3 455.2999999999999 256.1 464.3999999999999 256.1H482.7999999999998C489.9999999999998 256.1 495.6999999999998 261.3 497.4999999999998 268.2000000000001C504.0999999999999 293.4 530.6999999999998 310.6 559.1999999999998 301.7000000000001C573.4999999999998 297.2000000000001 585.0999999999998 285.6 589.5999999999998 271.3C599.7999999999998 238.4 575.3999999999997 208 543.9999999999998 208H445.5999999999998C443.3999999999998 191.4 439.3999999999998 175.4 433.9999999999998 160H543.9999999999998C603.7999999999997 160 650.7999999999997 214.6 637.7999999999997 276.7zM208 192C190.3 192 176 177.7 176 160S190.3 128 208 128S240 142.3 240 160S225.7 192 208 192zM236.7 352H179.3C169.3 352 161.7 342.9 163.6 333.1L181.6 237.1C183 229.5 189.6 224 197.3 224H218.7C226.4 224 233 229.5 234.4 237.1L252.4 333.1C254.3 342.9 246.7 352 236.7 352zM208 448C93.1 448 0 354.9 0 240S93.1 32 208 32S416 125.1 416 240S322.9 448 208 448zM208 80C119.8 80 48 151.8 48 240S119.8 400 208 400S368 328.2 368 240S296.2 80 208 80z" />
+    <glyph glyph-name="wind"
+      unicode="&#xF72E;"
+      horiz-adv-x="512" d=" M16 224H352C411.8 224 458.8 278.6 445.8 340.7C438.2 377 408.9000000000001 406.3 372.6 413.9C316.7000000000001 425.6 266.8 388.5 257.5 337.3C255.9 328.3 263.3 320.1 272.4 320.1H290.8C298 320.1 303.7 325.3 305.5 332.2C312.1 357.4 338.7 374.6 367.2 365.7C381.5 361.3 393.0999999999999 349.6 397.5999999999999 335.3C407.8999999999999 302.4 383.3999999999999 272 351.9999999999999 272H16C7.2 272 0 264.8 0 256V240C0 231.2 7.2 224 16 224zM160 192H16C7.2 192 0 184.8 0 176V160C0 151.2 7.2 144 16 144H160C191.4 144 215.9 113.7 205.6 80.7C201.2 66.4 189.5 54.8 175.2 50.3C146.7 41.4 120.1 58.6 113.5 83.8C111.7 90.7 106 95.9 98.8 95.9H80.5C71.3 95.9 63.9 87.7000000000001 65.6 78.7000000000001C74.9 27.5000000000001 124.8 -9.6 180.7 2.1C217 9.7 246.3 39 253.9 75.3C266.8 137.4 219.8 192 160 192zM395.3 192H243.8C249.2 187.2 254.7 182.4 259.3 176.7C267.4000000000001 166.8 273.2 155.6 277.9000000000001 144H397.1C430.5 144 460.4 119.6 463.6 86.4C467.3 48.3 437.3 16 399.9000000000001 16C372.2000000000001 16 348.8 33.7 339.9000000000001 58.4C338.7000000000001 61.7 335.8 64 332.3 64H299.2C294.2 64 290.2 59.4 291.3 54.5C302.9 5 347 -32 400 -32C463 -32 513.8 20 511.9 83.4C510.1 144.7 456.6 192 395.3 192z" />
+    <glyph glyph-name="window-alt"
+      unicode="&#xF40F;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM384 336C384 353.7 398.3 368 416 368S448 353.7 448 336S433.7 304 416 304S384 318.3 384 336zM288 336C288 353.7 302.3 368 320 368S352 353.7 352 336S337.7 304 320 304S288 318.3 288 336zM192 336C192 353.7 206.3 368 224 368S256 353.7 256 336S241.7 304 224 304S192 318.3 192 336zM464 22C464 18.7 461.3 16 458 16H54C50.7 16 48 18.7 48 22V256H464V22z" />
+    <glyph glyph-name="window-close"
+      unicode="&#xF410;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM464 22C464 18.7 461.3 16 458 16H54C50.7 16 48 18.7 48 22V362C48 365.3 50.7 368 54 368H458C461.3 368 464 365.3 464 362V22zM356.5 253.4L295.1 192L356.5 130.6C361.1 126 361.1 118.5 356.5 113.8L334.2 91.5C329.6 86.9 322.1 86.9 317.4 91.5L256 152.9L194.6 91.5C190 86.9 182.5 86.9 177.8 91.5L155.5 113.8C150.9 118.4 150.9 125.9 155.5 130.6L216.9 192L155.5 253.4000000000001C150.9 258 150.9 265.5 155.5 270.2000000000001L177.8 292.5000000000001C182.4 297.1 189.9 297.1 194.6 292.5000000000001L256 231.1000000000001L317.4 292.5000000000001C322 297.1 329.5 297.1 334.2 292.5000000000001L356.5 270.2000000000001C361.2 265.6 361.2 258.1 356.5 253.4000000000001z" />
+    <glyph glyph-name="window-maximize"
+      unicode="&#xF2D0;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM464 22C464 18.7 461.3 16 458 16H54C50.7 16 48 18.7 48 22V256H464V22z" />
+    <glyph glyph-name="window-minimize"
+      unicode="&#xF2D1;"
+      horiz-adv-x="512" d=" M480 -32H32C14.3 -32 0 -17.7 0 0S14.3 32 32 32H480C497.7 32 512 17.7 512 0S497.7 -32 480 -32z" />
+    <glyph glyph-name="window-restore"
+      unicode="&#xF2D2;"
+      horiz-adv-x="512" d=" M464 448H144C117.5 448 96 426.5 96 400V352H48C21.5 352 0 330.5 0 304V-16C0 -42.5 21.5 -64 48 -64H368C394.5 -64 416 -42.5 416 -16V32H464C490.5 32 512 53.5 512 80V400C512 426.5 490.5 448 464 448zM368 -16H48V192H368V-16zM464 80H416V304C416 330.5 394.5 352 368 352H144V400H464V80z" />
+    <glyph glyph-name="window"
+      unicode="&#xF40E;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM256 336C256 353.7 270.3 368 288 368S320 353.7 320 336S305.7 304 288 304S256 318.3 256 336zM160 336C160 353.7 174.3 368 192 368S224 353.7 224 336S209.7 304 192 304S160 318.3 160 336zM64 336C64 353.7 78.3 368 96 368S128 353.7 128 336S113.7 304 96 304S64 318.3 64 336zM464 22C464 18.7 461.3 16 458 16H54C50.7 16 48 18.7 48 22V256H464V22z" />
+    <glyph glyph-name="windsock"
+      unicode="&#xF777;"
+      horiz-adv-x="512" d=" M484.2 299.7L94.3 351.7C105.1 361.8 112 376 112 392C112 422.9 86.9 448 56 448S0 422.9 0 392C0 369.7 13.1 350.6 32 341.6V-48C32 -56.8 39.2 -64 48 -64H64C72.8 -64 80 -56.8 80 -48V78.4L484.2 132.3C500.1 134.4 512 148 512 164V268C512 284 500.1 297.6 484.2 299.7zM320 273.2V158.9L224 146V286L320 273.2zM80 305.2L160 294.5V137.5L80 126.8V305.2zM464 178L384 167.3V264.6L464 253.9000000000001V178z" />
+    <glyph glyph-name="wine-bottle"
+      unicode="&#xF72F;"
+      horiz-adv-x="512" d=" M500.75 375.23L439.21 436.79C424.18 451.76 399.74 451.73 384.77 436.76L341.61 393.61C333.05 385.01 329.39 373.3300000000001 330.64 362.1L305.48 336.94C256.63 351.24 204.04 338.07 167.57 301.56L24.03 157.99C8.53 142.52 0 121.92 0 100.01C0 78.08 8.53 57.49 24.03 42.02L106.04 -40.04C122.04 -56.01 143.01 -64 164.01 -64S206.01 -56.01 222.01 -40.03L365.58 103.54C402.08 140.0800000000001 415.18 192.74 400.96 241.4700000000001L426.09 266.61C437.43 265.4100000000001 449.03 269.02 457.62 277.63L500.75 320.7800000000001C515.75 335.79 515.75 360.2100000000001 500.75 375.23zM309.76 115.6L236.38 42.22L106.27 172.35L179.64 245.74L309.76 115.6zM139.98 -6.08L57.97 75.97C51.53 82.39 48 90.93 48 100.02C48 109.1 51.53 117.6300000000001 57.97 124.0600000000001L83.64 149.7400000000001L213.76 19.6L188.08 -6.08C174.89 -19.34 153.29 -19.37 139.98 -6.08zM430.4 318.3L420.15 328.55L344.86 253.27L351.17 238.38C365.72 204 358.28 164.86 332.33 138.29L202.34 268.3C247.33 312.26 300.77 287.85 302.42 287.15L317.3 280.85L392.52 356.11L382.3 366.38L411.99 396.1L460.09 348L430.4 318.3z" />
+    <glyph glyph-name="wine-glass-alt"
+      unicode="&#xF5CE;"
+      horiz-adv-x="288" d=" M216 -16H168V99.46C240.6 111.98 294.31 178.21 287.4 255.34L271.45 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.31 178.21 47.4 111.97 120 99.46V-16H72C49.91 -16 32 -33.91 32 -56C32 -60.42 35.58 -64 40 -64H248C252.42 -64 256 -60.42 256 -56C256 -33.91 238.09 -16 216 -16zM226.25 400L233.42 320H54.58L61.75 400H226.25zM48.41 251.06L50.28 272H237.71L239.59 251.06C244.29 198.61 208.17 152.83 157.01 145.73H130.98C79.83 152.8300000000001 43.71 198.62 48.41 251.06z" />
+    <glyph glyph-name="wine-glass"
+      unicode="&#xF4E3;"
+      horiz-adv-x="288" d=" M216 -16H168V99.46C240.6 111.98 294.31 178.21 287.4 255.34L271.45 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.31 178.21 47.4 111.97 120 99.46V-16H72C49.91 -16 32 -33.91 32 -56C32 -60.42 35.58 -64 40 -64H248C252.42 -64 256 -60.42 256 -56C256 -33.91 238.09 -16 216 -16zM130.99 145.73C79.83 152.8300000000001 43.71 198.61 48.41 251.06L61.75 400H226.25L239.59 251.06C244.29 198.61 208.17 152.83 157.01 145.73H130.99z" />
+    <glyph glyph-name="won-sign"
+      unicode="&#xF159;"
+      horiz-adv-x="576" d=" M564 280C570.627 280 576 285.373 576 292V316C576 322.627 570.627 328 564 328H517.857L535.132 400.837C536.92 408.375 531.203 415.606 523.4559999999999 415.606H492.6839999999999A12 12 0 0 1 480.9819999999999 406.264L463.204 328H333.2240000000001L314.3150000000001 406.419A12.001000000000001 12.001000000000001 0 0 1 302.6490000000001 415.606H271.0520000000001A12.001000000000001 12.001000000000001 0 0 1 259.3860000000001 406.419L240.479 328H112.602L95.529 406.1670000000001A12 12 0 0 1 83.805 415.606H55.005C47.288 415.606 41.577 408.427 43.312 400.908L60.137 328H12C5.373 328 0 322.627 0 316V292C0 285.373 5.373 280 12 280H71.214L82.291 232H12C5.373 232 0 226.627 0 220V196C0 189.373 5.373 184 12 184H93.367L141.065 -22.698A12 12 0 0 1 152.758 -32H194.768A12.001000000000001 12.001000000000001 0 0 1 206.434 -22.813L256.295 184H317.406L367.2680000000001 -22.813A12 12 0 0 1 378.9340000000001 -32H422.9880000000001A12 12 0 0 1 434.6640000000001 -22.769L483.704 184H564C570.627 184 576 189.373 576 196V220C576 226.627 570.627 232 564 232H495.088L506.472 280H564zM123.086 280H228.904L217.33 232H133.569L123.086 280zM182.413 87.192C176.675 62.466 173.806 39.642 173.806 39.642H172.658S170.363 63.1 165.198 87.192L144.053 184H205.756L182.413 87.192zM267.868 232L274.226 258.373C275.923 265.403 277.515 272.817 278.951 280H294.7510000000001C296.187 272.817 297.778 265.403 299.475 258.373L305.834 232H267.868zM408.505 87.192C402.767 63.1 401.045 39.642 401.045 39.642H399.898S397.029 62.466 391.2910000000001 87.192L367.947 184H430.495L408.505 87.192zM441.397 232H356.372L344.798 280H452.3L441.397 232z" />
+    <glyph glyph-name="wreath"
+      unicode="&#xF7E2;"
+      horiz-adv-x="448" d=" M298.9 63.2L224 32L149.1 63.2C138.7 66.7 128 58.9 128 48V-48C128 -58.9 138.7 -66.6 149.1 -63.2L224 -32L298.9 -63.2C309.3 -66.7 320 -58.9 320 -48V48C320 58.9 309.3 66.6 298.9 63.2zM309.8 257.1C309.1 263.5 308.1 273.1 302 281.8C295.7 290.8 287 294.9 281.3 297.6C277.2 299.5 278.4 298.5 275.2 302.3C271 307.2 264.5 314.6 254.1 318.1C243.7 321.6 234.3 319.6 228.1 318.2C223.5999999999999 317.2 225 317.2 220.1999999999999 318.2C214 319.5 204.5999999999999 321.6 194.2999999999999 318.1C183.7999999999999 314.6 177.3999999999999 307.2 173.0999999999999 302.3C170.0999999999999 298.8 171.2999999999999 299.7 166.9 297.6C161.0999999999999 294.9 152.5 290.9 146.2 281.9C140 273.1 139 263.5 138.4 257.1C137.9 252 138.4 253.6 136 249.1C132.9 243.5 128.1999999999999 235 128.1999999999999 224C128.1999999999999 213 132.8999999999999 204.5 136 198.9C138.3 194.7 137.9 196.4 138.4 190.9C139.0999999999999 184.5 140.0999999999999 174.9 146.2 166.2C152.5 157.2 161.2 153.1 166.9 150.4C171 148.5 169.8 149.5 173 145.7C177.1999999999999 140.8 183.6999999999999 133.4 194.0999999999999 129.9C204.5 126.4 213.9 128.4 220.0999999999999 129.8C224.5999999999999 130.8 223.1999999999999 130.8 228 129.8C232.1 128.9 242.8 126.1999999999999 253.9 129.9C264.4 133.4 270.8 140.8 275.1 145.7C278.1 149.2 276.9 148.3 281.3 150.4C287.1 153.1 295.7 157.1 302 166.1C308.2 174.9 309.2 184.5 309.8 190.9C310.3 196 309.8 194.4 312.2 198.9C315.3 204.5 320 213 320 224C320 235 315.3 243.5 312.2 249.1C309.8 253.4 310.3 251.9 309.8 257.1zM261.8 194.4C252.8 190.3 244.5 185.3 238.3 176.7C222.8 179.3 225.1 179.3 209.6 176.7C200.9 188.6 187.4 193.7 186.1 194.4C184.6 207 184.4 210.3 176.7 224C184.9 238.5 184.7 242 186.1 253.6C190.2 255.4 201.7 260.4 209.6 271.3C220.1 269.6 227.8 269.6 238.3 271.3C241.3 267.1 245.6 261.7 261.8 253.6C263.1 242.6 262.9 238.7 271.2 224C263.0999999999999 209.6 263.2 206 261.8 194.4zM436.8 266.3C438.6 280.8 436.7 295.7 430.9 309.7C425 323.9 415.7 335.9 403.9 344.9C400.1 358.9 392.8 371.9 382.3 382.4A81.79399999999998 81.79399999999998 0 0 1 344.9 404C335.9 415.7 323.9 425.1 309.7 430.9C299.2 435.2 288.2 437.4 277 437.4C273.4 437.4 269.9 437.2 266.4 436.7C253.7 444 239.1 448 224 448S194.3 444 181.6 436.8C178.1 437.2 174.5 437.5 170.9 437.5C159.6 437.5 148.6 435.3 138.2 431C124 425.1 112 415.8 103.1 404.1C89 400.3 76.1 393 65.6 382.5C55.1 371.9 47.8 359 44 344.9C32.3 335.9 22.9 323.9 17 309.7C11.2 295.7 9.3 280.8 11.1 266.3C3.9 253.6 0 239.1 0 224C0 208.9 3.9 194.4 11.2 181.7C9.4 167.2 11.3 152.3 17.1 138.3C22.9 124.2 32.3 112.3 44 103.4C47.7 89.3 55.1 76.2000000000001 65.7 65.7000000000001C74.4 57.0000000000001 84.9 51.0000000000001 96.1 46.8000000000001V48C96.1 61 101.2 73.2 110.5 82.3C113.5 85.2 117 87.6 120.5 89.6C95.8 93.4 85.8 114.6 90.1 134.2000000000001C77.7 136.3000000000001 66.6 144.1 61.4 156.6C56.3 168.8 58.2 182.2000000000001 65.2 192.4C54.9 199.1 48 210.7 48 224S54.9 248.9 65.2 255.6C58.2 265.8 56.3 279.1 61.4 291.4C66.6 303.9 77.6 312 90 314.1C87.4 326.2 90.2 339.2 99.5 348.5C113.1 362 130.2 358.8 134 358C136.1 370.4 144.2 381.5 156.7 386.6C169.6 391.9 182.9 389.3 192.5 382.8C199.1 393.1 210.7 400 224 400S248.9 393.1 255.6 382.8C265.2 389.4 278.5 391.9 291.4 386.6C303.9 381.4 312 370.4 314.1 358C317.8 358.8 335 362 348.5 348.5C357.8999999999999 339.1 360.6 326.2 358 314.1C370.3999999999999 312 381.5 303.9 386.6 291.4C391.7 279.1 389.8 265.8 382.8 255.6C393.1 248.9000000000001 400 237.3 400 224S393.1 199.1 382.8 192.4C389.8 182.2000000000001 391.7 168.9 386.6 156.6C381.4 144.1 370.3 136.3 357.9 134.2000000000001C362.3 114.5000000000001 352 93.3000000000001 327.4 89.6C342 81.4 352 65.9 352 48V46.7C363.2 50.9 373.7 56.9 382.4 65.6C393 76.2 400.3 89.2 404.1 103.3C415.8 112.1999999999999 425.2 124.1999999999999 431 138.1999999999999C436.8 152.1999999999999 438.7 167.0999999999999 436.8999999999999 181.5999999999999C444.0999999999999 194.2999999999999 448.0999999999999 208.7999999999999 448.0999999999999 223.8999999999999C447.9999999999999 239.0999999999999 444.0999999999999 253.5999999999999 436.7999999999999 266.3z" />
+    <glyph glyph-name="wrench"
+      unicode="&#xF0AD;"
+      horiz-adv-x="512" d=" M507.48 330.82C504.48 342.99 495.07 352.61 482.98 355.9700000000001C470.88 359.31 457.82 355.86 449.01 347L390.35 288.37L357.9100000000001 293.77L352.5300000000001 326.18L411.2000000000001 384.82C420.04 393.7100000000001 423.48 406.74 420.1100000000001 418.81C416.7300000000001 430.92 407.0500000000001 440.31 394.8200000000001 443.3400000000001C341.73 456.53 286.9100000000001 441.27 248.2800000000001 402.6500000000001C210.6500000000001 365.0300000000001 195.6800000000001 311.28 207.5600000000001 259.38L24.04 75.94C8.53 60.47 0 39.88 0 17.98S8.53 -24.51 24.04 -39.99C39.51 -55.47 60.1 -64 82.01 -64C103.89 -64 124.48 -55.47 139.99 -39.99L323.3300000000001 143.27C375.1200000000001 131.4 428.9700000000001 146.41 466.8200000000001 184.2C504.9100000000001 222.3 520.51 278.47 507.48 330.82zM432.87 218.13C404.4 189.67 362.67 180.03 323.86 192.92L309.8 197.61L106.05 -6.06C93.2 -18.9 70.76 -18.87 57.98 -6.06C51.54 0.36 48.01 8.9 48.01 17.98C48.01 27.06 51.54 35.59 57.98 42.01L261.82 245.79L257.19 259.82C244.38 298.7200000000001 253.97 340.44 282.23 368.7200000000001C302.5800000000001 389.04 329.42 399.96 357.2700000000001 399.96H358.3900000000001L301.0700000000001 342.66L316.2000000000001 252.07L406.7700000000001 236.98L464.1200000000001 294.27C464.4400000000001 266.01 453.5000000000001 238.75 432.8700000000001 218.13zM88.01 39.98C79.17 39.98 72.01 32.82 72.01 23.98S79.17 7.98 88.01 7.98S104.01 15.14 104.01 23.98S96.85 39.98 88.01 39.98z" />
+    <glyph glyph-name="x-ray"
+      unicode="&#xF497;"
+      horiz-adv-x="640" d=" M168 224H296V192H200C195.6 192 192 188.4 192 184V168C192 163.6 195.6 160 200 160H296V128H240C213.5 128 192 106.5 192 80S213.5 32 240 32S288 53.5 288 80H352C352 53.5 373.5 32 400 32S448 53.5 448 80S426.5 128 400 128H344V160H440C444.4 160 448 163.6 448 168V184C448 188.4 444.4 192 440 192H344V224H472C476.4 224 480 227.6 480 232V248C480 252.4 476.4 256 472 256H344V288H440C444.4 288 448 291.6 448 296V312C448 316.4 444.4 320 440 320H344V360C344 364.4 340.4 368 336 368H304C299.6 368 296 364.4 296 360V320H200C195.6 320 192 316.4 192 312V296C192 291.6 195.6 288 200 288H296V256H168C163.6 256 160 252.4 160 248V232C160 227.6 163.6 224 168 224zM224 80C224 101.2 256 101.2 256 80S224 58.9 224 80zM416 80C416 58.8 384 58.9 384 80C384 101.2 416 101.2 416 80zM632 400C636.4 400 640 403.6 640 408V440C640 444.4 636.4 448 632 448H8C3.6 448 0 444.4 0 440V408C0 403.6 3.6 400 8 400H64V-16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H632C636.4 -64 640 -60.4 640 -56V-24C640 -19.6 636.4 -16 632 -16H576V400H632zM528 -16H112V400H528V-16z" />
+    <glyph glyph-name="yen-sign"
+      unicode="&#xF157;"
+      horiz-adv-x="384" d=" M347.983 416H303.918A12.001000000000001 12.001000000000001 0 0 1 293.363 409.709L219.603 276.396C205.643 246.5710000000001 192.317 211.671 192.317 211.671H191.048S177.722 246.5720000000001 163.761 276.396L90.689 409.6720000000001A12 12 0 0 1 80.115 416H36.017C26.86 416 21.077 406.156 25.536 398.157L119.746 232H68C61.373 232 56 226.627 56 220V196C56 189.373 61.373 184 68 184H145.18L159.955 157.733V136H68C61.373 136 56 130.627 56 124V100C56 93.373 61.373 88 68 88H159.955V-20C159.955 -26.627 165.328 -32 171.955 -32H211.411C218.038 -32 223.411 -26.627 223.411 -20V88H316C322.627 88 328 93.373 328 100V124C328 130.627 322.627 136 316 136H223.411V157.733L238.185 184H316C322.627 184 328 189.373 328 196V220C328 226.627 322.627 232 316 232H263.633L358.45 398.13C362.935 406.129 357.154 416 347.983 416z" />
+    <glyph glyph-name="yin-yang"
+      unicode="&#xF6AD;"
+      horiz-adv-x="496" d=" M263.9 116C244.02 116 227.91 99.88 227.91 80S244.02 44 263.9 44S299.89 60.12 299.89 80S283.78 116 263.9 116zM231.91 268C251.79 268 267.9 284.12 267.9 304S251.79 340 231.91 340S195.92 323.88 195.92 304C195.93 284.12 212.04 268 231.91 268zM247.91 440C110.99 440 0 328.9700000000001 0 192S110.99 -56 247.91 -56V-55.98C247.97 -55.98 248.03 -56 248.1 -56C384.79 -56 496 55.25 496 192S384.6 440 247.91 440zM119.05 39.33C75.65 76.05 47.98 130.82 47.98 192C47.98 302.28 137.66 392 247.9 392C296.41 392 336.05 352.53 336.05 304S296.6 216 248.08 216C173.11 216 112.13 154.98 112.13 80C112.15 65.74 114.96 52.25 119.05 39.33zM248.09 -8C199.58 -8 160.12 31.47 160.12 80S199.57 168 248.09 168C323.06 168 384.04 229.02 384.04 304C384.04 317.8400000000001 381.95 331.2200000000001 378.1 343.83C420.87 307.11 448.01 252.67 448.01 192C448.02 81.72 358.33 -8 248.09 -8z" />
+  </font>
+</defs>
+</svg>
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.ttf b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..567f39af02e750daa441d80866dfe5fab336d882
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.ttf differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff
new file mode 100644
index 0000000000000000000000000000000000000000..fe136a34d28ba00b508c167f3c3f556ba33a6b6d
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff2 b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..a5627c9d2b3e5c3dfcb02db090a881ffbc09314c
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-regular-400.woff2 differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.eot b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.eot
new file mode 100644
index 0000000000000000000000000000000000000000..eda401c3a77286bb858460848d89b30c3a3dfba1
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.eot differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.svg b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.svg
new file mode 100644
index 0000000000000000000000000000000000000000..427bf783f01cc8598232b279a330fb745f20b34f
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.svg
@@ -0,0 +1,4445 @@
+<?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">
+<defs>
+  <font id="fontawesome-pro" horiz-adv-x="640">
+    <font-face font-family="Font Awesome 5 Pro"
+      units-per-em="512" ascent="448"
+      descent="64"
+      font-weight="900"
+      font-style="Solid" />
+    <missing-glyph horiz-adv-x="0" />
+    <glyph glyph-name="abacus"
+      unicode="&#xF640;"
+      horiz-adv-x="576" d=" M32 448C14.33 448 0 433.67 0 416V-48C0 -56.84 7.16 -64 16 -64H48C56.84 -64 64 -56.84 64 -48V416C64 433.67 49.67 448 32 448zM544 448C526.33 448 512 433.67 512 416V-48C512 -56.84 519.16 -64 528 -64H560C568.84 -64 576 -56.84 576 -48V416C576 433.67 561.67 448 544 448zM464 416H432C423.1600000000001 416 416 408.8400000000001 416 400V376H256V400C256 408.8400000000001 248.84 416 240 416H208C199.16 416 192 408.8400000000001 192 400V376H160V400C160 408.8400000000001 152.84 416 144 416H112C103.16 416 96 408.8400000000001 96 400V304C96 295.16 103.16 288 112 288H144C152.84 288 160 295.16 160 304V328H192V304C192 295.16 199.16 288 208 288H240C248.84 288 256 295.16 256 304V328H416V304C416 295.16 423.1600000000001 288 432 288H464C472.84 288 480 295.16 480 304V400C480 408.8400000000001 472.84 416 464 416zM352 240C352 248.84 344.84 256 336 256H304C295.1600000000001 256 288 248.84 288 240V216H256V240C256 248.84 248.84 256 240 256H208C199.16 256 192 248.84 192 240V216H160V240C160 248.84 152.84 256 144 256H112C103.16 256 96 248.84 96 240V144C96 135.16 103.16 128 112 128H144C152.84 128 160 135.16 160 144V168H192V144C192 135.16 199.16 128 208 128H240C248.84 128 256 135.16 256 144V168H288V144C288 135.16 295.1600000000001 128 304 128H336C344.84 128 352 135.16 352 144V168H480V216H352V240zM464 96H432C423.1600000000001 96 416 88.84 416 80V56H256V80C256 88.84 248.84 96 240 96H208C199.16 96 192 88.84 192 80V56H160V80C160 88.84 152.84 96 144 96H112C103.16 96 96 88.84 96 80V-16C96 -24.84 103.16 -32 112 -32H144C152.84 -32 160 -24.84 160 -16V8H192V-16C192 -24.84 199.16 -32 208 -32H240C248.84 -32 256 -24.84 256 -16V8H416V-16C416 -24.84 423.1600000000001 -32 432 -32H464C472.84 -32 480 -24.84 480 -16V80C480 88.84 472.84 96 464 96z" />
+    <glyph glyph-name="acorn"
+      unicode="&#xF6AE;"
+      horiz-adv-x="448" d=" M175.11 -39.55L224 -64L272.89 -39.55C360.6 4.3 416 93.94 416 192H32C32 93.94 87.4 4.3 175.11 -39.55zM352 384H251.5C254.9 393.4 259.9700000000001 402.18 266.6600000000001 410.04C272.2200000000001 416.56 271.9700000000001 425.95 266.04 431.9L254.69 443.2200000000001C251.57 446.38 246.97 448.36 242.72 447.94C238.34 447.8 234.22 445.86 231.41 442.64C216.66 425.84 206.86 405.58 202.02 383.99H96C42.98 383.99 0 341.01 0 287.99V255.99C0 238.32 14.33 223.99 32 223.99H416C433.67 223.99 448 238.32 448 255.99V287.99C448 341.02 405.02 384 352 384z" />
+    <glyph glyph-name="ad"
+      unicode="&#xF641;"
+      horiz-adv-x="512" d=" M157.52 176H194.48L176 229.22L157.52 176zM352 192C338.77 192 328 181.23 328 168S338.77 144 352 144S376 154.77 376 168S365.23 192 352 192zM464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM250.58 96H233.64C226.83 96 220.76 100.32 218.52 106.75L211.15 128H140.86L133.48 106.75A16 16 0 0 0 118.36 96H101.42C90.41 96 82.69 106.85 86.3 117.25L140 271.88A23.995000000000005 23.995000000000005 0 0 0 162.67 288H189.33A23.99 23.99 0 0 0 212 271.87L265.69 117.25C269.3 106.85 261.58 96 250.58 96zM424 112C424 103.16 416.84 96 408 96H392C387.15 96 382.96 98.27 380.02 101.68C371.4 98.02 361.93 96 352 96C312.3 96 280 128.3 280 168S312.3 240 352 240C360.46 240 368.46 238.27 376 235.58V272C376 280.8400000000001 383.1600000000001 288 392 288H408C416.84 288 424 280.8400000000001 424 272V112z" />
+    <glyph glyph-name="address-book"
+      unicode="&#xF2B9;"
+      horiz-adv-x="448" d=" M436 288C442.6 288 448 293.4 448 300V340C448 346.6 442.6 352 436 352H416V400C416 426.5 394.5 448 368 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H368C394.5 -64 416 -42.5 416 -16V32H436C442.6 32 448 37.4 448 44V84C448 90.6 442.6 96 436 96H416V160H436C442.6 160 448 165.4 448 172V212C448 218.6 442.6 224 436 224H416V288H436zM208 320C243.3 320 272 291.3 272 256S243.3 192 208 192S144 220.7 144 256S172.7 320 208 320zM320 83.2C320 72.6 310 64 297.6 64H118.4C106 64 96 72.6 96 83.2V102.4C96 134.2 126.1 160 163.2 160H168.2C180.5 154.9 193.9 152 208 152S235.6 154.9 247.8 160H252.8C289.9000000000001 160 320 134.2 320 102.4V83.2z" />
+    <glyph glyph-name="address-card"
+      unicode="&#xF2BB;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM176 320C211.3 320 240 291.3 240 256S211.3 192 176 192S112 220.7 112 256S140.7 320 176 320zM288 83.2C288 72.6 278 64 265.6 64H86.4C74 64 64 72.6 64 83.2V102.4C64 134.2 94.1 160 131.2 160H136.2C148.5 154.9 161.9 152 176 152S203.6 154.9 215.8 160H220.8C257.9000000000001 160 288 134.2 288 102.4V83.2zM512 136C512 131.6 508.4 128 504 128H360C355.6 128 352 131.6 352 136V152C352 156.4 355.6 160 360 160H504C508.4 160 512 156.4 512 152V136zM512 200C512 195.6 508.4 192 504 192H360C355.6 192 352 195.6 352 200V216C352 220.4 355.6 224 360 224H504C508.4 224 512 220.4 512 216V200zM512 264C512 259.6 508.4 256 504 256H360C355.6 256 352 259.6 352 264V280C352 284.4 355.6 288 360 288H504C508.4 288 512 284.4 512 280V264z" />
+    <glyph glyph-name="adjust"
+      unicode="&#xF042;"
+      horiz-adv-x="512" d=" M8 192C8 55.034 119.033 -56 256 -56S504 55.034 504 192S392.966 440 256 440S8 328.967 8 192zM256 8V376C357.705 376 440 293.689 440 192C440 90.295 357.689 8 256 8z" />
+    <glyph glyph-name="air-freshener"
+      unicode="&#xF5D0;"
+      horiz-adv-x="384" d=" M378.94 126.59L284.7 224H333.92C349.22 224 357.58 240.6 347.78 251.53L234.45 378.04C237.88 384.65 240 392.04 240 400C240 426.51 218.51 448 192 448S144 426.51 144 400C144 392.04 146.12 384.65 149.55 378.04L36.22 251.53C26.42 240.6 34.78 224 50.08 224H99.3L5.06 126.59C-6.69 114.44 3.34 96 21.7 96H160V64H48C39.16 64 32 56.84 32 48V-48C32 -56.84 39.16 -64 48 -64H336C344.84 -64 352 -56.84 352 -48V48C352 56.84 344.84 64 336 64H224V96H362.3C380.6600000000001 96 390.69 114.44 378.94 126.59zM192 416.02C200.85 416.02 208.02 408.85 208.02 400C208.02 391.16 200.85 383.98 192 383.98S175.98 391.16 175.98 400C175.98 408.85 183.15 416.02 192 416.02zM304 16V-16H80V16H304z" />
+    <glyph glyph-name="alarm-clock"
+      unicode="&#xF34E;"
+      horiz-adv-x="512" d=" M512 352C512 324.2 500.2 299.2 481.3 281.7C450.8 338.1 399 382.8 335 403.6C352.1 430.3 382 448 416 448C469 448 512 405 512 352zM177 403.6C159.9 430.3 130 448 96 448C43 448 0 405 0 352C0 324.2 11.8 299.2 30.7 281.7C61.2 338.1 113 382.8 177 403.6zM500.3 -52.3C484.6 -68 459.3 -67.9 443.7 -52.3L401.6 -10.1999999999999C362.4 -43.6999999999999 311.6 -63.9999999999999 256 -63.9999999999999S149.5 -43.6999999999999 110.4 -10.1999999999999L68.3 -52.3C52.6 -68 27.3 -67.9 11.7 -52.3C-3.9 -36.6999999999999 -3.9 -11.4 11.7 4.3000000000001L59.6 52.2C42 84.2 32 120.9 32 160C32 283.7 132.3 384 256 384S480 283.7 480 160C480 120.9 470 84.2 452.4 52.2L500.3 4.3C515.9 -11.3 515.9 -36.7 500.3 -52.3zM346.9 123.9L292 163.9V285.3C292 291.9 286.6 297.3 280 297.3H232C225.4 297.3 220 291.9 220 285.3V133.3C220 129.5 221.8 125.8 224.9 123.6L304.6 65.7000000000001C310 61.8000000000001 317.5 63.0000000000001 321.4000000000001 68.3000000000001L349.6 107.1000000000001C353.5 112.5000000000001 352.3 120.0000000000001 346.9000000000001 123.9000000000001z" />
+    <glyph glyph-name="alicorn"
+      unicode="&#xF6B0;"
+      horiz-adv-x="640" d=" M631.98 416H531.73C537.66 422.14 542.13 429.63 543.91 438.36C544.92 443.32 541.03 448 535.9699999999999 448H416C345.31 448 288 390.69 288 320H287.92C224 320 183.72 356.78 160.26 410.27C157.04 417.62 146.65 418.03 143.22 410.77C133.49 390.18 128 367.2 128 342.9C128 275.86 179.01 209.81 256 195.16V191.99C179.11 191.99 122.2 241.6600000000001 103.33 300.98C97.75 296.8100000000001 92.58 292.12 88 286.88V288C39.47 288 0 248.53 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.57 229.1 64 226.63 64 224C64 196.36 75.84 171.64 94.54 154.12L68.82 85.52A63.94500000000001 63.94500000000001 0 0 1 66.66 47.53L91.51 -51.88A15.982 15.982 0 0 1 107.02 -64H172.98C183.39 -64 191.03 -54.22 188.5 -44.12L162.19 61.14L186.03 124.73L288.07 102.4V-48C288.07 -56.84 295.23 -64 304.07 -64H368.07C376.91 -64 384.07 -56.84 384.07 -48V129.78C403.81 149.97 416.07 177.53 416.07 208C416.07 208.22 416 208.42 415.99 208.64V311.11L431.99 304L450.89 266.3C458.34 251.43 475.94 244.75 491.38 250.93L523.93 263.9500000000001A31.997 31.997 0 0 1 544.05 293.6900000000001L544 364.7L636.42 401.35C643.01 405.73 639.9 416 631.9799999999999 416zM480 352C471.16 352 464 359.16 464 368S471.16 384 480 384S496 376.8400000000001 496 368S488.84 352 480 352z" />
+    <glyph glyph-name="align-center"
+      unicode="&#xF037;"
+      horiz-adv-x="448" d=" M352 404V364C352 355.163 344.837 348 336 348H112C103.163 348 96 355.163 96 364V404C96 412.837 103.163 420 112 420H336C344.837 420 352 412.837 352 404zM16 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H16C7.163 292 0 284.837 0 276V236C0 227.163 7.163 220 16 220zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM336 164H112C103.163 164 96 156.837 96 148V108C96 99.163 103.163 92 112 92H336C344.837 92 352 99.163 352 108V148C352 156.837 344.837 164 336 164z" />
+    <glyph glyph-name="align-justify"
+      unicode="&#xF039;"
+      horiz-adv-x="448" d=" M0 364V404C0 412.837 7.163 420 16 420H432C440.837 420 448 412.837 448 404V364C448 355.163 440.837 348 432 348H16C7.163 348 0 355.163 0 364zM16 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H16C7.163 292 0 284.837 0 276V236C0 227.163 7.163 220 16 220zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM16 92H432C440.837 92 448 99.163 448 108V148C448 156.837 440.837 164 432 164H16C7.163 164 0 156.837 0 148V108C0 99.163 7.163 92 16 92z" />
+    <glyph glyph-name="align-left"
+      unicode="&#xF036;"
+      horiz-adv-x="448" d=" M288 404V364C288 355.163 280.837 348 272 348H16C7.163 348 0 355.163 0 364V404C0 412.837 7.163 420 16 420H272C280.837 420 288 412.837 288 404zM0 276V236C0 227.163 7.163 220 16 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H16C7.163 292 0 284.837 0 276zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM272 164H16C7.163 164 0 156.837 0 148V108C0 99.163 7.163 92 16 92H272C280.837 92 288 99.163 288 108V148C288 156.837 280.837 164 272 164z" />
+    <glyph glyph-name="align-right"
+      unicode="&#xF038;"
+      horiz-adv-x="448" d=" M160 364V404C160 412.837 167.163 420 176 420H432C440.837 420 448 412.837 448 404V364C448 355.163 440.837 348 432 348H176C167.163 348 160 355.163 160 364zM16 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H16C7.163 292 0 284.837 0 276V236C0 227.163 7.163 220 16 220zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM176 92H432C440.837 92 448 99.163 448 108V148C448 156.837 440.837 164 432 164H176C167.163 164 160 156.837 160 148V108C160 99.163 167.163 92 176 92z" />
+    <glyph glyph-name="allergies"
+      unicode="&#xF461;"
+      horiz-adv-x="448" d=" M416 336C398.4 336 384 321.6 384 304V232C384 227.6 380.4 224 376 224H360C355.6 224 352 227.6 352 232V384C352 401.6 337.6 416 320 416S288 401.6 288 384V232C288 227.6 284.4 224 280 224H264C259.6 224 256 227.6 256 232V416C256 433.6 241.6 448 224 448S192 433.6 192 416V232C192 227.6 188.4 224 184 224H168C163.6 224 160 227.6 160 232V384C160 401.6 145.6 416 128 416S96 401.6 96 384V143L72.4 175.5C59.4 193.4 34.4 197.3 16.5 184.3S-5.3 146.3 7.7 128.4L133.3 -44.3C142.3 -56.6999999999999 156.8 -64.0999999999999 172.1 -64.0999999999999H369.7000000000001C392.0000000000001 -64.0999999999999 411.3000000000001 -48.7999999999999 416.4000000000001 -27.0999999999999L442.9000000000001 85.6000000000001C446.1 99.3000000000001 447.8 113.9000000000001 448.0000000000001 127.9000000000001V304C448.0000000000001 321.6 433.6000000000001 336 416.0000000000001 336zM176 32C167.2 32 160 39.2 160 48S167.2 64 176 64S192 56.8 192 48S184.8 32 176 32zM176 128C167.2 128 160 135.2 160 144S167.2 160 176 160S192 152.8 192 144S184.8 128 176 128zM240 0C231.2 0 224 7.2 224 16S231.2 32 240 32S256 24.8 256 16S248.8 0 240 0zM240 96C231.2 96 224 103.2 224 112S231.2 128 240 128S256 120.8 256 112S248.8 96 240 96zM304 64C295.2 64 288 71.2 288 80S295.2 96 304 96S320 88.8 320 80S312.8 64 304 64zM336 0C327.2 0 320 7.2 320 16S327.2 32 336 32S352 24.8 352 16S344.8 0 336 0zM368 128C359.2 128 352 135.2 352 144S359.2 160 368 160S384 152.8 384 144S376.8 128 368 128z" />
+    <glyph glyph-name="ambulance"
+      unicode="&#xF0F9;"
+      horiz-adv-x="640" d=" M624 96H608V204.1C608 216.8 602.9 229 593.9 238L494 337.9C485 346.9 472.8 352 460.1 352H416V400C416 426.5 394.5 448 368 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V80C640 88.8 632.8 96 624 96zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM304 232C304 227.6 300.4 224 296 224H240V168C240 163.6 236.4 160 232 160H184C179.6 160 176 163.6 176 168V224H120C115.6 224 112 227.6 112 232V280C112 284.4 115.6 288 120 288H176V344C176 348.4 179.6 352 184 352H232C236.4 352 240 348.4 240 344V288H296C300.4 288 304 284.4 304 280V232zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 192H416V304H460.1L560 204.1V192z" />
+    <glyph glyph-name="american-sign-language-interpreting"
+      unicode="&#xF2A3;"
+      horiz-adv-x="640" d=" M290.5470000000001 258.961C270.252 269.11 246.4000000000001 270.1600000000001 225.808 262.851C268.4140000000001 262.851 297.016 242.376 311.386 212.275C319.9620000000001 194.376 306.238 174.204 287.769 174.204C306.198 174.204 319.98 154.068 311.386 136.1330000000001C296.661 105.287 265.2630000000001 85.2790000000001 231.088 85.2790000000001C230.5310000000001 85.2790000000001 136.617 93.8940000000001 136.617 93.8940000000001L70.211 60.5470000000001C60.827 55.8540000000001 50.396 60.1680000000001 46.316 68.3280000000001L1.86 157.253C-2.307 165.868 0.749 176.15 8.806 180.874L66.878 213.943L108 288.139C114.39 345.384 142.731 397.906 187.743 434.865C199.134 444.313 216.084 442.646 225.253 431.252C234.699 419.858 233.033 403.185 221.641 393.736C209.138 383.177 198.023 371.227 189.132 358.166C210.804 372.895 235.811 382.898 263.318 386.233C278.043 388.178 291.381 377.897 293.048 363.168C294.993 348.44 284.712 335.101 269.986 333.434C253.87 331.4890000000001 238.866 325.931 225.808 318.15C251.922 323.863 284.52 321.288 313.887 307.035C327.223 300.366 332.78 284.526 326.111 271.187C319.722 258.127 303.607 252.57 290.547 258.961zM263.3180000000001 189.489C257.206 201.994 244.9800000000001 209.775 231.0870000000001 209.775A35.46 35.46 0 0 1 195.5220000000001 174.2050000000001C195.5220000000001 152.7770000000001 213.3300000000001 138.6350000000001 231.0870000000001 138.6350000000001C244.9800000000001 138.6350000000001 257.206 146.4160000000001 263.3180000000001 158.9210000000001C267.7640000000001 168.3700000000001 276.932 173.927 286.6570000000001 174.2050000000001C276.932 174.482 267.764 180.04 263.3180000000001 189.489zM638.1390000000001 226.7260000000001C642.3070000000001 218.111 639.2500000000001 207.829 631.1930000000001 203.105L573.1220000000001 170.036L532 95.84C525.61 38.595 497.269 -13.927 452.257 -50.886C441.325 -59.998 424.4580000000001 -59.03 414.747 -47.273C405.301 -35.879 406.9670000000001 -19.206 418.36 -9.757C430.863 0.802 441.9770000000001 12.752 450.868 25.813C429.196 11.084 404.189 1.081 376.682 -2.254C366.661 -4.76 349.13 3.389 346.952 20.811C345.007 35.539 355.288 48.878 370.014 50.545C386.13 52.491 401.134 58.048 414.192 65.829C388.0780000000001 60.1159999999999 355.48 62.691 326.113 76.944C312.777 83.6129999999999 307.2200000000001 99.453 313.889 112.792C320.278 125.853 336.394 131.411 349.454 125.019C369.749 114.87 393.601 113.8199999999999 414.193 121.129C371.587 121.129 342.985 141.604 328.615 171.705C320.039 189.604 333.7630000000001 209.776 352.2320000000001 209.776C333.8030000000001 209.776 320.021 229.912 328.615 247.847C342.648 277.243 372.654 298.734 410.581 298.701L503.384 290.086L569.79 323.433C579.198 328.137 589.6179999999999 323.787 593.684 315.652L638.139 226.726zM408.9120000000002 245.344C395.0190000000001 245.344 382.7930000000001 237.563 376.6810000000002 225.058C372.2350000000002 215.609 363.0670000000002 210.052 353.3420000000002 209.774C363.0670000000002 209.4960000000001 372.2350000000002 203.938 376.6810000000002 194.4900000000001C382.7930000000002 181.985 395.0190000000002 174.2040000000001 408.9120000000002 174.2040000000001A35.46 35.46 0 0 1 444.4770000000002 209.7740000000001C444.4770000000002 231.2030000000001 426.6690000000002 245.3440000000001 408.9120000000002 245.3440000000001z" />
+    <glyph glyph-name="analytics"
+      unicode="&#xF643;"
+      horiz-adv-x="576" d=" M510.62 355.37C516.03 353.26 521.85 352 528 352C554.51 352 576 373.49 576 400S554.51 448 528 448S480 426.51 480 400C480 397.57 480.37 395.24 480.71 392.91L385.37 316.64C379.9700000000001 318.75 374.14 320.01 367.99 320.01S356.02 318.75 350.61 316.64L255.29 392.9C255.64 395.23 256 397.57 256 400C256 426.51 234.51 448 208 448S160 426.51 160 400C160 395.73 160.74 391.66 161.78 387.7200000000001L60.28 286.2200000000001C56.34 287.26 52.27 288 48 288C21.49 288 0 266.51 0 240S21.49 192 48 192S96 213.49 96 240C96 244.27 95.26 248.34 94.22 252.28L195.72 353.78C199.66 352.74 203.73 352 208 352C214.15 352 219.97 353.26 225.38 355.37L320.7200000000001 279.1C320.37 276.77 320.0100000000001 274.4300000000001 320.0100000000001 272C320.0100000000001 245.4900000000001 341.5000000000001 224 368.0100000000001 224S416.0100000000001 245.4900000000001 416.0100000000001 272C416.0100000000001 274.4300000000001 415.6400000000001 276.76 415.3000000000001 279.0900000000001L510.6200000000001 355.37zM400 128H336C327.1600000000001 128 320 120.84 320 112V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V112C416 120.84 408.84 128 400 128zM560 256H496C487.16 256 480 248.84 480 240V-48C480 -56.84 487.16 -64 496 -64H560C568.84 -64 576 -56.84 576 -48V240C576 248.84 568.84 256 560 256zM240 256H176C167.16 256 160 248.84 160 240V-48C160 -56.84 167.16 -64 176 -64H240C248.84 -64 256 -56.84 256 -48V240C256 248.84 248.84 256 240 256zM80 96H16C7.16 96 0 88.84 0 80V-48C0 -56.84 7.16 -64 16 -64H80C88.84 -64 96 -56.84 96 -48V80C96 88.84 88.84 96 80 96z" />
+    <glyph glyph-name="anchor"
+      unicode="&#xF13D;"
+      horiz-adv-x="576" d=" M12.971 96H45.365C67.172 -6.735 181.944 -64 288 -64C394.229 -64 508.853 -6.62 530.635 96H563.029C573.72 96 579.074 108.926 571.514 116.485L504.485 183.514C499.799 188.2 492.201 188.2 487.514 183.514L420.485 116.485C412.925 108.925 418.279 96 428.9700000000001 96H464.116C443.826 41.683 379.153 9.412 319.999 1.985V192H371.999C378.6260000000001 192 383.999 197.373 383.999 204V244C383.999 250.627 378.6260000000001 256 371.999 256H319.999V261.4700000000001C357.2800000000001 274.648 383.9940000000001 310.195 383.999 351.988C384.005 404.228 341.605 447.262 289.37 447.99C235.723 448.739 192 405.475 192 352C192 310.202 218.716 274.65 256 261.4700000000001V256H204C197.373 256 192 250.627 192 244V204C192 197.373 197.373 192 204 192H256V1.985C197.064 9.384 132.18 41.664 111.883 96H147.029C157.72 96 163.074 108.926 155.514 116.485L88.485 183.514C83.799 188.2 76.201 188.2 71.514 183.514L4.485 116.485C-3.074 108.926 2.28 96 12.971 96zM288 384C305.645 384 320 369.645 320 352S305.645 320 288 320S256 334.355 256 352S270.355 384 288 384z" />
+    <glyph glyph-name="angel"
+      unicode="&#xF779;"
+      horiz-adv-x="576" d=" M208 304C208 259.8 243.8 224 288 224S368 259.8 368 304S332.2 384 288 384S208 348.2 208 304zM184.5 346.6C188.6 356.5 194.4 365.5 201.1 373.7C195.3 377.8 192 381.6 192 384C192 392 226 416 288 416S384 392 384 384C384 381.7 380.7 377.9 374.9 373.7C381.5 365.4 387.3 356.5 391.5 346.6C406.7 357.1 416 370 416 384C416 419.3 358.7 448 288 448S160 419.3 160 384C160 370 169.3 357.1 184.5 346.6zM571.8 -5.1L533.5999999999999 73.5C526.9999999999999 87 526.9999999999999 103.1 533.5999999999999 116.6C538.3999999999999 126.4 542.3 133.3 545.4999999999999 138.7000000000001C555 155.3 560 165.2 560 192C560 243.1 513.1 288 459.6 288C434.8 288 410.6 277.7 393.3 259.9L320.6 186.5C310.3 189.9 299.4000000000001 191.9 288.1 191.9S266 189.9 255.6 186.5L183 259.8C165.5 277.8 141.3 288 116.5 288C63 288 16 243.1 16 192C16 165.2 21 155.3 30.5 138.8C33.7 133.3 37.6 126.5 42.4 116.7C49 103.2 49 87.1 42.4 73.6L4.2 -5.1C-2.1 -18 -1.3 -32.9 6.3 -45C13.8 -56.9 26.5 -64 40.5 -64H535.6C549.5 -64 562.3000000000001 -56.9 569.8000000000001 -45C577.3000000000001 -32.9 578.1 -17.9 571.8000000000001 -5.1zM195.4 134.8L120 -16H52.2L85.6 52.6C98.6 79.2000000000001 98.6 111.1 85.6 137.7000000000001C80.2 148.9 75.7 156.6 72.1 162.8000000000001C64.9 175.2000000000001 64 176.8000000000001 64 192.0000000000001C64 216.7000000000001 89.5 240.0000000000001 116.4 240.0000000000001C128.5 240.0000000000001 139.9 235.1000000000001 148.6 226.1000000000001L213.7 160.5000000000001C206.5 153.0000000000001 200.2 144.4 195.4 134.8000000000001zM456 -16L380.6 134.8C375.8 144.4 369.5 153 362.2000000000001 160.5L427.5000000000001 226.3C436.1000000000001 235.1 447.5000000000001 240 459.6000000000001 240C486.6000000000001 240 512.0000000000001 216.7 512.0000000000001 192C512.0000000000001 176.8 511.1000000000001 175.2 503.9000000000001 162.8C500.3000000000001 156.6 495.9000000000001 148.8 490.4000000000001 137.7C477.4000000000001 111.1 477.4000000000001 79.2 490.4000000000001 52.6L523.8000000000001 -16H456z" />
+    <glyph glyph-name="angle-double-down"
+      unicode="&#xF103;"
+      horiz-adv-x="320" d=" M143 191.7L7 327.7C-2.4 337.1 -2.4 352.3 7 361.6L29.6 384.2C39 393.6 54.2 393.6 63.5 384.2L159.9 287.8L256.3 384.2C265.7 393.6 280.9000000000001 393.6 290.2 384.2L313 361.7C322.4 352.3 322.4 337.1 313 327.8L177 191.8C167.6 182.3 152.4 182.3 143 191.7zM177 -0.3L313 135.7C322.4 145.1 322.4 160.3 313 169.6L290.4 192.2C281 201.6 265.8 201.6 256.5 192.2L160 95.9L63.6 192.3C54.2 201.7 39 201.7 29.7 192.3L7 169.7C-2.4 160.3 -2.4 145.1 7 135.8L143 -0.2C152.4 -9.7 167.6 -9.7 177 -0.3z" />
+    <glyph glyph-name="angle-double-left"
+      unicode="&#xF100;"
+      horiz-adv-x="448" d=" M223.7 209L359.7 345C369.1 354.4 384.3 354.4 393.6 345L416.2 322.4C425.6 313 425.6 297.8 416.2 288.5L319.9 192L416.3 95.6C425.7 86.2000000000001 425.7 71 416.3 61.7000000000001L393.7 39C384.3 29.6 369.1 29.6 359.8 39L223.8 175C214.3 184.4 214.3 199.6 223.7 209zM31.7 175L167.7 39C177.1 29.6 192.3 29.6 201.6 39L224.2 61.6C233.6 71 233.6 86.2000000000001 224.2 95.5L127.9 192L224.3 288.4C233.7 297.8 233.7 313 224.3 322.3L201.7 345C192.3 354.4 177.1 354.4 167.8 345L31.8 209C22.3 199.6 22.3 184.4 31.7 175z" />
+    <glyph glyph-name="angle-double-right"
+      unicode="&#xF101;"
+      horiz-adv-x="448" d=" M224.3 175L88.3 39C78.9 29.6 63.7 29.6 54.4 39L31.8 61.6C22.4 71 22.4 86.2000000000001 31.8 95.5L128.2 191.9L31.8 288.3C22.4 297.7 22.4 312.9 31.8 322.2L54.3 345C63.7 354.4 78.9 354.4 88.2 345L224.2 209C233.7 199.6 233.7 184.4 224.3 175zM416.3 209L280.3 345C270.9000000000001 354.4 255.7 354.4 246.4 345L223.8 322.4C214.4 313 214.4 297.8 223.8 288.5L320.2000000000001 192.1L223.8000000000001 95.7C214.4 86.3 214.4 71.1 223.8000000000001 61.8L246.4000000000001 39.2C255.8000000000001 29.8 271.0000000000001 29.8 280.3 39.2L416.3 175.2C425.7 184.4 425.7 199.6 416.3 209z" />
+    <glyph glyph-name="angle-double-up"
+      unicode="&#xF102;"
+      horiz-adv-x="320" d=" M177 192.3L313 56.3C322.4 46.9 322.4 31.7 313 22.4L290.4 -0.2C281 -9.6 265.8 -9.6 256.5 -0.2L160 96.1L63.6 -0.3C54.2 -9.6999999999999 39 -9.6999999999999 29.7 -0.3L7 22.3C-2.4 31.7 -2.4 46.9 7 56.2L143 192.2C152.4 201.7 167.6 201.7 177 192.3zM143 384.3L7 248.3C-2.4 238.9 -2.4 223.7 7 214.4L29.6 191.8C39 182.4 54.2 182.4 63.5 191.8L159.9 288.2000000000001L256.3 191.8C265.7 182.4 280.9000000000001 182.4 290.2 191.8L312.8 214.4C322.2 223.8 322.2 239 312.8 248.3L176.8 384.3C167.6 393.7 152.4 393.7 143 384.3z" />
+    <glyph glyph-name="angle-down"
+      unicode="&#xF107;"
+      horiz-adv-x="320" d=" M143 95.7L7 231.7C-2.4 241.1 -2.4 256.3 7 265.6L29.6 288.2C39 297.6 54.2 297.6 63.5 288.2L159.9 191.8L256.3 288.2C265.7 297.6 280.9000000000001 297.6 290.2 288.2L312.8 265.6C322.2 256.2 322.2 241 312.8 231.7L176.8 95.6999999999999C167.6 86.3 152.4 86.3 143 95.6999999999999z" />
+    <glyph glyph-name="angle-left"
+      unicode="&#xF104;"
+      horiz-adv-x="256" d=" M31.7 209L167.7 345C177.1 354.4 192.3 354.4 201.6 345L224.2 322.4C233.6 313 233.6 297.8 224.2 288.5L127.9 192L224.3 95.6C233.7 86.2000000000001 233.7 71 224.3 61.7000000000001L201.7 39C192.3 29.6 177.1 29.6 167.8 39L31.8 175C22.3 184.4 22.3 199.6 31.7 209z" />
+    <glyph glyph-name="angle-right"
+      unicode="&#xF105;"
+      horiz-adv-x="256" d=" M224.3 175L88.3 39C78.9 29.6 63.7 29.6 54.4 39L31.8 61.6C22.4 71 22.4 86.2000000000001 31.8 95.5L128.2 191.9L31.8 288.3C22.4 297.7 22.4 312.9 31.8 322.2L54.3 345C63.7 354.4 78.9 354.4 88.2 345L224.2 209C233.7 199.6 233.7 184.4 224.3 175z" />
+    <glyph glyph-name="angle-up"
+      unicode="&#xF106;"
+      horiz-adv-x="320" d=" M177 288.3L313 152.3C322.4 142.9 322.4 127.7 313 118.4L290.4 95.8C281 86.4 265.8 86.4 256.5 95.8L160 192.1L63.6 95.7C54.2 86.3 39 86.3 29.7 95.7L7 118.3C-2.4 127.7 -2.4 142.9 7 152.2L143 288.2C152.4 297.7 167.6 297.7 177 288.3z" />
+    <glyph glyph-name="angry"
+      unicode="&#xF556;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM136 208C136 217.3 140.1 225.5 146.5 231.4L115.5 240.7C107 243.2 102.2 252.2 104.8 260.6C107.3 269.1 116.2 273.8 124.7 271.3L204.7 247.3C213.2 244.8 218 235.8 215.4 227.4C213.3 220.5 207 216 200.1 216C199.6 216 199 216.2 198.4 216.2C199.1 213.5 200.1 210.9 200.1 208C200.1 190.3 185.8 176 168.1 176S136 190.3 136 208zM304 53.8C276.2 87.2 219.8 87.2 191.9 53.8C178.4 37.5 153.7 58 167.3 74.3C187.3 98.3 216.7 112.1 247.9 112.1S308.5 98.3 328.5 74.3C342.3 57.8 317.4 37.7 304 53.8zM380.6 240.7L349.6 231.4C355.9000000000001 225.6 360.1 217.3 360.1 208C360.1 190.3 345.8 176 328.1 176S296.1 190.3 296.1 208C296.1 210.9 297 213.6 297.8 216.2C297.2 216.1 296.7 216 296.1 216C289.2000000000001 216 282.9000000000001 220.5 280.8 227.4C278.3 235.9 283.1 244.8 291.5 247.3L371.5 271.3C379.9 273.8 388.9 269 391.4 260.6C393.9 252.1 389.1 243.2 380.6 240.7z" />
+    <glyph glyph-name="ankh"
+      unicode="&#xF644;"
+      horiz-adv-x="320" d=" M296 192H251.38C272.46 225.99 288 266.35 288 304C288 392.37 230.69 448 160 448S32 392.37 32 304C32 266.35 47.54 225.99 68.62 192H24C10.75 192 0 181.26 0 168V136C0 122.75 10.75 112 24 112H120V-40C120 -53.25 130.75 -64 144 -64H176C189.25 -64 200 -53.25 200 -40V112H296C309.25 112 320 122.75 320 136V168C320 181.26 309.25 192 296 192zM160 368C189.61 368 208 343.48 208 304C208 269.3400000000001 180.86 225.86 160 203.13C139.14 225.85 112 269.34 112 304C112 343.48 130.39 368 160 368z" />
+    <glyph glyph-name="apple-alt"
+      unicode="&#xF5D1;"
+      horiz-adv-x="448" d=" M350.85 319C376.8200000000001 314.3300000000001 398.12 300.33 414.7700000000001 277C429.42 256.33 439.4100000000001 230.33 444.73 199C449.4000000000001 170.33 449.05 141.67 443.73 113C435.74 65.67 419.76 26 395.79 -6C367.1500000000001 -44.67 331.2000000000001 -64 287.92 -64C277.26 -64 265.62 -60.67 252.96 -54C244.3 -48.67 234.65 -46 223.99 -46S203.69 -48.67 195.02 -54C182.36 -60.67 170.72 -64 160.06 -64C116.78 -64 80.83 -44.67 52.19 -6C28.22 26 12.24 65.67 4.25 113C-1.07 141.67 -1.42 170.33 3.25 199C8.57 230.33 18.56 256.33 33.21 277C49.86 300.33 71.16 314.33 97.13 319C113.11 321.67 135.08 319.3300000000001 163.05 312C187.02 305.3300000000001 207.33 297.3300000000001 223.98 288C240.63 297.3300000000001 260.94 305.33 284.9100000000001 312C312.8900000000001 319.3300000000001 334.87 321.67 350.85 319zM295.9100000000001 360C286.5900000000001 351.33 274.2600000000001 345 258.9500000000001 341C248.2900000000001 337.67 236.6500000000001 336 223.9900000000001 336L209.0100000000001 337C207.68 346.33 207.68 357 209.0100000000001 369C211.68 393 219.3300000000001 411.33 231.9800000000001 424C241.3000000000001 432.67 253.6300000000001 439 268.9400000000001 443C279.6000000000001 446.33 291.2400000000001 448 303.9000000000001 448L318.8800000000001 447L319.8800000000001 432C319.8800000000001 419.33 318.2100000000001 407.67 314.8900000000001 397C310.9000000000001 381.67 304.5800000000001 369.33 295.9100000000001 360z" />
+    <glyph glyph-name="apple-crate"
+      unicode="&#xF6B1;"
+      horiz-adv-x="512" d=" M318.2 256H477.99C483.25 295.4700000000001 472.84 358.65 424.17 367.39C406.04 370.42 372.2700000000001 361.2100000000001 351.68 349.7C334.67 359.2200000000001 309.23 366.68 290.5300000000001 367.49C292.35 365.2800000000001 294.36 363.32 296.0300000000001 360.9100000000001C316.87 330.76 321.7700000000001 288.61 318.2000000000001 256zM210.53 397.53C221.82 409.7200000000001 224.96 429.56 223.75 447.75C210.87 448.61 188.08 447.87 173.73 434.4700000000001C157.2 417.87 159.96 388.11 160.51 384.25C178.98 383.02 198.28 386.1 210.53 397.53zM402.2200000000001 397.53C413.5100000000001 409.7200000000001 416.6500000000001 429.56 415.4400000000001 447.75C402.5600000000001 448.61 379.7700000000001 447.87 365.4200000000001 434.4700000000001C348.8900000000001 417.87 351.6500000000001 388.11 352.2000000000001 384.25C370.6700000000001 383.02 389.9700000000001 386.1 402.2200000000001 397.53zM286.3 256C291.56 295.4700000000001 281.1500000000001 358.65 232.48 367.39C214.35 370.42 180.58 361.2100000000001 160 349.7C139.34 361.26 105.57 370.41 87.52 367.39C38.91 358.66 28.53 295.12 33.7 256H286.3zM496 224H16C7.16 224 0 216.84 0 208V96H512V208C512 216.84 504.84 224 496 224zM64 144C55.16 144 48 151.16 48 160S55.16 176 64 176S80 168.84 80 160S72.84 144 64 144zM448 144C439.1600000000001 144 432 151.16 432 160S439.1600000000001 176 448 176S464 168.84 464 160S456.84 144 448 144zM0 -48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V64H0V-48zM448 16C456.84 16 464 8.84 464 0S456.84 -16 448 -16S432 -8.84 432 0S439.1600000000001 16 448 16zM64 16C72.84 16 80 8.84 80 0S72.84 -16 64 -16S48 -8.84 48 0S55.16 16 64 16z" />
+    <glyph glyph-name="archive"
+      unicode="&#xF187;"
+      horiz-adv-x="512" d=" M32 0C32 -17.7 46.3 -32 64 -32H448C465.7 -32 480 -17.7 480 0V288H32V0zM192 212C192 218.6 197.4 224 204 224H308C314.6 224 320 218.6 320 212V204C320 197.4 314.6 192 308 192H204C197.4 192 192 197.4 192 204V212zM480 416H32C14.3 416 0 401.7 0 384V336C0 327.2 7.2 320 16 320H496C504.8 320 512 327.2 512 336V384C512 401.7 497.7 416 480 416z" />
+    <glyph glyph-name="archway"
+      unicode="&#xF557;"
+      horiz-adv-x="576" d=" M560 0H544V352H32V0H16.02C7.18 0 0.02 -7.16 0.02 -16V-48C0.02 -56.84 7.18 -64 16.02 -64H176C184.84 -64 192 -56.84 192 -48V128C192 181.02 234.98 224 288 224S384 181.02 384 128L384.02 -32V-48C384.02 -56.84 391.18 -64 400.02 -64H560C568.84 -64 576 -56.84 576 -48V-16C576 -7.16 568.84 0 560 0zM560 448H16C7.16 448 0 440.84 0 432V400C0 391.16 7.16 384 16 384H560C568.84 384 576 391.16 576 400V432C576 440.84 568.84 448 560 448z" />
+    <glyph glyph-name="arrow-alt-circle-down"
+      unicode="&#xF358;"
+      horiz-adv-x="512" d=" M504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM212 308V192H141.1C130.4 192 125 179 132.6 171.5L247.5 57.2C252.2 52.5 259.7 52.5 264.4 57.2L379.3 171.5C386.9 179.1 381.5 192 370.8 192H300V308C300 314.6 294.6 320 288 320H224C217.4 320 212 314.6 212 308z" />
+    <glyph glyph-name="arrow-alt-circle-left"
+      unicode="&#xF359;"
+      horiz-adv-x="512" d=" M256 -56C119 -56 8 55 8 192S119 440 256 440S504 329 504 192S393 -56 256 -56zM372 236H256V306.9C256 317.6 243 323 235.5 315.4L121.2 200.5C116.5 195.8 116.5 188.3 121.2 183.6L235.5 68.7000000000001C243.1 61.1 256 66.5000000000001 256 77.2000000000001V148H372C378.6 148 384 153.4 384 160V224C384 230.6 378.6 236 372 236z" />
+    <glyph glyph-name="arrow-alt-circle-right"
+      unicode="&#xF35A;"
+      horiz-adv-x="512" d=" M256 440C393 440 504 329 504 192S393 -56 256 -56S8 55 8 192S119 440 256 440zM140 148H256V77.1C256 66.4 269 61 276.5 68.6L390.8 183.5C395.5 188.2 395.5 195.7 390.8 200.4L276.5 315.4C268.9 323 256 317.6 256 306.9V236H140C133.4 236 128 230.6 128 224V160C128 153.4 133.4 148 140 148z" />
+    <glyph glyph-name="arrow-alt-circle-up"
+      unicode="&#xF35B;"
+      horiz-adv-x="512" d=" M8 192C8 329 119 440 256 440S504 329 504 192S393 -56 256 -56S8 55 8 192zM300 76V192H370.9C381.6 192 387 205 379.4 212.5L264.5 326.8C259.8 331.5 252.3 331.5 247.6 326.8L132.6 212.5C125 204.9 130.4 192 141.1 192H212V76C212 69.4 217.4 64 224 64H288C294.6 64 300 69.4 300 76z" />
+    <glyph glyph-name="arrow-alt-down"
+      unicode="&#xF354;"
+      horiz-adv-x="448" d=" M176 416H272C285.3 416 296 405.3 296 392V192H399.8C421.2 192 431.9000000000001 166.2 416.8 151L241 -25C231.6 -34.4 216.4 -34.4 207 -25L31.3 151C16.2 166.1 26.9 192 48.3 192H152V392C152 405.3 162.7 416 176 416z" />
+    <glyph glyph-name="arrow-alt-from-bottom"
+      unicode="&#xF346;"
+      horiz-adv-x="384" d=" M360 -32H24C10.7 -32 0 -21.3 0 -8V16C0 29.3 10.7 40 24 40H360C373.3 40 384 29.3 384 16V-8C384 -21.3 373.3 -32 360 -32zM256 88V224H343.7C361.5 224 370.4 245.5 357.8 258.1L205.7 410.3C198.2 417.8 185.9 417.8 178.4 410.3L26.1 258.1C13.5 245.5 22.5 224 40.3 224H128V88C128 74.7 138.7 64 152 64H232C245.3 64 256 74.7 256 88z" />
+    <glyph glyph-name="arrow-alt-from-left"
+      unicode="&#xF347;"
+      horiz-adv-x="448" d=" M0 24V360C0 373.3 10.7 384 24 384H48C61.3 384 72 373.3 72 360V24C72 10.7 61.3 0 48 0H24C10.7 0 0 10.7 0 24zM120 128H256V40.3C256 22.5 277.5 13.6 290.1 26.2L442.3 178.4C449.8 185.9 449.8 198.2 442.3 205.7L290.1 357.9C277.5 370.5 256 361.6 256 343.8V256H120C106.7 256 96 245.3 96 232V152C96 138.7 106.7 128 120 128z" />
+    <glyph glyph-name="arrow-alt-from-right"
+      unicode="&#xF348;"
+      horiz-adv-x="448" d=" M448 360V24C448 10.7 437.3 0 424 0H400C386.7 0 376 10.7 376 24V360C376 373.3 386.7 384 400 384H424C437.3 384 448 373.3 448 360zM328 256H192V343.7C192 361.5 170.5 370.4 157.9 357.8L5.7 205.7C-1.8 198.2 -1.8 185.9 5.7 178.4L157.9 26.2C170.5 13.6 192 22.5 192 40.3V128H328C341.3 128 352 138.7 352 152V232C352 245.3 341.3 256 328 256z" />
+    <glyph glyph-name="arrow-alt-from-top"
+      unicode="&#xF349;"
+      horiz-adv-x="384" d=" M24 416H360C373.3 416 384 405.3 384 392V368C384 354.7 373.3 344 360 344H24C10.7 344 0 354.7 0 368V392C0 405.3 10.7 416 24 416zM128 296V160H40.3C22.5 160 13.6 138.5 26.2 125.9L178.4 -26.3C185.9 -33.8 198.2 -33.8 205.7 -26.3L357.9 125.9C370.5 138.5 361.6 160 343.8 160H256V296C256 309.3 245.3 320 232 320H152C138.7 320 128 309.3 128 296z" />
+    <glyph glyph-name="arrow-alt-left"
+      unicode="&#xF355;"
+      horiz-adv-x="448" d=" M448 240V144C448 130.7 437.3 120 424 120H224V16.2C224 -5.2 198.2 -15.9 183 -0.8L7 175C-2.4 184.4 -2.4 199.6 7 209L183 384.7C198.1 399.8 224 389.1 224 367.7V264H424C437.3 264 448 253.3 448 240z" />
+    <glyph glyph-name="arrow-alt-right"
+      unicode="&#xF356;"
+      horiz-adv-x="448" d=" M0 144V240C0 253.3 10.7 264 24 264H224V367.8C224 389.2 249.8 399.9 265 384.8L441 209C450.4 199.6 450.4 184.4 441 175L265 -0.7C249.9 -15.8 224 -5.1 224 16.3V120H24C10.7 120 0 130.7 0 144z" />
+    <glyph glyph-name="arrow-alt-square-down"
+      unicode="&#xF350;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM180 308V192H109.1C98.4 192 93 179 100.6 171.5L215.5 57.2C220.2 52.5 227.7 52.5 232.4 57.2L347.3 171.5C354.9000000000001 179.1 349.5 192 338.8 192H268V308C268 314.6 262.6 320 256 320H192C185.4 320 180 314.6 180 308z" />
+    <glyph glyph-name="arrow-alt-square-left"
+      unicode="&#xF351;"
+      horiz-adv-x="448" d=" M400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32zM340 236H224V306.9C224 317.6 211 323 203.5 315.4L89.2 200.5C84.5 195.8 84.5 188.3 89.2 183.6L203.5 68.7000000000001C211.1 61.1 224 66.5000000000001 224 77.2000000000001V148H340C346.6 148 352 153.4 352 160V224C352 230.6 346.6 236 340 236z" />
+    <glyph glyph-name="arrow-alt-square-right"
+      unicode="&#xF352;"
+      horiz-adv-x="448" d=" M48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416zM108 148H224V77.1C224 66.4 237 61 244.5 68.6L358.8 183.5C363.5 188.2 363.5 195.7 358.8 200.4L244.5 315.4C236.9 323 224 317.6 224 306.9V236H108C101.4 236 96 230.6 96 224V160C96 153.4 101.4 148 108 148z" />
+    <glyph glyph-name="arrow-alt-square-up"
+      unicode="&#xF353;"
+      horiz-adv-x="448" d=" M0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16zM268 76V192H338.9C349.6 192 355 205 347.4 212.5L232.5 326.8C227.8 331.5 220.3 331.5 215.6 326.8L100.6 212.5C93 205 98.4 192 109.1 192H180V76C180 69.4 185.4 64 192 64H256C262.6 64 268 69.4 268 76z" />
+    <glyph glyph-name="arrow-alt-to-bottom"
+      unicode="&#xF34A;"
+      horiz-adv-x="384" d=" M360 -32H24C10.7 -32 0 -21.3 0 -8V16C0 29.3 10.7 40 24 40H360C373.3 40 384 29.3 384 16V-8C384 -21.3 373.3 -32 360 -32zM128 392V256H40.3C22.5 256 13.6 234.5 26.2 221.9L178.4 69.7000000000001C185.9 62.2000000000001 198.2 62.2000000000001 205.7 69.7000000000001L357.9 221.9C370.5 234.5000000000001 361.6 256 343.8 256H256V392C256 405.3 245.3 416 232 416H152C138.7 416 128 405.3 128 392z" />
+    <glyph glyph-name="arrow-alt-to-left"
+      unicode="&#xF34B;"
+      horiz-adv-x="448" d=" M0 24V360C0 373.3 10.7 384 24 384H48C61.3 384 72 373.3 72 360V24C72 10.7 61.3 0 48 0H24C10.7 0 0 10.7 0 24zM424 256H288V343.7C288 361.5 266.5 370.4 253.9 357.8L101.7 205.7C94.2 198.2 94.2 185.9 101.7 178.4L253.9 26.2C266.5 13.6 288 22.5 288 40.3V128H424C437.3 128 448 138.7 448 152V232C448 245.3 437.3 256 424 256z" />
+    <glyph glyph-name="arrow-alt-to-right"
+      unicode="&#xF34C;"
+      horiz-adv-x="448" d=" M448 360V24C448 10.7 437.3 0 424 0H400C386.7 0 376 10.7 376 24V360C376 373.3 386.7 384 400 384H424C437.3 384 448 373.3 448 360zM24 128H160V40.3C160 22.5 181.5 13.6 194.1 26.2L346.3 178.4C353.8 185.9 353.8 198.2 346.3 205.7L194.1 357.9C181.5 370.5 160 361.6 160 343.8V256H24C10.7 256 0 245.3 0 232V152C0 138.7 10.7 128 24 128z" />
+    <glyph glyph-name="arrow-alt-to-top"
+      unicode="&#xF34D;"
+      horiz-adv-x="384" d=" M24 416H360C373.3 416 384 405.3 384 392V368C384 354.7 373.3 344 360 344H24C10.7 344 0 354.7 0 368V392C0 405.3 10.7 416 24 416zM256 -8V128H343.7C361.5 128 370.4 149.5 357.8 162.1L205.7 314.3C198.2 321.8 185.9 321.8 178.4 314.3L26.1 162.1C13.5 149.5 22.5 128 40.3 128H128V-8C128 -21.3 138.7 -32 152 -32H232C245.3 -32 256 -21.3 256 -8z" />
+    <glyph glyph-name="arrow-alt-up"
+      unicode="&#xF357;"
+      horiz-adv-x="448" d=" M272 -32H176C162.7 -32 152 -21.3 152 -8V192H48.2C26.8 192 16.1 217.8 31.2 233L207 409C216.4 418.4 231.6 418.4 241 409L416.8 233C431.9000000000001 217.9 421.2 192 399.8 192H296V-8C296 -21.3 285.3 -32 272 -32z" />
+    <glyph glyph-name="arrow-circle-down"
+      unicode="&#xF0AB;"
+      horiz-adv-x="512" d=" M504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM360.4 220.9L288 145.4V328C288 341.3 277.3 352 264 352H248C234.7 352 224 341.3 224 328V145.4L151.6 220.9C142.3 230.6 126.8 230.8 117.3 221.3L106.4 210.3C97 200.9 97 185.7 106.4 176.4L239 43.7C248.4 34.3 263.6 34.3 272.9 43.7L405.6 176.4C415 185.8 415 201 405.6 210.3L394.7 221.3C385.2 230.8 369.7 230.6 360.4 220.9z" />
+    <glyph glyph-name="arrow-circle-left"
+      unicode="&#xF0A8;"
+      horiz-adv-x="512" d=" M256 -56C119 -56 8 55 8 192S119 440 256 440S504 329 504 192S393 -56 256 -56zM284.9 87.6L209.4 160H392C405.3 160 416 170.7 416 184V200C416 213.3 405.3 224 392 224H209.4L284.9 296.4C294.6 305.7000000000001 294.8 321.2 285.3 330.7L274.3 341.6C264.9 351 249.7 351 240.4 341.6L107.7 209C98.3 199.6 98.3 184.4 107.7 175.1L240.4 42.4C249.8 33.0000000000001 265 33.0000000000001 274.3 42.4L285.3 53.3C294.8 62.8 294.6 78.3 284.9 87.6z" />
+    <glyph glyph-name="arrow-circle-right"
+      unicode="&#xF0A9;"
+      horiz-adv-x="512" d=" M256 440C393 440 504 329 504 192S393 -56 256 -56S8 55 8 192S119 440 256 440zM227.1 296.4L302.6 224H120C106.7 224 96 213.3 96 200V184C96 170.7 106.7 160 120 160H302.6L227.1 87.6C217.4 78.3 217.2 62.8 226.7 53.3L237.7 42.4C247.1 33.0000000000001 262.3 33.0000000000001 271.6 42.4L404.3 175C413.7 184.4 413.7 199.6 404.3 208.9L271.6 341.7C262.2000000000001 351.1 247.0000000000001 351.1 237.7 341.7L226.7 330.8C217.2 321.2 217.4 305.7 227.1 296.4z" />
+    <glyph glyph-name="arrow-circle-up"
+      unicode="&#xF0AA;"
+      horiz-adv-x="512" d=" M8 192C8 329 119 440 256 440S504 329 504 192S393 -56 256 -56S8 55 8 192zM151.6 163.1L224 238.6V56C224 42.7 234.7 32 248 32H264C277.3 32 288 42.7 288 56V238.6L360.4 163.1C369.7 153.4 385.2 153.2000000000001 394.7 162.7000000000001L405.6 173.7000000000001C415 183.1 415 198.3000000000001 405.6 207.6000000000001L273 340.3C263.6 349.7 248.4 349.7 239.1 340.3L106.3 207.6C96.9 198.2 96.9 183 106.3 173.7L117.2 162.7C126.8 153.2 142.3 153.4 151.6 163.1z" />
+    <glyph glyph-name="arrow-down"
+      unicode="&#xF063;"
+      horiz-adv-x="448" d=" M413.1 225.5L435.3 203.3C444.7 193.9 444.7 178.7 435.3 169.4L241 -25C231.6 -34.4 216.4 -34.4 207.1 -25L12.7 169.4C3.3 178.8 3.3 194 12.7 203.3L34.9 225.5C44.4 235 59.9 234.8 69.2 225.1L184 104.6V392C184 405.3 194.7 416 208 416H240C253.3 416 264 405.3 264 392V104.6L378.8 225.1C388.1 234.9000000000001 403.6 235.1 413.1 225.5000000000001z" />
+    <glyph glyph-name="arrow-from-bottom"
+      unicode="&#xF342;"
+      horiz-adv-x="384" d=" M360 -32H24C10.7 -32 0 -21.3 0 -8V16C0 29.3 10.7 40 24 40H360C373.3 40 384 29.3 384 16V-8C384 -21.3 373.3 -32 360 -32zM90.4 231.5L156 297.1V88C156 74.7 166.7 64 180 64H204C217.3 64 228 74.7 228 88V297.1L293.6 231.5C303 222.1 318.2000000000001 222.1 327.5 231.5L344.5 248.5C353.9 257.9 353.9 273.1 344.5 282.4L209 417.9C199.6 427.3 184.4 427.3 175.1 417.9L39.5 282.4C30.1 273 30.1 257.8 39.5 248.5L56.5 231.5C65.9 222.1 81.1 222.1 90.4 231.5z" />
+    <glyph glyph-name="arrow-from-left"
+      unicode="&#xF343;"
+      horiz-adv-x="448" d=" M0 24V360C0 373.3 10.7 384 24 384H48C61.3 384 72 373.3 72 360V24C72 10.7 61.3 0 48 0H24C10.7 0 0 10.7 0 24zM254.5 293.6L320.1 228.0000000000001H120C106.7 228.0000000000001 96 217.3000000000001 96 204V180C96 166.7 106.7 156 120 156H320.1L254.5000000000001 90.4C245.1 81 245.1 65.8 254.5000000000001 56.5L271.5 39.5C280.9 30.1 296.1 30.1 305.4 39.5L441 175C450.4 184.4 450.4 199.6 441 208.9L305.5 344.5C296.1 353.9 280.9 353.9 271.6 344.5L254.6 327.5C245.2 318.1 245.2 302.9 254.5000000000001 293.6z" />
+    <glyph glyph-name="arrow-from-right"
+      unicode="&#xF344;"
+      horiz-adv-x="448" d=" M448 360V24C448 10.7 437.3 0 424 0H400C386.7 0 376 10.7 376 24V360C376 373.3 386.7 384 400 384H424C437.3 384 448 373.3 448 360zM193.5 90.4L127.9 156H328C341.3 156 352 166.7 352 180V204C352 217.3 341.3 228 328 228H127.9L193.5 293.6C202.9 303 202.9 318.2 193.5 327.5L176.5 344.5C167.1 353.9 151.9 353.9 142.6 344.5L7 209C-2.4 199.6 -2.4 184.4 7 175.1L142.5 39.6C151.9 30.2 167.1 30.2 176.4 39.6L193.4 56.6C202.8 65.9 202.8 81.1 193.5 90.4z" />
+    <glyph glyph-name="arrow-from-top"
+      unicode="&#xF345;"
+      horiz-adv-x="384" d=" M24 416H360C373.3 416 384 405.3 384 392V368C384 354.7 373.3 344 360 344H24C10.7 344 0 354.7 0 368V392C0 405.3 10.7 416 24 416zM293.6 152.5L228 86.9V296C228 309.3 217.3 320 204 320H180C166.7 320 156 309.3 156 296V86.9L90.4 152.5C81 161.9 65.8 161.9 56.5 152.5L39.5 135.5C30.1 126.1 30.1 110.9 39.5 101.6L175 -33.9C184.4 -43.3 199.6 -43.3 208.9 -33.9L344.4 101.6C353.8 111 353.8 126.2000000000001 344.4 135.5L327.4 152.5C318.1 161.9 302.9 161.9 293.6 152.5z" />
+    <glyph glyph-name="arrow-left"
+      unicode="&#xF060;"
+      horiz-adv-x="448" d=" M257.5 2.9L235.3 -19.3C225.9 -28.7 210.7 -28.7 201.4 -19.3L7 175C-2.4 184.4 -2.4 199.6 7 208.9L201.4 403.3C210.8 412.7 226 412.7 235.3 403.3L257.5 381.1C267 371.6 266.8 356.1 257.1 346.8L136.6 232H424C437.3 232 448 221.3 448 208V176C448 162.7 437.3 152 424 152H136.6L257.1 37.2C266.9000000000001 27.9 267.1 12.4 257.5 2.9z" />
+    <glyph glyph-name="arrow-right"
+      unicode="&#xF061;"
+      horiz-adv-x="448" d=" M190.5 381.1L212.7 403.3C222.1 412.7 237.3 412.7 246.6 403.3L441 209C450.4 199.6 450.4 184.4 441 175.1L246.6 -19.3C237.2 -28.7 222 -28.7 212.7 -19.3L190.5 2.9C181 12.4 181.2 27.9 190.9 37.2L311.4 152H24C10.7 152 0 162.7 0 176V208C0 221.3 10.7 232 24 232H311.4L190.9 346.8C181.1 356.1 180.9 371.6 190.5 381.1z" />
+    <glyph glyph-name="arrow-square-down"
+      unicode="&#xF339;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM328.4 220.9L256 145.4V328C256 341.3 245.3 352 232 352H216C202.7 352 192 341.3 192 328V145.4L119.6 220.9C110.3 230.6 94.8 230.8 85.3 221.3L74.4 210.3C65 200.9 65 185.7 74.4 176.4L207 43.7C216.4 34.3 231.6 34.3 240.9 43.7L373.6 176.4C383 185.8 383 201 373.6 210.3L362.7000000000001 221.3C353.2000000000001 230.8 337.7000000000001 230.6 328.4000000000001 220.9z" />
+    <glyph glyph-name="arrow-square-left"
+      unicode="&#xF33A;"
+      horiz-adv-x="448" d=" M400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32zM252.9 87.6L177.4 160H360C373.3 160 384 170.7 384 184V200C384 213.3 373.3 224 360 224H177.4L252.9 296.4C262.6 305.7000000000001 262.8 321.2 253.3 330.7L242.3 341.6C232.9 351 217.7 351 208.4 341.6L75.7 209C66.3 199.6 66.3 184.4 75.7 175.1L208.4 42.4C217.8 33.0000000000001 233 33.0000000000001 242.3 42.4L253.3 53.3C262.8 62.8 262.6 78.3 252.9 87.6z" />
+    <glyph glyph-name="arrow-square-right"
+      unicode="&#xF33B;"
+      horiz-adv-x="448" d=" M48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416zM195.1 296.4L270.6 224H88C74.7 224 64 213.3 64 200V184C64 170.7 74.7 160 88 160H270.6L195.1 87.6C185.4 78.3 185.2 62.8 194.7 53.3L205.7 42.4C215.1 33.0000000000001 230.3 33.0000000000001 239.6 42.4L372.3 175C381.7 184.4 381.7 199.6 372.3 208.9L239.6 341.7C230.2 351.1 215 351.1 205.7 341.7L194.7 330.8C185.2 321.2 185.4 305.7 195.1 296.4z" />
+    <glyph glyph-name="arrow-square-up"
+      unicode="&#xF33C;"
+      horiz-adv-x="448" d=" M0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16zM119.6 163.1L192 238.6V56C192 42.7 202.7 32 216 32H232C245.3 32 256 42.7 256 56V238.6L328.4 163.1C337.7 153.4 353.2 153.2000000000001 362.7 162.7000000000001L373.6 173.7000000000001C383 183.1 383 198.3000000000001 373.6 207.6000000000001L241 340.3C231.6 349.7 216.4 349.7 207.1 340.3L74.3 207.6C64.9 198.2 64.9 183 74.3 173.7L85.2 162.7C94.8 153.2 110.3 153.4 119.6 163.1z" />
+    <glyph glyph-name="arrow-to-bottom"
+      unicode="&#xF33D;"
+      horiz-adv-x="384" d=" M360 -32H24C10.7 -32 0 -21.3 0 -8V16C0 29.3 10.7 40 24 40H360C373.3 40 384 29.3 384 16V-8C384 -21.3 373.3 -32 360 -32zM293.6 248.5L228 182.9V392C228 405.3 217.3 416 204 416H180C166.7 416 156 405.3 156 392V182.9L90.4 248.5C81 257.9 65.8 257.9 56.5 248.5L39.5 231.5C30.1 222.1 30.1 206.9 39.5 197.6L175 62.1C184.4 52.7 199.6 52.7 208.9 62.1L344.4 197.6C353.8 207 353.8 222.2 344.4 231.5000000000001L327.4 248.5000000000001C318.1 257.9000000000001 302.9 257.9000000000001 293.6 248.5000000000001z" />
+    <glyph glyph-name="arrow-to-left"
+      unicode="&#xF33E;"
+      horiz-adv-x="448" d=" M0 24V360C0 373.3 10.7 384 24 384H48C61.3 384 72 373.3 72 360V24C72 10.7 61.3 0 48 0H24C10.7 0 0 10.7 0 24zM280.5 90.4L214.9 156H424C437.3 156 448 166.7 448 180V204C448 217.3 437.3 228 424 228H214.9L280.5 293.6C289.9 303 289.9 318.2 280.5 327.5L263.5 344.5C254.1 353.9 238.9 353.9 229.6 344.5L94.1 209C84.7 199.6 84.7 184.4 94.1 175.1L229.6 39.6C239 30.2 254.2 30.2 263.5 39.6L280.5 56.6C289.9 65.9 289.9 81.1 280.5 90.4z" />
+    <glyph glyph-name="arrow-to-right"
+      unicode="&#xF340;"
+      horiz-adv-x="448" d=" M448 360V24C448 10.7 437.3 0 424 0H400C386.7 0 376 10.7 376 24V360C376 373.3 386.7 384 400 384H424C437.3 384 448 373.3 448 360zM167.5 293.6L233.1 228H24C10.7 228 0 217.3 0 204V180C0 166.7 10.7 156 24 156H233.1L167.5 90.4C158.1 81 158.1 65.8 167.5 56.5L184.5 39.5C193.9 30.1 209.1 30.1 218.4 39.5L353.9 175C363.3 184.4 363.3 199.6 353.9 208.9L218.4 344.5C209 353.9 193.8 353.9 184.5 344.5L167.5 327.5C158.1 318.1 158.1 302.9 167.5 293.6z" />
+    <glyph glyph-name="arrow-to-top"
+      unicode="&#xF341;"
+      horiz-adv-x="384" d=" M24 416H360C373.3 416 384 405.3 384 392V368C384 354.7 373.3 344 360 344H24C10.7 344 0 354.7 0 368V392C0 405.3 10.7 416 24 416zM90.4 135.5L156 201.1V-8C156 -21.3 166.7 -32 180 -32H204C217.3 -32 228 -21.3 228 -8V201.1L293.6 135.5C303 126.1 318.2000000000001 126.1 327.5 135.5L344.5 152.5C353.9 161.9 353.9 177.1 344.5 186.4L209 321.9C199.6 331.3 184.4 331.3 175.1 321.9L39.5 186.4C30.1 177 30.1 161.8 39.5 152.5L56.5 135.5C65.9 126.1 81.1 126.1 90.4 135.5z" />
+    <glyph glyph-name="arrow-up"
+      unicode="&#xF062;"
+      horiz-adv-x="448" d=" M34.9 158.5L12.7 180.7C3.3 190.1 3.3 205.3 12.7 214.6L207 409C216.4 418.4 231.6 418.4 240.9 409L435.2000000000001 214.7C444.6 205.3 444.6 190.1 435.2000000000001 180.8L413 158.6C403.5 149.1 388 149.3 378.7 159L264 279.4V-8C264 -21.3 253.3 -32 240 -32H208C194.7 -32 184 -21.3 184 -8V279.4L69.2 158.9C59.9 149.1 44.4 148.9 34.9 158.5z" />
+    <glyph glyph-name="arrows-alt-h"
+      unicode="&#xF337;"
+      horiz-adv-x="512" d=" M377.941 278.059V232H134.059V278.059C134.059 299.4410000000001 108.208 310.149 93.088 295.03L7.029 208.971C-2.344 199.598 -2.344 184.403 7.029 175.03L93.088 88.971C108.207 73.852 134.059 84.56 134.059 105.942V152H377.9410000000001V105.941C377.9410000000001 84.559 403.7920000000001 73.851 418.9120000000001 88.97L504.971 175.029C514.344 184.402 514.344 199.597 504.971 208.97L418.9120000000001 295.029C403.793 310.149 377.9410000000001 299.4410000000001 377.9410000000001 278.059z" />
+    <glyph glyph-name="arrows-alt-v"
+      unicode="&#xF338;"
+      horiz-adv-x="256" d=" M214.059 70.059H168V313.9410000000001H214.059C235.441 313.9410000000001 246.149 339.7920000000001 231.03 354.9120000000001L144.971 440.971C135.598 450.344 120.403 450.344 111.03 440.971L24.971 354.9120000000001C9.852 339.793 20.56 313.9410000000001 41.942 313.9410000000001H88V70.059H41.941C20.559 70.059 9.851 44.208 24.97 29.088L111.029 -56.971C120.402 -66.344 135.597 -66.344 144.97 -56.971L231.029 29.088C246.149 44.207 235.441 70.059 214.059 70.059z" />
+    <glyph glyph-name="arrows-alt"
+      unicode="&#xF0B2;"
+      horiz-adv-x="512" d=" M352.201 22.225L273.005 -56.971C263.632 -66.344 248.437 -66.344 239.064 -56.971L159.868 22.225C144.749 37.3440000000001 155.457 63.196 176.839 63.1950000000001H228.001L228 164H127.196V112.838C127.196 91.456 101.345 80.7480000000001 86.225 95.867L7.029 175.063C-2.344 184.436 -2.344 199.632 7.029 209.004L86.225 288.2C101.344 303.319 127.196 292.611 127.196 271.229V220H228V320.804H176.77C155.388 320.804 144.68 346.655 159.799 361.775L238.995 440.971C248.368 450.344 263.563 450.344 272.9360000000001 440.971L352.1320000000001 361.775C367.2510000000001 346.656 356.5430000000001 320.804 335.1610000000001 320.804H283.9990000000001V220H384.8030000000001V271.1620000000001C384.8030000000001 292.544 410.6540000000001 303.252 425.7730000000002 288.1330000000001L504.9690000000002 208.937C514.3420000000002 199.564 514.3420000000002 184.368 504.9690000000002 174.996L425.773 95.8C410.654 80.681 384.802 91.389 384.803 112.771V164H284V63.196H335.23C356.612 63.196 367.3200000000001 37.345 352.201 22.225z" />
+    <glyph glyph-name="arrows-h"
+      unicode="&#xF07E;"
+      horiz-adv-x="512" d=" M105.815 160H406.186L359.978 116.272C350.163 106.983 349.948 91.426 359.504 81.87L370.344 71.03C379.717 61.657 394.913 61.657 404.285 71.03L502.628 169.3730000000001C515.125 181.8700000000001 515.125 202.1310000000001 502.628 214.6280000000001L404.285 312.9710000000001C394.912 322.3440000000001 379.716 322.3440000000001 370.344 312.9710000000001L359.504 302.1310000000001C349.948 292.5750000000001 350.163 277.0180000000001 359.978 267.7290000000001L406.186 224H105.815L152.023 267.728C161.838 277.017 162.053 292.574 152.497 302.13L141.657 312.9700000000001C132.284 322.343 117.088 322.343 107.716 312.9700000000001L9.373 214.628C-3.124 202.131 -3.124 181.87 9.373 169.373L107.716 71.03C117.089 61.657 132.285 61.657 141.657 71.03L152.497 81.87C162.053 91.4259999999999 161.838 106.983 152.023 116.2719999999999L105.815 160z" />
+    <glyph glyph-name="arrows-v"
+      unicode="&#xF07D;"
+      horiz-adv-x="256" d=" M160 41.814V342.185L203.728 295.977C213.017 286.1620000000001 228.574 285.947 238.13 295.5030000000001L248.97 306.343C258.343 315.716 258.343 330.9120000000001 248.97 340.284L150.627 438.627C138.13 451.124 117.869 451.124 105.372 438.627L7.029 340.285C-2.344 330.912 -2.344 315.716 7.029 306.344L17.869 295.504C27.425 285.948 42.982 286.163 52.271 295.978L96 342.185V41.814L52.272 88.0220000000001C42.983 97.8370000000001 27.426 98.052 17.87 88.496L7.03 77.6560000000001C-2.343 68.2830000000001 -2.343 53.087 7.03 43.715L105.373 -54.628C117.87 -67.125 138.131 -67.125 150.628 -54.628L248.971 43.715C258.344 53.088 258.344 68.2840000000001 248.971 77.6560000000001L238.131 88.496C228.575 98.052 213.018 97.8370000000001 203.729 88.0220000000001L160 41.814z" />
+    <glyph glyph-name="arrows"
+      unicode="&#xF047;"
+      horiz-adv-x="512" d=" M352.634 19.379L278.627 -54.628C266.13 -67.125 245.869 -67.125 233.372 -54.628L159.365 19.379C149.992 28.752 149.992 43.948 159.365 53.3200000000001L170.205 64.16C179.761 73.716 195.318 73.501 204.607 63.686L228 37.635V164H101.635L127.686 140.608C137.501 131.319 137.716 115.762 128.16 106.206L117.32 95.366C107.947 85.9930000000001 92.751 85.9930000000001 83.379 95.366L9.373 169.373C-3.124 181.87 -3.124 202.131 9.373 214.628L83.38 288.635C92.753 298.008 107.949 298.008 117.321 288.635L128.161 277.795C137.717 268.239 137.502 252.681 127.687 243.393L101.635 220H228V346.365L204.608 320.314C195.319 310.499 179.762 310.284 170.206 319.8400000000001L159.366 330.68C149.993 340.053 149.993 355.249 159.366 364.621L233.373 438.6280000000001C245.87 451.125 266.1310000000001 451.125 278.6280000000001 438.6280000000001L352.6350000000001 364.621C362.0080000000001 355.248 362.0080000000001 340.052 352.6350000000001 330.68L341.7950000000001 319.8400000000001C332.2390000000001 310.284 316.6820000000001 310.499 307.3930000000001 320.314L284 346.365V220H410.365L384.314 243.392C374.499 252.681 374.2840000000001 268.238 383.8400000000001 277.794L394.68 288.634C404.053 298.007 419.249 298.007 428.621 288.634L502.628 214.627C515.125 202.13 515.125 181.869 502.628 169.372L428.621 95.365C419.248 85.992 404.052 85.992 394.68 95.365L383.84 106.2049999999999C374.284 115.7609999999999 374.499 131.3179999999999 384.314 140.6069999999999L410.365 164H284V37.635L307.392 63.686C316.681 73.501 332.238 73.716 341.794 64.16L352.634 53.32C362.007 43.948 362.007 28.752 352.634 19.379z" />
+    <glyph glyph-name="assistive-listening-systems"
+      unicode="&#xF2A2;"
+      horiz-adv-x="512" d=" M216 188C216 172.536 203.464 160 188 160S160 172.536 160 188C160 232.112 195.888 268 240 268S320 232.112 320 188C320 172.536 307.464 160 292 160S264 172.536 264 188C264 201.234 253.233 212 240 212S216 201.234 216 188zM240 364C142.953 364 64 285.0470000000001 64 188C64 172.536 76.536 160 92 160S120 172.536 120 188C120 254.168 173.832 308 240 308S360 254.168 360 188C360 112.836 288.991 117.689 288.003 44.378L288 44C288 15.327 264.673 -8 236 -8C220.536 -8 208 -20.536 208 -36S220.536 -64 236 -64C295.475 -64 343.876 -15.672 344 43.774C344.5950000000001 78.202 416 92.014 416 188C416 285.0470000000001 337.0470000000001 364 240 364zM160 128C142.327 128 128 113.673 128 96S142.327 64 160 64S192 78.327 192 96S177.673 128 160 128zM32 0C14.327 0 0 -14.327 0 -32S14.327 -64 32 -64S64 -49.673 64 -32S49.673 0 32 0zM512 187.993C512 189.511 511.988 191.018 511.955 192.524C510.076 307.475 436.157 409.53 327.9940000000001 446.489C313.3610000000001 451.487 297.4450000000001 443.68 292.444 429.0470000000001C287.444 414.414 295.254 398.498 309.886 393.497C395.7920000000001 364.1430000000001 454.496 282.984 455.963 191.544L455.966 191.356C455.992 190.238 455.999 189.12 455.999 187.993C455.999 172.529 468.535 159.993 483.999 159.993S512 172.529 512 187.993zM152.971 8.971L72.971 88.971L39.03 55.03L119.03 -24.97L152.971 8.971z" />
+    <glyph glyph-name="asterisk"
+      unicode="&#xF069;"
+      horiz-adv-x="512" d=" M478.21 113.907L336 192L478.21 270.093C490.0050000000001 276.5700000000001 494.171 291.4770000000001 487.442 303.13L467.962 336.8710000000001C461.234 348.524 446.242 352.37 434.735 345.394L296 261.2820000000001L299.475 423.486C299.763 436.939 288.937 448 275.48 448H236.52C223.064 448 212.237 436.939 212.526 423.486L216 261.2820000000001L77.265 345.3930000000001C65.759 352.3690000000001 50.766 348.523 44.038 336.87L24.558 303.129C17.83 291.476 21.996 276.569 33.791 270.092L176 192L33.79 113.907C21.995 107.43 17.829 92.523 24.558 80.87L44.038 47.129C50.766 35.476 65.759 31.63 77.265 38.606L216 122.718L212.525 -39.486C212.237 -52.939 223.064 -64 236.52 -64H275.481C288.937 -64 299.764 -52.939 299.476 -39.486L296 122.718L434.735 38.607C446.241 31.631 461.234 35.477 467.962 47.1300000000001L487.442 80.871C494.17 92.5240000000001 490.005 107.4300000000001 478.21 113.9070000000001z" />
+    <glyph glyph-name="at"
+      unicode="&#xF1FA;"
+      horiz-adv-x="512" d=" M256 440C118.941 440 8 329.081 8 192C8 54.941 118.919 -56 256 -56C304.154 -56 351.342 -41.86 391.408 -15.777C403.413 -7.962 406.033 8.511 396.9600000000001 19.595L386.783 32.028C379.112 41.399 365.6040000000001 43.695 355.4100000000001 37.157C325.92 18.243 291.314 8 256 8C154.542 8 72 90.542 72 192S154.542 376 256 376C356.139 376 440 318.381 440 216C440 177.214 418.907 136.258 381.83 132.307C364.481 132.761 364.92 145.164 368.354 162.331L391.787 283.4410000000001C394.653 298.25 383.308 312 368.225 312H323.2440000000001A13.518 13.518 0 0 1 309.812 300.007L309.802 299.915C295.105 317.8160000000001 269.3540000000001 321.69 249.831 321.69C175.251 321.69 112 259.456 112 170.23C112 104.927 148.785 64.36 208 64.36C234.9840000000001 64.36 265.3690000000001 79.997 282.9910000000001 102.693C292.5130000000001 68.589 323.6040000000001 68.59 353.701 68.59C462.609 68.59 504 140.202 504 216C504 352.347 394.023 440 256 440zM234.32 135.57C212.071 135.57 198.25 151.193 198.25 176.341C198.25 221.334 229.029 249.07 256.88 249.07C279.1720000000001 249.07 292.481 233.829 292.481 208.3C292.481 163.239 258.606 135.57 234.32 135.57z" />
+    <glyph glyph-name="atlas"
+      unicode="&#xF558;"
+      horiz-adv-x="448" d=" M318.38 240H279.29C277.8 212.97 272.75 188.65 265.08 169.59C292.79 182.8300000000001 313.1 208.78 318.38 240.0000000000001zM318.38 272C313.09 303.2200000000001 292.79 329.17 265.08 342.41C272.76 323.35 277.8 299.03 279.29 272H318.38zM224 350.69C216.31 343.24 203.23 316.27 200.57 272H247.44C244.77 316.26 231.69 343.24 224 350.69zM182.92 342.41C155.21 329.17 134.9 303.2200000000001 129.62 272H168.71C170.2 299.03 175.24 323.35 182.92 342.41zM182.92 169.59C175.24 188.65 170.2 212.97 168.71 240.0000000000001H129.62C134.9 208.78 155.21 182.8300000000001 182.92 169.59zM247.43 240H200.56C203.22 195.74 216.3 168.76 223.99 161.31C231.69 168.76 244.77 195.74 247.43 240zM448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM224 384C294.69 384 352 326.69 352 256S294.69 128 224 128S96 185.31 96 256S153.31 384 224 384zM384 0H96C76.8 0 64 12.8 64 32S80 64 96 64H384V0z" />
+    <glyph glyph-name="atom-alt"
+      unicode="&#xF5D3;"
+      horiz-adv-x="448" d=" M423.13 391.13C379.1 435.14 300.3 416.38 223.98 368.88C147.66 416.35 68.88 435.06 24.87 391.13C-19.13 347.12 -0.38 268.3300000000001 47.12 192C-0.38 115.67 -19.12 36.87 24.87 -7.13C66.15 -48.41 140.42 -36.54 224 15.49C307.24 -36.32 381.68 -48.55 423.13 -7.13C467.13 36.88 448.38 115.67 400.88 192C448.39 268.33 467.13 347.13 423.13 391.13zM70.13 345.87C74.43 350.15 81.71 352.36 91.37 352.36C109.59 352.36 136.38 344.32 167.37 327.9600000000001C124.67 292.81 99.05 261.99 88.21 248.83C63.36 296.06 57.78 333.5 70.13 345.87zM70.13 38.13C57.78 50.49 63.35 87.94 88.21 135.17C117.03 100.2000000000001 141.31 77.79 167.39 56.31C120.04 31.35 82.51 25.74 70.13 38.13zM224 93.07C179.18 127.21 150.99 157.97 125.08 191.99C142.18 214.44 173.1 252.6 224.01 291.4100000000001C274.91 252.61 305.87 214.3900000000001 322.93 191.99C288.79 147.18 258.06 119.02 224 93.07zM377.87 38.13C365.4700000000001 25.79 327.95 31.38 280.62 56.32C306.6 77.71 330.88 100.08 359.79 135.17C384.6400000000001 87.9399999999999 390.2200000000001 50.49 377.87 38.1299999999999zM359.79 248.83C348.99 261.95 323.2100000000001 292.9 280.63 327.95C311.63 344.31 338.42 352.35 356.63 352.35C366.29 352.35 373.57 350.16 377.87 345.86C390.2200000000001 333.5 384.64 296.06 359.79 248.83zM224 224.01C206.32 224.01 191.99 209.68 191.99 192S206.32 159.99 224 159.99S256.01 174.32 256.01 192S241.68 224.01 224 224.01z" />
+    <glyph glyph-name="atom"
+      unicode="&#xF5D2;"
+      horiz-adv-x="448" d=" M413.03 192C453.16 246.89 454.54 290.62 438.17 320C427.26 339.52 397.63 370.73 321.84 361.88C300.36 413.11 267.64 448 224 448S147.64 413.11 126.16 361.88C50.43 370.66 20.73 339.52 9.83 320C-6.55 290.6 -5.17 246.91 34.97 192C-5.16 137.11 -6.54 93.38 9.83 64C39.04 11.66 111.51 20.42 126.16 22.12C147.63 -29.1 180.36 -64 224 -64S300.37 -29.1 321.8400000000001 22.12C336.48 20.42 408.9500000000001 11.66 438.17 64C454.55 93.4 453.17 137.09 413.0300000000001 192zM63.38 96C59.35 103.21 63.19 120.8 78.33 144.29C85.29 137.7600000000001 92.53 131.4 100.2 125.11C101.91 111.4 104.2 98.03 106.96 85.03C82.4 84.14 67.07 89.4 63.38 96.0000000000001zM100.2 258.88C92.54 252.59 85.3 246.23 78.33 239.7C63.2 263.2 59.36 280.79 63.38 288C66.79 294.14 79.77 299.4700000000001 101.3 299.4700000000001C103.01 299.4700000000001 105.17 299.17 106.99 299.1A472.19100000000003 472.19100000000003 0 0 1 100.2 258.88zM224 384C233.47 384 246.2 370.48 257.86 346.74C246.67 343.04 235.42 338.74 224 333.88C212.58 338.74 201.33 343.04 190.14 346.74C201.8 370.48 214.53 384 224 384zM224 0C214.53 0 201.8 13.52 190.14 37.26C201.33 40.96 212.58 45.26 224 50.12C235.42 45.26 246.67 40.96 257.86 37.26C246.2 13.52 233.47 0 224 0zM286.5 157.3300000000001C259.8 138.2500000000001 240.36 128.0000000000001 224 119.85C207.65 127.99 188.2 138.2600000000001 161.5 157.3300000000001C159.51 185.1200000000001 159.51 198.87 161.5 226.6600000000001C188.17 245.7100000000001 207.63 255.98 224 264.14C240.39 255.9700000000001 259.86 245.7 286.5 226.6600000000001C288.48 198.88 288.49 185.13 286.5 157.3300000000001zM384.62 96C380.95 89.38 365.62 84.18 341.04 85.05C343.8 98.05 346.0900000000001 111.42 347.8 125.11C355.4600000000001 131.4 362.7 137.76 369.67 144.29C384.8 120.8 388.64 103.21 384.62 96zM369.67 239.71C362.7100000000001 246.24 355.4700000000001 252.6 347.8 258.89A473.535 473.535 0 0 1 341.01 299.11C342.83 299.18 344.98 299.48 346.7 299.48C368.22 299.48 381.21 294.14 384.62 288.01C388.64 280.79 384.8 263.2000000000001 369.67 239.7100000000001zM224 224C206.33 224 192 209.67 192 192S206.33 160 224 160S256 174.33 256 192S241.67 224 224 224z" />
+    <glyph glyph-name="audio-description"
+      unicode="&#xF29E;"
+      horiz-adv-x="512" d=" M162.925 209.291L171.747 178.636H146.141L155.182 209.288C156.459 213.709 157.833 219.282 159.054 224.533C160.274 219.282 161.648 213.71 162.9250000000001 209.291zM329.399 241.39H314.876V142.609H329.399C359.175 142.609 375.574 160.287 375.574 192.385C375.574 224.624 358.084 241.39 329.399 241.39zM512 336V48C512 21.49 490.51 0 464 0H48C21.49 0 0 21.49 0 48V336C0 362.51 21.49 384 48 384H464C490.51 384 512 362.51 512 336zM245.459 111.861L188.362 279.861A12.001000000000001 12.001000000000001 0 0 1 177 288H141.106A12.001000000000001 12.001000000000001 0 0 1 129.744 279.861L72.647 111.861C70.003 104.078 75.789 96 84.009 96H113.142A12 12 0 0 1 124.677 104.693L133.251 134.599H184.618L193.411 104.622A12 12 0 0 1 204.926 96H234.098C242.318 96 248.104 104.078 245.459 111.861zM430.16 192.386C430.16 251.363 392.241 288 331.2 288H273.834C267.207 288 261.834 282.627 261.834 276V108C261.834 101.373 267.207 96 273.834 96H331.2C392.241 96 430.16 132.933 430.16 192.386z" />
+    <glyph glyph-name="award"
+      unicode="&#xF559;"
+      horiz-adv-x="384" d=" M97.12 85.37C88.43 94.06 92.96 91.61 72 97.22C62.49 99.77 54.13 104.67 46.57 110.54L1.2 -0.7C-3.19 -11.47 5.01 -23.17 16.63 -22.73L69.32 -20.72L105.56 -59C113.56 -67.44 127.6 -64.8099999999999 131.99 -54.04L184.04 73.58C173.2 67.54 161.17 64 148.73 64C129.23 64 110.91 71.59 97.12 85.37zM382.8 -0.7L337.43 110.54C329.87 104.66 321.51 99.77 312 97.22C290.93 91.58 295.55 94.04 286.88 85.37C273.09 71.59 254.76 64 235.26 64C222.82 64 210.79 67.55 199.95 73.58L252 -54.04C256.39 -64.8100000000001 270.44 -67.44 278.43 -59L314.68 -20.72L367.37 -22.73C378.99 -23.17 387.19 -11.46 382.8 -0.7zM263 108C278.28 123.55 280.03 122.21 301.79 128.14C315.68 131.93 326.54 142.98 330.26 157.12C337.74 185.52 335.8 182.09 356.21 202.87C366.38 213.22 370.35 228.31 366.63 242.45C359.16 270.83 359.15 266.87 366.63 295.28C370.35 309.42 366.38 324.51 356.21 334.86C335.8 355.64 337.74 352.22 330.26 380.61C326.54 394.75 315.68 405.8 301.79 409.59C273.91 417.2 277.27 415.21 256.84 436C246.67 446.35 231.84 450.4 217.95 446.61C190.08 439.01 193.97 439 166.05 446.61C152.16 450.4 137.33 446.36 127.16 436C106.75 415.22 110.11 417.2 82.22 409.59C68.33 405.8 57.47 394.75 53.75 380.61C46.28 352.22 48.21 355.64 27.8 334.86C17.63 324.51 13.65 309.42 17.38 295.28C24.85 266.92 24.86 270.88 17.38 242.46C13.66 228.32 17.63 213.23 27.8 202.87C48.21 182.09 46.27 185.52 53.75 157.12C57.47 142.98 68.33 131.93 82.22 128.14C104.6 122.04 106.27 123 121 108C134.23 94.53 154.84 92.12 170.74 102.18A39.676 39.676 0 0 0 213.27 102.18C229.1600000000001 92.12 249.77 94.53 263 108zM97.66 272.04C97.66 325.07 139.9 368.06 192 368.06S286.3400000000001 325.07 286.3400000000001 272.04S244.1 176.02 192 176.02S97.66 219.01 97.66 272.04z" />
+    <glyph glyph-name="axe-battle"
+      unicode="&#xF6B3;"
+      horiz-adv-x="512" d=" M512 287.0800000000001C505.16 348.8400000000001 478.4 403.71 438.94 443.3C429.73 452.55 415.05 447.42 411.88 434.34C399.85 384.67 364.63 346.07 320 333.11V178.89C364.63 165.93 399.85 127.33 411.88 77.66C415.05 64.58 429.73 59.45 438.94 68.7C478.4 108.29 505.16 163.15 512 224.92L449.24 256L512 287.0800000000001zM101 434.34C97.86 447.42 83.32 452.54 74.2 443.3C28.67 397.17 0 330.38 0 256C0 181.62 28.67 114.8300000000001 74.2 68.7C83.33 59.45 97.86 64.58 101 77.66C112.92 127.33 147.79 165.93 192 178.89V333.11C147.79 346.07 112.92 384.67 101 434.3400000000001zM272 384H240C231.16 384 224 376.8400000000001 224 368V-48C224 -56.84 231.16 -64 240 -64H272C280.84 -64 288 -56.84 288 -48V368C288 376.8400000000001 280.84 384 272 384z" />
+    <glyph glyph-name="axe"
+      unicode="&#xF6B2;"
+      horiz-adv-x="640" d=" M4.69 8.57C-1.56 2.32 -1.56 -7.81 4.69 -14.06L49.95 -59.31C56.2 -65.5599999999999 66.33 -65.5599999999999 72.58 -59.31L308.45 176.56L240.57 244.44L4.69 8.57zM525.74 288L472.81 340.93L507.31 375.43C513.56 381.68 513.56 391.81 507.31 398.06L462.06 443.31C455.81 449.56 445.68 449.56 439.43 443.31L404.93 408.81L375.12 438.63C368.87 444.88 360.68 448 352.49 448S336.11 444.88 329.86 438.63L233.37 342.14C220.87 329.64 220.87 309.38 233.37 296.89L384 146.26V32H416C539.71 32 640 132.29 640 256V288H525.74zM448 99.21V137.15C487.28 153.4 518.6 184.71 534.84 223.99H572.78C560.03 161.4 510.6 111.97 448 99.21z" />
+    <glyph glyph-name="baby-carriage"
+      unicode="&#xF77D;"
+      horiz-adv-x="512" d=" M144.8 431C133.5 448.8 107.6 453.8 90.8 440.4C35.3 396.1 0 330 0 256H256L144.8 431zM496 352H448C412.7 352 384 323.3 384 288V224H0C0 173.4 23 127.6 60.3 93.3C25.7 84.4 0 53.3 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 24.9 158.2 33.2 155.6 41.2C177.2 35.3 200.2 32 224 32S270.9 35.3 292.4 41.2C289.7 33.2 288 24.9 288 16C288 -28.2 323.8 -64 368 -64S448 -28.2 448 16C448 53.3 422.3 84.4 387.7 93.3C425 127.6 448 173.4 448 224V288H496C504.8 288 512 295.2 512 304V336C512 344.8 504.8 352 496 352zM80 -16C62.4 -16 48 -1.6 48 16S62.4 48 80 48S112 33.6 112 16S97.6 -16 80 -16zM400 16C400 -1.6 385.6 -16 368 -16S336 -1.6 336 16S350.4 48 368 48S400 33.6 400 16z" />
+    <glyph glyph-name="baby"
+      unicode="&#xF77C;"
+      horiz-adv-x="384" d=" M192 288C236.2 288 272 323.8 272 368S236.2 448 192 448S112 412.2 112 368S147.8 288 192 288zM138.6 39.2L164.2 71.2L102.7 122.4L56.8 65C45.4 50.8 45.1 30.6 56 16L104 -48C111.9 -58.5 123.9 -64 136 -64C144.3 -64 152.8 -61.4 160 -56C177.7 -42.8 181.2 -17.7 168 0L138.6 39.2zM281.3 122.4L219.8 71.2L245.4 39.2L216 0C202.8 -17.7 206.3 -42.8 224 -56C231.2 -61.4 239.6 -64 248 -64C260.2 -64 272.2 -58.5 280 -48L328 16C338.9 30.6 338.6 50.8 327.2 65L281.3 122.4zM376.7 303C364 321.1 339.1 325.4 321 312.8L280.4 284.3C227.7 247.3 156.2 247.3 103.6 284.3L63 312.7C44.9 325.4 20 321 7.3 303C-5.4 284.9 -1 260 17 247.3L57.6 218.8C74.6 206.9 93 197.9 112 190.9V160H272V190.8C291 197.8 309.4 206.8 326.4 218.7L367 247.2C385.1 260 389.4 284.9000000000001 376.7 303z" />
+    <glyph glyph-name="backpack"
+      unicode="&#xF5D4;"
+      horiz-adv-x="448" d=" M320 128H128C110.33 128 96 113.67 96 96V64H352V96C352 113.67 337.67 128 320 128zM96 -64H352V32H96V-64zM320 368H312V392C312 422.88 286.88 448 256 448H192C161.12 448 136 422.88 136 392V368H128C57.31 368 0 310.69 0 240V0C0 -35.35 28.65 -64 64 -64V96C64 131.29 92.71 160 128 160H320C355.29 160 384 131.29 384 96V-64C419.35 -64 448 -35.35 448 0V240C448 310.69 390.69 368 320 368zM184 392C184 396.41 187.59 400 192 400H256C260.4100000000001 400 264 396.41 264 392V368H184V392zM320 248C320 243.58 316.42 240 312 240H136C131.58 240 128 243.58 128 248V264C128 268.42 131.58 272 136 272H312C316.42 272 320 268.42 320 264V248z" />
+    <glyph glyph-name="backspace"
+      unicode="&#xF55A;"
+      horiz-adv-x="640" d=" M576 384H205.26A63.97 63.97 0 0 1 160 365.25L9.37 214.63C-3.13 202.13 -3.13 181.87 9.37 169.38L160 18.75C172 6.75 188.28 0 205.25 0H576C611.35 0 640 28.65 640 64V320C640 355.35 611.35 384 576 384zM491.31 129.94C497.56 123.69 497.56 113.56 491.31 107.31L468.69 84.69C462.44 78.44 452.31 78.44 446.06 84.69L384 146.75L321.94 84.69C315.69 78.44 305.56 78.44 299.31 84.69L276.69 107.31C270.44 113.56 270.44 123.69 276.69 129.94L338.75 192L276.69 254.06C270.44 260.31 270.44 270.44 276.69 276.69L299.31 299.31C305.56 305.56 315.69 305.56 321.94 299.31L384 237.25L446.06 299.31C452.31 305.56 462.44 305.56 468.69 299.31L491.31 276.69C497.56 270.44 497.56 260.31 491.31 254.06L429.25 192L491.31 129.94z" />
+    <glyph glyph-name="backward"
+      unicode="&#xF04A;"
+      horiz-adv-x="512" d=" M11.5 167.4L203.5 7.4C224.1 -9.8 256 4.6 256 32V352C256 379.4 224.1 393.8 203.5 376.6L11.5 216.6C-3.8 203.8 -3.8 180.2 11.5 167.4zM267.5 167.4L459.5 7.4C480.1 -9.8 512 4.6 512 32V352C512 379.4 480.1 393.8 459.5 376.6L267.5 216.6C252.2 203.8 252.2 180.2 267.5 167.4z" />
+    <glyph glyph-name="badge-check"
+      unicode="&#xF336;"
+      horiz-adv-x="512" d=" M512 192C512 229.7 488.3 261.9 454.9 274.4C469.6 306.8 463.7 346.3 437 373C410.3 399.7 370.8 405.6 338.4 390.9C325.9 424.3 293.7 448 256 448S186.1 424.3 173.6 390.9C141.2 405.6 101.6 399.7 75 373C48.3 346.3 42.4 306.8 57.1 274.4C23.7 261.9 0 229.7 0 192S23.7 122.1 57.1 109.6C42.4 77.2000000000001 48.3 37.6 75 11C101.6 -15.6 141.1 -21.7 173.6 -6.9C186.1 -40.2 218.3 -64 256 -64S325.9 -40.3 338.4 -6.9C371 -21.7 410.4 -15.6 437 11C463.7 37.7 469.6 77.2 454.9 109.6C488.3 122.1 512 154.3 512 192zM367.2 236.25L236.16 106.26C231.85 101.98 224.88 102.01 220.61 106.32L144.89 182.65C140.61 186.96 140.64 193.93 144.95 198.21L170.98 224.03C175.29 228.31 182.26 228.28 186.54 223.97L228.69 181.48L325.89 277.9C330.2 282.18 337.17 282.15 341.44 277.84L367.26 251.81C371.54 247.49 371.52 240.52 367.2 236.25z" />
+    <glyph glyph-name="badge-dollar"
+      unicode="&#xF645;"
+      horiz-adv-x="512" d=" M512 192C512 229.7 488.3 261.9 454.9 274.4C469.6 306.8 463.7 346.3 437 373C410.3 399.7 370.8 405.6 338.4 390.9C325.9 424.3 293.7 448 256 448S186.1 424.3 173.6 390.9C141.2 405.6 101.6 399.7 75 373C48.3 346.3 42.4 306.8 57.1 274.4C23.7 261.9 0 229.7 0 192S23.7 122.1 57.1 109.6C42.4 77.2000000000001 48.3 37.6 75 11C101.6 -15.6 141.1 -21.7 173.6 -6.9C186.1 -40.2 218.3 -64 256 -64S325.9 -40.3 338.4 -6.9C371 -21.7 410.4 -15.6 437 11C463.7 37.7 469.6 77.2 454.9 109.6C488.3 122.1 512 154.3 512 192zM280 97.56V80C280 71.16 272.84 64 264 64H248C239.16 64 232 71.16 232 80V97.73C220.58 99.08 209.72 102.92 200.22 109.19C194 113.3 193.4 122.3 198.67 127.57L216.19 145.09C219.93 148.83 225.5 149.33 230.3 147.12C233.48 145.66 236.96 144.8999999999999 240.56 144.8999999999999H273.3400000000001C278.0000000000001 144.8999999999999 281.7800000000001 148.6799999999999 281.7800000000001 153.3199999999999C281.7800000000001 157.0699999999999 279.2600000000001 160.3999999999999 275.6600000000001 161.43L225.5900000000001 175.73C203.34 182.08 185.5800000000001 200.44 182.68 223.4C178.63 255.47 201.71 282.83 232.0000000000001 286.45V304C232.0000000000001 312.8400000000001 239.1600000000001 320 248.0000000000001 320H264C272.84 320 280 312.8400000000001 280 304V286.27C291.42 284.92 302.28 281.0800000000001 311.78 274.81C318 270.7 318.6 261.7 313.33 256.43L295.81 238.91C292.07 235.17 286.5 234.67 281.7 236.88A24.516 24.516 0 0 1 271.44 239.1H238.66C234 239.1 230.22 235.32 230.22 230.68C230.22 226.93 232.74 223.6 236.34 222.57L286.4100000000001 208.27C308.6600000000001 201.91 326.42 183.56 329.3200000000001 160.6C333.3700000000001 128.54 310.2900000000001 101.18 280.0000000000001 97.56z" />
+    <glyph glyph-name="badge-percent"
+      unicode="&#xF646;"
+      horiz-adv-x="512" d=" M512 192C512 229.7 488.3 261.9 454.9 274.4C469.6 306.8 463.7 346.3 437 373C410.3 399.7 370.8 405.6 338.4 390.9C325.9 424.3 293.7 448 256 448S186.1 424.3 173.6 390.9C141.2 405.6 101.6 399.7 75 373C48.3 346.3 42.4 306.8 57.1 274.4C23.7 261.9 0 229.7 0 192S23.7 122.1 57.1 109.6C42.4 77.2000000000001 48.3 37.6 75 11C101.6 -15.6 141.1 -21.7 173.6 -6.9C186.1 -40.2 218.3 -64 256 -64S325.9 -40.3 338.4 -6.9C371 -21.7 410.4 -15.6 437 11C463.7 37.7 469.6 77.2 454.9 109.6C488.3 122.1 512 154.3 512 192zM192 288C209.67 288 224 273.67 224 256S209.67 224 192 224S160 238.33 160 256S174.33 288 192 288zM204.28 106.35C198.03 100.1 187.9 100.1 181.65 106.35L170.34 117.66C164.09 123.91 164.09 134.04 170.34 140.29L307.7100000000001 277.6600000000001C313.9600000000001 283.9100000000001 324.0900000000001 283.9100000000001 330.3400000000001 277.6600000000001L341.6500000000001 266.35C347.9000000000001 260.1 347.9000000000001 249.9700000000001 341.6500000000001 243.7200000000001L204.28 106.35zM320 96C302.33 96 288 110.33 288 128S302.33 160 320 160S352 145.67 352 128S337.67 96 320 96z" />
+    <glyph glyph-name="badge"
+      unicode="&#xF335;"
+      horiz-adv-x="512" d=" M512 192C512 229.7 488.3 261.9 454.9 274.4C469.6 306.8 463.7 346.3 437 373C410.3 399.7 370.8 405.6 338.4 390.9C325.9 424.3 293.7 448 256 448S186.1 424.3 173.6 390.9C141.2 405.6 101.6 399.7 75 373C48.3 346.3 42.4 306.8 57.1 274.4C23.7 261.9 0 229.7 0 192S23.7 122.1 57.1 109.6C42.4 77.2000000000001 48.3 37.6 75 11C101.6 -15.6 141.1 -21.7 173.6 -6.9C186.1 -40.2 218.3 -64 256 -64S325.9 -40.3 338.4 -6.9C371 -21.7 410.4 -15.6 437 11C463.7 37.7 469.6 77.2 454.9 109.6C488.3 122.1 512 154.3 512 192z" />
+    <glyph glyph-name="badger-honey"
+      unicode="&#xF6B4;"
+      horiz-adv-x="640" d=" M622.25 305.53C564.6 338.18 551.27 356.2 506.69 375.45C493.37 381.2 479.4 384 465.45 384C446.4 384 427.36 378.79 409.98 368.79C392.89 358.95 374.05 352 354.95 352H128C57.31 352 0 294.69 0 224V208C0 199.16 7.16 192 16 192H36.03C43.82 158.62 64.08 127.76 89.56 110.82L68.07 53.52A63.94500000000001 63.94500000000001 0 0 1 65.91 15.53L80 -19.88A16.002 16.002 0 0 1 95.52 -32H159.29C169.7 -32 177.34 -22.22 174.81 -12.12L159.26 29.14L192.22 96H297.91L320.94 -19.14C322.44 -26.62 329 -32 336.63 -32H400C410.1 -32 417.67 -22.76 415.69 -12.86L388.69 122.1C434.07 152.6400000000001 489.93 183.18 541.17 197.65L560 160L582.65 205.3C611.11 207.67 619.1 214.77 623.8399999999999 225.11C630.8399999999999 240.38 639.9999999999999 260.9 639.9999999999999 272.73C639.9999999999999 286.6600000000001 633.1199999999999 299.38 622.2499999999999 305.5300000000001zM515.19 288C515.47 286.66 516 285.42 516 284C516 272.9600000000001 507.04 264 496 264S476 272.9600000000001 476 284C476 285.42 476.53 286.66 476.81 288H460C430.94 288 402.14 274.95 375.15 261.99L273.17 200.24C261.83 194.8 249.73 192 237.52 192H192C149.51 192 113.88 233.48 101.24 282.66C113.52 295.87 130.03 304 148.3 304H354.9500000000001C380.6200000000001 304 407.1900000000001 311.8 433.9200000000001 327.19C443.9400000000001 332.96 454.8400000000001 336 465.45 336C473.1 336 480.5700000000001 334.45 487.66 331.38C514.53 319.78 524.09 310.96 559.07 288H515.19z" />
+    <glyph glyph-name="balance-scale-left"
+      unicode="&#xF515;"
+      horiz-adv-x="640" d=" M528 0H352V294.75C372.42 303.69 388.1 320.9700000000001 395.38 342.2200000000001L527.38 386.48C535.76 389.29 540.27 398.36 537.46 406.74L527.2900000000001 437.08C524.48 445.46 515.41 449.9700000000001 507.03 447.1600000000001L389.11 407.63C375.3 431.64 349.69 448 320 448C275.82 448 240 412.18 240 368C240 364.57 240.59 361.29 241.01 357.9700000000001L112.62 314.92C104.24 312.11 99.73 303.04 102.54 294.6600000000001L112.71 264.3200000000001C115.52 255.9400000000001 124.59 251.43 132.97 254.24L275.02 301.87C279.09 299.1 283.45 296.75 288.01 294.75V-48C288.01 -56.84 295.17 -64 304.01 -64H528.01C536.85 -64 544.01 -56.84 544.01 -48V-16C544 -7.16 536.84 0 528 0zM639.98 144C639.98 160.18 641.32 152.73 554.9300000000001 325.51C537.2800000000001 360.8 486.7400000000001 360.87 469.0600000000001 325.51C381.9400000000001 151.25 384.0200000000001 159.67 384.0200000000001 144H384C384 99.82 441.31 64 512 64S640 99.82 640 144H639.98zM440 160L512 304L584 160H440zM170.93 197.51C153.28 232.8 102.74 232.87 85.06 197.51C-2.06 23.25 0.02 31.67 0.02 16H0C0 -28.18 57.31 -64 128 -64S256 -28.18 256 16H255.98C255.98 32.18 257.32 24.73 170.93 197.51zM56 32L128 176L200 32H56z" />
+    <glyph glyph-name="balance-scale-right"
+      unicode="&#xF516;"
+      horiz-adv-x="640" d=" M96 -16V-48C96 -56.84 103.16 -64 112 -64H336C344.84 -64 352 -56.84 352 -48V294.75C356.56 296.75 360.92 299.1 364.99 301.87L507.04 254.24C515.4200000000001 251.43 524.49 255.95 527.3000000000001 264.3200000000001L537.47 294.6600000000001C540.28 303.04 535.76 312.11 527.39 314.92L398.99 357.9700000000001C399.4100000000001 361.29 400 364.57 400 368C400 412.18 364.18 448 320 448C290.31 448 264.7 431.64 250.89 407.63L132.96 447.17C124.58 449.98 115.51 445.46 112.7 437.09L102.53 406.75C99.72 398.37 104.24 389.3 112.61 386.49L244.61 342.23C251.89 320.98 267.57 303.69 287.99 294.76V0H112C103.16 0 96 -7.16 96 -16zM0 144C0 99.82 57.31 64 128 64S256 99.82 256 144H255.98C255.98 159.67 258.06 151.25 170.93 325.51C153.25 360.87 102.71 360.8 85.06 325.51C-1.32 152.73 0.02 160.18 0.02 144H0zM56 160L128 304L200 160H56zM384.02 16H384C384 -28.18 441.31 -64 512 -64S640 -28.18 640 16H639.98C639.98 31.67 642.0600000000001 23.25 554.9300000000001 197.51C537.2500000000001 232.87 486.71 232.8 469.0600000000001 197.51C382.6800000000001 24.73 384.0200000000001 32.18 384.0200000000001 16zM440 32L512 176L584 32H440z" />
+    <glyph glyph-name="balance-scale"
+      unicode="&#xF24E;"
+      horiz-adv-x="640" d=" M256 112H255.98C255.98 128.18 257.32 120.73 170.93 293.51C153.28 328.8 102.74 328.87 85.06 293.51C-2.06 119.25 0.02 127.67 0.02 112H0C0 67.82 57.31 32 128 32S256 67.82 256 112zM128 272L200 128H56L128 272zM639.98 112C639.98 128.18 641.32 120.73 554.9300000000001 293.51C537.2800000000001 328.8 486.7400000000001 328.87 469.0600000000001 293.51C381.9400000000001 119.25 384.0200000000001 127.67 384.0200000000001 112H384C384 67.82 441.31 32 512 32S640 67.82 640 112H639.98zM440 128L512 272L584 128H440zM528 0H352V294.75C375.51 305.04 393.16 326.23 398.39 352H528C536.84 352 544 359.16 544 368V400C544 408.8400000000001 536.84 416 528 416H383.64C369.04 435.32 346.09 448 320 448S270.96 435.32 256.36 416H112C103.16 416 96 408.8400000000001 96 400V368C96 359.16 103.16 352 112 352H241.61C246.84 326.24 264.48 305.04 288 294.75V0H112C103.16 0 96 -7.16 96 -16V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-16C544 -7.16 536.84 0 528 0z" />
+    <glyph glyph-name="ball-pile"
+      unicode="&#xF77E;"
+      horiz-adv-x="576" d=" M80 96C35.8 96 0 60.2 0 16S35.8 -64 80 -64S160 -28.2 160 16S124.2 96 80 96zM288 288C332.2 288 368 323.8 368 368S332.2 448 288 448S208 412.2 208 368S243.8 288 288 288zM256 200C256 244.2 220.2 280 176 280S96 244.2 96 200S131.8 120 176 120S256 155.8 256 200zM288 96C243.8 96 208 60.2 208 16S243.8 -64 288 -64S368 -28.2 368 16S332.2 96 288 96zM496 96C451.8 96 416 60.2 416 16S451.8 -64 496 -64S576 -28.2 576 16S540.2 96 496 96zM480 200C480 244.2 444.2 280 400 280S320 244.2 320 200S355.8 120 400 120S480 155.8 480 200z" />
+    <glyph glyph-name="ballot-check"
+      unicode="&#xF733;"
+      horiz-adv-x="384" d=" M360 448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V424C384 437.3 373.3 448 360 448zM64 336C64 344.8 71.2 352 80 352H112C120.8 352 128 344.8 128 336V304C128 295.2 120.8 288 112 288H80C71.2 288 64 295.2 64 304V336zM65.6 206.6L78.3 219.2C80.4 221.3 83.8 221.3 85.9 219.2L106.5 198.4L154.1 245.6C156.2 247.7 159.6 247.7 161.7 245.6L174.3 232.9C176.4 230.8 176.4 227.4 174.3 225.3L110.1 161.7C108 159.6 104.6 159.6 102.5 161.7L65.6 199C63.5 201.1 63.5 204.5 65.6 206.6zM128 48C128 39.2 120.8 32 112 32H80C71.2 32 64 39.2 64 48V80C64 88.8 71.2 96 80 96H112C120.8 96 128 88.8 128 80V48zM320 56C320 51.6 316.4 48 312 48H168C163.6 48 160 51.6 160 56V72C160 76.4 163.6 80 168 80H312C316.4 80 320 76.4 320 72V56zM320 184C320 179.6 315.7 176 310.4 176H170.2S199.4 206.2 200.6 208H310.3C315.6 208 319.9000000000001 204.4 319.9000000000001 200V184zM320 312C320 307.6 316.4 304 312 304H168C163.6 304 160 307.6 160 312V328C160 332.4 163.6 336 168 336H312C316.4 336 320 332.4 320 328V312z" />
+    <glyph glyph-name="ballot"
+      unicode="&#xF732;"
+      horiz-adv-x="384" d=" M360 448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V424C384 437.3 373.3 448 360 448zM128 48C128 39.2 120.8 32 112 32H80C71.2 32 64 39.2 64 48V80C64 88.8 71.2 96 80 96H112C120.8 96 128 88.8 128 80V48zM128 176C128 167.2 120.8 160 112 160H80C71.2 160 64 167.2 64 176V208C64 216.8 71.2 224 80 224H112C120.8 224 128 216.8 128 208V176zM128 304C128 295.2 120.8 288 112 288H80C71.2 288 64 295.2 64 304V336C64 344.8 71.2 352 80 352H112C120.8 352 128 344.8 128 336V304zM320 56C320 51.6 316.4 48 312 48H168C163.6 48 160 51.6 160 56V72C160 76.4 163.6 80 168 80H312C316.4 80 320 76.4 320 72V56zM320 184C320 179.6 316.4 176 312 176H168C163.6 176 160 179.6 160 184V200C160 204.4 163.6 208 168 208H312C316.4 208 320 204.4 320 200V184zM320 312C320 307.6 316.4 304 312 304H168C163.6 304 160 307.6 160 312V328C160 332.4 163.6 336 168 336H312C316.4 336 320 332.4 320 328V312z" />
+    <glyph glyph-name="ban"
+      unicode="&#xF05E;"
+      horiz-adv-x="512" d=" M256 440C119.034 440 8 328.967 8 192S119.034 -56 256 -56S504 55.034 504 192S392.967 440 256 440zM386.108 322.108C451.556 256.6600000000001 456.108 156.627 406.7850000000001 86.471L150.47 342.784C220.674 392.14 320.6960000000001 387.519 386.108 322.108zM125.892 61.892C60.444 127.34 55.892 227.373 105.215 297.529L361.53 41.216C291.327 -8.14 191.304 -3.52 125.892 61.892z" />
+    <glyph glyph-name="band-aid"
+      unicode="&#xF462;"
+      horiz-adv-x="640" d=" M0 288V96C0 60.7 28.7 32 64 32H160V352H64C28.7 352 0 323.3 0 288zM576 352H480V32H576C611.3 32 640 60.7 640 96V288C640 323.3 611.3 352 576 352zM192 32H448V352H192V32zM368 264C381.3 264 392 253.3 392 240S381.3 216 368 216S344 226.7 344 240S354.7 264 368 264zM368 168C381.3 168 392 157.3 392 144S381.3 120 368 120S344 130.7 344 144S354.7 168 368 168zM272 264C285.3 264 296 253.3 296 240S285.3 216 272 216S248 226.7 248 240S258.7 264 272 264zM272 168C285.3 168 296 157.3 296 144S285.3 120 272 120S248 130.7 248 144S258.7 168 272 168z" />
+    <glyph glyph-name="barcode-alt"
+      unicode="&#xF463;"
+      horiz-adv-x="640" d=" M592 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H592C618.5 -64 640 -42.5 640 -16V400C640 426.5 618.5 448 592 448zM160 40C160 35.6 156.4 32 152 32H104C99.6 32 96 35.6 96 40V344C96 348.4 99.6 352 104 352H152C156.4 352 160 348.4 160 344V40zM224 40C224 35.6 220.4 32 216 32H200C195.6 32 192 35.6 192 40V344C192 348.4 195.6 352 200 352H216C220.4 352 224 348.4 224 344V40zM288 40C288 35.6 284.4 32 280 32H264C259.6 32 256 35.6 256 40V344C256 348.4 259.6 352 264 352H280C284.4 352 288 348.4 288 344V40zM416 40C416 35.6 412.4 32 408 32H360C355.6 32 352 35.6 352 40V344C352 348.4 355.6 352 360 352H408C412.4 352 416 348.4 416 344V40zM544 40C544 35.6 540.4 32 536 32H488C483.6 32 480 35.6 480 40V344C480 348.4 483.6 352 488 352H536C540.4 352 544 348.4 544 344V40z" />
+    <glyph glyph-name="barcode-read"
+      unicode="&#xF464;"
+      horiz-adv-x="640" d=" M184 320H136C131.6 320 128 316.4 128 312V72C128 67.6 131.6 64 136 64H184C188.4 64 192 67.6 192 72V312C192 316.4 188.4 320 184 320zM144 0H64V80C64 88.8 56.8 96 48 96H16C7.2 96 0 88.8 0 80V-48C0 -56.8 7.2 -64 16 -64H144C152.8 -64 160 -56.8 160 -48V-16C160 -7.2 152.8 0 144 0zM248 320H232C227.6 320 224 316.4 224 312V72C224 67.6 227.6 64 232 64H248C252.4 64 256 67.6 256 72V312C256 316.4 252.4 320 248 320zM16 288H48C56.8 288 64 295.2 64 304V384H144C152.8 384 160 391.2 160 400V432C160 440.8 152.8 448 144 448H16C7.2 448 0 440.8 0 432V304C0 295.2 7.2 288 16 288zM408 320H360C355.6 320 352 316.4 352 312V72C352 67.6 355.6 64 360 64H408C412.4 64 416 67.6 416 72V312C416 316.4 412.4 320 408 320zM312 320H296C291.6 320 288 316.4 288 312V72C288 67.6 291.6 64 296 64H312C316.4 64 320 67.6 320 72V312C320 316.4 316.4 320 312 320zM624 448H496C487.2 448 480 440.8 480 432V400C480 391.2 487.2 384 496 384H576V304C576 295.2 583.2 288 592 288H624C632.8 288 640 295.2 640 304V432C640 440.8 632.8 448 624 448zM624 96H592C583.2 96 576 88.8 576 80V0H496C487.2 0 480 -7.2 480 -16V-48C480 -56.8 487.2 -64 496 -64H624C632.8 -64 640 -56.8 640 -48V80C640 88.8 632.8 96 624 96zM512 72V312C512 316.4 508.4 320 504 320H456C451.6 320 448 316.4 448 312V72C448 67.6 451.6 64 456 64H504C508.4 64 512 67.6 512 72z" />
+    <glyph glyph-name="barcode-scan"
+      unicode="&#xF465;"
+      horiz-adv-x="640" d=" M288 440C288 444.4 284.4 448 280 448H232C227.6 448 224 444.4 224 440V288H288V440zM160 440C160 444.4 156.4 448 152 448H72C67.6 448 64 444.4 64 440V288H160V440zM64 -56C64 -60.4 67.6 -64 72 -64H152C156.4 -64 160 -60.4 160 -56V96H64V-56zM480 440C480 444.4 476.4 448 472 448H424C419.6 448 416 444.4 416 440V288H480V440zM576 440C576 444.4 572.4 448 568 448H520C515.6 448 512 444.4 512 440V288H576V440zM384 440C384 444.4 380.4 448 376 448H360C355.6 448 352 444.4 352 440V288H384V440zM512 -56C512 -60.4 515.6 -64 520 -64H568C572.4 -64 576 -60.4 576 -56V96H512V-56zM224 -56C224 -60.4 227.6 -64 232 -64H280C284.4 -64 288 -60.4 288 -56V96H224V-56zM416 -56C416 -60.4 419.6 -64 424 -64H472C476.4 -64 480 -60.4 480 -56V96H416V-56zM352 -56C352 -60.4 355.6 -64 360 -64H376C380.4 -64 384 -60.4 384 -56V96H352V-56zM632 224H8C3.6 224 0 220.4 0 216V168C0 163.6 3.6 160 8 160H632C636.4 160 640 163.6 640 168V216C640 220.4 636.4 224 632 224z" />
+    <glyph glyph-name="barcode"
+      unicode="&#xF02A;"
+      horiz-adv-x="512" d=" M0 0V384H18V0H0zM26.857 0.273V384H36V0.273H26.857zM54 0.273V384H62.857V0.273H54zM98.857 0.273V384H107.714V0.273H98.857zM134.857 0.273V384H152.571V0.273H134.857zM179.714 0.273V384H188.571V0.273H179.714zM197.714 0.273V384H206.571V0.273H197.714zM215.714 0.273V384H224.571V0.273H215.714zM251.429 0.273V384H269.429V0.273H251.429zM296.286 0.273V384H314.286V0.273H296.286zM332.2850000000001 0.273V384H350.286V0.273H332.2850000000001zM368.286 0.273V384H386.287V0.273H368.286zM395.1430000000001 0.273V384H413.1430000000001V0.273H395.1430000000001zM440.2860000000001 0.273V384H467.143V0.273H440.2860000000001zM476.0000000000001 0.273V384H485.143V0.273H476zM494.0000000000001 0V384H512V0H494z" />
+    <glyph glyph-name="bars"
+      unicode="&#xF0C9;"
+      horiz-adv-x="448" d=" M16 316H432C440.837 316 448 323.163 448 332V372C448 380.837 440.837 388 432 388H16C7.163 388 0 380.837 0 372V332C0 323.163 7.163 316 16 316zM16 156H432C440.837 156 448 163.163 448 172V212C448 220.837 440.837 228 432 228H16C7.163 228 0 220.837 0 212V172C0 163.163 7.163 156 16 156zM16 -4H432C440.837 -4 448 3.163 448 12V52C448 60.837 440.837 68 432 68H16C7.163 68 0 60.837 0 52V12C0 3.163 7.163 -4 16 -4z" />
+    <glyph glyph-name="baseball-ball"
+      unicode="&#xF433;"
+      horiz-adv-x="496" d=" M368.5 84.1L397.3 98C408.4000000000001 75.1 423.3 54.8 441.4000000000001 37.1C475.4 79.6 495.9 133.4 495.9 192C495.9 250.5000000000001 475.5000000000001 304.2000000000001 441.7000000000001 346.6C423.9000000000001 329.3 409.1 309.5 398.1 287.1L369.4000000000001 301.2000000000001C382.2000000000001 327.2000000000001 399.4000000000001 350.2000000000001 420.2000000000001 370.2000000000001C375.6 413.3 315 440 248 440C181.1 440 120.5 413.4 75.9 370.3C96.6 350.4 113.8 327.4 126.6 301.5L97.9 287.4C86.9 309.7000000000001 72.2 329.5 54.4 346.8C20.4 304.3 0 250.6 0 192C0 133.4 20.4 79.7 54.4 37.3C72.6 55 87.6 75.3 98.7 98.3L127.5 84.4C114.6 57.7000000000001 97.2 34.1 76 13.7C120.5 -29.4 181.1 -55.9999999999999 248 -55.9999999999999C314.8 -55.9999999999999 375.3 -29.4999999999999 419.9 13.5000000000001C398.8 33.9 381.4 57.4 368.5 84.1zM140.2 116.1L109.7 125.9C124.6 172.3 122.4 219.7000000000001 109.1 259.9000000000001L139.5 269.9000000000001C154.5 224.3000000000001 157.5 170 140.2 116.1zM356.5 269.5L386.9 259.5C373.7 219.4 371.4 172 386.3 125.5L355.8 115.7C338.5 169.7 341.5 224 356.5 269.5z" />
+    <glyph glyph-name="baseball"
+      unicode="&#xF432;"
+      horiz-adv-x="640" d=" M629.6 392L605.7 425.4C588.1 450 554.2 455.4 529.9000000000001 437.6L317.9000000000001 281.3C248.8000000000001 230.4 205.5000000000001 181.5 180.7000000000001 153L242.9000000000001 66.3C277.5000000000001 81.5 336.6000000000001 108.1 405.7000000000001 159L617.8000000000001 315.2C641.9000000000001 333 647.2 367.4 629.6 392zM145.5 14.9L102.3 75.2C72.3 49.2 55.3 37 46.3 30.4C27.1 54.5 9.7 39.4 8.9 38.8C-1.4 30.4999999999999 -3.1 15.4 5.2 5.1L53.1 -54.9C60.9 -64.7 75.9 -67.4000000000001 86.8 -58.6C89.6 -56.4 104.3 -42.1 89.1 -23C97.3 -17.1 113.7 -4.8 145.5 14.9zM122.9 93.2L168.9 29.1C184.8 38.2 201.2 46.6 217.7 54.6L161.9 132.4C149.3 118.9 136.4 105.8 122.9 93.2000000000001zM494.9 96C450.8 96 415.1 60.2 415.1 16S450.8 -64 494.9 -64S574.6999999999999 -28.2 574.6999999999999 16S538.9999999999999 96 494.8999999999999 96z" />
+    <glyph glyph-name="basketball-ball"
+      unicode="&#xF434;"
+      horiz-adv-x="496" d=" M212.3 437.7C168.5 431.4 126.1 413.6 90.1 383.9L167.5 306.5C195.3 342.3 210.8 387.7 212.3 437.7zM248 226L405.9 383.9C363.5 418.9 312.3 437.4 260.4 440C259.2 376.1 238.9 317.7000000000001 201.7 272.3L248 226zM56.1 349.9C26.4 313.9 8.6 271.5 2.3 227.7C52.3 229.2 97.8 244.7 133.5 272.5L56.1 349.9zM328.3 145.7000000000001C373.6 182.8000000000001 432 203.1000000000001 496 204.4C493.4 256.3000000000001 474.9 307.5 439.9 349.9000000000001L282 192L328.3 145.7zM248 158L90.1 0.1C132.5 -34.8 183.7 -53.4 235.6 -56C236.9 8 257.2 66.4 294.3 111.7L248 158zM439.9 34.1C469.6 70.1 487.4 112.5 493.7 156.3C443.6 154.7 398.2 139.2 362.5 111.5L439.9 34.1zM167.7 238.3C122.3 201.1 63.9 180.7 0 179.6C2.6 127.7000000000001 21.1 76.5 56.1 34.1L214 192L167.7 238.3zM283.7 -53.7C327.5 -47.4 369.9 -29.6 405.9 0.1L328.5 77.5C300.8 41.8 285.3 -3.7 283.7 -53.7z" />
+    <glyph glyph-name="basketball-hoop"
+      unicode="&#xF435;"
+      horiz-adv-x="640" d=" M208 288H432V240H208V288zM639.9 111.1C639.9 88.3 626.3 67.9 605.1999999999999 59.3L501 16.4L510 160H479.4L461.2 -64L385.8 7.6L320 -64L254.2 7.6L178.8 -64L160.6 160H130L139 16.4L34.7 59.2C13.6 67.9 0 88.2 0 111.1L1.2 241C1.8 243 68.7 440 320 440S638.1 243 638.8 241C640.4 230.8 639.9 249.5 639.9 111.1zM206.7 95.6L253.4 52L297.4 96L255.3 138.1L206.7 95.6zM320 118.6L361.4 160H278.6L320 118.6zM342.6 96L386.6 52L433.3 95.6L384.7 138.1L342.6 96zM192.7 160L195.3 128.1L231.8 160H192.7zM230.8 29.4L200.9 57.3L205.2 3.8L230.8 29.4zM363.2000000000001 30.2L320 73.4L276.8 30.2L320 -10.1L363.2 30.2zM434.8000000000001 3.8L439.1000000000001 57.3L409.2000000000001 29.4L434.8000000000002 3.8zM447.3 160H408.3L444.8 128.1L447.3 160zM544 232C544 236.4 540.4 240 536 240H464V320H176V240H104C99.6 240 96 236.4 96 232V216C96 211.6 99.6 208 104 208H536C540.4 208 544 211.6 544 216V232z" />
+    <glyph glyph-name="bat"
+      unicode="&#xF6B5;"
+      horiz-adv-x="640" d=" M558.44 318.3C550.8000000000001 336.12 529.19 343.11 512.5600000000001 333.13L411.83 272.7L384 384L341.33 352H298.66L256 384L228.17 272.7L127.43 333.14C110.8 343.12 89.19 336.13 81.55 318.31L0 128L49.62 144.54C77 153.67 107.1 143.34 123.11 119.3300000000001L160 64L171.82 75.82C199.36 103.36 244.91 100.12 268.28 68.97L320 0L371.7200000000001 68.97C395.0900000000001 100.1300000000001 440.63 103.36 468.18 75.8200000000001L480 64L516.88 119.33C532.89 143.34 562.99 153.67 590.37 144.54L640 128L558.44 318.3z" />
+    <glyph glyph-name="bath"
+      unicode="&#xF2CD;"
+      horiz-adv-x="512" d=" M488 192H80V336C80 353.645 94.355 368 112 368C123.351 368 133.332 362.055 139.015 353.12C122.523 327.913 124.328 293.544 145.853 270.0850000000001C141.677 265.372 141.832 258.169 146.344 253.657L157.658 242.343C162.344 237.657 169.942 237.657 174.629 242.343L269.659 337.372C274.345 342.058 274.345 349.656 269.659 354.343L258.345 365.6570000000001C253.833 370.169 246.63 370.323 241.917 366.148C223.968 382.617 199.623 387.577 177.739 381.5130000000001C163.281 402.333 139.212 416 112 416C67.888 416 32 380.112 32 336V192H24C10.745 192 0 181.255 0 168V152C0 138.745 10.745 128 24 128H32V96C32 67.57 44.362 42.031 64 24.453V-8C64 -21.255 74.745 -32 88 -32H104C117.255 -32 128 -21.255 128 -8V0H384V-8C384 -21.255 394.745 -32 408 -32H424C437.255 -32 448 -21.255 448 -8V24.453C467.638 42.031 480 67.57 480 96V128H488C501.255 128 512 138.745 512 152V168C512 181.255 501.255 192 488 192z" />
+    <glyph glyph-name="battery-bolt"
+      unicode="&#xF376;"
+      horiz-adv-x="640" d=" M64 96H242.778L228.605 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H163.944L156.281 288H64V96zM428.778 256H336.457L364.151 389.589C367.4 402.913 358.205 416 345.6 416H236.8C227.177 416 219.04 408.208 217.769 397.775L192.171 184C190.636 171.41 199.603 160.225 211.202 160.225H306.163L269.3160000000001 -6.157C266.44 -19.443 275.728 -32 287.993 -32C294.673 -32 301.094 -28.173 304.616 -21.519L445.394 224.478C452.79 238.45 443.564 256 428.778 256zM616 288H608V304C608 330.51 586.51 352 560 352H405.38L395.429 304H428.778C444.89 304 460.011 298.238 471.893 288H544V224H576V160H544V96H427.174L390.548 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288z" />
+    <glyph glyph-name="battery-empty"
+      unicode="&#xF244;"
+      horiz-adv-x="640" d=" M544 288V224H576V160H544V96H64V288H544M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352z" />
+    <glyph glyph-name="battery-full"
+      unicode="&#xF240;"
+      horiz-adv-x="640" d=" M544 288V224H576V160H544V96H64V288H544M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM512 256H96V128H512V256z" />
+    <glyph glyph-name="battery-half"
+      unicode="&#xF242;"
+      horiz-adv-x="640" d=" M544 288V224H576V160H544V96H64V288H544M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM320 256H96V128H320V256z" />
+    <glyph glyph-name="battery-quarter"
+      unicode="&#xF243;"
+      horiz-adv-x="640" d=" M544 288V224H576V160H544V96H64V288H544M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM224 256H96V128H224V256z" />
+    <glyph glyph-name="battery-slash"
+      unicode="&#xF377;"
+      horiz-adv-x="640" d=" M291.843 96L339.326 32H48C21.49 32 0 53.49 0 80V304C0 330.51 21.49 352 48 352H101.907L149.391 288H64V96H291.843zM640 264V120C640 106.745 629.255 96 616 96H608V80C608 53.49 586.51 32 560 32H478.324L514.265 -16.442C522.117 -27.025 519.903 -41.97 509.32 -49.822L496.545 -59.301A23.759 23.759 0 0 0 482.346 -64.001C475.049 -64.001 467.846 -60.666 463.165 -54.356L125.735 400.442C117.883 411.025 120.097 425.9700000000001 130.68 433.822L143.455 443.3A23.759 23.759 0 0 0 157.654 448C164.951 448 172.154 444.665 176.835 438.355L240.905 352H560C586.51 352 608 330.51 608 304V288H616C629.255 288 640 277.255 640 264zM576 224H544V288H288.389L430.84 96H544V160H576V224z" />
+    <glyph glyph-name="battery-three-quarters"
+      unicode="&#xF241;"
+      horiz-adv-x="640" d=" M544 288V224H576V160H544V96H64V288H544M560 352H48C21.49 352 0 330.51 0 304V80C0 53.49 21.49 32 48 32H560C586.51 32 608 53.49 608 80V96H616C629.255 96 640 106.745 640 120V264C640 277.255 629.255 288 616 288H608V304C608 330.51 586.51 352 560 352zM416 256H96V128H416V256z" />
+    <glyph glyph-name="bed"
+      unicode="&#xF236;"
+      horiz-adv-x="640" d=" M176 192C220.11 192 256 227.89 256 272S220.11 352 176 352S96 316.11 96 272S131.89 192 176 192zM528 320H304C295.1600000000001 320 288 312.8400000000001 288 304V160H64V368C64 376.8400000000001 56.84 384 48 384H16C7.16 384 0 376.8400000000001 0 368V16C0 7.16 7.16 0 16 0H48C56.84 0 64 7.16 64 16V64H576V16C576 7.16 583.16 0 592 0H624C632.84 0 640 7.16 640 16V208C640 269.86 589.86 320 528 320z" />
+    <glyph glyph-name="beer"
+      unicode="&#xF0FC;"
+      horiz-adv-x="448" d=" M368 352H320V392C320 405.255 309.255 416 296 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H296C309.255 -32 320 -21.255 320 -8V34.11L400.606 70.087C429.396 82.937 448 111.612 448 143.14V272C448 316.112 412.112 352 368 352zM384 143.14A16.018 16.018 0 0 0 374.521 128.529L320 104.195V288H368C376.822 288 384 280.822 384 272V143.14zM208 64C199.164 64 192 71.164 192 80V304C192 312.836 199.164 320 208 320S224 312.836 224 304V80C224 71.164 216.836 64 208 64zM112 64C103.164 64 96 71.164 96 80V304C96 312.836 103.164 320 112 320S128 312.836 128 304V80C128 71.164 120.836 64 112 64z" />
+    <glyph glyph-name="bell-school-slash"
+      unicode="&#xF5D6;"
+      horiz-adv-x="640" d=" M272 0C217.94 0 168.17 18.18 128 48.46V-32C128 -49.67 142.33 -64 160 -64H384C401.67 -64 416 -49.67 416 -32V-3.53L378.3400000000001 25.58C346.23 9.49 310.29 0 272 0zM350.19 47.33L65.95 267.01C64.8 258.15 64 249.18 64 240C64 125.12 157.12 32 272 32C299.68 32 326.04 37.52 350.19 47.33zM633.8199999999999 -10.1L561.56 45.75C570.45 54.46 576 66.57 576 80C576 106.51 554.51 128 528 128C510.18 128 494.8 118.17 486.52 103.75L449.71 132.2C468.88 163.62 480 200.48 480 240C480 354.88 386.87 448 272 448C213.46 448 160.94 423.5 123.2 384.55L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.53 -60.63C601.51 -66.0599999999999 611.56 -64.7999999999999 616.99 -57.82L636.63 -32.55C642.05 -25.58 640.8 -15.53 633.82 -10.1zM346.64 211.85L319.29 232.99C319.63 235.3 320 237.6 320 240C320 266.51 298.51 288 272 288C265.3 288 258.93 286.61 253.13 284.13L226.13 305C239.11 314.29 254.81 320 272 320C316.11 320 352 284.11 352 240C352 230.05 349.98 220.63 346.64 211.85z" />
+    <glyph glyph-name="bell-school"
+      unicode="&#xF5D5;"
+      horiz-adv-x="512" d=" M416 240C416 354.88 322.88 448 208 448S0 354.88 0 240S93.12 32 208 32S416 125.12 416 240zM128 240C128 284.11 163.89 320 208 320S288 284.11 288 240S252.11 160 208 160S128 195.89 128 240zM256 240C256 266.51 234.51 288 208 288S160 266.51 160 240S181.49 192 208 192S256 213.49 256 240zM464 128C437.49 128 416 106.51 416 80C416 63.57 424.27 49.11 436.86 40.45C430.78 26.1 416.55 16 400 16H352V48.46C311.83 18.18 262.06 0 208 0S104.17 18.18 64 48.46V-32C64 -49.67 78.33 -64 96 -64H320C337.67 -64 352 -49.67 352 -32H400C442.2 -32 477.48 -2.13 485.98 37.56C501.37 45.56 512 61.46 512 80C512 106.51 490.51 128 464 128z" />
+    <glyph glyph-name="bell-slash"
+      unicode="&#xF1F6;"
+      horiz-adv-x="640" d=" M633.82 -10.1L543.2 59.95C543.3900000000001 61.33 544 62.61 544 64.01C544.05 71.56 541.39 79.28 535.39 85.72C516.0699999999999 106.48 479.92 137.71 479.92 240.01C479.92 317.71 425.44 379.91 351.98 395.17V416C351.98 433.67 337.66 448 320 448S288.0199999999999 433.67 288.0199999999999 416V395.16C247.69 386.78 213.3599999999999 364.0900000000001 190.4299999999999 332.5900000000001L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.53 -60.63C601.51 -66.0599999999999 611.56 -64.7999999999999 616.99 -57.82L636.63 -32.55C642.05 -25.58 640.8 -15.53 633.82 -10.1zM157.23 196.46C148.62 128.5 120.82 103.13 104.61 85.71C98.61 79.2600000000001 95.95 71.55 96 64.0000000000001C96.11 47.6000000000001 108.98 32.0000000000001 128.1 32.0000000000001H370.02L157.23 196.46zM320 -64C355.32 -64 383.9700000000001 -35.35 383.9700000000001 0H256.03C256.03 -35.35 284.68 -64 320 -64z" />
+    <glyph glyph-name="bell"
+      unicode="&#xF0F3;"
+      horiz-adv-x="448" d=" M224 -64C259.32 -64 287.9700000000001 -35.35 287.9700000000001 0H160.03C160.03 -35.35 188.68 -64 224 -64zM439.39 85.71C420.07 106.47 383.92 137.7000000000001 383.92 240.0000000000001C383.92 317.7000000000001 329.44 379.9000000000001 255.98 395.1600000000001V416C255.98 433.67 241.66 448 224 448S192.02 433.67 192.02 416V395.16C118.56 379.9 64.08 317.7 64.08 240C64.08 137.7 27.93 106.47 8.61 85.71C2.61 79.2600000000001 -0.05 71.55 0 64.0000000000001C0.11 47.6000000000001 12.98 32.0000000000001 32.1 32.0000000000001H415.9000000000001C435.0200000000001 32.0000000000001 447.9000000000001 47.6000000000001 448.0000000000001 64.0000000000001C448.0500000000001 71.5500000000001 445.3900000000001 79.27 439.3900000000001 85.71z" />
+    <glyph glyph-name="bells"
+      unicode="&#xF77F;"
+      horiz-adv-x="640" d=" M242 194.1C214.1 270.8 247 354.7 315.7 393.9C307.2 399.5 298.2 404.4 288.3 408C219 433.1 142.5 397.4 117.3 328.2000000000001C116.5 326.1 102.6 287.8 101.9 285.6C72.7 205.5 35.5 191.3 14.5 180.6C-5.6 170.3 -5 140 17.5 131.8L260.8 43.2C269.2 62.4 280.3 88.8000000000001 257.5 151.4C247.7 178.4 251.3 168.5000000000001 242 194.1zM138.1 3.8C165.7 -6.3 195.6 4.1 211.9 27L96.5 69C94.2 41.1 110.4 13.9 138.1 3.8zM501.9 -28.2C529.5 -18.1 545.8 9 543.5 37L428.1 -5C444.4000000000001 -27.8 474.3 -38.2 501.9 -28.2zM625.6 148.6C604.6 159.3 567.3000000000001 173.5 538.2 253.6C537.4000000000001 255.8 523.5 294.1 522.8000000000001 296.2000000000001C497.5000000000001 365.4000000000001 421.0000000000001 401.1 351.8000000000001 375.9000000000001C282.6000000000001 350.7000000000001 246.9000000000001 274.2000000000001 272.1000000000001 205C272.9000000000001 202.9 286.9000000000001 164.6 287.7000000000001 162.4C316.9000000000001 82.3 297.4000000000001 47.5 288.2000000000001 25.8C279.4000000000001 5.1 299.4000000000001 -17.8000000000001 321.9000000000001 -9.6L622.5000000000001 99.8C643.0000000000001 107.3 647.4000000000001 137.4 625.6000000000001 148.6z" />
+    <glyph glyph-name="bezier-curve"
+      unicode="&#xF55B;"
+      horiz-adv-x="640" d=" M368 416H272C254.33 416 240 401.67 240 384V288C240 270.33 254.33 256 272 256H368C385.67 256 400 270.3300000000001 400 288V384C400 401.67 385.67 416 368 416zM208 360H123.25C113.75 383.44 90.84 400 64 400C28.66 400 0 371.35 0 336S28.66 272 64 272C90.84 272 113.75 288.56 123.25 312H202.98C147.61 279.48 107.12 224.68 93.44 160H142.84C154.14 201.61 179.61 237.21 213.88 261.56C210.18 269.64 208 278.55 208 288V360zM160 128H64C46.33 128 32 113.67 32 96V0C32 -17.67 46.33 -32 64 -32H160C177.67 -32 192 -17.67 192 0V96C192 113.67 177.67 128 160 128zM576 400C549.16 400 526.25 383.44 516.75 360H432V288C432 278.55 429.81 269.64 426.12 261.56C460.39 237.21 485.86 201.61 497.16 160H546.5600000000001C532.8800000000001 224.68 492.39 279.48 437.0200000000001 312H516.75C526.25 288.56 549.16 272 576 272C611.34 272 640 300.65 640 336S611.34 400 576 400zM576 128H480C462.33 128 448 113.67 448 96V0C448 -17.67 462.33 -32 480 -32H576C593.67 -32 608 -17.67 608 0V96C608 113.67 593.67 128 576 128z" />
+    <glyph glyph-name="bible"
+      unicode="&#xF647;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM144 304C144 312.8400000000001 151.16 320 160 320H208V368C208 376.8400000000001 215.16 384 224 384H256C264.84 384 272 376.8400000000001 272 368V320H320C328.84 320 336 312.8400000000001 336 304V272C336 263.16 328.84 256 320 256H272V144C272 135.16 264.84 128 256 128H224C215.16 128 208 135.16 208 144V256H160C151.16 256 144 263.16 144 272V304zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="bicycle"
+      unicode="&#xF206;"
+      horiz-adv-x="640" d=" M512.509 255.999C496.136 256.063 480.479 253.044 466.073 247.504L388.3930000000001 372.657A24 24 0 0 1 368.001 384H304.001C295.164 384 288.001 376.837 288.001 368V352C288.001 343.163 295.164 336 304.001 336H354.65L369.546 312H256.002V328C256.002 336.837 248.839 344 240.002 344H152.543C139.102 344 127.766 333.001 128.007 319.563C128.239 306.519 138.883 296 152.002 296H200.728L171.311 248.48C157.878 253.31 143.407 255.963 128.319 256C58.094 256.17 0.412 198.988 0.002 128.764C-0.413 57.721 57.055 0 128.002 0C187.644 0 237.76 40.793 251.969 96H304.002A24 24 0 0 1 324.408 107.367L410.37 246.23L425.308 222.163C399.853 198.715 383.923 165.082 384.001 127.726C384.146 58.893 441.9 0.675 510.73 0.007C581.336 -0.678 638.911 55.81 639.9849999999999 126.003C641.0709999999999 196.944 583.459 255.723 512.5089999999999 255.999zM186.75 182.228C196.477 171.699 203.423 158.567 206.392 144H163.086L186.75 182.228zM128.002 48C83.89 48 48.002 83.888 48.002 128S83.89 208 128.002 208C133.871 208 139.588 207.347 145.101 206.141L99.596 132.632C89.715 116.673 101.213 96 120.002 96H201.302C188.932 67.775 160.74 48 128.002 48zM290.632 144H255.008C251.048 175.756 235.452 203.894 212.625 224.026L237.371 264H364.918L290.632 144zM507.689 48.114C466.653 50.2790000000001 433.64 83.806 432.062 124.869C431.25 145.99 438.695 165.3870000000001 451.3969999999999 180.132L495.8299999999999 108.546C500.49 101.038 510.3539999999999 98.73 517.862 103.39L531.456 111.827C538.964 116.487 541.273 126.351 536.612 133.859L492.1439999999999 205.502A79.901 79.901 0 0 0 512.002 207.999C556.1139999999999 207.999 592.002 172.111 592.002 127.999C592.001 82.459 553.75 45.683 507.689 48.114z" />
+    <glyph glyph-name="binoculars"
+      unicode="&#xF1E5;"
+      horiz-adv-x="512" d=" M416 400C416 408.8400000000001 408.84 416 400 416H336C327.1600000000001 416 320 408.8400000000001 320 400V352H416V400zM63.91 288.01C61.4 194.16 3.46 173.78 0 44V0C0 -17.67 14.33 -32 32 -32H128C145.67 -32 160 -17.67 160 0V160H192V320H95.84C78.21 320 64.39 305.63 63.91 288.01zM448.0900000000001 288.01C447.61 305.63 433.79 320 416.1600000000001 320H320V160H352V0C352 -17.67 366.33 -32 384 -32H480C497.67 -32 512 -17.67 512 0V44C508.54 173.78 450.6 194.16 448.0900000000001 288.01zM176 416H112C103.16 416 96 408.8400000000001 96 400V352H192V400C192 408.8400000000001 184.84 416 176 416zM224 160H288V320H224V160z" />
+    <glyph glyph-name="biohazard"
+      unicode="&#xF780;"
+      horiz-adv-x="576" d=" M287.9 336C306.5 336 324.1 332.2 340.7 326.4C354 336.7 364.3 350.7 370.2 367.1C345 378 317.2 384.1 288 384.1C258.9 384.1 231.1 378.1 205.9 367.2000000000001C211.8 350.8 222.1 336.8 235.4 326.5C251.9 332.2000000000001 269.4 336 287.9 336zM163.6 9.3C175.6 21.1 184 35.7 188.1 51.7C155.2 78.1 133.3 117 129.2 161.3C120.7 164.1 112 165.9 102.8 165.9C95.2 165.9 87.6 164.9 80.3 162.8C84.4 99.9999999999999 116.1 44.8 163.6 9.3zM387.8 51.9C391.9 35.9 400.3 21.2 412.3 9.4C459.6999999999999 44.9 491.4 100.1 495.3 162.9C488.1 164.9 480.6 165.9 473.1 165.9C463.9 165.9 455.1 164.0000000000001 446.5 161.2000000000001C442.3999999999999 117.0000000000001 420.5 78.3000000000001 387.8 51.9zM501.3 256.9000000000001C483.6999999999999 267.3000000000001 464.9999999999999 273.5 446 276.8000000000001C451.9999999999999 294.5 455.9999999999999 313.2000000000001 455.9999999999999 333.0000000000001C455.9999999999999 374.0000000000001 441.5 413.8000000000001 415 445.2000000000001C412.5 448.2000000000001 408.3999999999999 448.9000000000001 405 447.0000000000001C401.7 445.1 400.2 441.0000000000001 401.3999999999999 437.3000000000001C405.8999999999999 423.5000000000001 408 411.0000000000001 408 398.8000000000001C408 331.0000000000001 354.2 275.9000000000001 288 275.9000000000001S168 331 168 398.8C168 410.9 170.2 423.5 174.6 437.3C175.8 441 174.3 445.1 171 447C167.6 448.9 163.5 448.2 161 445.2C134.6 413.8 120 374 120 333C120 313.2 123.9 294.5 130 276.8C111.1 273.5 92.3 267.3 74.7 256.9C40.1 236.4 13.7 203.6 0.4 164.5C-0.9 160.8 0.6 156.8 3.9 154.7C7.2 152.7 11.4 153.4 13.9 156.3C23.3 167.1 32.9 175.4 43.1 181.4C100.4 215.3000000000001 173.9 195.1 207 136.4C240.1 77.7000000000001 220.4 2.4 163.1 -31.5C152.9 -37.6 141.1 -41.9 127.3 -44.9C123.6 -45.7 120.9 -49.1 120.9 -53C121 -57 123.6 -60.3 127.4 -61C167.1 -68.7999999999999 208 -61.8 242.6 -41.3C260.6 -30.7 275.5 -16.8 287.9 -1.2C300.3 -16.8 315.2 -30.7 333.2 -41.3C367.8 -61.8 408.7 -68.7999999999999 448.4 -61C452.2 -60.3 454.8 -57 454.9 -53C454.9 -49.1 452.3 -45.7 448.5 -44.9C434.6 -42 422.9 -37.6 412.7 -31.5C355.4 2.4 335.7 77.7 368.8 136.4S475.4 215.3 532.7 181.4C542.9000000000001 175.3 552.5 167.1 561.9000000000001 156.3C564.4000000000001 153.4 568.6000000000001 152.6999999999999 571.9000000000001 154.6999999999999S576.7 160.8 575.4000000000001 164.5C562.3000000000001 203.5999999999999 535.9000000000001 236.5 501.3000000000001 256.9zM287.9 127.9C261.4 127.9 239.9 149.4 239.9 175.9S261.4 223.9 287.9 223.9S335.9 202.4 335.9 175.9S314.4 127.9 287.9 127.9z" />
+    <glyph glyph-name="birthday-cake"
+      unicode="&#xF1FD;"
+      horiz-adv-x="448" d=" M448 64C419.98 64 416.74 96 373.5 96C330.07 96 326.675 64 298.75 64C271.055 64 267.296 96 224 96C181.158 96 176.782 64 149.5 64C121.352 64 118.298 96 74.75 96C31.203 96 28.097 64 0 64V144C0 170.5 21.5 192 48 192H64V336H128V192H192V336H256V192H320V336H384V192H400C426.5 192 448 170.5 448 144V64zM448 -64H0V32C43.356 32 46.767 64 74.75 64C102.701 64 106.003 32 149.5 32C192.343 32 196.717 64 224 64C252.148 64 255.201 32 298.75 32C342.107 32 345.517 64 373.5 64C400.988 64 404.752 32 448 32V-64zM96 352C78.25 352 64 366.25 64 384C64 415 96 407 96 448C108 448 128 418.5 128 392S113.75 352 96 352zM224 352C206.25 352 192 366.25 192 384C192 415 224 407 224 448C236 448 256 418.5 256 392S241.75 352 224 352zM352 352C334.25 352 320 366.25 320 384C320 415 352 407 352 448C364 448 384 418.5 384 392S369.75 352 352 352z" />
+    <glyph glyph-name="blanket"
+      unicode="&#xF498;"
+      horiz-adv-x="512" d=" M512 352C512 404.9 468.9 448 416 448H96C43.1 448 0 404.9 0 352V64C0 -6.7 57.3 -64 128 -64H496C504.8 -64 512 -56.8 512 -48V-16C512 -7.2 504.8 0 496 0H128C92.7 0 64 28.7 64 64S92.7 128 128 128H432C440.8 128 448 120.8 448 112S440.8 96 432 96H128C110.3 96 96 81.7 96 64S110.3 32 128 32H427.3C469.1 32 507.4 62 511.6 103.6C511.9 106.5 512 352 512 352z" />
+    <glyph glyph-name="blender-phone"
+      unicode="&#xF6B6;"
+      horiz-adv-x="576" d=" M392 384H558.54L576 448H192V96H480L497.46 160H392C387.58 160 384 163.58 384 168V184C384 188.42 387.58 192 392 192H506.18L523.64 256H392C387.58 256 384 259.5800000000001 384 264V280C384 284.42 387.58 288 392 288H532.36L549.82 352H392C387.58 352 384 355.58 384 360V376C384 380.42 387.58 384 392 384zM158.8 112.99L133.02 176.25C130.24 183.06 123.22 187.24 115.78 186.51L70.75 182.09C53.47 229.03 53.1 281.87 70.75 329.81L115.78 325.39C123.21 324.66 130.24 328.85 133.02 335.65L158.8 398.91C161.82 406.3 159 414.76 152.12 418.98L112.84 443.08C98.51 451.87 80.09 448.5 68.95 436.03C-23.62 332.43 -23.05 176.48 71.05 73.54C80.92 62.74 100.17 61.06 112.7 68.74L152.11 92.92C159 97.14 161.81 105.59 158.8 112.99zM480 64H192C156.65 64 128 35.35 128 0V-32C128 -49.67 142.33 -64 160 -64H512C529.67 -64 544 -49.67 544 -32V0C544 35.35 515.35 64 480 64zM336 -32C318.33 -32 304 -17.67 304 0S318.33 32 336 32S368 17.67 368 0S353.67 -32 336 -32z" />
+    <glyph glyph-name="blender"
+      unicode="&#xF517;"
+      horiz-adv-x="512" d=" M416 64H160C124.65 64 96 35.35 96 0V-32C96 -49.67 110.33 -64 128 -64H448C465.67 -64 480 -49.67 480 -32V0C480 35.35 451.35 64 416 64zM288 -32C270.33 -32 256 -17.67 256 0S270.33 32 288 32S320 17.67 320 0S305.67 -32 288 -32zM328 384H494.54L512 448H48C21.49 448 0 426.51 0 400V240C0 213.49 21.49 192 48 192H151.27L160 96H416L433.46 160H328C323.58 160 320 163.58 320 168V184C320 188.42 323.58 192 328 192H442.18L459.64 256H328C323.58 256 320 259.5800000000001 320 264V280C320 284.42 323.58 288 328 288H468.36L485.82 352H328C323.58 352 320 355.58 320 360V376C320 380.42 323.58 384 328 384zM64 256V384H133.82L145.46 256H64z" />
+    <glyph glyph-name="blind"
+      unicode="&#xF29D;"
+      horiz-adv-x="384" d=" M380.15 -62.837A8 8 0 0 0 369.161 -60.15L243.831 146.2770000000001A31.923 31.923 0 0 1 256.7890000000001 155.7620000000001L382.8370000000001 -51.8459999999999A8 8 0 0 0 380.1500000000001 -62.8369999999999zM142.803 133.662L110.263 44.177L146.383 -44.1080000000001C153.076 -60.4680000000001 171.76 -68.3000000000001 188.116 -61.609C204.473 -54.917 212.309 -36.2330000000001 205.617 -19.8750000000001L142.803 133.6619999999999zM96 360C120.301 360 140 379.699 140 404S120.301 448 96 448S52 428.301 52 404S71.699 360 96 360zM250.837 190.872L130.837 342.872C126.104 348.867 119.087 351.98 112 351.9840000000001V352H80V351.974C72.854 351.971 65.783 348.813 61.056 342.7340000000001L0 264.2340000000001V168.54C0 155.085 11.011 143.749 24.464 144.004C37.505 144.252 48 154.9 48 168V247.766L64 268.337V127.639L9.927 -21.055C3.887 -37.664 12.455 -56.024 29.065 -62.064C45.667 -68.1030000000001 64.033 -59.54 70.074 -42.926L136 138.362V245.559L104.594 285.375A4 4 0 1 0 110.863 290.346L213.163 161.129C222.308 149.545 237.531 149.79 246.871 157.1640000000001C257.281 165.3800000000001 259.0300000000001 180.4980000000001 250.837 190.8720000000001z" />
+    <glyph glyph-name="blog"
+      unicode="&#xF781;"
+      horiz-adv-x="512" d=" M172.2 221.2C157.6 224.1 144 212.3 144 197.4V147C144 136.8 151.1 128.6 160.7 125C178.9 118.2 192 100.6 192 80C192 53.5 170.5 32 144 32S96 53.5 96 80V328C96 341.3 85.3 352 72 352H24C10.7 352 0 341.3 0 328V80C0 -9.5 82.1 -80.2 175 -60.7C229.4 -49.3 273.3 -5.3 284.7 49C302.1 131.9 247.7 206.2 172.2 221.2zM209 448C199.8 448.5 192 441.2 192 432V400.4C192 391.9 198.6 384.9 207 384.5C336.4 377.5 440.4 272.5 447.9 143C448.4 134.6 455.4 128 463.8 128H495.9C505.1 128 512.4 135.8 511.9 145C503.4 308.2 372.2 439.4 209 448zM209.3 352C200 352.7 192 345.3 192 335.9V303.8C192 295.4 198.5 288.5 206.8 287.9C283.6 281.6 344.8 219.7 351.7000000000001 142.7000000000001C352.5000000000001 134.4 359.3000000000001 128.0000000000001 367.6 128.0000000000001H399.8C409.1 128.0000000000001 416.6 136.0000000000001 415.9000000000001 145.3000000000001C407.5000000000001 255.4000000000001 319.4000000000001 343.5000000000001 209.3000000000001 352.0000000000001z" />
+    <glyph glyph-name="bold"
+      unicode="&#xF032;"
+      horiz-adv-x="384" d=" M304.793 204.109C338.432 222.646 358.45 258.269 358.45 299.802C358.45 348.038 332.2 387.428 289.824 403.981C265.138 413.99 240.849 416 209.661 416H24C15.163 416 8 408.837 8 400V366.951C8 358.114 15.163 350.951 24 350.951H57.113V32.4210000000001H24C15.163 32.4210000000001 8 25.258 8 16.4210000000001V-16C8 -24.837 15.163 -32 24 -32H219.69C243.893 -32 264.524 -30.711 286.556 -24.416C337.52 -9.193 376 37.353 376 97.986C376 150.154 349.427 189.67 304.793 204.109zM142.217 347.1910000000001H209.661C225.955 347.1910000000001 237.197 345.1720000000001 247.186 340.474C263.014 331.995 272.092 313.972 272.092 291.028C272.092 255.999 251.772 234.2380000000001 219.063 234.2380000000001H142.217V347.1910000000001zM254.859 41.716C244.719 37.66 232.182 36.809 223.45 36.809H142.217V166.057H226.584C266.229 166.057 289.641 140.677 289.641 103C289.642 74.575 275.981 50.517 254.8590000000001 41.716z" />
+    <glyph glyph-name="bolt"
+      unicode="&#xF0E7;"
+      horiz-adv-x="320" d=" M296 288H180.6L223.2 417.8C227.2 433 215.7 448 200 448H56C44 448 33.8 439.1 32.2 427.2L0.2 187.2C-1.7 172.8 9.5 160 24 160H142.7L96.6 -34.5C93 -49.7 104.6 -64 119.9 -64C128.3 -64 136.3 -59.6 140.7 -52L316.7 252C326 267.9 314.5 288 296 288z" />
+    <glyph glyph-name="bomb"
+      unicode="&#xF1E2;"
+      horiz-adv-x="512" d=" M440.5 359.5L388.5 307.5L415 281C424.4 271.6 424.4 256.4 415 247.1L397.6 229.7C409.4000000000001 203.6 416 174.6 416 144.1C416 29.2 322.9 -63.9 208 -63.9S0 29.1 0 144S93.1 352 208 352C238.5 352 267.5 345.4 293.6 333.6L311 351C320.4 360.4 335.6 360.4 344.9 351L371.4 324.5L423.4 376.5L440.5 359.5zM500 388H476C469.4 388 464 382.6 464 376S469.4 364 476 364H500C506.6 364 512 369.4 512 376S506.6 388 500 388zM440 448C433.4 448 428 442.6 428 436V412C428 405.4 433.4 400 440 400S452 405.4 452 412V436C452 442.6 446.6 448 440 448zM473.9 393L490.9 410C495.6 414.7 495.6 422.3 490.9 427C486.2 431.7 478.6 431.7 473.9 427L456.9 410C452.2 405.3 452.2 397.7 456.9 393C461.7 388.3 469.3 388.3 473.9 393zM406.1 393C410.8 388.3 418.4 388.3 423.1 393C427.8 397.7 427.8 405.3 423.1 410L406.1 427C401.4 431.7 393.8 431.7 389.1 427C384.4 422.3 384.4 414.7 389.1 410L406.1 393zM473.9 359C469.2 363.7 461.6 363.7 456.9 359C452.2 354.3 452.2 346.7 456.9 342L473.9 325C478.6 320.3 486.2 320.3 490.9 325C495.6 329.7 495.6 337.3 490.9 342L473.9 359zM112 176C112 211.3 140.7 240 176 240C184.8 240 192 247.2 192 256S184.8 272 176 272C123.1 272 80 228.9 80 176C80 167.2 87.2 160 96 160S112 167.2 112 176z" />
+    <glyph glyph-name="bone-break"
+      unicode="&#xF5D8;"
+      horiz-adv-x="640" d=" M598.88 299.44C624.08 312.04 640 337.8 640 365.9700000000001V373.61C640 414.7 606.7 448 565.62 448C533.6 448 505.18 427.51 495.05 397.14L487.3 373.88A32.006 32.006 0 0 0 456.94 352H352L384 288L352 224H456.94C470.71 224 482.94 215.19 487.3 202.12L495.05 178.86C505.17 148.49 533.6 128 565.61 128C606.69 128 639.99 161.3 639.99 202.39V210.03C639.99 238.21 624.07 263.96 598.87 276.56C589.45 281.27 589.45 294.73 598.88 299.44zM320 165.49L256 192L229.49 256L166.52 193.03C156.78 183.29 141.9 180.88 129.58 187.04L107.65 198C79.01 212.32 44.43 206.71 21.78 184.07C-7.27 155.02 -7.27 107.92 21.78 78.87L27.18 73.47C47.1 53.55 76.57 46.59 103.3 55.5C113.3 58.83 122.81 49.32 119.48 39.32C110.57 12.59 117.53 -16.88 137.45 -36.8L142.85 -42.2C171.9 -71.25 219 -71.25 248.05 -42.2C270.69 -19.56 276.3 15.03 261.98 43.67L251.02 65.6C244.86 77.92 247.27 92.8 257.01 102.54L320 165.49z" />
+    <glyph glyph-name="bone"
+      unicode="&#xF5D7;"
+      horiz-adv-x="640" d=" M598.88 203.44C624.08 216.04 640 241.8 640 269.9700000000001V277.61C640 318.7 606.7 352 565.61 352C533.59 352 505.17 331.51 495.04 301.14C487.36 278.11 483.44 256 456.93 256H183.06C155.68 256 151.48 281.54 144.95 301.14C134.83 331.51 106.4 352 74.39 352C33.3 352 0 318.7 0 277.61V269.9700000000001C0 241.8 15.92 216.04 41.12 203.44C50.55 198.73 50.55 185.2700000000001 41.12 180.56C15.92 167.96 0 142.2 0 114.03V106.39C0 65.3 33.3 32 74.38 32C106.4 32 134.82 52.49 144.95 82.86C152.63 105.89 156.55 128 183.06 128H456.93C484.31 128 488.51 102.46 495.04 82.86C505.17 52.49 533.6 32 565.61 32C606.69 32 639.99 65.3 639.99 106.39V114.03C639.99 142.21 624.07 167.96 598.87 180.56C589.45 185.2699999999999 589.45 198.73 598.88 203.44z" />
+    <glyph glyph-name="bong"
+      unicode="&#xF55C;"
+      horiz-adv-x="448" d=" M302.5 -64C325.68 -64 346.93 -51.42 358.5 -31.34C374.69 -3.26 384 29.25 384 64C384 100.12 373.92 133.81 356.56 162.62L400 206.06L409.38 196.68C415.63 190.43 425.76 190.43 432.01 196.68L443.31 208C449.56 214.25 449.56 224.38 443.31 230.63L390.62 283.32C384.37 289.57 374.24 289.57 367.99 283.32L356.68 272.01C350.43 265.76 350.43 255.63 356.68 249.38L366.06 240L326.65 200.59C315.09 211.96 302.12 221.92 288 230.1V384.26L303.9700000000001 384.28C312.79 384.29 319.9400000000001 391.44 319.9500000000001 400.26L319.9900000000001 431.98C320 440.83 312.82 448.01 303.9700000000001 448L80.03 447.74C71.21 447.73 64.06 440.58 64.05 431.76L64.01 400.03C64 391.18 71.18 384.01 80.03 384.02L96 384.04V230.11C38.67 196.9 0 135.03 0 64C0 29.25 9.31 -3.27 25.5 -31.34C37.08 -51.42 58.33 -64 81.5 -64H302.5zM120.06 188.57L144 202.44V384.0900000000001L240 384.2V202.44L263.94 188.57C288.75 174.2 308.06 152.84 320.5 128H63.5C75.95 152.84 95.25 174.2 120.06 188.57z" />
+    <glyph glyph-name="book-alt"
+      unicode="&#xF5D9;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="book-dead"
+      unicode="&#xF6B7;"
+      horiz-adv-x="448" d=" M272 312C280.84 312 288 319.16 288 328S280.84 344 272 344S256 336.8400000000001 256 328S263.1600000000001 312 272 312zM448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM240 392C284.18 392 320 363.35 320 328C320 307.13 307.32 288.77 288 277.0900000000001V264C288 255.16 280.84 248 272 248H208C199.16 248 192 255.16 192 264V277.0900000000001C172.68 288.77 160 307.13 160 328C160 363.35 195.82 392 240 392zM129.05 214.15A7.996000000000001 7.996000000000001 0 0 0 124.85 224.65L131.14 239.35A7.995 7.995 0 0 0 141.65 243.55L240 201.4L338.35 243.55C342.4100000000001 245.29 347.12 243.4100000000001 348.86 239.35L355.1500000000001 224.65A7.996000000000001 7.996000000000001 0 0 0 350.9500000000001 214.15L280.6 184L350.9400000000001 153.85A7.996000000000001 7.996000000000001 0 0 0 355.1400000000001 143.35L348.85 128.65A8.008 8.008 0 0 0 338.3400000000001 124.4400000000001L240 166.6L141.65 124.4500000000001A8.003 8.003 0 0 0 131.14 128.66L124.85 143.36A7.996000000000001 7.996000000000001 0 0 0 129.05 153.86L199.4 184L129.05 214.15zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0zM208 312C216.84 312 224 319.16 224 328S216.84 344 208 344S192 336.8400000000001 192 328S199.16 312 208 312z" />
+    <glyph glyph-name="book-heart"
+      unicode="&#xF499;"
+      horiz-adv-x="448" d=" M448 88V424C448 437.3 437.3 448 424 448H96C43 448 0 405 0 352V32C0 -21 43 -64 96 -64H424C437.3 -64 448 -53.3 448 -40V-24C448 -16.5 444.5 -9.7 439.1 -5.3C434.9000000000001 10.1 434.9000000000001 54 439.1 69.4C444.5 73.7 448 80.5 448 88zM149.8 338.9C173.8 358.9 209.5 355.3 231.4 333.1L240 324.4L248.6 333.1C270.6 355.3 306.3 358.9 330.2 338.9C357.7 315.9 359.1 274.7 334.5 249.8L249.8 164.2000000000001C244.3 158.7000000000001 235.5 158.7000000000001 230 164.2000000000001L145.3 249.8000000000001C120.8 274.7000000000001 122.3 315.9000000000001 149.8 338.9000000000001zM381.4 0H96C78.3 0 64 14.3 64 32C64 49.6 78.4 64 96 64H381.4C379.5 46.9 379.5 17.1 381.4 0z" />
+    <glyph glyph-name="book-open"
+      unicode="&#xF518;"
+      horiz-adv-x="576" d=" M542.22 415.95C487.42 412.8400000000001 378.5 401.52 311.26 360.36C306.62 357.52 303.99 352.4700000000001 303.99 347.19V-16.68C303.99 -28.23 316.62 -35.53 327.27 -30.17C396.45 4.65 496.5 14.15 545.97 16.75C562.86 17.64 575.99 31.18 575.99 47.41V385.25C576 402.96 560.64 416.99 542.22 415.95zM264.73 360.36C197.5 401.52 88.58 412.83 33.78 415.95C15.36 416.99 0 402.96 0 385.25V47.4C0 31.16 13.13 17.62 30.02 16.74C79.51 14.1399999999999 179.61 4.6299999999999 248.79 -30.21C259.4100000000001 -35.5600000000001 272 -28.27 272 -16.7500000000001V347.37C272 352.6600000000001 269.38 357.51 264.73 360.36z" />
+    <glyph glyph-name="book-reader"
+      unicode="&#xF5DA;"
+      horiz-adv-x="512" d=" M352 352C352 405.02 309.02 448 256 448S160 405.02 160 352S202.98 256 256 256S352 298.98 352 352zM233.59 206.9C174.26 243.22 78.16 253.2 29.8 255.95C13.55 256.87 0 244.49 0 228.86V6.06C0 -8.27 11.59 -20.22 26.49 -20.99C70.15 -23.28 158.48 -31.67 219.53 -62.42C228.9 -67.14 240.01 -60.71 240.01 -50.55V195.44C240 200.11 237.69 204.39 233.59 206.9zM482.2 255.95C433.85 253.21 337.74 243.22 278.4200000000001 206.9C274.3200000000001 204.39 272.0100000000001 199.94 272.0100000000001 195.27V-50.52C272.0100000000001 -60.71 283.1500000000001 -67.15 292.5500000000001 -62.42C353.5900000000001 -31.6999999999999 441.8700000000001 -23.3099999999999 485.5200000000001 -21.02C500.4200000000001 -20.24 512.0100000000001 -8.29 512.0100000000001 6.04V228.86C512.0000000000001 244.49 498.4500000000001 256.87 482.2000000000001 255.95z" />
+    <glyph glyph-name="book-spells"
+      unicode="&#xF6B8;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM272 288L298.6600000000001 234.67L352 208L298.66 181.33L272 128L245.34 181.33L192 208L245.34 234.67L272 288zM160 352L176 384L192 352L224 336L192 320L176 288L160 320L128 336L160 352zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="book"
+      unicode="&#xF02D;"
+      horiz-adv-x="448" d=" M448 88V424C448 437.3 437.3 448 424 448H96C43 448 0 405 0 352V32C0 -21 43 -64 96 -64H424C437.3 -64 448 -53.3 448 -40V-24C448 -16.5 444.5 -9.7 439.1 -5.3C434.9000000000001 10.1 434.9000000000001 54 439.1 69.4C444.5 73.7 448 80.5 448 88zM128 314C128 317.3 130.7 320 134 320H346C349.3 320 352 317.3 352 314V294C352 290.7 349.3 288 346 288H134C130.7 288 128 290.7 128 294V314zM128 250C128 253.3 130.7 256 134 256H346C349.3 256 352 253.3 352 250V230C352 226.7 349.3 224 346 224H134C130.7 224 128 226.7 128 230V250zM381.4 0H96C78.3 0 64 14.3 64 32C64 49.6 78.4 64 96 64H381.4C379.5 46.9 379.5 17.1 381.4 0z" />
+    <glyph glyph-name="bookmark"
+      unicode="&#xF02E;"
+      horiz-adv-x="384" d=" M0 -64V400C0 426.51 21.49 448 48 448H336C362.51 448 384 426.51 384 400V-64L192 48L0 -64z" />
+    <glyph glyph-name="books"
+      unicode="&#xF5DB;"
+      horiz-adv-x="576" d=" M575.11 4.75L461.51 428.94C458.2 441.3 445.61 451.18 430.15 447.04L414.7 442.9C408.52 441.24 403.17 436.5 398.64 428.6600000000001C384.61 421.7200000000001 346.34 411.45 330.64 410.44C322.8 414.9700000000001 315.79 416.4 309.61 414.74L294.1500000000001 410.6C291.73 409.95 289.9500000000001 408.65 288.0000000000001 407.52V416C288.0000000000001 433.67 273.6700000000001 448 256.0000000000001 448H192.0000000000001C174.3300000000001 448 160.0000000000001 433.67 160.0000000000001 416V352H288.0000000000001L389.6600000000001 -44.94C392.9700000000001 -57.3 405.5600000000001 -67.1799999999999 421.0200000000001 -63.04L436.4700000000001 -58.9C442.6500000000001 -57.24 448.0000000000001 -52.5000000000001 452.5300000000001 -44.66C466.4400000000001 -37.78 504.7100000000001 -27.46 520.5300000000001 -26.4400000000001C528.3700000000001 -30.97 535.3800000000001 -32.4 541.5600000000001 -30.7400000000001L557.0200000000001 -26.6000000000001C572.4700000000001 -22.4600000000001 578.4300000000001 -7.6100000000001 575.1100000000001 4.7499999999999zM440.7100000000001 11.81L348.64 355.63L410.46 372.19L502.53 28.37L440.71 11.81zM0 64H128V320H0V64zM96 448H32C14.33 448 0 433.67 0 416V352H128V416C128 433.67 113.67 448 96 448zM0 -32C0 -49.67 14.33 -64 32 -64H96C113.67 -64 128 -49.67 128 -32V32H0V-32zM160 64H288V320H160V64zM160 -32C160 -49.67 174.33 -64 192 -64H256C273.67 -64 288 -49.67 288 -32V32H160V-32z" />
+    <glyph glyph-name="boot"
+      unicode="&#xF782;"
+      horiz-adv-x="512" d=" M0 -32L32 -64H96L128 -32L160 -64H224L256 -32L288 -64H352L384 -32L416 -64H480L512 -32V0H0V-32zM352 368V432C352 440.8 344.8 448 336 448H16C7.2 448 0 440.8 0 432V352H336C344.8 352 352 359.2 352 368zM439.3 162.2L320 192H264C259.6 192 256 195.6 256 200V216C256 220.4 259.6 224 264 224H320V256H264C259.6 256 256 259.6 256 264V280C256 284.4 259.6 288 264 288H320V320H0V32H512V69C512 113.1 482 151.5 439.3 162.2z" />
+    <glyph glyph-name="booth-curtain"
+      unicode="&#xF734;"
+      horiz-adv-x="512" d=" M480 448H448V-48C448 -56.8 455.2 -64 464 -64H496C504.8 -64 512 -56.8 512 -48V416C512 433.7 497.7 448 480 448zM0 416V-48C0 -56.8 7.2 -64 16 -64H48C56.8 -64 64 -56.8 64 -48V384H96V448H32C14.3 448 0 433.7 0 416zM416 448H128V48C128 21.5 149.5 0 176 0C190.7 0 203.9 6.6 212.7 17C218.4 23.8 229.6 23.8 235.3 17C244.1 6.6 257.3 0 272 0S299.9 6.6 308.7 17C314.4 23.8 325.6 23.8 331.3 17C340.1 6.6 353.3 0 368 0C394.5 0 416 21.5 416 48V448z" />
+    <glyph glyph-name="bow-arrow"
+      unicode="&#xF6B9;"
+      horiz-adv-x="512" d=" M145.78 160.97L191.04 206.22L100.46 296.8C128.24 311.92 159.49 320 192 320C224.03 320 254.86 312.2100000000001 282.33 297.53L328.94 344.14C288.35 369.9700000000001 241.3 384 192 384C142.22 384 94.71 369.73 53.84 343.41L49.94 347.31C43.69 353.56 33.56 353.56 27.31 347.31L4.69 324.69C-1.56 318.44 -1.56 308.31 4.69 302.06L145.78 160.97zM408.14 265.61L361.53 219C376.21 191.53 384 160.7 384 128.67C384 96.16 375.92 64.9 360.8 37.12L270.2200000000001 127.7L224.96 82.44L366.7200000000001 -59.32C372.9700000000001 -65.5699999999999 383.1 -65.5699999999999 389.35 -59.32L411.98 -36.69C418.23 -30.44 418.23 -20.31 411.98 -14.06L407.4100000000001 -9.49C433.74 31.37 448 78.89 448 128.67C448 177.96 433.9700000000001 225.02 408.14 265.61zM493.22 447.69L364.63 421.9700000000001C352.34 419.51 347.75 404.35 356.61 395.48L391.0800000000001 361.01L140.4400000000001 110.38L90.7400000000001 126.95A20.578 20.578 0 0 1 69.7000000000001 121.99L6.03 58.31C-4.77 47.51 -0.43 29.11 14.07 24.27L69.73 5.72L88.28 -49.93C93.11 -64.4300000000001 111.51 -68.77 122.32 -57.97L185.99 5.7A20.56 20.56 0 0 1 190.96 26.74L174.39 76.44L425.03 327.08L459.5 292.61C468.36 283.75 483.53 288.34 485.99 300.63L511.71 429.2200000000001C513.88 440.2 504.2 449.88 493.22 447.69z" />
+    <glyph glyph-name="bowling-ball"
+      unicode="&#xF436;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM120 256C102.3 256 88 270.3 88 288S102.3 320 120 320S152 305.7 152 288S137.7 256 120 256zM184 352C184 369.7 198.3 384 216 384S248 369.7 248 352S233.7 320 216 320S184 334.3 184 352zM232 208C214.3 208 200 222.3 200 240S214.3 272 232 272S264 257.7 264 240S249.7 208 232 208z" />
+    <glyph glyph-name="bowling-pins"
+      unicode="&#xF437;"
+      horiz-adv-x="448" d=" M314.8 288C314 323.8 293.9000000000001 347.1 296 384C297.9 418.2 318.7 447.9 352 448C385.4 447.9 406.1 418.3 408 384C410.1 347.1 390 323.7 389.2 288H314.8zM443.7000000000001 128C432.9000000000001 176.1 403.8000000000001 210.8 393.0000000000001 256H311.1C300.3 210.8 271.2000000000001 176.1 260.4000000000001 128C248.9000000000001 76.9 261.0000000000001 -12.5 287.1 -64H417.1C443.1 -12.5 455.1 77 443.7000000000001 128zM133.2 288C134 323.8 154.1 347.1 152 384C150.1 418.2 129.3 447.9 96 448C62.6 447.9 41.9 418.2 40 384C37.9 347.1 58 323.8 58.8 288H133.2zM136.9 256H55.1C44.3 210.8 15.1 176.1 4.4 128C-7.1 76.9 4.9 -12.5 31 -64H161C187.1 -12.5 199.1 76.9 187.7 128C176.9 176.1 147.7 210.8 136.9 256z" />
+    <glyph glyph-name="box-alt"
+      unicode="&#xF49A;"
+      horiz-adv-x="448" d=" M446.7 288C447.1 288.5 447.2 288.7 447.6 289.2L391.3 394.1C386.9 407.2 374.7 416 360.9 416H256L288 288H446.7zM160 288L192 416H87.1C73.3 416 61.1 407.2 56.7 394.1L0.4 289.2C0.8 288.7 0.9 288.5 1.3 288H160zM288 256V176C288 167.2 280.8 160 272 160H176C167.2 160 160 167.2 160 176V256H0V0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0V256H288z" />
+    <glyph glyph-name="box-ballot"
+      unicode="&#xF735;"
+      horiz-adv-x="576" d=" M432 256L431.5 431.4C431.5 440.2 424.3 447.4 415.5 447.4L159.7 448C150.8 448 143.5 440.8 143.5 431.8L144 256H432zM0 128V-32C0 -49.7 14.3 -64 32 -64H544C561.7 -64 576 -49.7 576 -32V128H0zM574.7 160C575.1 160.5 575.2 160.7 575.5 161.2L520 299.8C515.1 311.9 503.4 319.9 490.3 319.9H463.7L463.9 255.9L479.9 223.9H95.5L111.5 255.9H112L111.8 319.9H85.7C72.6 319.9 60.9 311.9 56 299.8L0.4 161.2C0.7 160.7 0.9 160.5 1.2 160H574.7z" />
+    <glyph glyph-name="box-check"
+      unicode="&#xF467;"
+      horiz-adv-x="640" d=" M240 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C1.7 261 1.7 258.5 1.3 256H240V448zM475.2 366.3L458.9 415.1C452.4 434.8 434.1 448 413.4 448H272V290.6C315.9 338.1 378.4 368 448 368C457.2 368 466.3 367.4 475.2 366.3zM208 128C208 162.1 215.3 194.6 228.2 224H0V-16C0 -42.5 21.5 -64 48 -64H304.6C246.1 -20.2 208 49.4 208 128zM448 320C342 320 256 234 256 128S342 -64 448 -64S640 22 640 128S554 320 448 320zM562.1 172.2L431.1 42.2C426.8 37.9 419.8 37.9 415.5 42.3L339.8 118.6C335.5 122.9 335.6 129.9 339.9000000000001 134.2000000000001L365.9000000000001 160.0000000000001C370.2000000000001 164.3000000000001 377.2000000000001 164.2000000000001 381.5000000000001 159.9L423.6000000000001 117.4L520.8000000000001 213.8000000000001C525.1 218.1000000000001 532.1 218 536.4000000000001 213.7000000000001L562.2 187.7000000000001C566.4000000000001 183.4 566.4000000000001 176.4 562.1 172.2000000000001z" />
+    <glyph glyph-name="box-fragile"
+      unicode="&#xF49B;"
+      horiz-adv-x="448" d=" M416 416H32C14.3 416 0 401.7 0 384V0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0V384C448 401.7 433.7 416 416 416zM320 256C320 208.5 285.4 169.3 240 161.6V64H280C284.4 64 288 60.4 288 56V40C288 35.6 284.4 32 280 32H168C163.6 32 160 35.6 160 40V56C160 60.4 163.6 64 168 64H208V161.6C162.6 169.3 128 208.4 128 256V336C128 344.8 135.2 352 144 352H204.4L228.9 324.4000000000001L164.9 292.4000000000001L255.9 224L218.9 283.6L282.9 315.6L260.1 352H304C312.8 352 320 344.8 320 336V256z" />
+    <glyph glyph-name="box-full"
+      unicode="&#xF49C;"
+      horiz-adv-x="640" d=" M53.2 279L1.7 176.2C-2.9 167 2 156 11.8 153.2L209.7 96.7C216.8 94.7 224.4 97.7 228.2 104L320 256L69.8 287.9C62.9 288.7000000000001 56.3 285.2000000000001 53.2 279zM638.3000000000001 176.2L586.8 279C583.6999999999999 285.2 577 288.8 570.0999999999999 287.9L320 256L411.7 103.9C415.5 97.6 423.1 94.6 430.2 96.6L628.1 153.1C638 156 642.8000000000001 167 638.3000000000001 176.2zM384.3000000000001 87.4L320 194L255.8 87.4C249.4 76.7 229.7 57.6 201.1 65.8L64 105V23C64 8.3 74 -4.5 88.2 -8L304.4 -62.1C314.6 -64.6 325.3 -64.6 335.4 -62.1L551.8 -8C566 -4.4 576 8.4 576 23V105L439 65.9C410.5 57.7 390.8 76.6 384.3 87.4zM194.2 304.3C192.9 309.4 192 314.6 192 320C192 355.3 220.7 384 256 384S320 355.3 320 320C320 308.8 316.9 298.5 311.8 289.3L320 288.3L475.3 308L511 406.3C514 414.6 509.7 423.8 501.4 426.8L445.9 447C437.6 450 428.4 445.7 425.4 437.4L383.7 323C382 392.3 325.7 448 256 448C185.3 448 128 390.7 128 320C128 317.5 128.6 315.1 128.7 312.6L194.2 304.3z" />
+    <glyph glyph-name="box-heart"
+      unicode="&#xF49D;"
+      horiz-adv-x="448" d=" M447.6 289.2L391.3 394.1C386.9 407.2 374.7 416 360.9 416H240V288H446.7C447.1 288.5 447.2 288.7 447.6 289.2zM0 256V0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0V256H0zM305.1 106.8L232.5000000000001 35.4C227.8000000000001 30.8 220.2 30.8 215.5 35.4L142.9 106.8C121.8000000000001 127.5 123.1 161.9 146.6 181C167.1 197.6999999999999 197.7 194.6999999999999 216.6 176.1999999999999L224 168.8999999999999L231.4000000000001 176.1999999999999C250.2000000000001 194.6999999999999 280.8 197.6999999999999 301.4000000000001 181C324.9000000000001 161.8999999999999 326.1 127.6 305.1 106.8zM208 288V416H87.1C73.3 416 61.1 407.2 56.7 394.1L0.4 289.2C0.8 288.7 0.9 288.5 1.3 288H208z" />
+    <glyph glyph-name="box-open"
+      unicode="&#xF49E;"
+      horiz-adv-x="640" d=" M53.2 407L1.7 304.2C-2.9 295 2 284 11.8 281.2L209.7 224.7C216.8 222.7 224.4 225.7 228.2 232L320 384L69.8 415.9C62.9 416.7 56.3 413.2 53.2 407zM638.3000000000001 304.2L586.8 407C583.6999999999999 413.2 577 416.8 570.0999999999999 415.9L320 384L411.7 231.9C415.5 225.6 423.1 222.6 430.2 224.6L628.1 281.1C638 284 642.8000000000001 295 638.3000000000001 304.2zM425.7 192C408.8 192 392.9 201 384.3 215.4L320 322L255.8 215.4C247.1 200.9 231.2 191.9 214.3 191.9C209.8 191.9 205.3 192.5 201 193.8L64 233V55C64 40.3 74 27.5 88.2 24L304.4 -30.1C314.6 -32.6 325.3 -32.6 335.4 -30.1L551.8 24C566 27.6 576 40.4 576 55V233L439 193.9C434.7 192.6 430.2 192 425.7 192z" />
+    <glyph glyph-name="box-up"
+      unicode="&#xF49F;"
+      horiz-adv-x="448" d=" M416 416H32C14.3 416 0 401.7 0 384V0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0V384C448 401.7 433.7 416 416 416zM57.8 269L121.8 349C124.8 352.8 131.3 352.8 134.3 349L198.3 269C202.5 263.8 198.7 256 192.1 256H160.1V144C160.1 135.2 152.9 128 144.1 128H112.1C103.3 128 96.1 135.2 96.1 144V256H64C57.3 256 53.6 263.8 57.8 269zM384 40C384 35.6 380.4 32 376 32H72C67.6 32 64 35.6 64 40V56C64 60.4 67.6 64 72 64H376C380.4 64 384 60.4 384 56V40zM384 256H352V144C352 135.2 344.8 128 336 128H304C295.2 128 288 135.2 288 144V256H256C249.3 256 245.6 263.8 249.8 269L313.8 349C316.8 352.8 323.3 352.8 326.3 349L390.3 269C394.4000000000001 263.8 390.7 256 384 256z" />
+    <glyph glyph-name="box-usd"
+      unicode="&#xF4A0;"
+      horiz-adv-x="448" d=" M447.6 289.2L391.3 394.1C386.9 407.2 374.7 416 360.9 416H240V288H446.7C447.1 288.5 447.2 288.7 447.6 289.2zM208 288V416H87.1C73.3 416 61.1 407.2 56.7 394.1L0.4 289.2C0.8 288.7 0.9 288.5 1.3 288H208zM0 256V0C0 -17.7 14.3 -32 32 -32H416C433.7 -32 448 -17.7 448 0V256H0zM240 32.1V16C240 11.6 236.4 8 232 8H216C211.6 8 208 11.6 208 16V32.3C196.7 32.9 185.7 36.8 176.6 43.6C172.7 46.5 172.5 52.4 176 55.7L187.8 66.9C190.6 69.5000000000001 194.7 69.7000000000001 197.9 67.6C201.8 65.2000000000001 206.2 63.9 210.7 63.9H238.8C245.3 63.9 250.6 69.8 250.6 77.1C250.6 83.1 247.0000000000001 88.3 241.8 89.8L196.8 103.3C178.2 108.9 165.2 126.7 165.2 146.7C165.2 171.2 184.2 191.1 207.9 191.8V208C207.9 212.4 211.5 216 215.9 216H231.9000000000001C236.3000000000001 216 239.9000000000001 212.4 239.9000000000001 208V191.7C251.2000000000001 191.1 262.2000000000001 187.2 271.3 180.4C275.2 177.5 275.4000000000001 171.6 271.9000000000001 168.3L260.2 157C257.4 154.4 253.3 154.2 250.1 156.3C246.2 158.7 241.8 160 237.3 160H209.2C202.7 160 197.4 154.1 197.4 146.8C197.4 140.8 201 135.6 206.2 134.1L251.2 120.6C269.8 115 282.8 97.2000000000001 282.8 77.2000000000001C282.7 52.7 263.6 32.7 240 32.1z" />
+    <glyph glyph-name="box"
+      unicode="&#xF466;"
+      horiz-adv-x="512" d=" M509.5 263.4L458.9 415.2C452.4 434.8 434.1 448 413.4 448H272V256H510.7C510.3 258.5 510.3 261 509.5 263.4zM240 448H98.6C77.9 448 59.6 434.8 53.1 415.2L2.5 263.4C1.7 261 1.7 258.5 1.3 256H240V448zM0 224V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V224H0z" />
+    <glyph glyph-name="boxes-alt"
+      unicode="&#xF4A1;"
+      horiz-adv-x="576" d=" M240 160H160V72C160 67.6 156.4 64 152 64H104C99.6 64 96 67.6 96 72V160H16C7.2 160 0 152.8 0 144V-48C0 -56.8 7.2 -64 16 -64H240C248.8 -64 256 -56.8 256 -48V144C256 152.8 248.8 160 240 160zM176 224H400C408.8 224 416 231.2 416 240V432C416 440.8 408.8 448 400 448H320V360C320 355.6 316.4 352 312 352H264C259.6 352 256 355.6 256 360V448H176C167.2 448 160 440.8 160 432V240C160 231.2 167.2 224 176 224zM560 160H480V72C480 67.6 476.4 64 472 64H424C419.6 64 416 67.6 416 72V160H336C327.2 160 320 152.8 320 144V-48C320 -56.8 327.2 -64 336 -64H560C568.8 -64 576 -56.8 576 -48V144C576 152.8 568.8 160 560 160z" />
+    <glyph glyph-name="boxes"
+      unicode="&#xF468;"
+      horiz-adv-x="576" d=" M560 160H480V64L448 85.3L416 64V160H336C327.2 160 320 152.8 320 144V-48C320 -56.8 327.2 -64 336 -64H560C568.8 -64 576 -56.8 576 -48V144C576 152.8 568.8 160 560 160zM176 224H400C408.8 224 416 231.2 416 240V432C416 440.8 408.8 448 400 448H320V352L288 373.3L256 352V448H176C167.2 448 160 440.8 160 432V240C160 231.2 167.2 224 176 224zM240 160H160V64L128 85.3L96 64V160H16C7.2 160 0 152.8 0 144V-48C0 -56.8 7.2 -64 16 -64H240C248.8 -64 256 -56.8 256 -48V144C256 152.8 248.8 160 240 160z" />
+    <glyph glyph-name="boxing-glove"
+      unicode="&#xF438;"
+      horiz-adv-x="448" d=" M384 288H352.9C326.6 288 304.6 267.2 304.1 240.9C303.6 216.3 321.7 195.8 345.2 192.5C349.2 191.9 352.1 188.4 352.1 184.4V168.4C352.1 163.7 348 159.9 343.3 160.4C303.3 164.8 272.1 198.8 272.1 239.9C272.1 245.4 272.7 250.7 273.7 255.9H141.2C110.6 255.9 81.7 266.8 58.9 286.7C55.4 289.8 55.2 295.1 58.5 298.4L69.8 309.7C72.8 312.7 77.5 312.8 80.7 310.1C97.6 295.7 118.8 287.8 141.2 287.8H288V287.3C316.4 325.4 354.9 319.8 384 319.8V352C384 405 341 448 288 448H96C43.3 448 0 404.9 0 352.1C0 288.2 5.3 224.3 15.8 161.3L32 64H72C76.4 64 80 60.4 80 56V40C80 35.6 76.4 32 72 32H32V-32C32 -49.7 46.3 -64 64 -64H320C337.7 -64 352 -49.7 352 -32V32H312C307.6 32 304 35.6 304 40V56C304 60.4 307.6 64 312 64H352L410.5 122.5C450.8 162.9 448 210.2 448 224C448 259.3 419.3 288 384 288zM260.8 6.4L251.2 -6.4C248.6 -9.9 243.5000000000001 -10.7 240.0000000000001 -8.0000000000001L192 27.9999999999999L144 -8.0000000000001C140.5 -10.7 135.4 -9.9 132.8000000000001 -6.4L123.2000000000001 6.4C120.6000000000001 9.9 121.3000000000001 14.9 124.8000000000001 17.6L165.3000000000001 47.9999999999999L124.8000000000001 78.3999999999999C121.3000000000001 80.9999999999999 120.5000000000001 86.0999999999999 123.2000000000001 89.5999999999999L132.8000000000001 102.3999999999999C135.4 105.8999999999999 140.5 106.6999999999999 144 103.9999999999999L192 67.9999999999999L240.0000000000001 103.9999999999999C243.5000000000001 106.6999999999999 248.6 105.8999999999999 251.2 102.3999999999999L260.8 89.5999999999999C263.4000000000001 86.0999999999999 262.7 81.0999999999999 259.2 78.3999999999999L218.7 48L259.2 17.6C262.7 15 263.4 9.9 260.8 6.4z" />
+    <glyph glyph-name="braille"
+      unicode="&#xF2A1;"
+      horiz-adv-x="640" d=" M128 192C128 156.654 99.346 128 64 128S0 156.654 0 192S28.654 256 64 256S128 227.346 128 192zM64 64C46.327 64 32 49.673 32 32S46.327 0 64 0S96 14.327 96 32S81.673 64 64 64zM64 416C28.654 416 0 387.346 0 352S28.654 288 64 288S128 316.654 128 352S99.346 416 64 416zM224 224C206.327 224 192 209.673 192 192S206.327 160 224 160S256 174.327 256 192S241.673 224 224 224zM224 64C206.327 64 192 49.673 192 32S206.327 0 224 0S256 14.327 256 32S241.673 64 224 64zM224 416C188.654 416 160 387.346 160 352S188.654 288 224 288S288 316.654 288 352S259.346 416 224 416zM448 224C430.327 224 416 209.673 416 192S430.327 160 448 160S480 174.327 480 192S465.673 224 448 224zM448 64C430.327 64 416 49.673 416 32S430.327 0 448 0S480 14.327 480 32S465.673 64 448 64zM448 416C412.654 416 384 387.346 384 352S412.654 288 448 288S512 316.654 512 352S483.346 416 448 416zM608 224C590.327 224 576 209.673 576 192S590.327 160 608 160S640 174.327 640 192S625.673 224 608 224zM608 64C590.327 64 576 49.673 576 32S590.327 0 608 0S640 14.327 640 32S625.673 64 608 64zM608 384C590.327 384 576 369.673 576 352S590.327 320 608 320S640 334.327 640 352S625.673 384 608 384z" />
+    <glyph glyph-name="brain"
+      unicode="&#xF5DC;"
+      horiz-adv-x="576" d=" M208 448C178.13 448 153.26 427.45 146.2 399.78C145.45 399.8 144.75 400 144 400C108.66 400 80 371.35 80 336C80 331.16 80.64 326.49 81.66 321.9600000000001C52.54 310 32 281.43 32 248C32 235.42 35.16 223.68 40.34 213.09C16.34 199.28 0 173.67 0 144C0 110.66 20.42 82.12 49.42 70.11C48.52 65.54 48 60.83 48 56C48 16.24 80.23 -16 120 -16C124.12 -16 128.1 -15.45 132.03 -14.79C141.61 -43.31 168.25 -64 200 -64C239.77 -64 272 -31.76 272 8V242.55C261.09 233.57 248.02 227.1 233.64 224.16C228.67 223.14 224 226.98 224 232.05V248.23C224 251.8 226.35 255.01 229.8 255.89C254 262.05 272 283.8400000000001 272 309.93V384C272 419.35 243.34 448 208 448zM576 144C576 173.67 559.66 199.28 535.66 213.09C540.8299999999999 223.68 544 235.42 544 248C544 281.43 523.46 310 494.34 321.96C495.36 326.49 496.0000000000001 331.16 496.0000000000001 336C496.0000000000001 371.35 467.34 400 432.0000000000001 400C431.2500000000001 400 430.5500000000001 399.8 429.8000000000001 399.78C422.74 427.45 397.87 448 368 448C332.66 448 304 419.35 304 384V309.93C304 283.8400000000001 321.99 262.05 346.2 255.89C349.66 255.01 352 251.8 352 248.23V232.05C352 226.98 347.32 223.14 342.36 224.16C327.98 227.1 314.92 233.57 304 242.55V8C304 -31.76 336.23 -64 376 -64C407.75 -64 434.39 -43.31 443.9700000000001 -14.79C447.9000000000001 -15.46 451.8800000000001 -16 456 -16C495.77 -16 528 16.24 528 56C528 60.83 527.48 65.54 526.58 70.11C555.58 82.12 576 110.66 576 144z" />
+    <glyph glyph-name="briefcase-medical"
+      unicode="&#xF469;"
+      horiz-adv-x="512" d=" M464 320H384V368C384 394.5 362.5 416 336 416H176C149.5 416 128 394.5 128 368V320H48C21.5 320 0 298.5 0 272V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V272C512 298.5 490.5 320 464 320zM192 352H320V320H192V352zM352 104C352 99.6 348.4 96 344 96H288V40C288 35.6 284.4 32 280 32H232C227.6 32 224 35.6 224 40V96H168C163.6 96 160 99.6 160 104V152C160 156.4 163.6 160 168 160H224V216C224 220.4 227.6 224 232 224H280C284.4 224 288 220.4 288 216V160H344C348.4 160 352 156.4 352 152V104z" />
+    <glyph glyph-name="briefcase"
+      unicode="&#xF0B1;"
+      horiz-adv-x="512" d=" M320 112C320 103.16 312.84 96 304 96H208C199.16 96 192 103.16 192 112V160H0V16C0 -9.6 22.4 -32 48 -32H464C489.6 -32 512 -9.6 512 16V160H320V112zM464 320H384V368C384 393.6 361.6 416 336 416H176C150.4 416 128 393.6 128 368V320H48C22.4 320 0 297.6 0 272V192H512V272C512 297.6 489.6 320 464 320zM320 320H192V352H320V320z" />
+    <glyph glyph-name="broadcast-tower"
+      unicode="&#xF519;"
+      horiz-adv-x="640" d=" M150.94 256H184.67C195.68 256 203.28 266.8300000000001 199.53 277.18C194.6 290.76 191.98 305.16 191.98 320S194.6 349.24 199.53 362.82C203.29 373.17 195.68 384 184.67 384H150.94C143.93 384 137.48 379.51 135.53 372.77C130.64 355.79 128 338.12 128 320C128 301.88 130.64 284.2100000000001 135.54 267.24C137.48 260.5 143.93 256 150.94 256zM89.92 424.6600000000001C95.56 435.28 87.97 448 75.96 448H40.63C34.36 448 28.49 444.4100000000001 25.89 438.69C9.4 402.46 0 362.35 0 320C0 295.25 3.12 251.67 26.69 201.14C29.31 195.51 35.11 192 41.3 192H76.14C88.16 192 95.75 204.74 90.09 215.37C40.31 308.69 73.38 393.52 89.92 424.66zM614.06 438.71C611.46 444.42 605.6 448 599.33 448H563.9100000000001C551.9300000000001 448 544.2500000000001 435.34 549.8900000000001 424.75C568.1600000000001 390.46 598.3100000000001 305.33 550.1700000000001 215.52C544.45 204.84 551.97 192 564.08 192H599.3100000000001C605.58 192 611.44 195.58 614.0400000000001 201.29C630.57 237.52 640 277.64 640 320S630.58 402.48 614.06 438.71zM489.06 384H455.33C444.32 384 436.72 373.17 440.47 362.82C445.4 349.24 448.02 334.84 448.02 320S445.4 290.76 440.47 277.18C436.71 266.8300000000001 444.32 256 455.33 256H489.06C496.08 256 502.52 260.49 504.47 267.24C509.37 284.2100000000001 512 301.88 512 320C512 338.12 509.36 355.79 504.46 372.76C502.52 379.51 496.07 384 489.06 384zM372.76 283.88C379.81 294.17 383.96 306.5900000000001 383.96 320C383.96 355.35 355.33 384 320 384C284.68 384 256.04 355.35 256.04 320C256.04 306.5900000000001 260.19 294.17 267.24 283.88L136.74 -29.53C133.34 -37.68 137.2 -47.05 145.35 -50.45L174.86 -62.76C183.01 -66.1600000000001 192.38 -62.3000000000001 195.77 -54.15L244.96 64H395.03L444.23 -54.15C447.63 -62.31 456.99 -66.16 465.14 -62.76L494.65 -50.45C502.8 -47.05 506.65 -37.68 503.26 -29.53L372.76 283.8800000000001zM271.62 128L320 244.19L368.38 128H271.62z" />
+    <glyph glyph-name="broom"
+      unicode="&#xF51A;"
+      horiz-adv-x="640" d=" M256.4700000000001 231.23L343.2000000000001 122.05S326.6 19.6899999999999 266.6300000000001 -28.07C206.66 -75.85 0 -62.19 0 -62.19S3.8 -39.05 11 -6.76L105.62 105.41C109.59 110.11 104.75 117.03 98.97 114.91L38.57 92.8200000000001C53.01 134.48 71.29 172.8600000000001 93.17 190.2900000000001C153.14 238.0500000000001 256.4700000000001 231.2300000000001 256.4700000000001 231.2300000000001zM636.53 416.9700000000001L616.67 441.9700000000001C611.18 448.87 601.15 450.02 594.26 444.53L361.78 266.73L327.64 309.7C322.55 316.11 312.5 314.91 309.05 307.49L283.7200000000001 252.94L370.4500000000001 143.76L429.2500000000001 156.21C437.2500000000001 157.9 440.6700000000001 167.41 435.5900000000001 173.81L401.5 216.73L633.98 394.5300000000001C640.87 400.0100000000001 642.02 410.0600000000001 636.53 416.9700000000001z" />
+    <glyph glyph-name="browser"
+      unicode="&#xF37E;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM128 300C128 293.4 122.6 288 116 288H76C69.4 288 64 293.4 64 300V340C64 346.6 69.4 352 76 352H116C122.6 352 128 346.6 128 340V300zM448 300C448 293.4 442.6 288 436 288H188C181.4 288 176 293.4 176 300V340C176 346.6 181.4 352 188 352H436C442.6 352 448 346.6 448 340V300z" />
+    <glyph glyph-name="brush"
+      unicode="&#xF55D;"
+      horiz-adv-x="384" d=" M352 448H32C14.33 448 0 433.67 0 416V192H384V416C384 433.67 369.67 448 352 448zM0 128C0 92.65 28.66 64 64 64H128V0C128 -35.35 156.66 -64 192 -64S256 -35.35 256 0V64H320C355.3400000000001 64 384 92.65 384 128V160H0V128zM192 24C205.25 24 216 13.26 216 0C216 -13.25 205.25 -24 192 -24S168 -13.25 168 0C168 13.26 178.75 24 192 24z" />
+    <glyph glyph-name="bug"
+      unicode="&#xF188;"
+      horiz-adv-x="512" d=" M511.988 159.1C511.51 141.67 496.771 128 479.335 128H424V112C424 90.136 419.118 69.416 410.4 50.855L470.628 -9.373C483.124 -21.87 483.124 -42.131 470.628 -54.628C458.13 -67.125 437.869 -67.124 425.372 -54.628L370.636 0.108C345.886 -19.965 314.351 -32 280 -32V212C280 218.627 274.627 224 268 224H244C237.373 224 232 218.627 232 212V-32C197.649 -32 166.114 -19.965 141.364 0.108L86.628 -54.628C74.13 -67.125 53.869 -67.124 41.372 -54.628C28.876 -42.131 28.876 -21.87 41.372 -9.373L101.6 50.855C92.882 69.416 88 90.136 88 112V128H32.666C15.23 128 0.491 141.67 0.013 159.1C-0.484 177.184 14.028 192 32 192H88V250.745L41.372 297.373C28.876 309.87 28.876 330.131 41.372 342.628C53.87 355.125 74.13 355.125 86.628 342.628L141.255 288H370.7440000000001L425.3710000000001 342.627C437.8690000000001 355.124 458.129 355.124 470.6270000000001 342.627C483.123 330.13 483.123 309.8690000000001 470.6270000000001 297.372L424 250.745V192H480C497.972 192 512.484 177.184 511.988 159.1zM257 448C195.144 448 145 397.856 145 336H369C369 397.856 318.856 448 257 448z" />
+    <glyph glyph-name="building"
+      unicode="&#xF1AD;"
+      horiz-adv-x="448" d=" M436 -32H416V424C416 437.255 405.255 448 392 448H56C42.745 448 32 437.255 32 424V-32H12C5.373 -32 0 -37.373 0 -44V-64H448V-44C448 -37.373 442.627 -32 436 -32zM128 372C128 378.627 133.373 384 140 384H180C186.627 384 192 378.627 192 372V332C192 325.373 186.627 320 180 320H140C133.373 320 128 325.373 128 332V372zM128 276C128 282.627 133.373 288 140 288H180C186.627 288 192 282.627 192 276V236C192 229.373 186.627 224 180 224H140C133.373 224 128 229.373 128 236V276zM180 128H140C133.373 128 128 133.373 128 140V180C128 186.627 133.373 192 140 192H180C186.627 192 192 186.627 192 180V140C192 133.373 186.627 128 180 128zM256 -32H192V52C192 58.627 197.373 64 204 64H244C250.627 64 256 58.627 256 52V-32zM320 140C320 133.373 314.627 128 308 128H268C261.373 128 256 133.373 256 140V180C256 186.627 261.373 192 268 192H308C314.627 192 320 186.627 320 180V140zM320 236C320 229.373 314.627 224 308 224H268C261.373 224 256 229.373 256 236V276C256 282.627 261.373 288 268 288H308C314.627 288 320 282.627 320 276V236zM320 332C320 325.373 314.627 320 308 320H268C261.373 320 256 325.373 256 332V372C256 378.627 261.373 384 268 384H308C314.627 384 320 378.627 320 372V332z" />
+    <glyph glyph-name="bullhorn"
+      unicode="&#xF0A1;"
+      horiz-adv-x="576" d=" M576 208C576 231.63 563.05 252.04 544 263.12V415.99C544 424.74 537.02 448 512 448C504.88 448 497.81 445.62 492.02 440.98L406.99 372.95C364.28 338.81 310.6600000000001 320 256 320H64C28.65 320 0 291.35 0 256V160C0 124.65 28.65 96 64 96H97.7C96.31 85.52 95.52 74.86 95.52 64C95.52 24.23 104.78 -13.35 121.08 -46.94C126.27 -57.63 137.6 -64 149.48 -64H223.76C249.81 -64 265.45 -34.16 249.66 -13.44C233.26 8.08 223.51 34.92 223.51 64C223.51 75.11 225.13 85.79 227.92 96H256C310.66 96 364.28 77.19 406.98 43.05L492.01 -24.98A32.023 32.023 0 0 1 511.99 -32C536.91 -32 543.99 -9.22 543.99 0V152.87C563.05 163.96 576 184.37 576 208zM480 66.58L446.95 93.02C392.95 136.22 325.12 160 256 160V256C325.12 256 392.95 279.78 446.95 322.98L480 349.42V66.58z" />
+    <glyph glyph-name="bullseye-arrow"
+      unicode="&#xF648;"
+      horiz-adv-x="496" d=" M305.05 349.26L321.62 299.56L231.03 208.97C221.65 199.59 221.65 184.41 231.03 175.03C240.4 165.66 255.59 165.65 264.9700000000001 175.03L355.5600000000001 265.62L405.2600000000001 249.05C412.6500000000001 246.59 420.79 248.51 426.3000000000001 254.01L489.9700000000001 317.68C500.7700000000001 328.48 496.4300000000001 346.88 481.9300000000001 351.7200000000001L426.2700000000001 370.27L407.7200000000001 425.92C402.8900000000001 440.42 384.4900000000001 444.76 373.6800000000001 433.96L310.02 370.3A20.582 20.582 0 0 1 305.05 349.26zM229.88 253.07L285.02 308.21L282.9 314.59C271.73 317.76 260.18 320 248 320C177.31 320 120 262.69 120 192S177.31 64 248 64S376 121.31 376 192C376 204.18 373.76 215.73 370.58 226.89L364.21 229.01L309.07 173.87C301.19 147.45 276.95 128 248 128C212.71 128 184 156.71 184 192C184 220.95 203.45 245.19 229.88 253.07zM484.43 266.9L448.93 231.4C443.43 225.9 436.86 221.92 429.76 219.33C431.09 210.39 432.01 201.31 432.01 192C432.01 90.31 349.72 8 248.01 8C146.32 8 64.01 90.29 64.01 192C64.01 293.69 146.3 376 248.01 376C257.43 376 266.61 375.07 275.64 373.71C278.22 380.73 281.87 387.4 287.4 392.93L322.9 428.43A247.848 247.848 0 0 1 248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192C496 218.11 491.91 243.26 484.43 266.9z" />
+    <glyph glyph-name="bullseye-pointer"
+      unicode="&#xF649;"
+      horiz-adv-x="496" d=" M242.16 207.33L27.98 146.45C12.81 142.14 11.03 121.35 25.25 114.53L93.72 81.64L4.55 -7.53C-1.52 -13.59 -1.52 -23.43 4.55 -29.49L26.51 -51.45C32.58 -57.51 42.41 -57.51 48.47 -51.45L137.64 37.72L170.53 -30.75C177.36 -44.97 198.14 -43.19 202.45 -28.02L263.32 186.16C267 199.07 255.07 210.99 242.16 207.3300000000001zM283.07 138.57L262.28 65.44C326.1600000000001 72.63 376 126.2 376 192C376 262.69 318.69 320 248 320C182.2 320 128.62 270.16 121.44 206.28L194.57 227.06C206.02 244.46 225.66 256 248 256C283.29 256 312 227.29 312 192C312 169.66 300.46 150.02 283.07 138.57zM248 440C111.03 440 0 328.9700000000001 0 192C0 183.61 0.44 175.33 1.26 167.15C6.48 171.54 12.31 175.26 19.24 177.23L64.11 189.98C64.1 190.66 64.01 191.31 64.01 191.99C64.01 293.68 146.3 375.99 248.01 375.99C349.7 375.99 432.01 293.7 432.01 191.99C432.01 90.3 349.72 7.99 248.01 7.99C247.33 7.99 246.67 8.0799999999999 246 8.09L233.25 -36.78C231.28 -43.72 227.56 -49.55 223.19 -54.76C231.36 -55.57 239.64 -56.01 248.02 -56.01C384.99 -56.01 496.02 55.02 496.02 191.99S384.9700000000001 440 248 440z" />
+    <glyph glyph-name="bullseye"
+      unicode="&#xF140;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 8C146.31 8 64 90.29 64 192C64 293.69 146.29 376 248 376C349.69 376 432 293.71 432 192C432 90.31 349.71 8 248 8zM248 320C177.31 320 120 262.69 120 192S177.31 64 248 64S376 121.31 376 192S318.69 320 248 320zM248 128C212.71 128 184 156.71 184 192S212.71 256 248 256S312 227.29 312 192S283.29 128 248 128z" />
+    <glyph glyph-name="burn"
+      unicode="&#xF46A;"
+      horiz-adv-x="384" d=" M192 448C79.7 346.7 0 227.1 0 147.5C0 23 79 -64 192 -64S384 23 384 147.5C384 227.4 303.8 347.1 192 448zM192 0C135.5 0 96 39 96 94.8C96 108.3 100.6 156.3 192 256C283.4 156.3 288 108.3 288 94.8C288 39 248.5 0 192 0z" />
+    <glyph glyph-name="bus-alt"
+      unicode="&#xF55E;"
+      horiz-adv-x="512" d=" M488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H128C145.67 -64 160 -49.67 160 -32V0H352V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V0H454.4C470.4 0 480 12.8 480 25.6V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM160 376C160 380.42 163.58 384 168 384H344C348.42 384 352 380.42 352 376V360C352 355.58 348.42 352 344 352H168C163.58 352 160 355.58 160 360V376zM112 48C94.33 48 80 62.33 80 80S94.33 112 112 112S144 97.67 144 80S129.67 48 112 48zM240 160H128C110.33 160 96 174.33 96 192V288C96 305.67 110.33 320 128 320H240V160zM272 160V320H384C401.67 320 416 305.67 416 288V192C416 174.33 401.67 160 384 160H272zM400 48C382.33 48 368 62.33 368 80S382.33 112 400 112S432 97.67 432 80S417.67 48 400 48z" />
+    <glyph glyph-name="bus-school"
+      unicode="&#xF5DD;"
+      horiz-adv-x="512" d=" M488 336H464V368C464 412.8 371.89 448 256 448S48 412.8 48 368V336H24C10.75 336 0 325.26 0 312V232C0 218.75 10.75 208 24 208H48V187.1C38.61 181.53 32 171.72 32 160V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H128C145.67 -64 160 -49.67 160 -32V0H352V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V0C465.67 0 480 14.33 480 32V160C480 171.72 473.39 181.52 464 187.1V208H488C501.25 208 512 218.75 512 232V312C512 325.26 501.25 336 488 336zM160 376C160 380.42 163.58 384 168 384H344C348.42 384 352 380.42 352 376V360C352 355.58 348.42 352 344 352H168C163.58 352 160 355.58 160 360V376zM112 64C94.33 64 80 78.33 80 96S94.33 128 112 128S144 113.67 144 96S129.67 64 112 64zM240 192H144C126.33 192 112 206.33 112 224V288C112 305.67 126.33 320 144 320H240V192zM272 192V320H368C385.67 320 400 305.67 400 288V224C400 206.33 385.67 192 368 192H272zM400 64C382.33 64 368 78.33 368 96S382.33 128 400 128S432 113.67 432 96S417.67 64 400 64z" />
+    <glyph glyph-name="bus"
+      unicode="&#xF207;"
+      horiz-adv-x="512" d=" M488 320H480V368C480 412.8 380.8 448 256 448S32 412.8 32 368V320H24C10.75 320 0 309.26 0 296V216C0 202.75 10.75 192 24 192H32V32C32 14.33 46.33 0 64 0V-32C64 -49.67 78.33 -64 96 -64H128C145.67 -64 160 -49.67 160 -32V0H352V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V0H454.4C470.4 0 480 12.8 480 25.6V192H488C501.25 192 512 202.75 512 216V296C512 309.26 501.25 320 488 320zM112 48C94.33 48 80 62.33 80 80S94.33 112 112 112S144 97.67 144 80S129.67 48 112 48zM128 160C110.33 160 96 174.33 96 192V320C96 337.67 110.33 352 128 352H384C401.67 352 416 337.67 416 320V192C416 174.33 401.67 160 384 160H128zM400 48C382.33 48 368 62.33 368 80S382.33 112 400 112S432 97.67 432 80S417.67 48 400 48z" />
+    <glyph glyph-name="business-time"
+      unicode="&#xF64A;"
+      horiz-adv-x="640" d=" M496 224C416.41 224 352 159.59 352 80S416.41 -64 496 -64S640 0.41 640 80S575.59 224 496 224zM560 73.71C560 68.3700000000001 555.63 64.0000000000001 550.29 64.0000000000001H489.72C484.38 64.0000000000001 480.01 68.3700000000001 480.01 73.71V150.28C480.01 155.62 484.38 159.99 489.72 159.99H502.29C507.6299999999999 159.99 511.9999999999999 155.62 511.9999999999999 150.28V96H550.29C555.63 96 560 91.63 560 86.29V73.71zM496 256C501.4 256 506.72 255.67 512 255.19V304C512 329.6 489.6 352 464 352H384V400C384 425.6 361.6 448 336 448H176C150.4 448 128 425.6 128 400V352H48C22.4 352 0 329.6 0 304V224H395.12C423.7200000000001 244.09 458.47 256 496 256zM320 352H192V384H320V352zM326.82 128H208C199.16 128 192 135.16 192 144V192H0V48C0 22.4 22.4 0 48 0H339.43C327.1 24.04 320 51.18 320 80C320 96.66 322.48 112.72 326.82 128z" />
+    <glyph glyph-name="cabinet-filing"
+      unicode="&#xF64B;"
+      horiz-adv-x="512" d=" M480 448H32C14.33 448 0 433.67 0 416V224H512V416C512 433.67 497.67 448 480 448zM352 296C352 291.5800000000001 348.42 288 344 288H328C323.58 288 320 291.5800000000001 320 296V320H192V296C192 291.5800000000001 188.42 288 184 288H168C163.58 288 160 291.5800000000001 160 296V336C160 344.8400000000001 167.16 352 176 352H336C344.84 352 352 344.8400000000001 352 336V296zM0 -32C0 -49.67 14.33 -64 32 -64H480C497.67 -64 512 -49.67 512 -32V192H0V-32zM160 80C160 88.84 167.16 96 176 96H336C344.84 96 352 88.84 352 80V40C352 35.58 348.42 32 344 32H328C323.58 32 320 35.58 320 40V64H192V40C192 35.58 188.42 32 184 32H168C163.58 32 160 35.58 160 40V80z" />
+    <glyph glyph-name="calculator-alt"
+      unicode="&#xF64C;"
+      horiz-adv-x="512" d=" M192 160H32C14.33 160 0 145.67 0 128V-32C0 -49.67 14.33 -64 32 -64H192C209.67 -64 224 -49.67 224 -32V128C224 145.67 209.67 160 192 160zM162.91 19.71C166.03 16.59 166.03 11.52 162.91 8.4L151.6 -2.91C148.48 -6.03 143.41 -6.03 140.29 -2.91L112 25.37L83.71 -2.92C80.59 -6.04 75.52 -6.04 72.4 -2.92L61.09 8.4C57.97 11.52 57.97 16.59 61.09 19.71L89.37 48L61.08 76.29C57.96 79.41 57.96 84.48 61.08 87.6L72.39 98.91C75.51 102.03 80.58 102.03 83.7 98.91L112 70.63L140.29 98.92C143.41 102.04 148.48 102.04 151.6 98.92L162.91 87.61C166.03 84.49 166.03 79.42 162.91 76.3L134.63 48L162.91 19.71zM480 448H320C302.33 448 288 433.67 288 416V256C288 238.33 302.33 224 320 224H480C497.67 224 512 238.33 512 256V416C512 433.67 497.67 448 480 448zM464 328C464 323.58 460.42 320 456 320H416V280C416 275.5800000000001 412.42 272 408 272H392C387.58 272 384 275.5800000000001 384 280V320H344C339.58 320 336 323.58 336 328V344C336 348.42 339.58 352 344 352H384V392C384 396.42 387.58 400 392 400H408C412.42 400 416 396.42 416 392V352H456C460.42 352 464 348.42 464 344V328zM480 160H320C302.33 160 288 145.67 288 128V-32C288 -49.67 302.33 -64 320 -64H480C497.67 -64 512 -49.67 512 -32V128C512 145.67 497.67 160 480 160zM464 8C464 3.58 460.42 0 456 0H344C339.58 0 336 3.58 336 8V24C336 28.42 339.58 32 344 32H456C460.42 32 464 28.42 464 24V8zM464 72C464 67.58 460.42 64 456 64H344C339.58 64 336 67.58 336 72V88C336 92.42 339.58 96 344 96H456C460.42 96 464 92.42 464 88V72zM192 448H32C14.33 448 0 433.67 0 416V256C0 238.33 14.33 224 32 224H192C209.67 224 224 238.33 224 256V416C224 433.67 209.67 448 192 448zM176 328C176 323.58 172.42 320 168 320H56C51.58 320 48 323.58 48 328V344C48 348.42 51.58 352 56 352H168C172.42 352 176 348.42 176 344V328z" />
+    <glyph glyph-name="calculator"
+      unicode="&#xF1EC;"
+      horiz-adv-x="448" d=" M400 448H48C22.4 448 0 425.6 0 400V-16C0 -41.6 22.4 -64 48 -64H400C425.6 -64 448 -41.6 448 -16V400C448 425.6 425.6 448 400 448zM128 12.8C128 6.4 121.6 0 115.2 0H76.8C70.4 0 64 6.4 64 12.8V51.2C64 57.6 70.4 64 76.8 64H115.2C121.6 64 128 57.6 128 51.2V12.8zM128 140.8C128 134.4 121.6 128 115.2 128H76.8C70.4 128 64 134.4 64 140.8V179.2C64 185.6 70.4 192 76.8 192H115.2C121.6 192 128 185.6 128 179.2V140.8zM256 12.8C256 6.4 249.6 0 243.2 0H204.8C198.4 0 192 6.4 192 12.8V51.2C192 57.6 198.4 64 204.8 64H243.2C249.6 64 256 57.6 256 51.2V12.8zM256 140.8C256 134.4 249.6 128 243.2 128H204.8C198.4 128 192 134.4 192 140.8V179.2C192 185.6 198.4 192 204.8 192H243.2C249.6 192 256 185.6 256 179.2V140.8zM384 12.8C384 6.4 377.6 0 371.2 0H332.8C326.4000000000001 0 320 6.4 320 12.8V179.2C320 185.6 326.4 192 332.8 192H371.2C377.6 192 384 185.6 384 179.2V12.8zM384 268.8C384 262.4 377.6 256 371.2 256H76.8C70.4 256 64 262.4 64 268.8V371.2C64 377.6 70.4 384 76.8 384H371.2C377.6 384 384 377.6 384 371.2V268.8z" />
+    <glyph glyph-name="calendar-alt"
+      unicode="&#xF073;"
+      horiz-adv-x="448" d=" M0 -16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V256H0V-16zM320 180C320 186.6 325.4 192 332 192H372C378.6 192 384 186.6 384 180V140C384 133.4 378.6 128 372 128H332C325.4 128 320 133.4 320 140V180zM320 52C320 58.6 325.4 64 332 64H372C378.6 64 384 58.6 384 52V12C384 5.4 378.6 0 372 0H332C325.4 0 320 5.4 320 12V52zM192 180C192 186.6 197.4 192 204 192H244C250.6 192 256 186.6 256 180V140C256 133.4 250.6 128 244 128H204C197.4 128 192 133.4 192 140V180zM192 52C192 58.6 197.4 64 204 64H244C250.6 64 256 58.6 256 52V12C256 5.4 250.6 0 244 0H204C197.4 0 192 5.4 192 12V52zM64 180C64 186.6 69.4 192 76 192H116C122.6 192 128 186.6 128 180V140C128 133.4 122.6 128 116 128H76C69.4 128 64 133.4 64 140V180zM64 52C64 58.6 69.4 64 76 64H116C122.6 64 128 58.6 128 52V12C128 5.4 122.6 0 116 0H76C69.4 0 64 5.4 64 12V52zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V288H448V336C448 362.5 426.5 384 400 384z" />
+    <glyph glyph-name="calendar-check"
+      unicode="&#xF274;"
+      horiz-adv-x="448" d=" M436 288H12C5.373 288 0 293.373 0 300V336C0 362.51 21.49 384 48 384H96V436C96 442.627 101.373 448 108 448H148C154.627 448 160 442.627 160 436V384H288V436C288 442.627 293.373 448 300 448H340C346.627 448 352 442.627 352 436V384H400C426.51 384 448 362.51 448 336V300C448 293.373 442.627 288 436 288zM12 256H436C442.627 256 448 250.627 448 244V-16C448 -42.51 426.51 -64 400 -64H48C21.49 -64 0 -42.51 0 -16V244C0 250.627 5.373 256 12 256zM345.296 160.053L317.127 188.451C312.4600000000001 193.156 304.862 193.187 300.1570000000001 188.519L194.12 83.335L148.14 129.687C143.473 134.392 135.874 134.423 131.169 129.755L102.772 101.5849999999999C98.067 96.918 98.036 89.3199999999999 102.704 84.6149999999999L185.305 1.3459999999999C189.972 -3.3590000000001 197.57 -3.3900000000001 202.275 1.2779999999999L345.228 143.0829999999999C349.933 147.7499999999999 349.964 155.3479999999999 345.296 160.0529999999999z" />
+    <glyph glyph-name="calendar-day"
+      unicode="&#xF783;"
+      horiz-adv-x="448" d=" M0 -16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V256H0V-16zM64 176C64 184.8 71.2 192 80 192H176C184.8 192 192 184.8 192 176V80C192 71.2 184.8 64 176 64H80C71.2 64 64 71.2 64 80V176zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V288H448V336C448 362.5 426.5 384 400 384z" />
+    <glyph glyph-name="calendar-edit"
+      unicode="&#xF333;"
+      horiz-adv-x="448" d=" M436 288H12C5.4 288 0 293.4 0 300V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336V300C448 293.4 442.6 288 436 288zM12 256H436C442.6 256 448 250.6 448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256zM220.4 146.4L125.4 51.4L120 3.2C119.3 -3.2 124.7 -8.7 131.2 -8L179.4 -2.6L274.4 92.4C276.4 94.4 276.4 97.6 274.4 99.6L227.6 146.4C225.6 148.4 222.4 148.4 220.4 146.4zM330.1 176.7L304.7000000000001 202.1C296.8000000000001 210 284.0000000000001 210 276.1 202.1L250.1 176.1C248.1 174.1 248.1 170.9 250.1 168.9L296.9000000000001 122.1C298.9000000000001 120.1 302.1 120.1 304.1 122.1L330.1 148.1C338 156 338 168.8 330.1 176.7000000000001z" />
+    <glyph glyph-name="calendar-exclamation"
+      unicode="&#xF334;"
+      horiz-adv-x="448" d=" M0 300V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336V300C448 293.4 442.6 288 436 288H12C5.4 288 0 293.4 0 300zM448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256H436C442.6 256 448 250.6 448 244zM224 56C201.9 56 184 38.1 184 16S201.9 -24 224 -24S264 -6.1 264 16S246.1 56 224 56zM184.8 195.2L192 83.2C192.4 76.9 197.6 72 204 72H244C250.3 72 255.6 76.9 256 83.2L263.2 195.2C263.6 202.1 258.2 208 251.2 208H196.8C189.9 208 184.4 202.1 184.8 195.2z" />
+    <glyph glyph-name="calendar-minus"
+      unicode="&#xF272;"
+      horiz-adv-x="448" d=" M436 288H12C5.4 288 0 293.4 0 300V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336V300C448 293.4 442.6 288 436 288zM12 256H436C442.6 256 448 250.6 448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256zM316 64C322.6 64 328 69.4 328 76V116C328 122.6 322.6 128 316 128H132C125.4 128 120 122.6 120 116V76C120 69.4 125.4 64 132 64H316z" />
+    <glyph glyph-name="calendar-plus"
+      unicode="&#xF271;"
+      horiz-adv-x="448" d=" M436 288H12C5.4 288 0 293.4 0 300V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336V300C448 293.4 442.6 288 436 288zM12 256H436C442.6 256 448 250.6 448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256zM328 116C328 122.6 322.6 128 316 128H256V188C256 194.6 250.6 200 244 200H204C197.4 200 192 194.6 192 188V128H132C125.4 128 120 122.6 120 116V76C120 69.4 125.4 64 132 64H192V4C192 -2.6 197.4 -8 204 -8H244C250.6 -8 256 -2.6 256 4V64H316C322.6 64 328 69.4 328 76V116z" />
+    <glyph glyph-name="calendar-star"
+      unicode="&#xF736;"
+      horiz-adv-x="448" d=" M400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V288H448V336C448 362.5 426.5 384 400 384zM0 -16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V256H0V-16zM134.1 127.7L188.8 135.7L213.3 185.3C217.7 194.3 230.4 194.1 234.8 185.3L259.3 135.7L314 127.7C323.8 126.3 327.7 114.2 320.6 107.2L281 68.6L290.4 14C292.1 4.1 281.7 -3.2 273 1.4L224 27.2L175.1 1.4C166.4 -3.2 156 4.2 157.7 14L167.1 68.6L127.5 107.2000000000001C120.3 114.2000000000001 124.3 126.3000000000001 134.1 127.7000000000001z" />
+    <glyph glyph-name="calendar-times"
+      unicode="&#xF273;"
+      horiz-adv-x="448" d=" M436 288H12C5.4 288 0 293.4 0 300V336C0 362.5 21.5 384 48 384H96V436C96 442.6 101.4 448 108 448H148C154.6 448 160 442.6 160 436V384H288V436C288 442.6 293.4 448 300 448H340C346.6 448 352 442.6 352 436V384H400C426.5 384 448 362.5 448 336V300C448 293.4 442.6 288 436 288zM12 256H436C442.6 256 448 250.6 448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256zM269.3 96L317.4000000000001 144.1C322.1 148.8 322.1 156.4 317.4000000000001 161.1L289.1 189.4C284.4000000000001 194.1 276.8 194.1 272.1 189.4L224 141.3L175.9 189.4C171.2 194.1 163.6 194.1 158.9 189.4L130.6 161.1C125.9 156.4 125.9 148.8 130.6 144.1L178.7 96L130.6 47.9C125.9 43.2 125.9 35.6 130.6 30.9L158.9 2.6C163.6 -2.1 171.2 -2.1 175.9 2.6L224 50.7L272.1 2.6C276.8 -2.1 284.4000000000001 -2.1 289.1 2.6L317.4000000000001 30.9C322.1 35.6 322.1 43.2 317.4000000000001 47.9L269.3 96z" />
+    <glyph glyph-name="calendar-week"
+      unicode="&#xF784;"
+      horiz-adv-x="448" d=" M0 -16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V256H0V-16zM64 176C64 184.8 71.2 192 80 192H368C376.8 192 384 184.8 384 176V112C384 103.2 376.8 96 368 96H80C71.2 96 64 103.2 64 112V176zM400 384H352V432C352 440.8 344.8 448 336 448H304C295.2 448 288 440.8 288 432V384H160V432C160 440.8 152.8 448 144 448H112C103.2 448 96 440.8 96 432V384H48C21.5 384 0 362.5 0 336V288H448V336C448 362.5 426.5 384 400 384z" />
+    <glyph glyph-name="calendar"
+      unicode="&#xF133;"
+      horiz-adv-x="448" d=" M12 256H436C442.6 256 448 250.6 448 244V-16C448 -42.5 426.5 -64 400 -64H48C21.5 -64 0 -42.5 0 -16V244C0 250.6 5.4 256 12 256zM448 300V336C448 362.5 426.5 384 400 384H352V436C352 442.6 346.6 448 340 448H300C293.4 448 288 442.6 288 436V384H160V436C160 442.6 154.6 448 148 448H108C101.4 448 96 442.6 96 436V384H48C21.5 384 0 362.5 0 336V300C0 293.4 5.4 288 12 288H436C442.6 288 448 293.4 448 300z" />
+    <glyph glyph-name="camera-alt"
+      unicode="&#xF332;"
+      horiz-adv-x="512" d=" M512 304V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V304C0 330.5 21.5 352 48 352H136L148.3 384.9C155.3 403.6 173.2 416 193.2 416H318.7000000000001C338.7000000000001 416 356.6 403.6 363.6 384.9L376 352H464C490.5 352 512 330.5 512 304zM376 160C376 226.2 322.2 280 256 280S136 226.2 136 160S189.8 40 256 40S376 93.8 376 160zM344 160C344 111.5 304.5 72 256 72S168 111.5 168 160S207.5 248 256 248S344 208.5 344 160zM224 160C224 177.6 238.4 192 256 192C264.8 192 272 199.2 272 208S264.8 224 256 224C220.7 224 192 195.3 192 160C192 151.2 199.2 144 208 144S224 151.2 224 160z" />
+    <glyph glyph-name="camera-retro"
+      unicode="&#xF083;"
+      horiz-adv-x="512" d=" M48 416C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416H48zM48 384H154C157.3 384 160 381.3 160 378V358C160 354.7 157.3 352 154 352H38C34.7 352 32 354.7 32 358V368C32 376.8 39.2 384 48 384zM474 288H38C34.7 288 32 290.7 32 294V330C32 333.3 34.7 336 38 336H176L206.2 381.3C207.3 383 209.2 384 211.2 384H464C472.8 384 480 376.8 480 368V294C480 290.7 477.3 288 474 288zM256 24C189.8 24 136 77.8 136 144S189.8 264 256 264S376 210.2 376 144S322.2 24 256 24zM256 232C207.5 232 168 192.5 168 144S207.5 56 256 56S344 95.5 344 144S304.5 232 256 232zM208 128C199.2 128 192 135.2 192 144C192 179.3 220.7 208 256 208C264.8 208 272 200.8 272 192S264.8 176 256 176C238.4 176 224 161.6 224 144C224 135.2 216.8 128 208 128z" />
+    <glyph glyph-name="camera"
+      unicode="&#xF030;"
+      horiz-adv-x="512" d=" M512 304V16C512 -10.5 490.5 -32 464 -32H48C21.5 -32 0 -10.5 0 16V304C0 330.5 21.5 352 48 352H136L148.3 384.9C155.3 403.6 173.2 416 193.2 416H318.7000000000001C338.7000000000001 416 356.6 403.6 363.6 384.9L376 352H464C490.5 352 512 330.5 512 304zM376 160C376 226.2 322.2 280 256 280S136 226.2 136 160S189.8 40 256 40S376 93.8 376 160zM344 160C344 111.5 304.5 72 256 72S168 111.5 168 160S207.5 248 256 248S344 208.5 344 160z" />
+    <glyph glyph-name="campfire"
+      unicode="&#xF6BA;"
+      horiz-adv-x="512" d=" M501 -2.17L361.03 42.51L501 87.19C509.26 89.83 513.86 98.8 511.28 107.23L501.9299999999999 137.78C499.35 146.21 490.5599999999999 150.91 482.3099999999999 148.28L256 76.04L29.69 148.28C21.43 150.91 12.65 146.21 10.07 137.78L0.72 107.23C-1.86 98.8 2.74 89.82 11 87.19L150.97 42.51L11 -2.17C2.74 -4.8 -1.86 -13.78 0.72 -22.21L10.07 -52.76C12.65 -61.19 21.44 -65.89 29.69 -63.26L256 8.98L482.31 -63.26C490.57 -65.89 499.35 -61.19 501.93 -52.76L511.28 -22.21C513.86 -13.78 509.26 -4.81 501.0000000000001 -2.17zM256 128C335.53 128 400 192.47 400 272C400 305.29 366.58 373.96 320 416C306.63 403.94 294.55 391.25 283.86 378.52C266.34 401.99 244.61 425.79 220 448C156.83 391.02 112 316.78 112 272C112 192.47 176.47 128 256 128zM220.5 355.52C224.73 350.43 280.92 275.46 280.92 275.46L316.76 318.18C319.29 313.81 321.59 309.53 323.65 305.42C340.36 272.09 333.31 229.43 303.21 207.43C289.9700000000001 197.74 273.64 192 256 192C211.89 192 176 222.49 176 272C176 296.66 190.86 318.39 220.5 355.52z" />
+    <glyph glyph-name="campground"
+      unicode="&#xF6BB;"
+      horiz-adv-x="640" d=" M624 0H599.32L359.54 330.25L412.9500000000001 403.8C418.1400000000001 410.95 416.5600000000001 420.96 409.4100000000001 426.15L383.5100000000001 444.94C376.3600000000001 450.13 366.3600000000001 448.55 361.1600000000001 441.39L320 384.7L278.83 441.4C273.64 448.55 263.63 450.14 256.48 444.95L230.6 426.15C223.45 420.96 221.86 410.95 227.06 403.8L280.47 330.25L40.68 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM320 160L436.36 0H203.64L320 160z" />
+    <glyph glyph-name="candle-holder"
+      unicode="&#xF6BC;"
+      horiz-adv-x="448" d=" M160 256C205.93 256 238 288.61 238 335.29C238 365.28 205.41 410.18 160 448C114.38 410 82 365.16 82 335.29C82 288.61 114.07 256 160 256zM376 80C336.3 80 304 47.7 304 8C304 -0.46 305.73 -8.46 308.42 -16H16C7.16 -16 0 -23.16 0 -32V-48C0 -56.84 7.16 -64 16 -64H376C415.7 -64 448 -31.7 448 8S415.7 80 376 80zM376 -16C362.77 -16 352 -5.23 352 8S362.77 32 376 32S400 21.23 400 8S389.23 -16 376 -16zM256 192C256 209.67 241.67 224 224 224H160V176C160 167.16 152.84 160 144 160S128 167.16 128 176V224H96C78.33 224 64 209.67 64 192V16H256V192z" />
+    <glyph glyph-name="candy-cane"
+      unicode="&#xF786;"
+      horiz-adv-x="512" d=" M497.5 356C469.6 414.9 411.8 448 352.4 448C324.5 448 296.2 440.7 270.6 425.4L243.1 409C227.9 399.9 223 380.3 232.1 365.1L264.9 310.2C270.9 300.2 281.5 294.6 292.4 294.6C298 294.6 303.6 296.1 308.8 299.1L336.3 315.5C341.4 318.6 347.1 320 352.7 320C363.5999999999999 320 374.2 314.4 380.2 304.4C389.3 289.3 384.3 269.6 369.2 260.5L15.6 50.4C0.4 41.3 -4.5 21.7 4.6 6.5L37.4 -48.4C43.4 -58.4 54 -64 64.9 -64C70.5 -64 76.1 -62.5 81.3 -59.5L428.6 147C500.3 189.9 533.2 280.5 497.5 356zM319.8 343L317.3 341.5L296.8 403C306.5 407.7 316.6 411.1 327.1 413.2L347.7000000000001 351.4C337.9000000000001 350.6 328.3000000000001 348.1 319.8000000000001 343zM145.9 16.2L85.4 54.7L116.2 73L176.7 34.5L145.9 16.2zM253.4 80.1L192.9 118.6L223.7 136.9L284.2000000000001 98.4L253.4000000000001 80.1zM364.3 146L303.8 184.5L334.6 202.8L395.1 164.3L364.3 146zM384.7 343.3L430.7 389.3C439.1 382.8 446.7 375.2000000000001 453.3 366.7000000000001L407.6 321C401.9000000000001 330.3 393.9000000000001 337.9 384.7000000000001 343.3zM466.8 235.5L407.3 255.3C410.5 260.6 413.1 266.2000000000001 414.7 272.4C415.8 276.9 416.3999999999999 281.5 416.5 286L476.8999999999999 265.9C474.7999999999999 255.5 471.3999999999999 245.3 466.7999999999999 235.5z" />
+    <glyph glyph-name="candy-corn"
+      unicode="&#xF6BD;"
+      horiz-adv-x="640" d=" M187.09 140.86C143.35 97.12 115.38 59.81 98.12 33.3C213.97 -34.68 342.0900000000001 -88.98 379.0300000000001 -52.03L379.0900000000001 -51.97C415.9700000000001 -14.88 361.7100000000001 113.3000000000001 293.6900000000001 229.2100000000001C267.2400000000001 211.9 230.3100000000001 184.0700000000001 187.0900000000001 140.86zM326 1.05C306.39 4.56 275.89 15.06 238.31 31.93C246.86 41.46 255.95 51.25 266.33 61.63C276.37 71.67 285.89 80.55 295.14 88.87C312.01 51.23 322.5 20.69 326 1.05zM277.11 256.78C267.42 272.52 257.6 287.92 247.83 302.5900000000001C229.21 330.54 203.34 358.29 84.94 242.19C-31.16 123.79 -3.41 97.92 24.54 79.3C39.27 69.49 54.74 59.62 70.55 49.89C88.84 78.11 118.48 117.52 164.46 163.5C209.9200000000001 208.96 248.9600000000001 238.44 277.11 256.78zM480 448C314.19 446.38 315.52 408.46 322.11 375.53C325.5800000000001 358.18 329.55 340.26 333.85 322.2C366.74 329.2200000000001 415.56 336.13 480.59 336.13C544.88 336.13 593.34 329.37 626.21 322.43C630.49 340.41 634.4300000000001 358.24 637.89 375.53C644.48 408.46 645.81 446.38 480 448zM341.62 290.9700000000001C375.4700000000001 160.99 427.67 32 479.91 32H480C532.3 32.15 584.5699999999999 161.16 618.44 291.21C587.5 297.68 541.7 304.12 480.59 304.12C418.7200000000001 304.12 372.5600000000001 297.52 341.62 290.97zM479.95 107.04C468.5700000000001 123.39 454.4200000000001 152.37 439.7800000000001 190.88C452.56 191.57 465.92 192.07 480.59 192.07C494.79 192.07 507.8 191.62 520.22 190.96C505.54 152.41 491.36 123.4 479.95 107.04z" />
+    <glyph glyph-name="cannabis"
+      unicode="&#xF55F;"
+      horiz-adv-x="512" d=" M503.47 87.75C501.91 88.57 471.08 104.64 426.6900000000001 113.56C490.9400000000001 188.68 510.7400000000001 275.23 511.6200000000001 279.2C512.8000000000001 284.53 511.1800000000001 290.1 507.3200000000001 293.9700000000001C504.2900000000001 297.01 500.2 298.67 496.0000000000001 298.67C494.8600000000001 298.67 493.71 298.55 492.5600000000001 298.29C488.6800000000001 297.44 406.0200000000001 278.7 331.98 218.53C331.99 219.99 331.99 221.46 331.99 222.93C331.99 341.72 272.01 436.65 269.4600000000001 440.63A15.973000000000003 15.973000000000003 0 0 1 256 448C250.55 448 245.47 445.2200000000001 242.53 440.63C239.98 436.65 180 341.7200000000001 180 222.93C180 221.46 180.01 219.99 180.01 218.53C105.98 278.69 23.32 297.43 19.43 298.29C18.29 298.54 17.14 298.67 15.99 298.67C11.79 298.67 7.7 297.01 4.67 293.9700000000001A15.986 15.986 0 0 1 0.38 279.2C1.26 275.23 21.06 188.68 85.31 113.56C40.92 104.64 10.1 88.57 8.53 87.75A16.003 16.003 0 0 1 8.51 59.46C10.96 58.17 69.27 27.74 142 27.74C148.14 27.74 153.96 27.84 159.5 28.05C148.13 5.82 142.98 -10.26 142.69 -11.17C140.89 -16.85 142.4 -23.0599999999999 146.6 -27.28A16.019 16.019 0 0 1 162.7 -31.27C164.53 -30.7 200.42 -19.28 240 8.02V-56C240 -60.42 243.58 -64 248 -64H264C268.42 -64 272 -60.42 272 -56V8.01C311.58 -19.29 347.4700000000001 -30.7 349.3 -31.28A16.019 16.019 0 0 1 365.4000000000001 -27.29C369.6 -23.07 371.11 -16.86 369.3100000000001 -11.18C369.0200000000001 -10.27 363.8600000000001 5.81 352.5000000000001 28.04C358.0400000000001 27.83 363.8700000000001 27.73 370.0000000000001 27.73C442.7200000000001 27.73 501.0400000000001 58.16 503.4900000000001 59.4499999999999C508.7300000000001 62.2299999999999 512.0100000000001 67.67 512.0000000000001 73.5999999999999C511.9900000000001 79.5399999999999 508.7100000000001 84.9899999999999 503.4700000000001 87.7499999999999z" />
+    <glyph glyph-name="capsules"
+      unicode="&#xF46B;"
+      horiz-adv-x="576" d=" M555.3 147.9L424.2 335.2C401.9 367 366.4 384 330.4 384C307.8 384 284.9 377.3 264.9 363.3C245.2 349.5 231.2 330.5 223.4 309.5C220.5 368.8 172 416 112 416C50.1 416 0 365.9 0 304V80C0 18.1 50.1 -32 112 -32S224 18.1 224 80V229.1C227.3 220.5 231.3 212 236.8 204.1L368 16.8C390.2 -15 425.7 -32 461.8 -32C484.5 -32 507.3 -25.3 527.3 -11.3C579 24.9 591.5 96.2 555.3 147.9zM160 192H64V304C64 330.5 85.5 352 112 352S160 330.5 160 304V192zM354.8 147.1L289.2000000000001 240.8C281.5000000000001 251.8 278.5000000000001 265.2000000000001 280.9000000000001 278.4C283.2000000000001 291.6 290.6 303.2000000000001 301.6 310.9C310.1 316.9 320.1 320 330.4000000000001 320C346.9000000000001 320 362.3 312 371.7000000000001 298.5L437.3000000000001 204.8L354.8000000000001 147.1z" />
+    <glyph glyph-name="car-alt"
+      unicode="&#xF5DE;"
+      horiz-adv-x="480" d=" M438.6600000000001 235.67L427.42 263.77L407.49 313.6C390.38 356.37 349.57 384 303.5 384H176.5C130.44 384 89.62 356.37 72.51 313.6L52.58 263.77L41.34 235.67C17.22 226.5 0 203.34 0 176V128C0 111.88 6.16 97.33 16 86.07V32C16 14.33 30.33 0 48 0H80C97.67 0 112 14.33 112 32V64H368V32C368 14.33 382.33 0 400 0H432C449.67 0 464 14.33 464 32V86.07C473.84 97.32 480 111.87 480 128V176C480 203.34 462.78 226.5 438.66 235.67zM131.93 289.83C139.22 308.05 156.87 320 176.5 320H303.5C323.13 320 340.78 308.05 348.07 289.83L368 240H112L131.93 289.83zM80 128.2C60.8 128.2 48 140.96 48 160.1S60.8 192 80 192S128 163.29 128 144.15S99.2 128.2 80 128.2zM400 128.2C380.8 128.2 352 125.01 352 144.15S380.8 192 400 192S432 179.24 432 160.1S419.2 128.2000000000001 400 128.2000000000001z" />
+    <glyph glyph-name="car-battery"
+      unicode="&#xF5DF;"
+      horiz-adv-x="512" d=" M480 320H448V368C448 376.8400000000001 440.84 384 432 384H336C327.1600000000001 384 320 376.8400000000001 320 368V320H192V368C192 376.8400000000001 184.84 384 176 384H80C71.16 384 64 376.8400000000001 64 368V320H32C14.33 320 0 305.67 0 288V32C0 14.33 14.33 0 32 0H480C497.67 0 512 14.33 512 32V288C512 305.67 497.67 320 480 320zM192 184C192 179.58 188.42 176 184 176H72C67.58 176 64 179.58 64 184V200C64 204.42 67.58 208 72 208H184C188.42 208 192 204.42 192 200V184zM448 184C448 179.58 444.42 176 440 176H400V136C400 131.58 396.42 128 392 128H376C371.58 128 368 131.58 368 136V176H328C323.58 176 320 179.58 320 184V200C320 204.42 323.58 208 328 208H368V248C368 252.42 371.58 256 376 256H392C396.42 256 400 252.42 400 248V208H440C444.42 208 448 204.42 448 200V184z" />
+    <glyph glyph-name="car-bump"
+      unicode="&#xF5E0;"
+      horiz-adv-x="576" d=" M575.67 -44.44C577.7299999999999 -54.35 569.8199999999999 -63.71 559.54 -63.71H400.64C390.35 -63.71 382.45 -54.36 384.51 -44.44C393.58 -0.69 432.93 32.23 480.09 32.23S566.6 -0.69 575.67 -44.44zM173.72 -5.16C180.92 -21.33 173.48 -40.2 157.1 -47.3099999999999L124.89 -61.29C108.51 -68.4 89.39 -61.0599999999999 82.19 -44.89L59.63 5.75C45.64 12.03 33.74 23.01 27.06 37.99L5.45 86.51C-5.9 112 1.13 140.66 20.57 158.7L19.53 189.19L17.64 244.32C16.02 291.65 43.35 334.54 87.26 353.6L208.34 406.16C252.26 425.22 302.76 416.11 337 382.94L376.89 344.3L398.95 322.93C425.56 324.88 451.71 310.62 463.07 285.14L484.69 236.62C491.37 221.64 491.52 205.56 486.75 191.14L509.31 140.5C516.51 124.33 509.07 105.46 492.69 98.35L460.48 84.37C444.1 77.26 424.98 84.6 417.7800000000001 100.77L403.99 131.72L159.93 25.79L173.72 -5.16zM355.14 200.53C363.16 182.5200000000001 389.28 197.44 407.59 205.38C425.89 213.32 432.75 230.63 424.72 248.64C416.7 266.65 399.14 273.36 380.84 265.42C362.54 257.4700000000001 347.11 218.54 355.14 200.53zM141.58 107.83C133.56 125.84 94.06 140.9400000000001 75.76 133.0000000000001C57.46 125.0600000000001 50.6 107.7500000000001 58.63 89.7400000000001C66.65 71.7300000000001 84.21 65.0200000000001 102.51 72.96C120.81 80.91 149.61 89.8200000000001 141.58 107.83zM330.21 297.35L290.32 335.9900000000001C275.73 350.1200000000001 253.89 354.0600000000001 235.18 345.9400000000001L114.1 293.38C95.39 285.26 83.57 266.71 84.26 246.54L86.15 191.41L330.21 297.35z" />
+    <glyph glyph-name="car-crash"
+      unicode="&#xF5E1;"
+      horiz-adv-x="640" d=" M143.25 227.19L130.83 180.82C127.82 169.57 127.2 157.93 128.42 146.43L93.22 117.45C86.65 112.04 76.91 117.88 78.6 126.22L94.04 202.9C95.1 208.16 91.38 213.18 86.04 213.69L8.18 221.24C-0.29 222.06 -3.05 233.07 4.04 237.78L69.19 281.08C73.65 284.05 74.57 290.23 71.17 294.37L21.46 354.78C16.05 361.35 21.89 371.08 30.24 369.4L106.92 353.9600000000001C112.18 352.9 117.2 356.62 117.72 361.9600000000001L125.27 439.82C126.09 448.3 137.1 451.05 141.82 443.96L185.12 378.82C188.09 374.36 194.27 373.44 198.41 376.8400000000001L258.81 426.55C265.38 431.96 275.11 426.12 273.43 417.7800000000001L262.1 361.62C259.3900000000001 358.57 256.67 355.53 254.1900000000001 352.2200000000001L222.04 309.25L211.33 294.93C178.6 286.17 152.15 260.4 143.25 227.19zM637.8199999999999 94.68L625.4 48.32C622.27 36.64 616.02 26.71 607.85 18.96A66.876 66.876 0 0 0 599.09 11.96L585.1 -40.27C583.96 -44.54 582 -48.3700000000001 579.45 -51.65C571.7800000000001 -61.49 558.71 -66.33 545.9100000000001 -62.9L515 -54.62C497.93 -50.05 487.8 -32.5 492.37 -15.43L500.65 15.48L253.37 81.74L245.09 50.83C240.52 33.76 222.97 23.63 205.9 28.2L174.99 36.48C162.19 39.91 153.29 50.64 151.57 62.99C151 67.11 151.22 71.41 152.36 75.67L166.35 127.9A66.62 66.62 0 0 0 162.26 138.35C159.06 149.14 158.61 160.87 161.74 172.55L174.16 218.92C179.47 238.72 193.52 253.75 211.05 261.13A64.336 64.336 0 0 0 229.54 265.85L247.67 290.08L279.82 333.05C283.2699999999999 337.66 287.01 341.95 291.0199999999999 345.89C299.0199999999999 353.78 308.05 360.33 317.76 365.4C322.62 367.94 327.6499999999999 370.11 332.81 371.89C343.14 375.47 354 377.52 365.05 377.93C376.1 378.34 387.36 377.11 398.48 374.13L521.16 341.26C532.28 338.28 542.64 333.72 552.01 327.83A111.10999999999999 111.10999999999999 0 0 0 586.7 293.33C595.5200000000001 279.45 601.34 263.49 603.38 246.34L609.74 193.05L613.33 163A64.49 64.49 0 0 0 636.07 133.0699999999999C640.46 121.19 641.36 107.8799999999999 637.82 94.68zM255.58 213.66C237.03 218.63 221.37 209.62 216.41 191.13C211.45 172.64 220.5200000000001 157.01 239.0600000000001 152.04C257.61 147.0699999999999 284.6 136.53 289.55 155.02C294.51 173.51 274.12 208.69 255.58 213.66zM546.19 185.49L539.83 238.78C539.25 243.65 537.94 248.31 536.01 252.64C530.21 265.63 518.81 275.65 504.59 279.46L381.91 312.33A48.008 48.008 0 0 1 331.05 294.72L298.9 251.75L470.9 205.67L546.1899999999999 185.49zM564.6800000000001 130.84C546.1300000000001 135.8100000000001 510.8800000000001 115.53 505.9300000000001 97.05C500.9800000000001 78.56 529.6200000000001 74.19 548.1700000000001 69.22C566.72 64.25 582.3800000000001 73.2600000000001 587.34 91.75C592.2900000000001 110.23 583.23 125.87 564.6800000000001 130.84z" />
+    <glyph glyph-name="car-garage"
+      unicode="&#xF5E2;"
+      horiz-adv-x="640" d=" M512.49 155.1L507.42 167.7700000000001L487.49 217.6C470.38 260.37 429.57 288 383.5 288H256.5C210.44 288 169.62 260.37 152.51 217.6L132.58 167.78L127.51 155.11C104.33 145.48 88 122.66 88 96V64C88 43.88 97.48 26.14 112 14.41V-32C112 -49.67 126.33 -64 144 -64H176C193.67 -64 208 -49.67 208 -32V0H432V-32C432 -49.67 446.33 -64 464 -64H496C513.67 -64 528 -49.67 528 -32V14.41C542.52 26.14 552 43.88 552 64V96C552 122.66 535.67 145.48 512.49 155.1zM160 48.2C140.8 48.2 128 60.96 128 80.1S140.8 111.9999999999999 160 111.9999999999999S208 83.29 208 64.1499999999999S179.2 48.1999999999999 160 48.1999999999999zM198.4 159.99L211.93 193.82C219.22 212.04 236.87 223.99 256.5 223.99H383.5C403.13 223.99 420.78 212.04 428.07 193.82L441.6 159.99H198.4zM480 48.2C460.8 48.2 432 45.01 432 64.15S460.8 112 480 112S512 99.24 512 80.1S499.2 48.2 480 48.2zM631.76 279.77L331.67 444.98A24.040000000000003 24.040000000000003 0 0 1 308.3300000000001 444.98L8.24 279.77C0.51 275.4700000000001 -2.28 265.7200000000001 2.02 257.98L9.8 243.9700000000001C14.1 236.23 23.85 233.45 31.59 237.7500000000001L320 396.4700000000001L608.4100000000001 237.74C616.1500000000001 233.44 625.9000000000001 236.23 630.2 243.96L637.98 257.9700000000001C642.28 265.7200000000001 639.49 275.4700000000001 631.76 279.77z" />
+    <glyph glyph-name="car-mechanic"
+      unicode="&#xF5E3;"
+      horiz-adv-x="512" d=" M503.91 344H447.93L423.93 368L447.93 392H503.9C509.85 392 513.8 398.31 511.15 403.64C495.96 434.1600000000001 462.14 453.68 424.31 446.51C398.66 441.65 377.5899999999999 423.53 367.26 400H145.01C132.63 428.17 104.81 448 72.07 448C40.75 448 13.9 429.88 0.84 403.63C-1.81 398.31 2.15 392 8.09 392H64.07L88.07 368L64.07 344H8.09C2.14 344 -1.81 337.69 0.84 332.36C16.03 301.8400000000001 49.85 282.32 87.68 289.49C113.33 294.35 134.41 312.48 144.73 336H366.98C379.36 307.83 407.18 288 439.92 288C471.24 288 498.09 306.12 511.15 332.37C513.8100000000001 337.7 509.85 344 503.91 344zM448.49 155.09L443.42 167.7600000000001L423.49 217.59C406.38 260.36 365.57 287.99 319.5 287.99H192.5C146.44 287.99 105.62 260.36 88.51 217.59L68.58 167.7700000000001L63.51 155.1C40.33 145.48 24 122.66 24 96V64C24 43.88 33.48 26.14 48 14.41V-32C48 -49.67 62.33 -64 80 -64H112C129.67 -64 144 -49.67 144 -32V0H368V-32C368 -49.67 382.33 -64 400 -64H432C449.67 -64 464 -49.67 464 -32V14.41C478.52 26.14 488 43.88 488 64V96C488 122.66 471.67 145.48 448.49 155.09zM96 48.2C76.8 48.2 64 60.96 64 80.1S76.8 112 96 112S144 83.29 144 64.15S115.2 48.2 96 48.2zM134.4 159.99L147.93 193.82C155.22 212.04 172.87 223.99 192.5 223.99H319.5C339.13 223.99 356.78 212.04 364.07 193.82L377.6 159.99H134.4zM416 48.2C396.8 48.2 368 45.01 368 64.15S396.8 112 416 112S448 99.24 448 80.1S435.2 48.2 416 48.2z" />
+    <glyph glyph-name="car-side"
+      unicode="&#xF5E4;"
+      horiz-adv-x="640" d=" M544 256H528L419.2200000000001 391.98A64.025 64.025 0 0 1 369.24 416H155.33C129.16 416 105.63 400.07 95.91 375.77L48 253.74C20.44 246.6 0 221.79 0 192V80C0 71.16 7.16 64 16 64H64C64 10.98 106.98 -32 160 -32S256 10.98 256 64H384C384 10.98 426.98 -32 480 -32S576 10.98 576 64H624C632.84 64 640 71.16 640 80V160C640 213.02 597.02 256 544 256zM160 16C133.53 16 112 37.53 112 64S133.53 112 160 112S208 90.47 208 64S186.47 16 160 16zM232 256H116.93L155.33 352H232V256zM280 256V352H369.24L446.04 256H280zM480 16C453.53 16 432 37.53 432 64S453.53 112 480 112S528 90.47 528 64S506.47 16 480 16z" />
+    <glyph glyph-name="car-tilt"
+      unicode="&#xF5E5;"
+      horiz-adv-x="640" d=" M624 0H317.12L275.02 42.1L467.35 234.4300000000001L489.98 211.8000000000001C502.48 199.3000000000001 522.74 199.3000000000001 535.23 211.8000000000001L557.86 234.4300000000001C570.36 246.9300000000001 570.36 267.1900000000001 557.86 279.6900000000001L519.62 317.92C518.62 332.8300000000001 512.69 347.48 501.29 358.88L467.35 392.8200000000001C448.0200000000001 412.1500000000001 419.4700000000001 416.35 395.93 405.7800000000001L368.11 417.7L318.78 438.85C276.45 457 228.04 447.68 195.47 415.1L105.67 325.29C73.1 292.7200000000001 63.78 244.32 81.92 201.98L103.06 152.65L114.98 124.83C104.41 101.29 108.61 72.74 127.94 53.41L181.36 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM399.4700000000001 347.57C413.05 361.15 431.12 361.18 444.6500000000001 347.64C458.1900000000001 334.1 458.16 316.03 444.5800000000001 302.45S412.8900000000001 266.25 399.36 279.79C385.8300000000001 293.33 385.89 334 399.4700000000001 347.57zM140.74 227.19A48.003 48.003 0 0 0 150.92 280.04L240.7200000000001 369.84A48.003 48.003 0 0 0 293.5700000000001 380.02L342.9000000000001 358.88L161.88 177.87L140.74 227.19zM218.31 76.19C204.73 62.61 186.66 62.58 173.12 76.12C159.59 89.65 159.61 107.73 173.19 121.3C186.77 134.88 227.43 134.94 240.97 121.41C254.51 107.87 231.88 89.7600000000001 218.31 76.1900000000001z" />
+    <glyph glyph-name="car-wash"
+      unicode="&#xF5E6;"
+      horiz-adv-x="464" d=" M349.33 362.67C349.33 386.23 392 448 392 448S434.67 386.23 434.67 362.67S415.56 320 392 320S349.33 339.11 349.33 362.67zM232 320C255.56 320 274.67 339.1 274.67 362.67S232 448 232 448S189.33 386.23 189.33 362.67S208.44 320 232 320zM72 320C95.56 320 114.67 339.1 114.67 362.67S72 448 72 448S29.33 386.23 29.33 362.67S48.44 320 72 320zM464 96V64C464 43.88 454.52 26.14 440 14.41V-32C440 -49.67 425.67 -64 408 -64H376C358.33 -64 344 -49.67 344 -32V0H120V-32C120 -49.67 105.67 -64 88 -64H56C38.33 -64 24 -49.67 24 -32V14.41C9.48 26.14 0 43.87 0 64V96C0 122.67 16.33 145.48 39.51 155.1L44.58 167.7700000000001L64.51 217.59C81.62 260.36 122.43 287.99 168.5 287.99H295.5C341.56 287.99 382.38 260.36 399.49 217.59L419.42 167.7600000000001L424.49 155.09C447.67 145.48 464 122.66 464 96zM120 64.15C120 83.29 91.2 112 72 112S40 99.24 40 80.1S52.8 48.2 72 48.2S120 45.0100000000001 120 64.15zM353.6 159.99L340.0700000000001 193.82C332.7800000000001 212.04 315.1300000000001 223.99 295.5000000000001 223.99H168.5000000000001C148.8700000000001 223.99 131.2200000000001 212.04 123.9300000000001 193.82L110.4000000000001 159.99H353.6zM424 80.1C424 99.24 411.2 112 392 112S344 83.29 344 64.15S372.8 48.2 392 48.2S424 60.96 424 80.1z" />
+    <glyph glyph-name="car"
+      unicode="&#xF1B9;"
+      horiz-adv-x="512" d=" M499.99 272H440.12L423.48 313.6C406.38 356.37 365.57 384 319.5 384H192.5C146.44 384 105.62 356.37 88.51 313.6L71.87 272H12.01C4.2 272 -1.53 264.66 0.37 257.0900000000001L6.37 233.09C7.7 227.75 12.5 224 18.01 224H38.08C24.65 212.27 16 195.22 16 176V128C16 111.88 22.16 97.33 32 86.07V32C32 14.33 46.33 0 64 0H96C113.67 0 128 14.33 128 32V64H384V32C384 14.33 398.33 0 416 0H448C465.67 0 480 14.33 480 32V86.07C489.84 97.32 496 111.87 496 128V176C496 195.22 487.35 212.27 473.93 224H494C499.51 224 504.31 227.75 505.64 233.09L511.64 257.0900000000001C513.53 264.66 507.8 272 499.99 272zM147.93 289.83C155.22 308.05 172.87 320 192.5 320H319.5C339.13 320 356.78 308.05 364.07 289.83L384 240H128L147.93 289.83zM96 128.2C76.8 128.2 64 140.96 64 160.1S76.8 192 96 192S144 163.29 144 144.15S115.2 128.2 96 128.2zM416 128.2C396.8 128.2 368 125.01 368 144.15S396.8 192 416 192S448 179.24 448 160.1S435.2 128.2000000000001 416 128.2000000000001z" />
+    <glyph glyph-name="caret-circle-down"
+      unicode="&#xF32D;"
+      horiz-adv-x="512" d=" M504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM124.5 219.5L247.5 96.5C252.2 91.8 259.8 91.8 264.5 96.5L387.5 219.5C395.1 227.1 389.7 240 379 240H133C122.3 240 116.9 227.1 124.5 219.5z" />
+    <glyph glyph-name="caret-circle-left"
+      unicode="&#xF32E;"
+      horiz-adv-x="512" d=" M256 -56C119 -56 8 55 8 192S119 440 256 440S504 329 504 192S393 -56 256 -56zM283.5 323.5L160.5 200.5C155.8 195.8 155.8 188.2 160.5 183.5L283.5 60.5C291.1 52.9 304 58.3 304 69V315C304 325.7 291.1 331.1 283.5 323.5z" />
+    <glyph glyph-name="caret-circle-right"
+      unicode="&#xF330;"
+      horiz-adv-x="512" d=" M256 440C393 440 504 329 504 192S393 -56 256 -56S8 55 8 192S119 440 256 440zM228.5 60.5L351.5 183.5C356.2 188.2 356.2 195.8 351.5 200.5L228.5 323.5C220.9 331.1 208 325.7 208 315V69C208 58.3 220.9 52.9 228.5 60.5z" />
+    <glyph glyph-name="caret-circle-up"
+      unicode="&#xF331;"
+      horiz-adv-x="512" d=" M8 192C8 329 119 440 256 440S504 329 504 192S393 -56 256 -56S8 55 8 192zM387.5 164.5L264.5 287.5C259.8 292.2 252.2 292.2 247.5 287.5L124.5 164.5C116.9 156.9 122.3 144 133 144H379C389.7 144 395.1 156.9 387.5 164.5z" />
+    <glyph glyph-name="caret-down"
+      unicode="&#xF0D7;"
+      horiz-adv-x="320" d=" M31.3 256H288.6C306.4000000000001 256 315.3 234.5 302.7000000000001 221.9L174.1 93.2C166.3 85.4 153.6 85.4 145.8 93.2L17.2 221.9C4.6 234.5 13.5 256 31.3 256z" />
+    <glyph glyph-name="caret-left"
+      unicode="&#xF0D9;"
+      horiz-adv-x="192" d=" M192 320.6620000000001V63.338C192 45.52 170.457 36.597 157.858 49.196L29.196 177.858C21.386 185.668 21.386 198.332 29.196 206.142L157.858 334.804C170.457 347.404 192 338.48 192 320.6620000000001z" />
+    <glyph glyph-name="caret-right"
+      unicode="&#xF0DA;"
+      horiz-adv-x="192" d=" M0 63.338V320.6620000000001C0 338.48 21.543 347.403 34.142 334.804L162.804 206.142C170.614 198.332 170.614 185.668 162.804 177.858L34.142 49.196C21.543 36.596 0 45.52 0 63.338z" />
+    <glyph glyph-name="caret-square-down"
+      unicode="&#xF150;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.5 426.5 -32 400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368zM92.5 227.5L215.5 104.5C220.2 99.8 227.8 99.8 232.5 104.5L355.5 227.5C363.1 235.1 357.7 248 347 248H101C90.3 248 84.9 235.1 92.5 227.5z" />
+    <glyph glyph-name="caret-square-left"
+      unicode="&#xF191;"
+      horiz-adv-x="448" d=" M400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32zM259.515 323.515L136.485 200.485C131.799 195.799 131.799 188.201 136.485 183.514L259.514 60.485C267.074 52.925 279.999 58.279 279.999 68.97V315.029C280 325.7200000000001 267.074 331.074 259.5150000000001 323.515z" />
+    <glyph glyph-name="caret-square-right"
+      unicode="&#xF152;"
+      horiz-adv-x="448" d=" M48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416zM188.485 60.485L311.514 183.514C316.2 188.2 316.2 195.798 311.514 200.485L188.485 323.515C180.925 331.0750000000001 168 325.721 168 315.0300000000001V68.971C168 58.28 180.926 52.926 188.485 60.485z" />
+    <glyph glyph-name="caret-square-up"
+      unicode="&#xF151;"
+      horiz-adv-x="448" d=" M0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16zM355.515 156.485L232.485 279.515C227.799 284.201 220.201 284.201 215.514 279.515L92.485 156.485C84.925 148.925 90.279 136 100.97 136H347.029C357.72 136 363.074 148.926 355.515 156.485z" />
+    <glyph glyph-name="caret-up"
+      unicode="&#xF0D8;"
+      horiz-adv-x="320" d=" M288.662 96H31.338C13.52 96 4.597 117.543 17.196 130.142L145.858 258.804C153.668 266.6140000000001 166.332 266.6140000000001 174.142 258.804L302.804 130.142C315.404 117.543 306.48 96 288.662 96z" />
+    <glyph glyph-name="carrot"
+      unicode="&#xF787;"
+      horiz-adv-x="512" d=" M298.2 291.4C245.5 317.1 183.7 301.9 148 258.6L203.2 203.4C209.5 197.1 209.5 187.0000000000001 203.2 180.8C200.1 177.7 196 176.1 191.9 176.1S183.7 177.7000000000001 180.6 180.8L130.4 231L2.3 -31.7C-0.6 -37.7 -0.8 -45 2.3 -51.4C7.7 -62.5 21.2 -67.1 32.3 -61.7L165.9 3.5L116.7 52.7C110.4 58.9 110.4 69.1 116.7 75.3C123 81.5 133.1 81.5 139.3 75.3L196.3 18.3L298.3 68.1C322.3 79.8 342.8 99.4 355.4 125.2000000000001C385.5 186.9 359.9 261.3000000000001 298.2 291.4000000000001zM390.3 326.3C409.8 367 399.7 415.1 360 448C309.7 406.3 307.5 340.5 352.1 296.1L360.1 288.1C404.5 243.5 470.4 245.7 512 296C479.1 335.7 431 345.8 390.3 326.3z" />
+    <glyph glyph-name="cart-arrow-down"
+      unicode="&#xF218;"
+      horiz-adv-x="576" d=" M504.717 128H211.572L218.117 96H486.535C501.936 96 513.351 81.699 509.938 66.681L504.421 42.405C523.112 33.332 536 14.172 536 -8C536 -39.202 510.481 -64.444 479.176 -63.994C449.353 -63.565 424.826 -39.3630000000001 424.021 -9.547C423.581 6.74 430.106 21.502 440.824 32.001H231.176C241.553 21.835 248 7.674 248 -8C248 -39.813 221.472 -65.431 189.33 -63.938C160.79 -62.613 137.579 -39.553 136.079 -11.021C134.921 11.013 146.515 30.434 164.13 40.5650000000001L93.883 384H24C10.745 384 0 394.745 0 408V424C0 437.255 10.745 448 24 448H126.529C137.93 448 147.757 439.979 150.042 428.81L159.208 384H551.99C567.391 384 578.806 369.699 575.393 354.681L528.12 146.681C525.637 135.754 515.923 128 504.717 128zM403.029 256H360V316C360 322.627 354.627 328 348 328H324C317.373 328 312 322.627 312 316V256H268.971C258.2800000000001 256 252.926 243.074 260.486 235.515L327.515 168.486C332.201 163.8 339.799 163.8 344.486 168.486L411.515 235.515C419.074 243.074 413.72 256 403.029 256z" />
+    <glyph glyph-name="cart-plus"
+      unicode="&#xF217;"
+      horiz-adv-x="576" d=" M504.717 128H211.572L218.117 96H486.535C501.936 96 513.351 81.699 509.938 66.681L504.421 42.405C523.112 33.332 536 14.172 536 -8C536 -39.202 510.481 -64.444 479.176 -63.994C449.353 -63.565 424.826 -39.3630000000001 424.021 -9.547C423.581 6.74 430.106 21.502 440.824 32.001H231.176C241.553 21.835 248 7.674 248 -8C248 -39.813 221.472 -65.431 189.33 -63.938C160.79 -62.613 137.579 -39.553 136.079 -11.021C134.921 11.013 146.515 30.434 164.13 40.5650000000001L93.883 384H24C10.745 384 0 394.745 0 408V424C0 437.255 10.745 448 24 448H126.529C137.93 448 147.757 439.979 150.042 428.81L159.208 384H551.99C567.391 384 578.806 369.699 575.393 354.681L528.12 146.681C525.637 135.754 515.923 128 504.717 128zM408 280H360V320C360 328.837 352.837 336 344 336H328C319.163 336 312 328.837 312 320V280H264C255.163 280 248 272.837 248 264V248C248 239.163 255.163 232 264 232H312V192C312 183.163 319.163 176 328 176H344C352.837 176 360 183.163 360 192V232H408C416.837 232 424 239.163 424 248V264C424 272.837 416.837 280 408 280z" />
+    <glyph glyph-name="cash-register"
+      unicode="&#xF788;"
+      horiz-adv-x="512" d=" M511.1 69.2L484.4 229.2C481.8 244.6 468.5000000000001 255.9 452.8 255.9H208V319.9H304C312.8 319.9 320 327.1 320 335.9V432C320 440.8 312.8 448 304 448H48C39.2 448 32 440.8 32 432V336C32 327.2 39.2 320 48 320H144V256H59.1C43.5 256 30.1 244.7 27.5 229.3L0.8 69.3C0.2 65.8 -0.1 62.3 -0.1 58.8V-32C-0.1 -49.7 14.2 -64 31.9 -64H479.9C497.6 -64 511.9 -49.7 511.9 -32V58.7C512 62.2 511.7 65.7 511.1 69.2zM280 200C280 208.8 287.2 216 296 216H312C320.8 216 328 208.8 328 200V184C328 175.2 320.8 168 312 168H296C287.2 168 280 175.2 280 184V200zM248 136H264C272.8 136 280 128.8 280 120V104C280 95.2 272.8 88 264 88H248C239.2 88 232 95.2 232 104V120C232 128.8 239.2 136 248 136zM216 216C224.8 216 232 208.8 232 200V184C232 175.2 224.8 168 216 168H200C191.2 168 184 175.2 184 184V200C184 208.8 191.2 216 200 216H216zM80 368V400H272V368H80zM120 168H104C95.2 168 88 175.2 88 184V200C88 208.8 95.2 216 104 216H120C128.8 216 136 208.8 136 200V184C136 175.2 128.8 168 120 168zM136 104V120C136 128.8 143.2 136 152 136H168C176.8 136 184 128.8 184 120V104C184 95.2 176.8 88 168 88H152C143.2 88 136 95.2 136 104zM352 -8C352 -12.4 348.4 -16 344 -16H168C163.6 -16 160 -12.4 160 -8V8C160 12.4 163.6 16 168 16H344C348.4 16 352 12.4 352 8V-8zM376 104C376 95.2 368.8 88 360 88H344C335.2 88 328 95.2 328 104V120C328 128.8 335.2 136 344 136H360C368.8 136 376 128.8 376 120V104zM424 184C424 175.2 416.8 168 408 168H392C383.2 168 376 175.2 376 184V200C376 208.8 383.2 216 392 216H408C416.8 216 424 208.8 424 200V184z" />
+    <glyph glyph-name="cat"
+      unicode="&#xF6BE;"
+      horiz-adv-x="512" d=" M290.59 256C270.41 256 183.77 254.02 128 170.05V256C128 308.94 84.94 352 32 352C14.33 352 0 337.67 0 320S14.33 288 32 288C49.64 288 64 273.64 64 256V0C64 -35.3 92.7 -64 128 -64H304C312.84 -64 320 -56.84 320 -48V-32C320 -14.33 305.67 0 288 0H256L384 96V-48C384 -56.84 391.1600000000001 -64 400 -64H432C440.84 -64 448 -56.84 448 -48V158.14C437.71 155.47 427.11 153.6 416 153.6C354.19 153.6 302.48 197.65 290.5900000000001 256zM448 352H384L320 416V281.6C320 228.58 362.98 185.6 416 185.6S512 228.58 512 281.6V416L448 352zM376 272C367.1600000000001 272 360 279.16 360 288S367.1600000000001 304 376 304S392 296.8400000000001 392 288S384.84 272 376 272zM456 272C447.1600000000001 272 440 279.16 440 288S447.1600000000001 304 456 304S472 296.8400000000001 472 288S464.84 272 456 272z" />
+    <glyph glyph-name="cauldron"
+      unicode="&#xF6BF;"
+      horiz-adv-x="448" d=" M448 236V276C448 282.63 441.73 288 434 288H14C6.27 288 0 282.63 0 276V236C0 229.37 6.27 224 14 224H33.79C12.39 185.48 0 142.72 0 102.4C0 63.32 11.82 31.75 32 6.87V-40C32 -53.25 42.75 -64 56 -64S80 -53.25 80 -40V-32.51C118.95 -53.81 169.14 -64 224 -64S329.05 -53.81 368 -32.51V-40C368 -53.25 378.75 -64 392 -64S416 -53.25 416 -40V6.87C436.18 31.75 448 63.32 448 102.4C448 142.72 435.61 185.48 414.21 224H434C441.73 224 448 229.37 448 236zM160 384C177.67 384 192 398.33 192 416S177.67 448 160 448S128 433.67 128 416S142.33 384 160 384zM272 320C298.51 320 320 341.49 320 368S298.51 416 272 416S224 394.51 224 368S245.49 320 272 320z" />
+    <glyph glyph-name="certificate"
+      unicode="&#xF0A3;"
+      horiz-adv-x="512" d=" M458.622 192.08L504.607 237.085C518.315 250.062 511.923 273.124 493.943 277.424L431.2930000000001 293.414L448.9540000000001 355.4290000000001C453.9450000000001 373.2670000000001 437.1250000000001 390.092 419.2930000000001 385.1L357.2990000000001 367.433L341.3150000000001 430.1040000000001C337.085 447.803 313.765 454.276 300.99 440.772L256 394.43L211.011 440.771C198.381 454.122 174.964 448.005 170.686 430.103L154.702 367.432L92.707 385.099C74.87 390.093 58.056 373.262 63.046 355.428L80.707 293.413L18.057 277.423C0.069 273.122 -6.31 250.056 7.392 237.085L53.377 192.08L7.392 147.076C-6.316 134.0990000000001 0.076 111.037 18.056 106.737L80.706 90.747L63.045 28.732C58.054 10.894 74.874 -5.931 92.706 -0.939L154.7 16.7280000000001L170.684 -45.9429999999999C175.123 -64.5179999999999 198.38 -69.9609999999999 211.009 -56.6109999999999L256 -10.61L300.989 -56.611C313.489 -70.0989999999999 336.976 -64.097 341.314 -45.943L357.298 16.728L419.2919999999999 -0.939C437.128 -5.933 453.9429999999999 10.898 448.9529999999999 28.732L431.2919999999999 90.747L493.9419999999999 106.737C511.9289999999999 111.0390000000001 518.3079999999999 134.1040000000001 504.6059999999999 147.076L458.6219999999999 192.08z" />
+    <glyph glyph-name="chair-office"
+      unicode="&#xF6C1;"
+      horiz-adv-x="448" d=" M64 224V288C64 305.67 49.67 320 32 320S0 305.67 0 288V224C0 206.33 14.33 192 32 192S64 206.33 64 224zM416 320C398.33 320 384 305.67 384 288V224C384 206.33 398.33 192 416 192S448 206.33 448 224V288C448 305.67 433.67 320 416 320zM352 384C352 419.35 323.35 448 288 448H160C124.65 448 96 419.35 96 384V192H352V384zM403.67 138.12A31.996 31.996 0 0 1 373.31 160H74.69C60.92 160 48.69 151.19 44.33 138.12L33.66 106.12C26.76 85.4 42.18 64 64.03 64H192V-3.36C163.73 -9.37 141.01 -23.05 130.15 -40.57C123.74 -50.91 132.56 -64 145.17 -64H302.8300000000001C315.4400000000001 -64 324.2700000000001 -50.91 317.85 -40.57C306.99 -23.05 284.26 -9.37 256 -3.36V64H383.9700000000001C405.81 64 421.24 85.4 414.3300000000001 106.12L403.67 138.12z" />
+    <glyph glyph-name="chair"
+      unicode="&#xF6C0;"
+      horiz-adv-x="448" d=" M446.33 106.12L435.66 138.12A31.996 31.996 0 0 1 405.3 160H42.69C28.92 160 16.69 151.19 12.33 138.12L1.66 106.12C-5.24 85.4 10.18 64 32.03 64H32V-48C32 -56.84 39.16 -64 48 -64H80C88.84 -64 96 -56.84 96 -48V64H352V-48C352 -56.84 359.1600000000001 -64 368 -64H400C408.84 -64 416 -56.84 416 -48V64H415.9700000000001C437.8200000000001 64 453.24 85.4 446.3300000000001 106.12zM112 320C112 349.48 128.2 374.99 152 388.87V192H200V400H248V192H296V388.87C319.8 374.99 336 349.48 336 320V192H384V320C384 390.69 326.69 448 256 448H192C121.31 448 64 390.69 64 320V192H112V320z" />
+    <glyph glyph-name="chalkboard-teacher"
+      unicode="&#xF51C;"
+      horiz-adv-x="640" d=" M208 96C205.61 96 203.22 95.65 200.94 94.91C187.98 90.7 174.35 88 160 88C145.65 88 132.02 90.7 119.05 94.91C116.77 95.65 114.39 96 112 96C49.94 96 -0.33 45.52 0 -16.62C0.14 -42.88 21.73 -64 48 -64H272C298.27 -64 319.86 -42.88 320 -16.62C320.33 45.52 270.06 96 208 96zM160 128C213.02 128 256 170.98 256 224S213.02 320 160 320S64 277.02 64 224S106.98 128 160 128zM592 448H208C181.53 448 160 425.75 160 398.41V352C183.42 352 205.1 345.2200000000001 224 334.2V384H576V96H512V160H384V96H307.76C326.86 79.31 340.88 57.27 347.45 32H592C618.47 32 640 54.25 640 81.59V398.41C640 425.75 618.47 448 592 448z" />
+    <glyph glyph-name="chalkboard"
+      unicode="&#xF51B;"
+      horiz-adv-x="640" d=" M96 384H544V32H608V408C608 430.06 590.06 448 568 448H72C49.94 448 32 430.06 32 408V32H96V384zM624 0H480V64H288V0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0z" />
+    <glyph glyph-name="charging-station"
+      unicode="&#xF5E7;"
+      horiz-adv-x="576" d=" M336 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H336C344.84 -64 352 -56.84 352 -48V-16C352 -7.16 344.84 0 336 0zM544 320V368C544 376.8400000000001 536.84 384 528 384S512 376.8400000000001 512 368V320H480V368C480 376.8400000000001 472.84 384 464 384S448 376.8400000000001 448 368V320H432C423.1600000000001 320 416 312.8400000000001 416 304V272C416 236.24 439.62 206.31 472 196.07V77.58C472 63.63 462.5 50.66 448.74 48.39C431.2200000000001 45.5 416 59.01 416 76V104C416 152.6 376.6 192 328 192H320V384C320 419.35 291.35 448 256 448H96C60.65 448 32 419.35 32 384V32H320V144H328C350.09 144 368 126.09 368 104V79.39C368 39.72 396.92 4.23 436.41 0.38C481.71 -4.05 520 31.59 520 76V196.07C552.38 206.31 576 236.24 576 272V304C576 312.8400000000001 568.84 320 560 320H544zM260.09 272.24L166.39 133.24C164.19 129.91 160.18 128 156 128C148.33 128 142.53 134.28 144.33 140.92L167.35 224H108C100.75 224 95.15 229.59 96.11 235.89L112.11 342.89C112.9 348.1 117.98 352 124 352H192C199.88 352 205.62 345.46 203.6 338.79L192 288H249.7C258.94 288 264.71 279.2200000000001 260.09 272.24z" />
+    <glyph glyph-name="chart-area"
+      unicode="&#xF1FE;"
+      horiz-adv-x="512" d=" M500 64C506.6 64 512 58.6 512 52V12C512 5.4 506.6 0 500 0H12C5.4 0 0 5.4 0 12V372C0 378.6 5.4 384 12 384H52C58.6 384 64 378.6 64 372V64H500zM372.7 288.5L288 232L202.7 345.7C197.6 352.5 187.2 352 182.8 344.7L96 200V96H480L390.1 283.8C386.9000000000001 290.3 378.7000000000001 292.5 372.7000000000001 288.5z" />
+    <glyph glyph-name="chart-bar"
+      unicode="&#xF080;"
+      horiz-adv-x="512" d=" M332.8 128H371.2C377.6 128 384 134.4 384 140.8V275.2C384 281.6 377.6 288 371.2 288H332.8C326.4000000000001 288 320 281.6 320 275.2V140.8C320 134.4 326.4 128 332.8 128zM428.8 128H467.2C473.6 128 480 134.4 480 140.8V371.2C480 377.6 473.6 384 467.2 384H428.8C422.4000000000001 384 416 377.6 416 371.2V140.8C416 134.4 422.4 128 428.8 128zM140.8 128H179.2C185.6 128 192 134.4 192 140.8V211.2C192 217.6 185.6 224 179.2 224H140.8C134.4 224 128 217.6 128 211.2V140.8C128 134.4 134.4 128 140.8 128zM236.8 128H275.2C281.6 128 288 134.4 288 140.8V339.2C288 345.6 281.6 352 275.2 352H236.8C230.4 352 224 345.6 224 339.2V140.8C224 134.4 230.4 128 236.8 128zM496 64H64V368C64 376.8400000000001 56.84 384 48 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V48C512 56.84 504.84 64 496 64z" />
+    <glyph glyph-name="chart-line-down"
+      unicode="&#xF64D;"
+      horiz-adv-x="512" d=" M496 64H64V368C64 376.8400000000001 56.84 384 48 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V48C512 56.84 504.84 64 496 64zM480 144V262.06C480 283.44 454.15 294.15 439.03 279.03L406.63 246.63L310.63 342.63C298.13 355.13 277.87 355.13 265.38 342.63L192 269.25L145.94 315.31C139.69 321.56 129.56 321.56 123.31 315.31L100.69 292.69C94.44 286.44 94.44 276.31 100.69 270.06L169.38 201.37C181.88 188.87 202.14 188.87 214.63 201.37L288 274.75L361.38 201.37L328.98 168.97C313.86 153.85 324.57 128 345.9500000000001 128H464C472.84 128 480 135.17 480 144z" />
+    <glyph glyph-name="chart-line"
+      unicode="&#xF201;"
+      horiz-adv-x="512" d=" M496 64H64V368C64 376.8400000000001 56.84 384 48 384H16C7.16 384 0 376.8400000000001 0 368V32C0 14.33 14.33 0 32 0H496C504.84 0 512 7.16 512 16V48C512 56.84 504.84 64 496 64zM464 352H345.94C324.56 352 313.85 326.15 328.9700000000001 311.03L361.37 278.63L288 205.25L214.63 278.62C202.13 291.12 181.87 291.12 169.38 278.62L100.69 209.93C94.44 203.68 94.44 193.55 100.69 187.3L123.31 164.68C129.56 158.43 139.69 158.43 145.94 164.68L192 210.75L265.37 137.38C277.87 124.88 298.13 124.88 310.62 137.38L406.62 233.38L439.02 200.98C454.14 185.86 479.99 196.57 479.99 217.95V336C480 344.8400000000001 472.84 352 464 352z" />
+    <glyph glyph-name="chart-network"
+      unicode="&#xF78A;"
+      horiz-adv-x="640" d=" M576 256C611.3 256 640 284.7 640 320S611.3 384 576 384S512 355.3 512 320S540.7 256 576 256zM64 208C28.7 208 0 179.3 0 144S28.7 80 64 80S128 108.7 128 144S99.3 208 64 208zM513.6 245.2L494.4 270.8L446.4000000000001 234.8L465.6 209.2L513.6 245.2zM576 64C561.6 64 548.4 59 537.7 51L441.7000000000001 108.6C445.5000000000001 119.8 448.0000000000001 131.6 448.0000000000001 144.1C448.0000000000001 206 397.9000000000001 256.1 336.0000000000001 256.1C327.6000000000001 256.1 319.4000000000001 255.0000000000001 311.6000000000001 253.2L270.8000000000001 340.6C281.4 352 288 367.2 288 384C288 419.3 259.3 448 224 448S160 419.3 160 384S188.7 320 224 320C225.1 320 226.1 320.3 227.2 320.3L268.2 232.5C241.5 212.1 224 180.2 224 144C224 82.1 274.1 32 336 32C368.1 32 396.8 45.7 417.2 67.3L513 9.8C512.5 6.6 512 3.3 512 0C512 -35.3 540.7 -64 576 -64S640 -35.3 640 0S611.3 64 576 64zM336 96C309.5 96 288 117.5 288 144S309.5 192 336 192S384 170.5 384 144S362.5 96 336 96zM152 128H200V160H152V128z" />
+    <glyph glyph-name="chart-pie-alt"
+      unicode="&#xF64E;"
+      horiz-adv-x="512" d=" M461.29 160H224V397.29C224 406.8400000000001 215.61 414.68 206.16 413.35C87.08 396.53 -3.96 292.57 0.13 167.93C4.2 43.9 107.91 -59.8 231.93 -63.87C356.57 -67.96 460.53 23.08 477.35 142.16C478.68 151.61 470.83 160 461.29 160zM288.8 447.96C279.68 448.59 272 440.9 272 431.76V208H495.77C504.91 208 512.59 215.69 511.97 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96z" />
+    <glyph glyph-name="chart-pie"
+      unicode="&#xF200;"
+      horiz-adv-x="544" d=" M527.79 160H290.5L448.53 1.97C454.57 -4.07 464.51 -4.5599999999999 470.72 1.29C509.42 37.75 536.04 86.9 543.8499999999999 142.15C545.1899999999999 151.61 537.3399999999999 160.0000000000001 527.79 160.0000000000001zM511.96 224.8C503.72 344.26 408.26 439.7200000000001 288.8 447.96C279.68 448.59 272 440.9 272 431.76V208H495.77C504.91 208 512.59 215.68 511.96 224.8zM224 160V397.29C224 406.8400000000001 215.61 414.69 206.16 413.35C86.99 396.51 -4.1 292.4 0.14 167.63C4.5 39.49 114.83 -65.59 243.03 -63.98C293.43 -63.35 340 -47.11 378.29 -19.95C386.19 -14.35 386.71 -2.72 379.86 4.1299999999999L224 160z" />
+    <glyph glyph-name="check-circle"
+      unicode="&#xF058;"
+      horiz-adv-x="512" d=" M504 192C504 55.033 392.967 -56 256 -56S8 55.033 8 192S119.033 440 256 440S504 328.967 504 192zM227.314 60.686L411.314 244.686C417.562 250.934 417.562 261.065 411.314 267.313L388.687 289.94C382.439 296.189 372.308 296.189 366.059 289.94L216 139.882L145.941 209.941C139.693 216.189 129.562 216.189 123.313 209.941L100.686 187.314C94.438 181.066 94.438 170.935 100.686 164.687L204.686 60.687C210.935 54.438 221.065 54.438 227.314 60.686z" />
+    <glyph glyph-name="check-double"
+      unicode="&#xF560;"
+      horiz-adv-x="512" d=" M504.5 276.05L468.3 312.4600000000001C458.3 322.51 442.0900000000001 322.51 432.1 312.4600000000001L192 70.98L79.9 183.72C69.9 193.78 53.69 193.78 43.7 183.72L7.5 147.31C-2.5 137.26 -2.5 120.95 7.5 110.9L173.9 -56.46C183.9 -66.52 200.11 -66.52 210.1 -56.46L504.5 239.63C514.5 249.69 514.5 265.99 504.5 276.05zM166.57 165.29C173.41 158.2700000000001 184.75 158.2700000000001 191.78 165.11L403.85 375.38C410.87 382.2200000000001 410.87 393.56 404.0300000000001 400.59L362.08 442.71C355.24 449.73 343.9 449.73 336.87 442.89L179.71 286.81L111.48 355.58C104.64 362.6 93.3 362.6 86.28 355.76L44.15 313.99C37.13 307.15 37.13 295.81 43.97 288.79L166.57 165.29z" />
+    <glyph glyph-name="check-square"
+      unicode="&#xF14A;"
+      horiz-adv-x="448" d=" M400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32zM195.314 66.059L379.314 250.059C385.562 256.307 385.562 266.438 379.314 272.686L356.687 295.313C350.439 301.561 340.308 301.562 334.059 295.313L184 145.255L113.941 215.314C107.693 221.562 97.562 221.562 91.313 215.314L68.686 192.687C62.438 186.439 62.438 176.308 68.686 170.06L172.686 66.06C178.935 59.81 189.065 59.81 195.314 66.059z" />
+    <glyph glyph-name="check"
+      unicode="&#xF00C;"
+      horiz-adv-x="512" d=" M173.898 8.596L7.498 174.996C-2.499 184.993 -2.499 201.202 7.498 211.2L43.701 247.404C53.698 257.402 69.908 257.402 79.905 247.404L192 135.31L432.0950000000001 375.404C442.0920000000001 385.401 458.302 385.401 468.299 375.404L504.5020000000001 339.2C514.499 329.203 514.499 312.9940000000001 504.5020000000001 302.996L210.1020000000001 8.595C200.1040000000001 -1.402 183.8950000000001 -1.402 173.8980000000001 8.5959999999999z" />
+    <glyph glyph-name="chess-bishop-alt"
+      unicode="&#xF43B;"
+      horiz-adv-x="320" d=" M244.592 194.631L244.6 167.67A6 6 0 0 0 238.6 161.668H211.292C211.292 137.113 209.067 95.251 228.6880000000001 51.815H91.307C111.346 96.206 108.709 139.317 108.709 161.668H81.383A6 6 0 0 0 75.383 167.666L75.375 194.627A6 6 0 0 0 81.375 200.629H238.591A6 6 0 0 0 244.592 194.631zM75.379 276.097C75.379 245.603 88.457 232.409 108.709 226.703V210.887H211.266V226.701C231.522 232.405 244.6020000000001 245.6 244.6020000000001 276.097C244.6020000000001 296.422 236.9820000000001 321.403 225.624 344.289L171.837 296.5A6 6 0 0 0 163.367 297L157.54 303.558A6 6 0 0 0 158.04 312.029L215.283 362.889C204.942 379.535 192.958 393.719 181.196 402.14C190.676 405.203 197.527 414.115 197.471 424.628C197.401 437.6430000000001 186.462 448 173.446 448H146.411C133.38 448 122.433 437.62 122.384 424.589C122.344 414.059 129.233 405.137 138.75 402.106C107.849 379.942 75.379 318.074 75.379 276.097zM265.574 5.917V35.557A6 6 0 0 1 259.574 41.557H60.426A6 6 0 0 1 54.426 35.557V5.917L29.556 -9.005A6 6 0 0 1 26.643 -14.15V-58A6 6 0 0 1 32.643 -64H287.357A6 6 0 0 1 293.357 -58V-14.15A6 6 0 0 1 290.444 -9.005L265.574 5.917z" />
+    <glyph glyph-name="chess-bishop"
+      unicode="&#xF43A;"
+      horiz-adv-x="320" d=" M123.158 370.1190000000001C107.369 375.4700000000001 96 390.403 96 408C96 430.091 113.909 448 136 448H183.796C205.887 448 223.796 430.091 223.796 408C223.796 390.459 212.501 375.5660000000001 196.791 370.171C220.784 353.514 245.368 323.332 265.4940000000001 288.121L144.929 167.557A6 6 0 0 1 144.929 159.072L159.071 144.93A6 6 0 0 1 167.556 144.93L280.9 258.274C298.658 219.977 310.271 178.831 310.271 144.001C310.271 90.215 287.374 68.213 251.825 57.968V0H68.174V57.97C32.631 68.216 9.739 90.219 9.739 144C9.739 222.029 68.02 331.766 123.158 370.1190000000001zM320 -52V-28C320 -21.373 314.627 -16 308 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H308C314.627 -64 320 -58.627 320 -52z" />
+    <glyph glyph-name="chess-board"
+      unicode="&#xF43C;"
+      horiz-adv-x="512" d=" M256 192V128H192V192H256zM256 448H192V384H256V448zM256 192H320V256H256V192zM384 448H320V384H384V448zM384 -64H448V0H384V-64zM512 0V64H448V0H512zM128 -64H192V0H128V-64zM128 448H64V384H128V448zM512 256V320H448V256H512zM512 128V192H448V128H512zM0 -64H64V0H0V-64zM0 384V320H64V384H0zM0 256V192H64V256H0zM0 128V64H64V128H0zM256 -64H320V0H256V-64zM192 64V0H256V64H192zM256 256V320H192V256H256zM64 64V0H128V64H64zM128 192H64V128H128V192zM384 64H448V128H384V64zM512 448H448V384H512V448zM384 192H448V256H384V192zM384 384V320H448V384H384zM320 64V0H384V64H320zM128 128V64H192V128H128zM256 128V64H320V128H256zM192 256H128V192H192V256zM128 320H64V256H128V320zM320 128H384V192H320V128zM192 320V384H128V320H192zM320 320V384H256V320H320zM320 256H384V320H320V256z" />
+    <glyph glyph-name="chess-clock-alt"
+      unicode="&#xF43E;"
+      horiz-adv-x="640" d=" M167.515 145.858L161.858 151.515C157.172 156.201 157.172 163.799 161.858 168.485L212.769 219.397C217.455 224.083 225.053 224.083 229.74 219.397L235.397 213.74C240.083 209.054 240.083 201.456 235.397 196.77L184.486 145.858C179.799 141.172 172.201 141.172 167.515 145.858zM640 280V40C640 17.909 622.091 0 600 0H40C17.909 0 0 17.909 0 40V280C0 302.091 17.909 320 40 320H140C133.373 320 128 325.373 128 332V340C128 346.627 133.373 352 140 352H212C218.627 352 224 346.627 224 340V332C224 325.373 218.627 320 212 320H448V352H428C421.373 352 416 357.373 416 364V372C416 378.627 421.373 384 428 384H500C506.627 384 512 378.627 512 372V364C512 357.373 506.627 352 500 352H480V320H600C622.091 320 640 302.091 640 280zM288 160C288 221.856 237.856 272 176 272S64 221.856 64 160S114.144 48 176 48S288 98.144 288 160zM576 160C576 221.856 525.856 272 464 272S352 221.856 352 160S402.144 48 464 48S576 98.144 576 160zM480 156V228C480 234.627 474.627 240 468 240H460C453.373 240 448 234.627 448 228V156C448 149.373 453.373 144 460 144H468C474.627 144 480 149.373 480 156z" />
+    <glyph glyph-name="chess-clock"
+      unicode="&#xF43D;"
+      horiz-adv-x="640" d=" M600 320H500C506.627 320 512 325.373 512 332V340C512 346.627 506.627 352 500 352H428C421.373 352 416 346.627 416 340V332C416 325.373 421.373 320 428 320H192V352H212C218.627 352 224 357.373 224 364V372C224 378.627 218.627 384 212 384H140C133.373 384 128 378.627 128 372V364C128 357.373 133.373 352 140 352H160V320H40C17.909 320 0 302.091 0 280V40C0 17.909 17.909 0 40 0H600C622.091 0 640 17.909 640 40V280C640 302.091 622.091 320 600 320zM176 48C114.144 48 64 98.144 64 160S114.144 272 176 272S288 221.856 288 160S237.856 48 176 48zM464 48C402.144 48 352 98.144 352 160S402.144 272 464 272S576 221.856 576 160S525.856 48 464 48zM180 144H172C165.373 144 160 149.373 160 156V228C160 234.627 165.373 240 172 240H180C186.627 240 192 234.627 192 228V156C192 149.373 186.627 144 180 144zM455.515 145.858L449.858 151.515C445.1720000000001 156.201 445.1720000000001 163.799 449.858 168.485L500.769 219.397C505.455 224.083 513.053 224.083 517.74 219.397L523.397 213.74C528.0830000000001 209.054 528.0830000000001 201.456 523.397 196.77L472.486 145.858C467.799 141.172 460.201 141.172 455.515 145.858z" />
+    <glyph glyph-name="chess-king-alt"
+      unicode="&#xF440;"
+      horiz-adv-x="256" d=" M199.821 230.367A6 6 0 0 0 205.821 224.367L205.82 203.601A6 6 0 0 0 199.82 197.601H174.015C174.015 165.886 171.862 101.4 191.413 44.372H64.597C84.54 102.548 82.02 168.755 82.02 197.601H56.183A6 6 0 0 0 50.183 203.601L50.185 224.367A6 6 0 0 0 56.185 230.367H199.821zM41.554 332.9120000000001L76.134 237.841H179.868L214.44 332.913C217.286 340.7390000000001 211.49 349.014 203.162 349.014H152V379.2340000000001H173.57A6 6 0 0 1 179.57 385.2340000000001V407.617A6 6 0 0 1 173.57 413.617H145.203V442A6 6 0 0 1 139.203 448H116.82A6 6 0 0 1 110.82 442V413.617H82.421A6 6 0 0 1 76.421 407.617V385.2340000000001A6 6 0 0 1 82.421 379.2340000000001H104V349.015H52.831C44.503 349.014 38.707 340.7390000000001 41.554 332.9120000000001zM222.678 2.83V30.897A6 6 0 0 1 216.678 36.897H39.322A6 6 0 0 1 33.322 30.897V2.83L11.174 -11.334A6 6 0 0 1 8.407 -16.389V-58A6 6 0 0 1 14.407 -64H241.594A6 6 0 0 1 247.594 -58V-16.388A6 6 0 0 1 244.8270000000001 -11.333L222.678 2.83z" />
+    <glyph glyph-name="chess-king"
+      unicode="&#xF43F;"
+      horiz-adv-x="448" d=" M416 -28V-52C416 -58.627 410.627 -64 404 -64H44C37.373 -64 32 -58.627 32 -52V-28C32 -21.373 37.373 -16 44 -16H404C410.627 -16 416 -21.373 416 -28zM407.967 296H248V344H298A6 6 0 0 1 304 350V386A6 6 0 0 1 298 392H248V442A6 6 0 0 1 242 448H206A6 6 0 0 1 200 442V392H150A6 6 0 0 1 144 386V350A6 6 0 0 1 150 344H200V296H40.033C12.459 296 -6.846 268.756 2.295 242.741L87.582 0H360.418L445.7050000000001 242.741C454.846 268.756 435.541 296 407.967 296z" />
+    <glyph glyph-name="chess-knight-alt"
+      unicode="&#xF442;"
+      horiz-adv-x="320" d=" M15.729 201.295L63.371 180.121A8.535 8.535 0 0 1 70.006 179.996L93.888 189.548A8.532 8.532 0 0 1 98.924 195.127L108.159 227.445A17.064 17.064 0 0 0 116.937 238.021L135.114 247.109V205.976A34.135 34.135 0 0 0 116.245 175.445L73.292 153.968A68.267 68.267 0 0 1 35.554 92.906V76.416L66.58 47.987H253.425L284.451 76.416V234.66C284.447 317.137 217.587 384 135.11 384H19.195A8.534 8.534 0 0 1 10.661 375.466V371.668C10.661 370.421 10.934 369.189 11.462 368.059L23.107 343.11L15.66 335.663A17.067 17.067 0 0 1 10.661 323.5950000000001V209.093A8.532 8.532 0 0 1 15.729 201.295zM51.105 309.328C59.695 309.328 66.66 302.363 66.66 293.773S59.695 278.218 51.105 278.218S35.55 285.183 35.55 293.773C35.55 302.364 42.514 309.328 51.105 309.328zM288.015 31.32V10.002L307.025 -4.8A6 6 0 0 0 309.339 -9.534V-58A6 6 0 0 0 303.339 -64H16.661A6 6 0 0 0 10.661 -58V-9.535C10.661 -7.684 11.516 -5.936 12.977 -4.799L32.005 10.003V31.32A6 6 0 0 0 38.005 37.32H282.015A6 6 0 0 0 288.015 31.32z" />
+    <glyph glyph-name="chess-knight"
+      unicode="&#xF441;"
+      horiz-adv-x="384" d=" M352 224V0H32V46.557C32 76.859 49.12 104.56 76.223 118.111L133.466 146.733A48 48 0 0 1 160 189.666V240L137.873 228.937A23.996 23.996 0 0 1 125.323 213.292L113.488 165.954A12 12 0 0 0 106.303 157.723L76.702 145.8830000000001A11.998 11.998 0 0 0 67.372 146.059L7.126 172.833A12 12 0 0 0 0 183.799V342.059C0 348.424 2.529 354.529 7.03 359.03L16 368L1.789 396.4220000000001A16.937 16.937 0 0 0 0 404C0 410.627 5.373 416 12 416H160C266.039 416 352 330.039 352 224zM372 -16H12C5.373 -16 0 -21.373 0 -28V-52C0 -58.627 5.373 -64 12 -64H372C378.627 -64 384 -58.627 384 -52V-28C384 -21.373 378.627 -16 372 -16zM52 320C40.954 320 32 311.046 32 300S40.954 280 52 280S72 288.954 72 300S63.046 320 52 320z" />
+    <glyph glyph-name="chess-pawn-alt"
+      unicode="&#xF444;"
+      horiz-adv-x="320" d=" M107.278 173.187H78.885A6 6 0 0 0 72.885 179.187V211.11A6 6 0 0 0 78.885 217.11H124.998C94.817 230.372 73.583 260.237 72.902 295.153C71.964 343.212 110.688 383.3180000000001 158.751 383.991C207.435 384.673 247.1150000000001 345.413 247.1150000000001 296.885C247.1150000000001 261.2270000000001 225.6810000000001 230.591 195.0020000000001 217.11H241.1150000000001A6 6 0 0 0 247.1150000000001 211.11V179.186A6 6 0 0 0 241.1150000000001 173.186H212.692C212.6770000000001 148.0680000000001 211 110.08 230.4290000000001 66.652H89.535C109.376 111.0740000000001 107.298 150.2740000000001 107.278 173.187zM278.2270000000001 14.2960000000001V48.208A6 6 0 0 1 272.2270000000001 54.208H47.773A6 6 0 0 1 41.773 48.208V14.2960000000001L13.574 -2.624A6 6 0 0 1 10.661 -7.7689999999999V-58A6 6 0 0 1 16.661 -64H303.34A6 6 0 0 1 309.34 -58V-7.769A6 6 0 0 1 306.427 -2.624L278.227 14.296z" />
+    <glyph glyph-name="chess-pawn"
+      unicode="&#xF443;"
+      horiz-adv-x="320" d=" M264 0H56S116 42.743 116 176H84C77.373 176 72 181.373 72 188V212C72 218.627 77.373 224 84 224H124.209C95.721 237.44 76 266.4120000000001 76 300C76 346.392 113.608 384 160 384S244 346.392 244 300C244 266.4120000000001 224.279 237.44 195.791 224H236C242.627 224 248 218.627 248 212V188C248 181.373 242.627 176 236 176H204C204 42.743 264 0 264 0zM292 -16H28C21.373 -16 16 -21.373 16 -28V-52C16 -58.627 21.373 -64 28 -64H292C298.627 -64 304 -58.627 304 -52V-28C304 -21.373 298.627 -16 292 -16z" />
+    <glyph glyph-name="chess-queen-alt"
+      unicode="&#xF446;"
+      horiz-adv-x="320" d=" M135.85 424.028C135.85 437.267 146.583 448 159.822 448S183.794 437.267 183.794 424.028S173.061 400.056 159.822 400.056S135.85 410.789 135.85 424.028zM264.83 9.996V41.716A6 6 0 0 1 258.83 47.716H61.17A6 6 0 0 1 55.17 41.716V9.996L30.351 -5.876A6 6 0 0 1 27.584 -10.931V-58A6 6 0 0 1 33.584 -64H286.4170000000001A6 6 0 0 1 292.4170000000001 -58V-10.931A6 6 0 0 1 289.6500000000001 -5.876L264.8300000000001 9.996zM73.841 243.375L73.839 219.096A6 6 0 0 1 79.839 213.096H109.158C109.405 177.124 109.354 113.438 89.99 56.544H230.02C210.889 112.752 210.711 175.375 210.898 213.096H240.163A6 6 0 0 1 246.163 219.096L246.165 243.375A6 6 0 0 1 240.165 249.375H79.841A6 6 0 0 1 73.841 243.375zM221.867 258.203L266.271 365.693A6 6 0 0 1 263.526 373.29L248.136 381.413A5.997 5.997 0 0 1 240.112 379.058C236.3930000000001 372.467 230.451 363.582 221.644 363.582C209.567 363.582 208.566 371.766 208.1040000000001 387.375A6.005 6.005 0 0 1 202.1060000000001 393.207H186.0110000000001C183.4270000000001 393.207 181.1700000000001 391.539 180.3190000000001 389.099C176.46 378.04 169.1960000000001 372.133 160.0020000000001 372.133S143.5450000000001 378.04 139.685 389.099C138.834 391.539 136.577 393.207 133.993 393.207H117.898A6.005 6.005 0 0 1 111.9 387.374C111.442 371.804 110.452 363.582 98.359 363.582C89.771 363.582 84.228 371.721 79.759 379.162A5.999 5.999 0 0 1 71.813 381.384L56.479 373.29A6 6 0 0 1 53.734 365.693L98.138 258.2030000000001H221.867z" />
+    <glyph glyph-name="chess-queen"
+      unicode="&#xF445;"
+      horiz-adv-x="512" d=" M436 -64H76C69.373 -64 64 -58.627 64 -52V-28C64 -21.373 69.373 -16 76 -16H436C442.627 -16 448 -21.373 448 -28V-52C448 -58.627 442.627 -64 436 -64zM255.579 448C224.651 448 199.579 422.928 199.579 392S224.651 336 255.579 336S311.579 361.072 311.579 392S286.507 448 255.579 448zM460.147 293.366C454.3790000000001 296.411 447.2310000000001 294.298 444.0650000000001 288.596C435.4490000000001 273.0800000000001 421.3180000000001 250.795 400.0000000000001 250.795C371.2860000000001 250.795 369.3750000000001 270.5990000000001 368.3140000000001 308.337C368.1310000000001 314.829 362.8130000000001 320.0010000000001 356.3190000000001 320.0010000000001H315.3130000000001C310.1380000000001 320.0010000000001 305.5590000000001 316.673 303.9250000000002 311.7630000000001C295.0350000000002 285.0540000000001 277.8520000000002 270.7710000000001 256.0000000000001 270.7710000000001S216.9660000000001 285.0540000000001 208.0750000000001 311.7630000000001C206.4410000000001 316.673 201.8620000000001 320.0010000000001 196.6870000000001 320.0010000000001H155.6820000000001C149.1870000000001 320.0010000000001 143.8690000000001 314.827 143.6870000000001 308.3340000000001C142.6350000000001 270.692 140.7530000000001 250.795 111.9990000000001 250.795C91.3080000000001 250.795 78.1820000000001 271.019 67.5740000000001 288.8200000000001C64.3080000000001 294.3 57.3160000000001 296.2510000000001 51.6750000000001 293.273L12.4960000000001 272.5940000000001A12 12 0 0 1 6.9860000000001 257.449L112 0H400L505.014 257.448A12 12 0 0 1 499.504 272.593L460.147 293.366z" />
+    <glyph glyph-name="chess-rook-alt"
+      unicode="&#xF448;"
+      horiz-adv-x="384" d=" M357.056 -3.493V-58A6 6 0 0 0 351.056 -64H32.944A6 6 0 0 0 26.944 -58V-3.494C26.944 -1.643 27.799 0.105 29.26 1.242L50.534 17.792V41.984A6 6 0 0 0 56.534 47.984H327.487A6 6 0 0 0 333.487 41.984V17.792L354.742 1.242A6.001 6.001 0 0 0 357.056 -3.4930000000001zM95.768 237.92L57.066 264.308A6 6 0 0 0 54.446 269.265V378A6 6 0 0 0 60.446 384H103.465A6 6 0 0 0 109.465 378V328.979H144.834V378A6 6 0 0 0 150.834 384H233.152A6 6 0 0 0 239.152 378V328.979H274.521V378A6 6 0 0 0 280.521 384H323.54A6 6 0 0 0 329.54 378V269.265A6 6 0 0 0 326.92 264.308L288.251 237.943C288.115 209.613 288.514 138.291 306.735 59.775H77.249C95.508 138.514 95.907 209.727 95.768 237.92zM168.42 136.403H215.579V183.565C215.579 196.588 205.022 207.144 192 207.144C178.977 207.144 168.421 196.587 168.421 183.565V136.403z" />
+    <glyph glyph-name="chess-rook"
+      unicode="&#xF447;"
+      horiz-adv-x="384" d=" M81.241 232.973C80.957 189.08 77.411 99.924 48 0H335.9820000000001C306.5820000000001 99.604 303.0460000000001 188.912 302.761 232.975L348.1790000000001 275.287A11.998 11.998 0 0 1 351.999 284.067V404C351.999 410.627 346.6260000000001 416 339.999 416H299.999C293.372 416 287.999 410.627 287.999 404V360H239.999V404C239.999 410.627 234.6260000000001 416 227.999 416H155.999C149.372 416 143.999 410.627 143.999 404V360H96V404C96 410.627 90.627 416 84 416H44C37.373 416 32 410.627 32 404V284.068C32 280.738 33.384 277.558 35.82 275.288L81.241 232.973zM160 192C160 209.673 174.327 224 192 224C209.673 224 224 209.673 224 192V127.996H160V192zM384 -28V-52C384 -58.627 378.627 -64 372 -64H12C5.373 -64 0 -58.627 0 -52V-28C0 -21.373 5.373 -16 12 -16H372C378.627 -16 384 -21.373 384 -28z" />
+    <glyph glyph-name="chess"
+      unicode="&#xF439;"
+      horiz-adv-x="512" d=" M199.821 230.367A6 6 0 0 0 205.821 224.367L205.82 203.601A6 6 0 0 0 199.82 197.601H174.015C174.015 165.886 171.862 101.4 191.413 44.372H64.597C84.54 102.548 82.02 168.755 82.02 197.601H56.183A6 6 0 0 0 50.183 203.601L50.185 224.367A6 6 0 0 0 56.185 230.367H199.821zM41.554 332.9120000000001L76.134 237.841H179.868L214.44 332.913C217.286 340.7390000000001 211.49 349.014 203.162 349.014H152V379.2340000000001H173.57A6 6 0 0 1 179.57 385.2340000000001V407.617A6 6 0 0 1 173.57 413.617H145.203V442A6 6 0 0 1 139.203 448H116.82A6 6 0 0 1 110.82 442V413.617H82.421A6 6 0 0 1 76.421 407.617V385.2340000000001A6 6 0 0 1 82.421 379.2340000000001H104V349.015H52.831C44.503 349.014 38.707 340.7390000000001 41.554 332.9120000000001zM222.678 2.83V30.897A6 6 0 0 1 216.678 36.897H39.322A6 6 0 0 1 33.322 30.897V2.83L11.174 -11.334A6 6 0 0 1 8.407 -16.389V-58A6 6 0 0 1 14.407 -64H241.594A6 6 0 0 1 247.594 -58V-16.388A6 6 0 0 1 244.8270000000001 -11.333L222.678 2.83zM313.256 147.055L338.136 130.0919999999999C338.226 111.9679999999999 337.969 66.1879999999999 326.231 15.5699999999999H473.757C462.044 66.045 461.788 111.894 461.875 130.107L486.734 147.056A3.856 3.856 0 0 1 488.418 150.243V220.144A3.8569999999999998 3.8569999999999998 0 0 1 484.561 224.001H456.9059999999999A3.8569999999999998 3.8569999999999998 0 0 1 453.0489999999999 220.144V188.63H430.3119999999999V220.144A3.8569999999999998 3.8569999999999998 0 0 1 426.4539999999999 224.001H373.5359999999999A3.8569999999999998 3.8569999999999998 0 0 1 369.6789999999999 220.144V188.63H346.9419999999999V220.144A3.8569999999999998 3.8569999999999998 0 0 1 343.0849999999998 224.001H315.43A3.8569999999999998 3.8569999999999998 0 0 1 311.573 220.144V150.243A3.8549999999999995 3.8549999999999995 0 0 1 313.256 147.055zM384.841 95.149C384.841 103.521 391.628 110.307 400 110.307S415.158 103.52 415.158 95.149V64.831H384.841V95.149zM504.62 -22.059L490.956 -11.42V4.132A3.8569999999999998 3.8569999999999998 0 0 1 487.099 7.989H312.915A3.8569999999999998 3.8569999999999998 0 0 1 309.058 4.132V-11.42L295.381 -22.059A3.8569999999999998 3.8569999999999998 0 0 1 293.893 -25.103V-60.142A3.8569999999999998 3.8569999999999998 0 0 1 297.75 -63.999H502.25A3.8569999999999998 3.8569999999999998 0 0 1 506.107 -60.142V-25.102A3.859 3.859 0 0 1 504.62 -22.059z" />
+    <glyph glyph-name="chevron-circle-down"
+      unicode="&#xF13A;"
+      horiz-adv-x="512" d=" M504 192C504 55 393 -56 256 -56S8 55 8 192S119 440 256 440S504 329 504 192zM273 78.1L408.5 213.6C417.9 223 417.9 238.2 408.5 247.5000000000001L391.5 264.5C382.1 273.9000000000001 366.9 273.9000000000001 357.6 264.5L256 162.9L154.4 264.5C145 273.9 129.8 273.9 120.5 264.5L103.5 247.5C94.1 238.1 94.1 222.9 103.5 213.6L239 78.1C248.4 68.7000000000001 263.6 68.7000000000001 273 78.1z" />
+    <glyph glyph-name="chevron-circle-left"
+      unicode="&#xF137;"
+      horiz-adv-x="512" d=" M256 -56C119 -56 8 55 8 192S119 440 256 440S504 329 504 192S393 -56 256 -56zM142.1 175L277.6 39.5C287 30.1 302.2000000000001 30.1 311.5 39.5L328.5 56.5C337.9 65.9 337.9 81.1 328.5 90.4L226.9 192L328.5 293.6C337.9 303 337.9 318.2 328.5 327.5L311.5 344.5C302.1 353.9 286.9 353.9 277.6 344.5L142.1 209C132.7 199.6 132.7 184.4 142.1 175z" />
+    <glyph glyph-name="chevron-circle-right"
+      unicode="&#xF138;"
+      horiz-adv-x="512" d=" M256 440C393 440 504 329 504 192S393 -56 256 -56S8 55 8 192S119 440 256 440zM369.9 209L234.4 344.5C225 353.9 209.8 353.9 200.5 344.5L183.5 327.5C174.1 318.1 174.1 302.9 183.5 293.6L285.1 192L183.5 90.4C174.1 81 174.1 65.8 183.5 56.5L200.5 39.5C209.9 30.1 225.1 30.1 234.4 39.5L369.9 175C379.3 184.4 379.3 199.6 369.9 209z" />
+    <glyph glyph-name="chevron-circle-up"
+      unicode="&#xF139;"
+      horiz-adv-x="512" d=" M8 192C8 329 119 440 256 440S504 329 504 192S393 -56 256 -56S8 55 8 192zM239 305.9L103.5 170.4C94.1 161 94.1 145.8 103.5 136.5L120.5 119.5C129.9 110.1 145.1 110.1 154.4 119.5L256 221.1L357.6 119.5C367 110.1 382.2000000000001 110.1 391.5 119.5L408.5 136.5C417.9 145.9 417.9 161.1 408.5 170.4L273 305.9C263.6 315.3 248.4 315.3 239 305.9z" />
+    <glyph glyph-name="chevron-double-down"
+      unicode="&#xF322;"
+      horiz-adv-x="448" d=" M207 -29.5L12.7 164.9C3.3 174.3 3.3 189.5 12.7 198.8L35.4 221.5C44.8 230.9 59.9 230.9 69.3 221.5L224 67.5L378.7 221.5C388.1 230.8 403.2 230.8 412.6 221.5L435.3 198.8C444.7 189.4 444.7 174.2 435.3 164.9L241 -29.5C231.6 -38.8 216.4 -38.8 207 -29.5zM241 162.5L435.3 356.9C444.7 366.3 444.7 381.5 435.3 390.8L412.6 413.5C403.2000000000001 422.9 388.1 422.9 378.7000000000001 413.5L224 259.5L69.3 413.5C59.9 422.8 44.8 422.8 35.4 413.5L12.7 390.8C3.3 381.4 3.3 366.2 12.7 356.9L207 162.5C216.4 153.2 231.6 153.2 241 162.5z" />
+    <glyph glyph-name="chevron-double-left"
+      unicode="&#xF323;"
+      horiz-adv-x="512" d=" M34.5 209L228.9 403.3C238.3 412.7 253.5 412.7 262.8 403.3L285.5 380.6C294.9 371.2 294.9 356.1 285.5 346.7L131.5 192L285.5 37.3C294.8 27.9 294.8 12.8 285.5 3.4L262.8 -19.3C253.4 -28.6999999999999 238.2 -28.6999999999999 228.9 -19.3L34.5 175C25.2 184.4 25.2 199.6 34.5 209zM226.5 175L420.8 -19.3C430.2 -28.7 445.4000000000001 -28.7 454.7 -19.3L477.4 3.4C486.8 12.8 486.8 27.9 477.4 37.3L323.5 192L477.5 346.7C486.8 356.1 486.8 371.2 477.5 380.6L454.8 403.3C445.4000000000001 412.7 430.2 412.7 420.9000000000001 403.3L226.5 209C217.2 199.6 217.2 184.4 226.5 175z" />
+    <glyph glyph-name="chevron-double-right"
+      unicode="&#xF324;"
+      horiz-adv-x="512" d=" M477.5 175L283.1 -19.3C273.7000000000001 -28.7 258.5 -28.7 249.2 -19.3L226.5000000000001 3.4C217.1 12.8 217.1 27.9 226.5000000000001 37.3L380.5 192L226.5 346.7C217.2 356.0999999999999 217.2 371.2 226.5 380.5999999999999L249.2 403.3C258.6 412.7 273.8 412.7 283.1 403.3L477.5 209C486.8 199.6 486.8 184.4 477.5 175zM285.5 209L91.1 403.3C81.7 412.7 66.5 412.7 57.2 403.3L34.5 380.6C25.1 371.2 25.1 356.1 34.5 346.7L188.5 192L34.5 37.3C25.2 27.9 25.2 12.8 34.5 3.4L57.2 -19.3C66.6 -28.6999999999999 81.8 -28.6999999999999 91.1 -19.3L285.5 175C294.8 184.4 294.8 199.6 285.5 209z" />
+    <glyph glyph-name="chevron-double-up"
+      unicode="&#xF325;"
+      horiz-adv-x="448" d=" M241 413.5L435.3 219.2C444.7 209.8 444.7 194.6 435.3 185.3L412.6 162.6C403.2000000000001 153.2000000000001 388.1 153.2000000000001 378.7000000000001 162.6L224 316.5L69.3 162.5C59.9 153.2 44.8 153.2 35.4 162.5L12.7 185.2C3.3 194.6 3.3 209.8 12.7 219.1L207 413.5C216.4 422.8 231.6 422.8 241 413.5zM207 221.5L12.7 27.1C3.3 17.7 3.3 2.5 12.7 -6.8L35.4 -29.4999999999999C44.8 -38.8999999999999 59.9 -38.8999999999999 69.3 -29.4999999999999L224 124.5000000000001L378.7 -29.4999999999999C388.1 -38.8 403.2 -38.8 412.6 -29.4999999999999L435.3 -6.8C444.7 2.6 444.7 17.8000000000001 435.3 27.1L241 221.5C231.6 230.8 216.4 230.8 207 221.5z" />
+    <glyph glyph-name="chevron-down"
+      unicode="&#xF078;"
+      horiz-adv-x="448" d=" M207.029 66.524L12.686 260.868C3.313 270.241 3.313 285.437 12.686 294.809L35.353 317.476C44.71 326.833 59.875 326.851 69.254 317.516L224 163.495L378.745 317.516C388.124 326.851 403.289 326.833 412.646 317.476L435.313 294.809C444.686 285.4360000000001 444.686 270.24 435.313 260.868L240.971 66.524C231.598 57.152 216.402 57.152 207.029 66.524z" />
+    <glyph glyph-name="chevron-left"
+      unicode="&#xF053;"
+      horiz-adv-x="320" d=" M34.52 208.97L228.87 403.31C238.24 412.68 253.44 412.68 262.81 403.31L285.48 380.64C294.8400000000001 371.28 294.85 356.12 285.5200000000001 346.74L131.49 192L285.51 37.25C294.85 27.87 294.83 12.71 285.47 3.35L262.8 -19.32C253.43 -28.69 238.23 -28.69 228.86 -19.32L34.52 175.03C25.15 184.4 25.15 199.6 34.52 208.97z" />
+    <glyph glyph-name="chevron-right"
+      unicode="&#xF054;"
+      horiz-adv-x="320" d=" M285.476 175.029L91.132 -19.314C81.759 -28.687 66.563 -28.687 57.191 -19.314L34.524 3.353C25.167 12.7099999999999 25.149 27.8749999999999 34.484 37.254L188.505 192L34.484 346.745C25.149 356.124 25.167 371.289 34.524 380.646L57.191 403.313C66.564 412.6860000000001 81.76 412.6860000000001 91.132 403.313L285.475 208.97C294.848 199.598 294.848 184.402 285.476 175.029z" />
+    <glyph glyph-name="chevron-square-down"
+      unicode="&#xF329;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM240.971 86.059L376.486 221.574C385.859 230.947 385.859 246.143 376.486 255.515L359.515 272.486C350.142 281.8590000000001 334.946 281.8590000000001 325.574 272.486L224 170.912L122.427 272.485C113.054 281.858 97.858 281.858 88.486 272.485L71.515 255.514C62.142 246.141 62.142 230.945 71.515 221.573L207.03 86.058C216.402 76.686 231.598 76.686 240.971 86.059z" />
+    <glyph glyph-name="chevron-square-left"
+      unicode="&#xF32A;"
+      horiz-adv-x="448" d=" M400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32zM118.059 175.029L253.574 39.514C262.947 30.141 278.143 30.141 287.515 39.514L304.486 56.485C313.859 65.858 313.859 81.054 304.486 90.4260000000001L202.912 192L304.486 293.573C313.859 302.946 313.859 318.142 304.486 327.514L287.515 344.485C278.142 353.858 262.946 353.858 253.574 344.485L118.059 208.971C108.686 199.598 108.686 184.402 118.059 175.029z" />
+    <glyph glyph-name="chevron-square-right"
+      unicode="&#xF32B;"
+      horiz-adv-x="448" d=" M48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416zM329.941 208.971L194.427 344.485C185.054 353.858 169.858 353.858 160.486 344.485L143.515 327.514C134.142 318.141 134.142 302.945 143.515 293.573L245.088 192L143.515 90.427C134.142 81.054 134.142 65.858 143.515 56.486L160.486 39.515C169.859 30.142 185.055 30.142 194.427 39.515L329.942 175.03C339.314 184.402 339.314 199.598 329.9410000000001 208.971z" />
+    <glyph glyph-name="chevron-square-up"
+      unicode="&#xF32C;"
+      horiz-adv-x="448" d=" M0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16zM207.029 297.941L71.515 162.427C62.142 153.054 62.142 137.858 71.515 128.486L88.486 111.515C97.859 102.142 113.055 102.142 122.427 111.515L224 213.088L325.573 111.514C334.946 102.141 350.142 102.141 359.514 111.514L376.485 128.485C385.858 137.858 385.858 153.054 376.485 162.4260000000001L240.971 297.9410000000001C231.598 307.314 216.402 307.314 207.029 297.9410000000001z" />
+    <glyph glyph-name="chevron-up"
+      unicode="&#xF077;"
+      horiz-adv-x="448" d=" M240.971 317.476L435.314 123.1330000000001C444.687 113.7600000000001 444.687 98.564 435.314 89.192L412.647 66.525C403.29 57.168 388.125 57.15 378.7459999999999 66.485L224 220.505L69.255 66.484C59.876 57.149 44.711 57.167 35.354 66.524L12.687 89.191C3.314 98.564 3.314 113.7600000000001 12.687 123.1320000000001L207.03 317.475C216.402 326.848 231.598 326.848 240.971 317.476z" />
+    <glyph glyph-name="child"
+      unicode="&#xF1AE;"
+      horiz-adv-x="384" d=" M120 376C120 415.765 152.235 448 192 448S264 415.765 264 376C264 336.236 231.765 304 192 304S120 336.236 120 376zM374.627 374.627C362.1310000000001 387.124 341.8690000000001 387.124 329.373 374.627L242.745 288H141.254L54.627 374.627C42.131 387.124 21.869 387.124 9.373 374.627C-3.124 362.13 -3.124 341.8690000000001 9.373 329.372L104 234.746V-32C104 -49.673 118.327 -64 136 -64H152C169.673 -64 184 -49.673 184 -32V80H200V-32C200 -49.673 214.327 -64 232 -64H248C265.673 -64 280 -49.673 280 -32V234.746L374.627 329.373C387.124 341.87 387.124 362.13 374.627 374.627z" />
+    <glyph glyph-name="chimney"
+      unicode="&#xF78B;"
+      horiz-adv-x="512" d=" M480 448H32C14.3 448 0 433.7 0 416V288C0 270.3 14.3 256 32 256H480C497.7 256 512 270.3 512 288V416C512 433.7 497.7 448 480 448zM32 -64H320V64H32V-64zM192 96H480V224H192V96zM32 224V96H160V224H32zM352 -64H480V64H352V-64z" />
+    <glyph glyph-name="church"
+      unicode="&#xF51D;"
+      horiz-adv-x="640" d=" M464.46 201.32L352 268.8V320H400C408.84 320 416 327.16 416 336V368C416 376.8400000000001 408.84 384 400 384H352V432C352 440.84 344.84 448 336 448H304C295.1600000000001 448 288 440.84 288 432V384H240C231.16 384 224 376.8400000000001 224 368V336C224 327.16 231.16 320 240 320H288V268.8L175.54 201.32A31.997 31.997 0 0 1 160 173.88V-64H256V32C256 67.35 284.65 96 320 96S384 67.35 384 32V-64H480V173.88C480 185.12 474.1 195.54 464.46 201.32zM0 52.04V-48C0 -56.84 7.16 -64 16 -64H128V128L19.39 81.46A32.024 32.024 0 0 1 0 52.04zM620.61 81.46L512 128V-64H624C632.84 -64 640 -56.84 640 -48V52.04C640 64.84 632.37 76.41 620.61 81.46z" />
+    <glyph glyph-name="circle-notch"
+      unicode="&#xF1CE;"
+      horiz-adv-x="512" d=" M288 408.944V392.2850000000001C288 381.481 295.281 372.126 305.686 369.219C383.204 347.5660000000001 440 276.482 440 192C440 90.311 357.705 8 256 8C154.311 8 72 90.295 72 192C72 276.4700000000001 128.786 347.564 206.312 369.219C216.719 372.126 224 381.483 224 392.288V408.936C224 424.645 209.166 436.089 193.954 432.17C86.603 404.5180000000001 7.394 306.794 8.003 190.668C8.723 53.616 119.48 -56.288 256.534 -55.999C393.255 -55.711 504 55.212 504 192C504 307.633 424.86 404.779 317.789 432.236C302.678 436.111 288 424.544 288 408.944z" />
+    <glyph glyph-name="circle"
+      unicode="&#xF111;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440z" />
+    <glyph glyph-name="city"
+      unicode="&#xF64F;"
+      horiz-adv-x="640" d=" M616 256H480V424C480 437.26 469.26 448 456 448H312C298.74 448 288 437.26 288 424V352H224V432C224 440.84 216.84 448 208 448H192C183.16 448 176 440.84 176 432V352H112V432C112 440.84 104.84 448 96 448H80C71.16 448 64 440.84 64 432V352H24C10.74 352 0 341.26 0 328V-32C0 -49.67 14.33 -64 32 -64H608C625.67 -64 640 -49.67 640 -32V232C640 245.26 629.25 256 616 256zM128 44C128 37.37 122.63 32 116 32H76C69.37 32 64 37.37 64 44V84C64 90.63 69.37 96 76 96H116C122.63 96 128 90.63 128 84V44zM128 140C128 133.37 122.63 128 116 128H76C69.37 128 64 133.37 64 140V180C64 186.63 69.37 192 76 192H116C122.63 192 128 186.63 128 180V140zM128 236C128 229.37 122.63 224 116 224H76C69.37 224 64 229.37 64 236V276C64 282.63 69.37 288 76 288H116C122.63 288 128 282.63 128 276V236zM256 44C256 37.37 250.63 32 244 32H204C197.37 32 192 37.37 192 44V84C192 90.63 197.37 96 204 96H244C250.63 96 256 90.63 256 84V44zM256 140C256 133.37 250.63 128 244 128H204C197.37 128 192 133.37 192 140V180C192 186.63 197.37 192 204 192H244C250.63 192 256 186.63 256 180V140zM256 236C256 229.37 250.63 224 244 224H204C197.37 224 192 229.37 192 236V276C192 282.63 197.37 288 204 288H244C250.63 288 256 282.63 256 276V236zM416 140C416 133.37 410.63 128 404 128H364C357.37 128 352 133.37 352 140V180C352 186.63 357.37 192 364 192H404C410.63 192 416 186.63 416 180V140zM416 236C416 229.37 410.63 224 404 224H364C357.37 224 352 229.37 352 236V276C352 282.63 357.37 288 364 288H404C410.63 288 416 282.63 416 276V236zM416 332C416 325.37 410.63 320 404 320H364C357.37 320 352 325.37 352 332V372C352 378.63 357.37 384 364 384H404C410.63 384 416 378.63 416 372V332zM576 44C576 37.37 570.63 32 564 32H524C517.37 32 512 37.37 512 44V84C512 90.63 517.37 96 524 96H564C570.63 96 576 90.63 576 84V44zM576 140C576 133.37 570.63 128 564 128H524C517.37 128 512 133.37 512 140V180C512 186.63 517.37 192 524 192H564C570.63 192 576 186.63 576 180V140z" />
+    <glyph glyph-name="claw-marks"
+      unicode="&#xF6C2;"
+      horiz-adv-x="512" d=" M6.99 223.49C1.99 225.86 -2.41 219.4 1.5 215.49L86.62 130.36C92.62 124.36 95.99 116.22 95.99 107.73V64H139.73C148.22 64 156.36 60.63 162.36 54.63L279.51 -62.53C283.37 -66.39 289.83 -61.97 287.5 -57.04C206.4 114.89 63.36 196.74 6.99 223.49zM246.63 418.37C252.63 412.37 256 404.23 256 395.74V352H299.74C308.23 352 316.37 348.63 322.37 342.63L374.63 290.37C380.63 284.37 384 276.23 384 267.74V224H427.73C436.2200000000001 224 444.36 220.63 450.36 214.63L503.52 161.47C507.38 157.61 513.84 162.03 511.51 166.96C430.4 338.89 287.36 420.74 230.99 447.49C225.99 449.86 221.59 443.4 225.5 439.49L246.63 418.37zM204.27 327.68C196.47 333.73 192 342.8300000000001 192 352.7100000000001V384H134.01C128 384 121.97 385.8400000000001 116.89 389.05C74.85 415.61 38.37 434.77 12.42 447.09C3.54 451.3 -4.28 439.82 2.67 432.87L182.63 252.91C188.63 246.91 192 238.77 192 230.28V192H230.29C238.78 192 246.91 188.63 252.92 182.63L342.63 92.92C348.63 86.92 352 78.78 352 70.29V32H390.29C398.7800000000001 32 406.9100000000001 28.63 412.92 22.63L496.93 -61.38C503.79 -68.24 515.27 -60.39 511.13 -51.62C428.4 123.72 309.58 246.03 204.27 327.68z" />
+    <glyph glyph-name="clipboard-check"
+      unicode="&#xF46C;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 408C205.3 408 216 397.3 216 384S205.3 360 192 360S168 370.7 168 384S178.7 408 192 408zM313.2 176.2L170.2 34.4C165.5 29.7 157.9 29.8 153.2 34.5L70.6 117.8C65.9 122.5 66 130.1 70.7 134.8L99.1 163C103.8 167.7 111.4 167.6 116.1 162.9L162.1 116.5L268.1 221.7C272.8 226.4 280.4000000000001 226.3 285.1 221.6L313.3 193.2C318 188.4 317.9000000000001 180.9 313.2 176.2z" />
+    <glyph glyph-name="clipboard-list-check"
+      unicode="&#xF737;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 408C205.3 408 216 397.3 216 384S205.3 360 192 360S168 370.7 168 384S178.7 408 192 408zM65.6 238.6L78.3 251.2C80.4 253.3 83.8 253.3 85.9 251.2L106.5 230.4L154.1 277.6C156.2 279.7 159.6 279.7 161.7 277.6L174.3 264.9C176.4 262.8 176.4 259.4 174.3 257.3L110.1 193.7C108 191.6 104.6 191.6 102.5 193.7L65.6 231C63.5 233.1 63.5 236.5 65.6 238.6zM96 56C82.7 56 72 66.7 72 80S82.7 104 96 104S120 93.3 120 80S109.3 56 96 56zM320 72C320 67.6 316.4 64 312 64H168C163.6 64 160 67.6 160 72V88C160 92.4 163.6 96 168 96H312C316.4 96 320 92.4 320 88V72zM320 200C320 195.6 315.7 192 310.4 192H154.1L186.4 224H310.4C315.7 224 320 220.4 320 216V200z" />
+    <glyph glyph-name="clipboard-list"
+      unicode="&#xF46D;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM96 24C82.7 24 72 34.7 72 48S82.7 72 96 72S120 61.3 120 48S109.3 24 96 24zM96 120C82.7 120 72 130.7 72 144S82.7 168 96 168S120 157.3 120 144S109.3 120 96 120zM96 216C82.7 216 72 226.7 72 240S82.7 264 96 264S120 253.3 120 240S109.3 216 96 216zM192 408C205.3 408 216 397.3 216 384S205.3 360 192 360S168 370.7 168 384S178.7 408 192 408zM320 40C320 35.6 316.4 32 312 32H168C163.6 32 160 35.6 160 40V56C160 60.4 163.6 64 168 64H312C316.4 64 320 60.4 320 56V40zM320 136C320 131.6 316.4 128 312 128H168C163.6 128 160 131.6 160 136V152C160 156.4 163.6 160 168 160H312C316.4 160 320 156.4 320 152V136zM320 232C320 227.6 316.4 224 312 224H168C163.6 224 160 227.6 160 232V248C160 252.4 163.6 256 168 256H312C316.4 256 320 252.4 320 248V232z" />
+    <glyph glyph-name="clipboard-prescription"
+      unicode="&#xF5E8;"
+      horiz-adv-x="384" d=" M176 208H128V176H176C184.82 176 192 183.18 192 192S184.82 208 176 208zM336 384H256C256 419.29 227.29 448 192 448S128 419.29 128 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V336C384 362.51 362.51 384 336 384zM192 408C205.26 408 216 397.26 216 384C216 370.75 205.26 360 192 360S168 370.75 168 384C168 397.26 178.74 408 192 408zM304 16L292.69 4.69C286.44 -1.56 276.31 -1.56 270.06 4.69L240 34.75L209.94 4.69C203.69 -1.56 193.56 -1.56 187.31 4.69L176 16C169.75 22.25 169.75 32.38 176 38.63L206.06 68.69L146.74 128H128V80C128 71.16 120.84 64 112 64H96C87.16 64 80 71.16 80 80V240C80 248.84 87.16 256 96 256H176C211.34 256 240 227.35 240 192C240 167.78 226.38 146.95 206.54 136.08L240 102.62L269.9 132.52C276.15 138.77 286.28 138.77 292.53 132.52L303.83 121.21C310.08 114.96 310.08 104.83 303.83 98.58L273.93 68.68L304 38.62C310.24 32.38 310.24 22.25 304 16z" />
+    <glyph glyph-name="clipboard"
+      unicode="&#xF328;"
+      horiz-adv-x="384" d=" M384 336V-16C384 -42.51 362.51 -64 336 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H128C128 419.29 156.71 448 192 448S256 419.29 256 384H336C362.51 384 384 362.51 384 336zM192 408C178.745 408 168 397.255 168 384S178.745 360 192 360S216 370.745 216 384S205.255 408 192 408M288 294V314A6 6 0 0 1 282 320H102A6 6 0 0 1 96 314V294A6 6 0 0 1 102 288H282A6 6 0 0 1 288 294z" />
+    <glyph glyph-name="clock"
+      unicode="&#xF017;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM313.1 89.9L224.9 154C221.8 156.3 220 159.9 220 163.7V332C220 338.6 225.4 344 232 344H280C286.6 344 292 338.6 292 332V194.3L355.5 148.1C360.9 144.2000000000001 362 136.7000000000001 358.1 131.3L329.9000000000001 92.5C326.0000000000001 87.2 318.5000000000001 86 313.1 89.9z" />
+    <glyph glyph-name="clone"
+      unicode="&#xF24D;"
+      horiz-adv-x="512" d=" M464 448C490.51 448 512 426.51 512 400V112C512 85.49 490.51 64 464 64H176C149.49 64 128 85.49 128 112V400C128 426.51 149.49 448 176 448H464M176 32C131.888 32 96 67.888 96 112V320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H336C362.51 -64 384 -42.51 384 -16V32H176z" />
+    <glyph glyph-name="closed-captioning"
+      unicode="&#xF20A;"
+      horiz-adv-x="512" d=" M464 384H48C21.5 384 0 362.5 0 336V48C0 21.5 21.5 0 48 0H464C490.5 0 512 21.5 512 48V336C512 362.5 490.5 384 464 384zM218.1 160.3C220.9 162.8 225.2 162.4 227.3 159.4L246.8 131.7000000000001C248.5 129.3000000000001 248.3 126.1 246.3 124.0000000000001C192.7 67.2000000000001 73.5 91.9 73.5 191.9000000000001C73.5 289.2000000000001 195.2 311.4000000000001 246 262.0000000000001C248.1 260.0000000000001 248.5 258.8000000000001 247 256.3000000000001L229.5 225.8000000000001C227.6 222.7000000000001 223.3 221.8000000000001 220.4 224.1000000000001C179.6 256.1000000000002 125.8 239.0000000000001 125.8 192.9000000000001C125.9 144.9000000000001 176.9 122.4000000000001 218.1 160.3000000000001zM408.5 160.3C411.3 162.8 415.6 162.4 417.7 159.4L437.2 131.7000000000001C438.9 129.3000000000001 438.7 126.1 436.7 124.0000000000001C383.2 67.1000000000001 264 91.9 264 191.9000000000001C264 289.2000000000001 385.7 311.4000000000001 436.5 262.0000000000001C438.6 260.0000000000001 439 258.8000000000001 437.5 256.3000000000001L420 225.8C418.1 222.7 413.8 221.8 410.9 224.1C370.1 256.1 316.3 239.0000000000001 316.3 192.9C316.3 144.9 367.3 122.4 408.5 160.3z" />
+    <glyph glyph-name="cloud-download-alt"
+      unicode="&#xF381;"
+      horiz-adv-x="640" d=" M537.6 221.4C541.7 232.1 544 243.8 544 256C544 309 501 352 448 352C428.3 352 409.9 346 394.7 335.8C367 383.8 315.3 416 256 416C167.6 416 96 344.4 96 256C96 253.3 96.1 250.6 96.2 247.9C40.2 228.2 0 174.8 0 112C0 32.5 64.5 -32 144 -32H512C582.7 -32 640 25.3 640 96C640 157.9 596 209.6 537.6 221.4zM404.7000000000001 132.7L299.3 27.3C293.1 21.1 282.9000000000001 21.1 276.7 27.3L171.3 132.7C161.2 142.8 168.4 160 182.6 160H248V272C248 280.8 255.2 288 264 288H312C320.8 288 328 280.8 328 272V160H393.4C407.6 160 414.8 142.8 404.7 132.7z" />
+    <glyph glyph-name="cloud-download"
+      unicode="&#xF0ED;"
+      horiz-adv-x="640" d=" M537.6 221.4C541.7 232.1 544 243.8 544 256C544 309 501 352 448 352C428.3 352 409.9 346 394.7 335.8C367 383.8 315.3 416 256 416C167.6 416 96 344.4 96 256C96 253.3 96.1 250.6 96.2 247.9C40.2 228.2 0 174.8 0 112C0 32.5 64.5 -32 144 -32H512C582.7 -32 640 25.3 640 96C640 157.9 596 209.6 537.6 221.4zM397.7000000000001 128.4L305 35.7C295.6 26.3 280.4 26.3 271.1 35.7L178.4 128.4C169 137.8 169 153 178.4 162.3L189.2000000000001 173.1C198.8000000000001 182.7 214.4 182.4 223.7000000000001 172.6L256.1 138.1V264C256.1 277.3 266.8 288 280.1 288H296.1C309.4000000000001 288 320.1 277.3 320.1 264V138.1L352.5 172.6C361.8 182.5 377.4 182.7000000000001 387 173.1L397.8 162.3C407 153 407 137.8 397.7 128.4z" />
+    <glyph glyph-name="cloud-drizzle"
+      unicode="&#xF738;"
+      horiz-adv-x="512" d=" M416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320zM48 88C39.2 88 32 80.8 32 72V32C32 23.2 39.2 16 48 16S64 23.2 64 32V72C64 80.8 56.8 88 48 88zM144 8C135.2 8 128 0.8 128 -8V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V-8C160 0.8 152.8 8 144 8zM240 88C231.2 88 224 80.8 224 72V32C224 23.2 231.2 16 240 16S256 23.2 256 32V72C256 80.8 248.8 88 240 88zM336 8C327.2 8 320 0.8 320 -8V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V-8C352 0.8 344.8 8 336 8zM432 88C423.2 88 416 80.8 416 72V32C416 23.2 423.2 16 432 16S448 23.2 448 32V72C448 80.8 440.8 88 432 88z" />
+    <glyph glyph-name="cloud-hail-mixed"
+      unicode="&#xF73A;"
+      horiz-adv-x="512" d=" M183.9 77.9C176.3 82.3 166.5 79.7 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.3 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM279.2 78.3C271.3 82.1999999999999 261.7 79.1 257.7 71.1L241.7 39.1C237.8 31.2 240.9 21.6 248.9 17.6C251.2 16.4999999999999 253.7 15.9 256.1 15.9C261.9 15.9 267.6 19.1 270.4 24.7L286.4 56.7C290.2 64.8 287.1 74.4 279.2 78.3zM87.2 78.3C79.3 82.1999999999999 69.7 79.1 65.7 71.1L49.7 39.1C45.8 31.2 48.9 21.6 56.9 17.6C59.2 16.4999999999999 61.7 15.9 64.1 15.9C69.9 15.9 75.6 19.1 78.4 24.7L94.4 56.7C98.2 64.8 95.1 74.4 87.2 78.3zM471.2 78.3C463.3 82.1999999999999 453.7 79.1 449.7 71.1L433.7 39.1C429.8 31.2 432.9 21.6 440.9 17.6C443.2 16.4999999999999 445.7 15.9 448.1 15.9C453.9 15.9 459.6 19.1 462.4 24.7L478.4 56.7C482.2 64.8 479.1 74.4 471.2 78.3zM375.9 77.9C368.3 82.3 358.5 79.7 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.3 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9zM416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320zM32 0C14.3 0 0 -14.3 0 -32S14.3 -64 32 -64S64 -49.7 64 -32S49.7 0 32 0zM224 0C206.3 0 192 -14.3 192 -32S206.3 -64 224 -64S256 -49.7 256 -32S241.7 0 224 0zM416 0C398.3 0 384 -14.3 384 -32S398.3 -64 416 -64S448 -49.7 448 -32S433.7 0 416 0z" />
+    <glyph glyph-name="cloud-hail"
+      unicode="&#xF739;"
+      horiz-adv-x="512" d=" M416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320zM384 96C366.3 96 352 81.7 352 64S366.3 32 384 32S416 46.3 416 64S401.7 96 384 96zM192 0C174.3 0 160 -14.3 160 -32S174.3 -64 192 -64S224 -49.7 224 -32S209.7 0 192 0zM320 0C302.3 0 288 -14.3 288 -32S302.3 -64 320 -64S352 -49.7 352 -32S337.7 0 320 0zM256 96C238.3 96 224 81.7 224 64S238.3 32 256 32S288 46.3 288 64S273.7 96 256 96zM64 0C46.3 0 32 -14.3 32 -32S46.3 -64 64 -64S96 -49.7 96 -32S81.7 0 64 0zM128 96C110.3 96 96 81.7 96 64S110.3 32 128 32S160 46.3 160 64S145.7 96 128 96z" />
+    <glyph glyph-name="cloud-meatball"
+      unicode="&#xF73B;"
+      horiz-adv-x="512" d=" M48 96C21.5 96 0 74.5 0 48S21.5 0 48 0S96 21.5 96 48S74.5 96 48 96zM464 96C437.5 96 416 74.5 416 48S437.5 0 464 0S512 21.5 512 48S490.5 96 464 96zM345 84.9C349.6 99.4 346.6 115.7 335.2 127.2C323.7 138.7 307.4 141.6 292.9 137.1C285.9 150.6 272.2 160.1 256 160.1S226.1 150.6 219.1 137.1C204.6 141.7 188.3 138.7 176.8 127.2C165.3 115.7 162.4 99.4 166.9 84.9C153.4 77.9 143.9 64.2 143.9 48S153.4 18.1 166.9 11.1C162.3 -3.4 165.3 -19.7 176.8 -31.2C185 -39.4 195.7 -43.5 206.5 -43.5C210.8 -43.5 215 -42.4 219.0999999999999 -41C226.1 -54.5 239.8 -64 256 -64S285.8999999999999 -54.5 292.8999999999999 -41C297 -42.3 301.2 -43.5 305.5 -43.5C316.3 -43.5 327 -39.4 335.2 -31.2C346.7 -19.7 349.5999999999999 -3.4 345 11.1C358.5 18.1 368 31.8 368 48S358.5 77.9 345 84.9zM512 224C512 277 469 320 416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H139.4C143 136 147.8 143.4 154.2 149.8C167.7 163.3 185.7 170.9 205 171.1C218.5 184.3 236.7 192 256 192S293.5 184.3 307 171.1C326.3 170.9 344.3 163.3 357.8 149.8C364.2 143.4 369.1 136 372.6 128H416C469 128 512 171 512 224z" />
+    <glyph glyph-name="cloud-moon-rain"
+      unicode="&#xF73C;"
+      horiz-adv-x="576" d=" M350.5 222.5C343.6 259.7 311.2 288 272 288C259.7 288 248.1 285 237.7 280C220.3 304.1 192.1 320 160 320C107 320 64 277 64 224C64 223.5 64.2 222.9 64.2 222.4C27.6 215.1 0 182.8 0 144C0 99.8 35.8 64 80 64H336C380.2 64 416 99.8 416 144C416 183.2 387.8 215.7 350.5 222.5zM567.9 224.2C497.5 210.9 432.9 264.5 432.9 335C432.9 375.6 454.8 413 490.4 433.1C495.9 436.2 494.5 444.5 488.3 445.6C479.6 447.2 470.7 448 461.8 448C383.9 448 320.7000000000001 386.8 317.4 310.1C344.1 298.2 365.6 276.3 376.3 248.4C413.4 234.1 440.3 201 446.5 161.6C451.6 161.1 456.4999999999999 160.1 461.6999999999999 160.1C506.3999999999999 160.1 547.3 180.3 574.3 213.4C578.5 218.2 574.0999999999999 225.4 567.9 224.2zM364.5 29.9C356.9 34.2 347.1 31.7 342.7 23.9L306.1 -40.1C301.7 -47.8 304.4 -57.5 312.1 -61.9C314.6 -63.3 317.3 -64 320 -64C325.5 -64 330.8999999999999 -61.1 333.8999999999999 -55.9L370.5 8.1C374.8 15.8 372.2 25.5 364.5 29.9zM268.5 29.9C260.9 34.2 251.1 31.7 246.7 23.9L210.1 -40.1C205.7 -47.8 208.4 -57.5 216.1 -61.9C218.6 -63.3 221.3 -64 224 -64C229.5 -64 234.9 -61.1 237.9 -55.9L274.5 8.1C278.8 15.8 276.2 25.5 268.5 29.9zM172.5 29.9C164.9 34.2 155.1 31.7 150.7 23.9L114.1 -40.1C109.7 -47.8 112.4 -57.5 120.1 -61.9C122.6 -63.3 125.3 -64 128 -64C133.5 -64 138.9 -61.1 141.9 -55.9L178.5 8.1C182.8 15.8 180.2 25.5 172.5 29.9zM76.5 29.9C68.9 34.2 59.1 31.7 54.7 23.9L18.1 -40.1C13.7 -47.8 16.4 -57.5 24.1 -61.9C26.6 -63.3 29.3 -64 32 -64C37.5 -64 42.9 -61.1 45.9 -55.9L82.5 8.1C86.8 15.8 84.2 25.5 76.5 29.9z" />
+    <glyph glyph-name="cloud-moon"
+      unicode="&#xF6C3;"
+      horiz-adv-x="576" d=" M342.8 95.3C348.5 104.9 352 116 352 128C352 163.3 323.3 192 288 192C270.8 192 255.2 185.1 243.7 174.1C227.4 203.7 196.2 224 160 224C107 224 64 181 64 128C64 126 64.5 124.2 64.6 122.3C27.1 109.2 0 73.9 0 32C0 -21 43 -64 96 -64H336C380.2 -64 416 -28.2 416 16C416 57.9 383.7 91.8 342.8 95.3zM565.3 149.6C472.1999999999999 131.9 386.8 203.3 386.8 297.3C386.8 351.5 415.8 401.3 462.9 428.1C470.2 432.2000000000001 468.3 443.2000000000001 460.1 444.8C448.4 446.9 436.7 448 425 448C319.1 448 233.1 362.1 233.1 256C233.1 247.5 233.8 239.2 234.9 231C240.8 226.7 246.5 222.1 251.6 216.8C263 221.5 275.3 224 288 224C340.9 224 384 180.9 384 128C384 124.4 383.8 120.8 383.4 117.3C407 106.5 425.8 87.8 436.9 64.7C491.3 68.1 540.6 94 574 135.1C579.3 141.6 573.5 151.2000000000001 565.3 149.6z" />
+    <glyph glyph-name="cloud-rain"
+      unicode="&#xF73D;"
+      horiz-adv-x="512" d=" M416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320zM88 73.8C75.2 29.4 48 17.4 48 -13.9C48 -41.6 69.5 -64 96 -64S144 -41.6 144 -13.9C144 17.5 116.8 29.2 104 73.8C101.8 81.9 90.5 82.3 88 73.8zM248 73.8C235.2 29.4 208 17.4 208 -13.9C208 -41.6 229.5 -64 256 -64S304 -41.6 304 -13.9C304 17.5 276.8 29.2 264 73.8C261.8 81.9 250.5 82.3 248 73.8zM408 73.8C395.2 29.4 368 17.4 368 -13.9C368 -41.6 389.5 -64 416 -64S464 -41.6 464 -13.9C464 17.5 436.8 29.2 424 73.8C421.8 81.9 410.5 82.3 408 73.8z" />
+    <glyph glyph-name="cloud-rainbow"
+      unicode="&#xF73E;"
+      horiz-adv-x="576" d=" M430.8 143.1C440.7 137.5 449.8 130.7000000000001 457.7 122.8C487.1 155.2 529 176 576 176V240C515 240 459.7 215.4 419.2 175.7C424.9 165.8 429 154.8 430.8 143.1zM399.2 122.4C399.4 124.3 400 126.1 400 128.0000000000001C400 163.3000000000001 371.3 192.0000000000001 336 192.0000000000001C323.4 192.0000000000001 311.8 188.2000000000001 301.9 182.0000000000001C284.3 220.9000000000001 245.4 248.0000000000001 200 248.0000000000001C138.1 248.0000000000001 88 197.9000000000001 88 136.0000000000001C88 133.0000000000001 88.7 130.2000000000001 88.9 127.3000000000001C39.2 123.6 0 82.6 0 32C0 -21 43 -64 96 -64H368C421 -64 464 -21 464 32C464 74 436.8 109.4 399.2 122.4zM238.6 274.4000000000001C259.6 268.5 279 257.9000000000001 295.2 243.4000000000001C359.6 328.6 461.3 384 576 384V448C437.1 448 314.2 379.3 238.6 274.4zM325.8 222.9C333.2 223.7000000000001 362.5 228.3000000000001 394.2000000000001 204C440.6 250.8 504.9 280 576 280V344C474.7 344 384.4 296.6 325.8 222.9z" />
+    <glyph glyph-name="cloud-showers-heavy"
+      unicode="&#xF740;"
+      horiz-adv-x="512" d=" M183.9 77.9C176.3 82.3 166.5 79.7 162.1 71.9L98.1 -40.1C93.7 -47.8 96.4 -57.6 104.1 -61.9C106.6 -63.3 109.3 -64 112 -64C117.5 -64 122.9 -61.1 125.9 -55.9L189.9 56.1C194.3 63.7000000000001 191.6 73.5 183.9 77.9zM279.9 77.9C272.3 82.3 262.5 79.7 258.1 71.9L194.1 -40.1C189.7 -47.8 192.4 -57.6 200.1 -61.9C202.6 -63.3 205.3 -64 208 -64C213.5 -64 218.9 -61.1 221.9 -55.9L285.9 56.1C290.3 63.7000000000001 287.6 73.5 279.9 77.9zM87.9 77.9C80.3 82.3 70.5 79.7 66.1 71.9L2.1 -40.1C-2.3 -47.8 0.4 -57.6 8.1 -61.9C10.6 -63.3 13.3 -64 16 -64C21.5 -64 26.9 -61.1 29.9 -55.9L93.9 56.1C98.3 63.7000000000001 95.6 73.5 87.9 77.9zM471.9 77.9C464.3 82.3 454.5 79.7 450.1 71.9L386.1 -40.1C381.7 -47.8 384.4 -57.6 392.1 -61.9C394.6 -63.3 397.3 -64 400 -64C405.5 -64 410.8999999999999 -61.1 413.8999999999999 -55.9L477.8999999999999 56.1C482.2999999999999 63.7000000000001 479.5999999999999 73.5 471.8999999999999 77.9zM375.9 77.9C368.3 82.3 358.5 79.7 354.1 71.9L290.1 -40.1C285.7 -47.8 288.4 -57.6 296.1 -61.9C298.6 -63.3 301.3 -64 304 -64C309.5 -64 314.8999999999999 -61.1 317.8999999999999 -55.9L381.8999999999999 56.1C386.2999999999999 63.7000000000001 383.5999999999999 73.5 375.8999999999999 77.9zM416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.2 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320z" />
+    <glyph glyph-name="cloud-showers"
+      unicode="&#xF73F;"
+      horiz-adv-x="512" d=" M416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224S469 320 416 320zM48 80C39.2 80 32 72.8 32 64V-16C32 -24.8 39.2 -32 48 -32S64 -24.8 64 -16V64C64 72.8 56.8 80 48 80zM144 48C135.2 48 128 40.8 128 32V-48C128 -56.8 135.2 -64 144 -64S160 -56.8 160 -48V32C160 40.8 152.8 48 144 48zM240 80C231.2 80 224 72.8 224 64V-16C224 -24.8 231.2 -32 240 -32S256 -24.8 256 -16V64C256 72.8 248.8 80 240 80zM336 48C327.2 48 320 40.8 320 32V-48C320 -56.8 327.2 -64 336 -64S352 -56.8 352 -48V32C352 40.8 344.8 48 336 48zM432 80C423.2 80 416 72.8 416 64V-16C416 -24.8 423.2 -32 432 -32S448 -24.8 448 -16V64C448 72.8 440.8 80 432 80z" />
+    <glyph glyph-name="cloud-sleet"
+      unicode="&#xF741;"
+      horiz-adv-x="512" d=" M512 224C512 277 469 320 416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H416C469 128 512 171 512 224zM87.2 94.3C79.3 98.2 69.7 95 65.7 87.1L1.7 -40.9C-2.2 -48.8 0.9 -58.4 8.9 -62.4C11.2 -63.5 13.7 -64.1 16.1 -64.1C21.9 -64.1 27.6 -60.9 30.4 -55.3L94.4 72.7C98.2 80.8 95.1 90.4 87.2 94.3zM343.2 94.3C335.3 98.2 325.7 95 321.7 87.1L257.7 -40.9C253.8 -48.8 256.9 -58.4 264.9 -62.4C267.2 -63.5 269.7 -64.1 272.1 -64.1C277.9 -64.1 283.6 -60.9 286.4 -55.3L350.4 72.7C354.2 80.8 351.1 90.4 343.2 94.3zM494.9 58.9L486.9 72.8C484.7 76.6 479.8 77.9 476 75.7L448 59.6V88C448 92.4 444.4 96 440 96H424C419.6 96 416 92.4 416 88V59.6L388 75.7000000000001C384.2 77.9 379.3 76.6 377.1 72.8000000000001L369.1 58.9000000000001C366.9000000000001 55.1000000000001 368.2000000000001 50.2000000000001 372 48.0000000000001L399.9 32.0000000000001L372 16.0000000000001C368.2 13.8000000000001 366.9 8.9000000000001 369.1 5.1000000000001L377.1 -8.7999999999998C379.3 -12.5999999999999 384.2000000000001 -13.8999999999999 388 -11.6999999999998L416 4.4000000000002V-24C416 -28.4 419.6 -32 424 -32H440C444.4 -32 448 -28.4 448 -24V4.4L476 -11.7C479.8 -13.9 484.7 -12.6 486.9 -8.8000000000001L494.9 5.0999999999999C497.1 8.8999999999999 495.8 13.7999999999999 492 15.9999999999999L464.1 31.9999999999999L492 47.9999999999999C495.8 50.1999999999999 497.1 55.0999999999999 494.9 58.8999999999999zM238.9 58.9L230.9 72.8C228.7 76.6 223.8 77.9 220 75.7L192 59.6V88C192 92.4 188.4 96 184 96H168C163.6 96 160 92.4 160 88V59.6L132 75.7000000000001C128.2 77.9 123.3 76.6 121.1 72.8000000000001L113.1 58.9000000000001C110.9 55.1000000000001 112.2 50.2000000000001 116 48.0000000000001L143.9 32.0000000000001L116 16.0000000000001C112.2 13.8000000000001 110.9 8.9000000000001 113.1 5.1000000000001L121.1 -8.7999999999998C123.3 -12.5999999999999 128.2 -13.8999999999999 132 -11.6999999999998L160 4.4000000000002V-24C160 -28.4 163.6 -32 168 -32H184C188.4 -32 192 -28.4 192 -24V4.4L220 -11.7C223.8 -13.9 228.7 -12.6 230.9 -8.8000000000001L238.9 5.0999999999999C241.1 8.8999999999999 239.8 13.7999999999999 236 15.9999999999999L208.1 31.9999999999999L236 47.9999999999999C239.8 50.1999999999999 241.1 55.0999999999999 238.9 58.8999999999999z" />
+    <glyph glyph-name="cloud-snow"
+      unicode="&#xF742;"
+      horiz-adv-x="512" d=" M96 128H416C469 128 512 171 512 224S469 320 416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128zM126.9 58.9L118.9 72.8C116.7 76.6 111.8 77.9 108 75.6999999999999L80 59.5999999999999V88C80 92.4 76.4 96 72 96H56C51.6 96 48 92.4 48 88V59.6L20 75.7000000000001C16.2 77.9 11.3 76.6 9.1 72.8000000000001L1.1 58.9000000000001C-1.1 55.1000000000001 0.2 50.2000000000001 4 48.0000000000001L31.9 32.0000000000001L4 16C0.2 13.8 -1.1 8.9 1.1 5.1L9.1 -8.8C11.3 -12.6 16.2 -13.9 20 -11.6999999999999L48 4.4000000000001V-24C48 -28.4 51.6 -32 56 -32H72C76.4 -32 80 -28.4 80 -24V4.4L108 -11.7C111.8 -13.9 116.7 -12.6 118.9 -8.8000000000001L126.9 5.0999999999999C129.1 8.8999999999999 127.8 13.7999999999999 124 15.9999999999999L96.1 31.9999999999999L124 47.9999999999999C127.8 50.1999999999999 129.1 55.0999999999999 126.9 58.8999999999999zM318.9 26.9L310.9 40.8C308.7 44.6 303.8 45.9 300 43.6999999999999L272 27.5999999999999V56C272 60.4 268.4 64 264 64H248C243.6 64 240 60.4 240 56V27.6L212 43.7C208.2 45.9 203.3 44.6 201.1 40.8000000000001L193.1 26.9000000000001C190.9 23.1000000000001 192.2 18.2000000000001 196 16.0000000000001L223.9 1e-13L196 -15.9999999999999C192.2 -18.1999999999999 190.9 -23.0999999999999 193.1 -26.8999999999999L201.1 -40.7999999999998C203.3 -44.5999999999998 208.2 -45.8999999999999 212 -43.6999999999998L240 -27.5999999999998V-56C240 -60.4 243.6 -64 248 -64H264C268.4 -64 272 -60.4 272 -56V-27.6L300 -43.7C303.8 -45.9 308.7 -44.6 310.9 -40.8000000000001L318.9 -26.9000000000001C321.1 -23.1000000000001 319.8 -18.2000000000001 316 -16.0000000000001L288.1 -1e-13L316 15.9999999999999C319.8 18.1999999999999 321.1 23.0999999999999 318.9 26.8999999999999zM510.9 58.9L502.9 72.8C500.7 76.6 495.8 77.9 492 75.6999999999999L464 59.5999999999999V88C464 92.4 460.4 96 456 96H440C435.6 96 432 92.4 432 88V59.6L404 75.7000000000001C400.2 77.9 395.3 76.6 393.1 72.8000000000001L385.1 58.9000000000001C382.9000000000001 55.1000000000001 384.2000000000001 50.2000000000001 388 48.0000000000001L415.9 32.0000000000001L388 16.0000000000001C384.2 13.8000000000001 382.9 8.9000000000001 385.1 5.1000000000001L393.1 -8.7999999999998C395.3 -12.5999999999999 400.2000000000001 -13.8999999999999 404 -11.6999999999998L432 4.4000000000002V-24C432 -28.4 435.6 -32 440 -32H456C460.4 -32 464 -28.4 464 -24V4.4L492 -11.7C495.8 -13.9 500.7 -12.6 502.9 -8.8000000000001L510.9 5.0999999999999C513.1 8.8999999999999 511.8 13.7999999999999 508 15.9999999999999L480.1 31.9999999999999L508 47.9999999999999C511.8 50.1999999999999 513.1 55.0999999999999 510.9 58.8999999999999z" />
+    <glyph glyph-name="cloud-sun-rain"
+      unicode="&#xF743;"
+      horiz-adv-x="576" d=" M510.5 222.5C503.6 259.7 471.2 288 432 288C419.7 288 408.1 285 397.7 280C380.3 304.1 352.1 320 320 320C267 320 224 277 224 224C224 223.5 224.2 222.9 224.2 222.4C187.6 215 160 182.8 160 144C160 99.8 195.8 64 240 64H496C540.2 64 576 99.8 576 144C576 183.2 547.8 215.7 510.5 222.5zM124.1 188.1C86.7 225.5000000000001 86.7 286.4000000000001 124.1 323.9000000000001C158.7 358.5 213.2 360.7000000000001 250.8 331.3000000000001C270.8 344.2000000000001 294.4000000000001 352.0000000000001 320 352.0000000000001C320.7 352.0000000000001 321.3 351.8000000000001 322 351.8000000000001L330.9 378.5000000000001C334.3 388.7000000000001 324.6 398.3000000000001 314.4 394.9000000000001L239.1 369.8000000000001L203.6 440.8000000000001C198.8 450.4 185.1 450.4 180.3 440.8000000000001L144.8 369.8000000000001L69.5 394.9000000000001C59.3 398.3000000000001 49.7 388.6 53.1 378.4000000000001L78.2 303.1L7.2 267.6C-2.4 262.8 -2.4 249.1 7.2 244.3L78.2 208.8L53.1 133.5C49.7 123.3 59.4 113.7 69.6 117L128.8 136.7C128.6 139.1 128.1 141.4 128.1 143.9C128.1 156.4 130.4 168.4 134.3 179.8C130.7 182.5 127.2 185 124.1 188.1zM193.9 246.1C198.2000000000001 270.6 209.7000000000001 292.5 225.8000000000001 310.1C216 316.3 204.4 320 192.0000000000001 320C156.7000000000001 320 128.0000000000001 291.3000000000001 128.0000000000001 256C128.0000000000001 237.3000000000001 136.2000000000001 220.6 149.1000000000001 208.9C160.4000000000001 224.8000000000001 175.7000000000001 237.8000000000001 193.9 246.1zM524.5 29.9C516.9 34.2 507.1 31.7 502.7 23.9L466.1 -40.1C461.7 -47.8 464.4 -57.4999999999999 472.1 -61.9C474.6 -63.2999999999999 477.3 -64 479.9999999999999 -64C485.4999999999999 -64 490.8999999999999 -61.1 493.8999999999999 -55.9L530.4999999999999 8.1C534.7999999999998 15.8 532.1999999999999 25.5 524.4999999999999 29.9zM428.5 29.9C420.9 34.2 411.1 31.7 406.7 23.9L370.1 -40.1C365.7 -47.8 368.4 -57.4999999999999 376.1 -61.9C378.6 -63.2999999999999 381.3 -64 384 -64C389.5 -64 394.8999999999999 -61.1 397.8999999999999 -55.9L434.5 8.1C438.8 15.8 436.2 25.5 428.5 29.9zM332.5 29.9C324.9 34.2 315.1 31.7 310.7 23.9L274.1 -40.1C269.7 -47.8 272.4 -57.4999999999999 280.1 -61.9C282.6 -63.2999999999999 285.3 -64 288 -64C293.5 -64 298.8999999999999 -61.1 301.8999999999999 -55.9L338.5 8.1C342.8 15.8 340.2 25.5 332.5 29.9zM236.5 29.9C228.9 34.2 219.1 31.7 214.7 23.9L178.1 -40.1C173.7 -47.8 176.4 -57.4999999999999 184.1 -61.9C186.6 -63.2999999999999 189.3 -64 192 -64C197.5 -64 202.9 -61.1 205.9 -55.9L242.5 8.1C246.8 15.8 244.2 25.5 236.5 29.9z" />
+    <glyph glyph-name="cloud-sun"
+      unicode="&#xF6C4;"
+      horiz-adv-x="640" d=" M575.2 122.3C575.4000000000001 124.2 576 126 576 127.9C576 163.2000000000001 547.3 191.9 512 191.9C499.4 191.9 487.8 188.1 477.9 181.9C460.3 220.7000000000001 421.4 247.9000000000001 376 247.9000000000001C314.2 247.9000000000001 264 197.8000000000001 264 135.9C264 132.9 264.7 130.1 264.9 127.2000000000001C215.3 123.5000000000001 176 82.5000000000001 176 31.9C176 -21.1 219 -64.0999999999999 272 -64.0999999999999H544C597 -64.0999999999999 640 -21.0999999999999 640 31.9000000000001C640 74.0000000000001 612.8 109.3000000000001 575.2 122.3000000000001zM144.8000000000001 144.9C101.1000000000001 188.6 101.1000000000001 259.6 144.8000000000001 303.2000000000001C188.5000000000001 346.9000000000001 259.5000000000001 346.9000000000001 303.2000000000001 303.2000000000001C312.9000000000001 293.5000000000001 320.1 282.3000000000001 325.5000000000001 270.5000000000001C335.3000000000001 274.2000000000001 345.6000000000001 276.5000000000001 356.2000000000001 278.0000000000001L386 366.9C390 378.8 378.7 390 366.8 386.1L279 356.8L237.5 439.6C232 450.8 216 450.8 210.4 439.6L169 356.8L81.1 386.1C69.3 390 58 378.7 61.9 366.9L91.2 279.1L8.4 237.6C-2.8 232.0000000000001 -2.8 216.1 8.4 210.5L91.2 169.1L61.9 81.3C57.9 69.4 69.2 58.2 81.1 62.1L157.2 87.4C163.3 99.8 171.2 111.1 180.8 120.9C167.7 126.3 155.4 134.3 144.8 144.9zM140.0000000000001 224.1C140.0000000000001 183.3 169.3000000000001 149.3 207.9000000000001 141.8C215.9000000000001 146.5 224.2000000000001 150.6 233.1000000000001 153.5C238.5000000000001 197.8 264.1 236 300.5000000000001 258.5C287.3 287.6 258 308 224 308C177.7 308 140 270.4 140 224.1z" />
+    <glyph glyph-name="cloud-upload-alt"
+      unicode="&#xF382;"
+      horiz-adv-x="640" d=" M537.6 221.4C541.7 232.1 544 243.8 544 256C544 309 501 352 448 352C428.3 352 409.9 346 394.7 335.8C367 383.8 315.3 416 256 416C167.6 416 96 344.4 96 256C96 253.3 96.1 250.6 96.2 247.9C40.2 228.2 0 174.8 0 112C0 32.5 64.5 -32 144 -32H512C582.7 -32 640 25.3 640 96C640 157.9 596 209.6 537.6 221.4zM393.4 160H328V48C328 39.2 320.8 32 312 32H264C255.2 32 248 39.2 248 48V160H182.6C168.3 160 161.2 177.2 171.3 187.3L276.7 292.7000000000001C282.9 298.9 293.1 298.9 299.3 292.7000000000001L404.7000000000001 187.3C414.8000000000001 177.2 407.6 160 393.4000000000001 160z" />
+    <glyph glyph-name="cloud-upload"
+      unicode="&#xF0EE;"
+      horiz-adv-x="640" d=" M537.6 221.4C541.7 232.1 544 243.8 544 256C544 309 501 352 448 352C428.3 352 409.9 346 394.7 335.8C367 383.8 315.3 416 256 416C167.6 416 96 344.4 96 256C96 253.3 96.1 250.6 96.2 247.9C40.2 228.2 0 174.8 0 112C0 32.5 64.5 -32 144 -32H512C582.7 -32 640 25.3 640 96C640 157.9 596 209.6 537.6 221.4zM397.7000000000001 157.7L386.9000000000001 146.9C377.3 137.3 361.7000000000001 137.6 352.4000000000001 147.4L320 181.9V56C320 42.7 309.3 32 296 32H280C266.7 32 256 42.7 256 56V181.9L223.6 147.4C214.3 137.5 198.7 137.3 189.1 146.9L178.3 157.7C168.9 167.1 168.9 182.3 178.3 191.6L271 284.3C280.4 293.7 295.6 293.7 304.9 284.3L397.6 191.6C407 182.2 407 167 397.7 157.7z" />
+    <glyph glyph-name="cloud"
+      unicode="&#xF0C2;"
+      horiz-adv-x="640" d=" M537.6 221.4C541.7 232.1 544 243.8 544 256C544 309 501 352 448 352C428.3 352 409.9 346 394.7 335.8C367 383.8 315.3 416 256 416C167.6 416 96 344.4 96 256C96 253.3 96.1 250.6 96.2 247.9C40.2 228.2 0 174.8 0 112C0 32.5 64.5 -32 144 -32H512C582.7 -32 640 25.3 640 96C640 157.9 596 209.6 537.6 221.4z" />
+    <glyph glyph-name="clouds-moon"
+      unicode="&#xF745;"
+      horiz-adv-x="640" d=" M448 128H446.4C439 164.5 406.7 192 368 192C343.4 192 321.7 180.7 307 163.2C288.4 199.1 251.2 224 208 224C149.7 224 102.4 179.3 97.1 122.4C59.3 109.5 32 74.1 32 32C32 -21 75 -64 128 -64H448C501 -64 544 -21 544 32S501 128 448 128zM631 199.3C552.8 184.5 481 244 481 322.4C481 367.5 505.3 409 544.9 431.4C551 434.8 549.5 444 542.5 445.3C532.9 447.1 523 448 513.1 448C424.2 448 352 376.4 352 288C352 287.3 352.2 286.7 352.2 286C368.5 269.2 379.2 247.2 382.5 222.9C421 217.8 454.2 193 470.1 158.1C493.2 154.1 514.1 143.7000000000001 531.2 129C573.7 133.7 611.9000000000001 155 638.3000000000001 187.2C642.7 192.7 637.9000000000001 200.6 631.0000000000001 199.3zM68.3 144.8C83.2 209.4 140.2 256 208 256C248.7 256 286.6 238.8 313.4 209.5C324.9 216 337.5 220.3 350.5 222.4C343.7 259.7 311.2 288 272 288H254.4C247 324.5 214.7 352 176 352S105 324.5 97.6 288H80C35.8 288 0 252.2 0 208C0 174.1 21.2 145.2 51 133.6C56.5 137.7000000000001 62.2 141.6 68.3 144.8z" />
+    <glyph glyph-name="clouds-sun"
+      unicode="&#xF746;"
+      horiz-adv-x="640" d=" M512 128H510.4C503 164.5 470.7 192 432 192C407.4 192 385.7 180.7 371 163.2C352.4 199.1 315.2 224 272 224C213.7 224 166.4 179.3 161.1 122.4C123.3 109.5 96 74.1 96 32C96 -21 139 -64 192 -64H512C565 -64 608 -21 608 32S565 128 512 128zM560 288H542.4C535 324.5 502.7 352 464 352S393 324.5 385.6 288H368C340.4 288 316.2 274.1 301.8 252.9C330.9000000000001 246.7 357.3 231.6 377.4 209.6C393.9 219 412.7 224.1 432 224.1C476.6 224.1 516.3 197.5 534.1 158.2000000000001C554.6 154.6 573.2 145.9 589.1 133.8000000000001C618.9 145.5000000000001 640 174.3000000000001 640 208.1000000000001C640 252.2000000000001 604.2 288.0000000000001 560 288.0000000000001zM132.3 144.8C134.7 155.1 138.4 164.7 142.8 173.9C136.2 177.9 129.8 182.4 124.1 188.1C86.7 225.5000000000001 86.7 286.4000000000001 124.1 323.9000000000001C161.5 361.3000000000001 222.4 361.3000000000001 259.9000000000001 323.9000000000001C272.1 311.7000000000001 279.8 297 284.0000000000001 281.5C290.1000000000001 288.5 296.9000000000001 294.8000000000001 304.6000000000001 300.1L330.9000000000001 378.5C334.3000000000001 388.7000000000001 324.6000000000001 398.3 314.4000000000001 394.9000000000001L239.1000000000001 369.8L203.6000000000001 440.8C198.8000000000001 450.4 185.1000000000001 450.4 180.3000000000001 440.8L144.8000000000001 369.8L69.5000000000001 394.9000000000001C59.3 398.3 49.7 388.6 53 378.4L78.1 303.1L7.1 267.6C-2.5 262.8 -2.5 249.1 7.1 244.3L78.1 208.8L53 133.5C49.6 123.3 59.3 113.7 69.5 117L112.2 131.2C118.5 136.3 125.1 141 132.3 144.8zM128 256C128 232.6 140.8 212.2 159.7 201.1C182.8 230.6 216.9 250.3 255.9 254.6C255.9 255.1 256 255.5 256 256C256 291.3 227.3 320 192 320S128 291.3 128 256z" />
+    <glyph glyph-name="clouds"
+      unicode="&#xF744;"
+      horiz-adv-x="640" d=" M544 128C543.4 128 542.9 127.8 542.4 127.8C543.5 133 544 138.4 544 144C544 188.2 508.2 224 464 224C439.4 224 417.7 212.7 403 195.2C384.4 231.1 347.2 256 304 256C242.1 256 192 205.9 192 144C192 136.7 192.8 129.7 194.1 122.8C155.8 110.2 128 74.5 128 32C128 -21 171 -64 224 -64H544C597 -64 640 -21 640 32S597 128 544 128zM304 288C344.7 288 382.6 270.8 409.4 241.5C419.2 247.1 429.9 250.9 441 253.3C445.3 264.1 448 275.6 448 288C448 341 405 384 352 384C337.9 384 324.6 380.8 312.5 375.3C296.6 417.7 256 448 208 448C151.6 448 105.3 406.1 97.6 351.8C97.1 351.8 96.6 352 96 352C43 352 0 309 0 256S43 160 96 160H161.6C169.7 231.8 230.1 288 304 288z" />
+    <glyph glyph-name="club"
+      unicode="&#xF327;"
+      horiz-adv-x="512" d=" M371.5 278.9C403.1 359.6 343.7 448 256 448C168.2 448 109 359.5 140.5 278.9C65.7 288.8 0 230.7 0 156C0 87.5 55.5 32 124 32C160.5 32 193.3 47.8 216 72.9C215.9 36.2 215.2 20.5 163 -2.7C149.2 -8.8000000000001 141.6 -23.8000000000001 144.7 -38.6C147.8 -53.4 160.9 -64 176 -64H336C351.1 -64 364.2 -53.4 367.3 -38.6C370.4000000000001 -23.8 362.8 -8.9 349 -2.7C297.4 20.3 296.2 35.4 296 72.9C318.7 47.8 351.5 32 388 32C456.5 32 512 87.5 512 156C512 230.8 446.2 288.8 371.5 278.9z" />
+    <glyph glyph-name="cocktail"
+      unicode="&#xF561;"
+      horiz-adv-x="576" d=" M296 -16H240V109.22L408.74 277.9500000000001C424.26 293.4700000000001 413.27 320 391.32 320H24.68C2.73 320 -8.26 293.4700000000001 7.26 277.9500000000001L176 109.22V-16H120C97.91 -16 80 -33.91 80 -56C80 -60.42 83.58 -64 88 -64H328C332.42 -64 336 -60.42 336 -56C336 -33.91 318.09 -16 296 -16zM432 448C369.39 448 316.65 407.8 296.82 352H349.36C366.01 380.55 396.63 400 432 400C484.93 400 528 356.94 528 304S484.93 208 432 208C417.96 208 404.71 211.2 392.68 216.64L357.42 181.38C379.23 168.08 404.59 160 432 160C511.53 160 576 224.47 576 304S511.53 448 432 448z" />
+    <glyph glyph-name="code-branch"
+      unicode="&#xF126;"
+      horiz-adv-x="384" d=" M384 304C384 348.2 348.2 384 304 384S224 348.2 224 304C224 267.6 248.3 236.9 281.5 227.2C280.9 211.1 277.3 198.7 270.5 190.3C255.1 171.1 221.2 167.9 185.3 164.6C157.1 162 127.9 159.2000000000001 104 147.7000000000001V291.7000000000001C136.5 301.9000000000001 160 332.2000000000001 160 368.0000000000001C160 412.2000000000001 124.2 448.0000000000001 80 448.0000000000001S0 412.2 0 368C0 332.2 23.5 301.9 56 291.7V92.4C23.5 82.1 0 51.8 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 50 138.8 79.1 108.8 90.6C111.9 95.8 116.6 100.4 123.7 104C139.9 112.2 164.1 114.4 189.8 116.8C232 120.7 279.8 125.2 308 160.2C322 177.6 329.1 200 329.6 228.1C361.2000000000001 238.9 384 268.8 384 304zM80 384C88.8 384 96 376.8 96 368S88.8 352 80 352S64 359.2 64 368S71.2 384 80 384zM80 0C71.2 0 64 7.2 64 16S71.2 32 80 32S96 24.8 96 16S88.8 0 80 0zM304 320C312.8 320 320 312.8 320 304S312.8 288 304 288S288 295.2 288 304S295.2 320 304 320z" />
+    <glyph glyph-name="code-commit"
+      unicode="&#xF386;"
+      horiz-adv-x="640" d=" M128 192C128 181.2 128.9 170.5 130.6 160H12C5.4 160 0 165.4 0 172V212C0 218.6 5.4 224 12 224H130.6C128.9 213.5 128 202.8 128 192zM628 224H509.4C511.2 213.5 512 202.8 512 192S511.1 170.5 509.4 160H628C634.6 160 640 165.4 640 172V212C640 218.6 634.6 224 628 224zM320 234C296.8 234 278 215.2 278 192S296.8 150 320 150S362 168.8 362 192S343.2 234 320 234M320 352C408.4 352 480 280.4 480 192S408.4 32 320 32S160 103.6 160 192S231.6 352 320 352z" />
+    <glyph glyph-name="code-merge"
+      unicode="&#xF387;"
+      horiz-adv-x="384" d=" M304 256C266 256 234.2 229.5 226.1 194C202.2 197.5 168.1 206.9 142.2 231.6C125.6 247.5 114.3 268.1 108.5 293.2C138.6 304.7 160 333.9 160 368C160 412.2 124.2 448 80 448S0 412.2 0 368C0 332.2 23.5 301.9 56 291.7V92.4C23.5 82.1 0 51.8 0 16C0 -28.2 35.8 -64 80 -64S160 -28.2 160 16C160 51.8 136.5 82.1 104 92.3V201.9C105.6 200.2 107.3 198.5 109 196.9C148.3 159.4 199.4 148.3 230.2 145.1C242.3 116.2000000000001 270.8 95.9 304 95.9C348.2 95.9 384 131.7000000000001 384 175.9S348.2 256 304 256zM80 384C88.8 384 96 376.8 96 368S88.8 352 80 352S64 359.2 64 368S71.2 384 80 384zM80 0C71.2 0 64 7.2 64 16S71.2 32 80 32S96 24.8 96 16S88.8 0 80 0zM304 160C295.2 160 288 167.2 288 176S295.2 192 304 192S320 184.8 320 176S312.8 160 304 160z" />
+    <glyph glyph-name="code"
+      unicode="&#xF121;"
+      horiz-adv-x="640" d=" M278.9 -63.5L217.9 -45.8C211.5 -44 207.9 -37.3 209.7 -30.9L346.2 439.3C348 445.7 354.7 449.3 361.1 447.5L422.1 429.8C428.5 428 432.1 421.3 430.3 414.9L293.8 -55.3C291.9000000000001 -61.7 285.3 -65.4 278.9000000000001 -63.5zM164.9 48.7L208.4 95.1C213 99.9999999999999 212.7 107.8 207.6 112.3L117 192L207.6 271.7C212.7 276.2 213.1 284 208.4 288.9L164.9 335.3C160.4 340.1 152.8 340.4 147.9 335.8L3.8 200.8C-1.3 196.1 -1.3 188 3.8 183.3L147.9 48.2C152.8 43.6 160.4 43.8000000000001 164.9 48.7zM492.1 48.1L636.1999999999999 183.1999999999999C641.3 187.8999999999999 641.3 196 636.1999999999999 200.6999999999999L492.1 335.9C487.3 340.4 479.7 340.2 475.1 335.4L431.6 289C427 284.1 427.3 276.3 432.4000000000001 271.8L523 192L432.4 112.3C427.3 107.8 426.9 100 431.6 95.1L475.1 48.7C479.6 43.8000000000001 487.2 43.6 492.1 48.1z" />
+    <glyph glyph-name="coffee-togo"
+      unicode="&#xF6C5;"
+      horiz-adv-x="448" d=" M432 384H416L392.84 430.31A32 32 0 0 1 364.2200000000001 448H83.78A32 32 0 0 1 55.16 430.31L32 384H16C7.16 384 0 376.8400000000001 0 368V336C0 327.16 7.16 320 16 320H432C440.84 320 448 327.16 448 336V368C448 376.8400000000001 440.84 384 432 384zM106.78 -64H341.2200000000001C357.86 -64 371.73 -51.24 373.11 -34.66L400 288H48L74.89 -34.66C76.27 -51.24 90.14 -64 106.78 -64zM327.78 192L314.44 32H133.56L120.22 192H327.78z" />
+    <glyph glyph-name="coffee"
+      unicode="&#xF0F4;"
+      horiz-adv-x="640" d=" M192 64H384C437 64 480 107 480 160H512C582.6 160 640 217.4 640 288S582.6 416 512 416H120C106.7 416 96 405.3 96 392V160C96 107 139 64 192 64zM512 352C547.3 352 576 323.3 576 288S547.3 224 512 224H480V352H512zM559.7 -32H48.3C0.7 -32 -12.7 32 12.3 32H595.5999999999999C620.5999999999999 32 607.3999999999999 -32 559.6999999999999 -32z" />
+    <glyph glyph-name="coffin"
+      unicode="&#xF6C6;"
+      horiz-adv-x="384" d=" M374.45 332.81L266.71 438.63C260.6 444.63 252.31 448 243.67 448H140.33C131.69 448 123.4 444.63 117.29 438.63L9.55 332.81C1.46 324.86 -1.8 313.3300000000001 0.98 302.42L88.09 -39.76C91.71 -54.01 104.75 -64 119.7 -64H264.32C279.27 -64 292.3 -54.01 295.93 -39.76L383.04 302.42C385.8 313.3300000000001 382.55 324.86 374.4500000000001 332.81zM288 256C288 247.16 280.84 240 272 240H216V112C216 103.16 208.84 96 200 96H184C175.16 96 168 103.16 168 112V240H112C103.16 240 96 247.16 96 256V272C96 280.8400000000001 103.16 288 112 288H168V336C168 344.8400000000001 175.16 352 184 352H200C208.84 352 216 344.8400000000001 216 336V288H272C280.84 288 288 280.8400000000001 288 272V256z" />
+    <glyph glyph-name="cog"
+      unicode="&#xF013;"
+      horiz-adv-x="512" d=" M444.788 156.9L487.404 132.301C492.271 129.492 494.53 123.683 492.863 118.316C481.793 82.674 462.893 50.474 438.174 23.73A12.015999999999998 12.015999999999998 0 0 0 423.342 21.4759999999999L380.758 46.0709999999999A191.577 191.577 0 0 0 319.999 10.9409999999999V-38.2410000000001A12.01 12.01 0 0 0 310.622 -49.9590000000001C275.666 -57.8090000000001 238.123 -58.2150000000001 201.403 -49.9660000000001C195.913 -48.7330000000001 192 -43.8700000000001 192 -38.2430000000001V10.9409999999999A191.555 191.555 0 0 0 131.241 46.0709999999999L88.657 21.4759999999999A12.015999999999998 12.015999999999998 0 0 0 73.825 23.7299999999999C49.107 50.4739999999999 30.206 82.6739999999999 19.136 118.3159999999999C17.469 123.6819999999999 19.728 129.4909999999999 24.595 132.3009999999999L67.212 156.9A193.48000000000002 193.48000000000002 0 0 0 67.212 227.099L24.596 251.698C19.729 254.507 17.47 260.316 19.137 265.683C30.207 301.325 49.107 333.525 73.826 360.269A12.015999999999998 12.015999999999998 0 0 0 88.658 362.523L131.242 337.928A191.577 191.577 0 0 0 192.001 373.058V422.241A12.01 12.01 0 0 0 201.3780000000001 433.959C236.3340000000001 441.8090000000001 273.8770000000001 442.215 310.5970000000001 433.966C316.0870000000001 432.733 320.0000000000001 427.87 320.0000000000001 422.243V373.059A191.555 191.555 0 0 0 380.7590000000001 337.929L423.3430000000001 362.524A12.015999999999998 12.015999999999998 0 0 0 438.1750000000001 360.27C462.8930000000001 333.526 481.7940000000001 301.326 492.8640000000001 265.684C494.5310000000001 260.318 492.2720000000001 254.509 487.4050000000001 251.699L444.788 227.1A193.485 193.485 0 0 0 444.788 156.9zM336 192C336 236.112 300.112 272 256 272S176 236.112 176 192S211.888 112 256 112S336 147.888 336 192z" />
+    <glyph glyph-name="cogs"
+      unicode="&#xF085;"
+      horiz-adv-x="640" d=" M512.1 257L503.9 242.7C500.9 237.4 494.5000000000001 235.2 488.8 237.3C477 241.7 466.2 248 456.7 255.9C452.1 259.7 450.9 266.4 453.9 271.6L462.1 285.9C455.2 293.9 449.8 303.2 446.2 313.3H429.7C423.7 313.3 418.5 317.6 417.5 323.6C415.5 335.6 415.4 348.2 417.5 360.7C418.5 366.7 423.7 371.1 429.7 371.1H446.2C449.8 381.2 455.2 390.5 462.1 398.5L453.9 412.8C450.9 418 452 424.7 456.7 428.5C466.2 436.4 477.1 442.7 488.8 447.1C494.5 449.2 500.9 447 503.9 441.7L512.1 427.4C522.6 429.3 533.3000000000001 429.3 543.8000000000001 427.4L552 441.7C555 447 561.4 449.2 567.1 447.1C578.9 442.7 589.7 436.4 599.2 428.5C603.8000000000001 424.7 605 418 602 412.8L593.8 398.5C600.6999999999999 390.5 606.0999999999999 381.2 609.6999999999999 371.1H626.1999999999999C632.1999999999999 371.1 637.4 366.8 638.4 360.8C640.4 348.8 640.5 336.2 638.4 323.7C637.4 317.7 632.1999999999999 313.3 626.1999999999999 313.3H609.6999999999999C606.0999999999999 303.2 600.6999999999999 293.9 593.8 285.9L602 271.6C605 266.4 603.9 259.7 599.2 255.9C589.7 248 578.8000000000001 241.7 567.1 237.3C561.4 235.2 555 237.4 552 242.7L543.8 257C533.4 255.1 522.5999999999999 255.1 512.0999999999999 257zM501.6 315.8C540.1 286.2000000000001 584 330.1 554.4 368.6C515.9 398.3 472 354.3 501.6 315.8zM386.3 161.9L420 145.1C430.1 139.3 434.5 127 430.5 116C421.6 91.8 404.1 69.6 387.9 50.1999999999999C380.5 41.3 367.7 39.0999999999999 357.6 44.8999999999999L328.5 61.6999999999999C312.5 47.9999999999999 293.8999999999999 37.0999999999999 273.6 29.9999999999999V-3.6000000000001C273.6 -15.2000000000001 265.3 -25.2000000000001 253.9 -27.2000000000001C229.3 -31.4000000000001 203.5 -31.6000000000001 178 -27.2000000000001C166.5 -25.2000000000001 158 -15.3000000000001 158 -3.6000000000001V30C137.7 37.2 119.1 48 103.1 61.7L74 45C64 39.2 51.1 41.4 43.7 50.3C27.5 69.7 10.4 91.9 1.5 116C-2.5 126.9 1.9 139.2 12 145.1L45.3 161.9C41.4 182.8 41.4 204.3000000000001 45.3 225.3000000000001L12 242.2C1.9 248 -2.6 260.3 1.5 271.2C10.4 295.4 27.5 317.6 43.7 337C51.1 345.9 63.9 348.1 74 342.3L103.1 325.5C119.1 339.2 137.7 350.1 158 357.2V390.9C158 402.4 166.2 412.4 177.6 414.4C202.2 418.6 228.1 418.8 253.6 414.5C265.1 412.5 273.6 402.6 273.6 390.9V357.3C293.9000000000001 350.1 312.5 339.3 328.5 325.6L357.6 342.4C367.6 348.2 380.5 346 387.9000000000001 337.1C404.1 317.7 421.1 295.5 430.0000000000001 271.3C434.0000000000001 260.4 430.1000000000001 248.1 420.0000000000001 242.2L386.3000000000001 225.4C390.2000000000001 204.4 390.2000000000001 182.9 386.3000000000001 161.9zM268.7000000000001 140.8C327.9000000000001 217.8 240.0000000000001 305.7 163.0000000000001 246.5C103.8000000000001 169.5 191.7000000000001 81.5999999999999 268.7000000000001 140.8zM512.1 -41.9L503.9 -56.2C500.9 -61.5000000000001 494.5000000000001 -63.7 488.8 -61.6C477 -57.2 466.2 -50.9 456.7 -43C452.1 -39.2 450.9 -32.5 453.9 -27.3L462.1 -13C455.2 -5 449.8 4.3 446.2 14.4H429.7C423.7 14.4 418.5 18.7 417.5 24.7C415.5 36.7 415.4 49.3 417.5 61.8C418.5 67.8 423.7 72.2 429.7 72.2H446.2C449.8 82.3 455.2 91.6 462.1 99.6L453.9 113.9C450.9 119.1 452 125.8 456.7 129.6C466.2 137.5 477.1 143.8 488.8 148.2C494.5 150.3 500.9 148.1 503.9 142.8L512.1 128.5C522.6 130.4 533.3000000000001 130.4 543.8000000000001 128.5L552.0000000000001 142.8C555.0000000000001 148.1 561.4000000000001 150.3 567.1000000000001 148.2C578.9000000000001 143.8 589.7000000000002 137.5 599.2000000000002 129.6C603.8000000000002 125.8 605.0000000000001 119.1 602.0000000000001 113.9L593.8000000000001 99.6C600.7 91.6 606.1 82.3 609.7 72.2H626.2C632.2 72.2 637.4000000000001 67.9 638.4000000000001 61.9C640.4000000000001 49.9 640.5000000000001 37.3 638.4000000000001 24.8C637.4000000000001 18.8 632.2 14.4 626.2 14.4H609.7C606.1 4.3 600.7 -5 593.8000000000001 -13L602.0000000000001 -27.3C605.0000000000001 -32.5 603.9000000000001 -39.2 599.2000000000002 -43C589.7000000000002 -50.9 578.8000000000002 -57.2 567.1000000000001 -61.6C561.4000000000001 -63.7 555.0000000000001 -61.5 552.0000000000001 -56.2L543.8000000000001 -41.9C533.4000000000001 -43.8 522.6 -43.8 512.1 -41.9zM501.6 17C540.1 -12.6 584 31.3 554.4 69.8C515.9 99.4 472 55.5 501.6 17z" />
+    <glyph glyph-name="coins"
+      unicode="&#xF51E;"
+      horiz-adv-x="512" d=" M0 42.7V0C0 -35.3 86 -64 192 -64S384 -35.3 384 0V42.7C342.7 13.6 267.2 0 192 0S41.3 13.6 0 42.7zM320 320C426 320 512 348.7 512 384S426 448 320 448S128 419.3 128 384S214 320 320 320zM0 147.6V96C0 60.7 86 32 192 32S384 60.7 384 96V147.6C342.7 113.6 267.1 96 192 96S41.3 113.6 0 147.6zM416 136.6C473.3 147.7000000000001 512 168.3 512 192V234.7000000000001C488.8 218.3000000000001 454.7 207.1000000000001 416 200.2000000000001V136.6zM192 288C86 288 0 252.2 0 208S86 128 192 128S384 163.8 384 208S298 288 192 288zM411.3 231.7C471.3 242.5 512 263.7 512 288V330.7C476.5 305.6 415.5 292.1 351.3 288.9C380.8 274.6 402.5 255.4 411.3 231.7z" />
+    <glyph glyph-name="columns"
+      unicode="&#xF0DB;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM224 32H64V288H224V32zM448 32H288V288H448V32z" />
+    <glyph glyph-name="comment-alt-check"
+      unicode="&#xF4A2;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM370.1 284.2L239.1 154.2C234.8 149.9 227.8 149.9 223.5 154.3L147.8 230.6C143.5 234.9000000000001 143.6 241.9000000000001 147.9 246.2L173.9 272C178.2 276.3000000000001 185.2 276.2000000000001 189.5 271.9000000000001L231.6 229.4000000000001L328.8 325.8000000000001C333.1 330.1 340.1 330.0000000000001 344.4000000000001 325.7000000000001L370.2000000000001 299.7000000000001C374.4000000000001 295.4000000000001 374.4000000000001 288.4000000000001 370.1 284.2000000000001z" />
+    <glyph glyph-name="comment-alt-dollar"
+      unicode="&#xF650;"
+      horiz-adv-x="512" d=" M448 448H64C28.65 448 0 419.35 0 384V96C0 60.65 28.65 32 64 32H160V-51.98C160 -61.83 171.21 -67.48 179.13 -61.63L304 32H448C483.35 32 512 60.65 512 96V384C512 419.35 483.35 448 448 448zM280 145.56V128C280 119.16 272.84 112 264 112H248C239.16 112 232 119.16 232 128V145.73C220.58 147.0800000000001 209.72 150.92 200.22 157.19C194 161.3 193.4 170.3 198.67 175.57L216.19 193.09C219.93 196.83 225.5 197.33 230.3 195.12C233.48 193.66 236.96 192.9 240.56 192.9H273.3400000000001C278.0000000000001 192.9 281.7800000000001 196.68 281.7800000000001 201.32C281.7800000000001 205.07 279.2600000000001 208.4 275.6600000000001 209.43L225.5900000000001 223.73C203.34 230.08 185.5800000000001 248.4400000000001 182.68 271.4000000000001C178.63 303.4700000000001 201.71 330.8300000000001 232.0000000000001 334.4500000000001V352C232.0000000000001 360.8400000000001 239.1600000000001 368 248.0000000000001 368H264C272.84 368 280 360.8400000000001 280 352V334.27C291.42 332.92 302.28 329.08 311.78 322.81C318 318.7 318.6 309.7 313.33 304.43L295.81 286.91C292.07 283.17 286.5 282.67 281.7 284.88A24.516 24.516 0 0 1 271.44 287.1H238.66C234 287.1 230.22 283.32 230.22 278.68C230.22 274.93 232.74 271.6 236.34 270.57L286.4100000000001 256.27C308.6600000000001 249.91 326.42 231.56 329.3200000000001 208.6C333.3700000000001 176.54 310.2900000000001 149.18 280.0000000000001 145.56z" />
+    <glyph glyph-name="comment-alt-dots"
+      unicode="&#xF4A3;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM128 208C110.3 208 96 222.3 96 240S110.3 272 128 272S160 257.7 160 240S145.7 208 128 208zM256 208C238.3 208 224 222.3 224 240S238.3 272 256 272S288 257.7 288 240S273.7 208 256 208zM384 208C366.3 208 352 222.3 352 240S366.3 272 384 272S416 257.7 416 240S401.7 208 384 208z" />
+    <glyph glyph-name="comment-alt-edit"
+      unicode="&#xF4A4;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM215.4 137.4L167.2 132C160.7 131.3 155.3 136.8 156 143.2L161.4 191.4L257.7 287.7L311.7 233.7L215.4 137.4zM366.1 288.1L334.3 256.3L280.3 310.3L312.1 342.1C320 350 332.8 350 340.7000000000001 342.1L366.1 316.7C374 308.8 374 296 366.1 288.1z" />
+    <glyph glyph-name="comment-alt-exclamation"
+      unicode="&#xF4A5;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM256 112C238.3 112 224 126.3 224 144S238.3 176 256 176S288 161.7 288 144S273.7 112 256 112zM281.4 222.4C280.6 214.2 273.7 208 265.5 208H246.5C238.3 208 231.4 214.2 230.6 222.4L217.8 350.4C216.9 359.8 224.3 368 233.7 368H278.3C287.8 368 295.2 359.8 294.2 350.4L281.4 222.4z" />
+    <glyph glyph-name="comment-alt-lines"
+      unicode="&#xF4A6;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM288 184C288 179.6 284.4 176 280 176H136C131.6 176 128 179.6 128 184V200C128 204.4 131.6 208 136 208H280C284.4 208 288 204.4 288 200V184zM384 280C384 275.6 380.4 272 376 272H136C131.6 272 128 275.6 128 280V296C128 300.4 131.6 304 136 304H376C380.4 304 384 300.4 384 296V280z" />
+    <glyph glyph-name="comment-alt-minus"
+      unicode="&#xF4A7;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM368 232C368 223.2 360.8 216 352 216H160C151.2 216 144 223.2 144 232V248C144 256.8 151.2 264 160 264H352C360.8 264 368 256.8 368 248V232z" />
+    <glyph glyph-name="comment-alt-plus"
+      unicode="&#xF4A8;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM368 232C368 223.2 360.8 216 352 216H280V144C280 135.2 272.8 128 264 128H248C239.2 128 232 135.2 232 144V216H160C151.2 216 144 223.2 144 232V248C144 256.8 151.2 264 160 264H232V336C232 344.8 239.2 352 248 352H264C272.8 352 280 344.8 280 336V264H352C360.8 264 368 256.8 368 248V232z" />
+    <glyph glyph-name="comment-alt-slash"
+      unicode="&#xF4A9;"
+      horiz-adv-x="640" d=" M64 96C64 60.7 92.7 32 128 32H224V-52C224 -61.8 235.2 -67.5 243.1 -61.7L368 32H370L64 268.5V96zM633.8 -10.1L556.1999999999999 49.9C568.3 61.5 575.9999999999999 77.9 575.9999999999999 96V384C575.9999999999999 419.3 547.2999999999998 448 511.9999999999999 448H128C106.5 448 87.6 437.3 76 421L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L594.6 -60.5C601.6 -65.9 611.6 -64.7 617.1 -57.7L636.7 -32.4C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1z" />
+    <glyph glyph-name="comment-alt-smile"
+      unicode="&#xF4AA;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM320 314.8C334.8 314.8 346.8 302.8 346.8 288S334.8 261.2 320 261.2S293.2 273.2 293.2 288S305.2 314.8 320 314.8zM192 314.8C206.8 314.8 218.8 302.8 218.8 288S206.8 261.2 192 261.2S165.2 273.2 165.2 288S177.2 314.8 192 314.8zM356.2 173.9C331.3 144.7 294.8 128 256 128C217.2 128 180.7 144.7 155.8 173.9C150 180.6 150.8 190.7 157.6 196.4C164.3 202.1 174.4 201.4 180.1 194.6C198.9 172.6 226.6 160 255.9000000000001 160C285.3 160 312.9000000000001 172.6 331.7000000000001 194.6999999999999C337.5000000000001 201.3999999999999 347.6 202.1999999999999 354.3000000000001 196.5C361.1000000000001 190.6999999999999 361.9000000000001 180.6 356.2000000000001 173.8999999999999z" />
+    <glyph glyph-name="comment-alt-times"
+      unicode="&#xF4AB;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448zM340.9 189.1C347.1 182.9 347.1 172.7000000000001 340.9 166.5L329.6 155.2C323.4 149 313.2 149 307 155.2L256 206.1L205.0999999999999 155.2C198.9 149 188.6999999999999 149 182.5 155.2L171.1999999999999 166.5C165 172.7 165 182.9 171.1999999999999 189.1L222.0999999999999 240.0000000000001L171.1999999999999 290.9000000000001C165 297.1 165 307.3000000000001 171.1999999999999 313.5L182.5 324.8C188.6999999999999 331 198.9 331 205.0999999999999 324.8L256 273.9000000000001L306.8999999999999 324.8000000000001C313.0999999999999 331.0000000000001 323.2999999999999 331.0000000000001 329.5 324.8000000000001L340.8 313.5C347 307.3000000000001 347 297.1 340.8 290.9000000000001L289.9 240L340.9 189.1z" />
+    <glyph glyph-name="comment-alt"
+      unicode="&#xF27A;"
+      horiz-adv-x="512" d=" M448 448H64C28.7 448 0 419.3 0 384V96C0 60.7 28.7 32 64 32H160V-52C160 -61.8 171.2 -67.5 179.1 -61.7L304 32H448C483.3 32 512 60.7 512 96V384C512 419.3 483.3 448 448 448z" />
+    <glyph glyph-name="comment-check"
+      unicode="&#xF4AC;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM370.1 252.2L239.1 122.2C234.8 117.9 227.8 117.9 223.5 122.3L147.8 198.6C143.5 202.9 143.6 209.9 147.9 214.2L173.9 240.0000000000001C178.2 244.3000000000001 185.2 244.2 189.5 239.9000000000001L231.6 197.4L328.8 293.8000000000001C333.1 298.1 340.1 298 344.4000000000001 293.7000000000001L370.2000000000001 267.7000000000001C374.4000000000001 263.4000000000001 374.4000000000001 256.4000000000001 370.1 252.2000000000001z" />
+    <glyph glyph-name="comment-dollar"
+      unicode="&#xF651;"
+      horiz-adv-x="512" d=" M256 416C114.62 416 0 322.88 0 208C0 158.44 21.41 112.99 57.02 77.26C44.46 26.95 2.7 -17.97 2.2 -18.5A7.995 7.995 0 0 1 8 -32C74.26 -32 123.99 -0.25 148.6 19.38C181.29 7.07 217.59 0 256 0C397.38 0 512 93.12 512 208S397.38 416 256 416zM280 113.56V96C280 87.16 272.84 80 264 80H248C239.16 80 232 87.16 232 96V113.73C220.58 115.0800000000001 209.72 118.92 200.22 125.19C194 129.3 193.4 138.3 198.67 143.57L216.19 161.09C219.93 164.83 225.5 165.33 230.3 163.12C233.48 161.66 236.96 160.8999999999999 240.56 160.8999999999999H273.3400000000001C278.0000000000001 160.8999999999999 281.7800000000001 164.6799999999999 281.7800000000001 169.3199999999999C281.7800000000001 173.0699999999999 279.2600000000001 176.3999999999999 275.6600000000001 177.43L225.5900000000001 191.73C203.34 198.08 185.5800000000001 216.44 182.68 239.4C178.63 271.47 201.71 298.83 232.0000000000001 302.45V320C232.0000000000001 328.8400000000001 239.1600000000001 336 248.0000000000001 336H264C272.84 336 280 328.8400000000001 280 320V302.27C291.42 300.92 302.28 297.0800000000001 311.78 290.81C318 286.7 318.6 277.7 313.33 272.43L295.81 254.91C292.07 251.17 286.5 250.67 281.7 252.88A24.516 24.516 0 0 1 271.44 255.1H238.66C234 255.1 230.22 251.32 230.22 246.68C230.22 242.93 232.74 239.6 236.34 238.57L286.4100000000001 224.27C308.6600000000001 217.91 326.42 199.56 329.3200000000001 176.6C333.3700000000001 144.54 310.2900000000001 117.18 280.0000000000001 113.56z" />
+    <glyph glyph-name="comment-dots"
+      unicode="&#xF4AD;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM128 176C110.3 176 96 190.3 96 208S110.3 240 128 240S160 225.7 160 208S145.7 176 128 176zM256 176C238.3 176 224 190.3 224 208S238.3 240 256 240S288 225.7 288 208S273.7 176 256 176zM384 176C366.3 176 352 190.3 352 208S366.3 240 384 240S416 225.7 416 208S401.7 176 384 176z" />
+    <glyph glyph-name="comment-edit"
+      unicode="&#xF4AE;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM215.4 105.4L167.2 100C160.7 99.3 155.3 104.8 156 111.2L161.4 159.4L257.7 255.7L311.7 201.7L215.4 105.4zM366.1 256.1L334.3 224.3L280.3 278.3L312.1 310.1C320 318 332.8 318 340.7000000000001 310.1L366.1 284.7C374 276.8 374 264 366.1 256.1z" />
+    <glyph glyph-name="comment-exclamation"
+      unicode="&#xF4AF;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM256 80C238.3 80 224 94.3 224 112S238.3 144 256 144S288 129.7 288 112S273.7 80 256 80zM281.4 190.4C280.6 182.2 273.7 176 265.5 176H246.5C238.3 176 231.4 182.2 230.6 190.4L217.8 318.4C216.9 327.8 224.3 336 233.7 336H278.3C287.8 336 295.2 327.8 294.2 318.4L281.4 190.4z" />
+    <glyph glyph-name="comment-lines"
+      unicode="&#xF4B0;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM288 152C288 147.6 284.4 144 280 144H136C131.6 144 128 147.6 128 152V168C128 172.4 131.6 176 136 176H280C284.4 176 288 172.4 288 168V152zM384 248C384 243.6 380.4 240 376 240H136C131.6 240 128 243.6 128 248V264C128 268.4 131.6 272 136 272H376C380.4 272 384 268.4 384 264V248z" />
+    <glyph glyph-name="comment-minus"
+      unicode="&#xF4B1;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM368 200C368 191.2 360.8 184 352 184H160C151.2 184 144 191.2 144 200V216C144 224.8 151.2 232 160 232H352C360.8 232 368 224.8 368 216V200z" />
+    <glyph glyph-name="comment-plus"
+      unicode="&#xF4B2;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM368 200C368 191.2 360.8 184 352 184H280V112C280 103.2 272.8 96 264 96H248C239.2 96 232 103.2 232 112V184H160C151.2 184 144 191.2 144 200V216C144 224.8 151.2 232 160 232H232V304C232 312.8 239.2 320 248 320H264C272.8 320 280 312.8 280 304V232H352C360.8 232 368 224.8 368 216V200z" />
+    <glyph glyph-name="comment-slash"
+      unicode="&#xF4B3;"
+      horiz-adv-x="640" d=" M64 208C64 158.4 85.4 113 121 77.3C108.4 27 66.7 -17.9 66.2 -18.5C64 -20.8 63.4 -24.2 64.7 -27.2C66 -30.1 68.8 -32 72 -32C138.3 -32 188 -0.2 212.6 19.4C245.3 7.1 281.6 0 320 0C347.4 0 373.7 3.6 398.4 10L72.9 261.6C67.3 244.5 64 226.6 64 208zM633.8 -10.1L519.4 78.3C554.6 113.9 576 158.8 576 208C576 322.9 461.4 416 320 416C254.9 416 195.8 395.9 150.6 363.3L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L594.6 -60.5C601.6 -65.9 611.6 -64.7 617.1 -57.7L636.7 -32.4C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1z" />
+    <glyph glyph-name="comment-smile"
+      unicode="&#xF4B4;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM320 282.8C334.8 282.8 346.8 270.8 346.8 256S334.8 229.2 320 229.2S293.2 241.2 293.2 256S305.2 282.8 320 282.8zM192 282.8C206.8 282.8 218.8 270.8 218.8 256S206.8 229.2 192 229.2S165.2 241.2 165.2 256S177.2 282.8 192 282.8zM356.2 141.9C331.3 112.7 294.8 96 256 96C217.2 96 180.7 112.7 155.8 141.9C150 148.6 150.8 158.7 157.6 164.4C164.3 170.1 174.4 169.4 180.1 162.6C198.9 140.6 226.6 128 255.9000000000001 128C285.3 128 312.9000000000001 140.6 331.7000000000001 162.6999999999999C337.5000000000001 169.3999999999999 347.6 170.1999999999999 354.3000000000001 164.5C361.1000000000001 158.6999999999999 361.9000000000001 148.6 356.2000000000001 141.8999999999999z" />
+    <glyph glyph-name="comment-times"
+      unicode="&#xF4B5;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM340.9 157.1C347.1 150.9 347.1 140.7000000000001 340.9 134.5L329.6 123.2C323.4 117 313.2 117 307 123.2L256 174.1L205.0999999999999 123.2C198.9 117 188.6999999999999 117 182.5 123.2L171.1999999999999 134.5C165 140.7 165 150.9 171.1999999999999 157.1L222.0999999999999 208L171.1999999999999 258.9000000000001C165 265.1 165 275.3000000000001 171.1999999999999 281.5L182.5 292.8000000000001C188.6999999999999 299 198.9 299 205.0999999999999 292.8000000000001L256 241.9000000000001L306.8999999999999 292.8000000000001C313.0999999999999 299 323.2999999999999 299 329.5 292.8000000000001L340.8 281.5C347 275.3000000000001 347 265.1 340.8 258.9000000000001L289.9 208L340.9 157.1z" />
+    <glyph glyph-name="comment"
+      unicode="&#xF075;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2S4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416z" />
+    <glyph glyph-name="comments-alt-dollar"
+      unicode="&#xF652;"
+      horiz-adv-x="576" d=" M416 224V384C416 419.35 387.35 448 352 448H64C28.65 448 0 419.35 0 384V224C0 188.65 28.65 160 64 160V105.77C64 97.77 73.11 93.17 79.54 97.93L162.33 160H352C387.35 160 416 188.65 416 224zM224 224.12V208C224 203.58 220.42 200 216 200H200C195.58 200 192 203.58 192 208V224.29C180.71 224.87 169.73 228.81 160.63 235.64C156.73 238.57 156.53 244.41 160.06 247.78L171.81 258.99C174.58 261.63 178.7 261.75 181.94 259.72C185.81 257.3 190.2 256 194.76 256H222.87C229.37 256 234.67 261.92 234.67 269.19C234.67 275.14 231.06 280.38 225.9 281.92L180.9 295.42C162.31 301 149.32 318.84 149.32 338.81C149.32 363.33 168.37 383.25 191.99 383.88V400C191.99 404.42 195.57 408 199.99 408H215.99C220.41 408 223.99 404.42 223.99 400V383.7100000000001C235.28 383.13 246.26 379.2 255.36 372.36C259.26 369.43 259.4600000000001 363.5900000000001 255.93 360.2200000000001L244.18 349.01C241.41 346.37 237.29 346.25 234.05 348.2800000000001C230.18 350.7100000000001 225.79 352 221.23 352H193.12C186.62 352 181.32 346.0800000000001 181.32 338.81C181.32 332.86 184.93 327.62 190.09 326.0800000000001L235.09 312.5800000000001C253.68 307 266.67 289.1600000000001 266.67 269.19C266.67 244.66 247.62 224.75 224 224.12zM512 288H448V224C448 171.07 404.94 128 352 128H192V64C192 28.65 220.65 0 256 0H381.67L464.46 -62.07C470.9 -66.83 480.0000000000001 -62.23 480.0000000000001 -54.23V0H512C547.35 0 576 28.65 576 64V224C576 259.35 547.35 288 512 288z" />
+    <glyph glyph-name="comments-alt"
+      unicode="&#xF4B6;"
+      horiz-adv-x="576" d=" M416 224V384C416 419.3 387.3 448 352 448H64C28.7 448 0 419.3 0 384V224C0 188.7 28.7 160 64 160V105.8C64 97.8 73.1 93.2 79.5 98L162.3 160.1H352C387.3 160 416 188.7000000000001 416 224zM512 288H448V224C448 171.1 404.9 128 352 128H192V64C192 28.7 220.7 0 256 0H381.7L464.5 -62.1C470.9 -66.9 480 -62.3 480 -54.3V0H512C547.3 0 576 28.7 576 64V224C576 259.3 547.3 288 512 288z" />
+    <glyph glyph-name="comments-dollar"
+      unicode="&#xF653;"
+      horiz-adv-x="576" d=" M416 256C416 344.37 322.88 416 208 416S0 344.37 0 256C0 221.73 14.13 190.05 37.97 164.02C24.61 133.78 2.52 109.84 2.2 109.5A7.995 7.995 0 0 1 8 96C44.58 96 74.93 108.25 96.73 120.98C128.93 105.24 167.02 96 208 96C322.88 96 416 167.63 416 256zM192 160V176.29C180.71 176.87 169.73 180.81 160.63 187.6400000000001C156.73 190.5700000000001 156.53 196.4100000000001 160.06 199.78L171.81 210.9900000000001C174.58 213.63 178.7 213.75 181.94 211.72C185.81 209.3000000000001 190.2 208 194.76 208H222.87C229.37 208 234.67 213.92 234.67 221.19C234.67 227.14 231.06 232.38 225.9 233.92L180.9 247.42C162.31 253.0000000000001 149.32 270.8400000000001 149.32 290.81C149.32 315.3300000000001 168.37 335.25 191.99 335.88V352C191.99 356.42 195.57 360 199.99 360H215.99C220.41 360 223.99 356.42 223.99 352V335.7100000000001C235.28 335.13 246.26 331.2 255.36 324.36C259.26 321.43 259.4600000000001 315.5900000000001 255.93 312.2200000000001L244.18 301.01C241.41 298.37 237.29 298.25 234.05 300.2800000000001C230.18 302.7100000000001 225.79 304 221.23 304H193.12C186.62 304 181.32 298.0800000000001 181.32 290.8100000000001C181.32 284.86 184.93 279.62 190.09 278.0800000000001L235.09 264.5800000000001C253.68 259 266.67 241.1600000000001 266.67 221.1900000000001C266.67 196.6600000000001 247.62 176.7500000000001 224 176.1200000000001V160C224 155.58 220.42 152 216 152H200C195.58 152 192 155.58 192 160zM538.01 36.01C561.87 62.04 576 93.73 576 128C576 194.94 522.51 252.2 446.67 276.07C447.53 269.4700000000001 448 262.78 448 256C448 150.13 340.3399999999999 64 208 64C197.22 64 186.68 64.77 176.27 65.88C207.8 8.37 281.77 -32 368 -32C408.98 -32 447.07 -22.76 479.27 -7.02C501.07 -19.75 531.42 -32 568 -32C571.2 -32 574.09 -30.09 575.34 -27.16C576.61 -24.22 576 -20.82 573.7900000000001 -18.49C573.4800000000001 -18.16 551.3700000000001 5.75 538.0100000000001 36.01z" />
+    <glyph glyph-name="comments"
+      unicode="&#xF086;"
+      horiz-adv-x="576" d=" M416 256C416 344.4 322.9 416 208 416S0 344.4 0 256C0 221.7 14.1 190.1 38 164C24.6 133.8 2.5 109.8 2.2 109.5C0 107.2 -0.6 103.8 0.7 100.8S4.8 96 8 96C44.6 96 74.9 108.3 96.7 121C128.9 105.3 167 96 208 96C322.9 96 416 167.6 416 256zM538 36C561.9 62 576 93.7 576 128C576 194.9 522.5 252.2 446.7 276.1C447.6 269.5 448 262.8 448 256C448 150.1 340.3 64 208 64C197.2 64 186.7 64.8 176.3 65.9C207.8 8.4 281.8 -32 368 -32C409 -32 447.1 -22.8 479.3 -7C501.1 -19.7 531.4 -32 568 -32C571.2 -32 574.1 -30.1 575.3 -27.2C576.5999999999999 -24.3 576 -20.9 573.8 -18.5C573.5 -18.2 551.4 5.7 538 36z" />
+    <glyph glyph-name="compact-disc"
+      unicode="&#xF51F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM88 192H56C56 297.9 142.1 384 248 384V352C159.8 352 88 280.2 88 192zM248 96C195 96 152 139 152 192S195 288 248 288S344 245 344 192S301 96 248 96zM248 224C230.3 224 216 209.7 216 192S230.3 160 248 160S280 174.3 280 192S265.7 224 248 224z" />
+    <glyph glyph-name="compass-slash"
+      unicode="&#xF5E9;"
+      horiz-adv-x="640" d=" M633.82 -10.1L533.97 67.07C555.47 103.79 568 146.38 568 192C568 328.9700000000001 456.97 440 320 440C251.69 440 189.97 412.28 145.18 367.56L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM446.14 291.95L393.11 175.94L287.4600000000001 257.6L419.9400000000001 318.15C436.6000000000001 325.75 453.7500000000001 308.6 446.1400000000001 291.95zM220.05 65.86C203.4 58.25 186.24 75.41 193.85 92.06L219.55 148.3L80.57 255.71C75.16 235.35 72 214.07 72 192C72 55.03 183.03 -56 320 -56C364.43 -56 406.03 -44.17 442.1 -23.71L286.77 96.35L220.05 65.86z" />
+    <glyph glyph-name="compass"
+      unicode="&#xF14E;"
+      horiz-adv-x="496" d=" M225.38 214.63C212.88 202.13 212.88 181.87 225.38 169.38C237.87 156.88 258.14 156.88 270.63 169.38C283.13 181.88 283.13 202.14 270.63 214.63C258.13 227.12 237.87 227.12 225.38 214.63zM248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM374.14 291.95L308.17 147.6A31.938 31.938 0 0 0 292.4000000000001 131.8300000000001L148.06 65.86C131.41 58.25 114.25 75.41 121.86 92.06L187.84 236.41A31.938 31.938 0 0 0 203.6100000000001 252.18L347.9500000000001 318.15C364.6 325.75 381.7500000000001 308.6 374.1400000000001 291.9500000000001z" />
+    <glyph glyph-name="compress-alt"
+      unicode="&#xF422;"
+      horiz-adv-x="448" d=" M4.686 20.686L104 120L71.078 151.029C55.958 166.149 66.666 192 88.048 192H200.048C213.303 192 224 181.255 224 168V56C224 34.618 198.197 23.91 183.078 39.029L152 72L52.686 -27.314C46.438 -33.562 36.307 -33.562 30.059 -27.314L4.686 -1.941C-1.562 4.307 -1.562 14.438 4.686 20.686zM443.314 363.314L344 264L376.9220000000001 232.971C392.0420000000001 217.851 381.334 192 359.952 192H247.952C234.697 192 224 202.745 224 216V328C224 349.382 249.803 360.0900000000001 264.9220000000001 344.971L296 312L395.314 411.314C401.562 417.562 411.693 417.562 417.941 411.314L443.314 385.941C449.562 379.693 449.562 369.562 443.314 363.314z" />
+    <glyph glyph-name="compress-arrows-alt"
+      unicode="&#xF78C;"
+      horiz-adv-x="512" d=" M200 160H88C66.6 160 55.9 134.2 71 119L103.9 88L4.7 -11.3C-1.5 -17.5 -1.5 -27.7 4.7 -33.9L30.1 -59.3C36.3 -65.5 46.5 -65.5 52.7 -59.3L152 40L183.1 7C198.2 -8.1 224 2.6 224 24V136C224 149.3 213.3 160 200 160zM312 224H424C445.4 224 456.1 249.9 441 265L408 296L507.3 395.3C513.5 401.5 513.5 411.7 507.3 417.9L481.9 443.3C475.7 449.5 465.5 449.5 459.3 443.3L360 344L328.9 377C313.8 392.1 288 381.4 288 360V248C288 234.7 298.7 224 312 224zM408 88L441 119.1C456.1 134.2000000000001 445.4 160 424 160H312C298.7 160 288 149.3 288 136V24C288 2.6 313.9 -8.1 329 7L360 39.9L459.3 -59.4C465.5 -65.6 475.7 -65.6 481.9 -59.4L507.3 -34.0000000000001C513.5 -27.8000000000001 513.5 -17.6000000000001 507.3 -11.4L408 88zM183 376.9L152 344L52.7 443.3C46.5 449.5 36.3 449.5 30.1 443.3L4.7 417.9C-1.5 411.7 -1.5 401.5 4.7 395.3L104 296L71 264.9C55.9 249.8 66.6 224 88 224H200C213.3 224 224 234.7 224 248V360C224 381.3 198.1 392 183 376.9z" />
+    <glyph glyph-name="compress-wide"
+      unicode="&#xF326;"
+      horiz-adv-x="512" d=" M500 224H376C362.7 224 352 234.7 352 248V372C352 378.6 357.4 384 364 384H404C410.6 384 416 378.6 416 372V288H500C506.6 288 512 282.6 512 276V236C512 229.4 506.6 224 500 224zM160 248V372C160 378.6 154.6 384 148 384H108C101.4 384 96 378.6 96 372V288H12C5.4 288 0 282.6 0 276V236C0 229.4 5.4 224 12 224H136C149.3 224 160 234.7 160 248zM160 12V136C160 149.3 149.3 160 136 160H12C5.4 160 0 154.6 0 148V108C0 101.4 5.4 96 12 96H96V12C96 5.4 101.4 0 108 0H148C154.6 0 160 5.4 160 12zM416 12V96H500C506.6 96 512 101.4 512 108V148C512 154.6 506.6 160 500 160H376C362.7 160 352 149.3 352 136V12C352 5.4 357.4 0 364 0H404C410.6 0 416 5.4 416 12z" />
+    <glyph glyph-name="compress"
+      unicode="&#xF066;"
+      horiz-adv-x="448" d=" M436 256H312C298.7 256 288 266.7 288 280V404C288 410.6 293.4 416 300 416H340C346.6 416 352 410.6 352 404V320H436C442.6 320 448 314.6 448 308V268C448 261.4 442.6 256 436 256zM160 280V404C160 410.6 154.6 416 148 416H108C101.4 416 96 410.6 96 404V320H12C5.4 320 0 314.6 0 308V268C0 261.4 5.4 256 12 256H136C149.3 256 160 266.7 160 280zM160 -20V104C160 117.3 149.3 128 136 128H12C5.4 128 0 122.6 0 116V76C0 69.4 5.4 64 12 64H96V-20C96 -26.6 101.4 -32 108 -32H148C154.6 -32 160 -26.6 160 -20zM352 -20V64H436C442.6 64 448 69.4 448 76V116C448 122.6 442.6 128 436 128H312C298.7 128 288 117.3 288 104V-20C288 -26.6 293.4 -32 300 -32H340C346.6 -32 352 -26.6 352 -20z" />
+    <glyph glyph-name="concierge-bell"
+      unicode="&#xF562;"
+      horiz-adv-x="512" d=" M288 317.4600000000001V336H304C312.84 336 320 343.16 320 352V368C320 376.8400000000001 312.84 384 304 384H208C199.16 384 192 376.8400000000001 192 368V352C192 343.16 199.16 336 208 336H224V317.4600000000001C115.49 301.89 32 208.82 32 96H480C480 208.82 396.51 301.89 288 317.4600000000001zM496 64H16C7.16 64 0 56.84 0 48V16C0 7.16 7.16 0 16 0H496C504.84 0 512 7.16 512 16V48C512 56.84 504.84 64 496 64z" />
+    <glyph glyph-name="container-storage"
+      unicode="&#xF4B7;"
+      horiz-adv-x="640" d=" M640 368V400C640 408.8 632.8 416 624 416H16C7.2 416 0 408.8 0 400V368C0 359.2 7.2 352 16 352V32C7.2 32 0 24.8 0 16V-16C0 -24.8 7.2 -32 16 -32H624C632.8 -32 640 -24.8 640 -16V16C640 24.8 632.8 32 624 32V352C632.8 352 640 359.2 640 368zM448 32H416V352H448V32zM192 352H224V32H192V352zM336 32H304V352H336V32zM80 352H112V32H80V352zM560 32H528V352H560V32z" />
+    <glyph glyph-name="conveyor-belt-alt"
+      unicode="&#xF46F;"
+      horiz-adv-x="640" d=" M80 192H304C312.8 192 320 199.2 320 208V432C320 440.8 312.8 448 304 448H80C71.2 448 64 440.8 64 432V208C64 199.2 71.2 192 80 192zM400 192H560C568.8 192 576 199.2 576 208V368C576 376.8 568.8 384 560 384H400C391.2 384 384 376.8 384 368V208C384 199.2 391.2 192 400 192zM544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM128 0C110.3 0 96 14.3 96 32S110.3 64 128 64S160 49.7 160 32S145.7 0 128 0zM320 0C302.3 0 288 14.3 288 32S302.3 64 320 64S352 49.7 352 32S337.7 0 320 0zM512 0C494.3 0 480 14.3 480 32S494.3 64 512 64S544 49.7 544 32S529.7 0 512 0z" />
+    <glyph glyph-name="conveyor-belt"
+      unicode="&#xF46E;"
+      horiz-adv-x="640" d=" M144 192H496C504.8 192 512 199.2 512 208V432C512 440.8 504.8 448 496 448H384V320L320 352L256 320V448H144C135.2 448 128 440.8 128 432V208C128 199.2 135.2 192 144 192zM544 128H96C43 128 0 85 0 32S43 -64 96 -64H544C597 -64 640 -21 640 32S597 128 544 128zM128 0C110.3 0 96 14.3 96 32S110.3 64 128 64S160 49.7 160 32S145.7 0 128 0zM320 0C302.3 0 288 14.3 288 32S302.3 64 320 64S352 49.7 352 32S337.7 0 320 0zM512 0C494.3 0 480 14.3 480 32S494.3 64 512 64S544 49.7 544 32S529.7 0 512 0z" />
+    <glyph glyph-name="cookie-bite"
+      unicode="&#xF564;"
+      horiz-adv-x="512" d=" M510.52 192.18C440.55 193.03 384.05 249.87 384.05 320.04C313.88 320.04 257.05 376.53 256.19 446.49C228.93 450.63 201.06 446.19 176.47 433.67L107.34 398.45A132.221 132.221 0 0 1 49.55 340.64L14.4499999999999 271.76A132.645 132.645 0 0 1 1.6299999999999 190.81L13.7099999999999 114.54A132.521 132.521 0 0 1 50.8699999999999 41.58L105.6399999999999 -13.1799999999999A132.036 132.036 0 0 1 178.3499999999999 -50.2399999999999L255.06 -62.3899999999999C282.57 -66.7499999999999 310.76 -62.2799999999999 335.5899999999999 -49.6299999999999L404.7199999999999 -14.42A132.273 132.273 0 0 1 462.5099999999999 43.39L497.61 112.27C510.17 136.91 514.62 164.85 510.52 192.18zM176 80C158.33 80 144 94.33 144 112S158.33 144 176 144S208 129.67 208 112S193.67 80 176 80zM208 240C190.33 240 176 254.33 176 272S190.33 304 208 304S240 289.67 240 272S225.67 240 208 240zM368 112C350.33 112 336 126.33 336 144S350.33 176 368 176S400 161.67 400 144S385.67 112 368 112z" />
+    <glyph glyph-name="cookie"
+      unicode="&#xF563;"
+      horiz-adv-x="512" d=" M510.37 193.21L498.29 269.4700000000001A132.493 132.493 0 0 1 461.13 342.42L406.37 397.17C386.64 416.8900000000001 361.19 429.87 333.6600000000001 434.2200000000001L256.9600000000001 446.37C229.4500000000001 450.73 201.2700000000001 446.2600000000001 176.4400000000001 433.61L107.32 398.4A132.25 132.25 0 0 1 49.53 340.6L14.43 271.7200000000001A132.602 132.602 0 0 1 1.61 190.78L13.69 114.51A132.493 132.493 0 0 1 50.85 41.56L105.61 -13.19A132.087 132.087 0 0 1 178.32 -50.24L255.02 -62.38C282.53 -66.74 310.71 -62.27 335.54 -49.63L404.66 -14.42A132.302 132.302 0 0 1 462.45 43.38L497.55 112.25C510.26 137.21 514.75 165.55 510.37 193.21zM176 80C158.33 80 144 94.33 144 112S158.33 144 176 144S208 129.67 208 112S193.67 80 176 80zM208 240C190.33 240 176 254.33 176 272S190.33 304 208 304S240 289.67 240 272S225.67 240 208 240zM368 112C350.33 112 336 126.33 336 144S350.33 176 368 176S400 161.67 400 144S385.67 112 368 112z" />
+    <glyph glyph-name="copy"
+      unicode="&#xF0C5;"
+      horiz-adv-x="448" d=" M320 0V-40C320 -53.255 309.255 -64 296 -64H24C10.745 -64 0 -53.255 0 -40V328C0 341.255 10.745 352 24 352H96V56C96 25.121 121.121 0 152 0H320zM320 344V448H152C138.745 448 128 437.255 128 424V56C128 42.745 138.745 32 152 32H424C437.255 32 448 42.745 448 56V320H344C330.8 320 320 330.8 320 344zM440.971 375.029L375.029 440.971A24 24 0 0 1 358.0590000000001 448H352V352H448V358.059A24 24 0 0 1 440.971 375.029z" />
+    <glyph glyph-name="copyright"
+      unicode="&#xF1F9;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM373.134 93.247C371.5420000000001 91.38 333.358 47.516 263.283 47.516C178.591 47.516 118.799 110.776 118.799 193.083C118.799 274.386 180.803 336.4840000000001 262.5610000000001 336.4840000000001C329.5180000000001 336.4840000000001 364.5260000000001 299.1690000000001 365.9830000000001 297.5800000000001A12 12 0 0 0 367.2210000000001 282.9570000000001L344.8410000000001 248.3020000000001C340.7920000000001 242.0350000000001 332.0670000000001 240.9510000000001 326.6070000000001 246.0070000000001C326.3740000000001 246.2210000000001 300.0780000000001 269.8870000000001 264.7270000000001 269.8870000000001C218.6110000000001 269.8870000000001 190.8110000000001 236.3120000000001 190.8110000000001 193.8050000000001C190.8110000000001 154.2030000000001 216.3250000000001 114.1130000000001 265.0880000000001 114.1130000000001C303.7850000000001 114.1130000000001 330.3680000000001 142.4510000000001 330.6320000000001 142.7380000000001C335.7640000000001 148.3030000000001 344.6910000000001 147.7710000000001 349.1400000000001 141.6850000000001L373.6870000000001 108.1130000000001A12.001000000000001 12.001000000000001 0 0 0 373.1340000000001 93.2470000000001z" />
+    <glyph glyph-name="corn"
+      unicode="&#xF6C7;"
+      horiz-adv-x="512" d=" M118.63 77.26L50.75 9.38L96 -35.88C133.49 -73.37 194.27 -73.37 231.76 -35.88L322.27 54.63L419.93 74.16C426.36 75.45 428.78 83.7499999999999 423.84 88.05C335.84 164.5699999999999 202.35 160.97 118.63 77.2599999999999zM201.03 163.15C216.45 230.91 200.24 304.41 152.03 359.86C147.74 364.8 139.45 362.37 138.16 355.95L118.62 258.27L28.11 167.76C-9.38 130.27 -9.38 69.48 28.11 31.99L96 99.88C126.38 130.26 162.59 151.26 201.03 163.15zM511.93 402.7V405.9C513.21 427.3400000000001 497.21 445.9 475.45 447.81C458.82 449.42 443.78 440.7800000000001 436.42 426.7C426.5 436.29 412.09 440.45 398.01 436.3C384.57 432.45 374.34 422.2200000000001 370.5 409.42C359.62 416.45 345.54 418.06 332.73 412.62C319.94 406.85 311.62 395.3400000000001 309.37 382.85C297.85 388.29 283.7800000000001 388.29 271.93 381.26C260.08 374.54 253.05 362.37 252.09 349.9C240.26 354.37 226.18 353.0900000000001 214.98 345.0900000000001C211.72 342.79 209.04 339.9600000000001 206.67 336.92C235 285.69 244.42 226.86 234.98 170.48C291.37 179.84 350.23 170.85 401.4600000000001 142.35C403.1600000000001 144.0100000000001 404.8900000000001 145.6400000000001 406.3300000000001 147.66C414.3300000000001 158.86 415.61 172.63 411.1200000000001 184.46C423.9200000000001 185.4300000000001 436.0800000000001 192.46 442.8100000000001 204.31C449.8400000000001 216.15 450.1700000000001 230.23 444.4000000000001 241.7500000000001C457.2 244.0000000000001 468.71 252.0000000000001 474.48 264.8000000000001C480.24 277.6 478.63 291.6700000000001 471.6 302.5700000000001C484.0700000000001 306.4000000000001 494.63 316.3200000000001 498.8 329.7600000000001C502.96 343.8400000000001 498.8 358.2400000000001 489.83 368.1700000000001C502.34 374.5400000000001 511.29 387.3400000000001 511.93 402.7000000000001z" />
+    <glyph glyph-name="couch"
+      unicode="&#xF4B8;"
+      horiz-adv-x="640" d=" M160 224V160H480V224C480 259.3 508.7 288 544 288H576C576 341 533 384 480 384H160C107 384 64 341 64 288H96C131.3 288 160 259.3 160 224zM576 256H544C526.3 256 512 241.7 512 224V128H128V224C128 241.7 113.7 256 96 256H64C28.7 256 0 227.3 0 192C0 168.4 13 148 32 136.9V16C32 7.2 39.2 0 48 0H112C120.8 0 128 7.2 128 16V32H512V16C512 7.2 519.2 0 528 0H592C600.8 0 608 7.2 608 16V136.9C627 148 640 168.4 640 192C640 227.3 611.3 256 576 256z" />
+    <glyph glyph-name="cow"
+      unicode="&#xF6C8;"
+      horiz-adv-x="640" d=" M634.01 171.28L624.01 185.09V262.11C624.01 274 611.49 281.74 600.85 276.42C590.03 271.01 581.38 262.83 574.5400000000001 253.41L508.7200000000001 344.31A96.025 96.025 0 0 1 430.96 384H112C63.4 384 24 344.6 24 296V209.59C9.48 197.86 0 180.12 0 160V128H8C43.35 128 72 156.65 72 192V296C72 312.87 82.55 327.16 97.34 333.04C96.47 328.82 96 324.4700000000001 96 320V16C96 7.16 103.16 0 112 0H176C184.84 0 192 7.16 192 16V128C201.32 118.68 212.28 111.5 224.04 106.13V80C224.04 71.16 231.2 64 240.04 64S256.04 71.16 256.04 80V97.31C265.14 96.19 268.85 94.95 288.04 97.32V80C288.04 71.16 295.2 64 304.04 64S320.04 71.16 320.04 80V106.18C331.75 111.54 342.68 118.69 351.96 127.97V16C351.96 7.16 359.12 0 367.96 0H431.96C440.8 0 447.96 7.16 447.96 16V192L479.96 160V118.52A63.97 63.97 0 0 1 490.71 83.02L532.04 21.03A47.233 47.233 0 0 1 571.3399999999999 0C593.8599999999999 0 613.2399999999999 15.89 617.66 37.97L639.39 146.6C641.11 155.22 639.16 164.17 634.01 171.28zM377.24 280.64L354.35 257.89C332.5300000000001 236.19 302.9400000000001 224.01 272.0900000000001 224.01H271.92C241.06 224.01 211.47 236.2 189.66 257.89L166.7700000000001 280.64C151.0500000000001 296.27 164.47 320 189.0200000000001 320H354.98C379.54 320 392.9600000000001 296.27 377.24 280.64zM576.01 96C567.17 96 560.01 103.16 560.01 112S567.17 128 576.01 128S592.01 120.84 592.01 112S584.84 96 576.01 96z" />
+    <glyph glyph-name="credit-card-blank"
+      unicode="&#xF389;"
+      horiz-adv-x="576" d=" M528 408H48C21.5 408 0 386.5 0 360V8C0 -18.5 21.5 -40 48 -40H528C554.5 -40 576 -18.5 576 8V360C576 386.5 554.5 408 528 408zM160 44C160 37.4 154.6 32 148 32H76C69.4 32 64 37.4 64 44V84C64 90.6 69.4 96 76 96H148C154.6 96 160 90.6 160 84V44zM352 44C352 37.4 346.6 32 340 32H204C197.4 32 192 37.4 192 44V84C192 90.6 197.4 96 204 96H340C346.6 96 352 90.6 352 84V44z" />
+    <glyph glyph-name="credit-card-front"
+      unicode="&#xF38A;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416zM192 180C192 186.6 197.4 192 204 192H268C274.6 192 280 186.6 280 180V140C280 133.4 274.6 128 268 128H204C197.4 128 192 133.4 192 140V180zM160 44C160 37.4 154.6 32 148 32H76C69.4 32 64 37.4 64 44V52C64 58.6 69.4 64 76 64H148C154.6 64 160 58.6 160 52V44zM176 140C176 133.4 170.6 128 164 128H76C69.4 128 64 133.4 64 140V180C64 186.6 69.4 192 76 192H164C170.6 192 176 186.6 176 180V140zM352 44C352 37.4 346.6 32 340 32H204C197.4 32 192 37.4 192 44V52C192 58.6 197.4 64 204 64H340C346.6 64 352 58.6 352 52V44zM384 140C384 133.4 378.6 128 372 128H308C301.4 128 296 133.4 296 140V180C296 186.6 301.4 192 308 192H372C378.6 192 384 186.6 384 180V140zM512 140C512 133.4 506.6 128 500 128H412C405.4 128 400 133.4 400 140V180C400 186.6 405.4 192 412 192H500C506.6 192 512 186.6 512 180V140zM512 280C512 266.7 501.3 256 488 256H408C394.7 256 384 266.7 384 280V328C384 341.3 394.7 352 408 352H488C501.3 352 512 341.3 512 328V280z" />
+    <glyph glyph-name="credit-card"
+      unicode="&#xF09D;"
+      horiz-adv-x="576" d=" M0 16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V192H0V16zM192 84C192 90.6 197.4 96 204 96H340C346.6 96 352 90.6 352 84V44C352 37.4 346.6 32 340 32H204C197.4 32 192 37.4 192 44V84zM64 84C64 90.6 69.4 96 76 96H148C154.6 96 160 90.6 160 84V44C160 37.4 154.6 32 148 32H76C69.4 32 64 37.4 64 44V84zM576 368V320H0V368C0 394.5 21.5 416 48 416H528C554.5 416 576 394.5 576 368z" />
+    <glyph glyph-name="cricket"
+      unicode="&#xF449;"
+      horiz-adv-x="640" d=" M421.5 126.5L158 -58C149.1 -64.2 137.5 -65.9 127.6 -61.5C54.8 -29 5.7 41.1 0.1 120.6C-0.7 131.4 4.9 141.8 13.8 148L277.3 332.5L246.4 157.4L421.5 126.5zM635.7 417.6L620.5 437.8C612.9 448.6 597.9 451.3 587 443.7L443 343.2C428.5 333.1 408.6 336.6 398.4 351.1L376.5 382.4C371.4 389.6 361.5 391.4 354.2 386.3L332.9 371.4L302 196.3L477.1 165.4L498.4 180.3C505.6 185.4 507.4 195.3 502.3 202.6L477.8 237.6C467.7 252.1 471.2 272 485.7 282.2000000000001L629.8 384.1C640.5999999999999 391.7 643.3 406.7 635.6999999999999 417.6zM496 96C451.8 96 416 60.2 416 16S451.8 -64 496 -64S576 -28.2 576 16S540.2 96 496 96z" />
+    <glyph glyph-name="crop-alt"
+      unicode="&#xF565;"
+      horiz-adv-x="512" d=" M488 96H448V352C448 369.67 433.67 384 416 384H192V288H352V-40C352 -53.25 362.75 -64 376 -64H424C437.25 -64 448 -53.25 448 -40V0H488C501.25 0 512 10.75 512 24V72C512 85.26 501.25 96 488 96zM160 424C160 437.26 149.25 448 136 448H88C74.75 448 64 437.26 64 424V384H24C10.75 384 0 373.26 0 360V312C0 298.75 10.75 288 24 288H64V32C64 14.33 78.33 0 96 0H320V96H160V424z" />
+    <glyph glyph-name="crop"
+      unicode="&#xF125;"
+      horiz-adv-x="512" d=" M488 96H448V338.75L507.31 398.06C513.56 404.31 513.56 414.44 507.31 420.69L484.69 443.31C478.44 449.56 468.31 449.56 462.06 443.31L402.75 384H192V288H306.75L160 141.25V424C160 437.26 149.25 448 136 448H88C74.75 448 64 437.26 64 424V384H24C10.75 384 0 373.26 0 360V312C0 298.75 10.75 288 24 288H64V24C64 10.75 74.75 0 88 0H320V96H205.25L352 242.75V-40C352 -53.25 362.75 -64 376 -64H424C437.25 -64 448 -53.25 448 -40V0H488C501.25 0 512 10.75 512 24V72C512 85.26 501.25 96 488 96z" />
+    <glyph glyph-name="cross"
+      unicode="&#xF654;"
+      horiz-adv-x="384" d=" M352 320H256V416C256 433.67 241.67 448 224 448H160C142.33 448 128 433.67 128 416V320H32C14.33 320 0 305.67 0 288V224C0 206.33 14.33 192 32 192H128V-32C128 -49.67 142.33 -64 160 -64H224C241.67 -64 256 -49.67 256 -32V192H352C369.67 192 384 206.33 384 224V288C384 305.67 369.67 320 352 320z" />
+    <glyph glyph-name="crosshairs"
+      unicode="&#xF05B;"
+      horiz-adv-x="512" d=" M500 224H469.636C455.724 317.675 381.675 391.724 288 405.636V436C288 442.627 282.627 448 276 448H236C229.373 448 224 442.627 224 436V405.636C130.325 391.724 56.276 317.675 42.364 224H12C5.373 224 0 218.627 0 212V172C0 165.373 5.373 160 12 160H42.364C56.276 66.325 130.325 -7.724 224 -21.636V-52C224 -58.627 229.373 -64 236 -64H276C282.627 -64 288 -58.627 288 -52V-21.636C381.675 -7.724 455.724 66.325 469.636 160H500C506.627 160 512 165.373 512 172V212C512 218.627 506.627 224 500 224zM288 43.366V84C288 90.627 282.627 96 276 96H236C229.373 96 224 90.627 224 84V43.366C165.826 55.768 119.783 101.757 107.366 160H148C154.627 160 160 165.373 160 172V212C160 218.627 154.627 224 148 224H107.366C119.768 282.174 165.757 328.217 224 340.634V300C224 293.373 229.373 288 236 288H276C282.627 288 288 293.373 288 300V340.634C346.174 328.232 392.217 282.243 404.634 224H364C357.373 224 352 218.627 352 212V172C352 165.373 357.373 160 364 160H404.634C392.2320000000001 101.826 346.243 55.783 288 43.366zM288 192C288 174.327 273.673 160 256 160S224 174.327 224 192C224 209.673 238.327 224 256 224S288 209.673 288 192z" />
+    <glyph glyph-name="crow"
+      unicode="&#xF520;"
+      horiz-adv-x="640" d=" M544 416H527.64C513.04 435.32 490.09 448 464 448C419.82 448 384 412.18 384 368V347.02L12.09 54.43A30.216 30.216 0 0 1 0 30.26C0 7.8 23.64 -6.81 43.73 3.23L165.27 64H261.76L306.17 -56.1C308.44 -62.33 315.32 -65.5400000000001 321.55 -63.27L344.1 -55.0600000000001C350.33 -52.7900000000001 353.54 -45.9100000000001 351.27 -39.6800000000001L312.94 64H352C353.9100000000001 64 355.76 64.23 357.6600000000001 64.29L402.17 -56.09C404.44 -62.32 411.32 -65.53 417.55 -63.26L440.1 -55.05C446.3300000000001 -52.78 449.54 -45.9 447.2700000000001 -39.67L406.0300000000001 71.86C485.74 95.2 544 168.74 544 256V336L640 352C640 387.35 597.02 416 544 416zM464 344C450.75 344 440 354.75 440 368C440 381.26 450.75 392 464 392S488 381.26 488 368C488 354.75 477.25 344 464 344z" />
+    <glyph glyph-name="crown"
+      unicode="&#xF521;"
+      horiz-adv-x="640" d=" M528 0H112C103.2 0 96 -7.2 96 -16V-48C96 -56.8 103.2 -64 112 -64H528C536.8 -64 544 -56.8 544 -48V-16C544 -7.2 536.8 0 528 0zM592 320C565.5 320 544 298.5 544 272C544 264.9 545.6 258.3 548.4 252.2L476 208.8C460.6 199.6 440.7 204.8 431.8 220.4L350.3 363C361 371.8 368 385 368 400C368 426.5 346.5 448 320 448S272 426.5 272 400C272 385 279 371.8 289.7 363L208.2 220.4C199.3 204.8 179.3 199.6 164 208.8L91.7 252.2C94.4 258.2000000000001 96.1 264.9 96.1 272C96.1 298.5 74.6 320 48.1 320S0 298.5 0 272S21.5 224 48 224C50.6 224 53.2 224.4 55.7 224.8L128 32H512L584.3 224.8C586.8 224.4 589.4 224 592 224C618.5 224 640 245.5 640 272S618.5 320 592 320z" />
+    <glyph glyph-name="cube"
+      unicode="&#xF1B2;"
+      horiz-adv-x="512" d=" M239.1 441.7L31.1 363.7C12.4 356.7 0 338.7 0 318.7V93.6C0 75.4 10.3 58.8 26.5 50.7L234.5 -53.3C248 -60.1 263.9 -60.1 277.4 -53.3L485.4 50.7C501.7 58.8000000000001 511.9 75.5000000000001 511.9 93.6V318.7C511.9 338.7 499.5 356.6 480.8 363.6L272.8 441.6C262 445.8 250 445.8 239.1 441.7zM256 379.6L448 307.6V306.5L256 228.5L64 306.5V307.6L256 379.6zM288 23.6V172.5L448 237.5V103.6L288 23.6z" />
+    <glyph glyph-name="cubes"
+      unicode="&#xF1B3;"
+      horiz-adv-x="512" d=" M488.6 197.8L392 234V342.5C392 357.5 382.7 370.9 368.6 376.2L268.6 413.7C260.5 416.8 251.5000000000001 416.8 243.3 413.7L143.3 376.2C129.2 370.9 119.9 357.5 119.9 342.5V234L23.3 197.8C9.3 192.5 0 179.1 0 164.1V54C0 40.4 7.7 27.9 19.9 21.8L119.9 -28.2C130 -33.3 142 -33.3 152.1 -28.2L256 23.8L359.9 -28.2C370 -33.3 382 -33.3 392.1 -28.2L492.1 21.8C504.3 27.9 511.9999999999999 40.4 511.9999999999999 54V164.1C511.9999999999999 179.1 502.6999999999999 192.5 488.6 197.8zM358 233.2L273 201.3V269.5L358 306.5V233.2zM154 343.9L256 382.1L358 343.9V343.3L256 301.9L154 343.3V343.9zM238 52.8L153 10.3V89.4L238 128.2V52.8zM238 164.8L136 123.4L34 164.8V165.4L136 203.6L238 165.4V164.8zM478 52.8L393 10.3V89.4L478 128.2V52.8zM478 164.8L376 123.4L274 164.8V165.4L376 203.6L478 165.4V164.8z" />
+    <glyph glyph-name="curling"
+      unicode="&#xF44A;"
+      horiz-adv-x="640" d=" M554.1 256H85.9C99.1 293.2 134.3 320 176 320H224V336C224 397.9 274.1 448 336 448H464C472.8 448 480 440.8 480 432V400C480 391.2 472.8 384 464 384C346.3 384 288 395.4 288 336V320H464C505.7 320 540.9 293.2 554.1 256zM0 32C0 -21 43 -64 96 -64H544C597 -64 640 -21 640 32V64H0V32zM544 208H96C43 208 0 165 0 112V96H640V112C640 165 597 208 544 208z" />
+    <glyph glyph-name="cut"
+      unicode="&#xF0C4;"
+      horiz-adv-x="448" d=" M278.06 192L444.48 358.43C449.17 363.12 449.17 370.7200000000001 444.48 375.4C411.68 408.2 358.49 408.2 325.69 375.4L210.18 259.88L185.32 284.74C189.63 295.66 192 307.55 192 320C192 373.02 149.02 416 96 416S0 373.02 0 320S42.98 224 96 224C100.54 224 104.99 224.32 109.36 224.93L142.29 192L109.36 159.07C104.99 159.68 100.53 160 96 160C42.98 160 0 117.02 0 64S42.98 -32 96 -32S192 10.98 192 64C192 76.45 189.63 88.34 185.32 99.26L210.18 124.12L325.69 8.6C358.49 -24.2 411.68 -24.2 444.48 8.6C449.17 13.28 449.17 20.88 444.48 25.5700000000001L278.06 192zM96 288C78.36 288 64 302.36 64 320S78.36 352 96 352S128 337.64 128 320S113.64 288 96 288zM96 32C78.36 32 64 46.36 64 64S78.36 96 96 96S128 81.64 128 64S113.64 32 96 32z" />
+    <glyph glyph-name="dagger"
+      unicode="&#xF6CB;"
+      horiz-adv-x="384" d=" M336 320H224V432C224 440.84 216.84 448 208 448H176C167.16 448 160 440.84 160 432V320H48C21.49 320 0 298.51 0 272S21.49 224 48 224C68.87 224 86.45 237.4 93.06 256H290.94C297.55 237.4 315.13 224 336 224C362.51 224 384 245.49 384 272S362.51 320 336 320zM128 19.16L178.69 -56.87C185.02 -66.37 198.98 -66.37 205.32 -56.87L256 19.16V224H128V19.16z" />
+    <glyph glyph-name="database"
+      unicode="&#xF1C0;"
+      horiz-adv-x="448" d=" M448 374.857V329.1430000000001C448 288.857 347.667 256 224 256S0 288.857 0 329.1430000000001V374.857C0 415.1430000000001 100.333 448 224 448S448 415.1430000000001 448 374.857zM448 272V169.143C448 128.857 347.667 96 224 96S0 128.857 0 169.143V272C48.125 238.857 136.208 223.428 224 223.428S399.874 238.857 448 272zM448 112V9.143C448 -31.143 347.667 -64 224 -64S0 -31.143 0 9.143V112C48.125 78.857 136.208 63.428 224 63.428S399.874 78.857 448 112z" />
+    <glyph glyph-name="deaf"
+      unicode="&#xF2A4;"
+      horiz-adv-x="512" d=" M216 188C216 172.536 203.464 160 188 160S160 172.536 160 188C160 232.112 195.888 268 240 268S320 232.112 320 188C320 172.536 307.464 160 292 160S264 172.536 264 188C264 201.234 253.233 212 240 212S216 201.234 216 188zM240 364C142.953 364 64 285.0470000000001 64 188C64 172.536 76.536 160 92 160S120 172.536 120 188C120 254.168 173.832 308 240 308S360 254.168 360 188C360 112.836 288.991 117.689 288.003 44.378L288 44C288 15.327 264.673 -8 236 -8C220.536 -8 208 -20.536 208 -36S220.536 -64 236 -64C295.475 -64 343.876 -15.672 344 43.774C344.5950000000001 78.202 416 92.014 416 188C416 285.0470000000001 337.0470000000001 364 240 364zM508.485 416.201L480.2 444.485C475.513 449.171 467.916 449.171 463.229 444.485L376.2 357.456C371.514 352.77 371.514 345.1720000000001 376.2 340.485L404.485 312.2C409.171 307.514 416.769 307.514 421.4550000000001 312.2L508.485 399.229C513.172 403.917 513.172 411.515 508.485 416.201zM168.97 133.255C164.284 137.941 156.686 137.941 152 133.255L3.515 -15.23C-1.171 -19.916 -1.171 -27.514 3.515 -32.201L31.8 -60.485C36.487 -65.171 44.084 -65.171 48.771 -60.485L197.256 88C201.942 92.686 201.942 100.284 197.256 104.971L168.97 133.255z" />
+    <glyph glyph-name="deer-rudolph"
+      unicode="&#xF78F;"
+      horiz-adv-x="512" d=" M480 352C462.3 352 448 337.7 448 320C448 318.9 448.5 318 448.6 317L364.8 340.5L375.9000000000001 346.1C388.3 352.3 398.9000000000001 361.7 406.6 373.2L424.7000000000001 400.4C427.2000000000001 404.1 426.2000000000001 409 422.5000000000001 411.5L409.2000000000001 420.4C405.5000000000001 422.9 400.6 421.9 398.1 418.2L380.1 391C375.5 384 369.1 378.4 361.6 374.7L319 353.4L285.2 362.9L293.5 373.2C300.3 381.7 304 392.3 304 403.2V440C304 444.4 300.4 448 296 448H280C275.6 448 272 444.4 272 440V403.2C272 399.6 270.8 396.1 268.5 393.2L251.7 372.3L235.6 376.8C228.7 378.7000000000001 223.9 385 223.9 392.2V440C223.9 444.4 220.3 448 215.9 448H199.9C195.5 448 191.9 444.4 191.9 440V392.2C191.9 370.7 206.2 351.8 226.9 346L305.8 323.8L272 256H64C28.7 256 0 227.3 0 192V128L32 149.3V100.4L20.1 68.6C15.5 56.4 14.8 43.2 17.9 30.6L42.8 -51.9C44.6 -59 51 -64 58.3 -64H122.1C132.5 -64 140.1 -54.2 137.6 -44.1L111.3 44.3L130.7 95.9999999999999H256V-48.0000000000001C256 -56.8000000000001 263.2 -64 272 -64H336C344.8 -64 352 -56.8 352 -48V160L384 224H448C465.7 224 480 238.3 480 256V283.9C480 285.4 479.5 286.7000000000001 479.3 288.1C479.5 288.1 479.8 288 480 288C497.7 288 512 302.3 512 320S497.7 352 480 352zM384 272C375.2 272 368 279.2 368 288S375.2 304 384 304S400 296.8 400 288S392.8 272 384 272z" />
+    <glyph glyph-name="deer"
+      unicode="&#xF78E;"
+      horiz-adv-x="512" d=" M488.7 314.7L396.8 340.5L407.9 346.1C420.3 352.3 430.9 361.7 438.6 373.2L456.7 400.4C459.2 404.1 458.2 409 454.5 411.5L441.2 420.4C437.5 422.9 432.6 421.9 430.1 418.2L412.1 391C407.5 384 401.1 378.4 393.6 374.7L351 353.4L317.2 362.9L325.5 373.2C332.3 381.7 336 392.3 336 403.2V440C336 444.4 332.4 448 328 448H312C307.6 448 304 444.4 304 440V403.2C304 399.6 302.8 396.1 300.5 393.2L283.7 372.3L267.6 376.8C260.7 378.7000000000001 255.9 385 255.9 392.2V440C255.9 444.4 252.3 448 247.9 448H231.9C227.5 448 223.9 444.4 223.9 440V392.2C223.9 370.7 238.2 351.8 258.9 346L337.8 323.8L304 256H64C28.7 256 0 227.3 0 192V128L32 149.3V100.4L20.1 68.6C15.5 56.4 14.8 43.2 17.9 30.6L42.8 -51.9C44.6 -59 51 -64 58.3 -64H122.1C132.5 -64 140.1 -54.2 137.6 -44.1L111.3 44.3L130.7 95.9999999999999H288V-48.0000000000001C288 -56.8000000000001 295.2 -64 304 -64H368C376.8 -64 384 -56.8 384 -48V160L416 224H480C497.7 224 512 238.3 512 256V283.9C512 298.2000000000001 502.4 310.8 488.7 314.7000000000001zM416 272C407.2 272 400 279.2 400 288S407.2 304 416 304S432 296.8 432 288S424.8 272 416 272z" />
+    <glyph glyph-name="democrat"
+      unicode="&#xF747;"
+      horiz-adv-x="640" d=" M637.3 191.1L617.6999999999999 220.5C589.4999999999999 262.8 542.4 288 491.5999999999999 288H256L174.8 369.2000000000001C194.9 389.3 197.4 420.3 182.3 443.1C178.9 448.3 171.5 449.0000000000001 167.1 444.6L125.3 402.8000000000001L82.4 445.6C78.8 449.2 72.8 448.6 70 444.4C57.7 425.8 59.7 400.4 76.1 384C79.4 380.7 83.4 378.7 87.4 376.5C85.2 374.8 82.7 373.4 81 371.1L6.4 271.8C-0.9 262.1 -2 249.1 3.4 238.3L17.7 209.7C23.1 198.9 34.2 192 46.3 192H77.3C85.8 192 93.9 195.4 99.9 201.4L138 236L192 128H544V205.8C560.2 193.6 562.3 188.2 584.1 155.5C589 148.1 598.9 146.2 606.3000000000001 151.1L632.9000000000001 168.8C640.2 173.8 642.2 183.7 637.3000000000001 191.1zM296.2 204.7L279.7 188.6L283.5999999999999 165.9C284.2999999999999 161.8 279.9999999999999 158.7000000000001 276.3999999999999 160.6L256 171.3L235.6 160.6C232 158.7000000000001 227.7 161.8 228.4 165.9L232.3 188.6L215.8 204.7C212.8 207.6 214.5 212.6 218.6 213.2L241.4000000000001 216.5L251.6 237.2C253.4000000000001 240.9 258.7000000000001 240.9 260.6 237.2L270.8 216.5L293.6 213.2C297.6 212.6 299.2000000000001 207.6 296.2000000000001 204.7zM408.2 204.7L391.7 188.6L395.5999999999999 165.9C396.2999999999999 161.8 391.9999999999999 158.7000000000001 388.3999999999999 160.6L368 171.3L347.6 160.6C344 158.7000000000001 339.7000000000001 161.8 340.4000000000001 165.9L344.3 188.6L327.8 204.7C324.8 207.6 326.5 212.6 330.6 213.2L353.4000000000001 216.5L363.6 237.2C365.4000000000001 240.9 370.7000000000001 240.9 372.6 237.2L382.8 216.5L405.6 213.2C409.6 212.6 411.2000000000001 207.6 408.2000000000001 204.7zM520.1999999999999 204.7L503.6999999999999 188.6L507.5999999999999 165.9C508.2999999999999 161.8 503.9999999999999 158.7000000000001 500.3999999999999 160.6L480 171.3L459.6 160.6C456 158.7000000000001 451.7 161.8 452.4 165.9L456.3 188.6L439.8 204.7C436.8 207.6 438.5 212.6 442.6 213.2L465.4 216.5L475.6 237.2C477.4 240.9 482.7 240.9 484.6 237.2L494.8 216.5L517.6 213.2C521.6 212.6 523.2 207.6 520.2 204.7zM192 -48C192 -56.8 199.2 -64 208 -64H272C280.8 -64 288 -56.8 288 -48V32H448V-48C448 -56.8 455.2 -64 464 -64H528C536.8 -64 544 -56.8 544 -48V96H192V-48z" />
+    <glyph glyph-name="desktop-alt"
+      unicode="&#xF390;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H240L224 -16H152C138.7 -16 128 -26.7 128 -40S138.7 -64 152 -64H424C437.3 -64 448 -53.3 448 -40S437.3 -16 424 -16H352L336 32H528C554.5 32 576 53.5 576 80V400C576 426.5 554.5 448 528 448zM512 160H64V384H512V160z" />
+    <glyph glyph-name="desktop"
+      unicode="&#xF108;"
+      horiz-adv-x="576" d=" M528 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H240L224 -16H152C138.7 -16 128 -26.7 128 -40S138.7 -64 152 -64H424C437.3 -64 448 -53.3 448 -40S437.3 -16 424 -16H352L336 32H528C554.5 32 576 53.5 576 80V400C576 426.5 554.5 448 528 448zM512 96H64V384H512V96z" />
+    <glyph glyph-name="dewpoint"
+      unicode="&#xF748;"
+      horiz-adv-x="512" d=" M160.1 425.9C109.1 268.2 0 225.3 0 114.1C0 15.7 85.9 -64 192 -64S384 15.7 384 114.1C384 225.9000000000001 275.1 267.4000000000001 223.9 425.9000000000001C215.2 454.7 169.9 456.0000000000001 160.1 425.9000000000001zM416 448C363.1 448 320 404.9 320 352S363.1 256 416 256S512 299.1 512 352S468.9 448 416 448zM416 320C398.3 320 384 334.3 384 352S398.3 384 416 384S448 369.7 448 352S433.7 320 416 320z" />
+    <glyph glyph-name="dharmachakra"
+      unicode="&#xF655;"
+      horiz-adv-x="512" d=" M495 222.94L477.78 221.86C472.51 261.35 456.99 297.5 433.92 327.7L446.87 339.13C453.79 345.24 454.1199999999999 355.92 447.6 362.44L426.44 383.6C419.9100000000001 390.13 409.23 389.79 403.13 382.87L391.7 369.93C361.5 392.99 325.35 408.51 285.87 413.79L286.94 431C287.52 440.21 280.2 448 270.97 448H241.03C231.8 448 224.49 440.21 225.06 431L226.14 413.78C186.65 408.51 150.5 392.99 120.31 369.92L108.88 382.87C102.77 389.79 92.09 390.12 85.57 383.6L64.4 362.44C57.87 355.91 58.21 345.23 65.13 339.13L78.08 327.7C55.02 297.5 39.5 261.35 34.22 221.86L17 222.94C7.79 223.52 0 216.2 0 206.97V177.03C0 167.8 7.79 160.49 17 161.06L34.22 162.1399999999999C39.49 122.6499999999999 55.01 86.4999999999999 78.08 56.31L65.13 44.8799999999999C58.21 38.7699999999999 57.88 28.0899999999999 64.4 21.5699999999999L85.57 0.3999999999999C92.1 -6.1300000000001 102.78 -5.7900000000001 108.88 1.1299999999999L120.31 14.0799999999999C150.51 -8.9800000000001 186.66 -24.5000000000001 226.15 -29.7800000000001L225.06 -47C224.48 -56.21 231.8 -64 241.03 -64H270.9700000000001C280.2000000000001 -64 287.5100000000001 -56.21 286.9400000000001 -47L285.8600000000001 -29.78C325.3500000000001 -24.51 361.5000000000001 -8.99 391.7000000000001 14.08L403.1300000000001 1.1300000000001C409.2400000000001 -5.79 419.9200000000001 -6.1199999999999 426.4400000000001 0.4L447.6100000000001 21.5700000000001C454.14 28.1 453.8000000000001 38.78 446.8800000000001 44.8800000000001L433.9300000000001 56.3100000000001C456.9900000000001 86.5100000000001 472.51 122.6600000000001 477.7900000000001 162.1400000000001L495.0100000000001 161.0600000000001C504.2200000000001 160.4800000000001 512.0100000000001 167.8000000000001 512.0100000000001 177.0300000000001V206.9700000000001C512.0000000000001 216.2000000000001 504.2100000000001 223.5100000000001 495.0000000000001 222.9400000000001zM281.84 349.39C306.65 345.32 329.47 335.73 349.07 321.61L306.45 273.32C297.72 278.76 288.13 282.86 277.83 285.27L281.84 349.39zM230.16 349.39L234.17 285.27C223.88 282.86 214.28 278.75 205.55 273.32L162.93 321.61C182.53 335.73 205.35 345.32 230.16 349.39zM126.39 285.06L174.69 242.45C169.25 233.72 165.15 224.12 162.73 213.83L98.61 217.84C102.68 242.65 112.27 265.46 126.39 285.06zM98.61 166.16L162.73 170.17C165.14 159.88 169.25 150.28 174.68 141.55L126.39 98.93C112.27 118.53 102.68 141.35 98.61 166.16zM230.16 34.61C205.35 38.68 182.53 48.27 162.93 62.39L205.54 110.69C214.27 105.25 223.87 101.15 234.16 98.73L230.16 34.61zM256 160C238.33 160 224 174.33 224 192S238.33 224 256 224S288 209.67 288 192S273.67 160 256 160zM281.84 34.61L277.83 98.73C288.12 101.14 297.72 105.25 306.45 110.69L349.06 62.39C329.46 48.27 306.65 38.68 281.8400000000001 34.61zM385.61 98.94L337.32 141.56C342.76 150.29 346.86 159.88 349.2699999999999 170.18L413.39 166.17C409.32 141.35 399.7299999999999 118.53 385.6099999999999 98.94zM349.27 213.83C346.86 224.12 342.75 233.72 337.31 242.45L385.61 285.06C399.73 265.4600000000001 409.32 242.64 413.39 217.83L349.27 213.83z" />
+    <glyph glyph-name="diagnoses"
+      unicode="&#xF470;"
+      horiz-adv-x="640" d=" M496 192C504.8 192 512 199.2 512 208S504.8 224 496 224S480 216.8 480 208S487.2 192 496 192zM320 272C368.5 272 408 311.5 408 360S368.5 448 320 448S232 408.5 232 360S271.5 272 320 272zM59.8 84C70 68.7 89.1 66.2 102.7 74.2C118.9 83.8 158.9 105.9 208 122.8V32H432V122.7C481.1 105.9 521.1 83.7 537.3 74.1C550.9 66.1 570 68.8 580.1999999999999 83.9L597.9999999999999 110.6C606.7999999999998 123.8 605.5999999999999 145.2 587.9999999999999 155.7C576.0999999999999 162.8 558.2999999999998 172.7 536.8999999999999 183.1C508.7999999999998 137 437.4999999999999 165.3 449.1999999999999 218.2C409.3 230.8 365.1 240 320 240C263 240 207.1 225.5 160 207.8C159.8 167.6 112.4 144.5 80.8 171.8C69.6 165.8 59.5 160.2 52.1 155.8C34.5 145.3 33.3 124 42.1 110.7L59.8 84zM368 104C381.3 104 392 93.3 392 80S381.3 56 368 56S344 66.7 344 80S354.7 104 368 104zM272 200C285.3 200 296 189.3 296 176S285.3 152 272 152S248 162.7 248 176S258.7 200 272 200zM112 192C120.8 192 128 199.2 128 208S120.8 224 112 224S96 216.8 96 208S103.2 192 112 192zM624 0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-16C640 -7.2 632.8 0 624 0z" />
+    <glyph glyph-name="diamond"
+      unicode="&#xF219;"
+      horiz-adv-x="448" d=" M242.2 439.7C232.6 450.8 215.4 450.8 205.8 439.7L5.8 207.7C-2 198.7 -2 185.4 5.8 176.4L205.8 -55.6C215.4 -66.7 232.6 -66.7 242.2 -55.6L442.2 176.4C450 185.4 450 198.7 442.2 207.7L242.2 439.7z" />
+    <glyph glyph-name="dice-d10"
+      unicode="&#xF6CD;"
+      horiz-adv-x="512" d=" M11.09 192.71L141.47 219.96L209.25 432.4600000000001C212.2 441.6600000000001 200.85 448.38 194.8 441L3.01 207.13C-2.23 200.75 3.21 191.06 11.09 192.71zM370.52 219.95L500.9 192.7C508.79 191.05 514.22 200.75 508.99 207.13L317.19 441.01C311.15 448.38 299.8 441.67 302.73 432.46L370.5200000000001 219.95zM264.03 441.9500000000001C261.46 450.01 250.54 450.01 247.97 441.9500000000001L174.57 211.84L256 155.13L337.43 211.85L264.03 441.95zM505.1899999999999 155.73L361.13 185.84L272.93 124.3900000000001V-55.14C272.93 -62.73 281.48 -66.7999999999999 286.95 -61.81L509.0799999999999 140.39C514.3899999999999 145.21 512.0799999999999 154.29 505.1899999999999 155.73zM6.8099999999999 155.73C-0.0800000000001 154.29 -2.3900000000001 145.21 2.9099999999999 140.3900000000001L225.05 -61.8C230.53 -66.78 239.07 -62.72 239.07 -55.13V124.39L150.87 185.84L6.81 155.73z" />
+    <glyph glyph-name="dice-d12"
+      unicode="&#xF6CE;"
+      horiz-adv-x="512" d=" M256 174.11L147.41 119.82L206.23 -64H305.76L364.58 119.82L256 174.11zM272 201.89L380.8400000000001 147.47L504.46 271.0900000000001L453.03 373.9300000000001L272 308.76V201.89zM240 201.89V308.76L58.97 373.93L7.54 271.0800000000001L131.16 147.46L240 201.89zM422.28 396.86L333.51 441.24A63.874 63.874 0 0 1 304.89 448H207.1C197.16 448 187.37 445.69 178.48 441.24L89.72 396.86L256 337L422.28 396.86zM398.05 119.43L343.04 -52.48L428.92 -9.54A64.02 64.02 0 0 1 457.54 19.08L505.24 114.48A64.07 64.07 0 0 1 512 143.1V233.37L398.05 119.43zM0 233.38V143.11C0 133.17 2.31 123.37 6.76 114.49L54.46 19.09A63.972 63.972 0 0 1 83.08 -9.53L168.96 -52.47L113.95 119.4400000000001L0 233.38z" />
+    <glyph glyph-name="dice-d20"
+      unicode="&#xF6CF;"
+      horiz-adv-x="480" d=" M106.75 232.94L1.2 77.05C-1.88 72.05 1.3 65.55 7.13 64.91L215.39 42.84L106.75 232.9400000000001zM7.41 132.57L82.7 254.92L6.06 300.9C3.39 302.5 0 300.5800000000001 0 297.4700000000001V134.66C0 130.63 5.29 129.13 7.41 132.57zM18.25 24.4L212.65 -63.26C217.95 -65.71 224 -61.83 224 -56V9.67L20.45 31.97C16 32.47 14.22 26.3800000000001 18.25 24.4zM99.47 282.18L179.4 425.12C183.74 432.18 175.81 440.37 168.62 436.26L17.81 337.65C15.34 336.03 15.42 332.39 17.94 330.87L99.47 282.18zM240 272H349.21L253.63 440.38C250.5 445.46 245.25 448 240 448S229.5 445.46 226.37 440.38L130.79 272H240zM473.94 300.9L397.3 254.91L472.59 132.56C474.7 129.12 480.0000000000001 130.62 480.0000000000001 134.66V297.4700000000001C480.0000000000001 300.5800000000001 476.6100000000001 302.5 473.9400000000001 300.9zM380.53 282.18L462.0599999999999 330.88C464.5899999999999 332.4 464.66 336.04 462.1899999999999 337.6600000000001L311.38 436.26C304.19 440.37 296.26 432.18 300.6 425.12L380.53 282.18zM459.55 31.97L256 9.68V-55.99C256 -61.83 262.05 -65.7 267.35 -63.25L461.75 24.41C465.78 26.38 464 32.47 459.55 31.97zM373.25 232.9400000000001L264.62 42.84L472.8799999999999 64.91C478.7099999999999 65.56 481.8899999999999 72.05 478.8099999999999 77.05L373.25 232.94zM240 240H139.57L240 64.25L340.43 240H240z" />
+    <glyph glyph-name="dice-d4"
+      unicode="&#xF6D0;"
+      horiz-adv-x="512" d=" M225.28 444.6600000000001L1.68 138.52C-1 134.85 -0.4 129.6 3.03 126.7L226.64 -62.11C231.9400000000001 -66.58 239.81 -62.62 239.81 -55.47V439.4700000000001C239.8 447.6 229.99 451.1 225.28 444.6600000000001zM510.3200000000001 138.5200000000001L286.7200000000001 444.6600000000001C282.01 451.1 272.2 447.6 272.2 439.4700000000001V-55.47C272.2 -62.6199999999999 280.07 -66.5799999999999 285.37 -62.11L508.97 126.7000000000001C512.4100000000001 129.6 513.01 134.85 510.3200000000001 138.5200000000001z" />
+    <glyph glyph-name="dice-d6"
+      unicode="&#xF6D1;"
+      horiz-adv-x="448" d=" M422.19 338.05L256.21 438.93C236.3 451.03 211.69 451.03 191.78 438.93L25.81 338.05C20.49 334.82 20.52 326.78 25.87 323.5900000000001L224 205.45L422.14 323.59C427.49 326.78 427.52 334.81 422.19 338.05zM436.03 293.42L240 176.54V-47.28C240 -60.16 253.39 -68.1899999999999 264.05 -61.71L416.2100000000001 30.77C435.8900000000001 42.73 448.0000000000001 64.71 448.0000000000001 88.47V286.17C448.0000000000001 292.5800000000001 441.3600000000001 296.6 436.0300000000001 293.42zM0 286.17V88.47C0 64.7000000000001 12.11 42.73 31.79 30.77L183.95 -61.6999999999999C194.62 -68.1799999999999 208 -60.1599999999999 208 -47.2699999999999V176.54L11.97 293.42C6.64 296.6 0 292.5800000000001 0 286.17z" />
+    <glyph glyph-name="dice-d8"
+      unicode="&#xF6D2;"
+      horiz-adv-x="512" d=" M225.53 445.48L2.36 214.17C-1.85 209.8 -0.2 202.46 5.46 200.4L239.59 115.34V439.61C239.58 447.1 230.68 450.82 225.53 445.48zM509.64 214.17L286.4700000000001 445.48C281.32 450.82 272.4100000000001 447.1 272.4100000000001 439.6V115.3300000000001L506.54 200.3900000000001C512.2 202.46 513.85 209.81 509.64 214.1700000000001zM33.53 137.62L225.53 -61.48C230.68 -66.82 239.59 -63.1 239.59 -55.6V79.71L42.13 151.39C33.92 154.37 27.41 143.96 33.53 137.62zM469.87 151.39L272.41 79.71V-55.6C272.41 -63.1 281.32 -66.82 286.47 -61.48L478.47 137.62C484.59 143.96 478.08 154.37 469.8699999999999 151.39z" />
+    <glyph glyph-name="dice-five"
+      unicode="&#xF523;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM128 64C110.33 64 96 78.33 96 96S110.33 128 128 128S160 113.67 160 96S145.67 64 128 64zM128 256C110.33 256 96 270.3300000000001 96 288S110.33 320 128 320S160 305.67 160 288S145.67 256 128 256zM224 160C206.33 160 192 174.33 192 192S206.33 224 224 224S256 209.67 256 192S241.67 160 224 160zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64zM320 256C302.33 256 288 270.3300000000001 288 288S302.33 320 320 320S352 305.67 352 288S337.67 256 320 256z" />
+    <glyph glyph-name="dice-four"
+      unicode="&#xF524;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM128 64C110.33 64 96 78.33 96 96S110.33 128 128 128S160 113.67 160 96S145.67 64 128 64zM128 256C110.33 256 96 270.3300000000001 96 288S110.33 320 128 320S160 305.67 160 288S145.67 256 128 256zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64zM320 256C302.33 256 288 270.3300000000001 288 288S302.33 320 320 320S352 305.67 352 288S337.67 256 320 256z" />
+    <glyph glyph-name="dice-one"
+      unicode="&#xF525;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM224 160C206.33 160 192 174.33 192 192S206.33 224 224 224S256 209.67 256 192S241.67 160 224 160z" />
+    <glyph glyph-name="dice-six"
+      unicode="&#xF526;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM128 64C110.33 64 96 78.33 96 96S110.33 128 128 128S160 113.67 160 96S145.67 64 128 64zM128 160C110.33 160 96 174.33 96 192S110.33 224 128 224S160 209.67 160 192S145.67 160 128 160zM128 256C110.33 256 96 270.3300000000001 96 288S110.33 320 128 320S160 305.67 160 288S145.67 256 128 256zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64zM320 160C302.33 160 288 174.33 288 192S302.33 224 320 224S352 209.67 352 192S337.67 160 320 160zM320 256C302.33 256 288 270.3300000000001 288 288S302.33 320 320 320S352 305.67 352 288S337.67 256 320 256z" />
+    <glyph glyph-name="dice-three"
+      unicode="&#xF527;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM128 256C110.33 256 96 270.3300000000001 96 288S110.33 320 128 320S160 305.67 160 288S145.67 256 128 256zM224 160C206.33 160 192 174.33 192 192S206.33 224 224 224S256 209.67 256 192S241.67 160 224 160zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64z" />
+    <glyph glyph-name="dice-two"
+      unicode="&#xF528;"
+      horiz-adv-x="448" d=" M384 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H384C419.35 -32 448 -3.35 448 32V352C448 387.35 419.35 416 384 416zM128 256C110.33 256 96 270.3300000000001 96 288S110.33 320 128 320S160 305.67 160 288S145.67 256 128 256zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64z" />
+    <glyph glyph-name="dice"
+      unicode="&#xF522;"
+      horiz-adv-x="640" d=" M592 256H473.26C485.95 226.41 480.38 190.8 456.26 166.68L320 30.42V-16C320 -42.51 341.49 -64 368 -64H592C618.51 -64 640 -42.51 640 -16V208C640 234.51 618.51 256 592 256zM480 72C466.75 72 456 82.75 456 96C456 109.26 466.75 120 480 120S504 109.26 504 96C504 82.75 493.25 72 480 72zM433.63 258.7L258.7 433.63C239.54 452.79 208.47 452.79 189.31 433.63L14.37 258.7C-4.79 239.54 -4.79 208.47 14.37 189.31L189.3 14.37C208.46 -4.79 239.53 -4.79 258.69 14.37L433.63 189.3C452.79 208.47 452.79 239.54 433.63 258.7000000000001zM96 200C82.75 200 72 210.75 72 224C72 237.26 82.75 248 96 248S120 237.26 120 224C120 210.75 109.25 200 96 200zM224 72C210.75 72 200 82.75 200 96C200 109.26 210.75 120 224 120S248 109.26 248 96C248 82.75 237.25 72 224 72zM224 200C210.75 200 200 210.75 200 224C200 237.26 210.75 248 224 248S248 237.26 248 224C248 210.75 237.25 200 224 200zM224 328C210.75 328 200 338.75 200 352C200 365.26 210.75 376 224 376S248 365.26 248 352C248 338.75 237.25 328 224 328zM352 200C338.75 200 328 210.75 328 224C328 237.26 338.75 248 352 248S376 237.26 376 224C376 210.75 365.25 200 352 200z" />
+    <glyph glyph-name="digital-tachograph"
+      unicode="&#xF566;"
+      horiz-adv-x="640" d=" M608 352H32C14.33 352 0 337.67 0 320V64C0 46.33 14.33 32 32 32H608C625.67 32 640 46.33 640 64V320C640 337.67 625.67 352 608 352zM304 96C304 91.58 300.42 88 296 88H72C67.58 88 64 91.58 64 96V104C64 108.42 67.58 112 72 112H296C300.42 112 304 108.42 304 104V96zM72 160V176C72 180.42 75.58 184 80 184H96C100.42 184 104 180.42 104 176V160C104 155.58 100.42 152 96 152H80C75.58 152 72 155.58 72 160zM136 160V176C136 180.42 139.58 184 144 184H160C164.42 184 168 180.42 168 176V160C168 155.58 164.42 152 160 152H144C139.58 152 136 155.58 136 160zM200 160V176C200 180.42 203.58 184 208 184H224C228.42 184 232 180.42 232 176V160C232 155.58 228.42 152 224 152H208C203.58 152 200 155.58 200 160zM264 160V176C264 180.42 267.58 184 272 184H288C292.42 184 296 180.42 296 176V160C296 155.58 292.42 152 288 152H272C267.58 152 264 155.58 264 160zM304 224C304 215.16 296.84 208 288 208H80C71.16 208 64 215.16 64 224V272C64 280.8400000000001 71.16 288 80 288H288C296.84 288 304 280.8400000000001 304 272V224zM576 96C576 91.58 572.42 88 568 88H344C339.58 88 336 91.58 336 96V104C336 108.42 339.58 112 344 112H568C572.42 112 576 108.42 576 104V96z" />
+    <glyph glyph-name="diploma"
+      unicode="&#xF5EA;"
+      horiz-adv-x="640" d=" M384 179.33V320H256V179.3300000000001L160.84 15.33C157.79 7.84 163.49 -0.3 171.57 0.01L208.21 1e-13L233.42 -28.5199999999999C238.98 -34.3899999999999 248.75 -32.5599999999999 251.81 -25.0699999999999L320 96L388.2 -25.07C391.25 -32.56 401.03 -34.39 406.59 -28.52L431.79 0L468.4299999999999 0.01C476.5099999999999 -0.3 482.2099999999999 7.84 479.16 15.33L384 179.33zM224 187.94V332.06C214.36 334.51 204.79 337.25 195.35 340.43L68.39 383.2200000000001C53.36 386.32 38.14 379.95 31.36 368.45C-10.45 297.51 -10.45 150.5 31.36 79.56C38.14 68.06 53.37 61.68 68.39 64.79L172.99 100.03L224 187.94zM608.64 368.44C601.86 379.94 586.63 386.32 571.61 383.21L444.6500000000001 340.43C435.2100000000001 337.25 425.6400000000001 334.5 416.0000000000001 332.06V187.94L467.01 100.02L571.61 64.78C586.64 61.68 601.86 68.05 608.64 79.55C650.45 150.49 650.45 297.5 608.64 368.44z" />
+    <glyph glyph-name="directions"
+      unicode="&#xF5EB;"
+      horiz-adv-x="512" d=" M502.61 214.68L278.68 438.61C266.1600000000001 451.13 245.85 451.13 233.32 438.61L9.39 214.68C-3.13 202.15 -3.13 181.85 9.39 169.32L233.32 -54.61C245.84 -67.14 266.15 -67.14 278.68 -54.61L502.61 169.32C515.13 181.85 515.13 202.15 502.61 214.68zM401.63 202.12L317.42 124.39C312.3 119.66 303.99 123.29 303.99 130.27V184H207.99V120C207.99 115.58 204.41 112 199.99 112H167.99C163.57 112 159.99 115.58 159.99 120V200C159.99 217.67 174.32 232 191.99 232H303.99V285.73C303.99 292.7 312.29 296.34 317.42 291.61L401.63 213.88C405.06 210.71 405.06 205.29 401.63 202.12z" />
+    <glyph glyph-name="divide"
+      unicode="&#xF529;"
+      horiz-adv-x="448" d=" M224 96C188.65 96 160 67.35 160 32S188.65 -32 224 -32S288 -3.35 288 32S259.35 96 224 96zM224 288C259.35 288 288 316.65 288 352S259.35 416 224 416S160 387.35 160 352S188.65 288 224 288zM416 240H32C14.33 240 0 225.67 0 208V176C0 158.33 14.33 144 32 144H416C433.67 144 448 158.33 448 176V208C448 225.67 433.67 240 416 240z" />
+    <glyph glyph-name="dizzy"
+      unicode="&#xF567;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM152 233.4L123.3 204.7C108.5 189.9 85.5 212.2 100.7 227.3L129.4 256L100.7 284.7C85.7 299.7 108.4 322.3 123.3 307.3L152 278.6L180.7 307.3C195.7 322.3 218.3 299.6 203.3 284.7L174.6 256L203.3 227.3C218.5 212.1 195.4 189.9 180.7 204.7L152 233.4zM248 32C212.7 32 184 60.7 184 96S212.7 160 248 160S312 131.3 312 96S283.3 32 248 32zM395.3 227.3C410.5 212.1 387.4000000000001 189.9 372.7 204.7L344 233.4L315.3 204.7C300.5 189.9 277.5 212.2 292.7 227.3L321.4 256L292.7 284.7C277.7 299.7 300.4 322.3 315.3 307.3L344 278.6L372.7 307.3C387.7 322.3 410.3 299.6 395.3 284.7L366.6 256L395.3 227.3z" />
+    <glyph glyph-name="dna"
+      unicode="&#xF471;"
+      horiz-adv-x="448" d=" M0.1 -46.1C-1 -55.6 6.4 -63.9 16 -63.9L48.3 -64C56.4 -64 63.2 -58.1 64.3 -50.1C65 -45.2 66.1 -39 67.7 -32H380C381.6 -38.9 382.9 -45.2 383.5 -50.1C384.6 -58.1 391.4 -64.1 399.5 -64L431.8 -63.9C441.4000000000001 -63.9 448.9000000000001 -55.6 447.7 -46.1C443.1 -8.2 422.1 82.9 328.8 161.6C311.2 149.2000000000001 291.7 137.4 270.3 126.2000000000001C276.5 121.6 281.7 116.8000000000001 287.3 112.0000000000001H159.7C181 130.1000000000001 206.7 147.6000000000001 238.4 163.4C410.5 248.9 442.1 382.2 447.9 430.1C449 439.6 441.6 447.9 432 447.9L399.6 448C391.5 448 384.7000000000001 442.1 383.6 434.1C382.9000000000001 429.2 381.8 423 380.2000000000001 416H67.8C66.2 423 65.1 429.1 64.4 434.1C63.3 442.1 56.5 448.1 48.4 448L16.1 447.9C6.5 447.9 -1 439.6 0.1 430.1C5.3 387.2 31.4 276.2 160 192C31.5 107.8 5.3 -3.2 0.1 -46.1zM224 228.4C198.9 242.1 177.6 256.8 159.7 272H288.2C270.4 256.8 249.1 242 224 228.4zM355.1 352C349.3 341.6 342.3 330.9 334.1 320H114C105.7 330.9 98.7 341.6 93 352H355.1zM92.9 32C98.7 42.4 105.7 53.1 113.9 64H333.3C341.6 53.1 348.7 42.4 354.5 32H92.9z" />
+    <glyph glyph-name="do-not-enter"
+      unicode="&#xF5EC;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM424 144H72C63.16 144 56 151.16 56 160V224C56 232.84 63.16 240 72 240H424C432.84 240 440 232.84 440 224V160C440 151.16 432.84 144 424 144z" />
+    <glyph glyph-name="dog-leashed"
+      unicode="&#xF6D4;"
+      horiz-adv-x="512" d=" M13.19 441.82L3.37 429.2C-2.06 422.23 -0.8 412.17 6.17 406.75L207.54 256H256V279.92L35.64 444.63C28.67 450.05 18.62 448.8 13.19 441.82zM64 256C64 273.67 49.67 288 32 288S0 273.67 0 256C0 214.34 26.83 179.15 64 165.9V-48C64 -56.84 71.16 -64 80 -64H144C152.84 -64 160 -56.84 160 -48V64H256V224H96C78.36 224 64 238.36 64 256zM288 64H320V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V170.45L288 216.16V64zM496 352H432L424.84 366.31A32 32 0 0 1 396.2200000000001 384H342.6L315.3200000000001 411.28C305.23 421.36 288 414.2200000000001 288 399.9700000000001V250.13L416 204.42V240H448C483.35 240 512 268.65 512 304V336C512 344.8400000000001 504.84 352 496 352zM384 304C375.1600000000001 304 368 311.16 368 320S375.1600000000001 336 384 336S400 328.8400000000001 400 320S392.84 304 384 304z" />
+    <glyph glyph-name="dog"
+      unicode="&#xF6D3;"
+      horiz-adv-x="512" d=" M496 352H432L424.84 366.31A32 32 0 0 1 396.2200000000001 384H342.6L315.3200000000001 411.28C305.23 421.36 288 414.2200000000001 288 399.9700000000001V250.13L416 204.42V240H448C483.35 240 512 268.65 512 304V336C512 344.8400000000001 504.84 352 496 352zM384 304C375.1600000000001 304 368 311.16 368 320S375.1600000000001 336 384 336S400 328.8400000000001 400 320S392.84 304 384 304zM96 224C78.36 224 64 238.36 64 256C64 273.67 49.67 288 32 288S0 273.67 0 256C0 214.34 26.83 179.15 64 165.9V-48C64 -56.84 71.16 -64 80 -64H144C152.84 -64 160 -56.84 160 -48V64H320V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V170.45L266.05 224H96z" />
+    <glyph glyph-name="dollar-sign"
+      unicode="&#xF155;"
+      horiz-adv-x="288" d=" M209.2 214.6L101.2 246.2C88.7 249.8 80 261.5 80 274.5C80 290.8 93.2 304 109.5 304H175.8C188 304 200 300.3 210 293.5C216.1 289.4 224.3 290.4 229.5 295.5L264.3 329.5C271.4000000000001 336.4 270.4000000000001 347.9 262.5 354C238 373.2 207.4 383.9 176 384V432C176 440.8 168.8 448 160 448H128C119.2 448 112 440.8 112 432V384H109.5C45.8 384 -5.4 329.3 0.5 264.4C4.7 218.3 39.9 180.8 84.3 167.8L186.8 137.8C199.3 134.1 208 122.5 208 109.5C208 93.2 194.8 80 178.5 80H112.2C100 80 88 83.7 78 90.5C71.9 94.6 63.7 93.6 58.5 88.5L23.7 54.5C16.6 47.6 17.6 36.1 25.5 30C50 10.8 80.6 0.1 112 0V-48C112 -56.8 119.2 -64 128 -64H160C168.8 -64 176 -56.8 176 -48V0.2C222.6 1.1 266.3 28.8 281.7 72.9C303.2 134.5 267.1 197.7 209.2 214.6z" />
+    <glyph glyph-name="dolly-empty"
+      unicode="&#xF473;"
+      horiz-adv-x="576" d=" M575.2 121.6L565 152C562.2 160.4 553.1 164.9 544.8 162.1L331.3 90.9C314.1 112.9 287.7 127.3 257.8 127.9L158.4 426.1C154 439.2 141.8 448 128 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H104.9L197.1 107.3C171 86.9 155.4 53.7 161.1 16.8C167.2 -22.6 199 -55.5 238.4000000000001 -62.4C298.6 -73.1 350.7000000000001 -27.6 351.8000000000001 30.2L565 101.4C573.4 104.2 578 113.2 575.2 121.6zM256 -16C229.5 -16 208 5.5 208 32S229.5 80 256 80S304 58.5 304 32S282.5 -16 256 -16z" />
+    <glyph glyph-name="dolly-flatbed-alt"
+      unicode="&#xF475;"
+      horiz-adv-x="640" d=" M624 64H128V432C128 440.8 120.8 448 112 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H64V16C64 7.2 71.2 0 80 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V48C640 56.8 632.8 64 624 64zM208 128H368C376.8 128 384 135.2 384 144V400C384 408.8 376.8 416 368 416H208C199.2 416 192 408.8 192 400V144C192 135.2 199.2 128 208 128zM432 288H528C536.8 288 544 295.2 544 304V400C544 408.8 536.8 416 528 416H432C423.2 416 416 408.8 416 400V304C416 295.2 423.2 288 432 288zM432 128H592C600.8 128 608 135.2 608 144V240C608 248.8 600.8 256 592 256H432C423.2 256 416 248.8 416 240V144C416 135.2 423.2 128 432 128z" />
+    <glyph glyph-name="dolly-flatbed-empty"
+      unicode="&#xF476;"
+      horiz-adv-x="640" d=" M624 64H128V432C128 440.8 120.8 448 112 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H64V16C64 7.2 71.2 0 80 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V48C640 56.8 632.8 64 624 64z" />
+    <glyph glyph-name="dolly-flatbed"
+      unicode="&#xF474;"
+      horiz-adv-x="640" d=" M208 128H592C600.8 128 608 135.2 608 144V400C608 408.8 600.8 416 592 416H448V288L400 320L352 288V416H208C199.2 416 192 408.8 192 400V144C192 135.2 199.2 128 208 128zM624 64H128V432C128 440.8 120.8 448 112 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H64V16C64 7.2 71.2 0 80 0H162.9C161.1 -5 160 -10.4 160 -16C160 -42.5 181.5 -64 208 -64S256 -42.5 256 -16C256 -10.4 254.8 -5 253.1 0H451C449.2 -5 448.1 -10.4 448.1 -16C448.1 -42.5 469.6 -64 496.1 -64S544.1 -42.5 544.1 -16C544.1 -10.4 542.9 -5 541.2 0H624C632.8 0 640 7.2 640 16V48C640 56.8 632.8 64 624 64z" />
+    <glyph glyph-name="dolly"
+      unicode="&#xF472;"
+      horiz-adv-x="576" d=" M294.2 170.3C312.2 165.3 328.9 156.9 343.7 145.6L505.2 199.4C513.6 202.2000000000001 518.1 211.3000000000001 515.3 219.6L454.9 400.8C452.1 409.2 443 413.7 434.7 410.9L373.6 390.5L406.7 291.1L346 271L312.9 370.4L251.3 349.9C242.9 347.1 238.4 338 241.2 329.7L294.2 170.3zM575.2 121.6L565 152C562.2 160.4 553.1 164.9 544.8 162.1L331.3 90.9C314.1 112.9 287.7 127.3 257.8 127.9L158.4 426.1C154 439.2 141.8 448 128 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H104.9L197.1 107.3C171 86.9 155.4 53.7 161.1 16.8C167.2 -22.6 199 -55.5 238.4000000000001 -62.4C298.6 -73.1 350.7000000000001 -27.6 351.8000000000001 30.2L565.1000000000001 101.4C573.4000000000001 104.2000000000001 578.0000000000001 113.2000000000001 575.2000000000002 121.6zM256 -16C229.5 -16 208 5.5 208 32S229.5 80 256 80S304 58.5 304 32S282.5 -16 256 -16z" />
+    <glyph glyph-name="donate"
+      unicode="&#xF4B9;"
+      horiz-adv-x="512" d=" M256 32C370.9 32 464 125.1 464 240S370.9 448 256 448S48 354.9 48 240S141.1 32 256 32zM233.8 350.6V367.4C233.8 376.6 241.2 384 250.4 384H261.5C270.7 384 278.1 376.6 278.1 367.4V350.4C293.6 349.6 308.6 344.3 321.1 335C326.7000000000001 330.9 327.3 322.7 322.3 317.9L306 302.4C302.2 298.7000000000001 296.5 298.6 292 301.4C286.6 304.8 280.6 306.5 274.2 306.5H235.3C226.3 306.5 219 298.3 219 288.2C219 280 224 272.7 231.1 270.6L293.4 251.9C319.1 244.2 337.1 219.5 337.1 191.8C337.1 157.8 310.7 130.3 278 129.4V112.6C278 103.4 270.6 96 261.3999999999999 96H250.3C241.1 96 233.7 103.4 233.7 112.6V129.6C218.1999999999999 130.4 203.1999999999999 135.7000000000001 190.6999999999999 145C185.0999999999999 149.1 184.5 157.3 189.5 162.1L205.8 177.6C209.6 181.3 215.3 181.4 219.8 178.6C225.2 175.2000000000001 231.2 173.5 237.6 173.5H276.5C285.5 173.5 292.8 181.7 292.8 191.8C292.8 200 287.8 207.3 280.7 209.4L218.3999999999999 228.1C192.6999999999999 235.8 174.6999999999999 260.5 174.6999999999999 288.2C174.7999999999999 322.2 201.0999999999999 349.7 233.8 350.6zM480 96H447.5C427.9 70 402.9 48.3 374.5 32H438.3C443.6 32 447.9000000000001 28.4 447.9000000000001 24V8C447.9000000000001 3.6 443.6 0 438.3 0H73.6C68.3 0 64 3.6 64 8V24C64 28.4 68.3 32 73.6 32H137.4C109 48.3 84.1 70 64.4 96H32C14.3 96 0 81.7 0 64V-32C0 -49.7 14.3 -64 32 -64H480C497.7 -64 512 -49.7 512 -32V64C512 81.7 497.7 96 480 96z" />
+    <glyph glyph-name="door-closed"
+      unicode="&#xF52A;"
+      horiz-adv-x="640" d=" M624 0H512V397.2C512 425.2200000000001 490.47 448 464 448H175.99C149.52 448 127.99 425.2200000000001 127.99 397.2V0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM415.99 160C398.32 160 383.99 174.33 383.99 192S398.32 224 415.99 224S447.99 209.67 447.99 192C448 174.33 433.67 160 415.99 160z" />
+    <glyph glyph-name="door-open"
+      unicode="&#xF52B;"
+      horiz-adv-x="640" d=" M624 0H544V334.55C544 361.81 522.47 384 496 384H384V320H480V-64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM312.24 446.99L120.24 397.25C105.99 393.56 96 380.3 96 365.08V0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H352V414.82C352 436.4 332.44 452.23 312.24 446.99zM264 160C250.75 160 240 174.33 240 192S250.75 224 264 224S288 209.67 288 192S277.25 160 264 160z" />
+    <glyph glyph-name="dot-circle"
+      unicode="&#xF192;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM336 192C336 147.888 300.112 112 256 112S176 147.888 176 192S211.888 272 256 272S336 236.112 336 192z" />
+    <glyph glyph-name="dove"
+      unicode="&#xF4BA;"
+      horiz-adv-x="512" d=" M288 280.8V308.9C259.8 345.2 240.9 388.2 233.9 434.1C231.8 447.6 214.9 452.9 206.1 442.4000000000001C185 417.5 168.4 388.3 157.2 355.9C191.4 317.6 237.2 291.3 288 280.8zM400 384C355.8 384 320 348.1 320 303.9V244.5C215.6 250.7 127 315 87 406.2C81.5 418.7 63.8 419.4 58 407.1C41.4 372 32 332.8 32 291.4C32 220.6 66.1 154.5 117.1 105.5C130.3 92.8 143.2 82.3 156 72.7L12.1 36.7C1.4 34 -3.4 21.6 2.6 12.3C20 -14.6 63 -60.2 155.8 -64C163.8 -64.2999999999999 171.8 -61.4 177.9 -56.1L243.1 0H320C408.4 0 480 71.5 480 159.9V320L512 384H400zM400 287.9C391.2 287.9 384 295.1 384 303.9S391.2 319.9 400 319.9S416 312.7000000000001 416 303.9S408.8 287.9 400 287.9z" />
+    <glyph glyph-name="download"
+      unicode="&#xF019;"
+      horiz-adv-x="512" d=" M216 448H296C309.3 448 320 437.3 320 424V256H407.7C425.5 256 434.4 234.5 421.8 221.9L269.7 69.7C262.2 62.2 249.9 62.2 242.4 69.7L90.1 221.9C77.5 234.5 86.4 256 104.2 256H192V424C192 437.3 202.7 448 216 448zM512 72V-40C512 -53.3 501.3 -64 488 -64H24C10.7 -64 0 -53.3 0 -40V72C0 85.3 10.7 96 24 96H170.7L219.7 47C239.8 26.9 272.2 26.9 292.3 47L341.3 96H488C501.3 96 512 85.3 512 72zM388 -16C388 -5 379 4 368 4S348 -5 348 -16S357 -36 368 -36S388 -27 388 -16zM452 -16C452 -5 443 4 432 4S412 -5 412 -16S421 -36 432 -36S452 -27 452 -16z" />
+    <glyph glyph-name="drafting-compass"
+      unicode="&#xF568;"
+      horiz-adv-x="512" d=" M457.01 103.58C431.96 83.25 404.38 66.4 374.47 54.53L428.85 -39.66L482.8 -62.7C492.61 -66.8900000000001 503.6899999999999 -60.4900000000001 504.97 -49.9L511.99 8.35L457.0099999999999 103.58zM499.5 198.14C504.36 205.81 501.39 216.13 493.45 220.53L465.38 236.1C457.9 240.25 448.77 237.56 444.12 230.38C403.01 166.85 332.25 128 256 128C232.07 128 208.77 132.25 186.59 139.53L253.95 256.21C254.65 256.19 255.29 256 255.99 256S257.34 256.19 258.03 256.21L309.12 167.71C340.35 176.67 368.68 193.46 391.73 216.63L339.94 306.34C347.39 319.9700000000001 352 335.37 352 352C352 405.02 309.02 448 256 448S160 405.02 160 352C160 335.37 164.61 319.9700000000001 172.05 306.3400000000001L103.75 188.03C91.2 199.64 79.79 212.62 70.07 227.03C65.28 234.13 56.1 236.65 48.69 232.36L20.94 216.29C13.09 211.75 10.31 201.39 15.3 193.82C30.87 170.18 49.99 149.61 71.28 131.8L0 8.34L7.02 -49.91C8.3 -60.5 19.38 -66.9 29.19 -62.71L83.14 -39.67L153.94 82.96C186.13 70.72 220.62 64 256 64C355.05 64 446.88 115.01 499.5 198.14zM256 384C273.67 384 288 369.67 288 352S273.67 320 256 320S224 334.33 224 352S238.33 384 256 384z" />
+    <glyph glyph-name="dragon"
+      unicode="&#xF6D5;"
+      horiz-adv-x="640" d=" M18.32 192.22L192 224.04L100.72 155.35C90.64 145.2700000000001 97.78 128.04 112.03 128.04H334.73C325.29 154.44 320 182.51 320 211.42V253.6900000000001L200.27 341.29C176.45 357.17 144.98 355.3 123.21 336.7000000000001L5.81 220.36C-6.57 210.03 2.36 189.94 18.32 192.22zM575.19 158.12L474.5300000000001 208.43A47.992 47.992 0 0 0 448 251.35V288.04H512L540.09 265.41C546.09 259.41 554.23 256.04 562.72 256.04H593.69A32 32 0 0 1 622.3100000000001 273.73L636.62 302.35A32.005 32.005 0 0 1 633.6 335.86L559.07 435.24C553.02 443.3 543.54 448 533.47 448H296.02C288.89 448 285.32 439.43 290.36 434.39L352 384.04L292.42 359.2C286.5200000000001 356.25 286.5200000000001 347.8400000000001 292.42 344.89L352 320.04V211.42C352 139.34 388.03 72.03 448 32.04C252.41 25.23 103.44 -8.97 13.9 -28.87C5.78 -30.67 0 -37.88 0 -46.2C0 -56 7.95 -64 17.76 -64H516.84C580.13 -64.01 636.45 -16.44 639.83 46.76C642.35 94.04 617.1 137.16 575.19 158.12zM489.18 381.75L534.83 370.3400000000001C532.08 359.43 522.36 351.45 510.7 352.08C497.7400000000001 352.79 484.85 364.61 489.1800000000001 381.75z" />
+    <glyph glyph-name="draw-circle"
+      unicode="&#xF5ED;"
+      horiz-adv-x="512" d=" M512 192C512 218.93 495.33 241.88 471.77 251.32C450.89 327.16 391.16 386.88 315.32 407.77C305.88 431.32 282.93 448 256 448S206.12 431.32 196.68 407.77C120.84 386.89 61.11 327.16 40.23 251.32C16.67 241.88 0 218.93 0 192S16.67 142.12 40.23 132.68C61.11 56.84 120.84 -2.88 196.68 -23.77C206.12 -47.33 229.07 -64 256 -64S305.88 -47.33 315.32 -23.77C391.16 -2.89 450.88 56.84 471.77 132.68C495.33 142.12 512 165.07 512 192zM448 208C456.82 208 464 200.82 464 192S456.82 176 448 176S432 183.18 432 192S439.18 208 448 208zM272 384C272 375.18 264.82 368 256 368S240 375.18 240 384S247.18 400 256 400S272 392.82 272 384zM64 176C55.18 176 48 183.18 48 192S55.18 208 64 208S80 200.82 80 192S72.82 176 64 176zM240 0C240 8.82 247.18 16 256 16S272 8.82 272 0S264.82 -16 256 -16S240 -8.82 240 0zM305.15 40.53C293.4100000000001 54.75 275.88 64 256 64S218.59 54.75 206.85 40.53A159.62 159.62 0 0 0 104.53 142.85C118.75 154.59 128 172.12 128 192S118.75 229.42 104.53 241.15A159.62 159.62 0 0 0 206.85 343.4700000000001C218.59 329.25 236.12 320 256 320S293.41 329.25 305.15 343.4700000000001A159.62 159.62 0 0 0 407.47 241.15C393.25 229.42 384 211.88 384 192S393.25 154.59 407.4700000000001 142.85A159.598 159.598 0 0 0 305.1500000000001 40.53z" />
+    <glyph glyph-name="draw-polygon"
+      unicode="&#xF5EE;"
+      horiz-adv-x="448" d=" M384 96C383.65 96 383.33 95.9 382.98 95.9L343.7800000000001 161.22C348.85 170.39 352.0000000000001 180.78 352.0000000000001 192S348.8600000000001 213.61 343.7800000000001 222.78L382.98 288.1C383.3300000000001 288.0900000000001 383.6500000000001 288 384 288C419.35 288 448 316.65 448 352S419.35 416 384 416C360.37 416 339.96 403.05 328.88 384H119.12C108.04 403.05 87.63 416 64 416C28.65 416 0 387.35 0 352C0 328.37 12.95 307.9600000000001 32 296.88V87.13C12.95 76.04 0 55.63 0 32C0 -3.35 28.65 -32 64 -32C87.63 -32 108.04 -19.05 119.12 0H328.87C339.96 -19.05 360.36 -32 383.99 -32C419.3400000000001 -32 447.99 -3.35 447.99 32C448 67.35 419.35 96 384 96zM96 87.12V296.88A63.824999999999996 63.824999999999996 0 0 1 119.12 320H327.48L289.0200000000001 255.9C288.67 255.91 288.35 256 288.0000000000001 256C252.6500000000001 256 224.0000000000001 227.35 224.0000000000001 192S252.6500000000001 128 288.0000000000001 128C288.3500000000001 128 288.6700000000001 128.1 289.0200000000001 128.1L327.48 64H119.12A63.748000000000005 63.748000000000005 0 0 1 96 87.12zM272 192C272 200.82 279.18 208 288 208S304 200.82 304 192S296.82 176 288 176S272 183.18 272 192zM400 352C400 343.18 392.82 336 384 336S368 343.18 368 352S375.18 368 384 368S400 360.82 400 352zM64 368C72.82 368 80 360.82 80 352S72.82 336 64 336S48 343.18 48 352S55.18 368 64 368zM48 32C48 40.82 55.18 48 64 48S80 40.82 80 32S72.82 16 64 16S48 23.18 48 32zM384 16C375.18 16 368 23.18 368 32S375.18 48 384 48S400 40.82 400 32S392.82 16 384 16z" />
+    <glyph glyph-name="draw-square"
+      unicode="&#xF5EF;"
+      horiz-adv-x="448" d=" M416 87.12V296.88C435.05 307.9700000000001 448 328.37 448 352C448 387.35 419.35 416 384 416C360.37 416 339.96 403.05 328.88 384H119.12C108.04 403.05 87.63 416 64 416C28.65 416 0 387.35 0 352C0 328.37 12.95 307.9600000000001 32 296.88V87.13C12.95 76.04 0 55.63 0 32C0 -3.35 28.65 -32 64 -32C87.63 -32 108.04 -19.05 119.12 0H328.87C339.96 -19.05 360.36 -32 383.99 -32C419.3400000000001 -32 447.99 -3.35 447.99 32C448 55.63 435.05 76.04 416 87.12zM96 87.12V296.88A63.824999999999996 63.824999999999996 0 0 1 119.12 320H328.87A63.824999999999996 63.824999999999996 0 0 1 351.99 296.88V87.13A63.824999999999996 63.824999999999996 0 0 1 328.87 64.01H119.12A63.798 63.798 0 0 1 96 87.12zM400 352C400 343.18 392.82 336 384 336S368 343.18 368 352S375.18 368 384 368S400 360.82 400 352zM64 368C72.82 368 80 360.82 80 352S72.82 336 64 336S48 343.18 48 352S55.18 368 64 368zM48 32C48 40.82 55.18 48 64 48S80 40.82 80 32S72.82 16 64 16S48 23.18 48 32zM384 16C375.18 16 368 23.18 368 32S375.18 48 384 48S400 40.82 400 32S392.82 16 384 16z" />
+    <glyph glyph-name="dreidel"
+      unicode="&#xF792;"
+      horiz-adv-x="448" d=" M19.6 224C7 211.5 0 194.5 0 176.7V34.9C0 -2.1 29.9 -32 66.9 -32H208.7C226.4 -32 243.4000000000001 -25 256 -12.4L314.9 46.5L78.5 282.9L19.6 224zM443.3 388.7L420.7 411.3C414.5 417.5 404.3 417.5 398.1 411.3L289.1 302.3L217.2 374.2000000000001C204.1 387.3 183 387.3 169.9 374.2000000000001L101.2 305.5L337.6 69.1L406.3 137.8C419.4 150.9 419.4 172 406.3 185.1L334.3 257L443.3 366C449.6 372.3 449.6 382.4000000000001 443.3 388.7000000000001z" />
+    <glyph glyph-name="drum-steelpan"
+      unicode="&#xF56A;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 358.69 0 288V96C0 25.31 128.94 -32 288 -32S576 25.31 576 96V288C576 358.69 447.06 416 288 416zM205.01 257.64C200.56 241.03 190.47 227.07 176.7 217.16C100.23 230.54 48 257.2200000000001 48 288C48 318.16 98.11 344.39 172.04 358.03L197.64 313.69C207.5 296.6 210.12 276.7 205.01 257.64zM288 208C266.92 208 246.59 209 227.11 210.7C235.17 236.83 259.26 256 288 256S340.83 236.83 348.89 210.7C329.4100000000001 209 309.08 208 288 208zM352 352C352 316.7100000000001 323.29 288 288 288S224 316.7100000000001 224 352V365.04C244.4 366.92 265.8 368 288 368S331.6 366.92 352 365.04V352zM398.93 217.1C385.12 227.01 374.99 241 370.5300000000001 257.64C365.42 276.7 368.04 296.6 377.9100000000001 313.68L403.56 358.1C477.72 344.5 528 318.2100000000001 528 288C528 257.17 475.6 230.46 398.93 217.1z" />
+    <glyph glyph-name="drum"
+      unicode="&#xF569;"
+      horiz-adv-x="576" d=" M458.08 327.12L560.47 388.55C575.63 397.64 580.53 417.3 571.44 432.46C562.34 447.61 542.7 452.53 527.53 443.43L366.84 347.02A629.3200000000002 629.3200000000002 0 0 1 288 352C128.94 352 0 294.69 0 224V63.17C0 32.71 24.03 4.77 64 -17.2V79.17C64 96.77 78.4 111.17 96 111.17S128 96.77 128 79.17V-43.24C165.4 -54.37 209 -61.68 256 -63.99V47.16C256 64.7600000000001 270.4 79.16 288 79.16S320 64.7600000000001 320 47.16V-64C367 -61.69 410.6 -54.38 448 -43.25V79.16C448 96.7600000000001 462.4 111.16 480 111.16S512 96.7600000000001 512 79.16V-17.21C551.97 4.76 576 32.7 576 63.16V223.99C575.99 266.37 529.46 303.8300000000001 458.08 327.12zM288 144C155.45 144 48 179.82 48 224S155.45 304 288 304C290.34 304 292.62 303.9 294.94 303.88L207.53 251.44C192.37 242.35 187.47 222.69 196.56 207.53C206.12 191.6 226.07 187.92 240.47 196.56L403.18 294.18C477.55 280.5900000000001 528 254.26 528 223.99C528 179.81 420.54 144 288 144z" />
+    <glyph glyph-name="drumstick-bite"
+      unicode="&#xF6D7;"
+      horiz-adv-x="512" d=" M462.79 398.43C396.6500000000001 464.52 289.43 464.52 223.29 398.43C187.81 362.98 160.12 320 160.12 256V170.17L119.5 129.5800000000001C109.8 119.8900000000001 95.46 118.5100000000001 82.72 123.6C61 132.28 35.3 127.8900000000001 17.7 110.31C-5.91 86.72 -5.91 48.47 17.7 24.88C32.98 9.61 54.23 5.3 73.84 9.79C69.34 -9.81 73.66 -31.04 88.94 -46.31C112.55 -69.9 150.82 -69.9 174.43 -46.31C192.03 -28.73 196.42 -3.05 187.74 18.66C182.65 31.39 184.02 45.71 193.73 55.41L234.35 96H320.24C343.44 96 363.81 99.72 382.13 106.03C342.49 149.92 342.3 216.26 383.18 257.1C417.56 291.46 469.94 296.56 511.92 273.9C513.22 318.83 497.11 364.15 462.79 398.43z" />
+    <glyph glyph-name="drumstick"
+      unicode="&#xF6D6;"
+      horiz-adv-x="512" d=" M462.43 398.43C396.3400000000001 464.52 289.2000000000001 464.52 223.12 398.43C187.66 362.98 160 320 160 256V170.17L119.41 129.5800000000001C109.71 119.8900000000001 95.39 118.5100000000001 82.66 123.6C60.95 132.28 35.28 127.8900000000001 17.7 110.31C-5.89 86.72 -5.89 48.47 17.7 24.88C32.97 9.61 54.2 5.3 73.8 9.79C69.31 -9.81 73.62 -31.04 88.89 -46.31C112.48 -69.9 150.73 -69.9 174.32 -46.31C191.9 -28.73 196.29 -3.05 187.61 18.66C182.52 31.39 183.9 45.71 193.59 55.41L234.17 96H320C384 96 426.98 123.66 462.44 159.12C528.52 225.21 528.52 332.35 462.43 398.43z" />
+    <glyph glyph-name="duck"
+      unicode="&#xF6D8;"
+      horiz-adv-x="512" d=" M416 224C469.02 224 512 266.98 512 320H448C448 373.02 405.02 416 352 416S256 373.02 256 320C256 296.85 264.37 275.85 278.1 259.41C284.35 251.93 288 242.63 288 232.88C288 210.3 269.7 192 247.12 192H225.43C193.92 192 145.25 205.2 123.75 228.24C113.73 238.97 96 231.83 96 217.37C96 132.67 164.67 64 249.37 64H217.37C141.36 64 78.7 119.44 66.55 192H16.15C7.03 192 -0.64 184.34 0.03 175.25C8.61 59.36 105.35 -32 223.42 -32H330.62C386.13 -32 441.43 12.52 447.3400000000001 67.71C451.8800000000001 110.14 432.5800000000001 148.11 401.3 170.57C390.45 178.36 384 190.84 384 204.2C384 211.32 385.9700000000001 218.03 389.33 223.99H416zM352 304C343.1600000000001 304 336 311.16 336 320S343.1600000000001 336 352 336S368 328.8400000000001 368 320S360.84 304 352 304z" />
+    <glyph glyph-name="dumbbell"
+      unicode="&#xF44B;"
+      horiz-adv-x="640" d=" M104 352H56C42.7 352 32 341.3 32 328V224H8C3.6 224 0 220.4 0 216V168C0 163.6 3.6 160 8 160H32V56C32 42.7 42.7 32 56 32H104C117.3 32 128 42.7 128 56V328C128 341.3 117.3 352 104 352zM632 224H608V328C608 341.3 597.3 352 584 352H536C522.7 352 512 341.3 512 328V56C512 42.7 522.7 32 536 32H584C597.3 32 608 42.7 608 56V160H632C636.4 160 640 163.6 640 168V216C640 220.4 636.4 224 632 224zM456 416H408C394.7 416 384 405.3 384 392V224H256V392C256 405.3 245.3 416 232 416H184C170.7 416 160 405.3 160 392V-8C160 -21.3 170.7 -32 184 -32H232C245.3 -32 256 -21.3 256 -8V160H384V-8C384 -21.3 394.7 -32 408 -32H456C469.3 -32 480 -21.3 480 -8V392C480 405.3 469.3 416 456 416z" />
+    <glyph glyph-name="dumpster-fire"
+      unicode="&#xF794;"
+      horiz-adv-x="640" d=" M418.7 343.9L418.9 344.1L404.5 416.1H304V288.1H364.8C381 307.4000000000001 399 326.3 418.7 343.9000000000001zM272 416H171.5L145.9 288H272V416zM461.3 343.9C479.5 327.6 496.8 310.2 512.4 292.4C518.1 298 523.8 303.5 529.6999999999999 308.7000000000001L550.9999999999999 327.7000000000001L572.2999999999998 308.7000000000001C573.3999999999999 307.8 574.3999999999999 306.6 575.3999999999999 305.6C575.2999999999998 306.4000000000001 575.5999999999999 307.1 575.3999999999999 307.9000000000001L551.3999999999999 403.9000000000001C549.7 411 543.3 416 536 416H437.1L449.4000000000001 354.5L461.3 343.9zM16 288H113.3L138.9 416H40C32.7 416 26.3 411 24.5 403.9L0.5 307.9C-2 297.8 5.6 288 16 288zM340.6 256H32L36 224H16C7.2 224 0 216.8 0 208V176C0 167.2 7.2 160 16 160H44L64 0V-16C64 -24.8 71.2 -32 80 -32H112C120.8 -32 128 -24.8 128 -16V0H336.8C306.6 33.7 288 77.9 288 126.4C288 162.3 307.9 209.3 340.6 256zM551.1 284.8C536.2 271.5 522.8000000000001 257.6 510.9 243.6C491.4 269.4000000000001 467.3 295.6 439.9000000000001 320C369.7000000000001 257.3 319.9000000000001 175.7000000000001 319.9000000000001 126.4C319.9000000000001 38.9 391.5 -32 479.9 -32S639.9000000000001 38.9 639.9000000000001 126.4C640.0000000000001 163 602.9000000000001 238.6 551.1000000000001 284.8zM532.5 55.4C517.8 44.7 499.6 38.4 480 38.4C431 38.4 391.1 71.9 391.1 126.4C391.1 153.5 407.6 177.4 440.5 218.3C445.2 212.7 507.6 130.2 507.6 130.2L547.4 177.2C550.1999999999999 172.4 552.8 167.7 555.1 163.2C573.7 126.5 565.9 79.6 532.5 55.4z" />
+    <glyph glyph-name="dumpster"
+      unicode="&#xF793;"
+      horiz-adv-x="576" d=" M560 288C570.4 288 578 297.8 575.5 307.9L551.5 403.9C549.7 411 543.3 416 536 416H437.1L462.7 288H560zM272 416H171.5L145.9 288H272V416zM404.5 416H304V288H430.1L404.5 416zM16 288H113.3L138.9 416H40C32.7 416 26.3 411 24.5 403.9L0.5 307.9C-2 297.8 5.6 288 16 288zM560 224H540L544 256H32L36 224H16C7.2 224 0 216.8 0 208V176C0 167.2 7.2 160 16 160H44L64 0V-16C64 -24.8 71.2 -32 80 -32H112C120.8 -32 128 -24.8 128 -16V0H448V-16C448 -24.8 455.2 -32 464 -32H496C504.8 -32 512 -24.8 512 -16V0L532 160H560C568.8 160 576 167.2 576 176V208C576 216.8 568.8 224 560 224z" />
+    <glyph glyph-name="dungeon"
+      unicode="&#xF6D9;"
+      horiz-adv-x="512" d=" M128.73 252.68L45.92 304.44C37.88 309.4600000000001 26.93 306.61 22.99 297.99A254.18999999999997 254.18999999999997 0 0 1 0.54 208.72C-0.05 199.63 7.59 192 16.69 192H113.82C121.78 192 127.9 198.25 128.83 206.16C129.92 215.49 132.07 224.49 135.07 233.1C137.63 240.44 135.32 248.56 128.73 252.68zM319.03 440C298.86 445.18 277.77 448 256 448S213.14 445.18 192.97 440C183.8 437.65 179.06 427.4 182.58 418.61L220.05 314.58A16.003 16.003 0 0 1 235.1 304H276.9C283.65 304 289.67 308.23 291.95 314.5800000000001L329.42 418.61C332.94 427.4000000000001 328.2 437.64 319.03 440zM112 160H16C7.16 160 0 152.84 0 144V80C0 71.16 7.16 64 16 64H112C120.84 64 128 71.16 128 80V144C128 152.84 120.84 160 112 160zM112 32H16C7.16 32 0 24.84 0 16V-48C0 -56.84 7.16 -64 16 -64H112C120.84 -64 128 -56.84 128 -48V16C128 24.84 120.84 32 112 32zM189.31 315.67L152.99 406.4700000000001C149.46 415.3 138.86 419.4600000000001 130.57 414.7800000000001A257.308 257.308 0 0 1 58.96 354.89C52.9 347.5700000000001 55.11 336.4100000000001 63.18 331.37L146.11 279.54C152.62 275.4700000000001 160.77 276.92 166.22 282.3300000000001C171.4 287.48 177.01 292.18 183.01 296.38C189.29 300.79 192.16 308.55 189.31 315.67zM398.18 192H495.31C504.41 192 512.05 199.63 511.46 208.72A254.13500000000002 254.13500000000002 0 0 1 489.01 297.99C485.07 306.61 474.12 309.4600000000001 466.08 304.44L383.27 252.68C376.68 248.56 374.37 240.44 376.93 233.1C379.94 224.49 382.08 215.48 383.17 206.16C384.1 198.25 390.2200000000001 192 398.18 192zM453.03 354.89A257.308 257.308 0 0 1 381.42 414.78C373.1400000000001 419.46 362.54 415.3 359 406.47L322.68 315.67C319.83 308.55 322.7 300.79 328.98 296.39C334.98 292.19 340.5900000000001 287.49 345.7700000000001 282.34C351.2100000000001 276.93 359.3700000000001 275.48 365.8800000000001 279.55L448.8100000000001 331.38C456.8800000000001 336.41 459.1000000000001 347.57 453.0300000000001 354.89zM496 160H400C391.1600000000001 160 384 152.84 384 144V80C384 71.16 391.1600000000001 64 400 64H496C504.84 64 512 71.16 512 80V144C512 152.84 504.84 160 496 160zM496 32H400C391.1600000000001 32 384 24.84 384 16V-48C384 -56.84 391.1600000000001 -64 400 -64H496C504.84 -64 512 -56.84 512 -48V16C512 24.84 504.84 32 496 32zM240 270.38V-24C240 -28.42 243.58 -32 248 -32H264C268.42 -32 272 -28.42 272 -24V270.38C266.77 271.27 261.48 272 256 272S245.23 271.27 240 270.38zM176 228.87V-24C176 -28.42 179.58 -32 184 -32H200C204.42 -32 208 -28.42 208 -24V258.64C195.22 251.19 184.16 241.17 176 228.87zM304 258.64V-24C304 -28.42 307.58 -32 312 -32H328C332.42 -32 336 -28.42 336 -24V228.87C327.84 241.17 316.78 251.19 304 258.64z" />
+    <glyph glyph-name="ear-muffs"
+      unicode="&#xF795;"
+      horiz-adv-x="640" d=" M152 224C140.1 224 129.7 218.6 122.4 210.3C111.8 217.2 98.6 219.6 86 214.7C74.2 209.9 65.8 200 62.3 188.5C50.5 188.8 38.9 183.7 30.6 174.1C22.6 164.2000000000001 20 152 22.3 140.5C12.1 135.4 3.7 125.8 1.2 113.6C-1.7 101.4 1.5 89.6 8.6 80.3C1.6 71.3 -1.6 59.2 0.9 47C3.8 34.8 11.8 25.2 22.3 19.8C19.7 8.6 22.3 -3.9 30.3 -13.5C38.3 -23.4 50.1 -28.2 62 -28.2C65.2 -39.7 73.5 -49.3 85.4 -54.4C90.5 -56.2999999999999 95.3 -57.2999999999999 100.4 -57.2999999999999C108.3 -57.2999999999999 116 -54.9 122.5 -50.4999999999999C129.8 -58.6999999999999 140.2 -63.9999999999999 152 -63.9999999999999C174.1 -63.9999999999999 192 -46.1 192 -23.9999999999999C192 -13.9999999999999 188 -5.1 181.9 1.9C188 8.9 192 17.8 192 27.8C192 37.7 188.5 47 182.4 54C188.5 61 192 70 192 79.9S188.5 98.8 182.4 105.8C188.5 112.8 192 121.8 192 131.6999999999999C192 141.8999999999999 187.9 150.8 181.8 157.8C187.9 164.8 192 173.8 192 183.8C192 206.1 174.1 224 152 224zM639.1 113C636.2 125.2 628.2 134.8 617.7 139.9C620.3000000000001 151.4 617.7 163.9 609.7 173.5C601.7 183.4 589.9000000000001 188.2 578 188.2C574.8 199.7 566.5 209.6 554.6 214.4C541.9 219.4 528.5 216.9 517.8000000000001 209.9C510.5000000000001 218.3 500.0000000000001 224 487.9000000000001 224C465.8000000000001 224 447.9000000000001 206.1 447.9000000000001 184C447.9000000000001 173.9 452.0000000000001 165 458.1000000000001 158C452.0000000000001 151 447.9000000000001 142.1 447.9000000000001 131.9C447.9000000000001 122 451.4000000000001 113 457.5000000000001 106C451.4000000000001 99 447.9000000000001 90 447.9000000000001 80.1S451.4000000000001 61.2000000000001 457.5000000000001 54.2C451.4000000000001 47.2 447.9000000000001 38.2 447.9000000000001 28.3000000000001C447.9000000000001 18.1000000000001 452.0000000000001 9.2 458.1000000000001 2.2C452.0000000000001 -4.8 447.9000000000001 -13.8 447.9000000000001 -23.8C447.9000000000001 -45.9 465.8000000000001 -63.7999999999999 487.9000000000001 -63.7999999999999C499.6000000000001 -63.7999999999999 509.9000000000001 -58.6 517.2 -50.6C523.7 -54.8 531.3000000000001 -57.1 539.2 -57.1C544 -57.1 549.1 -56.4999999999999 553.9000000000001 -54.2C565.7 -49.7 574.1000000000001 -39.8 577.3000000000001 -28.3C589.1 -28.6 601.0000000000001 -23.5 609.3000000000001 -13.9C617.3000000000001 -4.0000000000001 619.9000000000001 8.2 617.6 19.7C627.8000000000001 24.8 635.8000000000001 34.4 638.7 46.6S638.4000000000001 70.9 631.3000000000001 79.9C638.5000000000001 88.6 641.7 100.8 639.1 113zM506.3 253.5C512 251.9 517.6 249.7 522.8 246.7C528.6999999999999 248.2 534.6999999999999 249 540.8 249C546.0999999999999 249 551.3 248.2 556.5 247C537.8 360.8 439 448 320 448S102.3 360.9 83.5 247.1C88.8 248.4 94.2 249.2 99.7 249.2C105.8 249.2 111.8 248.4 117.7 246.9C122.8 249.7 128.2 251.9 133.7 253.4C154.2 337.4 229.8 400 320 400C410.2 400 485.8 337.4 506.3 253.5z" />
+    <glyph glyph-name="ear"
+      unicode="&#xF5F0;"
+      horiz-adv-x="384" d=" M192 448C85.96 448 0 362.04 0 256V80C0 0.47 64.47 -64 144 -64S288 0.47 288 80V89.9C345.33 123.11 384 184.98 384 256C384 362.04 298.04 448 192 448zM320 248C320 243.58 316.42 240 312 240H296C291.58 240 288 243.58 288 248V256C288 308.94 244.94 352 192 352S96 308.94 96 256C96 238.36 110.36 224 128 224H160C195.3 224 224 195.3 224 160S195.3 96 160 96H152C147.58 96 144 99.58 144 104V120C144 124.42 147.58 128 152 128H160C177.64 128 192 142.36 192 160S177.64 192 160 192H128C92.7 192 64 220.7 64 256C64 326.58 121.42 384 192 384S320 326.58 320 256V248z" />
+    <glyph glyph-name="eclipse-alt"
+      unicode="&#xF74A;"
+      horiz-adv-x="512" d=" M502.4 207.5L407.7 254.8L441.2 355.2000000000001C445.7 368.8 432.8 381.7000000000001 419.3 377.1L318.9 343.6L271.5 438.4000000000001C265.1 451.2 246.9 451.2 240.5 438.4000000000001L193.2 343.7000000000001L92.7 377.2C79.1 381.7 66.2 368.8 70.8 355.3L104.3 254.9L9.6 207.5C-3.2 201.1 -3.2 182.9 9.6 176.5L104.3 129.2L70.8 28.7C66.3 15.1 79.2 2.2 92.7 6.8L193.1 40.3L240.4000000000001 -54.4C246.8000000000001 -67.1999999999999 265.0000000000001 -67.1999999999999 271.4000000000001 -54.4L318.7000000000001 40.3L419.1 6.8C432.7000000000001 2.3 445.6 15.2 441 28.7L407.5 129.1L502.2 176.4C515.2 182.9 515.2 201.1 502.4 207.5zM346.5 101.5C296.6 51.6 215.4 51.6 165.5 101.5C115.6 151.4 115.6 232.6 165.5 282.5S296.6 332.4 346.5 282.5C396.4 232.6 396.4 151.4 346.5 101.5zM326.1 138.8C279.6 129.9 236.8 165.6 236.8 212.7C236.8 239.8 251.3 264.7000000000001 274.8 278.1C278.4000000000001 280.2000000000001 277.5 285.7000000000001 273.4000000000001 286.4000000000001C267.6 287.5 261.8 288 255.9000000000001 288C203 288 160 245.1 160 192C160 139 202.9 96 255.9000000000001 96C285.5000000000001 96 312.5000000000001 109.5 330.4000000000001 131.5C333.1 134.8 330.2000000000001 139.6 326.1 138.8z" />
+    <glyph glyph-name="eclipse"
+      unicode="&#xF749;"
+      horiz-adv-x="640" d=" M464 368C366.8 368 288 289.2 288 192S366.8 16 464 16S640 94.8 640 192S561.2 368 464 368zM165.5 101.5C115.6 151.4 115.6 232.6 165.5 282.5C200.6 317.6 251 327.5 295.3 313.2C302.8 323.6 311.1 333.3 320.4000000000001 342.1L271.5 438.4C265.1 451.2 246.9 451.2 240.5 438.4L193.2 343.7L92.7 377.2C79.1 381.7 66.2 368.8 70.8 355.3L104.3 254.9L9.6 207.5C-3.2 201.1 -3.2 182.9 9.6 176.5L104.3 129.2L70.8 28.7C66.3 15.1 79.2 2.2 92.7 6.8L193.1 40.3L240.4000000000001 -54.4C246.8000000000001 -67.1999999999999 265.0000000000001 -67.1999999999999 271.4000000000001 -54.4L318.7000000000001 40.3L324.0000000000001 38.5C313.3000000000001 48.2 303.7000000000001 59 295.2000000000001 70.8C251.0000000000001 56.5 200.6000000000001 66.4 165.5000000000001 101.5zM256 288C203.1 288 160 244.9 160 192S203.1 96 256 96C263.7 96 271.1 97.2 278.3 98.9C264.1 126.9 256 158.5 256 192C256 225.5 264.1 257.1 278.3 285.1C271.1 286.8 263.7 288 256 288z" />
+    <glyph glyph-name="edit"
+      unicode="&#xF044;"
+      horiz-adv-x="576" d=" M402.6 364.8L492.8 274.6C496.6 270.8 496.6 264.6 492.8 260.8L274.4 42.4L181.6 32.1C169.2 30.7 158.7 41.2 160.1 53.6L170.4 146.4L388.8 364.8C392.6 368.6 398.8 368.6 402.6 364.8zM564.6 387.7L515.8000000000001 436.5C500.6000000000001 451.7 475.9000000000001 451.7 460.6000000000001 436.5L425.2000000000001 401.1C421.4000000000001 397.3 421.4000000000001 391.1 425.2000000000001 387.3L515.4000000000001 297.1C519.2 293.3 525.4000000000001 293.3 529.2 297.1L564.6 332.5C579.8000000000001 347.8 579.8000000000001 372.5 564.6 387.7zM384 101.8V0H64V320H293.8C297 320 300 321.3 302.3 323.5L342.3 363.5C349.9000000000001 371.1 344.5 384 333.8 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V141.8C448 152.5 435.1 157.8 427.5 150.3L387.5 110.3C385.3 108 384 105 384 101.8z" />
+    <glyph glyph-name="eject"
+      unicode="&#xF052;"
+      horiz-adv-x="448" d=" M448 64V0C448 -17.673 433.673 -32 416 -32H32C14.327 -32 0 -17.673 0 0V64C0 81.673 14.327 96 32 96H416C433.673 96 448 81.673 448 64zM48.053 128H399.939C441.5900000000001 128 463.52 177.674 435.322 208.435L259.383 400.442C240.369 421.185 207.632 421.186 188.616 400.442L12.67 208.435C-15.475 177.732 6.324 128 48.053 128z" />
+    <glyph glyph-name="elephant"
+      unicode="&#xF6DA;"
+      horiz-adv-x="640" d=" M512 416C498.84 416 486.48 413.3400000000001 474.6 409.6C464.71 432.18 442.23 448 416 448C380.65 448 352 419.35 352 384C352 360.37 364.95 339.9600000000001 384 328.88V288C384 270.33 398.33 256 416 256H424C428.42 256 432 252.42 432 248V232C432 227.58 428.42 224 424 224H416C380.71 224 352 252.71 352 288V312.8C331.92 330.8300000000001 320 356.7200000000001 320 384C320 395.2800000000001 322.31 405.94 325.9 416H192C85.96 416 0 330.04 0 224V112C0 103.16 7.16 96 16 96H32V-48C32 -56.84 39.16 -64 48 -64H112C120.84 -64 128 -56.84 128 -48V59.85C160.35 42.3 198.72 32 240 32S319.65 42.3 352 59.85V-48C352 -56.84 359.1600000000001 -64 368 -64H432C440.84 -64 448 -56.84 448 -48V160H512C535.44 160 557.11 166.76 576 177.75V80C576 71.17 568.83 64 560 64S544 71.17 544 80C544 88.84 536.84 96 528 96H496C487.16 96 480 88.84 480 80C480 33.13 520.52 -4.46 568.36 0.43C609.98 4.68 640 42.89 640 84.73V288C640 358.69 582.69 416 512 416zM528 288C519.16 288 512 295.16 512 304S519.16 320 528 320S544 312.8400000000001 544 304S536.84 288 528 288z" />
+    <glyph glyph-name="ellipsis-h-alt"
+      unicode="&#xF39B;"
+      horiz-adv-x="512" d=" M256 206C263.7 206 270 199.7 270 192S263.7 178 256 178S242 184.3 242 192S248.3 206 256 206M256 264C216.2 264 184 231.8 184 192S216.2 120 256 120S328 152.2 328 192S295.8 264 256 264zM432 206C439.7 206 446 199.7 446 192S439.7 178 432 178S418 184.3 418 192S424.3 206 432 206M432 264C392.2 264 360 231.8 360 192S392.2 120 432 120S504 152.2 504 192S471.8 264 432 264zM80 206C87.7 206 94 199.7 94 192S87.7 178 80 178S66 184.3 66 192S72.3 206 80 206M80 264C40.2 264 8 231.8 8 192S40.2 120 80 120S152 152.2 152 192S119.8 264 80 264z" />
+    <glyph glyph-name="ellipsis-h"
+      unicode="&#xF141;"
+      horiz-adv-x="512" d=" M328 192C328 152.2 295.8 120 256 120S184 152.2 184 192S216.2 264 256 264S328 231.8 328 192zM432 264C392.2 264 360 231.8 360 192S392.2 120 432 120S504 152.2 504 192S471.8 264 432 264zM80 264C40.2 264 8 231.8 8 192S40.2 120 80 120S152 152.2 152 192S119.8 264 80 264z" />
+    <glyph glyph-name="ellipsis-v-alt"
+      unicode="&#xF39C;"
+      horiz-adv-x="192" d=" M96 206C103.7 206 110 199.7 110 192S103.7 178 96 178S82 184.3 82 192S88.3 206 96 206M96 264C56.2 264 24 231.8 24 192S56.2 120 96 120S168 152.2 168 192S135.8 264 96 264zM96 382C103.7 382 110 375.7 110 368S103.7 354 96 354S82 360.3 82 368S88.3 382 96 382M96 440C56.2 440 24 407.8 24 368S56.2 296 96 296S168 328.2 168 368S135.8 440 96 440zM96 30C103.7 30 110 23.7 110 16S103.7 2 96 2S82 8.3 82 16S88.3 30 96 30M96 88C56.2 88 24 55.8 24 16S56.2 -56 96 -56S168 -23.8 168 16S135.8 88 96 88z" />
+    <glyph glyph-name="ellipsis-v"
+      unicode="&#xF142;"
+      horiz-adv-x="192" d=" M96 264C135.8 264 168 231.8 168 192S135.8 120 96 120S24 152.2 24 192S56.2 264 96 264zM24 368C24 328.2 56.2 296 96 296S168 328.2 168 368S135.8 440 96 440S24 407.8 24 368zM24 16C24 -23.8 56.2 -56 96 -56S168 -23.8 168 16S135.8 88 96 88S24 55.8 24 16z" />
+    <glyph glyph-name="empty-set"
+      unicode="&#xF656;"
+      horiz-adv-x="512" d=" M507.31 420.69L484.69 443.31C478.44 449.56 468.31 449.56 462.06 443.31L389.9700000000001 371.2200000000001C352.57 399.2200000000001 306.31 416 256 416C132.29 416 32 315.7100000000001 32 192C32 141.7 48.78 95.43 76.78 58.04L4.69 -14.0600000000001C-1.56 -20.3100000000001 -1.56 -30.4400000000001 4.69 -36.6900000000001L27.32 -59.32C33.57 -65.57 43.7 -65.57 49.95 -59.32L122.04 12.77C159.43 -15.22 205.7 -32 256 -32C379.71 -32 480 68.29 480 192C480 242.3 463.22 288.57 435.2200000000001 325.9600000000001L507.3100000000001 398.05C513.5600000000001 404.31 513.5600000000001 414.44 507.3100000000001 420.69zM112 192C112 271.4 176.6 336 256 336C284.11 336 310.16 327.5900000000001 332.35 313.61L134.39 115.65C120.41 137.84 112 163.89 112 192zM400 192C400 112.6 335.4 48 256 48C227.89 48 201.84 56.41 179.65 70.39L377.6 268.35C391.59 246.16 400 220.11 400 192z" />
+    <glyph glyph-name="engine-warning"
+      unicode="&#xF5F2;"
+      horiz-adv-x="640" d=" M48 192C48 251.53 67.55 309.38 103.36 356.51C108.54 363.32 107.84 372.82 101.33 378.37L89.13 388.78C82.22 394.68 71.51 393.84 65.98 386.63C23.32 330.98 0 262.5 0 192C0 121.53 23.32 53.04 65.96 -2.62C71.49 -9.83 82.19 -10.67 89.11 -4.78L101.3 5.6199999999999C107.81 11.17 108.51 20.66 103.34 27.48C67.55 74.63 48 132.47 48 192zM320 416C196.3 416 96 315.7 96 192C96 68.24 196.3 -32 320 -32S544 68.24 544 192C544 315.7 443.7 416 320 416zM320 64C302.33 64 288 78.33 288 96S302.33 128 320 128S352 113.67 352 96S337.67 64 320 64zM345.44 174.41C344.62 166.23 337.74 160 329.52 160H310.48C302.26 160 295.38 166.23 294.56 174.41L281.76 302.41C280.82 311.83 288.2099999999999 320 297.68 320H342.32C351.79 320 359.18 311.83 358.24 302.41L345.44 174.41zM572.73 388.29C567.15 395.4700000000001 556.44 396.24 549.5600000000001 390.29L537.4100000000001 379.78C530.94 374.18 530.3100000000001 364.69 535.5300000000001 357.91C572.04 310.53 592 252.19 592 192C592 131.77 572.04 73.43 535.54 26.05C530.3199999999999 19.27 530.9499999999999 9.78 537.42 4.18L549.5699999999999 -6.32C556.4399999999999 -12.27 567.16 -11.5 572.7399999999999 -4.32C616.21 51.62 640 120.69 640 192C640 263.27 616.21 332.3400000000001 572.73 388.29z" />
+    <glyph glyph-name="envelope-open-dollar"
+      unicode="&#xF657;"
+      horiz-adv-x="512" d=" M256 30.87C239.58 30.87 223.16 35.93 209.14 46.06L0 197.14V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V197.14L302.86 46.06C288.8400000000001 35.94 272.42 30.87 256 30.87zM493.61 285.05C484.76 291.99 476.37 298.52 464 307.86V352C464 378.51 442.51 400 416 400H338.45C335.41 402.2 332.58 404.26 329.41 406.56C312.6 418.82 279.2 448.35 256 448C232.8 448.35 199.41 418.83 182.59 406.56C179.42 404.26 176.59 402.2 173.55 400H96C69.49 400 48 378.51 48 352V307.86C35.63 298.53 27.24 291.99 18.39 285.05A47.995 47.995 0 0 1 0 247.28V236.63L96 167.28V352H416V167.28L512 236.63V247.28C512 262.02 505.22 275.95 493.61 285.05zM264 312H248C243.58 312 240 308.42 240 304V287.88C216.38 287.25 197.33 267.33 197.33 242.81C197.33 222.84 210.31 205 228.91 199.42L273.91 185.92C279.07 184.37 282.68 179.1400000000001 282.68 173.19C282.68 165.92 277.38 160 270.88 160H242.7699999999999C238.2099999999999 160 233.8099999999999 161.29 229.95 163.72C226.7099999999999 165.75 222.5899999999999 165.6300000000001 219.8199999999999 162.99L208.0699999999999 151.78C204.5399999999999 148.41 204.7399999999999 142.5700000000001 208.6399999999999 139.6400000000001C217.7399999999999 132.8100000000001 228.7199999999999 128.8700000000001 240.01 128.29V112C240.01 107.58 243.59 104 248.01 104H264.01C268.43 104 272.01 107.58 272.01 112V128.12C295.63 128.75 314.68 148.66 314.68 173.19C314.68 193.16 301.7 211 283.1 216.58L238.1 230.08C232.94 231.63 229.33 236.86 229.33 242.81C229.33 250.08 234.63 256 241.13 256H269.24C273.8 256 278.2 254.71 282.06 252.28C285.3 250.25 289.42 250.37 292.19 253.01L303.94 264.22C307.4699999999999 267.59 307.2699999999999 273.43 303.37 276.36C294.2699999999999 283.19 283.29 287.13 272 287.7099999999999V304C272 308.42 268.42 312 264 312z" />
+    <glyph glyph-name="envelope-open-text"
+      unicode="&#xF658;"
+      horiz-adv-x="512" d=" M176 232H336C344.84 232 352 239.16 352 248V264C352 272.8400000000001 344.84 280 336 280H176C167.16 280 160 272.8400000000001 160 264V248C160 239.16 167.16 232 176 232zM160 152C160 143.16 167.16 136 176 136H336C344.84 136 352 143.16 352 152V168C352 176.84 344.84 184 336 184H176C167.16 184 160 176.84 160 168V152zM256 30.87C239.58 30.87 223.16 35.93 209.14 46.06L0 197.14V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V197.14L302.86 46.06C288.8400000000001 35.94 272.42 30.87 256 30.87zM493.61 285.05C484.76 291.99 476.37 298.52 464 307.86V352C464 378.51 442.51 400 416 400H338.45C335.41 402.2 332.58 404.26 329.41 406.56C312.6 418.83 279.2 448.35 256 448C232.8 448.35 199.41 418.83 182.59 406.56C179.42 404.26 176.59 402.2 173.55 400H96C69.49 400 48 378.51 48 352V307.86C35.63 298.53 27.24 291.99 18.39 285.05A47.995 47.995 0 0 1 0 247.28V236.63L96 167.28V352H416V167.28L512 236.63V247.28C512 262.02 505.22 275.95 493.61 285.05z" />
+    <glyph glyph-name="envelope-open"
+      unicode="&#xF2B6;"
+      horiz-adv-x="512" d=" M512 -16C512 -42.51 490.51 -64 464 -64H48C21.49 -64 0 -42.51 0 -16V247.276A48 48 0 0 0 18.387 285.052C43.3 304.581 63.888 320.4170000000001 182.587 406.563C199.412 418.83 232.797 448.347 256 447.997C279.198 448.351 312.596 418.825 329.413 406.564C448.1 320.427 468.716 304.569 493.613 285.052A48 48 0 0 0 512 247.276V-16zM446.334 180.605C443.771 184.333 438.634 185.2000000000001 434.995 182.512C412.15 165.639 379.533 141.807 329.413 105.433C312.588 93.167 279.2030000000001 63.652 256 64.003C232.789 63.659 199.441 93.146 182.587 105.433C132.473 141.803 99.853 165.637 77.005 182.512C73.366 185.2 68.229 184.333 65.666 180.605L56.594 167.409A7.997999999999999 7.997999999999999 0 0 1 58.433 156.442C81.32 139.543 113.887 115.752 163.736 79.574C184.01 64.793 220.26 31.761 256 32.001C291.724 31.759 327.961 64.7720000000001 348.2630000000001 79.574C398.1130000000001 115.7530000000001 430.6810000000001 139.544 453.566 156.442A7.997999999999999 7.997999999999999 0 0 1 455.405 167.409L446.334 180.605z" />
+    <glyph glyph-name="envelope-square"
+      unicode="&#xF199;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM178.117 185.896C87.429 251.713 88.353 251.879 64 270.833V296C64 309.255 74.745 320 88 320H360C373.255 320 384 309.255 384 296V270.833C359.629 251.864 360.566 251.709 269.883 185.895C259.383 178.24 238.491 159.775 224 160.001C209.497 159.783 188.633 178.228 178.117 185.896zM384 230.225V88C384 74.745 373.255 64 360 64H88C74.745 64 64 74.745 64 88V230.225C77.958 219.431 97.329 204.989 159.303 160.011C173.465 149.67 197.278 127.866 223.997 128.001C250.884 127.867 275.034 150.042 288.717 160.026C350.675 204.991 370.042 219.432 384 230.225z" />
+    <glyph glyph-name="envelope"
+      unicode="&#xF0E0;"
+      horiz-adv-x="512" d=" M502.3 257.2C506.2 260.3 512 257.4 512 252.5V48C512 21.5 490.5 0 464 0H48C21.5 0 0 21.5 0 48V252.4C0 257.4 5.7 260.2000000000001 9.7 257.1C32.1 239.7 61.8 217.6 163.8 143.5C184.9 128.1 220.5 95.7 256 95.9C291.7 95.6 328 128.7 348.3 143.5C450.3 217.6 479.9 239.8 502.3 257.2zM256 128C279.2 127.6 312.6 157.2 329.4 169.4C462.1 265.7 472.2 274.1 502.8 298.1C508.6 302.6 511.9999999999999 309.6 511.9999999999999 317V336C511.9999999999999 362.5 490.4999999999999 384 463.9999999999999 384H48C21.5 384 0 362.5 0 336V317C0 309.6 3.4 302.7 9.2 298.1C39.8 274.2 49.9 265.7 182.6 169.4C199.4 157.2 232.8 127.6 256 128z" />
+    <glyph glyph-name="equals"
+      unicode="&#xF52C;"
+      horiz-adv-x="448" d=" M416 144H32C14.33 144 0 129.67 0 112V80C0 62.33 14.33 48 32 48H416C433.67 48 448 62.33 448 80V112C448 129.67 433.67 144 416 144zM416 336H32C14.33 336 0 321.67 0 304V272C0 254.33 14.33 240 32 240H416C433.67 240 448 254.33 448 272V304C448 321.67 433.67 336 416 336z" />
+    <glyph glyph-name="eraser"
+      unicode="&#xF12D;"
+      horiz-adv-x="512" d=" M497.941 174.059C516.6859999999999 192.804 516.6859999999999 223.196 497.941 241.9410000000001L337.941 401.9410000000001C319.196 420.6860000000001 288.805 420.687 270.058 401.9410000000001L14.058 145.941C-4.687 127.196 -4.687 96.804 14.058 78.059L110.058 -17.941A48.004000000000005 48.004000000000005 0 0 1 144 -32H500C506.627 -32 512 -26.627 512 -20V20C512 26.627 506.627 32 500 32H355.883L497.941 174.059zM195.314 236.6860000000001L332.687 99.3130000000001L265.373 32H150.628L70.628 112L195.314 236.686z" />
+    <glyph glyph-name="ethernet"
+      unicode="&#xF796;"
+      horiz-adv-x="512" d=" M496 256H448V304C448 312.8 440.8 320 432 320H384V368C384 376.8 376.8 384 368 384H144C135.2 384 128 376.8 128 368V320H80C71.2 320 64 312.8 64 304V256H16C7.2 256 0 248.8 0 240V16C0 7.2 7.2 0 16 0H96V128H128V0H192V128H224V0H288V128H320V0H384V128H416V0H496C504.8 0 512 7.2 512 16V240C512 248.8 504.8 256 496 256z" />
+    <glyph glyph-name="euro-sign"
+      unicode="&#xF153;"
+      horiz-adv-x="320" d=" M310.706 34.235C309.392 40.865 302.8710000000001 45.107 296.2820000000001 43.604C285.5900000000001 41.165 268.86 38.191 250.8560000000001 38.191C194.0930000000001 38.191 148.9270000000001 72.9810000000001 129.3950000000001 123.6400000000001H243.0840000000001A12 12 0 0 1 254.7920000000001 133.009L261.165 161.369C262.851 168.8710000000001 257.146 176 249.457 176H115.22C114.01 190.328 113.806 204.287 115.357 218.245H261.95A12 12 0 0 1 273.673 227.679L280.185 257.434C281.823 264.918 276.124 272 268.462 272H130.184C150.817 316.991 192.874 347.03 247.803 347.03C262.289 347.03 276.367 344.78 285.654 342.885C291.87 341.617 298.001 345.3830000000001 299.656 351.5080000000001L311.647 395.8760000000001C313.469 402.617 309.182 409.492 302.321 410.793C290.217 413.088 270.71 416 249.635 416C152.451 416 74.03 355.748 45.075 272H12C5.373 272 0 266.627 0 260V230.245C0 223.618 5.373 218.245 12 218.245H33.569C32.56 204.638 32.388 188.958 33.388 176H12C5.373 176 0 170.627 0 164V135.64C0 129.013 5.373 123.64 12 123.64H42.114C67.139 33.308 145.264 -32 249.635 -32C275.936 -32 298.197 -27.456 310.736 -24.212C316.903 -22.617 320.763 -16.504 319.524 -10.255L310.706 34.235z" />
+    <glyph glyph-name="exchange-alt"
+      unicode="&#xF362;"
+      horiz-adv-x="512" d=" M0 280V296C0 309.255 10.745 320 24 320H384V368C384 389.367 409.899 400.0420000000001 424.971 384.971L504.971 304.971C514.343 295.598 514.343 280.4020000000001 504.971 271.03L424.971 191.03C409.956 176.018 384 186.544 384 208V256H24C10.745 256 0 266.745 0 280zM488 128H128V176C128 197.314 102.138 208.08 87.029 192.971L7.029 112.971C-2.343 103.598 -2.343 88.402 7.029 79.03L87.029 -0.97C102.057 -15.997 128 -5.437 128 16V64H488C501.255 64 512 74.745 512 88V104C512 117.255 501.255 128 488 128z" />
+    <glyph glyph-name="exchange"
+      unicode="&#xF0EC;"
+      horiz-adv-x="512" d=" M0 280V296C0 309.255 10.745 320 24 320H405.9700000000001L375.5030000000001 347.728C365.6880000000001 357.017 365.4730000000001 372.574 375.0290000000001 382.13L385.8690000000001 392.9700000000001C395.242 402.343 410.437 402.343 419.8100000000001 392.9700000000001L502.6270000000001 310.627C515.124 298.13 515.124 277.8690000000001 502.6270000000001 265.372L419.8100000000001 183.029C410.4370000000001 173.656 395.2410000000001 173.656 385.8690000000001 183.029L375.0290000000001 193.869C365.4730000000001 203.425 365.6880000000001 218.983 375.5030000000001 228.271L405.9700000000001 256H24C10.745 256 0 266.745 0 280zM488 128H106.03L136.497 155.728C146.312 165.017 146.527 180.574 136.971 190.13L126.131 200.97C116.758 210.343 101.563 210.343 92.19 200.97L9.373 118.627C-3.124 106.13 -3.124 85.869 9.373 73.372L92.19 -8.971C101.563 -18.344 116.759 -18.344 126.131 -8.971L136.971 1.869C146.527 11.425 146.312 26.982 136.497 36.271L106.03 64H488C501.255 64 512 74.745 512 88V104C512 117.255 501.255 128 488 128z" />
+    <glyph glyph-name="exclamation-circle"
+      unicode="&#xF06A;"
+      horiz-adv-x="512" d=" M504 192C504 55.003 392.957 -56 256 -56S8 55.003 8 192C8 328.9170000000001 119.043 440 256 440S504 328.9170000000001 504 192zM256 142C230.595 142 210 121.405 210 96S230.595 50 256 50S302 70.595 302 96S281.405 142 256 142zM212.327 307.346L219.745 171.346C220.092 164.982 225.354 160 231.727 160H280.273C286.646 160 291.908 164.982 292.255 171.346L299.673 307.346C300.048 314.2200000000001 294.575 320 287.6910000000001 320H224.308C217.424 320 211.952 314.2200000000001 212.327 307.346z" />
+    <glyph glyph-name="exclamation-square"
+      unicode="&#xF321;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM192.309 320H255.691C262.575 320 268.048 314.2200000000001 267.673 307.346L260.255 171.346C259.908 164.982 254.646 160 248.273 160H199.727C193.354 160 188.092 164.982 187.745 171.346L180.327 307.346C179.952 314.2200000000001 185.425 320 192.309 320zM224 50C198.595 50 178 70.595 178 96S198.595 142 224 142S270 121.405 270 96S249.405 50 224 50z" />
+    <glyph glyph-name="exclamation-triangle"
+      unicode="&#xF071;"
+      horiz-adv-x="576" d=" M569.517 7.987C587.975 -24.007 564.806 -64 527.94 -64H48.054C11.117 -64 -11.945 -23.945 6.477 7.987L246.423 424.015C264.89 456.024 311.1430000000001 455.966 329.577 424.015L569.517 7.987zM288 94C262.5950000000001 94 242 73.405 242 48S262.5950000000001 2 288 2S334 22.595 334 48S313.405 94 288 94zM244.327 259.346L251.745 123.346C252.092 116.982 257.354 112 263.727 112H312.273C318.646 112 323.908 116.982 324.255 123.346L331.673 259.346C332.048 266.2200000000001 326.575 272 319.6910000000001 272H256.3080000000001C249.4240000000001 272 243.9520000000001 266.2200000000001 244.3270000000001 259.346z" />
+    <glyph glyph-name="exclamation"
+      unicode="&#xF12A;"
+      horiz-adv-x="192" d=" M176 16C176 -28.112 140.112 -64 96 -64S16 -28.112 16 16S51.888 96 96 96S176 60.112 176 16zM25.26 422.801L38.86 150.801C39.499 138.028 50.041 128 62.83 128H129.17C141.959 128 152.501 138.028 153.14 150.801L166.74 422.801C167.425 436.51 156.496 448 142.77 448H49.23C35.504 448 24.575 436.51 25.26 422.801z" />
+    <glyph glyph-name="expand-alt"
+      unicode="&#xF424;"
+      horiz-adv-x="448" d=" M212.686 132.686L120 40L152.922 8.971C168.042 -6.149 157.334 -32 135.952 -32H23.952C10.697 -32 0 -21.255 0 -8V104C0 125.382 25.803 136.09 40.922 120.971L72 88L164.686 180.686C170.934 186.934 181.065 186.934 187.313 180.686L212.686 155.3130000000001C218.935 149.0650000000001 218.935 138.9350000000001 212.686 132.686zM235.314 251.314L328 344L295.078 375.029C279.9580000000001 390.149 290.666 416 312.048 416H424.048C437.303 416 448 405.255 448 392V280C448 258.618 422.197 247.91 407.078 263.029L376 296L283.314 203.314C277.066 197.066 266.935 197.066 260.687 203.314L235.314 228.687C229.065 234.935 229.065 245.065 235.314 251.314z" />
+    <glyph glyph-name="expand-arrows-alt"
+      unicode="&#xF31E;"
+      horiz-adv-x="448.1" d=" M448.1 104V-8C448.1 -21.3 437.4000000000001 -32 424.1 -32H312.1C290.7000000000001 -32 280 -6.1 295.1 9L331.3 45.2L224 152.4L116.8 45.1L153 9C168.1 -6.1 157.4 -32 136 -32H24C10.7 -32 0 -21.3 0 -8V104C0 125.4 25.9 136.1 41 121L77.2 84.8L184.5 192L77.2 299.3L41 263C25.9 247.9 0 258.6 0 280V392C0 405.3 10.7 416 24 416H136C157.4 416 168.1 390.1 153 375L116.8 338.8L224 231.6L331.3 338.9L295.1 375C280 390.1 290.7000000000001 416 312.1 416H424.1C437.4000000000001 416 448.1 405.3 448.1 392V280C448.1 258.6 422.2000000000001 247.9 407.1 263L370.9000000000001 299.2L263.6 192L370.9000000000001 84.7L407.1 120.9C422.2000000000001 136.1 448.1 125.4 448.1 104z" />
+    <glyph glyph-name="expand-arrows"
+      unicode="&#xF31D;"
+      horiz-adv-x="448" d=" M448 136V0C448 -17.7 433.7 -32 416 -32H280C266.7 -32 256 -21.3 256 -8V7.3C256 20.8 267.2 31.7 280.7 31.3L347 29.4L224 152.4L101 29.4L167.3 31.3C180.8 31.7 192 20.8 192 7.3V-8C192 -21.3 181.3 -32 168 -32H32C14.3 -32 0 -17.7 0 0V136C0 149.3 10.7 160 24 160H39.3C52.8 160 63.7 148.8 63.3 135.3L61.4 69L184.4 192L61.4 315L63.3 248.7C63.7 235.2 52.8 224 39.3 224H24C10.7 224 0 234.7 0 248V384C0 401.7 14.3 416 32 416H168C181.3 416 192 405.3 192 392V376.7C192 363.2 180.8 352.3 167.3 352.7L101 354.6L224 231.6L347 354.6L280.7 352.7C267.2 352.3 256 363.2 256 376.7V392C256 405.3 266.7 416 280 416H416C433.7 416 448 401.7 448 384V248C448 234.7 437.3 224 424 224H408.7C395.2 224 384.3 235.2 384.7 248.7L386.6 315L263.6 192L386.6 69L384.7 135.3C384.3 148.8 395.2 160 408.7 160H424C437.3 160 448 149.3 448 136z" />
+    <glyph glyph-name="expand-wide"
+      unicode="&#xF320;"
+      horiz-adv-x="512" d=" M0 236V360C0 373.3 10.7 384 24 384H148C154.6 384 160 378.6 160 372V332C160 325.4 154.6 320 148 320H64V236C64 229.4 58.6 224 52 224H12C5.4 224 0 229.4 0 236zM352 372V332C352 325.4 357.4 320 364 320H448V236C448 229.4 453.4 224 460 224H500C506.6 224 512 229.4 512 236V360C512 373.3 501.3 384 488 384H364C357.4 384 352 378.6 352 372zM500 160H460C453.4 160 448 154.6 448 148V64H364C357.4 64 352 58.6 352 52V12C352 5.4 357.4 0 364 0H488C501.3 0 512 10.7 512 24V148C512 154.6 506.6 160 500 160zM160 12V52C160 58.6 154.6 64 148 64H64V148C64 154.6 58.6 160 52 160H12C5.4 160 0 154.6 0 148V24C0 10.7 10.7 0 24 0H148C154.6 0 160 5.4 160 12z" />
+    <glyph glyph-name="expand"
+      unicode="&#xF065;"
+      horiz-adv-x="448" d=" M0 268V392C0 405.3 10.7 416 24 416H148C154.6 416 160 410.6 160 404V364C160 357.4 154.6 352 148 352H64V268C64 261.4 58.6 256 52 256H12C5.4 256 0 261.4 0 268zM288 404V364C288 357.4 293.4 352 300 352H384V268C384 261.4 389.4 256 396 256H436C442.6 256 448 261.4 448 268V392C448 405.3 437.3 416 424 416H300C293.4 416 288 410.6 288 404zM436 128H396C389.4 128 384 122.6 384 116V32H300C293.4 32 288 26.6 288 20V-20C288 -26.6 293.4 -32 300 -32H424C437.3 -32 448 -21.3 448 -8V116C448 122.6 442.6 128 436 128zM160 -20V20C160 26.6 154.6 32 148 32H64V116C64 122.6 58.6 128 52 128H12C5.4 128 0 122.6 0 116V-8C0 -21.3 10.7 -32 24 -32H148C154.6 -32 160 -26.6 160 -20z" />
+    <glyph glyph-name="external-link-alt"
+      unicode="&#xF35D;"
+      horiz-adv-x="576" d=" M576 424V296.016C576 274.555 550.04 264.0360000000001 535.029 279.045L499.322 314.754L255.799 71.231C246.426 61.858 231.231 61.858 221.858 71.231L199.231 93.858C189.858 103.231 189.858 118.427 199.231 127.799L442.756 371.324L407.053 407.029C391.9820000000001 422.1 402.656 448 424.024 448H552C565.255 448 576 437.255 576 424zM407.029 177.206L391.029 161.206A23.999000000000002 23.999000000000002 0 0 1 384 144.235V0H64V320H328A24.003 24.003 0 0 1 344.9700000000001 327.029L360.9700000000001 343.029C376.089 358.149 365.381 384 344 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V160.236C448 181.618 422.148 192.326 407.029 177.206z" />
+    <glyph glyph-name="external-link-square-alt"
+      unicode="&#xF360;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM360 352H248.029C226.716 352 215.949 326.139 231.058 311.029L263.042 279.0420000000001L67.515 83.515C62.829 78.829 62.829 71.231 67.515 66.544L98.544 35.515C103.231 30.829 110.829 30.829 115.515 35.515L311.041 231.041L343.029 199.05C358.058 184.023 384 194.575 384 216.021V328C384 341.255 373.255 352 360 352z" />
+    <glyph glyph-name="external-link-square"
+      unicode="&#xF14C;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM384 320.889C384 338.0710000000001 370.0710000000001 352 352.889 352H220.667C207.78 352 197.334 341.553 197.334 328.666V313.762C197.334 300.624 208.177 290.076 221.31 290.438L277.312 292.026L69.908 86.092C62.05 78.29 62.028 65.588 69.858 57.758L89.757 37.859C97.587 30.029 110.289 30.051 118.091 37.909L324.026 245.313L322.438 189.31C322.076 176.177 332.624 165.334 345.762 165.334H360.666C373.553 165.334 384 175.781 384 188.667V320.889z" />
+    <glyph glyph-name="external-link"
+      unicode="&#xF08E;"
+      horiz-adv-x="576" d=" M448 168.804V-16C448 -42.51 426.51 -64 400 -64H48C21.49 -64 0 -42.51 0 -16V336C0 362.51 21.49 384 48 384H296A24 24 0 0 0 312.9700000000001 376.971L328.9700000000001 360.971C344.09 345.851 333.382 320 312 320H64V0H384V152.804C384 159.169 386.529 165.274 391.029 169.775L407.029 185.775C422.148 200.894 448 190.186 448 168.804zM576 410.6670000000001C576 431.2850000000001 559.285 448 538.667 448H380C364.536 448 352 435.464 352 420V402.115C352 386.349 365.011 373.6910000000001 380.772 374.126L447.975 376.032L199.09 128.91C189.661 119.547 189.633 104.305 199.029 94.9090000000001L222.908 71.03C232.304 61.634 247.547 61.6610000000001 256.909 71.09L504.031 319.975L502.125 252.772C501.691 237.0120000000001 514.349 224 530.115 224H548C563.464 224 576 236.5360000000001 576 252.0000000000001V410.6670000000001z" />
+    <glyph glyph-name="eye-dropper"
+      unicode="&#xF1FB;"
+      horiz-adv-x="512" d=" M50.75 114.75C38.75 102.75 32 86.47 32 69.49V24L0 -32L32 -64L88 -32H133.49C150.46 -32 166.74 -25.26 178.74 -13.26L305.38 113.36L177.38 241.36L50.75 114.75zM483.88 419.88C446.41 457.38 385.6 457.38 348.13 419.88L271.04 342.79L257.94 355.89C248.5 365.33 233.29 365.2 224 355.89L183.03 314.92C173.66 305.55 173.66 290.35 183.03 280.98L344.9699999999999 119.04C354.4099999999999 109.6 369.6199999999999 109.73 378.9099999999999 119.04L419.88 160C429.25 169.37 429.25 184.57 419.88 193.94L406.78 207.04L483.87 284.13C521.38 321.61 521.38 382.39 483.88 419.88z" />
+    <glyph glyph-name="eye-evil"
+      unicode="&#xF6DB;"
+      horiz-adv-x="640" d=" M627.03 208.92L515.16 239.22C510.3699999999999 245.78 505.01 252.62 499.03 259.67C500.38 261.74 554.2099999999999 347.65 554.2099999999999 347.65C563.15 361.9700000000001 548.1099999999999 379 531.7599999999999 373.07L412 329.71C402.32 334.52 392.09 338.62 381.35 342.03L336.88 437.27C330.2 451.58 309.8 451.58 303.12 437.27L258.65 342.03C247.91 338.63 237.68 334.52 228 329.7100000000001L108.23 373.07C91.88 379 76.85 361.9700000000001 85.78 347.65C85.78 347.65 139.62 261.73 140.96 259.67A359.126 359.126 0 0 1 124.83 239.2200000000001L12.96 208.92C-4.33 204.24 -4.33 179.7700000000001 12.96 175.09L124.83 144.79C129.61 138.25 134.94 131.44 140.9 124.41C139.56 122.3200000000001 85.78 36.36 85.78 36.36C76.84 22.04 91.88 5.01 108.23 10.93L228 54.29C237.68 49.48 247.91 45.37 258.65 41.97L303.12 -53.27C309.8 -67.5799999999999 330.2 -67.5799999999999 336.88 -53.27L381.35 41.97C392.0900000000001 45.37 402.3200000000001 49.48 412 54.29L531.77 10.93C548.12 5.01 563.16 22.04 554.22 36.36C554.22 36.36 500.4400000000001 122.32 499.1 124.41C505.06 131.44 510.39 138.25 515.1700000000001 144.79L627.0400000000001 175.09C644.32 179.7700000000001 644.32 204.23 627.0300000000001 208.92zM320 96C266.98 96 224 138.98 224 192C224 211.73 229.99 230.06 240.2 245.31C256.11 235.74 274.97 228.98 295.79 225.98C291.38 216.73 288 205.57 288 192C288 149.3300000000001 320 128 320 128S352 149.33 352 192C352 205.57 348.63 216.73 344.2099999999999 225.98C365.0299999999999 228.98 383.89 235.74 399.8 245.31C410.01 230.06 416 211.73 416 192C416 138.98 373.02 96 320 96z" />
+    <glyph glyph-name="eye-slash"
+      unicode="&#xF070;"
+      horiz-adv-x="576" d=" M286.693 56.016L319.272 9.474A333.958 333.958 0 0 0 288 8C168.19 8 63.031 71.949 6.646 167.631A47.999 47.999 0 0 0 6.646 216.37C30.669 257.136 63.559 292.145 102.67 318.907L159.747 237.368C154.736 223.18 152 207.913 152 192C152 117.264 212.135 56.718 286.693 56.016zM569.354 167.631C537.687 113.894 490.607 70.1710000000001 434.1790000000001 42.1560000000001L434.1900000000001 42.1410000000001L475.6600000000001 -17.0589999999999C483.2600000000001 -27.9189999999999 480.6200000000001 -42.8789999999999 469.7600000000001 -50.4789999999999L456.6500000000001 -59.6589999999999C445.7900000000001 -67.2589999999999 430.8300000000001 -64.6189999999999 423.2300000000001 -53.759L100.34 401.06C92.74 411.92 95.38 426.88 106.24 434.48L119.35 443.6600000000001C130.21 451.26 145.17 448.62 152.77 437.76L203.808 365.1430000000001C230.68 372.224 258.905 376 288 376C407.81 376 512.969 312.051 569.354 216.369A48.00200000000001 48.00200000000001 0 0 0 569.354 167.631zM424 192C424 267.174 363.162 328 288 328C270.061 328 252.944 324.527 237.271 318.228L256.57 291.17C282.439 299.341 311.614 297.3330000000001 336.9700000000001 283.76H336.9400000000001C313.2900000000001 283.76 294.1200000000001 264.5900000000001 294.1200000000001 240.9400000000001C294.1200000000001 217.314 313.2670000000001 198.12 336.9400000000001 198.12C360.5900000000001 198.12 379.7600000000001 217.29 379.7600000000001 240.9400000000001V240.9700000000001C398.2220000000001 206.48 396.0720000000001 163.0560000000001 371.5100000000001 130.0200000000001V130.0100000000001L390.8240000000001 102.9490000000001C411.496 126.8 424 157.926 424 192zM262.014 91.273L184.484 202.03C179.47 149.643 213.798 103.6760000000001 262.014 91.273z" />
+    <glyph glyph-name="eye"
+      unicode="&#xF06E;"
+      horiz-adv-x="576" d=" M569.354 216.369C512.969 312.051 407.81 376 288 376C168.14 376 63.004 312.006 6.646 216.369A47.999 47.999 0 0 1 6.646 167.63C63.031 71.949 168.19 8 288 8C407.86 8 512.996 71.994 569.354 167.631A47.997 47.997 0 0 1 569.354 216.369zM288 56C212.838 56 152 116.827 152 192C152 267.1620000000001 212.826 328 288 328C363.1620000000001 328 424 267.174 424 192C424 116.838 363.174 56 288 56zM392 192C392 134.562 345.438 88 288 88S184 134.562 184 192C184 209.708 188.431 226.379 196.236 240.973L196.235 240.941C196.235 217.29 215.408 198.118 239.059 198.118S281.883 217.291 281.883 240.941C281.883 264.592 262.71 283.765 239.059 283.765L239.027 283.764C253.621 291.569 270.292 296 288 296C345.438 296 392 249.438 392 192z" />
+    <glyph glyph-name="fast-backward"
+      unicode="&#xF049;"
+      horiz-adv-x="512" d=" M0 12V372C0 378.6 5.4 384 12 384H52C58.6 384 64 378.6 64 372V220.1L235.5 376.6C256.1 393.7 288 379.4 288 352V220.1L459.5 376.6C480.1 393.7 512 379.4 512 352V32C512 4.6 480.1 -9.7 459.5 7.4L288 162.7V32C288 4.6 256.1 -9.7 235.5 7.4L64 162.7V12C64 5.4 58.6 0 52 0H12C5.4 0 0 5.4 0 12z" />
+    <glyph glyph-name="fast-forward"
+      unicode="&#xF050;"
+      horiz-adv-x="512" d=" M512 372V12C512 5.4 506.6 0 500 0H460C453.4 0 448 5.4 448 12V163.9L276.5 7.4C255.9 -9.8 224 4.6 224 32V163.9L52.5 7.4C31.9 -9.8 0 4.6 0 32V352C0 379.4 31.9 393.7 52.5 376.6L224 221.2V352C224 379.4 255.9 393.7 276.5 376.6L448 221.2V372C448 378.6 453.4 384 460 384H500C506.6 384 512 378.6 512 372z" />
+    <glyph glyph-name="fax"
+      unicode="&#xF1AC;"
+      horiz-adv-x="512" d=" M64 320H32C14.33 320 0 305.67 0 288V-32C0 -49.67 14.33 -64 32 -64H64C81.67 -64 96 -49.67 96 -32V288C96 305.67 81.67 320 64 320zM480 288V370.75C480 379.24 476.63 387.37 470.63 393.38L425.37 438.63C419.37 444.63 411.23 448 402.74 448H160C142.33 448 128 433.67 128 416V-32C128 -49.67 142.33 -64 160 -64H480C497.67 -64 512 -49.67 512 -32V256C512 273.67 497.67 288 480 288zM288 16C288 7.16 280.84 0 272 0H240C231.16 0 224 7.16 224 16V48C224 56.84 231.16 64 240 64H272C280.84 64 288 56.84 288 48V16zM288 144C288 135.16 280.84 128 272 128H240C231.16 128 224 135.16 224 144V176C224 184.84 231.16 192 240 192H272C280.84 192 288 184.84 288 176V144zM416 16C416 7.16 408.84 0 400 0H368C359.1600000000001 0 352 7.16 352 16V48C352 56.84 359.1600000000001 64 368 64H400C408.84 64 416 56.84 416 48V16zM416 144C416 135.16 408.84 128 400 128H368C359.1600000000001 128 352 135.16 352 144V176C352 184.84 359.1600000000001 192 368 192H400C408.84 192 416 184.84 416 176V144zM432 256H176V400H384V368C384 359.16 391.1600000000001 352 400 352H432V256z" />
+    <glyph glyph-name="feather-alt"
+      unicode="&#xF56B;"
+      horiz-adv-x="512" d=" M512 448C460.22 444.44 96.44 409.8 71.01 160.39C67.92 133.73 66.17 106.95 65.02 80.15L243.89 258.84C250.14 265.09 260.29 265.09 266.54 258.84S272.79 242.46 266.54 236.21L7.04 -23.03C-2.34 -32.4 -2.34 -47.6 7.04 -56.97C16.42 -66.3399999999999 31.63 -66.3399999999999 41.02 -56.97L98.15 0.1C140.24 0.24 182.3 2.63 224.11 7.46C277.5900000000001 12.9 321.13 33.9300000000001 356.6900000000001 64.0000000000001H255.74L402.53 112.8800000000001C413.78 127.7700000000001 423.9 143.59 432.98 160.0000000000001H351.84L458.38 213.2100000000001C500.29 315.14 510.19 421.74 512 448z" />
+    <glyph glyph-name="feather"
+      unicode="&#xF52D;"
+      horiz-adv-x="512" d=" M467.14 403.16C404.59 465.64 305.4700000000001 467.94 214.86 377.43C136.25 298.91 153.88 316.51 129.11 291.77C68.65 231.38 58.72 140.94 65.47 80.6L243.91 258.85C250.17 265.1 260.31 265.1 266.56 258.85S272.81 242.4700000000001 266.56 236.2200000000001L7.04 -23.03C-2.34 -32.4 -2.34 -47.6 7.04 -56.97C16.42 -66.3399999999999 31.64 -66.3399999999999 41.02 -56.97L107.12 9.0600000000001C159.42 -6.65 279 -9.11 353.95 64H255.76L403.33 113.14C453.32 163.07 439.71 149.32 449.64 160H351.86L483.4 203.8C528.8399999999999 278.26 517.71 352.64 467.14 403.1600000000001z" />
+    <glyph glyph-name="female"
+      unicode="&#xF182;"
+      horiz-adv-x="256" d=" M128 448C163.346 448 192 419.346 192 384S163.346 320 128 320C92.654 320 64 348.654 64 384S92.654 448 128 448M247.283 93.821L199.283 285.8210000000001A24 24 0 0 1 176 304H164.64C141.929 293.557 115.05 293.106 91.36 304H80A24 24 0 0 1 56.717 285.8210000000001L8.717 93.821C4.935 78.695 16.383 64 32 64H88V-40C88 -53.255 98.745 -64 112 -64H144C157.255 -64 168 -53.255 168 -40V64H224C239.591 64 251.071 78.671 247.283 93.821z" />
+    <glyph glyph-name="field-hockey"
+      unicode="&#xF44C;"
+      horiz-adv-x="640" d=" M560.7 448H628C634.6 448 640 442.6 640 436V311.1C640 307.9 638.7 304.9 636.5 302.6L592 258L479 371.1L552.3 444.4C554.5 446.7 557.5 448 560.6999999999999 448zM507.3000000000001 173.3L558.1 224.1L445.1 337.2000000000001L214.4 106.2000000000001C184.4 76.3000000000001 139.4 121.6 169.2000000000001 151.5000000000001C200.4 182.7000000000001 200.4 233.4000000000001 169.2000000000001 264.6C138.0000000000001 295.8000000000001 87.4000000000001 295.8000000000001 56.2 264.6C19.9 228.3 0 180.1 0 128.8C0 22.8 85.6 -63.2 191.8 -63.2C277.9 -63.2 324.3 -10 339.2000000000001 4.8C319.9000000000001 105.3 407.7000000000001 192.4 507.3000000000001 173.3zM480.2 128C427.2 128 384.3 85 384.3 32S427.2 -64 480.1999999999999 -64S576.0999999999999 -21 576.0999999999999 32S533.1999999999999 128 480.1999999999999 128z" />
+    <glyph glyph-name="fighter-jet"
+      unicode="&#xF0FB;"
+      horiz-adv-x="640" d=" M544 224L416 240L368 256H344L227.158 404H266.667C278.3330000000001 404 288 406.625 288 410S278.3330000000001 416 266.6670000000001 416H152V404H168V240H120L53.333 320H18.667L8 309.333V240H16V224H64V221.334L0 213.334V170.667L64 162.667V160H16V144H8V74.667L18.667 64H53.334L120 144H168V-20H152V-32H266.6670000000001C278.334 -32 288 -29.375 288 -26S278.3330000000001 -20 266.6670000000001 -20H227.158L344 128H368L416 144L544 160C640 181.333 640 186.583 640 192C640 197.417 640 202.667 544 224z" />
+    <glyph glyph-name="file-alt"
+      unicode="&#xF15C;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM288 76C288 69.4 282.6 64 276 64H108C101.4 64 96 69.4 96 76V84C96 90.6 101.4 96 108 96H276C282.6 96 288 90.6 288 84V76zM288 140C288 133.4 282.6 128 276 128H108C101.4 128 96 133.4 96 140V148C96 154.6 101.4 160 108 160H276C282.6 160 288 154.6 288 148V140zM288 212V204C288 197.4 282.6 192 276 192H108C101.4 192 96 197.4 96 204V212C96 218.6 101.4 224 108 224H276C282.6 224 288 218.6 288 212zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file-archive"
+      unicode="&#xF1C6;"
+      horiz-adv-x="384" d=" M224 312V448H160.4V416H128.4V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM95.9 416H127.9V384H95.9V416zM128.2 32C95 32 70.2 62.4 76.8 94.9L96.4 192V224H128.4V256H96.4V288H128.4V320H96.4V352H128.4V384H160.4V352H128.4V320H160.4V288H128.4V256H160.4V224H128.4V192H150.5C156.2 192 161.2 187.9 162.3 182.3L179.6 94.6C186 62.2000000000001 161.2 32 128.2 32zM160.9 85C160.9 70.1 146.4 58 128.5 58S96 70 96 85C96 99.9 110.5 112 128.4 112S160.9 99.9 160.9 85zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file-audio"
+      unicode="&#xF1C7;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM160 44C160 33.3 147.1 28 139.5 35.5L104 72H76C69.4 72 64 77.4 64 84V140C64 146.6 69.4 152 76 152H104L139.5 188.5C147.1 196.1 160 190.7 160 180V44zM193.2 91.6C202.3 100.9 202.3 115.7000000000001 193.2 125C171.1 147.8 205.4 181.2 227.6 158.5C254.8 130.6 254.8 86.1 227.6 58.1C205.8 35.8 170.7 68.5 193.2 91.6zM279.2 208.7C333.6 152.8 333.6 63.9 279.2 7.9C257.4 -14.5 222.2 18.2 244.8 41.4C281 78.6 281.1 137.9 244.8 175.2C222.7 198 257.1 231.5 279.2 208.7zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file-certificate"
+      unicode="&#xF5F3;"
+      horiz-adv-x="512" d=" M504.99 342.99L407.0900000000001 440.99C399.3800000000001 448.7 391.0900000000001 447.99 383.99 447.99V319.99H511.99C511.99 327.52 512.63 335.3400000000001 504.99 342.99zM351.99 311.99V447.99H152C138.7 447.99 128 437.29 128 423.99V315C146.3 320 147.58 320 154.45 320C170.68 320 186.55 313.3300000000001 197.98 301.7C206.7 292.11 202.39 294.7200000000001 216.26 290.94C237.33 285.19 253.9 268.41 259.49 247.14C262.6 233.94 260.0900000000001 238.48 270.24 228.15C285.49 212.64 291.5 189.89 285.94 168.79C282.19 155.56 282.23 160.78 285.94 146.67C291.51 125.56 285.49 102.8199999999999 270.25 87.3C260.61 77.9399999999999 263.21 82.42 259.5 68.31C254.61 49.72 241.34 34.5599999999999 224 27.1899999999999V-64H487.99C501.29 -64 511.99 -53.3 511.99 -40V287.99H375.99C362.79 287.99 351.99 298.79 351.99 311.99zM247.42 109.72C254.82 117.25 257.71 128.22 255 138.5100000000001C249.57 159.16 249.56 156.2500000000001 255 176.9300000000001C257.71 187.21 254.82 198.1900000000001 247.42 205.7200000000001C232.56 220.8400000000001 233.99 218.3300000000001 228.55 238.9900000000001C225.84 249.2700000000001 217.95 257.3100000000001 207.84 260.0600000000001C187.56 265.5900000000001 190 264.1600000000001 175.15 279.2700000000001C167.75 286.8000000000001 156.97 289.7400000000001 146.87 286.9800000000001C126.55 281.4400000000001 129.41 281.4500000000001 109.12 286.9800000000001C99.02 289.7400000000001 88.24 286.7900000000001 80.84 279.2700000000001C65.93 264.0900000000001 68.34 265.5700000000001 48.15 260.0600000000001C38.04 257.3000000000001 30.15 249.2700000000001 27.44 238.9900000000001C21.98 218.2500000000001 23.44 220.8600000000001 8.57 205.7200000000001C1.17 198.1900000000001 -1.72 187.22 0.99 176.9300000000001C6.44 156.2200000000001 6.41 159.1400000000001 0.99 138.5200000000001C-1.72 128.2400000000001 1.17 117.2600000000001 8.57 109.7300000000001C23.42 94.6200000000001 22 97.1200000000001 27.44 76.4600000000001C30.15 66.1800000000001 38.04 58.1400000000001 48.15 55.3900000000001C62.46 51.4900000000001 59.67 52.4200000000001 63.99 50.3900000000001V-64L127.99 -32L191.99 -64V50.38C196.3 52.4 193.51 51.48 207.83 55.38C217.94 58.14 225.83 66.17 228.54 76.45C234.01 97.19 232.55 94.58 247.42 109.72zM128 95.99C92.66 95.99 64 124.64 64 159.99S92.66 223.99 128 223.99S192 195.34 192 159.99S163.34 95.99 128 95.99z" />
+    <glyph glyph-name="file-chart-line"
+      unicode="&#xF659;"
+      horiz-adv-x="384" d=" M377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM128 12.8C128 6.4 121.6 0 115.2 0H76.8C70.4 0 64 6.4 64 12.8V83.2000000000001C64 89.6 70.4 96.0000000000001 76.8 96.0000000000001H115.2C121.6 96.0000000000001 128 89.6000000000001 128 83.2000000000001V12.8000000000001zM224 12.8C224 6.4 217.6 0 211.2 0H172.8C166.4 0 160 6.4 160 12.8V211.2C160 217.6 166.4 224 172.8 224H211.2C217.6 224 224 217.6 224 211.2V12.8zM256 147.2000000000001C256 153.6 262.4 160.0000000000001 268.8 160.0000000000001H307.2C313.6 160.0000000000001 320 153.6000000000001 320 147.2000000000001V12.8000000000001C320 6.4000000000001 313.6 1e-13 307.2 1e-13H268.8C262.4000000000001 1e-13 256 6.4 256 12.8000000000001V147.2z" />
+    <glyph glyph-name="file-chart-pie"
+      unicode="&#xF65A;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM136.51 9.47C107.78 20.6300000000001 84.64 43.77 73.47 72.5C43.42 149.86 90.91 223.2 160 237.34V96H301.3400000000001C287.2000000000001 26.91 213.86 -20.58 136.51 9.47zM312.14 128.0200000000001C312.14 128.0100000000001 312.15 128.0000000000001 312.14 128.0000000000001H192V248.14C192 248.15 192.01 248.14 192.02 248.14C258.36 248.13 312.13 194.36 312.14 128.02zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-check"
+      unicode="&#xF316;"
+      horiz-adv-x="384" d=" M384 326.059V320H256V448H262.0590000000001C268.4240000000001 448 274.5290000000001 445.471 279.0300000000001 440.971L376.971 343.03A24.005 24.005 0 0 0 384 326.059zM248 288H384V-40C384 -53.255 373.255 -64 360 -64H24C10.745 -64 0 -53.255 0 -40V424C0 437.255 10.745 448 24 448H224V312C224 298.8 234.8 288 248 288zM313.296 178.268L285.127 206.666C280.4600000000001 211.3710000000001 272.862 211.402 268.1570000000001 206.734L162.12 101.55L116.14 147.902C111.473 152.607 103.874 152.638 99.169 147.97L70.772 119.8C66.067 115.1330000000001 66.036 107.535 70.704 102.83L153.305 19.561C157.972 14.8560000000001 165.57 14.825 170.275 19.4930000000001L313.228 161.2980000000001C317.933 165.965 317.964 173.5630000000001 313.296 178.268z" />
+    <glyph glyph-name="file-code"
+      unicode="&#xF1C9;"
+      horiz-adv-x="384" d=" M384 326.059V320H256V448H262.0590000000001C268.4240000000001 448 274.5290000000001 445.471 279.0300000000001 440.971L376.971 343.03A24.005 24.005 0 0 0 384 326.059zM248 288C234.8 288 224 298.8 224 312V448H24C10.745 448 0 437.255 0 424V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V288H248zM123.206 47.495A5.4 5.4 0 0 0 115.573 47.249L50.707 108.061A5.4 5.4 0 0 0 50.707 115.9400000000001L115.573 176.7520000000001A5.4 5.4 0 0 0 123.206 176.5060000000001L142.785 155.6210000000001A5.4 5.4 0 0 0 142.413 147.8740000000001L101.65 112L142.413 76.126A5.4 5.4 0 0 0 142.785 68.379L123.206 47.495zM174.501 -2.984L147.048 4.986A5.401999999999999 5.401999999999999 0 0 0 143.367 11.6780000000001L204.807 223.3040000000001A5.401999999999999 5.401999999999999 0 0 0 211.499 226.9850000000001L238.951 219.0150000000001A5.4 5.4 0 0 0 242.631 212.3230000000001L181.191 0.6970000000001A5.396999999999999 5.396999999999999 0 0 0 174.501 -2.9839999999999zM335.293 108.061L270.427 47.249A5.4 5.4 0 0 0 262.7940000000001 47.495L243.2140000000001 68.38A5.4 5.4 0 0 0 243.5860000000001 76.127L284.35 112L243.587 147.874A5.4 5.4 0 0 0 243.215 155.6210000000001L262.795 176.506A5.4 5.4 0 0 0 270.428 176.752L335.294 115.94A5.4 5.4 0 0 0 335.293 108.061z" />
+    <glyph glyph-name="file-contract"
+      unicode="&#xF56C;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM64 376C64 380.42 67.58 384 72 384H152C156.42 384 160 380.42 160 376V360C160 355.58 156.42 352 152 352H72C67.58 352 64 355.58 64 360V376zM64 312C64 316.42 67.58 320 72 320H152C156.42 320 160 316.42 160 312V296C160 291.5800000000001 156.42 288 152 288H72C67.58 288 64 291.5800000000001 64 296V312zM256.81 64H304C312.84 64 320 56.84 320 48S312.84 32 304 32H256.81C240.36 32 225.54 41.14 218.17 55.86C215.22 61.78 210.08 62.38 208 62.38S200.78 61.79 197.98 56.19L190.31 40.85A15.986 15.986 0 0 0 176 32.0100000000001C175.62 32.0100000000001 175.25 32.03 174.8600000000001 32.0600000000001C168.4100000000001 32.5100000000001 162.8600000000001 36.8100000000001 160.8300000000001 42.95L144 93.41L133.39 61.53C127.5 43.87 111.01 32 92.39 32H80C71.16 32 64 39.16 64 48S71.16 64 80 64H92.39C97.22 64 101.5 67.08 103.03 71.66L121.22 126.3C124.52 136.11 133.66 142.71 144 142.71S163.48 136.1200000000001 166.77 126.3L180.65 84.66C200.42 100.85 234.7 94.36 246.65 70.5C248.67 66.44 252.61 64 256.81 64zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-csv"
+      unicode="&#xF6DD;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM128 168C128 163.58 124.42 160 120 160H112C103.16 160 96 152.84 96 144V112C96 103.16 103.16 96 112 96H120C124.42 96 128 92.42 128 88V72C128 67.58 124.42 64 120 64H112C85.49 64 64 85.49 64 112V144C64 170.51 85.49 192 112 192H120C124.42 192 128 188.42 128 184V168zM172.27 64H160C155.58 64 152 67.58 152 72V88C152 92.42 155.58 96 160 96H172.27C178.22 96 182.68 99.5 182.68 102.62C182.68 103.92 181.93 105.28 180.56 106.46L158.67 125.23C150.2 132.45 145.34 142.71 145.34 153.37C145.34 174.67 164.36 191.99 187.75 191.99H200C204.42 191.99 208 188.41 208 183.99V167.99C208 163.5699999999999 204.42 159.99 200 159.99H187.73C181.78 159.99 177.32 156.49 177.32 153.37C177.32 152.0699999999999 178.07 150.7099999999999 179.44 149.53L201.33 130.76C209.8 123.54 214.66 113.28 214.66 102.62C214.67 81.33 195.66 64 172.27 64zM256 184V163.2C256 142.93 261.7 123.03 272 106.32C282.3 123.02 288 142.93 288 163.2V184C288 188.42 291.58 192 296 192H312C316.42 192 320 188.42 320 184V163.2C320 127.72 307.12 94.31 283.7200000000001 69.11C280.7000000000001 65.86 276.4500000000001 64 272 64S263.3 65.86 260.28 69.11C236.88 94.31 224 127.72 224 163.2000000000001V184C224 188.42 227.58 192 232 192H248C252.42 192 256 188.42 256 184zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-download"
+      unicode="&#xF56D;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM300.45 100.64L204.03 4.94C197.38 -1.67 186.64 -1.67 179.99 4.94L83.57 100.64C73.42 110.71 80.54 128 94.82 128H160V208C160 216.84 167.16 224 176 224H208C216.84 224 224 216.84 224 208V128H289.18C303.46 128 310.58 110.71 300.45 100.64zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-edit"
+      unicode="&#xF31C;"
+      horiz-adv-x="384" d=" M384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1zM248 288H384V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288zM188.4 178.4L93.4 83.4L88 35.2C87.3 28.8 92.7 23.3 99.2 24L147.4 29.4L242.4 124.4C244.4 126.4 244.4 129.6 242.4 131.6L195.6 178.4C193.6 180.4 190.4 180.4 188.4 178.4zM298.1 208.7L272.7000000000001 234.1C264.8000000000001 242 252.0000000000001 242 244.1000000000001 234.1L218.1000000000001 208.1C216.1000000000001 206.1 216.1000000000001 202.9 218.1000000000001 200.9L264.9000000000001 154.1C266.9000000000001 152.1 270.1 152.1 272.1 154.1L298.1 180.1C306 188 306 200.8 298.1 208.7z" />
+    <glyph glyph-name="file-excel"
+      unicode="&#xF1C3;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM284.1 205.5L224 112L284.1 18.5C289.2000000000001 10.5 283.5 0 274 0H239.1C234.7 0 230.6 2.4 228.5 6.3C208.9 42.5 192 75 192 75C185.6 60.2 182 55 155.4 6.2C153.3 2.3 149.3 -0.1 144.9 -0.1H110C100.5 -0.1 94.8 10.4 99.9 18.4L160.2 111.9L99.9 205.4C94.7 213.4 100.5 223.9 110 223.9H144.8C149.2 223.9 153.3 221.5 155.4 217.6C181.5 168.8 175.4 184 192 149.1C192 149.1 198.1 160.8 228.6 217.6C230.7 221.5 234.8 223.9 239.2 223.9H274C283.5 224 289.2 213.5 284.1 205.5zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file-exclamation"
+      unicode="&#xF31A;"
+      horiz-adv-x="384" d=" M384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1zM384 288V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288H384zM152.8 227.2L160 115.2C160.4 108.9 165.6 104 172 104H212C218.3 104 223.6 108.9 224 115.2L231.2 227.2C231.6 234.1 226.2 240 219.2 240H164.8C157.9 240 152.4 234.2 152.8 227.2zM232 48C232 70.1 214.1 88 192 88S152 70.1 152 48S169.9 8 192 8S232 25.9 232 48z" />
+    <glyph glyph-name="file-export"
+      unicode="&#xF56E;"
+      horiz-adv-x="576" d=" M384 326.1C384 332.4 381.5 338.5 377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1zM192 112V144C192 152.84 199.16 160 208 160H384V288H248C234.8 288 224 298.8 224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V96H208C199.16 96 192 103.16 192 112zM571.05 140.02L475.35 236.45C465.29 246.59 447.99 239.46 447.99 225.18V160H384V96H447.99V30.82C447.99 16.54 465.28 9.41 475.35 19.55L571.0500000000001 115.97C577.6500000000001 122.6300000000001 577.6500000000001 133.37 571.0500000000001 140.0200000000001z" />
+    <glyph glyph-name="file-image"
+      unicode="&#xF1C5;"
+      horiz-adv-x="384" d=" M384 326.059V320H256V448H262.0590000000001A24 24 0 0 0 279.029 440.971L376.9700000000001 343.03A24.002000000000002 24.002000000000002 0 0 0 384 326.059zM248 288C234.8 288 224 298.8 224 312V448H24C10.745 448 0 437.255 0 424V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V288H248zM112.545 272C139.055 272 160.545 250.51 160.545 224S139.055 176 112.545 176S64.545 197.49 64.545 224S86.036 272 112.545 272zM320.545 32H64.545L65.03 80.485L104.545 120C109.231 124.686 116.344 124.201 121.03 119.515L160.545 80L264.06 183.515C268.746 188.201 276.344 188.201 281.031 183.515L320.545 144V32z" />
+    <glyph glyph-name="file-import"
+      unicode="&#xF56F;"
+      horiz-adv-x="512" d=" M16 160C7.16 160 0 152.84 0 144V112C0 103.16 7.16 96 16 96H128V160H16zM352 312V448H152C138.7 448 128 437.3 128 424V160H255.99V225.18C255.99 239.46 273.2800000000001 246.59 283.35 236.45L379.05 140.02C385.6500000000001 133.37 385.6500000000001 122.63 379.05 115.98L283.35 19.5599999999999C273.29 9.42 255.99 16.55 255.99 30.8299999999999V96H128V-40C128 -53.3 138.7 -64 152 -64H488C501.3 -64 512 -53.3 512 -40V288H376C362.8 288 352 298.8 352 312zM505 343L407.1 441C402.6 445.5 396.5 448 390.1 448H384V320H512V326.1C512 332.4 509.5 338.5 505 343z" />
+    <glyph glyph-name="file-invoice-dollar"
+      unicode="&#xF571;"
+      horiz-adv-x="384" d=" M377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM64 376C64 380.42 67.58 384 72 384H152C156.42 384 160 380.42 160 376V360C160 355.58 156.42 352 152 352H72C67.58 352 64 355.58 64 360V376zM64 296V312C64 316.42 67.58 320 72 320H152C156.42 320 160 316.42 160 312V296C160 291.5800000000001 156.42 288 152 288H72C67.58 288 64 291.5800000000001 64 296zM208 32.12V8C208 3.58 204.42 0 200 0H184C179.58 0 176 3.58 176 8V32.29C164.71 32.87 153.73 36.81 144.63 43.64C140.73 46.5700000000001 140.53 52.41 144.06 55.78L155.81 66.99C158.58 69.63 162.7 69.75 165.94 67.72C169.81 65.3 174.2 64 178.76 64H206.87C213.37 64 218.67 69.92 218.67 77.19C218.67 83.14 215.06 88.38 209.9 89.92L164.9 103.42C146.31 109 133.32 126.84 133.32 146.81C133.32 171.33 152.37 191.25 175.99 191.88V216C175.99 220.42 179.57 224 183.99 224H199.99C204.41 224 207.99 220.42 207.99 216V191.71C219.28 191.13 230.26 187.2 239.36 180.36C243.26 177.43 243.46 171.59 239.93 168.22L228.18 157.01C225.41 154.37 221.29 154.25 218.05 156.28C214.18 158.71 209.79 160 205.23 160H177.12C170.62 160 165.32 154.08 165.32 146.81C165.32 140.86 168.93 135.62 174.09 134.08L219.09 120.58C237.68 115 250.67 97.16 250.67 77.19C250.67 52.66 231.62 32.75 208 32.12z" />
+    <glyph glyph-name="file-invoice"
+      unicode="&#xF570;"
+      horiz-adv-x="384" d=" M288 192H96V128H288V192zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM64 376C64 380.42 67.58 384 72 384H152C156.42 384 160 380.42 160 376V360C160 355.58 156.42 352 152 352H72C67.58 352 64 355.58 64 360V376zM64 312C64 316.42 67.58 320 72 320H152C156.42 320 160 316.42 160 312V296C160 291.5800000000001 156.42 288 152 288H72C67.58 288 64 291.5800000000001 64 296V312zM320 8C320 3.58 316.42 0 312 0H232C227.58 0 224 3.58 224 8V24C224 28.42 227.58 32 232 32H312C316.42 32 320 28.42 320 24V8zM320 208V112C320 103.16 312.84 96 304 96H80C71.16 96 64 103.16 64 112V208C64 216.84 71.16 224 80 224H304C312.84 224 320 216.84 320 208z" />
+    <glyph glyph-name="file-medical-alt"
+      unicode="&#xF478;"
+      horiz-adv-x="448" d=" M288 312V448H88C74.7 448 64 437.3 64 424V192H8C3.6 192 0 188.4 0 184V168C0 163.6 3.6 160 8 160H148.9C151.9 160 154.7 158.3 156.1 155.6L176 115.8L232.8 229.5C235.7 235.4 244.2 235.4 247.1 229.5L281.8 160H352C360.8 160 368 152.8 368 144S360.8 128 352 128H262.1L240 172.2L183.2 58.5C180.3 52.6 171.8 52.6 168.9 58.5L134.1 128H64V-40C64 -53.3 74.7 -64 88 -64H424C437.3 -64 448 -53.3 448 -40V288H312C298.8 288 288 298.8 288 312zM441 343L343.1 441C338.6 445.5 332.5 448 326.1 448H320V320H448V326.1C448 332.4 445.5 338.5 441 343z" />
+    <glyph glyph-name="file-medical"
+      unicode="&#xF477;"
+      horiz-adv-x="384" d=" M377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM288 152V104C288 99.6 284.4 96 280 96H224V40C224 35.6 220.4 32 216 32H168C163.6 32 160 35.6 160 40V96H104C99.6 96 96 99.6 96 104V152C96 156.4 99.6 160 104 160H160V216C160 220.4 163.6 224 168 224H216C220.4 224 224 220.4 224 216V160H280C284.4 160 288 156.4 288 152z" />
+    <glyph glyph-name="file-minus"
+      unicode="&#xF318;"
+      horiz-adv-x="384" d=" M384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1zM248 288H384V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288zM284 96C290.6 96 296 101.4 296 108V148C296 154.6 290.6 160 284 160H100C93.4 160 88 154.6 88 148V108C88 101.4 93.4 96 100 96H284z" />
+    <glyph glyph-name="file-pdf"
+      unicode="&#xF1C1;"
+      horiz-adv-x="384" d=" M181.9 191.9C176.9 207.9 177 238.8 179.9 238.8C188.3 238.8 187.5 201.9 181.9 191.9zM180.2 144.7C172.5 124.5 162.9 101.4 151.8 82C170.1 89 190.8 99.2 214.7 103.9C202 113.5 189.8 127.3 180.2 144.7zM86.1 19.9C86.1 19.1 99.3 25.3 121 60.1C114.3 53.8 91.9 35.6 86.1 19.9zM248 288H384V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288zM240 116.2C220 128.4 206.7 145.2 197.3 170C201.8 188.5 208.9 216.6 203.5 234.2C198.8 263.6 161.1 260.7 155.7 241C150.7 222.7 155.3 196.9 163.8 164C152.2 136.4 135.1 99.4 123 78.2C122.9 78.2 122.9 78.1 122.8 78.1C95.7 64.2 49.2 33.6 68.3 10.1C73.9 3.2 84.3 0.1 89.8 0.1C107.7 0.1 125.5 18.1 150.9 61.9C176.7 70.4 205 81 229.9 85.1C251.6 73.3 277 65.6 293.9 65.6C323.1 65.6 325.1 97.6 313.6 108.9999999999999C299.7 122.6 259.3 118.6999999999999 240 116.1999999999999zM377 343L279 441C274.5 445.5 268.4 448 262 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM302.9 87.7C307 90.4 300.4 99.6 260.1 96.7C297.2 80.9 302.9 87.7 302.9 87.7z" />
+    <glyph glyph-name="file-plus"
+      unicode="&#xF319;"
+      horiz-adv-x="384" d=" M384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1zM248 288H384V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288zM296 148C296 154.6 290.6 160 284 160H224V220C224 226.6 218.6 232 212 232H172C165.4 232 160 226.6 160 220V160H100C93.4 160 88 154.6 88 148V108C88 101.4 93.4 96 100 96H160V36C160 29.4 165.4 24 172 24H212C218.6 24 224 29.4 224 36V96H284C290.6 96 296 101.4 296 108V148z" />
+    <glyph glyph-name="file-powerpoint"
+      unicode="&#xF1C4;"
+      horiz-adv-x="384" d=" M193.7 176.8C202.5 176.8 209.2 174.1 214 168.7C223.6 157.8 223.8 136 213.8 124.6C208.9 119 201.9 116.1 192.7 116.1H165.8V176.8H193.7zM377 343L279 441C274.5 445.5 268.4 448 262 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM277 146.8C277 56.5 188.2 69.2000000000001 165.9 69.2000000000001V12C165.9 5.4 160.5 0 153.9 0H123.1C116.5 0 111.1 5.4 111.1 12V211.8C111.1 218.4 116.5 223.8 123.1 223.8H204.1C248.6 223.8 277 191 277 146.8z" />
+    <glyph glyph-name="file-prescription"
+      unicode="&#xF572;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM292.53 132.52L303.84 121.21C310.09 114.96 310.09 104.83 303.84 98.58L273.94 68.68L304 38.62C310.25 32.37 310.25 22.24 304 15.99L292.69 4.68C286.44 -1.57 276.31 -1.57 270.06 4.68L240 34.75L209.94 4.69C203.69 -1.56 193.56 -1.56 187.31 4.69L176 16C169.75 22.25 169.75 32.38 176 38.63L206.06 68.69L146.74 128H128V80C128 71.16 120.84 64 112 64H96C87.16 64 80 71.16 80 80V240C80 248.84 87.16 256 96 256H176C211.35 256 240 227.35 240 192C240 167.78 226.38 146.95 206.54 136.08L240 102.62L269.9 132.52C276.15 138.77 286.28 138.77 292.53 132.52zM176 176H128V208H176C184.82 208 192 200.82 192 192S184.82 176 176 176zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file-signature"
+      unicode="&#xF573;"
+      horiz-adv-x="576" d=" M218.17 23.86C215.22 29.78 210.08 30.38 208 30.38S200.78 29.79 197.98 24.19L190.31 8.85C183.94 -3.9299999999999 165.28 -2.52 160.83 10.94L144 61.41L133.39 29.53C127.5 11.87 111.01 0 92.39 0H80C71.16 0 64 7.16 64 16S71.16 32 80 32H92.39C97.22 32 101.5 35.08 103.03 39.66L121.22 94.3C124.52 104.11 133.66 110.71 144 110.71S163.48 104.1200000000001 166.77 94.3L180.65 52.66C200.4 68.85 234.71 62.36 246.65 38.5C248.54 34.72 252.14 32.55 256.01 32.24V114.36L384.01 241.45V288H248C234.8 288 224 298.8 224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V0L256 0.11C239.88 0.42 225.42 9.39 218.17 23.86zM384 326.1C384 332.4 381.5 338.5 377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1zM288 101.04V32H356.99L518.6700000000001 194.78L450.7900000000001 262.66L288 101.04zM568.54 280.67L536.67 312.54C526.7299999999999 322.48 510.6 322.48 500.66 312.54L473.41 285.29L541.29 217.41L568.54 244.66C578.49 254.6 578.49 270.73 568.54 280.67z" />
+    <glyph glyph-name="file-spreadsheet"
+      unicode="&#xF65B;"
+      horiz-adv-x="384" d=" M296 80H248V32H296V80zM216 160H168V112H216V160zM296 160H248V112H296V160zM216 80H168V32H216V80zM224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM328 208V16C328 7.16 320.84 0 312 0H72C63.16 0 56 7.16 56 16V208C56 216.84 63.16 224 72 224H312C320.84 224 328 216.84 328 208zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343zM136 160H88V112H136V160zM136 80H88V32H136V80z" />
+    <glyph glyph-name="file-times"
+      unicode="&#xF317;"
+      horiz-adv-x="384" d=" M384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1zM248 288H384V-40C384 -53.3 373.3 -64 360 -64H24C10.7 -64 0 -53.3 0 -40V424C0 437.3 10.7 448 24 448H224V312C224 298.8 234.8 288 248 288zM237.3 128L285.4000000000001 176.1C290.1 180.8 290.1 188.4 285.4000000000001 193.1L257.1 221.4C252.4000000000001 226.1 244.8 226.1 240.1 221.4L192 173.3L143.9 221.4C139.2 226.1 131.6 226.1 126.9 221.4L98.6 193.1C93.9 188.4 93.9 180.8 98.6 176.1L146.7 128L98.6 79.9C93.9 75.2 93.9 67.6 98.6 62.9L126.9 34.6C131.6 29.9 139.2 29.9 143.9 34.6L192 82.7L240.1 34.6C244.8 29.9 252.4000000000001 29.9 257.1 34.6L285.4000000000001 62.9C290.1 67.6 290.1 75.2 285.4000000000001 79.9L237.3 128z" />
+    <glyph glyph-name="file-upload"
+      unicode="&#xF574;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM289.18 95.99H224V15.99C224 7.15 216.84 -0.01 208 -0.01H176C167.16 -0.01 160 7.15 160 15.99V95.99H94.82C80.54 95.99 73.41 113.28 83.55 123.35L179.97 219.05C186.62 225.6600000000001 197.36 225.6600000000001 204.01 219.05L300.43 123.35C310.58 113.28 303.46 95.99 289.18 95.99zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-user"
+      unicode="&#xF65C;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM304 38.4V19.2C304 8.59 293.9700000000001 0 281.6 0H102.4C90.03 0 80 8.6 80 19.2V38.4C80 70.21 110.09 96 147.2 96H152.15C164.44 90.88 177.88 88 192 88S219.56 90.88 231.85 96H236.8C273.91 96 304 70.21 304 38.4zM192 128C156.65 128 128 156.65 128 192S156.65 256 192 256S256 227.35 256 192S227.35 128 192 128zM377 343L279.1 441C274.6 445.5 268.5 448 262.1 448H256V320H384V326.1C384 332.4 381.5 338.5 377 343z" />
+    <glyph glyph-name="file-video"
+      unicode="&#xF1C8;"
+      horiz-adv-x="384" d=" M384 326.059V320H256V448H262.0590000000001C268.4240000000001 448 274.5290000000001 445.471 279.0300000000001 440.971L376.971 343.03A24.005 24.005 0 0 0 384 326.059zM224 312V448H24C10.745 448 0 437.255 0 424V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V288H248C234.8 288 224 298.8 224 312zM320 167.984V56.0210000000001C320 34.5760000000001 294.057 24.0230000000001 279.029 39.0500000000001L224 94.059V56C224 42.745 213.255 32 200 32H88C74.745 32 64 42.745 64 56V168C64 181.255 74.745 192 88 192H200C213.255 192 224 181.255 224 168V129.941L279.029 184.954C294.04 199.964 320 189.445 320 167.984z" />
+    <glyph glyph-name="file-word"
+      unicode="&#xF1C2;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM281.1 192H305C312.7 192 318.4 184.9 316.7 177.3L278.7 9.3C277.5 3.8 272.6 0 267 0H229C223.5 0 218.7 3.8 217.4 9.1C191.6 112.6 196.6 90.3 191.8 119.6H191.3C190.2 105.3 188.9 102.2000000000001 165.7 9.1C164.4 3.8 159.6 0 154.1 0H117C111.4 0 106.5 3.9 105.3 9.4L67.5 177.4C65.8 184.9 71.5 192 79.2 192H103.7C109.4 192 114.4 188 115.5 182.3C131.1 104.3 135.6 72.8 136.5 60.1C138.1 70.3 143.8 92.8 165.9 182.8C167.2 188.2 172 191.9 177.6 191.9H206.7C212.3 191.9 217.1 188.1 218.4 182.7000000000001C242.4 82.3000000000001 247.2 58.7000000000001 248 53.3000000000001C247.8 64.5000000000001 245.4 71.1000000000001 269.6 182.5000000000001C270.6 188.1000000000001 275.5 192.0000000000001 281.1 192.0000000000001zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="file"
+      unicode="&#xF15B;"
+      horiz-adv-x="384" d=" M224 312V448H24C10.7 448 0 437.3 0 424V-40C0 -53.3 10.7 -64 24 -64H360C373.3 -64 384 -53.3 384 -40V288H248C234.8 288 224 298.8 224 312zM384 326.1V320H256V448H262.1C268.5 448 274.6 445.5 279.1 441L377 343C381.5 338.5 384 332.4 384 326.1z" />
+    <glyph glyph-name="fill-drip"
+      unicode="&#xF576;"
+      horiz-adv-x="576" d=" M512 128S448 35.35 448 0C448 -35.35 476.66 -64 512 -64S576 -35.35 576 0S512 128 512 128zM502.63 230.94L294.94 438.63C288.69 444.88 280.5 448 272.31 448S255.93 444.88 249.69 438.63L168.11 357.05L81.93 443.24C75.68 449.49 65.55 449.49 59.31 443.24L36.69 420.62C30.45 414.37 30.45 404.24 36.69 398L122.88 311.82L28.12 217.06C-9.37 179.58 -9.37 118.8 28.12 81.31L145.31 -35.88C164.05 -54.62 188.62 -64 213.18 -64C237.75 -64 262.31 -54.63 281.05 -35.88L502.62 185.69C515.12 198.19 515.12 218.44 502.63 230.94zM386.41 159.97H65.93C67.29 163.81 69.5 167.9500000000001 73.36 171.8L86.51 184.95L168.12 266.56L226.72 207.96C239.21 195.47 259.4700000000001 195.47 271.96 207.96S284.45 240.71 271.96 253.2L213.36 311.8L272.31 370.75L434.75 208.31L386.41 159.97z" />
+    <glyph glyph-name="fill"
+      unicode="&#xF575;"
+      horiz-adv-x="512" d=" M502.63 230.94L294.94 438.63C288.69 444.88 280.5 448 272.31 448S255.93 444.88 249.69 438.63L168.11 357.05L81.93 443.23C75.69 449.48 65.55 449.48 59.31 443.23L36.69 420.62C30.45 414.37 30.45 404.24 36.69 397.99L122.88 311.81L28.12 217.05C-9.37 179.56 -9.37 118.79 28.12 81.3L145.31 -35.89C164.06 -54.63 188.62 -64.01 213.18 -64.01C237.75 -64.01 262.31 -54.64 281.06 -35.89L502.63 185.68C515.12 198.18 515.12 218.44 502.63 230.94zM386.41 159.97H65.93C67.29 163.81 69.5 167.9500000000001 73.36 171.8L86.51 184.95L168.12 266.56L226.73 207.96C239.2200000000001 195.47 259.48 195.47 271.9700000000001 207.96C284.4600000000001 220.45 284.4600000000001 240.71 271.9700000000001 253.2L213.36 311.8L272.31 370.75L434.76 208.31L386.41 159.97z" />
+    <glyph glyph-name="film-alt"
+      unicode="&#xF3A0;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="film"
+      unicode="&#xF008;"
+      horiz-adv-x="512" d=" M488 384H480V364C480 357.4 474.6 352 468 352H428C421.4 352 416 357.4 416 364V384H96V364C96 357.4 90.6 352 84 352H44C37.4 352 32 357.4 32 364V384H24C10.7 384 0 373.3 0 360V24C0 10.7 10.7 0 24 0H32V20C32 26.6 37.4 32 44 32H84C90.6 32 96 26.6 96 20V0H416V20C416 26.6 421.4 32 428 32H468C474.6 32 480 26.6 480 20V0H488C501.3 0 512 10.7 512 24V360C512 373.3 501.3 384 488 384zM96 76C96 69.4 90.6 64 84 64H44C37.4 64 32 69.4 32 76V116C32 122.6 37.4 128 44 128H84C90.6 128 96 122.6 96 116V76zM96 172C96 165.4 90.6 160 84 160H44C37.4 160 32 165.4 32 172V212C32 218.6 37.4 224 44 224H84C90.6 224 96 218.6 96 212V172zM96 268C96 261.4 90.6 256 84 256H44C37.4 256 32 261.4 32 268V308C32 314.6 37.4 320 44 320H84C90.6 320 96 314.6 96 308V268zM368 60C368 53.4 362.6 48 356 48H156C149.4 48 144 53.4 144 60V156C144 162.6 149.4 168 156 168H356C362.6 168 368 162.6 368 156V60zM368 228C368 221.4 362.6 216 356 216H156C149.4 216 144 221.4 144 228V324C144 330.6 149.4 336 156 336H356C362.6 336 368 330.6 368 324V228zM480 76C480 69.4 474.6 64 468 64H428C421.4 64 416 69.4 416 76V116C416 122.6 421.4 128 428 128H468C474.6 128 480 122.6 480 116V76zM480 172C480 165.4 474.6 160 468 160H428C421.4 160 416 165.4 416 172V212C416 218.6 421.4 224 428 224H468C474.6 224 480 218.6 480 212V172zM480 268C480 261.4 474.6 256 468 256H428C421.4 256 416 261.4 416 268V308C416 314.6 421.4 320 428 320H468C474.6 320 480 314.6 480 308V268z" />
+    <glyph glyph-name="filter"
+      unicode="&#xF0B0;"
+      horiz-adv-x="512" d=" M487.976 448H24.028C2.71 448 -8.047 422.134 7.058 407.029L192 222.059V16C192 8.169 195.821 0.83 202.237 -3.662L282.237 -59.642C298.02 -70.69 320 -59.493 320 -39.98V222.059L504.947 407.029C520.021 422.104 509.338 448 487.976 448z" />
+    <glyph glyph-name="fingerprint"
+      unicode="&#xF577;"
+      horiz-adv-x="512" d=" M256.12 202.04C242.87 202.04 232.12 191.3 232.12 178.04C233.26 105.79 223.98 36.14 204.42 -33.51C201.69 -43.2300000000001 206.57 -64 227.54 -64C238.02 -64 247.6500000000001 -57.08 250.63 -46.48C264.1600000000001 1.43 281.67 78.93 280.11 178.04C280.12 191.29 269.38 202.04 256.12 202.04zM255.26 283.77C194 283.8400000000001 151.25 236.7 152.1 182.68C152.85 134.74 148.35 86.77 138.73 40.13C136.04 27.15 144.4 14.44 157.37 11.77C170.42 9.1 183.04 17.43 185.73 30.41C196.07 80.5 200.9 131.99 200.1 183.43C199.69 209.38 220.0200000000001 235.92 254.55 235.77C285.86 235.3 311.7 210.43 312.17 180.3C312.94 132.25 309.36 83.97 301.56 36.7499999999999C299.39 23.6899999999999 308.25 11.3299999999999 321.32 9.17C341.29 5.84 348.13 24.27 348.9 28.9399999999999C357.18 78.9699999999999 360.96 130.1499999999999 360.17 181.05C359.29 236.85 312.23 282.93 255.26 283.77zM144.57 303.55C134.27 311.89 119.2 310.35 110.81 300.07C85.19 268.57 71.42 228.79 72.06 188.07C72.65 150.49 69.59 112.8 62.95 76.02C60.61 62.97 69.26 50.49 82.31 48.13C102.42 44.63 109.38 62.94 110.2 67.49C117.39 107.33 120.7 148.15 120.06 188.82C119.59 218.7 129.26 246.7 148.06 269.79C156.41 280.07 154.85 295.18 144.57 303.55zM254.04 365.88C238.63 366.29 223.17 364.44 208.26 360.91C195.37 357.85 187.39 344.93 190.43 332.02C193.49 319.13 206.43 311.19 219.32 314.19C230.37 316.8 241.79 317.9600000000001 253.32 317.88C328.75 316.75 391.05 256.38 392.2 183.3C392.79 145.42 390.92 107.1899999999999 386.62 69.67C385.12 56.4999999999999 394.57 44.59 407.73 43.09C424.4500000000001 41.14 433.24 54.97 434.31 64.2A929.06 929.06 0 0 1 440.2 184.05C438.64 282.8 355.13 364.38 254.04 365.88zM506.11 244.43C503.25 257.35 490.6 265.63 477.5 262.7C464.56 259.84 456.38 247.04 459.24 234.09C463.95 212.68 464.15 196.68 463.94 172.49C463.83 159.22 474.49 148.4 487.74 148.29H487.94C501.11 148.29 511.83 158.9 511.94 172.09C512.12 194.27 512.34 216.2 506.11 244.43zM465.99 335.15C417.29 404.54 337.6 446.71 252.81 447.98C183.02 448.82 118.47 423.09 70.46 375.06C24.09 328.63 -0.9 266.9600000000001 0.14 201.35L0.02 179.88C-0.37 166.63 10.05 155.57 23.3 155.19C23.53 155.17 23.78 155.17 24.02 155.17C36.94 155.17 47.61 165.47 47.99 178.47L48.15 202.11C47.32 254.61 67.31 303.9700000000001 104.43 341.11C143.19 379.9100000000001 195.77 400.7800000000001 252.11 399.9700000000001C321.56 398.94 386.8400000000001 364.4100000000001 426.73 307.5800000000001C434.3400000000001 296.7200000000001 449.29 294.13 460.15 301.7200000000001C470.99 309.3400000000001 473.61 324.31 465.99 335.15z" />
+    <glyph glyph-name="fire-alt"
+      unicode="&#xF7E4;"
+      horiz-adv-x="448" d=" M323.56 396.8C302.76 377.5 283.98 357.21 267.3400000000001 336.83C240.08 374.38 206.28 412.4700000000001 168 448C69.74 356.83 0 238.04 0 166.4C0 39.15 100.29 -64 224 -64S448 39.15 448 166.4C448 219.67 396.02 329.54 323.56 396.8zM304.0900000000001 56.15C282.43 40.99 255.72 32 226.86 32C154.71 32 96 79.74 96 157.25C96 195.86 120.31 229.88 168.79 288C175.72 280.02 267.62 162.66 267.62 162.66L326.25 229.54C330.39 222.69 334.1600000000001 215.99 337.52 209.57C364.87 157.38 353.33 90.6 304.09 56.15z" />
+    <glyph glyph-name="fire-extinguisher"
+      unicode="&#xF134;"
+      horiz-adv-x="448" d=" M434.027 421.671L266.027 393.671C254.693 391.782 256 380.2 256 376H197.668C208.353 411.892 181.446 448 144 448C104.565 448 77.632 408.324 91.772 371.7970000000001C39.733 358.746 16.391 317.584 1.723 280.913C-3.2 268.606 2.786 254.639 15.093 249.716C27.41 244.79 41.372 250.791 46.289 263.086C75.058 335.01 106.964 328 168 328V300.924C126.457 290.062 96 251.689 96 206.795V-40C96 -53.255 106.745 -64 120 -64H264C277.255 -64 288 -53.255 288 -40V208C288 252.731 257.404 290.312 216 300.9700000000001V328H256C256 325.026 254.297 312.284 266.027 310.329L434.027 282.329C441.342 281.11 448 286.75 448 294.166V409.834C448 417.25 441.342 422.89 434.027 421.671zM144 376C135.178 376 128 383.178 128 392S135.178 408 144 408S160 400.822 160 392S152.822 376 144 376z" />
+    <glyph glyph-name="fire-smoke"
+      unicode="&#xF74B;"
+      horiz-adv-x="640" d=" M528 160C490.9 160 458.3 141.7 437.9 113.9C418.4 159.8 373 192 320 192S221.6 159.8 202.1 113.9C181.7 141.7 149.1 160 112 160C50.1 160 0 109.9 0 48S50.1 -64 112 -64H528C589.9 -64 640 -13.9 640 48S589.9 160 528 160zM195.7 164.8C205.4 176.8 217 187.1 229.6 195.8C224.9 207.4 222.2 220.5 222.2 235.1C222.2 264.9000000000001 240.4 291.2000000000001 276.6 336.2000000000001C281.8 330 350.4 239.3 350.4 239.3L394.2 291C397.3 285.7 400.1 280.5 402.6 275.6C415 251.1 416.5 222.5 407.7 197.8C421.4 188.8 433.8 177.8 444.2 165C457.7 174.7 472.8 181.7 488.7 186.3C493.3 201.8 495.9 218.2 495.9 235.2C495.9 275.5 455.1 358.6 398.1 409.4C381.8 394.8 367 379.5 353.9 364C332.6 392.3 306.1 421.1 276 448C198.8 379.1 144 289.2 144 235C144 218 146.6 201.6 151.2 186.1C167.1 181.5 182.2 174.5 195.7 164.8z" />
+    <glyph glyph-name="fire"
+      unicode="&#xF06D;"
+      horiz-adv-x="384" d=" M216 424.14C216 447.94 185.35 456.91 171.85 437.18C48 256.15 224 248 224 160C224 124.37 194.89 95.54 159.15 96.01C123.98 96.46 96 125.78 96 160.95V246.46C96 268.16 69.53 278.69 54.57 262.96C27.8 234.84 0 186.67 0 128C0 22.13 86.13 -64 192 -64S384 22.13 384 128C384 298.29 216 321 216 424.14z" />
+    <glyph glyph-name="fireplace"
+      unicode="&#xF79A;"
+      horiz-adv-x="640" d=" M32 -64H128V64C128 170 214 256 320 256S512 170 512 64V-64H608V320H32V-64zM342.3 136.4C328.3 155.2 310.9000000000001 174.2 291.2 192C240.7 146.4 204.8 87 204.8 51.2C204.8 -12.4 256.4 -64 320 -64S435.2 -12.4 435.2 51.2C435.2 77.8 408.5 132.8 371.2 166.4C360.5 156.8 350.8 146.6 342.3 136.4zM357.8 -0.5C347.2 -8.2 334.1 -12.8 320 -12.8C284.7 -12.8 256 11.6 256 51.2C256 70.9 267.9 88.3 291.6 118C295 113.9 339.9000000000001 53.9 339.9000000000001 53.9L368.6 88.1C370.6 84.6 372.5 81.2 374.1 77.9C387.5 51.3 381.9000000000001 17.1 357.8 -0.5zM624 448H16C7.2 448 0 440.8 0 432V368C0 359.2 7.2 352 16 352H624C632.8 352 640 359.2 640 368V432C640 440.8 632.8 448 624 448z" />
+    <glyph glyph-name="first-aid"
+      unicode="&#xF479;"
+      horiz-adv-x="576" d=" M0 368V16C0 -10.5 21.5 -32 48 -32H96V416H48C21.5 416 0 394.5 0 368zM128 -32H448V416H128V-32zM192 216C192 220.4 195.6 224 200 224H256V280C256 284.4 259.6 288 264 288H312C316.4 288 320 284.4 320 280V224H376C380.4 224 384 220.4 384 216V168C384 163.6 380.4 160 376 160H320V104C320 99.6 316.4 96 312 96H264C259.6 96 256 99.6 256 104V160H200C195.6 160 192 163.6 192 168V216zM528 416H480V-32H528C554.5 -32 576 -10.5 576 16V368C576 394.5 554.5 416 528 416z" />
+    <glyph glyph-name="fish"
+      unicode="&#xF578;"
+      horiz-adv-x="576" d=" M327.1 352C237.13 352 158.56 297.23 114.83 250.37L27.5 316.42C15.37 325.6 -2.74 315.82 0.36 301.76L24.54 192L0.35 82.23C-2.75 68.17 15.36 58.4 27.49 67.57L114.82 133.62C158.55 86.77 237.13 32 327.1 32C464.56 32 576 160 576 192S464.56 352 327.1 352zM414.5300000000001 168C401.2800000000001 168 390.5300000000001 178.75 390.5300000000001 192C390.5300000000001 205.26 401.2800000000001 216 414.5300000000001 216C427.79 216 438.5300000000001 205.26 438.5300000000001 192C438.5300000000001 178.75 427.7800000000001 168 414.5300000000001 168z" />
+    <glyph glyph-name="fist-raised"
+      unicode="&#xF6DE;"
+      horiz-adv-x="384" d=" M255.98 288V432C255.98 440.84 248.82 448 239.98 448H207.98C199.14 448 191.98 440.84 191.98 432V285.07C197 286.85 202.32 288 207.95 288H255.98zM383.98 192.01C383.9700000000001 227.35 355.32 256 319.99 256H207.85C199.07 256 191.95 248.93 191.95 240.15V239.59C191.95 213.32 213.25 192 239.52 192H274.78C284.46 192 287.98 188.42 287.98 184V167.8C287.98 163.51 284.39 160.0200000000001 280.1 159.8C235.58 157.5200000000001 215.94 135.09 184.05 87.25L177.74 77.78A7.993999999999999 7.993999999999999 0 0 0 166.65 75.56L153.34 84.4399999999999A7.993999999999999 7.993999999999999 0 0 0 151.12 95.5299999999999L157.43 104.9999999999999C173.16 128.6 187.63 148.2599999999999 204.74 163.0799999999999C187.47 168.5899999999999 173.34 181.1999999999999 165.87 197.5299999999999C159.28 194.1199999999999 151.91 192.0099999999999 144 192.0099999999999H111.9999999999999C99.6599999999999 192.0099999999999 88.51 196.8199999999999 79.9999999999999 204.4899999999999C71.48 196.81 60.33 192 48 192H16C10.36 192 5.03 193.15 0 194.95V117.02C0 83.07 13.48 50.52 37.49 26.51L63.99 0V-64H319.97V-0.04L355.88 35.88A96.035 96.035 0 0 1 384 103.79L383.98 192.01zM351.9700000000001 282.1V400C351.9700000000001 408.8400000000001 344.81 416 335.9700000000001 416H303.9700000000001C295.1300000000001 416 287.9700000000001 408.8400000000001 287.9700000000001 400V288H319.9700000000001C331.25 288 341.9100000000001 285.69 351.9700000000001 282.1zM16 224H48C56.84 224 64 231.16 64 240V368C64 376.8400000000001 56.84 384 48 384H16C7.16 384 0 376.8400000000001 0 368V240C0 231.16 7.16 224 16 224zM111.99 224H143.99C152.83 224 159.99 231.16 159.99 240V400C159.99 408.8400000000001 152.83 416 143.99 416H111.99C103.15 416 95.99 408.8400000000001 95.99 400V240C95.99 231.16 103.15 224 111.99 224z" />
+    <glyph glyph-name="flag-alt"
+      unicode="&#xF74C;"
+      horiz-adv-x="512" d=" M32 448C14.3 448 0 433.7 0 416V-48C0 -56.8 7.2 -64 16 -64H48C56.8 -64 64 -56.8 64 -48V416C64 433.7 49.7 448 32 448zM462.6 443.8C291.3 356.5 305.4 510.2 96 415.6V64C281.7 156.2 317.7 10.7 493.5 87.1C504.9 92.1 512 103.6 512 115.9V417.2C512 442.3 485.2 455.3 462.6 443.8z" />
+    <glyph glyph-name="flag-checkered"
+      unicode="&#xF11E;"
+      horiz-adv-x="512" d=" M466.515 381.072C487.731 390.926 512 375.449 512 352.056V108.956C512 98.43 506.839 88.549 498.157 82.598C462.32 58.034 423.822 41.74 375.652 41.74C308.279 41.74 264.022 76.523 210.435 76.523C159.582 76.523 124.311 66.465 96 54.401V-40C96 -53.255 85.255 -64 72 -64H56C42.745 -64 32 -53.255 32 -40V346.055C17.497 356.175 8 372.974 8 392C8 423.704 34.345 449.254 66.338 447.952C94.806 446.794 118.117 423.984 119.889 395.548C120.409 387.206 119.079 379.238 116.303 371.986C137.039 379.616 159.393 384 184.348 384C251.721 384 295.978 349.217 349.5650000000001 349.217C390.0610000000001 349.217 432.177 365.123 466.515 381.072zM96 313.37V242.88C125 253.55 147.18 260.71 169.6 263.79V335.36C146.1 333.19 129.16 325.57 96 313.37zM316.8 304.18C290.3830000000001 308.852 266.914 318.159 243.2 325.52V258.1C267.375 251.3940000000001 290.766 241.6560000000001 316.8 235.79V304.18zM169.6 263.79V193.75C202.396 196.728 223.51 194.385 243.2 189.95V258.1C217.953 265.135 196.619 267.523 169.6 263.79zM243.2 121.5600000000001C269.538 116.9080000000001 292.932 107.633 316.8 100.2200000000001V167.6300000000001C292.523 174.3760000000001 269.26 184.0800000000001 243.2 189.9500000000001V121.5600000000001zM96 105.9C119.62 114.29 143.79 119.74 169.6 122.46V193.75C143.49 191.4 122.24 185.71 96 176.39V105.9zM464 327.5C442.7 318.65 417.41 309.86 390.4 305.03V233.12C417.71 237.48 440.43 247.22 464 257.01V327.5zM464 117.54V188.03C441.81 173.83 415.2200000000001 165.42 390.4 162.01V90.43C415.47 92.81 438.89 101.47 464 117.54zM316.8 235.79V167.63C342.464 160.496 363.416 158.288 390.4 162.01V233.12C364.401 228.933 340.457 230.444 316.8 235.79z" />
+    <glyph glyph-name="flag-usa"
+      unicode="&#xF74D;"
+      horiz-adv-x="512" d=" M32 448C14.3 448 0 433.7 0 416V-48C0 -56.8 7.2 -64 16 -64H48C56.8 -64 64 -56.8 64 -48V416C64 433.7 49.7 448 32 448zM299.9 144.4C242.7 159.5 188.2 173.2 96 133.3V64C281.7 156.2 317.7 10.7 493.5 87.1C504.9 92.1 512 103.6 512 115.9V151.9C468.4 134.6 431.8 127.8 399.9 127.8C362.5 127.9 331 136.2 299.9 144.4zM299.9 240.4C242.7 255.5 188.2 269.2 96 229.3V167.8C190.8 205.4 250.6 190.5 308.1 175.4C365.3 160.3 419.8 146.6 512 186.5V248C468.4 230.7 431.8 223.9 399.9 223.9C362.5 223.9 331 232.2 299.9 240.4zM309.4 366.3C361.2 350.7 406.8 337.3 512 386.4V417.2C512 442.3 485.2 455.3 462.6 443.8C291.3 356.5 305.4 510.2 96 415.6V263.7C190.8 301.2 250.6 286.4 308.1 271.3C365.3 256.3 419.8 242.6 512 282.4V351.3C458.4 327.8 418.7 319.9 385.9 319.9S326.9 327.7 300.2 335.8C296.2 337 292.1 338.2000000000001 288.1 339.3V372.5C295.3 370.5 302.4 368.4 309.4 366.3zM160 319.9C151.2 319.9 144 327 144 335.9C144 344.7 151.2 351.9 160 351.9S176 344.8 176 335.9S168.8 319.9 160 319.9zM160 375.7C151.2 375.7 144 382.8 144 391.7C144 400.5 151.2 407.7 160 407.7S176 400.6 176 391.7C176 382.9 168.8 375.7 160 375.7zM224 327.8C215.2 327.8 208 334.9 208 343.8C208 352.6 215.2 359.8 224 359.8S240 352.7000000000001 240 343.8C240 335 232.8 327.8 224 327.8zM224 383.7000000000001C215.2 383.7000000000001 208 390.8 208 399.7000000000001C208 408.5 215.2 415.7000000000001 224 415.7000000000001S240 408.6 240 399.7000000000001C240 390.9000000000001 232.8 383.7000000000001 224 383.7000000000001z" />
+    <glyph glyph-name="flag"
+      unicode="&#xF024;"
+      horiz-adv-x="512" d=" M349.565 349.217C295.978 349.217 251.721 384 184.348 384C159.393 384 137.039 379.616 116.303 371.987A55.947 55.947 0 0 1 119.889 395.549C118.117 423.985 94.806 446.794 66.338 447.952C34.345 449.254 8 423.704 8 392C8 372.974 17.497 356.175 32 346.055V-40C32 -53.255 42.745 -64 56 -64H72C85.255 -64 96 -53.255 96 -40V54.4C124.311 66.464 159.582 76.522 210.435 76.522C264.023 76.522 308.279 41.739 375.6520000000001 41.739C423.8210000000001 41.739 462.3190000000001 58.033 498.157 82.597C506.84 88.548 512 98.429 512 108.955V352.055C512 375.448 487.731 390.925 466.515 381.071C432.177 365.123 390.061 349.217 349.565 349.217z" />
+    <glyph glyph-name="flame"
+      unicode="&#xF6DF;"
+      horiz-adv-x="384" d=" M192 448C79.7 346.67 0 227.08 0 147.45C0 22.95 78.95 -64 192 -64S384 22.95 384 147.45C384 227.4 303.78 347.14 192 448zM192 0C121.42 0 64 52.89 64 117.89C64 162.02 89.84 189.4 98.34 197.65C101.46 200.77 106.53 200.77 109.65 197.65A7.98 7.98 0 0 0 111.99 191.99V151.99C111.99 121.06 137.06 95.99 167.99 95.99S223.99 121.06 223.99 151.99C223.99 223.99 111.35 216.7599999999999 184.56 316.32C187.45 320.25 192.04 320.48 195.14 319.49C196.76 318.9599999999999 200.52 317.25 200.52 312.7099999999999C200.52 279.16 225.57 257.74 252.09 235.08C285.4700000000001 206.54 319.99 177.04 319.99 117.87C320 52.89 262.58 0 192 0z" />
+    <glyph glyph-name="flask-poison"
+      unicode="&#xF6E0;"
+      horiz-adv-x="416" d=" M80 400V432C80 440.84 87.16 448 96 448H320C328.84 448 336 440.84 336 432V400C336 391.16 328.84 384 320 384H96C87.16 384 80 391.16 80 400zM168 160C154.75 160 144 149.26 144 136C144 122.75 154.75 112 168 112S192 122.75 192 136C192 149.26 181.25 160 168 160zM415.95 91.33C414.81 39.65 394.8 -7.37 362.56 -43.15C350.4700000000001 -56.56 333.04 -64 314.98 -64H100.94C83.16 -64 65.89 -56.87 53.94 -43.7C20.43 -6.79 0 42.21 0 96C0 176.12 45.61 245.15 112 279.88V352H304V278.95C371.19 242.82 417.71 171.28 415.95 91.33zM320 136C320 184.6 269.86 224 208 224S96 184.6 96 136C96 106.13 115.04 79.83 144 63.92V32C144 23.16 151.16 16 160 16H256C264.84 16 272 23.16 272 32V63.92C300.96 79.83 320 106.13 320 136zM248 160C234.75 160 224 149.26 224 136C224 122.75 234.75 112 248 112S272 122.75 272 136C272 149.26 261.25 160 248 160z" />
+    <glyph glyph-name="flask-potion"
+      unicode="&#xF6E1;"
+      horiz-adv-x="416" d=" M415.95 91.33C414.81 39.65 394.8 -7.37 362.56 -43.15C350.4700000000001 -56.56 333.04 -64 314.98 -64H100.94C83.16 -64 65.89 -56.87 53.94 -43.7C20.43 -6.79 0 42.21 0 96C0 176.12 45.61 245.15 112 279.88V352H176V241.14C155.79 230.56 75.67 202.4 65.15 112.58C131 145.5 192.79 143.61 246.95 116.53C291.94 94.03 328.27 96 351.8 96C351.5300000000001 187.84 276.4700000000001 221.09 240.01 240.7V352H304.01V278.95C371.19 242.82 417.71 171.28 415.95 91.33zM96 384H320C328.84 384 336 391.16 336 400V432C336 440.84 328.84 448 320 448H96C87.16 448 80 440.84 80 432V400C80 391.16 87.16 384 96 384z" />
+    <glyph glyph-name="flask"
+      unicode="&#xF0C3;"
+      horiz-adv-x="448" d=" M437.2 44.5L320 233V384H328C341.3 384 352 394.7 352 408V424C352 437.3 341.3 448 328 448H120C106.7 448 96 437.3 96 424V408C96 394.7 106.7 384 120 384H128V233L10.8 44.5C-18.5 -2.6 15.3 -64 70.9 -64H377.1C432.8 -64 466.5 -2.5 437.2000000000001 44.5zM137.9 128L186.1 205.6C189.8 210.8 191.9 217.2 191.9 224V384H255.9000000000001V224C255.9000000000001 217.1 258.1 210.8 261.7000000000001 205.6L309.9000000000001 128H137.9z" />
+    <glyph glyph-name="flushed"
+      unicode="&#xF579;"
+      horiz-adv-x="496" d=" M344 248C330.7 248 320 237.3 320 224S330.7 200 344 200S368 210.7 368 224S357.3 248 344 248zM152 248C138.7 248 128 237.3 128 224S138.7 200 152 200S176 210.7 176 224S165.3 248 152 248zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM80 224C80 263.8 112.2 296 152 296S224 263.8 224 224S191.8 152 152 152S80 184.2 80 224zM312 48H184C162.8 48 162.8 80 184 80H312C333.2 80 333.2 48 312 48zM344 152C304.2 152 272 184.2 272 224S304.2 296 344 296S416 263.8 416 224S383.8 152 344 152z" />
+    <glyph glyph-name="fog"
+      unicode="&#xF74E;"
+      horiz-adv-x="640" d=" M160 128H480C533 128 576 171 576 224S533 320 480 320C479.4 320 478.9 319.8 478.4 319.8C479.5 325 480 330.4 480 336C480 380.2000000000001 444.2 416 400 416C375.4 416 353.7 404.7000000000001 339 387.2000000000001C320.4 423.2 283.3 448 240 448C178.1 448 128 397.9 128 336C128 328.7 128.8 321.7 130.1 314.8C91.8 302.2 64 266.5 64 224C64 171 107 128 160 128zM208 -16H80C71.2 -16 64 -23.2 64 -32V-48C64 -56.8 71.2 -64 80 -64H208C216.8 -64 224 -56.8 224 -48V-32C224 -23.2 216.8 -16 208 -16zM624 -16H288C279.2 -16 272 -23.2 272 -32V-48C272 -56.8 279.2 -64 288 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16zM576 40V56C576 64.8 568.8 72 560 72H16C7.2 72 0 64.8 0 56V40C0 31.2 7.2 24 16 24H560C568.8 24 576 31.2 576 40z" />
+    <glyph glyph-name="folder-minus"
+      unicode="&#xF65D;"
+      horiz-adv-x="512" d=" M464 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM368 152C368 143.16 360.84 136 352 136H160C151.16 136 144 143.16 144 152V168C144 176.84 151.16 184 160 184H352C360.84 184 368 176.84 368 168V152z" />
+    <glyph glyph-name="folder-open"
+      unicode="&#xF07C;"
+      horiz-adv-x="576" d=" M572.694 155.907L500.27 31.752A63.99699999999999 63.99699999999999 0 0 0 444.989 0H45.025C26.502 0 14.961 20.093 24.294 36.093L96.718 160.2480000000001A64 64 0 0 0 152 192H551.9639999999999C570.487 192 582.0279999999999 171.907 572.694 155.907zM152 224H480V272C480 298.51 458.51 320 432 320H272L208 384H48C21.49 384 0 362.51 0 336V57.954L69.077 176.372C86.214 205.75 117.989 224 152 224z" />
+    <glyph glyph-name="folder-plus"
+      unicode="&#xF65E;"
+      horiz-adv-x="512" d=" M464 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM368 152C368 143.16 360.84 136 352 136H280V64C280 55.16 272.84 48 264 48H248C239.16 48 232 55.16 232 64V136H160C151.16 136 144 143.16 144 152V168C144 176.84 151.16 184 160 184H232V256C232 264.8400000000001 239.16 272 248 272H264C272.84 272 280 264.8400000000001 280 256V184H352C360.84 184 368 176.84 368 168V152z" />
+    <glyph glyph-name="folder-times"
+      unicode="&#xF65F;"
+      horiz-adv-x="512" d=" M464 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320zM340.85 109.09C347.1 102.84 347.1 92.71 340.85 86.46L329.54 75.15C323.29 68.9 313.1600000000001 68.9 306.9100000000001 75.15L256 126.06L205.09 75.15C198.84 68.9 188.71 68.9 182.46 75.15L171.15 86.46C164.9 92.71 164.9 102.84 171.15 109.09L222.06 160L171.15 210.91C164.9 217.16 164.9 227.29 171.15 233.54L182.46 244.85C188.71 251.1 198.84 251.1 205.09 244.85L256 193.94L306.91 244.85C313.16 251.1 323.29 251.1 329.54 244.85L340.85 233.54C347.1 227.29 347.1 217.16 340.85 210.91L289.94 160L340.85 109.09z" />
+    <glyph glyph-name="folder"
+      unicode="&#xF07B;"
+      horiz-adv-x="512" d=" M464 320H272L208 384H48C21.49 384 0 362.51 0 336V48C0 21.49 21.49 0 48 0H464C490.51 0 512 21.49 512 48V272C512 298.51 490.51 320 464 320z" />
+    <glyph glyph-name="folders"
+      unicode="&#xF660;"
+      horiz-adv-x="640" d=" M96 112V320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H464C490.51 -64 512 -42.51 512 -16V32H176C131.89 32 96 67.89 96 112zM592 384H400L336 448H176C149.49 448 128 426.51 128 400V112C128 85.49 149.49 64 176 64H592C618.51 64 640 85.49 640 112V336C640 362.51 618.51 384 592 384z" />
+    <glyph glyph-name="font"
+      unicode="&#xF031;"
+      horiz-adv-x="448" d=" M152 32H127.987L154.573 112.782H292.8L319.386 32H296C287.163 32 280 24.837 280 16V-16C280 -24.837 287.163 -32 296 -32H432C440.837 -32 448 -24.837 448 -16V16C448 24.837 440.837 32 432 32H405.261L275.495 405.254A16 16 0 0 1 260.382 416H187.616A16 16 0 0 1 172.503 405.254L42.739 32H16C7.163 32 0 24.837 0 16V-16C0 -24.837 7.163 -32 16 -32H152C160.837 -32 168 -24.837 168 -16V16C168 24.837 160.837 32 152 32zM216.353 303.778C220.701 318.9940000000001 222.963 331.9340000000001 223.939 338.4220000000001C224.778 331.901 226.878 318.9460000000001 231.6660000000001 303.716L273.0010000000001 179.71H174.382L216.353 303.778z" />
+    <glyph glyph-name="football-ball"
+      unicode="&#xF44E;"
+      horiz-adv-x="496" d=" M481.5 387.7C476.7 405.9 462.4 420.2 444.2 425.1C420.3 431.5 383 439.1 339.4 440L496 283.2C495.2 326.7 487.8 363.8 481.5 387.7zM14.5 -3.7C19.3 -21.9 33.6 -36.2 51.8 -41.1C75.7 -47.4999999999999 113 -55.1 156.6 -55.9999999999999L0 100.8C0.8 57.3 8.2 20.2 14.5 -3.7zM4.2 164.6L220.4 -52C352.9 -32.6 469.2 66.7 491.9 219.4L275.6 436C143.1 416.6 26.8 317.3 4.2 164.6zM321.5 288.2000000000001C324.6 291.3 329.7 291.3 332.8 288.2000000000001L344.1 276.9C347.2000000000001 273.8 347.2000000000001 268.7000000000001 344.1 265.6L315.8 237.3L344.1 209C347.2000000000001 205.9 347.2000000000001 200.8 344.1 197.7L332.8 186.4C329.7 183.3 324.6 183.3 321.5 186.4L293.2 214.7L270.6 192L298.9 163.7C302 160.6 302 155.5 298.9 152.4L287.6 141.1C284.5 138 279.4 138 276.3 141.1L248 169.4L225.4 146.8L253.7 118.5C256.8 115.3999999999999 256.8 110.3 253.7 107.1999999999999L242.4 95.8999999999999C239.3 92.7999999999999 234.2 92.7999999999999 231.1 95.8999999999999L202.8 124.1999999999999L174.5 95.8999999999999C171.4 92.7999999999999 166.3 92.7999999999999 163.2 95.8999999999999L151.9 107.1999999999999C148.8 110.3 148.8 115.3999999999999 151.9 118.5L180.2 146.8L151.9 175C148.8 178.1 148.8 183.1999999999999 151.9 186.3L163.2 197.6C166.3 200.7 171.4 200.7 174.5 197.6L202.8 169.3L225.4 191.9L197.1 220.2C194 223.3 194 228.4 197.1 231.5L208.4 242.8C211.5 245.9 216.6 245.9 219.7 242.8L248 214.5L270.6 237.1L242.3 265.4C239.2 268.5 239.2 273.6 242.3 276.7000000000001L253.6 288C256.7000000000001 291.1 261.8 291.1 264.9000000000001 288L293.2000000000001 259.7000000000001L321.5000000000001 288.2000000000001z" />
+    <glyph glyph-name="football-helmet"
+      unicode="&#xF44F;"
+      horiz-adv-x="512" d=" M480 128H355.5L340.3 204L477.1 221.8C486.1 223 492.7 231.6 491 240.5C466.2 365.4 347.9 456.6 211.9 437.4C104.6 422.3 17.8 335.4 2.6 228.1C-7.6 156 13.3 89 53.7 38.1C56.8 34.2 61.5 32 66.5 32H120L205.7 -13C230.9 -25.6 261.4 -20.7 281.4 -0.7C317.6 35.5 292.3 81.2000000000001 286.4 96H329.3L338.8 48.7C348.3 1.3 386.8 -36.6 434.7 -42.6C478.6999999999999 -48.1 477.1999999999999 -48 479.9999999999999 -48C502.4999999999999 -48 511.9999999999999 -28.3 511.9999999999999 -16V96C511.9999999999999 113.7 497.6999999999999 128 479.9999999999999 128zM176 88C162.7 88 152 98.7 152 112S162.7 136 176 136S200 125.3 200 112S189.3 88 176 88zM273.6 128L263.3 153.7C255.5 173.1 268.2 194.6 288.9000000000001 197.3L308.5000000000001 199.9L322.9000000000001 128H273.6zM480 -16L438.7 -10.8C412.8 -7.6 390.7 7.9 378.6 29.9H480V-16zM480 64H368.3L361.9000000000001 96H480V64z" />
+    <glyph glyph-name="forklift"
+      unicode="&#xF47A;"
+      horiz-adv-x="640" d=" M624 64H544V432C544 440.8 536.8 448 528 448H496C487.2 448 480 440.8 480 432V16C480 7.2 487.2 0 496 0H624C632.8 0 640 7.2 640 16V48C640 56.8 632.8 64 624 64zM416 210.9C416 219.6 414.2 228.1 410.8 236.1L332.5 418.9C324.9 436.6 307.6 448 288.3 448H144C117.5 448 96 426.5 96 400V288H48C21.5 288 0 266.5 0 240V32C0 -21 43 -64 96 -64S192 -21 192 32H256C256 -21 299 -64 352 -64S448 -21 448 32C448 60.3 435.5 85.5 416 103.1V210.9zM96 -16C69.5 -16 48 5.5 48 32S69.5 80 96 80S144 58.5 144 32S122.5 -16 96 -16zM256 192L160 288V384H277.8L352 210.9V192H256zM352 -16C325.5 -16 304 5.5 304 32S325.5 80 352 80S400 58.5 400 32S378.5 -16 352 -16z" />
+    <glyph glyph-name="forward"
+      unicode="&#xF04E;"
+      horiz-adv-x="512" d=" M500.5 216.6L308.5 376.6C287.9 393.7 256 379.4 256 352V32C256 4.6 287.9 -9.8 308.5 7.4L500.5 167.4C515.8 180.2 515.8 203.8 500.5 216.6zM244.5 216.6L52.5 376.6C31.9 393.7 0 379.4 0 352V32C0 4.6 31.9 -9.8 52.5 7.4L244.5 167.4C259.8 180.2 259.8 203.8 244.5 216.6z" />
+    <glyph glyph-name="fragile"
+      unicode="&#xF4BB;"
+      horiz-adv-x="288" d=" M287.4 255.3L271.4 433.4C270.7 441.7 263.9 448 255.7 448H192.2L222.8 384.3L137.3 328.3L186.7 224L65.2 343.7L150.7 399.7L117.9 448H32.3C24.1 448 17.3 441.7 16.6 433.4L0.6 255.3C-6.6 175.3 51.3 106.4 128 97.7000000000001V-32H74.1C49.6 -32 40.9 -64 54.1 -64H233.9C247 -64 238.4 -32 213.9 -32H160V97.7C236.7 106.5 294.6 175.3 287.4 255.3z" />
+    <glyph glyph-name="frog"
+      unicode="&#xF52E;"
+      horiz-adv-x="576" d=" M446.53 350.57C439.67 387.77 407.19 416 368 416C328.77 416 296.28 387.71 289.46 350.46C126.75 335.04 -0.5 197.88 0 31.02C0.11 -3.9 29.08 -32 64 -32H368C376.84 -32 384 -24.84 384 -16C384 1.67 369.67 16 352 16H272.51L308.31 64.33C332.45 100.56 318.6600000000001 152.61 274.6 170.93C250.7100000000001 180.86 223.05 175.5799999999999 202.36 160.05L169.6 135.46C162.54 130.15 152.51 131.55 147.19 138.65C141.89 145.73 143.31 155.76 150.38 161.06L185.16 187.15C222 214.81 273.4400000000001 214.77 310.29 187.15C321.1600000000001 179 356.1600000000001 148.09 351.0900000000001 93.94L469.62 -32H560C568.84 -32 576 -24.84 576 -16C576 1.67 561.67 16 544 16H490.37L391.85 120.68L546.29 207.33A58.15999999999999 58.15999999999999 0 0 1 576 258.06C576 279.4600000000001 564.28 299.01 545.52 309.29C504.96 331.51 446.53 350.57 446.53 350.57zM368 312C354.74 312 344 322.75 344 336C344 349.26 354.74 360 368 360C381.25 360 392 349.26 392 336C392 322.75 381.25 312 368 312z" />
+    <glyph glyph-name="frosty-head"
+      unicode="&#xF79B;"
+      horiz-adv-x="384" d=" M320 432C320 440.8 312.8 448 304 448H80C71.2 448 64 440.8 64 432V240H320V432zM368 208H16C7.2 208 0 200.8 0 192V176C0 167.2 7.2 160 16 160H40.4C29.9 137.9 24 113.2 24 87.1C24 27.2 55.3 -25 102.2 -54.9C112.4 -61.4 124.7 -64 136.8 -64H246.4C261.1 -64 275.5 -59.4 287.5 -51C338.9 -15.2 369.7 48.4 357 118.6C354.4 133.1 349.5 146.9 343.3 160H368C376.8 160 384 167.2 384 176V192C384 200.8 376.8 208 368 208zM130.7 85.3C118.9 85.3 109.4 94.9 109.4 106.6C109.4 118.4 119 127.9 130.7 127.9C142.5 127.9 152 118.3 152 106.6C152 94.9 142.4 85.3 130.7 85.3zM192 -16S160 30.3 160 48C160 65.7 174.3 80 192 80S224 65.7 224 48S192 -16 192 -16zM253.3 85.3C241.5 85.3 232 94.9 232 106.6C232 118.4 241.6 127.9 253.3 127.9C265.1 127.9 274.6 118.3 274.6 106.6C274.7000000000001 94.9 265.1 85.3 253.3 85.3z" />
+    <glyph glyph-name="frown-open"
+      unicode="&#xF57A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM136 240C136 257.7 150.3 272 168 272S200 257.7 200 240S185.7 208 168 208S136 222.3 136 240zM323.3 56.7C292.1 66.3 263.9000000000001 72 248 72S203.9 66.3 172.7 56.7C161.2 53.2 150.2 63 152.2 74.8C159.2 114.8 212.3 136 248 136S336.8 114.7 343.8 74.8C345.8 62.9 334.7 53.2 323.3 56.7zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208z" />
+    <glyph glyph-name="frown"
+      unicode="&#xF119;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 272C345.7 272 360 257.7 360 240S345.7 208 328 208S296 222.3 296 240S310.3 272 328 272zM168 272C185.7 272 200 257.7 200 240S185.7 208 168 208S136 222.3 136 240S150.3 272 168 272zM338.2 53.8C315.8 80.6 282.9 96 248 96S180.2 80.6 157.8 53.8C144.3 37.5 119.7 58 133.2 74.3C161.7 108.4 203.6 128 248 128S334.3 108.4 362.7 74.2C376.3 58 351.7 37.5 338.2 53.8z" />
+    <glyph glyph-name="function"
+      unicode="&#xF661;"
+      horiz-adv-x="640" d=" M288.73 128C288.73 180.34 305.69 231.22 336.74 272.95C341.9100000000001 279.89 341.19 289.49 334.5900000000001 295.09L309.9000000000001 316.07C302.9000000000001 322.02 292.0700000000001 321.16 286.5200000000001 313.84C246.09 260.5800000000001 224 195.22 224 128C224 60.77 246.09 -4.59 286.52 -57.84C292.08 -65.1600000000001 302.9 -66.02 309.9 -60.07L334.59 -39.08C341.18 -33.47 341.9 -23.8800000000001 336.74 -16.9400000000001C305.68 24.7699999999999 288.73 75.66 288.73 128zM224 432C224 440.84 216.84 448 208 448H160C102.56 448 56 401.44 56 344V280H16C7.16 280 0 272.8400000000001 0 264V216C0 207.16 7.16 200 16 200H56V72C56 58.8 45.2 48 32 48H16C7.16 48 0 40.84 0 32V-16C0 -24.84 7.16 -32 16 -32H32C89.44 -32 136 14.56 136 72V200H176C184.84 200 192 207.16 192 216V264C192 272.8400000000001 184.84 280 176 280H136V344C136 357.2 146.8 368 160 368H208C216.84 368 224 375.16 224 384V432zM577.48 313.8400000000001C571.9200000000001 321.16 561.1 322.02 554.1 316.07L529.41 295.0900000000001C522.8199999999999 289.48 522.1 279.89 527.26 272.95C558.31 231.24 575.27 180.34 575.27 128C575.27 75.66 558.31 24.77 527.26 -16.95C522.09 -23.89 522.81 -33.49 529.41 -39.09L554.1 -60.08C561.1 -66.03 571.9300000000001 -65.17 577.48 -57.85C617.91 -4.57 640 60.78 640 128C640 195.23 617.91 260.5900000000001 577.48 313.8400000000001zM523.3100000000001 81.94L477.25 128L523.31 174.06C529.56 180.31 529.56 190.44 523.31 196.69L500.6899999999999 219.31C494.4399999999999 225.56 484.3099999999999 225.56 478.0599999999999 219.31L432 173.25L385.94 219.31C379.69 225.56 369.56 225.56 363.31 219.31L340.69 196.69C334.44 190.44 334.44 180.31 340.69 174.06L386.75 128L340.69 81.94C334.44 75.69 334.44 65.56 340.69 59.31L363.31 36.69C369.56 30.44 379.69 30.44 385.94 36.69L432 82.75L478.06 36.69C484.31 30.44 494.44 30.44 500.69 36.69L523.31 59.31C529.56 65.56 529.56 75.69 523.31 81.94z" />
+    <glyph glyph-name="funnel-dollar"
+      unicode="&#xF662;"
+      horiz-adv-x="640" d=" M433.46 282.06L534.66 393.93C554.61 413.88 540.48 448 512.26 448H31.74C3.52 448 -10.61 413.88 9.34 393.93L192 192V36.08C192 23.4900000000001 197.93 11.64 208 4.08L287.99 -55.92C308.85 -71.5599999999999 336.4600000000001 -62.89 347.2100000000001 -42.35C310.8 -7.38 288 41.65 288 96C288 185.79 350.05 261.17 433.4600000000001 282.06zM480 256C391.63 256 320 184.37 320 96S391.63 -64 480 -64S640 7.63 640 96S568.37 256 480 256zM496 16.12V0C496 -4.42 492.42 -8 488 -8H472C467.58 -8 464 -4.42 464 0V16.29C452.71 16.87 441.73 20.81 432.63 27.64C428.73 30.5700000000001 428.53 36.41 432.06 39.78L443.81 50.99C446.58 53.63 450.7 53.75 453.94 51.72C457.81 49.3 462.2 48 466.76 48H494.87C501.37 48 506.67 53.92 506.67 61.19C506.67 67.14 503.06 72.38 497.9 73.92L452.9 87.42C434.3100000000001 93 421.3200000000001 110.84 421.3200000000001 130.81C421.3200000000001 155.33 440.3700000000001 175.25 463.9900000000001 175.88V192C463.9900000000001 196.42 467.5700000000001 200 471.9900000000001 200H487.9900000000001C492.4100000000001 200 495.9900000000001 196.42 495.9900000000001 192V175.71C507.2800000000001 175.13 518.2600000000001 171.2 527.36 164.36C531.26 161.43 531.46 155.59 527.9300000000001 152.22L516.1800000000001 141.01C513.4100000000001 138.37 509.2900000000001 138.25 506.0500000000001 140.28C502.1800000000001 142.71 497.7900000000001 144 493.2300000000001 144H465.1200000000001C458.6200000000001 144 453.3200000000001 138.08 453.3200000000001 130.81C453.3200000000001 124.86 456.9300000000001 119.62 462.09 118.08L507.09 104.58C525.6800000000001 99 538.6700000000001 81.16 538.6700000000001 61.19C538.6700000000001 36.66 519.6300000000001 16.75 496.0000000000001 16.12z" />
+    <glyph glyph-name="futbol"
+      unicode="&#xF1E3;"
+      horiz-adv-x="512" d=" M504 192C504 55.033 392.967 -56 256 -56S8 55.033 8 192S119.033 440 256 440S504 328.967 504 192zM456 192L455.997 192.282L429.933 169.541L367.254 228.041L383.7080000000001 312.396L418.011 309.324C393.122 343.54 358.007 369.413 317.302 382.4650000000001L330.9530000000001 350.526L256 309L181.047 350.525L194.698 382.464C154.067 369.436 118.918 343.594 93.989 309.323L128.554 312.396L144.746 228.041L82.068 169.541L56.004 192.282L56.001 192C56.001 148.985 69.498 108.048 94.473 74.009L102.177 107.906L187.315 97.459L223.616 19.633L193.714 1.847C233.916 -11.275 278.004 -11.301 318.286 1.847L288.384 19.633L324.685 97.4590000000001L409.823 107.9060000000001L417.527 74.0090000000001C442.503 108.048 456 148.985 456 192zM207.898 122.429L178.004 213.741L256 270.2680000000001L333.996 213.741L304.374 122.429H207.898z" />
+    <glyph glyph-name="gamepad"
+      unicode="&#xF11B;"
+      horiz-adv-x="640" d=" M480 352H160C71.6 352 0 280.4 0 192S71.6 32 160 32C204.8 32 245.2 50.4 274.2 80H365.7C394.7 50.4 435.2 32 479.9 32C568.3 32 639.9 103.6 639.9 192S568.4 352 480 352zM256 172C256 165.4 250.6 160 244 160H192V108C192 101.4 186.6 96 180 96H140C133.4 96 128 101.4 128 108V160H76C69.4 160 64 165.4 64 172V212C64 218.6 69.4 224 76 224H128V276C128 282.6 133.4 288 140 288H180C186.6 288 192 282.6 192 276V224H244C250.6 224 256 218.6 256 212V172zM440 104C413.5 104 392 125.5 392 152S413.5 200 440 200S488 178.5 488 152S466.5 104 440 104zM520 184C493.5 184 472 205.5 472 232S493.5 280 520 280S568 258.5 568 232S546.5 184 520 184z" />
+    <glyph glyph-name="gas-pump-slash"
+      unicode="&#xF5F4;"
+      horiz-adv-x="640" d=" M633.82 -10.1L568.37 40.48C573.09 50.02 576 60.6299999999999 576 71.9999999999999V295.43C576 312.4 569.26 328.68 557.25 340.69L476.28 421.66C470.03 427.91 459.9 427.91 453.65 421.66L442.34 410.35C436.09 404.1 436.09 393.9700000000001 442.34 387.7200000000001L480 350.06V288C480 259.86 500.93 236.73 528 232.81V72C528 71.9 527.95 71.82 527.95 71.73L384 182.98V384C384 419.35 355.35 448 320 448H160C131.35 448 107.38 429.04 99.22 403.08L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM96 32H370.03L96 243.79V32zM400 0H80C71.16 0 64 -7.16 64 -16V-48C64 -56.84 71.16 -64 80 -64H400C408.84 -64 416 -56.84 416 -48V-16C416 -7.16 408.84 0 400 0z" />
+    <glyph glyph-name="gas-pump"
+      unicode="&#xF52F;"
+      horiz-adv-x="512" d=" M336 0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H336C344.8 -64 352 -56.8 352 -48V-16C352 -7.2 344.8 0 336 0zM493.2 340.7L412.2 421.7C406 427.9 395.8 427.9 389.6 421.7L378.3 410.4C372.1 404.2 372.1 394 378.3 387.8L416 350.1V288C416 259.9 436.9 236.7 464 232.8V72C464 58.8 453.2 48 440 48S416 58.8 416 72V104C416 152.6 376.6 192 328 192H320V384C320 419.3 291.3 448 256 448H96C60.7 448 32 419.3 32 384V32H320V144H328C350.1 144 368 126.1 368 104V76.2C368 38.5 395 4.2 432.5 0.3C475.5 -4.0000000000001 512 29.8 512 71.9999999999999V295.4C512 312.4 505.2 328.7 493.2 340.7zM256 256H96V384H256V256z" />
+    <glyph glyph-name="gavel"
+      unicode="&#xF0E3;"
+      horiz-adv-x="512" d=" M504.971 248.638L482.344 271.265C472.971 280.6380000000001 457.775 280.6380000000001 448.403 271.265L442.7460000000001 265.608L329.608 378.745L335.265 384.402C344.638 393.775 344.638 408.971 335.265 418.343L312.638 440.971C303.265 450.344 288.069 450.344 278.697 440.971L154.246 316.52C144.873 307.1470000000001 144.873 291.951 154.246 282.579L176.873 259.952C186.246 250.579 201.442 250.579 210.814 259.952L216.471 265.6090000000001L256.069 226.011L175.029 144.971L169.372 150.628C156.875 163.125 136.614 163.125 124.117 150.628L9.373 35.882C-3.124 23.385 -3.124 3.124 9.373 -9.373L54.628 -54.628C67.125 -67.125 87.386 -67.125 99.883 -54.628L214.628 60.117C227.125 72.614 227.125 92.875 214.628 105.372L208.971 111.029L290.011 192.069L329.6090000000001 152.471L323.9520000000001 146.814C314.5790000000001 137.441 314.5790000000001 122.245 323.9520000000001 112.8730000000001L346.5790000000001 90.246C355.9520000000001 80.8730000000001 371.1480000000001 80.8730000000001 380.5200000000001 90.246L504.9710000000001 214.697C514.3430000000001 224.069 514.3430000000001 239.2650000000001 504.9710000000001 248.6380000000001z" />
+    <glyph glyph-name="gem"
+      unicode="&#xF3A5;"
+      horiz-adv-x="576" d=" M485.5 448L576 288H474.9L405.7 448H485.5zM357.5 448L426.7 288H149.3L218.5 448H357.5zM90.5 448H170.3L101.1 288H0L90.5 448zM0 256H100.7L223.7 4.3C225.2 1.2 221 -1.6 218.7 1L0 256zM148.2 256H427.8L290.8 -62.2C289.8 -64.6 286.3 -64.6 285.3 -62.2L148.2 256zM352.3 4.3L475.3 256H576L357.3 1.1C355 -1.6 350.8 1.2 352.3 4.3z" />
+    <glyph glyph-name="genderless"
+      unicode="&#xF22D;"
+      horiz-adv-x="288" d=" M144 272C188.1 272 224 236.1 224 192S188.1 112 144 112S64 147.9 64 192S99.9 272 144 272M144 336C64.5 336 0 271.5 0 192S64.5 48 144 48S288 112.5 288 192S223.5 336 144 336z" />
+    <glyph glyph-name="ghost"
+      unicode="&#xF6E2;"
+      horiz-adv-x="384" d=" M186.1 447.9100000000001C81.01 444.76 0 353.08 0 247.95V-15.97C0 -30.23 17.23 -37.36 27.31 -27.28L52.23 -8.75C58.89 -3.8 68.23 -4.76 73.74 -10.96L116.69 -59.31C122.94 -65.5599999999999 133.07 -65.5599999999999 139.32 -59.31L180.04 -13.46C186.41 -6.29 197.6 -6.29 203.96 -13.46L244.6800000000001 -59.31C250.9300000000001 -65.5599999999999 261.0600000000001 -65.5599999999999 267.3100000000001 -59.31L310.2600000000001 -10.96C315.7700000000001 -4.76 325.1100000000001 -3.79 331.7700000000001 -8.75L356.6900000000001 -27.28C366.7700000000001 -37.36 384.0000000000001 -30.22 384.0000000000001 -15.97V256C384 364 294.83 451.17 186.1 447.9100000000001zM128 224C110.33 224 96 238.33 96 256S110.33 288 128 288S160 273.67 160 256S145.67 224 128 224zM256 224C238.33 224 224 238.33 224 256S238.33 288 256 288S288 273.67 288 256S273.67 224 256 224z" />
+    <glyph glyph-name="gift-card"
+      unicode="&#xF663;"
+      horiz-adv-x="576" d=" M528 320H469.93C476.15 332.06 480 345.52 480 360C480 408.52 440.52 448 392 448C350.4 448 323.49 426.6600000000001 288.96 379.67C254.44 426.67 227.53 448 185.93 448C137.41 448 97.93 408.52 97.93 360C97.93 345.52 101.78 332.06 108 320H48C21.49 320 0 298.51 0 272V-16C0 -42.51 21.49 -64 48 -64H528C554.51 -64 576 -42.51 576 -16V272C576 298.51 554.51 320 528 320zM392 400C414.06 400 432 382.06 432 360C432 337.95 414.06 320 392 320H305.93C357.29 396.4700000000001 371.65 400 392 400zM145.93 360C145.93 382.06 163.87 400 185.93 400C205.87 400 220.51 396.73 272 320H185.93C163.87 320 145.93 337.95 145.93 360zM206.06 256L170.34 220.28C164.09 214.03 164.09 203.9 170.34 197.65L181.65 186.34C187.9 180.09 198.03 180.09 204.28 186.34L273.94 256H302.07L371.7200000000001 186.35C377.9700000000001 180.1 388.1 180.1 394.35 186.35L405.6600000000001 197.66C411.9100000000001 203.91 411.9100000000001 214.04 405.6600000000001 220.29L369.94 256H512V128H64V256H206.06zM64 0V64H512V0H64z" />
+    <glyph glyph-name="gift"
+      unicode="&#xF06B;"
+      horiz-adv-x="512" d=" M32 0C32 -17.7 46.3 -32 64 -32H224V128H32V0zM288 -32H448C465.7 -32 480 -17.7 480 0V128H288V-32zM480 288H437.9C444.1 300.1 448 313.5 448 328C448 376.5 408.5 416 360 416C318.4 416 291.5 394.7 257 347.7C222.5 394.7 195.6 416 154 416C105.5 416 66 376.5 66 328C66 313.5 69.8 300.1 76.1 288H32C14.3 288 0 273.7 0 256V176C0 167.2 7.2 160 16 160H496C504.8 160 512 167.2 512 176V256C512 273.7 497.7 288 480 288zM153.9 288C131.8 288 113.9 305.9 113.9 328S131.8 368 153.9 368C173.8 368 188.5 364.7 240 288H153.9zM360 288H273.9C325.3 364.5 339.6 368 360 368C382.1 368 400 350.1 400 328S382.1 288 360 288z" />
+    <glyph glyph-name="gifts"
+      unicode="&#xF79C;"
+      horiz-adv-x="640" d=" M240.6 253.9C242.5 284.7000000000001 257.9 315.1 284.6 333.7C279.4 344.5 268.7 352 256 352H226.6L257.3 374C264.5 379.1 266.2 389.1 261 396.3L251.7 409.3C246.6 416.5 236.6 418.2 229.4 413L197.4 390.1L208.9 420.7C212 429 207.8 438.2 199.5 441.3L184.5 446.9C176.2 450 167 445.8 163.9 437.5L144 384.5L124.1 437.6C121 445.9 111.8 450.1 103.5 447L88.5 441.4C80.2 438.3 76 429 79.2 420.8L90.7 390.2L58.6 413C51.4 418.1 41.4 416.5 36.3 409.3L27 396.3C21.9 389.1 23.5 379.1 30.7 374L61.4 352H32C14.3 352 0 337.7 0 320V-32C0 -49.7 14.3 -64 32 -64H200.9C195.4 -54.5 192 -43.7 192 -32V192C192 221.9 212.8 247 240.6 253.9zM224 -32C224 -49.7 238.3 -64 256 -64H416V64H224V-32zM448 -64H608C625.7 -64 640 -49.7 640 -32V64H448V-64zM608 224H587.6C590.2 231.6 592 239.5 592 247.8C592 283.3 565 320 519.9 320C471.8 320 444 272.3 432 244.7C419.9 272.3 392.1 320 344.1 320C299 320 272 283.3 272 247.8C272 239.5 273.7 231.6 276.4 224H256C238.3 224 224 209.7 224 192V96H416V224H431.3L432 224.2L432.7 224H448V96H640V192C640 209.7 625.7 224 608 224zM336 224C333.3 225.4 330.9 227 328.8 228.8C321.5 235.2 320 242.6 320 247.8C320 257.5 326.4 272 344.1 272C362.8 272 379.7000000000001 244.6 388.6 224H336zM535.2 228.8C533.1 227 530.7 225.4 528 224H475.4C484.2 244.3 501.2 272 519.9 272C537.6 272 544 257.5 544 247.8C544 242.6 542.5 235.2 535.2 228.8z" />
+    <glyph glyph-name="gingerbread-man"
+      unicode="&#xF79D;"
+      horiz-adv-x="416" d=" M322.2 144H352C390.9 144 421.6 178.7 415.1 218.8C410 250.3 380.4000000000001 272 348.6 272H282.7000000000001C275.6 272 272.2000000000001 280.4 277.2000000000001 285.5C298.0000000000001 307.1 308.8000000000001 338.3 302.1 371.8C294.6 409.3 263.6 439.6 226.1 446.4C165 457.4 112 410.9 112 352C112 326.3 122.2 302.9 138.7 285.7C143.7 280.5 140.4 272 133.2 272H67.4C35.5 272 6 250.2 0.9 218.8C-5.6 178.7 25.1 144 64 144H93.8C103.9 144 112 135.8 112 125.8C112 121.5 110.5 117.4 107.8 114.1L49.6 44.3C26.3 16.4 28 -28.1 56.7 -50.4C68.3 -59.6 82.2 -64 96 -64C114.3 -64 132.5 -56.2 145.2 -41L183.5 4.9C196.3 20.3 219.9 20.3 232.7 4.9L271 -41C283.7 -56.2 301.8 -64 320.2 -64C334 -64 347.9 -59.6 359.5 -50.5C388.2 -28.1 389.9 16.3 366.6 44.2L308.4 114C305.7 117.3 304.2 121.4 304.2 125.7C304 135.8 312.2 144 322.2 144zM176 352C167.2 352 160 359.2 160 368S167.2 384 176 384S192 376.8 192 368S184.8 352 176 352zM208 80C199.2 80 192 87.2 192 96S199.2 112 208 112S224 104.8 224 96S216.8 80 208 80zM208 144C199.2 144 192 151.2 192 160S199.2 176 208 176S224 168.8 224 160S216.8 144 208 144zM208 208C199.2 208 192 215.2 192 224S199.2 240 208 240S224 232.8 224 224S216.8 208 208 208zM240 352C231.2 352 224 359.2 224 368S231.2 384 240 384S256 376.8 256 368S248.8 352 240 352z" />
+    <glyph glyph-name="glass-champagne"
+      unicode="&#xF79E;"
+      horiz-adv-x="256" d=" M216 -16H160V100.3C220.7 115.5 263.3 172.3 255 235.7L228 420.6C225.7 436.3 212.2 448 196.3 448H59.7C43.8 448 30.3 436.3 28 420.6L1 235.7C-7.3 172.3 35.3 115.5 96 100.3V-16H40C17.9 -16 0 -33.9 0 -56C0 -60.4 3.6 -64 8 -64H248C252.4 -64 256 -60.4 256 -56C256 -33.9 238.1 -16 216 -16zM61.8 320L73.5 400H182.5L194.2 320H61.8z" />
+    <glyph glyph-name="glass-cheers"
+      unicode="&#xF79F;"
+      horiz-adv-x="640" d=" M639.4 14.4C631 34.8 607.6 44.5 587.1999999999999 36L565.0999999999999 26.8L526.3999999999999 128.7000000000001C574.2999999999998 163.7000000000001 591.1999999999998 229.0000000000001 560.8999999999999 281.5000000000001L474.3 432C466.3 445.9 449.2 451.7 434.3 445.6L320 398.2L205.7 445.6C190.8 451.8 173.7 445.9 165.7 432L79.1 281.5C48.9 229 65.7 163.7 113.6 128.8L74.9 26.9L52.8 36.1C32.4 44.6 9.1 34.9 0.6 14.4999999999999C-1.1 10.3999999999999 0.8 5.6999999999999 4.9 3.9999999999999L167.2 -63.4000000000001C171.3 -65.1000000000001 175.9 -63.2000000000001 177.6 -59.1000000000001C186 -38.7000000000001 176.4 -15.3000000000001 156 -6.8000000000001L133.9 2.3999999999999L173.3 106C177.7 105.5 182.1 104.7 186.4 104.7C238.1 104.7 285.8 137.8 299.8 190L320 265.4L340.2 190C354.2 137.8 401.9 104.7 453.6 104.7C457.9 104.7 462.3 105.5 466.7 106L506 2.4L483.9 -6.8C463.5 -15.3 453.8 -38.7 462.3 -59.1C463.9999999999999 -63.2 468.6999999999999 -65.1 472.6999999999999 -63.4L635.1 4C639.1 5.7 641.1 10.3 639.4 14.4zM275.9 285.9L163.8 332.4L200.3 395.8L294.8 356.6L275.9 285.9zM364.1 285.9L345.2 356.6L439.7 395.8L476.2 332.4L364.1 285.9z" />
+    <glyph glyph-name="glass-martini-alt"
+      unicode="&#xF57B;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L224 176.36V-16H168C145.91 -16 128 -33.91 128 -56C128 -60.42 131.58 -64 136 -64H376C380.42 -64 384 -60.42 384 -56C384 -33.91 366.09 -16 344 -16H288V176.36L502.05 390.4zM443.77 400L395.77 352H116.24L68.24 400H443.77z" />
+    <glyph glyph-name="glass-martini"
+      unicode="&#xF000;"
+      horiz-adv-x="512" d=" M502.05 390.4C523.3 411.66 508.25 448 478.2 448H33.8C3.75 448 -11.3 411.66 9.95 390.4L224 176.36V-16H168C145.91 -16 128 -33.91 128 -56C128 -60.42 131.58 -64 136 -64H376C380.42 -64 384 -60.42 384 -56C384 -33.91 366.09 -16 344 -16H288V176.36L502.05 390.4z" />
+    <glyph glyph-name="glass-whiskey-rocks"
+      unicode="&#xF7A1;"
+      horiz-adv-x="512" d=" M252.1 102.6L297.4 57.3C309.9 44.8 330.2 44.8 342.7 57.3L388 102.6C400.5 115.1 400.5 135.4 388 147.9L342.7 193.2000000000001C330.2 205.7000000000001 309.9 205.7000000000001 297.4 193.2000000000001L252.1 147.9C239.6 135.4 239.6 115.1 252.1 102.6zM480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM413.7 166.6C423.6 155 429.3 140.6 429.3 125.2000000000001C429.3 108.1 422.6 92.0000000000001 410.6 79.9L365.3 34.6C353.2 22.7 337.1 16 320 16C302.9 16 286.8 22.7 274.7 34.7L229.5 80H160C124.7 80 96 108.7 96 144V182.9L69.4 352H442.6L413.7000000000001 166.6zM160 112H212.2C211.3 116.3 210.8 120.7 210.8 125.3C210.8 142.4 217.5 158.5 229.5 170.6L256 197V208C256 225.7 241.7 240 224 240H160C142.3 240 128 225.7 128 208V144C128 126.3 142.3 112 160 112z" />
+    <glyph glyph-name="glass-whiskey"
+      unicode="&#xF7A0;"
+      horiz-adv-x="512" d=" M480 416H32C12.5 416 -2.4 398.8 0.3 379.5L56.3 23C60.8 -8.5 87.8 -31.9 119.7 -31.9H392.7C424.5 -31.9 451.6 -8.5 456.1 23L511.7 379.5C514.4 398.8 499.5 416 480 416zM442.6 352L412.6 160H99.6L69.4 352H442.6z" />
+    <glyph glyph-name="glasses-alt"
+      unicode="&#xF5F5;"
+      horiz-adv-x="576" d=" M560.51 222.1L528.75 349.36C522.05 376.2200000000001 495.01 416 443.33 416C427.7 416 420.3 413.06 400.31 406.4C391.92 403.61 387.39 394.54 390.19 386.16L395.25 370.98C397.49 364.28 403.73 360.04 410.43 360.04C413.9700000000001 360.04 415.25 360.78 428.6600000000001 365.25C454.73 373.93 476.86 359.12 482.1900000000001 337.71L511.8600000000001 219.03C490.97 232.12 466.47 240 440 240C384.91 240 337.73 207.09 316.35 160H259.6500000000001C238.2700000000001 207.09 191.09 240 136 240C109.53 240 85.03 232.12 64.14 219.04L93.81 337.7200000000001C99.13 359.13 121.2700000000001 373.94 147.34 365.26C160.76 360.79 162.04 360.05 165.57 360.05C172.27 360.05 178.51 364.29 180.75 370.99L185.81 386.17C188.6100000000001 394.55 184.0800000000001 403.62 175.69 406.41C155.7 413.06 148.3 416 132.67 416C81 416 53.95 376.2200000000001 47.25 349.36L15.49 222.1C2.16 168.66 0 147.88 0 104C0 28.89 60.89 -32 136 -32C208.37 -32 266.9700000000001 24.69 271.19 96H304.8C309.0200000000001 24.69 367.62 -32 439.99 -32C515.1 -32 575.99 28.89 575.99 104C576 147.88 573.84 168.66 560.51 222.1zM136 32C96.3 32 64 64.3 64 104S96.3 176 136 176S208 143.7 208 104S175.7 32 136 32zM440 32C400.3 32 368 64.3 368 104S400.3 176 440 176S512 143.7 512 104S479.7 32 440 32z" />
+    <glyph glyph-name="glasses"
+      unicode="&#xF530;"
+      horiz-adv-x="576" d=" M574.1 167.63L528.75 349.3400000000001C522.84 373.04 507.16 393.39 485.75 405.15C464.31 416.88 438.78 419.26 415.56 411.48L400.31 406.4C391.92 403.61 387.39 394.54 390.19 386.1600000000001L395.25 370.98C398.04 362.6 407.1 358.0700000000001 415.48 360.86L428.6600000000001 365.25C439.5300000000001 368.87 451.66 368.82 461.8200000000001 363.52C472.1100000000001 358.15 479.39 348.9600000000001 482.1900000000001 337.7000000000001L520.6500000000001 183.88C498.4600000000001 190.69 470.8600000000001 196.34 439.4500000000001 196.34C404.6800000000001 196.34 365.4700000000001 189.32 324.6000000000002 169.6H251.4200000000002C210.5500000000001 189.34 171.3400000000002 196.35 136.5600000000001 196.35C105.1400000000001 196.35 77.5400000000001 190.7000000000001 55.3500000000001 183.8900000000001L93.8100000000001 337.7200000000001C96.6000000000001 348.9700000000001 103.9000000000001 358.1700000000001 114.1900000000001 363.5300000000001C124.3500000000001 368.8300000000001 136.4700000000001 368.8800000000001 147.3400000000001 365.2600000000001L160.5100000000001 360.8700000000001C168.8900000000001 358.0800000000001 177.9500000000001 362.6100000000001 180.7400000000001 370.9900000000001L185.8000000000001 386.1700000000001C188.6000000000001 394.5500000000001 184.0700000000001 403.6200000000001 175.6800000000001 406.4100000000001L160.4300000000001 411.4900000000001C137.2100000000001 419.2700000000001 111.6800000000001 416.9000000000001 90.2400000000001 405.1600000000001C68.8300000000001 393.3900000000001 53.1500000000001 373.0500000000001 47.2400000000001 349.3600000000001L1.9 167.63A64.218 64.218 0 0 1 0 152.14V81.89C0 18.99 51.58 -32 115.2 -32H152.32C212.6 -32 262.69 13.94 267.2 73.37L270.13 112H305.88L308.81 73.37C313.31 13.94 363.4 -32 423.68 -32H460.8C524.42 -32 576 18.99 576 81.88V152.13C576 157.36 575.36 162.56 574.1 167.63zM203.38 78.21C201.41 52.3 178.98 32 152.32 32H115.2C86.97 32 64 54.38 64 81.89V119.43C82.12 125.92 107.42 132.35 136.58 132.35C160.44 132.35 183.84 128.0200000000001 206.51 119.43L203.38 78.21zM512 81.88C512 54.37 489.03 32 460.8 32H423.68C397.01 32 374.58 52.3 372.62 78.21L369.49 119.43C392.1600000000001 128.0199999999999 415.57 132.35 439.44 132.35C468.56 132.35 493.87 125.91 511.99 119.42V81.8799999999999z" />
+    <glyph glyph-name="globe-africa"
+      unicode="&#xF57C;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM408 224.5V217.57C408 211.7 404.68 206.33 399.43 203.71L384.04 196.01A15.485 15.485 0 0 0 368.5100000000001 196.98L350.3000000000001 209.12A15.519999999999998 15.519999999999998 0 0 1 336.8000000000001 210.93L334.1500000000001 210.05C324.4500000000001 206.82 320.4900000000001 195.26 326.1600000000001 186.75L339.4000000000001 166.89C342.2700000000001 162.58 347.1100000000001 159.99 352.2900000000001 159.99H360.5000000000001C369.0600000000001 159.99 376.0000000000001 153.05 376.0000000000001 144.49V133.15C376.0000000000001 129.8 374.9100000000001 126.53 372.9000000000001 123.85L354.1600000000001 98.87C352.74 96.97 351.7700000000001 94.77 351.3300000000001 92.44L347.0300000000001 69.61C346.4100000000001 66.32 344.74 63.32 342.2700000000001 61.05A159.60800000000003 159.60800000000003 0 0 1 317.2700000000001 31.89L304.2400000000001 12.34A27.756 27.756 0 0 0 281.1500000000001 -0.02C270.6400000000001 -0.02 261.0300000000001 5.92 256.3300000000001 15.3199999999999A78.902 78.902 0 0 0 248.0000000000001 50.61V80.5C248.0000000000001 89.06 241.0600000000001 96 232.5000000000001 96H206.6200000000001C192.1300000000001 96 178.2400000000001 101.76 167.9900000000001 112A54.65899999999999 54.65899999999999 0 0 0 151.9900000000001 150.63V164.69C151.9900000000001 181.88 160.0900000000001 198.07 173.8400000000001 208.39L201.4200000000001 229.08A54.663 54.663 0 0 0 234.2000000000001 240.01H235.0900000000001C243.5700000000001 240.01 251.9400000000001 238.04 259.5200000000001 234.24L274.2400000000001 226.88C277.9200000000001 225.04 282.1700000000001 224.74 286.0700000000001 226.04L333.3800000000001 241.81C339.7100000000001 243.92 343.9800000000001 249.84 343.9800000000001 256.51C343.9800000000001 265.07 337.0400000000001 272.01 328.4800000000001 272.01H318.3900000000001C314.2800000000001 272.01 310.3400000000001 273.64 307.4300000000001 276.55L300.5100000000001 283.4699999999999A15.493 15.493 0 0 1 289.5500000000002 288.01H199.5C190.94 288.01 184 294.95 184 303.51V307.91C184 315.02 188.84 321.2199999999999 195.74 322.95L210.19 326.56C213.93 327.5 217.19 329.79 219.33 333L227.41 345.1099999999999C230.28 349.42 235.12 352.01 240.3 352.01H264.51C273.07 352.01 280.01 358.95 280.01 367.51V389.2099999999999C359.23 376.37 422.86 316.98 441.93 240H423.5C414.94 240 408 233.06 408 224.5z" />
+    <glyph glyph-name="globe-americas"
+      unicode="&#xF57D;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM330.29 82.4C326.3900000000001 78.52 322.3 74.45 318.98 71.12C315.99 68.12 313.88 64.42 312.81 60.41C311.3 54.75 310.08 49.03 308.04 43.54L290.6500000000001 -3.31C276.8900000000001 -6.31 262.6500000000001 -8 248.0000000000001 -8V19.38C249.6900000000001 32 240.3600000000001 55.64 225.3700000000001 70.63C219.37 76.63 216 84.77 216 93.26V125.27C216 136.91 209.73 147.61 199.54 153.24C185.17 161.19 164.73 172.3 150.73 179.35C139.25 185.13 128.63 192.49 119.08 201.1L118.28 201.82A114.792 114.792 0 0 0 100.22 222.56C90.84 236.3300000000001 75.56 258.98 65.63 273.7000000000001C86.1 319.2000000000001 122.99 355.7400000000001 168.83 375.5900000000001L192.84 363.5800000000001C203.48 358.26 216 365.99 216 377.89V389.19C223.99 390.48 232.12 391.3 240.39 391.61L268.69 363.31C274.94 357.06 274.94 346.93 268.69 340.68L264 336L253.66 325.66C250.54 322.54 250.54 317.4700000000001 253.66 314.35L258.35 309.66C261.4700000000001 306.54 261.4700000000001 301.4700000000001 258.35 298.35L250.35 290.35A8.008 8.008 0 0 0 244.6900000000001 288.01H235.7C233.62 288.01 231.62 287.2 230.12 285.74L220.2 276.09A8.008 8.008 0 0 1 218.62 266.78L234.21 235.59C236.87 230.27 233 224.01 227.06 224.01H221.42C219.49 224.01 217.63 224.71 216.18 225.97L206.9 234.03A16.017 16.017 0 0 1 191.35 237.13L160.18 226.74A11.95 11.95 0 0 1 152.01 215.4C152.01 210.87 154.57 206.74 158.62 204.71L169.7000000000001 199.17C179.1100000000001 194.46 189.4900000000001 192.01 200.0100000000001 192.01S222.6000000000001 164.72 232.0100000000001 160.01H298.7600000000001C307.2500000000001 160.01 315.3800000000001 156.64 321.3900000000001 150.64L335.0800000000001 136.95A30.503000000000004 30.503000000000004 0 0 0 344.0100000000001 115.38A46.536 46.536 0 0 0 330.29 82.4zM417 173.75C411.21 175.2 406.1600000000001 178.75 402.85 183.72L384.87 210.69A23.97 23.97 0 0 0 384.87 237.3100000000001L404.46 266.6900000000001C406.78 270.1600000000001 409.96 272.98 413.7 274.8400000000001L426.68 281.3300000000001C440.2 254.41 448 224.13 448 192C448 183.33 447.26 174.84 446.18 166.46L417 173.75z" />
+    <glyph glyph-name="globe-asia"
+      unicode="&#xF57E;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM236.66 199.77C233.77 194.95 228.56 192 222.94 192H222.63C218.39 192 214.32 190.31 211.32 187.31L205.66 181.65C202.54 178.53 202.54 173.46 205.66 170.34L211.32 164.68C214.32 161.68 216.01 157.61 216.01 153.37V144C216.01 135.16 208.85 128 200.01 128H193.9C187.84 128 182.3 131.42 179.59 136.85L156.97 182.0800000000001C154.53 186.96 148.02 188.0200000000001 144.16 184.16L124.69 164.7000000000001C121.69 161.7000000000001 117.62 160.0100000000001 113.38 160.0100000000001H50.81C49.12 170.45 48 181.08 48 192C48 302.28 137.72 392 248 392C269.51 392 290.2 388.49 309.63 382.18L259.4700000000001 343.65C254.36 340.24 254.8400000000001 332.5900000000001 260.3300000000001 329.8400000000001L271.1600000000001 324.43C276.5800000000001 321.7200000000001 280 316.18 280 310.12V232C280 227.58 276.42 224 272 224H268.94C265.9100000000001 224 263.14 225.71 261.79 228.42C260.23 231.54 255.83 231.71 254.0300000000001 228.72L236.6600000000001 199.77zM408 89.57C408 85.33 406.31 81.26 403.31 78.26L393.74 68.69C390.74 65.69 386.67 64 382.43 64H367.27C363.03 64 358.96 65.69 355.96 68.69L342.95 81.7A26.767 26.767 0 0 1 317.53 88.74L296.26 83.42C294.99 83.1 293.69 82.94 292.38 82.94H282.04C277.8 82.94 273.73 84.63 270.73 87.63L258.82 99.54A8.008 8.008 0 0 0 256.48 105.2000000000001V115.4C256.48 118.67 258.4700000000001 121.61 261.51 122.8300000000001L300.85 138.5700000000001C302.8300000000001 139.3600000000001 304.7100000000001 140.3900000000001 306.44 141.6200000000001L330.15 158.5100000000001A7.978 7.978 0 0 0 334.79 159.9900000000001H346.88C350.11 159.9900000000001 353.0299999999999 158.0500000000001 354.2699999999999 155.0600000000001L359.62 142.21A4 4 0 0 1 363.31 139.7500000000001H367.11C368.89 139.7500000000001 370.46 140.9300000000001 370.95 142.6300000000001L375.1499999999999 157.1000000000001C375.6499999999999 158.8100000000001 377.2099999999999 159.9800000000001 378.9899999999999 159.9800000000001H385.0499999999999C387.2599999999999 159.9800000000001 389.0499999999999 158.1900000000001 389.0499999999999 155.9800000000001V143.0500000000001C389.0499999999999 140.9300000000001 389.8899999999999 138.8900000000001 391.3899999999999 137.3900000000001L403.2999999999999 125.48C406.2999999999999 122.48 407.9899999999999 118.41 407.9899999999999 114.17V89.57z" />
+    <glyph glyph-name="globe-europe"
+      unicode="&#xF7A2;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM448 192C448 169.5 444.1 147.8 437.2 127.6H416.9C412.6 127.6 408.5 129.3 405.5 132.4L373.5 165.0000000000001C369 169.6000000000001 369 177.1000000000001 373.6 181.7000000000001L386.1 194.2000000000001V202.9C386.1 205.9 384.9000000000001 208.8000000000001 382.8 210.9L373.4000000000001 220.3000000000001C371.3 222.4 368.4000000000001 223.6000000000001 365.4000000000001 223.6000000000001H349.4000000000001C343.2000000000001 223.6000000000001 338.1 228.7000000000001 338.1 234.9000000000001C338.1 237.9000000000001 339.3 240.8000000000001 341.4000000000001 242.9000000000001L350.8 252.3000000000001C352.9000000000001 254.4000000000001 355.8 255.6000000000001 358.8 255.6000000000001H390.8C397 255.6000000000001 402.1 260.7000000000001 402.1 266.9000000000001V276.3000000000001C402.1 282.5000000000001 397 287.6000000000002 390.8 287.6000000000002H354.1C345.3 287.6000000000002 338.1 280.4000000000001 338.1 271.6000000000002V267.1000000000002C338.1 260.2000000000001 333.7000000000001 254.1000000000001 327.2000000000001 251.9000000000001L295.6 241.4000000000001C292.3 240.3000000000002 290.1 237.3000000000002 290.1 233.8000000000002V231.6000000000002C290.1 227.2000000000002 286.5 223.6000000000001 282.1 223.6000000000001H266.1C261.7000000000001 223.6000000000001 258.1 227.2000000000002 258.1 231.6000000000002S254.5000000000001 239.6000000000002 250.1 239.6000000000002H247C244 239.6000000000002 241.2 237.9000000000002 239.8 235.2000000000002L230.4 216.5000000000002C227.7 211.1000000000001 222.2 207.7000000000001 216.1 207.7000000000001H194C185.2 207.7000000000001 178 214.9000000000001 178 223.7000000000001V249C178 253.2 179.7 257.3 182.7 260.3L202.8 280.4C207.4 285 210 291.3 210 297.9C210 301.3 212.2 304.4 215.5 305.5L255.5 318.8C257.2 319.4 258.7 320.3 259.9 321.5L286.7 348.3C288.8 350.4 290 353.3 290 356.3C290 362.5 284.9 367.6 278.7 367.6H258L242 351.6V343.6C242 339.2 238.4 335.6 234 335.6H218C213.6 335.6 210 339.2 210 343.6V363.6C210 366.1 211.2 368.5 213.2 370L242.1 391.7000000000001C244 391.8 245.9 392 247.8 392C358.3 392 448 302.3 448 192zM130.1 298.9C130.1 301.9 131.3 304.8 133.4 306.9L158.8 332.3C160.9 334.4 163.8 335.6 166.8 335.6C173 335.6 178.1 330.5 178.1 324.3V308.3C178.1 305.3 176.9 302.4 174.8 300.3L165.4 290.9C163.3 288.8 160.4 287.6 157.4 287.6H141.4C135.2 287.6 130.1 292.7 130.1 298.9zM258.1 -7.5V-0.4C258.1 8.4 250.9000000000001 15.6 242.1 15.6H221.9C211.1 15.6 195.2000000000001 20.9 186.5 27.4L164.3000000000001 44.1C152.8000000000001 52.7 146.1000000000001 66.2000000000001 146.1000000000001 80.5V104.4C146.1000000000001 120.4 154.5000000000001 135.2 168.2000000000001 143.4L211.1000000000001 169.1C218.2000000000001 173.3 226.3000000000001 175.6 234.5000000000001 175.6H265.7000000000001C276.6 175.6 287.1 171.7 295.3000000000001 164.7L338.5000000000001 127.6H356.8000000000001C365.3000000000001 127.6 373.4000000000001 124.2 379.4000000000001 118.2L396.7000000000001 100.9C400.1000000000001 97.5 404.8000000000002 95.6 409.6000000000001 95.6H423C390.6 36.7 329.2 -3.9 258.1 -7.5z" />
+    <glyph glyph-name="globe-snow"
+      unicode="&#xF7A3;"
+      horiz-adv-x="448" d=" M384 32H64L16.6 -39.1C9.5 -49.8 17.1 -64 29.9 -64H418.1C430.9 -64 438.5 -49.8 431.4 -39.1L384 32zM192 64V96H134.1C119.9 96 112.1 111 121.2 120.9L186.7 192H156.6C145.9 192 140.1 203.2 146.9 210.7L214.3 283.9C219.3 289.4 228.6 289.4 233.6 283.9L301 210.7C307.8 203.3 302 192 291.3 192H261.2L326.7 120.9C335.8 111 328 96 313.8 96H256V64H380.1C421.8 104.6 448 161.1 448 224C448 347.7 347.7 448 224 448S0 347.7 0 224C0 161.1 26.1 104.6 67.9 64H192zM336 288C344.8 288 352 280.8 352 272S344.8 256 336 256S320 263.2 320 272S327.2 288 336 288zM240 384C248.8 384 256 376.8 256 368S248.8 352 240 352S224 359.2 224 368S231.2 384 240 384zM80 224C88.8 224 96 216.8 96 208S88.8 192 80 192S64 199.2 64 208S71.2 224 80 224z" />
+    <glyph glyph-name="globe-stand"
+      unicode="&#xF5F6;"
+      horiz-adv-x="448" d=" M321.14 142.86C383.62 205.34 383.62 306.65 321.14 369.13C258.66 431.61 157.35 431.61 94.87 369.13C32.39 306.6500000000001 32.39 205.34 94.87 142.86S258.65 80.38 321.14 142.86zM348.12 -16H256.0900000000001V20.98C300.6900000000001 29.99 343.23 51.69 377.8400000000001 86.29C463.09 171.51 470.5700000000001 304.73 400.7500000000001 398.67L411.4500000000001 409.37C417.7000000000001 415.62 417.7000000000001 425.75 411.4500000000001 432L400.14 443.31C393.89 449.56 383.76 449.56 377.5 443.31L334.4700000000001 400.3C337.6500000000001 397.51 340.86 394.78 343.8800000000001 391.77C418.7700000000001 316.91 418.7700000000001 195.1 343.8800000000001 120.24C307.61 83.97 259.37 64 208.07 64S108.54 83.97 72.26 120.24C69.19 123.31 67.01 126.89 64.19 130.12L4.69 70.62C-1.56 64.37 -1.56 54.24 4.69 47.99L16 36.69C22.25 30.44 32.38 30.44 38.64 36.69L65.35 63.39C103.13 35.33 147.26 19.79 192.07 16.75V-16H100.04C80.15 -16 64.03 -32.12 64.03 -52C64.03 -58.63 69.4 -64 76.03 -64H372.13C378.76 -64 384.13 -58.63 384.13 -52C384.13 -32.12 368.01 -16 348.12 -16z" />
+    <glyph glyph-name="globe"
+      unicode="&#xF0AC;"
+      horiz-adv-x="496" d=" M336.5 288C322 377.3 287.8 440 248 440S174 377.3 159.5 288H336.5zM152 192C152 169.8 153.2 148.5 155.3 128H340.6C342.7000000000001 148.5 343.9000000000001 169.8 343.9000000000001 192S342.7000000000001 235.5 340.6 256H155.3C153.2 235.5 152 214.2 152 192zM476.7 288C448.1 355.9 390.2 408.4 318.7 429.6C343.1 395.8 359.9 344.9 368.7 288H476.7zM177.2 429.6C105.8 408.4 47.8 355.9 19.3 288H127.3C136 344.9 152.8 395.8 177.2 429.6zM487.4 256H372.7C374.8 235 376 213.5 376 192S374.8 149 372.7 128H487.3C492.8 148.5 495.9 169.8 495.9 192S492.8 235.5 487.4 256zM120 192C120 213.5 121.2 235 123.3 256H8.6C3.2 235.5 0 214.2 0 192S3.2 148.5 8.6 128H123.2C121.2 149 120 170.5 120 192zM159.5 96C174 6.7 208.2 -56 248 -56S322 6.7 336.5 96H159.5zM318.8 -45.6C390.2000000000001 -24.4 448.2000000000001 28.1 476.8 96H368.8C360 39.1 343.2 -11.8 318.8 -45.6zM19.3 96C47.9 28.1 105.8 -24.4 177.3 -45.6C152.9 -11.8 136.1 39.1 127.3 96H19.3z" />
+    <glyph glyph-name="golf-ball"
+      unicode="&#xF450;"
+      horiz-adv-x="416" d=" M96 32H320C320 14.3 305.7 0 288 0H272C254.3 0 240 -14.3 240 -32V-52C240 -58.6 234.6 -64 228 -64H188C181.4 -64 176 -58.6 176 -52V-32C176 -14.3 161.7 0 144 0H128C110.3 0 96 14.3 96 32zM416 240C416 165.8 377 100.8 318.5 64H97.5C39 100.8 0 165.8 0 240C0 354.9 93.1 448 208 448S416 354.9 416 240zM235.9 196.1C254.2 196.1 269 210.9 269 229.2C269 243.6 259.7 255.5 246.9 260.1C256.5 233.3 231.3 208.8 205 218.2C209.6 205.4 221.5 196.1 235.9 196.1zM285 149.2C285 163.6 275.7 175.5 262.9 180.1C272.5 153.3 247.3 128.8 221 138.2C225.6 125.4 237.5 116.1 251.9 116.1C270.2 116.1 285 131 285 149.2zM349 213.2C349 227.6 339.7 239.5 326.9 244.1C336.5 217.3 311.3 192.8 285 202.2C289.6 189.4 301.5 180.1 315.9 180.1C334.2 180.1 349 195 349 213.2z" />
+    <glyph glyph-name="golf-club"
+      unicode="&#xF451;"
+      horiz-adv-x="640" d=" M638.4 418.1L424.3 -27.7C413.6 -49.9 391.2 -64 366.6 -64H64C28.7 -64 0 -35.3 0 0V8H120C124.4 8 128 11.6 128 16V48C128 52.4 124.4 56 120 56H0V104H120C124.4 104 128 107.6 128 112V144C128 148.4 124.4 152 120 152H0V178.9C0 219 36.4 249.2 75.8 241.8L465.5 168.7L595.2 439C599 447 608.6 450.3 616.6 446.4L631 439.5C638.9 435.6 642.2 426 638.4 418.1z" />
+    <glyph glyph-name="gopuram"
+      unicode="&#xF664;"
+      horiz-adv-x="512" d=" M496 96H480V208C480 216.84 472.84 224 464 224H448V304C448 312.8400000000001 440.84 320 432 320H416V432C416 440.84 408.84 448 400 448S384 440.84 384 432V416H320V432C320 440.84 312.84 448 304 448S288 440.84 288 432V416H224V432C224 440.84 216.84 448 208 448S192 440.84 192 432V416H128V432C128 440.84 120.84 448 112 448S96 440.84 96 432V320H80C71.16 320 64 312.8400000000001 64 304V224H48C39.16 224 32 216.84 32 208V96H16C7.16 96 0 88.84 0 80V-48C0 -56.84 7.16 -64 16 -64H96V96H128V224H160V320H192V224H160V96H128V-64H208V16C208 24.84 215.16 32 224 32H288C296.84 32 304 24.84 304 16V-64H384V96H352V224H320V320H352V224H384V96H416V-64H496C504.84 -64 512 -56.84 512 -48V80C512 88.84 504.84 96 496 96zM224 96V160C224 168.84 231.16 176 240 176H272C280.84 176 288 168.84 288 160V96H224zM232 224V272C232 280.8400000000001 239.16 288 248 288H264C272.84 288 280 280.8400000000001 280 272V224H232z" />
+    <glyph glyph-name="graduation-cap"
+      unicode="&#xF19D;"
+      horiz-adv-x="640" d=" M622.34 294.8L343.4 380.5C328.2 385.17 311.8 385.17 296.61 380.5L17.66 294.8C-5.88 287.5700000000001 -5.88 256.44 17.66 249.21L66.29 234.27C55.62 221.08 49.06 204.99 48.41 187.37C38.78 181.85 32 171.89 32 160C32 149.22 37.68 140.15 45.86 134.35L20.33 19.47C18.11 9.48 25.71 0 35.94 0H92.05C102.29 0 109.89 9.48 107.67 19.47L82.14 134.35C90.32 140.15 96 149.22 96 160C96 171.57 89.53 181.25 80.34 186.87C81.1 201.89 88.78 215.17 101.03 223.59L296.6 163.5C305.6600000000001 160.72 323.04 157.25 343.3900000000001 163.5L622.34 249.2C645.89 256.44 645.89 287.56 622.34 294.8zM352.79 132.91C324.26 124.15 299.9500000000001 128.99 287.2000000000001 132.91L142.18 177.46L128 64C128 28.65 213.96 0 320 0S512 28.65 512 64L497.82 177.47L352.79 132.91z" />
+    <glyph glyph-name="greater-than-equal"
+      unicode="&#xF532;"
+      horiz-adv-x="448" d=" M55.22 340.31L230.78 272.2200000000001L55.34 204.17C36.95 198.14 27.46 179.78 34.14 163.17L46.23 133.09C52.91 116.48 73.22 107.9 91.61 113.9400000000001L393.02 233.8C406.79 238.32 416 250.4100000000001 416 263.9700000000001V279.9300000000001C416 293.49 406.79 305.5800000000001 393.02 310.1L91.3 430.08C73.01 436.08 52.79 427.55 46.15 411.02L34.12 381.1C27.48 364.57 36.93 346.31 55.22 340.31zM424 48H24C10.75 48 0 37.26 0 24V-24C0 -37.25 10.75 -48 24 -48H424C437.25 -48 448 -37.25 448 -24V24C448 37.26 437.25 48 424 48z" />
+    <glyph glyph-name="greater-than"
+      unicode="&#xF531;"
+      horiz-adv-x="384" d=" M365.52 238.15L59.22 380.99C43.16 388.48 24.07 381.53 16.58 365.4700000000001L3.01 336.39C-4.48 320.33 2.47 301.24 18.53 293.75L236.96 191.9L18.49 90.01C2.47 82.54 -4.46 63.5 3.01 47.48L16.53 18.48C24 2.46 43.04 -4.47 59.06 3L365.5300000000001 145.91A32.003 32.003 0 0 1 384.0100000000001 174.91V209.14C384.0000000000001 221.59 376.8000000000001 232.9 365.5200000000001 238.15z" />
+    <glyph glyph-name="grimace"
+      unicode="&#xF57F;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM144 48H136C118.3 48 104 62.3 104 80V88H144V48zM144 104H104V112C104 129.7 118.3 144 136 144H144V104zM136 240C136 257.7 150.3 272 168 272S200 257.7 200 240S185.7 208 168 208S136 222.3 136 240zM208 48H160V88H208V48zM208 104H160V144H208V104zM272 48H224V88H272V48zM272 104H224V144H272V104zM336 48H288V88H336V48zM336 104H288V144H336V104zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208zM392 80C392 62.3 377.7 48 360 48H352V88H392V80zM392 104H352V144H360C377.7 144 392 129.7 392 112V104z" />
+    <glyph glyph-name="grin-alt"
+      unicode="&#xF581;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM311.7 311.3C319.3 322.7000000000001 336.4 323 344.4 311.3C356.8 292.9 359.5 274.4 360.1 256C359.6 237.6 356.8 219.1 344.4 200.7C336.8 189.3 319.7 189 311.7 200.7C299.3 219.1 296.6 237.6 296 256C296.5 274.4 299.3 292.9 311.7 311.3zM151.7 311.3C159.3 322.7000000000001 176.4 323 184.4 311.3C196.8 292.9 199.5 274.4 200.1 256C199.6 237.6 196.8 219.1 184.4 200.7C176.8 189.3 159.7 189 151.7 200.7C139.3 219.1 136.6 237.6 136 256C136.5 274.4 139.3 292.9 151.7 311.3zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.1 113.5 130.9 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.5 130.9 393.7000000000001 121.1 391.8 109.3C382.5 54.3 308.6 16 248 16z" />
+    <glyph glyph-name="grin-beam-sweat"
+      unicode="&#xF583;"
+      horiz-adv-x="504" d=" M456 320C482.5 320 504 341 504 367C504 387 475.5 427.4 462.4 444.8C459.2 449.1 452.8 449.1 449.6 444.8C436.5 427.4 408 387 408 367C408 341 429.5 320 456 320zM456 288C411.9 288 376 323.4 376 367C376 371.4 376.3 381.2 384.1 399.2C345 424.9 298.3 440 248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192C496 227.1 488.6 260.4 475.5 290.6C469.2 289.1 462.8 288 456 288zM328 296C351.8 296 380.7 266.7 384 224.6C384.7 216 373.2 212.6 369.1 220.1L359.6 237.1C351.9000000000001 250.8 340.4000000000001 258.7 328.1 258.7S304.3 250.8 296.6 237.1L287.1 220.1C283 212.7 271.5 216.1 272.2000000000001 224.6C275.3000000000001 266.7 304.2000000000001 296 328.0000000000001 296zM168 296C191.8 296 220.7 266.7 224 224.6C224.7 216 213.2 212.6 209.1 220.1L199.6 237.1C191.9 250.8 180.4 258.7 168.1 258.7S144.3 250.8 136.6 237.1L127.1 220.1C122.9 212.7 111.5 216.1 112.2 224.6C115.3 266.7 144.2 296 168 296zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.1 113.5 130.9 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.6 130.9 393.7000000000001 121 391.8 109.3C382.5 54.3 308.6 16 248 16z" />
+    <glyph glyph-name="grin-beam"
+      unicode="&#xF582;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 296C351.8 296 380.7 266.7 384 224.6C384.7 216 373.2 212.7 369.1 220.1L359.6 237.1C351.9000000000001 250.8 340.4000000000001 258.7 328.1 258.7S304.3 250.8 296.6 237.1L287.1 220.1C283 212.8 271.5 216.1 272.2000000000001 224.6C275.3000000000001 266.7 304.2000000000001 296 328.0000000000001 296zM168 296C191.8 296 220.7 266.7 224 224.6C224.7 216 213.2 212.7 209.1 220.1L199.6 237.1C191.9 250.8 180.4 258.7 168.1 258.7S144.3 250.8 136.6 237.1L127.1 220.1C122.9 212.7 111.5 216.1 112.2 224.6C115.3 266.7 144.2 296 168 296zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.2 113.6 130.9 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.5 130.9 393.7000000000001 121.1 391.8 109.3C382.5 54.3 308.6 16 248 16z" />
+    <glyph glyph-name="grin-hearts"
+      unicode="&#xF584;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM90.4 264.4C97.1 282 117.1 291.1 135.3 286.3L142.4 284.4L144.4 291.5C149.4 309.6 167.2 322.4 185.9 319.4C207.3 316 220.3 295.2000000000001 214.7 274.9L195.3 205C194.1 200.5 189.4 197.8 184.8 199L114.6 217.2C94.2 222.6 82.7 244.2 90.4 264.4zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.1 113.4 130.8 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.5 130.8 393.7000000000001 121.1 391.8 109.3C382.5 54.3 308.6 16 248 16zM381.4 217.3L311.2 199.1C306.7 197.9 302 200.6 300.7 205.1L281.3 275C275.7 295.3 288.7 316.1 310.1 319.5C328.7000000000001 322.5 346.5 309.7 351.6 291.6L353.6 284.5L360.7000000000001 286.4C378.9000000000001 291.1 398.9000000000001 282.1 405.6 264.5C413.3 244.2 401.8 222.6 381.4000000000001 217.3z" />
+    <glyph glyph-name="grin-squint-tears"
+      unicode="&#xF586;"
+      horiz-adv-x="512" d=" M409.6 336.1C432.2000000000001 339.3 483.1 348.1 497.9 362.9C517.1 382.1 516.8000000000001 413.5 497.2 433.1S446 453 426.9 433.8C412.1 419 403.4 368.1 400.1 345.5C399.3 340 404 335.3 409.6 336.1zM102.4 47.9C79.8 44.7 28.9 35.9 14.1 21.1C-5 1.9999999999999 -4.7 -29.5000000000001 14.9 -49.1S65.9 -69 85.1 -49.8C99.9 -35 108.6 15.9 111.9 38.5C112.7 44 108 48.7 102.4 47.9zM414.1 304.4C381.1 300.5 365.5 329.5 368.4000000000001 350.1C371.8 374.1 375.8 392.2 379.9000000000001 406.6C285.1 461.4 161.8 448.5 80.6 367.4C-0.5 286.3 -13.4 163 41.4 68.1C55.8 72.2000000000001 73.8 76.1 97.9 79.6C131.1 83.5 146.5 54.4 143.6 33.9C140.2 9.9 136.2 -8.2 132.1 -22.6C226.9000000000001 -77.4 350.2000000000001 -64.5 431.4000000000001 16.6S525.4000000000001 221 470.6 315.9000000000001C456.2 311.8000000000001 438.1 307.9000000000001 414.1 304.4000000000001zM255.7 342C259 355.2 278.1 353.5 279.3 340.2L284.1 287.9L336.4000000000001 283.1C349.8 281.9 351.3 262.8 338.2000000000001 259.5L247.7000000000001 236.9C238.8000000000001 234.7 231.0000000000001 242.8 233.2000000000001 251.4L255.7000000000001 342zM164.8 111.7L160 164L107.7 168.8C94.3 170 92.8 189.1 105.9 192.4L196.4 215C205.2 217.2 213.1 209.2 210.9 200.5L188.3 110C185.2 96.8 166.1 98.3 164.8 111.7zM380.5 67.5C351.2 38.2 304.8 17.1 263.8 17.1C244.9 17.1 227.2 21.6 212.8 31.8C203 38.7 204.1 53.6 214.8 59C243.1 73.6 278.7 101.4 312.6 135.3S374.3 204.9 388.9000000000001 233.1C394.3 243.6 409.1 245.0000000000001 416.2000000000001 235.1C448.5000000000001 189.8 423.3000000000001 110.4 380.5000000000001 67.5z" />
+    <glyph glyph-name="grin-squint"
+      unicode="&#xF585;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM281.8 250.3L361.8 298.3C373.4000000000001 305.2000000000001 385.8 290.6 377.2 280.3L343.6 240L377.2000000000001 199.7C385.9000000000001 189.3 373.3000000000001 174.9 361.8000000000001 181.7L281.8000000000001 229.7C274.1000000000001 234.4 274.1000000000001 245.6 281.8000000000001 250.3zM118.8 280.3C110.2 290.6 122.6 305.2000000000001 134.2 298.3L214.2 250.3C222 245.6 222 234.4 214.2 229.7L134.2 181.7000000000001C122.7 174.9 110.2 189.3000000000001 118.8 199.7000000000001L152.4 240.0000000000001L118.8 280.3000000000001zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.2 113.6 130.9 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.6 130.9 393.7000000000001 121 391.8 109.3C382.5 54.3 308.6 16 248 16z" />
+    <glyph glyph-name="grin-stars"
+      unicode="&#xF587;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM94.6 279.1L129.5 284.1L145 315.7C147.9 321.5 156 321.5 158.9 315.7L174.4 284.1L209.3 279.1C215.5 278.1 218.2 270.5 213.6 265.9L188.2 241.3L194.2 206.4C195.2 200.2 188.9 195.4 183.2 198.5L152 214.7L120.7 198.4C115 195.3 108.7 200.1 109.7 206.3L115.7 241.2L90.3 265.8C85.7 270.5 88.4 278.1 94.6 279.1zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.1 113.5 130.8 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.6 130.9 393.7000000000001 121.1 391.8 109.3C382.5 54.3 308.6 16 248 16zM405.7 265.9L380.3 241.3L386.3 206.4C387.3 200.2 381 195.4 375.3 198.5L344 214.7L312.7 198.4C307 195.3 300.7 200.1 301.7 206.3L307.7 241.2L282.3 265.8C277.8 270.4 280.4000000000001 278 286.6 279L321.5 284L337 315.6C339.9 321.4 348 321.4 350.9 315.6L366.4 284L401.3 279C407.6 278.1 410.3 270.5 405.7 265.9z" />
+    <glyph glyph-name="grin-tears"
+      unicode="&#xF588;"
+      horiz-adv-x="640" d=" M102.4 191.9C79.8 188.7 28.9 179.9 14.1 165.1C-5 146 -4.7 114.5 14.9 94.9S65.9 75 85.1 94.2C99.9 109 108.6 159.9 111.9 182.5C112.7 188 108 192.7 102.4 191.9zM625.8 165.1C611 179.9 560.0999999999999 188.6 537.5 191.9C532 192.7 527.2 188 528 182.4C531.2 159.8 540 108.9 554.8 94.1C574 74.9 605.4 75.2 625 94.8S645 146 625.8 165.1zM496.4 177.9C492.6 204.5 515.5 227.4 542.1 223.6C551 222.3 558.9 220.9 566.4 219.5C552.7 343.5 447.7 440 320 440S87.3 343.5 73.6 219.5C81.1 220.9 89 222.3 97.9 223.6C131.1 227.5 146.5 198.3 143.6 177.9C131.8 95.6 113.7 77.5 107.8 71.5C106.9 70.6 105.8 69.9 104.8 69C147.5 -5.6 227.8 -56 320 -56S492.5 -5.6 535.2 69.1C534.2 70 533.1 70.6 532.2 71.6C526.3000000000001 77.5 508.2 95.6 496.4 177.9zM400 296C423.8 296 452.7 266.7 456 224.6C456.7 216 445.2 212.6 441.1 220.1L431.6 237.1C423.9000000000001 250.8 412.4000000000001 258.7 400.1 258.7S376.3 250.8 368.6 237.1L359.1 220.1C354.9000000000001 212.7 343.5 216.1 344.2000000000001 224.6C347.3000000000001 266.7 376.2000000000001 296 400.0000000000001 296zM240 296C263.8 296 292.7 266.7 296 224.6C296.7 216 285.2 212.6 281.1 220.1L271.6 237.1C263.9000000000001 250.8 252.4000000000001 258.7 240.1 258.7S216.3 250.8 208.6 237.1L199.1 220.1C194.9 212.7 183.5 216.1 184.2 224.6C187.3 266.7 216.2 296 240 296zM320 16C259.4 16 185.5 54.3 176.2 109.3C174.2 121 185.4 130.9 196.9 127.2C227.1 117.5 272 112 320 112S412.9 117.5 443.1 127.2C454.5 130.9 465.7 121.1 463.8 109.3C454.5 54.3 380.6 16 320 16z" />
+    <glyph glyph-name="grin-tongue-squint"
+      unicode="&#xF58A;"
+      horiz-adv-x="496" d=" M293.1 73.4C278.7000000000001 79.9 262 71.2 258.5 55.8L256.7 47.9999999999999C254.6 38.8 241.5 38.8 239.4 47.9999999999999L237.6 55.8C234.1 71.1999999999999 217.4 79.9 203 73.4C202.1 73 203.3 73.6 184.1 64V1C184.1 -34.2 212.1 -63.5 247.2 -63.9C282.9 -64.4 312.1 -35.5 312.1 0.1V64.1C292.6 73.7000000000001 293.9 73 293.1 73.4zM248 440C111 440 0 329 0 192C0 85.7 67 -4.7 161 -40C155.4 -27.8 152 -14.3 152 0V45.5C127.3 61.7 108.5 83.6 104.2 109.3C102.2 121.1 113.4 130.8 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.5 130.9 393.7000000000001 121.1 391.8 109.3C387.5 83.6 368.7 61.7 344 45.5V0C344 -14.3 340.6 -27.8 335 -40C429 -4.7 496 85.7 496 192C496 329 385 440 248 440zM214.2 229.7L134.2 181.7C122.7 174.9 110.2 189.3 118.8 199.7L152.4 240L118.8 280.3C110.2 290.6 122.6 305.2000000000001 134.2 298.3L214.2 250.3C221.9 245.6 221.9 234.4 214.2 229.7zM377.2 199.7C385.9 189.3 373.3 174.9 361.8 181.7L281.8 229.7C274 234.4 274 245.6 281.8 250.3L361.8 298.3C373.5 305.2 385.7 290.6 377.2 280.3L343.6 240L377.2000000000001 199.7z" />
+    <glyph glyph-name="grin-tongue-wink"
+      unicode="&#xF58B;"
+      horiz-adv-x="496" d=" M344 264C330.7 264 320 253.3 320 240S330.7 216 344 216S368 226.7 368 240S357.3 264 344 264zM248 440C111 440 0 329 0 192C0 85.7 67 -4.7 161 -40C155.4 -27.8 152 -14.3 152 0V45.5C127.3 61.7 108.5 83.6 104.2 109.3C102.2 121.1 113.5 130.8 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.6 130.9 393.7000000000001 121.1 391.8 109.3C387.5 83.6 368.7 61.7 344 45.5V0C344 -14.3 340.6 -27.8 335 -40C429 -4.7 496 85.7 496 192C496 329 385 440 248 440zM192 215L182.5 223.5C167.7 236.7 136.3 236.7 121.5 223.5L112 215C103.5 207.6 90.4 214.7 92.2 225.8C96.2 251 126.4 267.9 152.1 267.9S208 251 212 225.8C213.6 214.7 200.4 207.6 192 215zM344 176C308.7 176 280 204.7 280 240S308.7 304 344 304S408 275.3 408 240S379.3 176 344 176zM293.1 73.4C278.7000000000001 79.9 262 71.2 258.5 55.8L256.7 47.9999999999999C254.6 38.8 241.5 38.8 239.4 47.9999999999999L237.6 55.8C234.1 71.1999999999999 217.4 79.9 203 73.4C202.1 73 203.3 73.6 184.1 64V1C184.1 -34.2 212.1 -63.5 247.2 -63.9C282.9 -64.4 312.1 -35.5 312.1 0.1V64.1C292.6 73.7000000000001 293.9 73 293.1 73.4z" />
+    <glyph glyph-name="grin-tongue"
+      unicode="&#xF589;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192C0 85.7 67 -4.7 161 -40C155.4 -27.8 152 -14.3 152 0V45.5C127.3 61.7 108.5 83.6 104.2 109.3C102.2 121.1 113.5 130.8 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.5 130.8 393.7000000000001 121.1 391.8 109.3C387.5 83.6 368.7 61.7 344 45.5V0C344 -14.3 340.6 -27.8 335 -40C429 -4.7 496 85.7 496 192C496 329 385 440 248 440zM168 208C150.3 208 136 222.3 136 240S150.3 272 168 272S200 257.7 200 240S185.7 208 168 208zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208zM293.1 73.4C278.7000000000001 79.9 262 71.2 258.5 55.8L256.7 47.9999999999999C254.6 38.8 241.5 38.8 239.4 47.9999999999999L237.6 55.8C234.1 71.1999999999999 217.4 79.9 203 73.4C202.1 73 203.3 73.6 184.1 64V1C184.1 -34.2 212.1 -63.5 247.2 -63.9C282.9 -64.4 312.1 -35.5 312.1 0.1V64.1C292.6 73.7000000000001 293.9 73 293.1 73.4z" />
+    <glyph glyph-name="grin-wink"
+      unicode="&#xF58C;"
+      horiz-adv-x="496" d=" M0 192C0 55 111 -56 248 -56S496 55 496 192S385 440 248 440S0 329 0 192zM200 240C200 222.3 185.7 208 168 208S136 222.3 136 240S150.3 272 168 272S200 257.7 200 240zM368 215L358.5 223.5C343.7 236.7 312.3 236.7 297.5 223.5L288 215C279.7 207.6 266.4 214.6 268.2 225.8C272.2 251 302.4 267.9 328.1 267.9S384 251 388 225.8C389.6 214.8 376.5 207.6 368 215zM124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.4000000000001 130.9 393.7000000000001 121.2 391.8 109.3C382.6 54.3 308.6 16 248 16S113.5 54.3 104.2 109.3C102.2 121.2 113.5 130.9 124.9 127.2z" />
+    <glyph glyph-name="grin"
+      unicode="&#xF580;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 272C345.7 272 360 257.7 360 240S345.7 208 328 208S296 222.3 296 240S310.3 272 328 272zM168 272C185.7 272 200 257.7 200 240S185.7 208 168 208S136 222.3 136 240S150.3 272 168 272zM248 16C187.4 16 113.5 54.3 104.2 109.3C102.2 121.1 113.5 130.9 124.9 127.2C155.1 117.5 200 112 248 112S340.9 117.5 371.1 127.2C382.4000000000001 130.9 393.7000000000001 121.1 391.8 109.3C382.5 54.3 308.6 16 248 16z" />
+    <glyph glyph-name="grip-horizontal"
+      unicode="&#xF58D;"
+      horiz-adv-x="448" d=" M96 160H32C14.33 160 0 145.67 0 128V64C0 46.33 14.33 32 32 32H96C113.67 32 128 46.33 128 64V128C128 145.67 113.67 160 96 160zM256 160H192C174.33 160 160 145.67 160 128V64C160 46.33 174.33 32 192 32H256C273.67 32 288 46.33 288 64V128C288 145.67 273.67 160 256 160zM416 160H352C334.33 160 320 145.67 320 128V64C320 46.33 334.33 32 352 32H416C433.67 32 448 46.33 448 64V128C448 145.67 433.67 160 416 160zM96 352H32C14.33 352 0 337.67 0 320V256C0 238.33 14.33 224 32 224H96C113.67 224 128 238.33 128 256V320C128 337.67 113.67 352 96 352zM256 352H192C174.33 352 160 337.67 160 320V256C160 238.33 174.33 224 192 224H256C273.67 224 288 238.33 288 256V320C288 337.67 273.67 352 256 352zM416 352H352C334.33 352 320 337.67 320 320V256C320 238.33 334.33 224 352 224H416C433.67 224 448 238.33 448 256V320C448 337.67 433.67 352 416 352z" />
+    <glyph glyph-name="grip-lines-vertical"
+      unicode="&#xF7A5;"
+      horiz-adv-x="256" d=" M96 -48V432C96 440.8 88.8 448 80 448H48C39.2 448 32 440.8 32 432V-48C32 -56.8 39.2 -64 48 -64H80C88.8 -64 96 -56.8 96 -48zM224 -48V432C224 440.8 216.8 448 208 448H176C167.2 448 160 440.8 160 432V-48C160 -56.8 167.2 -64 176 -64H208C216.8 -64 224 -56.8 224 -48z" />
+    <glyph glyph-name="grip-lines"
+      unicode="&#xF7A4;"
+      horiz-adv-x="512" d=" M496 160H16C7.2 160 0 152.8 0 144V112C0 103.2 7.2 96 16 96H496C504.8 96 512 103.2 512 112V144C512 152.8 504.8 160 496 160zM496 288H16C7.2 288 0 280.8 0 272V240C0 231.2 7.2 224 16 224H496C504.8 224 512 231.2 512 240V272C512 280.8 504.8 288 496 288z" />
+    <glyph glyph-name="grip-vertical"
+      unicode="&#xF58E;"
+      horiz-adv-x="320" d=" M96 416H32C14.33 416 0 401.67 0 384V320C0 302.33 14.33 288 32 288H96C113.67 288 128 302.3300000000001 128 320V384C128 401.67 113.67 416 96 416zM96 256H32C14.33 256 0 241.67 0 224V160C0 142.33 14.33 128 32 128H96C113.67 128 128 142.33 128 160V224C128 241.67 113.67 256 96 256zM96 96H32C14.33 96 0 81.67 0 64V0C0 -17.67 14.33 -32 32 -32H96C113.67 -32 128 -17.67 128 0V64C128 81.67 113.67 96 96 96zM288 416H224C206.33 416 192 401.67 192 384V320C192 302.33 206.33 288 224 288H288C305.67 288 320 302.3300000000001 320 320V384C320 401.67 305.67 416 288 416zM288 256H224C206.33 256 192 241.67 192 224V160C192 142.33 206.33 128 224 128H288C305.67 128 320 142.33 320 160V224C320 241.67 305.67 256 288 256zM288 96H224C206.33 96 192 81.67 192 64V0C192 -17.67 206.33 -32 224 -32H288C305.67 -32 320 -17.67 320 0V64C320 81.67 305.67 96 288 96z" />
+    <glyph glyph-name="guitar"
+      unicode="&#xF7A6;"
+      horiz-adv-x="512" d=" M502.6 393.4L457.4 438.6C444.9 451.1 424.6 451.1 412.1 438.6L344.2 370.7C331.7 358.2 331.7 337.9 344.2 325.4L290 271.3C244.6 300.3 189.6 300.2000000000001 156.5 267.1C146.8 257.4000000000001 140.1 245.9000000000001 136 233.2C129.9 214.4 112.5 200.1 93.3 198.3C69.3 196 47 186.7 29.9 169.5C-16.3 123.4 -8 40.4 48.2 -15.8C104.4 -72 187.4 -80.2 233.5 -34.1C250.7 -17 260 5.3 262.3 29.4C264.1 48.5 278.4000000000001 66 297.2 72.1C309.9 76.2 321.4 82.9 331.1 92.6C364.2 125.7 364.2 180.6999999999999 335.3 226.1L389.5 280.3C402 267.8 422.3 267.8 434.8 280.3L502.6999999999999 348.2C515.0999999999999 360.6 515.0999999999999 380.9 502.5999999999999 393.4zM208 96C181.5 96 160 117.5 160 144S181.5 192 208 192S256 170.5 256 144S234.5 96 208 96z" />
+    <glyph glyph-name="h-square"
+      unicode="&#xF0FD;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM336 320H304C295.163 320 288 312.837 288 304V224H160V304C160 312.837 152.837 320 144 320H112C103.163 320 96 312.837 96 304V80C96 71.163 103.163 64 112 64H144C152.837 64 160 71.163 160 80V160H288V80C288 71.163 295.163 64 304 64H336C344.837 64 352 71.163 352 80V304C352 312.837 344.837 320 336 320z" />
+    <glyph glyph-name="h1"
+      unicode="&#xF313;"
+      horiz-adv-x="640" d=" M167.675 73.966V48C167.675 39.163 160.512 32 151.675 32H38.365C29.528 32 22.365 39.163 22.365 48V73.966C22.365 82.803 29.528 89.966 38.365 89.966H58.759V293.606H38.365C29.528 293.606 22.365 300.769 22.365 309.606V336C22.365 344.837 29.528 352 38.365 352H151.675C160.512 352 167.675 344.837 167.675 336V309.606C167.675 300.769 160.512 293.606 151.675 293.606H130.853V221.839H253.1430000000001V293.606H232.3210000000001C223.484 293.606 216.321 300.769 216.321 309.606V336C216.321 344.837 223.484 352 232.3210000000001 352H345.6310000000001C354.468 352 361.6310000000001 344.837 361.6310000000001 336V309.606C361.6310000000001 300.769 354.468 293.606 345.6310000000001 293.606H325.2380000000001V89.966H345.6310000000001C354.4680000000001 89.966 361.6310000000001 82.803 361.6310000000001 73.966V48C361.6310000000001 39.163 354.4680000000001 32 345.6310000000001 32H232.3210000000001C223.4840000000001 32 216.3210000000001 39.163 216.3210000000001 48V73.966C216.3210000000001 82.803 223.4840000000001 89.966 232.3210000000001 89.966H253.1430000000001V160.876H130.8530000000001V89.966H151.6750000000001C160.5120000000001 89.966 167.6750000000001 82.802 167.6750000000001 73.966zM534.062 352H496.896A16.001 16.001 0 0 1 485.811 347.538L417.6550000000001 282.062C411.3080000000001 275.964 411.0770000000001 265.885 417.1400000000001 259.504L438.7020000000001 236.806C444.7820000000001 230.406 454.897 230.139 461.306 236.211L479.914 253.84L480.069 253.991L480.107 254.03V95.533H430.17C421.3330000000001 95.533 414.17 88.37 414.17 79.533V48C414.17 39.163 421.3330000000001 32 430.17 32H600C608.837 32 616 39.163 616 48V79.532C616 88.369 608.837 95.532 600 95.532H550.062V336C550.062 344.837 542.899 352 534.062 352z" />
+    <glyph glyph-name="h2"
+      unicode="&#xF314;"
+      horiz-adv-x="640" d=" M480.776 95.507H605.4350000000001C614.272 95.507 621.4350000000001 88.344 621.4350000000001 79.507V48C621.4350000000001 39.163 614.272 32 605.4350000000001 32H418.863C410.81 32 404.01 37.993 402.99 45.981C401.878 54.691 401.282 60.582 401.282 66.963C401.282 180.069 543.376 201.423 543.376 254.424C543.376 278.168 524.179 288.796 505.152 288.796C486.254 288.796 472.083 277.502 461.314 262.399C456.326 255.405 446.608 253.758 439.459 258.521L411.185 277.358C404.006 282.141 401.963 291.723 406.445 299.094C428.4599999999999 335.2920000000001 466.0389999999999 357.011 509.86 357.011C569.0469999999999 357.011 616.726 319.884 616.726 259.132C616.728 163.517 495.552 140.112 480.776 95.507zM167.675 73.966V48C167.675 39.163 160.512 32 151.675 32H38.365C29.528 32 22.365 39.163 22.365 48V73.966C22.365 82.803 29.528 89.966 38.365 89.966H58.759V293.606H38.365C29.528 293.606 22.365 300.769 22.365 309.606V336C22.365 344.837 29.528 352 38.365 352H151.675C160.512 352 167.675 344.837 167.675 336V309.606C167.675 300.769 160.512 293.606 151.675 293.606H130.853V221.839H253.1430000000001V293.606H232.3210000000001C223.484 293.606 216.321 300.769 216.321 309.606V336C216.321 344.837 223.484 352 232.3210000000001 352H345.6310000000001C354.468 352 361.6310000000001 344.837 361.6310000000001 336V309.606C361.6310000000001 300.769 354.468 293.606 345.6310000000001 293.606H325.2380000000001V89.966H345.6310000000001C354.4680000000001 89.966 361.6310000000001 82.803 361.6310000000001 73.966V48C361.6310000000001 39.163 354.4680000000001 32 345.6310000000001 32H232.3210000000001C223.4840000000001 32 216.3210000000001 39.163 216.3210000000001 48V73.966C216.3210000000001 82.803 223.4840000000001 89.966 232.3210000000001 89.966H253.1430000000001V160.876H130.8530000000001V89.966H151.6750000000001C160.5120000000001 89.966 167.6750000000001 82.802 167.6750000000001 73.966z" />
+    <glyph glyph-name="h3"
+      unicode="&#xF315;"
+      horiz-adv-x="640" d=" M548.084 132.447C548.084 161.04 519.592 171.526 491.028 171.526H475.28A16 16 0 0 0 460.6319999999999 181.089L452.3269999999999 199.988A16 16 0 0 0 454.749 216.746L507.1709999999999 278.8450000000001C510.1709999999999 282.38 513.034 285.597 515.6529999999999 288.445C513.3439999999999 288.397 510.8429999999999 288.368 508.1479999999999 288.368H425.414C416.577 288.368 409.414 295.531 409.414 304.368V335.875C409.414 344.712 416.577 351.875 425.414 351.875H595.1629999999999C603.9999999999999 351.875 611.1629999999999 344.712 611.1629999999999 335.875V312.189C611.1629999999999 308.343 609.7769999999999 304.625 607.2599999999999 301.717L543.6929999999999 228.288C587.4069999999999 216.728 619.7219999999999 182.619 619.7219999999999 134.586C619.7219999999999 76.479 574.8509999999999 26.864 504.7239999999999 26.864C467.6949999999999 26.864 431.0669999999999 39.8390000000001 403.7699999999999 64.9500000000001C397.9619999999999 70.2930000000001 396.8919999999999 79.064 401.2699999999999 85.6300000000001L420.7619999999999 114.8680000000001C426.0409999999999 122.787 437.0799999999999 124.441 444.3279999999999 118.273C460.6339999999998 104.3970000000001 479.4919999999998 95.078 501.3009999999999 95.078C528.4089999999999 95.079 548.0839999999998 110.794 548.0839999999998 132.447zM167.675 73.966V48C167.675 39.163 160.512 32 151.675 32H38.365C29.528 32 22.365 39.163 22.365 48V73.966C22.365 82.803 29.528 89.966 38.365 89.966H58.759V293.606H38.365C29.528 293.606 22.365 300.769 22.365 309.606V336C22.365 344.837 29.528 352 38.365 352H151.675C160.512 352 167.675 344.837 167.675 336V309.606C167.675 300.769 160.512 293.606 151.675 293.606H130.853V221.839H253.1430000000001V293.606H232.3210000000001C223.484 293.606 216.321 300.769 216.321 309.606V336C216.321 344.837 223.484 352 232.3210000000001 352H345.6310000000001C354.468 352 361.6310000000001 344.837 361.6310000000001 336V309.606C361.6310000000001 300.769 354.468 293.606 345.6310000000001 293.606H325.2380000000001V89.966H345.6310000000001C354.4680000000001 89.966 361.6310000000001 82.803 361.6310000000001 73.966V48C361.6310000000001 39.163 354.4680000000001 32 345.6310000000001 32H232.3210000000001C223.4840000000001 32 216.3210000000001 39.163 216.3210000000001 48V73.966C216.3210000000001 82.803 223.4840000000001 89.966 232.3210000000001 89.966H253.1430000000001V160.876H130.8530000000001V89.966H151.6750000000001C160.5120000000001 89.966 167.6750000000001 82.802 167.6750000000001 73.966z" />
+    <glyph glyph-name="hammer-war"
+      unicode="&#xF6E4;"
+      horiz-adv-x="384" d=" M346.74 415.56L224 395.1V432C224 440.84 216.84 448 208 448H176C167.16 448 160 440.84 160 432V395.1L37.26 415.56C17.76 418.81 0 403.77 0 383.99V192.01C0 172.24 17.76 157.2 37.26 160.45L192 186.23L346.74 160.44C366.25 157.19 384 172.23 384 192V383.99C384 403.77 366.24 418.81 346.74 415.56zM160 148.46V-48C160 -56.84 167.16 -64 176 -64H208C216.84 -64 224 -56.84 224 -48V148.46L192 153.79L160 148.46z" />
+    <glyph glyph-name="hammer"
+      unicode="&#xF6E3;"
+      horiz-adv-x="576" d=" M571.31 254.06L548.68 276.69C542.43 282.94 532.3 282.94 526.05 276.69L514.74 265.38L485.84 294.28C491.47 315.5900000000001 486.2 339.18 469.49 355.89L424.24 401.14C361.76 463.62 260.4500000000001 463.62 197.96 401.14L288.4700000000001 355.89V337.14C288.4700000000001 320.17 295.2100000000001 303.89 307.2200000000001 291.89L356.36 242.75C373.07 226.04 396.6600000000001 220.77 417.9700000000001 226.4L446.87 197.5L435.56 186.19C429.31 179.94 429.31 169.81 435.56 163.56L458.19 140.93C464.44 134.68 474.57 134.68 480.82 140.93L571.33 231.44C577.5600000000001 237.68 577.5600000000001 247.81 571.3100000000001 254.06zM284.5899999999999 269.26C280.89 272.96 277.75 277.05 274.7399999999999 281.21L19.64 43.04C-5.93 19.16 -6.62 -21.15 18.11 -45.89S83.16 -69.9399999999999 107.04 -44.36L345.17 210.71C341.2100000000001 213.62 337.2700000000001 216.58 333.73 220.12L284.5900000000001 269.26z" />
+    <glyph glyph-name="hamsa"
+      unicode="&#xF665;"
+      horiz-adv-x="512" d=" M509.34 140.75C504.28 152.44 492.75 160 480 160H416V368C416 390 398 408 376 408S336 390 336 368V234C336 228.48 331.52 224 326 224H306C300.48 224 296 228.48 296 234V408C296 430 278 448 256 448S216 430 216 408V234C216 228.48 211.52 224 206 224H186C180.48 224 176 228.48 176 234V368C176 390 158 408 136 408S96 390 96 368V160H32C19.25 160 7.72 152.44 2.66 140.75A31.966 31.966 0 0 1 8.6 106.17L111.29 -3.86C146.97 -42.08 199.69 -64 256 -64S365.03 -42.08 400.7200000000001 -3.86L503.4 106.17A31.966 31.966 0 0 1 509.34 140.75zM256 32C202.98 32 160 96 160 96S202.98 160 256 160S352 96 352 96S309.02 32 256 32zM256 128C238.33 128 224 113.67 224 96S238.33 64 256 64S288 78.33 288 96S273.67 128 256 128z" />
+    <glyph glyph-name="hand-heart"
+      unicode="&#xF4BC;"
+      horiz-adv-x="448" d=" M416 336C398.4 336 384 321.6 384 304V232C384 227.6 380.4 224 376 224H360C355.6 224 352 227.6 352 232V384C352 401.6 337.6 416 320 416S288 401.6 288 384V232C288 227.6 284.4 224 280 224H264C259.6 224 256 227.6 256 232V416C256 433.6 241.6 448 224 448S192 433.6 192 416V232C192 227.6 188.4 224 184 224H168C163.6 224 160 227.6 160 232V384C160 401.6 145.6 416 128 416S96 401.6 96 384V143L72.4 175.5C59.4 193.4 34.4 197.3 16.5 184.3S-5.3 146.3 7.7 128.4L133.3 -44.3C142.3 -56.6999999999999 156.8 -64.0999999999999 172.1 -64.0999999999999H369.7000000000001C392.0000000000001 -64.0999999999999 411.3000000000001 -48.7999999999999 416.4000000000001 -27.0999999999999L442.9000000000001 85.6000000000001C446.1 99.3000000000001 447.8 113.9000000000001 448.0000000000001 127.9000000000001V304C448.0000000000001 321.6 433.6000000000001 336 416.0000000000001 336zM353.1 74.8L280.5 3.4C275.8 -1.2 268.2 -1.2 263.5 3.4L190.9 74.8C169.8 95.4999999999999 171.1 129.9 194.6 149C215.1 165.6999999999999 245.7 162.6999999999999 264.6 144.1999999999999L272 136.8999999999999L279.4 144.1999999999999C298.2 162.6999999999999 328.8 165.6999999999999 349.4 149C372.9 129.8999999999999 374.1 95.6 353.1 74.8z" />
+    <glyph glyph-name="hand-holding-box"
+      unicode="&#xF47B;"
+      horiz-adv-x="576" d=" M112 192H464C472.8 192 480 199.2 480 208V432C480 440.8 472.8 448 464 448H352V320L288 352L224 320V448H112C103.2 448 96 440.8 96 432V208C96 199.2 103.2 192 112 192zM565.3 119.9C553.5 130.6 535.0999999999999 129.9 522.6999999999999 119.9L430.3 46C419 36.9 404.9000000000001 32 390.3 32H272C263.2 32 256 39.2 256 48S263.2 64 272 64H350.3C366.2 64 381 74.9 383.6 90.6C386.9000000000001 110.6 371.5 128 352 128H192C165 128 138.9 118.7 117.9 101.7L71.4 64H16C7.2 64 0 56.8 0 48V-48C0 -56.8 7.2 -64 16 -64H372.8C387.3 -64 401.4000000000001 -59.1 412.8 -50L564 71C579.2 83.1 580.4 106.3 565.3 119.9z" />
+    <glyph glyph-name="hand-holding-heart"
+      unicode="&#xF4BE;"
+      horiz-adv-x="576" d=" M275.3 197.5C282.3 190.1 293.7 190.1 300.8 197.5L409.7000000000001 311.7C441.3000000000001 344.9 439.5000000000001 399.9 404.1 430.5C373.3 457.2 327.4000000000001 452.4 299.2000000000001 422.8L288 411.1L276.9 422.7C248.7 452.4 202.8 457.2 172 430.5C136.7 399.9 134.8 344.9 166.4 311.7L275.3 197.5zM565.3 119.9C553.5 130.6 535.0999999999999 129.9 522.6999999999999 119.9L430.3 46C419 36.9 404.9000000000001 32 390.3 32H272C263.2 32 256 39.2 256 48S263.2 64 272 64H350.3C366.2 64 381 74.9 383.6 90.6C386.9000000000001 110.6 371.5 128 352 128H192C165 128 138.9 118.7 117.9 101.7L71.4 64H16C7.2 64 0 56.8 0 48V-48C0 -56.8 7.2 -64 16 -64H372.8C387.3 -64 401.4000000000001 -59.1 412.8 -50L564 71C579.2 83.1 580.4 106.3 565.3 119.9z" />
+    <glyph glyph-name="hand-holding-magic"
+      unicode="&#xF6E5;"
+      horiz-adv-x="576" d=" M224 224C276.94 224 320 267.06 320 320C320 320 288 288 224 288C206.28 288 192 305.5 192 320V352C192 369.64 206.36 384 224 384H352C369.64 384 384 369.64 384 352V320C384 285.7 366.49 253.46 341.91 229.2L288 176L305.81 177.01C382.86 181.37 447.39 242.28 447.99 318.44C447.99 318.9600000000001 448 319.48 448 320V352C448 404.94 404.94 448 352 448H224C171.06 448 128 404.94 128 352V320C128 268.86 172.86 224 224 224zM565.28 119.9C553.4499999999999 130.59 535.1 129.86 522.65 119.9L430.31 46.03A64.004 64.004 0 0 0 390.33 32H272C263.1600000000001 32 256 39.16 256 48S263.1600000000001 64 272 64H350.28C366.22 64 381 74.89 383.56 90.63C386.82 110.68 371.43 128 352 128H192C165.03 128 138.89 118.73 117.94 101.73L71.44 64H16C7.16 64 0 56.84 0 48V-48C0 -56.84 7.16 -64 16 -64H372.77C387.3 -64 401.4 -59.05 412.75 -49.97L563.98 71.02C579.1700000000001 83.15 580.36 106.29 565.28 119.9z" />
+    <glyph glyph-name="hand-holding-seedling"
+      unicode="&#xF4BF;"
+      horiz-adv-x="576" d=" M480 448H416C375.3 448 338.5 432.3 310.2 407.2C335.6 375.2 351.1 335 351.8 291.2C424.9 306 480 370.5 480 448zM256 288V176C256 167.2 263.2 160 272 160H304C312.8 160 320 167.2 320 176V288C320 376.4 248.4 448 160 448H96C96 359.6 167.6 288 256 288zM565.3 119.9C553.5 130.6 535.0999999999999 129.9 522.6999999999999 119.9L430.3 46C419 36.9 404.9000000000001 32 390.3 32H272C263.2 32 256 39.2 256 48S263.2 64 272 64H350.3C366.2 64 381 74.9 383.6 90.6C386.9000000000001 110.6 371.5 128 352 128H192C165 128 138.9 118.7 117.9 101.7L71.4 64H16C7.2 64 0 56.8 0 48V-48C0 -56.8 7.2 -64 16 -64H372.8C387.3 -64 401.4000000000001 -59.1 412.8 -50L564 71C579.2 83.1 580.4 106.3 565.3 119.9z" />
+    <glyph glyph-name="hand-holding-usd"
+      unicode="&#xF4C0;"
+      horiz-adv-x="544" d=" M257.6 303.7L307.6 289.4C311.2000000000001 288.4 313.7000000000001 285 313.7000000000001 281.3C313.7000000000001 276.7 309.9000000000001 272.9 305.3000000000001 272.9H272.5000000000001C268.9000000000001 272.9 265.4000000000001 273.7 262.2000000000001 275.1C257.4000000000001 277.3 251.8000000000001 276.8 248.1000000000001 273.1L230.6000000000001 255.6C225.3000000000001 250.3 225.9000000000001 241.3 232.1000000000001 237.2C241.6000000000001 230.9 252.4000000000001 227.1 263.9000000000001 225.7V208C263.9000000000001 199.2 271.1 192 279.9000000000001 192H295.9000000000001C304.7000000000001 192 311.9000000000001 199.2 311.9000000000001 208V225.6C342.2000000000001 229.2 365.2000000000001 256.6 361.2000000000001 288.6C358.3000000000001 311.6 340.5000000000001 329.9 318.3000000000001 336.3L268.3000000000001 350.6C264.7000000000001 351.6 262.2000000000001 355 262.2000000000001 358.7C262.2000000000001 363.3 266.0000000000001 367.1 270.6 367.1H303.4000000000001C307.0000000000001 367.1 310.5000000000001 366.3 313.7000000000001 364.9C318.5000000000001 362.7 324.1 363.2 327.8000000000001 366.9L345.3000000000001 384.4C350.6000000000001 389.7 350.0000000000001 398.7 343.8000000000001 402.8C334.3000000000001 409.1 323.5000000000001 412.9 312.0000000000001 414.3V432C312.0000000000001 440.8 304.8000000000001 448 296.0000000000001 448H280.0000000000001C271.2000000000001 448 264.0000000000001 440.8 264.0000000000001 432V414.4C233.7000000000001 410.8 210.7000000000001 383.4 214.7000000000001 351.4C217.6000000000001 328.4 235.4000000000001 310.1 257.6 303.7zM533.9000000000001 119.9C522.7 130.6 505.4000000000001 129.9 493.6000000000001 119.9L406.4 46C395.7 36.9 382.4 32 368.6 32H256.9C248.6 32 241.8 39.2 241.8 48S248.6 64 256.9 64H330.8C345.9 64 359.8 74.9 362.2 90.6C365.3 110.6 350.7 128 332.3999999999999 128H181.3C155.8 128 131.1 118.7 111.4 101.7L67.5 64H15.1C6.8 64 0 56.8 0 48V-48C0 -56.8 6.8 -64 15.1 -64H352C365.7 -64 379 -59.1 389.8 -50L532.6 71C547 83.1 548.1 106.3 533.9 119.9z" />
+    <glyph glyph-name="hand-holding-water"
+      unicode="&#xF4C1;"
+      horiz-adv-x="576" d=" M288 192C341 192 384 234.1 384 286C384 326 326.9 406.7 300.8 441.6C294.4000000000001 450.1 281.6 450.1 275.2 441.6C249.1 406.7 192 326 192 286C192 234.1 235 192 288 192zM565.3 119.9C553.5 130.6 535.0999999999999 129.9 522.6999999999999 119.9L430.3 46C419 36.9 404.9000000000001 32 390.3 32H272C263.2 32 256 39.2 256 48S263.2 64 272 64H350.3C366.2 64 381 74.9 383.6 90.6C386.9000000000001 110.6 371.5 128 352 128H192C165 128 138.9 118.7 117.9 101.7L71.4 64H16C7.2 64 0 56.8 0 48V-48C0 -56.8 7.2 -64 16 -64H372.8C387.3 -64 401.4000000000001 -59.1 412.8 -50L564 71C579.2 83.1 580.4 106.3 565.3 119.9z" />
+    <glyph glyph-name="hand-holding"
+      unicode="&#xF4BD;"
+      horiz-adv-x="576" d=" M565.3 119.9C553.5 130.6 535.0999999999999 129.9 522.6999999999999 119.9L430.3 46C419 36.9 404.9000000000001 32 390.3 32H272C263.2 32 256 39.2 256 48S263.2 64 272 64H350.3C366.2 64 381 74.9 383.6 90.6C386.9000000000001 110.6 371.5 128 352 128H192C165 128 138.9 118.7 117.9 101.7L71.4 64H16C7.2 64 0 56.8 0 48V-48C0 -56.8 7.2 -64 16 -64H372.8C387.3 -64 401.4000000000001 -59.1 412.8 -50L564 71C579.2 83.1 580.4 106.3 565.3 119.9z" />
+    <glyph glyph-name="hand-lizard"
+      unicode="&#xF258;"
+      horiz-adv-x="576" d=" M384 -32H576V84.222A95.998 95.998 0 0 1 561.167 135.485L398.127 393.632A48 48 0 0 1 357.544 416H24C10.745 416 0 405.255 0 392V376C0 345.072 25.072 320 56 320H285.981C298.825 320 307.537 306.933 302.596 295.077L281.186 243.692A32 32 0 0 0 251.648 224H128C92.654 224 64 195.346 64 160V152C64 138.745 74.745 128 88 128H235.406A47.995 47.995 0 0 0 261.098 120.545L372.846 49.734A24.001000000000005 24.001000000000005 0 0 0 384 29.461V-32z" />
+    <glyph glyph-name="hand-paper"
+      unicode="&#xF256;"
+      horiz-adv-x="448" d=" M408.781 319.993C386.356 320.4220000000001 368 301.64 368 279.2100000000001V192H360V368.21C360 390.64 341.644 409.4220000000001 319.219 408.993C297.488 408.577 280 390.831 280 369V192H272V407.21C272 429.64 253.644 448.4220000000001 231.219 447.993C209.488 447.577 192 429.831 192 408V192H184V367.21C184 389.64 165.644 408.4220000000001 143.219 407.993C121.488 407.577 104 389.831 104 368V132.0080000000001L72.352 175.5270000000001C59.359 193.393 34.343 197.3440000000001 16.475 184.35C-1.39 171.356 -5.34 146.34 7.653 128.473L133.254 -44.232A48 48 0 0 1 172.073 -64H369.663C391.937 -64 411.2850000000001 -48.676 416.387 -26.994L442.895 85.6659999999999A192.011 192.011 0 0 1 447.999 129.641V280C448 301.831 430.512 319.577 408.781 319.993z" />
+    <glyph glyph-name="hand-peace"
+      unicode="&#xF25B;"
+      horiz-adv-x="448" d=" M408 232C385.908 232 368 214.091 368 192H360V224C360 246.091 342.092 264 320 264S280 246.091 280 224V192H272V400C272 426.51 250.51 448 224 448S176 426.51 176 400V192H162.428L92.688 369.551C82.994 394.226 55.134 406.37 30.461 396.676C5.787 386.983 -6.356 359.123 3.337 334.449L78.102 144.107L47.012 119.235C31.631 106.929 27.497 85.257 37.271 68.1539999999999L101.271 -43.8460000000001A39.998 39.998 0 0 1 136 -64H376C394.562 -64 410.686 -51.23 414.937 -33.162L446.937 102.838A39.97 39.97 0 0 1 448 112V192C448 214.091 430.092 232 408 232z" />
+    <glyph glyph-name="hand-point-down"
+      unicode="&#xF0A7;"
+      horiz-adv-x="384" d=" M91.826 -19.2V130.034C83.578 124.193 75.268 119.464 66.908 115.881C35.098 102.248 -0.014 125.778 0 160C0.008 178.616 10.897 192.203 29.092 200C57.378 212.122 93.421 278.648 106.415 307.534C114.371 325.391 131.894 335.987 150.26 335.998L150.261 336H321.7870000000001C333.5990000000001 336 343.6840000000001 327.404 345.49 315.731C352.74 268.894 383.973 253.971 383.805 192C383.798 189.276 384 178.746 384 176C384 125.346 361.878 94.426 312.737 103.4C303.44 84.803 273.251 72.662 250.422 86.95C229.245 62.305 196.526 64.311 179.478 80.651V-19.2C179.478 -43.35 159.277 -64 135.652 -64C112.369 -64 91.826 -42.65 91.826 -19.2zM112 376V424C112 437.255 122.745 448 136 448H328C341.255 448 352 437.255 352 424V376C352 362.745 341.255 352 328 352H136C122.745 352 112 362.745 112 376zM324 400C324 411.046 315.046 420 304 420S284 411.046 284 400S292.954 380 304 380S324 388.954 324 400z" />
+    <glyph glyph-name="hand-point-left"
+      unicode="&#xF0A5;"
+      horiz-adv-x="512" d=" M44.8 292.174H194.034C188.193 300.4220000000001 183.464 308.732 179.881 317.092C166.248 348.902 189.778 384.014 224 384C242.616 383.992 256.203 373.103 264 354.908C276.122 326.622 342.648 290.579 371.534 277.5850000000001C389.391 269.629 399.987 252.106 399.998 233.74L400 233.739V62.213C400 50.401 391.404 40.316 379.731 38.51C332.894 31.26 317.971 0.027 256 0.195C253.276 0.202 242.746 0 240 0C189.346 0 158.426 22.122 167.4 71.263C148.803 80.5600000000001 136.662 110.749 150.95 133.578C126.305 154.7550000000001 128.311 187.4740000000001 144.651 204.5220000000001H44.8C20.65 204.5220000000001 0 224.7230000000001 0 248.3480000000001C0 271.6310000000001 21.35 292.1740000000001 44.8 292.1740000000001zM440 272H488C501.255 272 512 261.255 512 248V56C512 42.745 501.255 32 488 32H440C426.745 32 416 42.745 416 56V248C416 261.255 426.745 272 440 272zM464 60C475.046 60 484 68.954 484 80S475.046 100 464 100S444 91.046 444 80S452.954 60 464 60z" />
+    <glyph glyph-name="hand-point-right"
+      unicode="&#xF0A4;"
+      horiz-adv-x="512" d=" M512 248.348C512 224.723 491.35 204.522 467.2 204.522H367.349C383.689 187.4740000000001 385.695 154.756 361.05 133.578C375.338 110.749 363.197 80.561 344.6 71.263C353.574 22.122 322.654 0 272 0C269.254 0 258.724 0.203 256 0.195C194.029 0.027 179.106 31.26 132.269 38.51C120.596 40.317 112 50.401 112 62.214V233.739L112.002 233.74C112.013 252.106 122.609 269.629 140.466 277.5850000000001C169.352 290.579 235.879 326.623 248 354.908C255.797 373.102 269.384 383.992 288 384C322.222 384.014 345.752 348.902 332.1190000000001 317.092C328.536 308.733 323.807 300.422 317.966 292.174H467.2C490.65 292.174 512 271.631 512 248.348zM96 248V56C96 42.745 85.255 32 72 32H24C10.745 32 0 42.745 0 56V248C0 261.255 10.745 272 24 272H72C85.255 272 96 261.255 96 248zM68 80C68 91.046 59.046 100 48 100S28 91.046 28 80S36.954 60 48 60S68 68.954 68 80z" />
+    <glyph glyph-name="hand-point-up"
+      unicode="&#xF0A6;"
+      horiz-adv-x="384" d=" M135.652 448C159.277 448 179.478 427.35 179.478 403.2V303.349C196.526 319.689 229.244 321.695 250.422 297.05C273.251 311.338 303.439 299.197 312.737 280.6C361.878 289.574 384 258.654 384 208C384 205.254 383.7970000000001 194.724 383.805 192C383.973 130.029 352.74 115.106 345.49 68.269C343.683 56.596 333.599 48 321.786 48H150.261L150.26 48.002C131.894 48.013 114.371 58.609 106.415 76.466C93.421 105.352 57.377 171.878 29.092 184C10.897 191.797 0.008 205.384 0 224C-0.014 258.222 35.098 281.752 66.908 268.1190000000001C75.267 264.536 83.578 259.807 91.826 253.966V403.2C91.826 426.65 112.369 448 135.652 448zM136 32H328C341.255 32 352 21.255 352 8V-40C352 -53.255 341.255 -64 328 -64H136C122.745 -64 112 -53.255 112 -40V8C112 21.255 122.745 32 136 32zM304 4C292.954 4 284 -4.954 284 -16S292.954 -36 304 -36S324 -27.046 324 -16S315.046 4 304 4z" />
+    <glyph glyph-name="hand-pointer"
+      unicode="&#xF25A;"
+      horiz-adv-x="448" d=" M448 208V112C448 108.916 447.644 105.841 446.937 102.838L414.937 -33.162C410.686 -51.23 394.562 -64 376 -64H168A40.004 40.004 0 0 0 135.65 -47.527L7.653 128.473C-5.34 146.339 -1.39 171.356 16.475 184.349C34.342 197.343 59.359 193.392 72.352 175.526L104 132.008V408C104 430.091 121.908 448 144 448S184 430.091 184 408V208H192V248C192 270.091 209.908 288 232 288S272 270.091 272 248V208H280V232C280 254.091 297.908 272 320 272S360 254.091 360 232V208H368C368 230.091 385.908 248 408 248S448 230.091 448 208zM192 128H184V32H192V128zM280 128H272V32H280V128zM368 128H360V32H368V128z" />
+    <glyph glyph-name="hand-receiving"
+      unicode="&#xF47C;"
+      horiz-adv-x="640" d=" M204.8 217.6C194.2 231.7 174.1 234.6 160 224C145.9 213.4 143 193.3 153.6 179.2L191.7 128.4C196.5 122 195.8 113.1 190.2 107.5L177.4 94.7C170.7 88 159.8 88.5 153.8 95.8L64 203.6V352C64 369.7 49.7 384 32 384S0 369.7 0 352V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L114.6 -30.7C119.6 -37.2 123 -44.6 125 -52.4C126.8 -59.2999999999999 133.1 -64 140.3 -64H272C280.8 -64 288 -56.8 288 -48V64C288 91.7 279 118.6 262.4 140.8L204.8 217.6zM608 384C590.3 384 576 369.7 576 352V203.6L486.2 95.8C480.2 88.6 469.2 88.1 462.6 94.7L449.8 107.5C444.2 113.1 443.5 122 448.3 128.4L486.4 179.2C497 193.3 494.1 213.4 480 224C465.9 234.6 445.8 231.7 435.2 217.6L377.6 140.8C361 118.6 352 91.7 352 64V-48C352 -56.8 359.2 -64 368 -64H499.7C506.8 -64 513.2 -59.3 515 -52.4C517 -44.6 520.4 -37.2 525.4 -30.7L629.5 103.6C636.3 112.1 640 122.7000000000001 640 133.6V352C640 369.7 625.7 384 608 384zM438.7 342.4L342.4 438.7C330 451.1 310 451.1 297.6 438.7L201.2 342.3C188.8 330 188.8 309.9 201.2 297.6L297.6 201.2C309.9000000000001 188.9 330 188.9 342.3 201.2L438.7000000000001 297.6C451.1 310 451.1 330 438.7000000000001 342.4z" />
+    <glyph glyph-name="hand-rock"
+      unicode="&#xF255;"
+      horiz-adv-x="512" d=" M512 319.2100000000001C512 345.5320000000001 491.139 367.554 464.82 367.993C437.935 368.442 416 346.783 416 320H408V351.21C408 377.532 387.139 399.554 360.82 399.993C333.935 400.442 312 378.783 312 352V320H304V367.21C304 393.532 283.139 415.554 256.82 415.993C229.935 416.442 208 394.783 208 368V320H200V351.21C200 377.532 179.139 399.554 152.82 399.993C125.935 400.442 104 378.783 104 352V216L96 223.111V271.2100000000001C96 297.5320000000001 75.139 319.554 48.82 319.993C21.935 320.442 0 298.783 0 272V205.555A95.998 95.998 0 0 1 32.221 133.804L143.889 34.543A47.999 47.999 0 0 0 160 -1.333V-8C160 -21.255 170.745 -32 184 -32H424C437.255 -32 448 -21.255 448 -8V-5.079A96.01 96.01 0 0 0 455.523 32.175L504.477 148.44A96.002 96.002 0 0 1 512 185.694V319.2100000000001z" />
+    <glyph glyph-name="hand-scissors"
+      unicode="&#xF257;"
+      horiz-adv-x="512" d=" M216 8C216 30.092 233.909 48 256 48V56H224C201.909 56 184 73.908 184 96S201.909 136 224 136H256V144H48C21.49 144 0 165.49 0 192S21.49 240 48 240H256V253.572L78.449 323.312C53.775 333.006 41.631 360.867 51.324 385.54C61.017 410.214 88.878 422.357 113.552 412.664L303.894 337.899L328.766 368.9890000000001C341.072 384.37 362.7440000000001 388.504 379.8470000000001 378.73L491.847 314.73A40.002 40.002 0 0 0 512 280V40C512 21.438 499.23 5.314 481.162 1.063L345.162 -30.937A39.982 39.982 0 0 0 336 -32H256C233.909 -32 216 -14.092 216 8z" />
+    <glyph glyph-name="hand-spock"
+      unicode="&#xF259;"
+      horiz-adv-x="512" d=" M10.872 131.415C26.011 147.501 51.326 148.269 67.415 133.1280000000001L128 76.107V155.5120000000001L88.995 327.135C84.099 348.677 97.593 370.1090000000001 119.135 375.005C140.684 379.899 162.11 366.406 167.005 344.8640000000001L201.747 192H211.58L164.016 399.034C159.07 420.565 172.514 442.028 194.044 446.974C215.576 451.924 237.038 438.476 241.984 416.9460000000001L293.664 192H308.769L357.194 385.702C362.5510000000001 407.134 384.269 420.164 405.701 414.806C427.1330000000001 409.448 440.1640000000001 387.731 434.805 366.299L391.231 192H402.311L433.079 321.265C438.196 342.756 459.764 356.033 481.256 350.912C502.747 345.795 516.021 324.226 510.903 302.735L474.611 150.268A96.02400000000002 96.02400000000002 0 0 1 472 128.033V85.931A96.002 96.002 0 0 0 468.04 58.6440000000001L441.8660000000001 -29.6429999999999C435.825 -50.022 417.101 -64 395.846 -64H179.172A48.00200000000001 48.00200000000001 0 0 0 146.274 -50.954L12.585 74.872C-3.502 90.013 -4.268 115.328 10.872 131.415z" />
+    <glyph glyph-name="hands-heart"
+      unicode="&#xF4C3;"
+      horiz-adv-x="640" d=" M436 430.5C405.2 457.2 359.3 452.4 331.1 422.8L320 411.1L308.9 422.7C280.7 452.4 234.8 457.2 204 430.5C168.7 399.9 166.8 344.9 198.4 311.7L307.3 197.5C314.3 190.1 325.7 190.1 332.8 197.5L441.7000000000001 311.7C473.2 344.9 471.4 399.9 436.0000000000001 430.5zM204.8 217.6C194.2 231.7 174.1 234.6 160 224C145.9 213.4 143 193.3 153.6 179.2L191.7 128.4C196.5 122 195.8 113.1 190.2 107.5L177.4 94.7C170.7 88 159.8 88.5 153.8 95.8L64 203.6V352C64 369.7 49.7 384 32 384S0 369.7 0 352V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L114.6 -30.7C119.6 -37.2 123 -44.6 125 -52.4C126.8 -59.2999999999999 133.1 -64 140.3 -64H272C280.8 -64 288 -56.8 288 -48V64C288 91.7 279 118.6 262.4 140.8L204.8 217.6zM608 384C590.3 384 576 369.7 576 352V203.6L486.2 95.8C480.2 88.6 469.2 88.1 462.6 94.7L449.8 107.5C444.2 113.1 443.5 122 448.3 128.4L486.4 179.2C497 193.3 494.1 213.4 480 224C465.9 234.6 445.8 231.7 435.2 217.6L377.6 140.8C361 118.6 352 91.7 352 64V-48C352 -56.8 359.2 -64 368 -64H499.7C506.8 -64 513.2 -59.3 515 -52.4C517 -44.6 520.4 -37.2 525.4 -30.7L629.5 103.6C636.3 112.1 640 122.7000000000001 640 133.6V352C640 369.7 625.7 384 608 384z" />
+    <glyph glyph-name="hands-helping"
+      unicode="&#xF4C4;"
+      horiz-adv-x="640" d=" M488 256H336V200C336 160.3 303.7 128 264 128S192 160.3 192 200V321.6L127.1 282.6C107.8 271.1 96 250.2 96 227.8V180.5L16 134.3C0.7 125.5 -4.6 105.9 4.3 90.6L84.3 -48C93.1 -63.3 112.7 -68.5 128 -59.7L231.4 0H368C403.3 0 432 28.7 432 64H448C465.7 64 480 78.3 480 96V160H488C501.3 160 512 170.7 512 184V232C512 245.3 501.3 256 488 256zM635.7 293.4L555.7 432C546.9 447.3 527.3 452.5 512 443.7L408.6 384H306.4C294.4 384 282.7 380.6 272.5 374.3L239 353.4C229.6 347.6 224 337.3 224 326.3V200C224 177.9 241.9 160 264 160S304 177.9 304 200V288H488C518.9 288 544 262.9 544 232V203.5L624 249.7C639.3 258.6 644.5 278.1 635.7 293.4z" />
+    <glyph glyph-name="hands-usd"
+      unicode="&#xF4C5;"
+      horiz-adv-x="640" d=" M393.3 288.6C390.4000000000001 311.6 372.6 329.9 350.4000000000001 336.3L300.3 350.6C296.7 351.6 294.2 355 294.2 358.7C294.2 363.3 298 367.1 302.6 367.1H335.4C339 367.1 342.5 366.3 345.7 364.9C350.5 362.7 356.1 363.2 359.8 366.9L377.3 384.4C382.6 389.7 382 398.7 375.8 402.8C366.3 409.1 355.4000000000001 412.9 344 414.3V432C344 440.8 336.8 448 328 448H312C303.2 448 296 440.8 296 432V414.4C265.7 410.8 242.6 383.4 246.7 351.4C249.6 328.4 267.4 310.1 289.6 303.7L339.7 289.4C343.3 288.4 345.8 285 345.8 281.3C345.8 276.7 342 272.9 337.4000000000001 272.9H304.6C301 272.9 297.5 273.7 294.3 275.1C289.5 277.3 283.9000000000001 276.8 280.2 273.1L262.7 255.6C257.4 250.3 258 241.3 264.2 237.2C273.7 230.9 284.6 227.1 296 225.7V208C296 199.2 303.2 192 312 192H328C336.8 192 344 199.2 344 208V225.6C374.3 229.2 397.4 256.5 393.3 288.6zM204.8 217.6C194.2 231.7 174.1 234.6 160 224C145.9 213.4 143 193.3 153.6 179.2L191.7 128.4C196.5 122 195.8 113.1 190.2 107.5L177.4 94.7C170.7 88 159.8 88.5 153.8 95.8L64 203.6V352C64 369.7 49.7 384 32 384S0 369.7 0 352V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L114.6 -30.7C119.6 -37.2 123 -44.6 125 -52.4C126.8 -59.2999999999999 133.1 -64 140.3 -64H272C280.8 -64 288 -56.8 288 -48V64C288 91.7 279 118.6 262.4 140.8L204.8 217.6zM608 384C590.3 384 576 369.7 576 352V203.6L486.2 95.8C480.2 88.6 469.2 88.1 462.6 94.7L449.8 107.5C444.2 113.1 443.5 122 448.3 128.4L486.4 179.2C497 193.3 494.1 213.4 480 224C465.9 234.6 445.8 231.7 435.2 217.6L377.6 140.8C361 118.6 352 91.7 352 64V-48C352 -56.8 359.2 -64 368 -64H499.7C506.8 -64 513.2 -59.3 515 -52.4C517 -44.6 520.4 -37.2 525.4 -30.7L629.5 103.6C636.3 112.1 640 122.7000000000001 640 133.6V352C640 369.7 625.7 384 608 384z" />
+    <glyph glyph-name="hands"
+      unicode="&#xF4C2;"
+      horiz-adv-x="640" d=" M204.8 217.6C194.2 231.7 174.1 234.6 160 224C145.9 213.4 143 193.3 153.6 179.2L191.7 128.4C196.5 122 195.8 113.1 190.2 107.5L177.4 94.7C170.7 88 159.8 88.5 153.8 95.8L64 203.6V352C64 369.7 49.7 384 32 384S0 369.7 0 352V133.6C0 122.7000000000001 3.7 112.1 10.5 103.6L114.6 -30.7C119.6 -37.2 123 -44.6 125 -52.4C126.8 -59.2999999999999 133.1 -64 140.3 -64H272C280.8 -64 288 -56.8 288 -48V64C288 91.7 279 118.6 262.4 140.8L204.8 217.6zM608 384C590.3 384 576 369.7 576 352V203.6L486.2 95.8C480.2 88.6 469.2 88.1 462.6 94.7L449.8 107.5C444.2 113.1 443.5 122 448.3 128.4L486.4 179.2C497 193.3 494.1 213.4 480 224C465.9 234.6 445.8 231.7 435.2 217.6L377.6 140.8C361 118.6 352 91.7 352 64V-48C352 -56.8 359.2 -64 368 -64H499.7C506.8 -64 513.2 -59.3 515 -52.4C517 -44.6 520.4 -37.2 525.4 -30.7L629.5 103.6C636.3 112.1 640 122.7000000000001 640 133.6V352C640 369.7 625.7 384 608 384z" />
+    <glyph glyph-name="handshake-alt"
+      unicode="&#xF4C6;"
+      horiz-adv-x="640" d=" M483.9 109.3L334.6 230.5L304.6 203C264 165.9 217.8 191.1 202.9 207.4C176 236.8 178.1 282.3 207.3000000000001 309.1L289.1 384H205.3C196.8 384 188.7 380.6 182.7 374.6L128 320H16C7.2 320 0 312.8 0 304V112.1C0 103.3 7.2 96.1 16 96.1H146.3L236.8 14.2C264.2 -8.1 304.5 -3.9 326.8 23.5000000000001L327 23.7L344.9 8.2C360.8 -4.8 384.3 -2.3 397.2 13.6L428.6 52.2L434 47.8000000000001C447.7 36.7 467.8999999999999 38.7 478.9999999999999 52.5000000000001L488.4999999999999 64.2000000000001C499.6999999999999 78.0000000000001 497.6 98.1 483.8999999999999 109.3000000000001zM624 320H512L457.4 374.6C451.4 380.6 443.3 384 434.8 384H348.9C340.9 384 333.2 381 327.3 375.6L229 285.6C228.9 285.5 228.8 285.3 228.7 285.2C212 269.5 212.3999999999999 244.6 226.6 229.2C236.2 218.7 261.5999999999999 207.6 282.7 226.5C282.8 226.6 283 226.6 283.0999999999999 226.7L336.0999999999999 275.2L363.0999999999999 299.9C369.5999999999999 305.8 379.7 305.4 385.7 298.9S391.2 282.3 384.7 276.3L358.5999999999999 252.4L504.1999999999999 134.2C516.4 124.3 523.6999999999999 110.7 526.4 96.3H624C632.8 96.3 640 103.5 640 112.3V304.1C640 312.9 632.8 320 624 320z" />
+    <glyph glyph-name="handshake"
+      unicode="&#xF2B5;"
+      horiz-adv-x="640" d=" M434.7 384H348.8C340.8 384 333.1 381 327.2 375.6L228.8999999999999 285.6C228.8 285.5 228.7 285.3 228.5999999999999 285.2C211.9999999999999 269.6 212.2999999999999 244.7 226.4999999999999 229.2C239.1999999999999 215.3 265.8999999999999 211.6 282.5999999999999 226.5C282.7 226.6 282.8999999999999 226.6 282.9999999999999 226.7L362.8999999999999 299.9C369.3999999999999 305.8 379.5999999999999 305.4 385.4999999999999 298.9C391.4999999999999 292.4 390.9999999999999 282.3 384.4999999999999 276.3L358.3999999999999 252.4L504 134.2C506.9 131.8 509.5 129.2 511.9 126.5V320L457.3 374.6C451.4 380.6 443.2 384 434.7 384zM544 319.8V95.9C544 78.2 558.3 63.9 576 63.9H640V319.8H544zM592 95.9C583.2 95.9 576 103.1 576 111.9S583.2 127.9 592 127.9S608 120.7 608 111.9S600.8 95.9 592 95.9zM0 64H64C81.7 64 96 78.3 96 96V319.8H0V64zM48 127.9C56.8 127.9 64 120.7 64 111.9S56.8 95.9 48 95.9S32 103.1 32 111.9C32 120.8 39.2 127.9 48 127.9zM483.9 109.3L334.6 230.5L304.6 203C274.9000000000001 175.9 229.4000000000001 178.5 202.9 207.4C176 236.8 178.1 282.3 207.3000000000001 309.1L289.1 384H205.3C196.8 384 188.7 380.6 182.7 374.6L128 320V96.1H146.3L236.8 14.2C264.2 -8.1 304.5 -3.9 326.8 23.5000000000001L327 23.7L344.9 8.2C360.8 -4.8 384.3 -2.3 397.2 13.6L428.6 52.2L434 47.8000000000001C447.7 36.7 467.8999999999999 38.7 478.9999999999999 52.5000000000001L488.4999999999999 64.2000000000001C499.6999999999999 78.0000000000001 497.6 98.1 483.8999999999999 109.3000000000001z" />
+    <glyph glyph-name="hanukiah"
+      unicode="&#xF6E6;"
+      horiz-adv-x="640" d=" M232 288C227.58 288 224 284.42 224 280V160H256V280C256 284.42 252.42 288 248 288H232zM168 288C163.58 288 160 284.42 160 280V160H192V280C192 284.42 188.42 288 184 288H168zM392 288C387.58 288 384 284.42 384 280V160H416V280C416 284.42 412.42 288 408 288H392zM456 288C451.58 288 448 284.42 448 280V160H480V280C480 284.42 476.42 288 472 288H456zM544 280C544 284.42 540.42 288 536 288H520C515.58 288 512 284.42 512 280V160H544V280zM104 288C99.58 288 96 284.42 96 280V160H128V280C128 284.42 124.42 288 120 288H104zM624 288H592C583.16 288 576 280.8400000000001 576 272V160C576 142.33 561.67 128 544 128H352V320C352 328.8400000000001 344.84 336 336 336H304C295.1600000000001 336 288 328.8400000000001 288 320V128H96C78.33 128 64 142.33 64 160V272C64 280.8400000000001 56.84 288 48 288H16C7.16 288 0 280.8400000000001 0 272V160C0 106.98 42.98 64 96 64H288V0H112C103.16 0 96 -7.16 96 -16V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-16C544 -7.16 536.84 0 528 0H352V64H544C597.02 64 640 106.98 640 160V272C640 280.8400000000001 632.84 288 624 288zM608 320C621.25 320 632 331.94 632 346.67S608 400 608 400S584 361.39 584 346.67S594.75 320 608 320zM32 320C45.25 320 56 331.94 56 346.67S32 400 32 400S8 361.39 8 346.67S18.75 320 32 320zM320 368C333.25 368 344 379.94 344 394.67S320 448 320 448S296 409.39 296 394.67S306.75 368 320 368zM112 320C125.25 320 136 331.94 136 346.67S112 400 112 400S88 361.39 88 346.67S98.75 320 112 320zM176 320C189.25 320 200 331.94 200 346.67S176 400 176 400S152 361.39 152 346.67S162.75 320 176 320zM240 320C253.25 320 264 331.94 264 346.67S240 400 240 400S216 361.39 216 346.67S226.75 320 240 320zM400 320C413.25 320 424 331.94 424 346.67S400 400 400 400S376 361.39 376 346.67S386.75 320 400 320zM464 320C477.25 320 488 331.94 488 346.67S464 400 464 400S440 361.39 440 346.67S450.75 320 464 320zM528 320C541.25 320 552 331.94 552 346.67S528 400 528 400S504 361.39 504 346.67S514.75 320 528 320z" />
+    <glyph glyph-name="hashtag"
+      unicode="&#xF292;"
+      horiz-adv-x="448" d=" M440.667 265.891L447.81 305.891C449.123 313.246 443.468 320 435.997 320H361.187L375.81 401.891C377.123 409.246 371.468 416 363.997 416H323.365A12 12 0 0 1 311.552 406.109L296.175 320H197.54L212.163 401.891C213.477 409.246 207.822 416 200.35 416H159.718A12 12 0 0 1 147.905 406.109L132.528 320H53.432A12 12 0 0 1 41.619 310.1090000000001L34.476 270.1090000000001C33.163 262.754 38.818 256 46.289 256H121.099L98.242 128H19.146A12 12 0 0 1 7.333 118.109L0.19 78.109C-1.123 70.754 4.532 64 12.003 64H86.813L72.19 -17.891C70.877 -25.246 76.532 -32 84.003 -32H124.635A12 12 0 0 1 136.448 -22.109L151.826 64H250.46L235.837 -17.891C234.523 -25.246 240.178 -32 247.65 -32H288.282A12 12 0 0 1 300.095 -22.109L315.472 64H394.568A12 12 0 0 1 406.381 73.891L413.524 113.891C414.837 121.2460000000001 409.182 128 401.711 128H326.901L349.7579999999999 256H428.854A12 12 0 0 1 440.6669999999999 265.891zM261.889 128H163.255L186.112 256H284.746L261.889 128z" />
+    <glyph glyph-name="hat-santa"
+      unicode="&#xF7A7;"
+      horiz-adv-x="640" d=" M480 64H32C14.3 64 0 49.7 0 32V0C0 -17.7 14.3 -32 32 -32H480C497.7 -32 512 -17.7 512 0V32C512 49.7 497.7 64 480 64zM384 256L455.7 236.5C458 240.6 460.6 244.5 463.9 247.9C464.3 262.4 470.1 276.5 480.9 287.3C483.1 289.5 485.6 291.4 488.1 293.2000000000001L435 355.9C402.6 394 355.2 416 305.2 416C236.6 416 174.8 374.8 148.4 311.5L58.7 96H452.6L384 256zM640 208C640 220.1 631.8 229.9 620.8 233.2C626.3 243.3 625.1999999999999 256 616.5999999999999 264.6S595.3 274.3 585.1999999999999 268.8C581.9 279.8 572.0999999999999 288 559.9999999999999 288S538.0999999999999 279.8 534.7999999999998 268.8C524.6999999999998 274.3 511.9999999999998 273.2 503.3999999999999 264.6S493.6999999999999 243.3 499.1999999999999 233.2C488.1999999999999 229.9 479.9999999999999 220.1 479.9999999999999 208S488.1999999999999 186.1 499.1999999999999 182.8C493.6999999999999 172.7 494.7999999999999 160 503.3999999999999 151.4C508.5999999999999 146.2000000000001 515.3999999999999 143.6 522.2999999999998 143.6C526.6999999999998 143.6 530.8999999999999 145.1 534.7999999999998 147.2000000000001C538.0999999999998 136.2000000000001 547.8999999999999 128.0000000000001 559.9999999999999 128.0000000000001S581.8999999999999 136.2000000000001 585.1999999999999 147.2000000000001C589.1999999999999 145.1 593.4 143.6 597.6999999999999 143.6C604.4999999999999 143.6 611.3 146.2000000000001 616.5999999999999 151.4C625.1999999999999 160.0000000000001 626.3 172.7000000000001 620.8 182.8C631.8 186.1 640 195.9 640 208z" />
+    <glyph glyph-name="hat-winter"
+      unicode="&#xF7A8;"
+      horiz-adv-x="512" d=" M195.2 342.8C189.7 332.7 190.8 320 199.4 311.4C204.6 306.2000000000001 211.4 303.6 218.3 303.6C222.7 303.6 226.9 305.1 230.8 307.2C234.1 296.2 243.9 288 256 288S277.9 296.2 281.2 307.2C285.2 305.1 289.4 303.6 293.7 303.6C300.5 303.6 307.3 306.2 312.6 311.4C321.2 320 322.3 332.7 316.8 342.8C327.8 346.1 336 355.9 336 368S327.8 389.9000000000001 316.8 393.2000000000001C322.3 403.3 321.2 416 312.6 424.6S291.3 434.3 281.2 428.8C277.9 439.8 268.1 448 256 448S234.1 439.8 230.8 428.8C220.7 434.3 208 433.2 199.4 424.6S189.7 403.3 195.2 393.2C184.2 389.9 176 380.1 176 368S184.2 346.1 195.2 342.8zM128 177.9L192 145.9L256 177.9L320 145.9L384 177.9L448 145.9L455.2 149.5C435.5 199.7 400 254.4 336.2 290C335.8 289.6 335.6 289.2 335.2 288.8C324.6 278.2000000000001 310.6 272.1 295.6 271.6C285.1 261.7000000000001 271.1 255.9000000000001 256 255.9000000000001C240.8 255.9000000000001 226.8 261.7000000000001 216.4 271.6C201.5 272.1 187.5 278.1 176.8 288.8C176.4 289.2000000000001 176.2 289.6 175.8 290C111.9 254.4 76.4 199.6 56.8 149.5L64 145.9L128 177.9zM496 0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H496C504.8 -64 512 -56.8 512 -48V-16C512 -7.2 504.8 0 496 0zM465.7 118.9L448 110.1L384 142.1L320 110.1L256 142.1L192 110.1L128 142.1L64 110.1L46.3 118.9C32.2 70.2 32 32 32 32H480S479.8 70.2 465.7 118.9z" />
+    <glyph glyph-name="hat-witch"
+      unicode="&#xF6E7;"
+      horiz-adv-x="576" d=" M571.21 21.19L548.5500000000001 43.85C542.5200000000001 49.88 533.0600000000001 49.81 526.5600000000001 44.28C492.89 15.62 450.6 0 405.89 0H170.11C125.4 0 83.1 15.62 49.43 44.28C42.93 49.8099999999999 33.48 49.89 27.44 43.85L4.79 21.19C-1.65 14.75 -1.66 3.94 5.19 -2.06C50.85 -42.12 108.8 -64 170.11 -64H405.89C467.2 -64 525.15 -42.12 570.8199999999999 -2.06C577.66 3.94 577.66 14.75 571.2099999999999 21.19zM224 32V96C224 113.67 238.33 128 256 128H320C337.67 128 352 113.67 352 96V32H405.89C429.83 32 452.43 37.79 473.18 47.91L393.5800000000001 233.64A64.009 64.009 0 0 0 391.6900000000001 279.0900000000001L398.0400000000001 298.13A32.01 32.01 0 0 0 428.4 320H467.6C481.3699999999999 320 493.6 311.19 497.96 298.12L512 256L542.36 333.24C546.19 344.74 543.2 357.42 534.63 365.99L465.28 438.63C455.07 448.83 439.31 450.95 426.78 443.79L260.43 340.82A128.004 128.004 0 0 1 206.96 281.67L103.03 47.81C123.72 37.75 146.26 32 170.11 32H224zM256 32H320V96H256V32z" />
+    <glyph glyph-name="hat-wizard"
+      unicode="&#xF6E8;"
+      horiz-adv-x="512" d=" M496 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-16C512 -7.16 504.84 0 496 0zM192 64L128 96L192 128L224 192L256 128L320 96L256 64L240 32H448L361.5900000000001 233.63A63.95499999999999 63.95499999999999 0 0 0 359.7000000000001 279.08L416 448L228.42 340.81A127.98900000000002 127.98900000000002 0 0 1 174.96 281.66L64 32H208L192 64zM256 288L272 320L288 288L320 272L288 256L272 224L256 256L224 272L256 288z" />
+    <glyph glyph-name="haykal"
+      unicode="&#xF666;"
+      horiz-adv-x="512" d=" M496.25 245.48L386.25 260.92L428.07 365.26C434.74 381.9 416.47 397.44 401.48 387.89L307.44 328L273.35 435.18C270.64 443.73 263.32 448 256 448C248.68 448 241.36 443.73 238.65 435.18L204.56 327.99L110.52 387.88C95.53 397.43 77.27 381.89 83.93 365.25L125.75 260.9100000000001L15.75 245.48C-1.79 243.02 -5.93 219.21 9.72 210.81L107.88 158.15L33.4 74.61C22.48 62.36 31.68 43.68 46.69 43.68C48 43.68 49.36 43.8199999999999 50.76 44.1299999999999L159.33 67.7799999999999L155.22 -44.7700000000001C154.79 -56.4200000000001 164.09 -63.9900000000001 173.63 -63.9900000000001C178.78 -63.9900000000001 184.02 -61.7800000000001 187.83 -56.8100000000001L256.01 32.0899999999999L324.19 -56.8100000000001C328 -61.7800000000001 333.23 -63.9900000000001 338.39 -63.9900000000001C347.93 -63.9900000000001 357.23 -56.4200000000001 356.8 -44.7700000000001L352.69 67.7799999999999L461.26 44.1299999999999C478.62 40.37 490.47 61.3299999999999 478.61 74.62L404.13 158.16L502.29 210.82C517.93 219.21 513.79 243.02 496.2499999999999 245.48zM338.51 136.32L286.62 147.62L288.5900000000001 93.83L256 136.32L223.41 93.83L225.37 147.62L173.48 136.32L209.08 176.25L162.16 201.42L214.73 208.8L194.74 258.67L239.69 230.05L256 281.28L272.29 230.05L317.24 258.67L297.25 208.8L349.82 201.42L302.9 176.25L338.51 136.32z" />
+    <glyph glyph-name="hdd"
+      unicode="&#xF0A0;"
+      horiz-adv-x="576" d=" M576 144V48C576 21.49 554.51 0 528 0H48C21.49 0 0 21.49 0 48V144C0 170.51 21.49 192 48 192H528C554.51 192 576 170.51 576 144zM528 224A79.557 79.557 0 0 0 558.777 217.835L462.25 362.626A48.003 48.003 0 0 1 422.311 384H153.689A48 48 0 0 1 113.751 362.626L17.223 217.835A79.557 79.557 0 0 0 48 224H528zM480 128C462.327 128 448 113.673 448 96S462.327 64 480 64S512 78.327 512 96S497.673 128 480 128zM384 128C366.327 128 352 113.673 352 96S366.327 64 384 64S416 78.327 416 96S401.673 128 384 128z" />
+    <glyph glyph-name="head-side"
+      unicode="&#xF6E9;"
+      horiz-adv-x="512" d=" M509.21 173C488.27 220.12 460.77 324.73 436.13 359.75C397.68 414.4 334.56 448 266.09 448H192C85.96 448 0 362.04 0 256C0 199.21 24.8 148.33 64 113.18V-64H320V0H384C419.35 0 448 28.65 448 64V128H479.96C503.12 128 518.61 151.84 509.21 173zM320 224C302.33 224 288 238.33 288 256S302.33 288 320 288S352 273.67 352 256S337.67 224 320 224z" />
+    <glyph glyph-name="head-vr"
+      unicode="&#xF6EA;"
+      horiz-adv-x="512" d=" M304 384H416V224H308.56C266.71 224 228.58 254.11 224.41 295.75C219.62 343.64 257.1 384 304 384zM512 240V368C512 376.8400000000001 504.84 384 496 384H448V224H496C504.84 224 512 231.16 512 240zM192.57 292.56C189.41 324.16 199.75 355.7100000000001 220.94 379.13C242.14 402.56 272.4100000000001 416 304 416H376.3C343.87 436.32 305.9700000000001 448 266.09 448H224C140.44 448 69.54 394.52 43.16 320H16C7.16 320 0 312.8400000000001 0 304V272C0 263.16 7.16 256 16 256H203.49C197.82 267.31 193.88 279.56 192.57 292.56zM501.51 192H308.56C277.43 192 248.83 204.33 227.64 224H34.95C42.35 180.28 64.35 141.56 96 113.18V-64H320V0H384C419.35 0 448 28.65 448 64V128H479.96C503.12 128 518.61 151.84 509.2 173C506.73 178.56 504.15 185.04 501.51 192z" />
+    <glyph glyph-name="heading"
+      unicode="&#xF1DC;"
+      horiz-adv-x="512" d=" M496 368V400C496 408.837 488.837 416 480 416H320C311.163 416 304 408.837 304 400V368C304 359.163 311.163 352 320 352H357.621V224H154.379V352H192C200.837 352 208 359.163 208 368V400C208 408.837 200.837 416 192 416H32C23.163 416 16 408.837 16 400V368C16 359.163 23.163 352 32 352H69.275V32H32C23.163 32 16 24.837 16 16V-16C16 -24.837 23.163 -32 32 -32H192C200.837 -32 208 -24.837 208 -16V16C208 24.837 200.837 32 192 32H154.379V160H357.62V32H320C311.163 32 304 24.837 304 16V-16C304 -24.837 311.163 -32 320 -32H480C488.837 -32 496 -24.837 496 -16V16C496 24.837 488.837 32 480 32H442.725V352H480C488.837 352 496 359.163 496 368z" />
+    <glyph glyph-name="headphones-alt"
+      unicode="&#xF58F;"
+      horiz-adv-x="512" d=" M160 160H144C108.65 160 80 131.3 80 95.88V32.12C80 -3.29 108.65 -32 144 -32H160C177.67 -32 192 -17.64 192 0.06V127.94C192 145.65 177.67 160 160 160zM368 160H352C334.33 160 320 145.65 320 127.94V0.06C320 -17.64 334.33 -32 352 -32H368C403.35 -32 432 -3.29 432 32.12V95.88C432 131.29 403.35 160 368 160zM256 416C112.91 416 4.57 296.87 0 160V48C0 39.16 7.16 32 16 32H32C40.84 32 48 39.16 48 48V160C48 274.67 141.33 367.8 256 367.82C370.67 367.8 464 274.67 464 160V48C464 39.16 471.16 32 480 32H496C504.84 32 512 39.16 512 48V160C507.43 296.87 399.09 416 256 416z" />
+    <glyph glyph-name="headphones"
+      unicode="&#xF025;"
+      horiz-adv-x="512" d=" M256 416C114.52 416 0 301.504 0 160V112A32 32 0 0 1 17.689 83.378L32.072 76.187C34.083 16.097 83.421 -32 144 -32H168C181.255 -32 192 -21.255 192 -8V168C192 181.255 181.255 192 168 192H144C112.658 192 84.329 179.121 64 158.373V160C64 265.8690000000001 150.131 352 256 352S448 265.8690000000001 448 160V158.373C427.671 179.121 399.342 192 368 192H344C330.745 192 320 181.255 320 168V-8C320 -21.255 330.745 -32 344 -32H368C428.579 -32 477.917 16.098 479.928 76.187L494.31 83.378A32 32 0 0 1 512 112V160C512 301.4790000000001 397.504 416 256 416z" />
+    <glyph glyph-name="headset"
+      unicode="&#xF590;"
+      horiz-adv-x="512" d=" M192 240C192 257.67 177.67 272 160 272H144C108.65 272 80 243.35 80 208V160C80 124.65 108.65 96 144 96H160C177.67 96 192 110.33 192 128V240zM368 96C403.35 96 432 124.65 432 160V208C432 243.35 403.35 272 368 272H352C334.33 272 320 257.67 320 240V128C320 110.33 334.33 96 352 96H368zM256 448C113.18 448 4.58 329.17 0 192V176C0 167.16 7.16 160 16 160H32C40.84 160 48 167.16 48 176V192C48 306.69 141.31 400 256 400S464 306.69 464 192H463.88C463.96 189.57 464 26.28 464 26.28C464 2.93 445.07 -16 421.7200000000001 -16H320C320 10.51 298.51 32 272 32H240C213.49 32 192 10.51 192 -16S213.49 -64 240 -64H421.7200000000001C471.58 -64 512 -23.58 512 26.28V192C507.42 329.17 398.82 448 256 448z" />
+    <glyph glyph-name="heart-broken"
+      unicode="&#xF7A9;"
+      horiz-adv-x="512" d=" M473.7 374.2L471.3 376.7C425.3 423.7 353.3 428.4 301.7000000000001 391.5L336 288.1L240 224.1L288 96.1L144 240.1L240 304.1L211.4 390.6C159.7 428.4 87 424 40.7 376.6L38.3 374.2C-10.4 324.4 -12.5 245.1 31 192L243.1 -26.6C250.2 -33.9 261.7 -33.9 268.8 -26.6L481 192.1C524.5 245.1 522.4 324.4 473.7 374.2z" />
+    <glyph glyph-name="heart-circle"
+      unicode="&#xF4C7;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM371.5 167.7L260.9 53.5C253.8 46.1 242.2 46.1 235 53.5L124.5 167.7C92.4 200.9 94.3 255.9 130.2 286.5C161.5 313.2 208.1 308.4 236.8 278.8L248.1 267.2000000000001L259.4 278.8C288.1 308.4 334.7 313.2000000000001 366 286.5C401.8 255.9 403.7 200.9 371.5 167.7z" />
+    <glyph glyph-name="heart-rate"
+      unicode="&#xF5F8;"
+      horiz-adv-x="640" d=" M624 224H480C467.88 224 456.79 217.15 451.37 206.31L424.83 153.22L350.88 424.42C346.99 438.65 333.82 448.51 319.13 447.98C304.36 447.57 291.8 437.14 288.7 422.7L219.56 100.02L190.77 200.8C186.84 214.53 174.29 224 160 224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H135.86L193.24 -40.79C197.18 -54.5599999999999 209.76 -63.9899999999999 223.99 -63.9899999999999C224.35 -63.9899999999999 224.72 -63.9899999999999 225.08 -63.97C239.75 -63.47 252.2200000000001 -53.05 255.3 -38.6899999999999L323.74 280.7100000000001L385.13 55.59A32.012 32.012 0 0 1 412.85 32.17C426.0100000000001 30.97 438.69 37.86 444.63 49.7L499.78 160H624C632.84 160 640 167.16 640 176V208C640 216.84 632.84 224 624 224z" />
+    <glyph glyph-name="heart-square"
+      unicode="&#xF4C8;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM347.5 167.7L236.9 53.5C229.8 46.1 218.2 46.1 211 53.5L100.5 167.7C68.4 200.9 70.3 255.9 106.2 286.5C137.5 313.2 184.1 308.4 212.8 278.8L224.1 267.2000000000001L235.4000000000001 278.8C264.1 308.4 310.7000000000001 313.2000000000001 342 286.5C377.8 255.9 379.7 200.9 347.5 167.7z" />
+    <glyph glyph-name="heart"
+      unicode="&#xF004;"
+      horiz-adv-x="512" d=" M462.3 385.4C407.5 432.1 326 423.7 275.7 371.8L256 351.5L236.3 371.8C186.1 423.7 104.5 432.1 49.7 385.4C-13.1 331.8 -16.4 235.6 39.8 177.5L233.3 -22.3C245.8 -35.2 266.1 -35.2 278.6 -22.3L472.1 177.5C528.4 235.6 525.1 331.8 462.3 385.4z" />
+    <glyph glyph-name="heartbeat"
+      unicode="&#xF21E;"
+      horiz-adv-x="512" d=" M320.2 204.2L270.5 104.8C264.5 92.6999999999999 247.1 93.1 241.6 105.4L184.7 231.7L154.7 160H60.6L243.1 -26.5C250.2 -33.8 261.7 -33.8 268.8 -26.5L451.4 160H342.3L320.2 204.2zM473.7 374.1L471.3 376.6C419.8 429.2 335.5 429.2 283.9 376.6L256 348L228.1 376.5C176.6 429.2 92.2 429.2 40.7 376.5L38.3 374.1C-10.4 324.3 -12.5 245 31 192H133.4L169.3 278.2C174.7 291.1 192.9 291.4 198.7 278.6L256.9000000000001 149.3L305.9000000000001 247.2C311.8 259 328.6 259 334.5000000000001 247.2L362.1000000000001 192H481C524.5 245 522.4 324.3 473.7 374.0999999999999z" />
+    <glyph glyph-name="helicopter"
+      unicode="&#xF533;"
+      horiz-adv-x="640" d=" M304 64H576C593.67 64 608 78.33 608 96C608 219.71 507.71 320 384 320V384H560C568.84 384 576 391.16 576 400V432C576 440.84 568.84 448 560 448H144C135.16 448 128 440.84 128 432V400C128 391.16 135.16 384 144 384H320V320H112L68.8 377.6C65.78 381.63 61.03 384 56 384H16.01C5.6 384 -2.04 374.2200000000001 0.49 364.12L32 256L192 192L278.4 76.8A31.991999999999997 31.991999999999997 0 0 1 304 64zM416 252.49C478.55 239.7 528.03 190.56 540.79 128H416V252.49zM635.37 -10.81L613.22 11.39C606.97 17.65 596.98 17.49 590.58 11.38C583.49 4.61 576.74 0.13 565.94 0.13H240C231.16 0.13 224 -7.05 224 -15.9V-47.96C224 -56.81 231.16 -63.99 240 -63.99H565.94C580.82 -63.99 601.24 -63.52 634.3900000000001 -34.47C641.4100000000001 -28.33 641.9600000000002 -17.42 635.3700000000001 -10.81z" />
+    <glyph glyph-name="helmet-battle"
+      unicode="&#xF6EB;"
+      horiz-adv-x="576" d=" M32.01 192C49.68 192 64 204.56 64 220.06V448L0.97 226.87C-4.08 209.16 11.2 192 32.01 192zM575.03 226.87L512 448V220.06C512 204.56 526.32 192 543.99 192C564.8 192 580.08 209.16 575.03 226.87zM480 237.18C480 357.65 288 448 288 448S96 357.65 96 237.18C96 154.42 73.14 91.28 64.87 56.47C61.44 42.04 68.46 27.1 81.19 21.23L256 -64V192L160 224V256H416V224L320 192V-64L494.82 21.23C507.55 27.1 514.5699999999999 42.04 511.14 56.47C502.86 91.28 480 154.42 480 237.1800000000001z" />
+    <glyph glyph-name="hexagon"
+      unicode="&#xF312;"
+      horiz-adv-x="576" d=" M441.5 408.2C432.9 422.9 417.1 432 400 432H176C158.9 432 143.1 422.9 134.5 408.2L22.5 216.2C13.8 201.3 13.8 182.8 22.5 167.8L134.5 -24.2C143.1 -38.9 158.9 -48 176 -48H400C417.1 -48 432.9 -38.9 441.5 -24.2L553.5 167.8C562.2 182.7 562.2 201.2 553.5 216.2L441.5 408.2000000000001z" />
+    <glyph glyph-name="highlighter"
+      unicode="&#xF591;"
+      horiz-adv-x="544" d=" M0 -31.98L99.92 -64L135.37 -28.55L68.33 38.49L0 -31.98zM124.61 208.03A36.592 36.592 0 0 1 113.82 169.93L126.87 127.1L75.94 76.16L172.17 -20.07L223.03 30.79L265.7700000000001 17.71C279.5000000000001 13.51 294.42 17.72 303.92 28.49L339.4700000000001 70.1299999999999L166.13 243.47L124.61 208.03zM527.92 368.73L464.72 431.93C444.23 452.42 411.34 453.45 389.6 434.28L190.55 264.32L360.3200000000001 94.54L530.27 293.6C549.4499999999999 315.3400000000001 548.42 348.23 527.92 368.73z" />
+    <glyph glyph-name="hiking"
+      unicode="&#xF6EC;"
+      horiz-adv-x="384" d=" M80.95 -24.23C76.67 -41.39 87.09 -58.76 104.23 -63.04C106.84 -63.7 109.45 -63.99 112.03 -63.99C126.36 -63.99 139.4 -54.29 143.05 -39.76L168.29 61.21L115.51 113.99L80.95 -24.23zM95.84 171.89L137 331C139.19 339.42 133.86 347.95 125.08 350.06C81.2 360.58 36.73 334.99 25.76 292.89L0.49 194.76C-1.7 186.34 3.63 177.81 12.41 175.7L75.97 160.45C84.76 158.35 93.65 163.47 95.84 171.89zM368 288H352C343.1600000000001 288 336 280.8400000000001 336 272V256H301.25L254.47 302.78C243.38 313.89 228.61 320 212.91 320C185.89 320 162.44 301.7 155.88 275.48L128.96 167.76A32.012 32.012 0 0 1 137.38 137.37L224 50.75V-32C224 -49.67 238.33 -64 256 -64S288 -49.67 288 -32V50.75C288 67.84 281.34 83.91 269.25 96L222.43 142.82C222.58 143.32 222.92 143.71 223.05 144.23L242.94 223.8L265.37 201.37C271.37 195.37 279.51 191.99 287.99 191.99H335.99V-48.01C335.99 -56.85 343.1500000000001 -64.01 351.99 -64.01H367.99C376.83 -64.01 383.99 -56.85 383.99 -48.01V272C384 280.8400000000001 376.8400000000001 288 368 288zM240 352C266.51 352 288 373.49 288 400S266.51 448 240 448S192 426.51 192 400S213.49 352 240 352z" />
+    <glyph glyph-name="hippo"
+      unicode="&#xF6ED;"
+      horiz-adv-x="640" d=" M581.12 351.8C553.45 351.95 528.62 334.2200000000001 504.52 325.18C489.98 359.73 455.83 384 416 384C404.7200000000001 384 394.05 381.7 384 378.12V392C384 405.26 373.25 416 360 416H344C330.75 416 320 405.26 320 392V343.02C286.01 368.42 241.24 384 192 384C85.96 384 0 312.36 0 224V-16C0 -24.84 7.16 -32 16 -32H80C88.84 -32 96 -24.84 96 -16V54.79C128.35 40.43 166.72 32 208 32S287.65 40.43 320 54.79V-16C320 -24.84 327.1600000000001 -32 336 -32H400C408.84 -32 416 -24.84 416 -16V160H544V128C544 119.16 551.16 112 560 112H592C600.84 112 608 119.16 608 128V160C625.67 160 640 174.33 640 192V284.02C640 318.11 615.21 351.61 581.12 351.8zM448 272C439.1600000000001 272 432 279.16 432 288S439.1600000000001 304 448 304S464 296.8400000000001 464 288S456.84 272 448 272z" />
+    <glyph glyph-name="history"
+      unicode="&#xF1DA;"
+      horiz-adv-x="512" d=" M504 192.469C504.253 55.829 392.82 -55.903 256.18 -55.999C197.165 -56.041 142.957 -35.469 100.358 -1.088C89.281 7.852 88.453 24.453 98.519 34.519L109.786 45.786C118.395 54.395 132.139 55.337 141.677 47.77C173.062 22.865 212.781 8 256 8C357.705 8 440 90.311 440 192C440 293.705 357.689 376 256 376C207.186 376 162.851 357.031 129.932 326.068L180.686 275.314C190.766 265.234 183.627 248 169.373 248H24C15.163 248 8 255.163 8 264V409.373C8 423.627 25.234 430.766 35.314 420.687L84.686 371.315C129.209 413.864 189.552 440 256 440C392.81 440 503.747 329.2200000000001 504 192.469zM323.088 113.685L332.911 126.315C341.0489999999999 136.778 339.164 151.857 328.701 159.994L288 191.651V296C288 309.255 277.255 320 264 320H248C234.745 320 224 309.255 224 296V160.349L289.409 109.475C299.872 101.338 314.95 103.222 323.088 113.685z" />
+    <glyph glyph-name="hockey-mask"
+      unicode="&#xF6EE;"
+      horiz-adv-x="448" d=" M376.61 393.54C293.6600000000001 466.15 154.35 466.15 71.39 393.54C7.36 337.5 -31.01 223.56 32.63 32C64.53 -64 224 -64 224 -64S383.4700000000001 -64 415.37 32C479.01 223.56 440.64 337.5 376.61 393.54zM288 384C296.84 384 304 376.8400000000001 304 368S296.84 352 288 352S272 359.16 272 368S279.1600000000001 384 288 384zM160 384C168.84 384 176 376.8400000000001 176 368S168.84 352 160 352S144 359.16 144 368S151.16 384 160 384zM176 -16C167.16 -16 160 -8.84 160 0S167.16 16 176 16S192 8.84 192 0S184.84 -16 176 -16zM176 48C167.16 48 160 55.16 160 64S167.16 80 176 80S192 72.84 192 64S184.84 48 176 48zM176 112C167.16 112 160 119.16 160 128S167.16 144 176 144S192 136.84 192 128S184.84 112 176 112zM128 176C92.65 176 64 204.65 64 240C64 257.67 78.33 272 96 272H160C177.67 272 192 257.67 192 240C192 204.65 163.35 176 128 176zM224 304C215.16 304 208 311.16 208 320S215.16 336 224 336S240 328.8400000000001 240 320S232.84 304 224 304zM272 -16C263.1600000000001 -16 256 -8.84 256 0S263.1600000000001 16 272 16S288 8.84 288 0S280.84 -16 272 -16zM272 48C263.1600000000001 48 256 55.16 256 64S263.1600000000001 80 272 80S288 72.84 288 64S280.84 48 272 48zM272 112C263.1600000000001 112 256 119.16 256 128S263.1600000000001 144 272 144S288 136.84 288 128S280.84 112 272 112zM320 176C284.65 176 256 204.65 256 240C256 257.67 270.33 272 288 272H352C369.67 272 384 257.67 384 240C384 204.65 355.35 176 320 176z" />
+    <glyph glyph-name="hockey-puck"
+      unicode="&#xF453;"
+      horiz-adv-x="512" d=" M0 288C0 341 114.6 384 256 384S512 341 512 288S397.4 192 256 192S0 235 0 288zM0 205.8V96C0 43 114.6 0 256 0S512 43 512 96V205.8C398.6 123.5 113.5 123.4 0 205.8z" />
+    <glyph glyph-name="hockey-sticks"
+      unicode="&#xF454;"
+      horiz-adv-x="640" d=" M0 80V-48C0 -56.8 7.2 -64 16 -64H64V96H16C7.2 96 0 88.8 0 80zM484.6 417.7L427.4 446.3C419.5 450.3 409.9 447 405.9 439.1L238.8 104.8C236.1 99.4 230.6 96 224.5 96H96V-64H222.1C246.3 -64 268.5 -50.3 279.3 -28.6L491.8 396.2C495.7 404.1 492.5 413.7 484.6 417.7zM239.5000000000001 213.7L293.2 321L234.1 439.2C230.1 447.1 220.5 450.3 212.6 446.4L155.3 417.8C147.4 413.8 144.2 404.2 148.1 396.3L239.5000000000001 213.7zM624 96H576V-64H624C632.8 -64 640 -56.8 640 -48V80C640 88.8 632.8 96 624 96zM400.5 106.3L346.8 -1C359.4000000000001 -26.2 372.2 -64 417.9 -64H544V96H415.6C411 96 404.8 97.7 400.5 106.3z" />
+    <glyph glyph-name="holly-berry"
+      unicode="&#xF7AA;"
+      horiz-adv-x="448" d=" M144 256C170.5 256 192 277.5 192 304S170.5 352 144 352S96 330.5 96 304S117.5 256 144 256zM256 304C256 277.5 277.5 256 304 256S352 277.5 352 304S330.5 352 304 352S256 330.5 256 304zM224 352C250.5 352 272 373.5 272 400S250.5 448 224 448S176 426.5 176 400S197.5 352 224 352zM207.8 212.9C207.9 225.3 194.7 233 184 226.6C149.7 206.3 112.6 193.9 75.3 190.4C65.6 189.5 59.7 179.1 63.7 170.2C69.9 156.3 74.8 141.6 78.4 126.4C82 111.2 73.1 95.8 58.2 91.3C43.3 86.8 28.1 83.6999999999999 12.9 82.1999999999999C3.2 81.1999999999999 -2.8 70.8999999999999 1.2 61.9999999999999C16.2 29.1999999999999 24.1 -7.5000000000001 24.2 -45.7C24.3 -60.1 39.4 -68.8000000000001 51.8 -61.7C85 -42.7 120.7 -31.2 156.6 -27.8000000000001C166.3 -26.9000000000001 172.2 -16.5000000000001 168.2 -7.6000000000001C162 6.2999999999999 157.1 20.9999999999999 153.5 36.1999999999999C149.9 51.3999999999999 158.8 66.8 173.7 71.3C188.6 75.8 203.8 78.9 219 80.4C228.7 81.4 234.7 91.7 230.7 100.6C215.2 134.8 207.4 173.1 207.8 212.9zM435 82.4C419.8 84 404.7 87.1 389.7 91.5C374.8 96 365.9 111.4 369.5 126.6C373.1 141.8 378 156.4 384.2 170.4C388.2 179.3 382.3 189.7000000000001 372.6 190.6C335.3 194.1 298.2 206.5 263.9 226.8C253.2 233.1 240 225.4 240.1 213.1C240.1 211.5 239.9 209.9 239.9 208.2C240.1 174.9 246.9 142.5 259.8 114.2000000000001C265.5 101.8000000000001 265 87.6 259.2 75.3000000000001C264.0999999999999 74.1000000000001 269.0999999999999 73.1000000000001 274 71.6000000000001C288.8999999999999 67.1000000000001 297.8 51.7000000000001 294.2 36.5000000000001C290.5999999999999 21.3000000000001 285.7 6.7 279.5 -7.3C275.5 -16.1999999999999 281.3999999999999 -26.6 291.1 -27.4999999999999C327 -30.8999999999999 362.7 -42.3999999999999 395.9 -61.3999999999999C408.4 -68.4999999999999 423.5 -59.7999999999999 423.5 -45.3999999999999C423.7 -7.1999999999999 431.5 29.6000000000001 446.5 62.3000000000001C450.8 71.0000000000001 444.7 81.4000000000001 435 82.4000000000001z" />
+    <glyph glyph-name="home-heart"
+      unicode="&#xF4C9;"
+      horiz-adv-x="576" d=" M570.7 211.7L512 263.5V400C512 408.8 504.8 416 496 416H432C423.2 416 416 408.8 416 400V348.3L314.7 437.7C299.4 451.4 276.5 451.4 261.2 437.7L5.2 211.7C-1.4 205.8 -1.9 195.7 4 189.1L25.4 165.3C31.3 158.6999999999999 41.4 158.1999999999999 48 164.1L277.4 366.3C283.4 371.6 292.5 371.6 298.6 366.3L527.9 164C534.5 158.1 544.6 158.6 550.5 165.2L571.9 189C577.8 195.7 577.3 205.8 570.6999999999999 211.7zM288 333C32.9 108 64 136.9 64 136.9V-48C64 -56.8 71.2 -64 80 -64H496C504.8 -64 512 -56.8 512 -48V136.9S543.9 107.4 288 333zM382.6 73.8L297.9000000000001 -11.8C292.4000000000001 -17.3 283.6 -17.3 278.1 -11.8L193.4 73.8000000000001C168.8000000000001 98.7000000000001 170.2000000000001 139.9000000000001 197.7000000000001 162.9000000000001C221.7000000000001 182.9000000000001 257.4000000000001 179.3000000000001 279.3000000000001 157.1000000000001L287.9000000000001 148.4000000000001L296.5000000000001 157.1000000000001C318.5000000000001 179.3000000000001 354.2000000000001 182.9000000000001 378.1000000000002 162.9000000000001C405.7000000000002 139.9000000000001 407.2000000000002 98.7000000000001 382.6000000000002 73.8000000000001z" />
+    <glyph glyph-name="home"
+      unicode="&#xF015;"
+      horiz-adv-x="576" d=" M488 135.3V-8C488 -21.3 477.3 -32 464 -32H348C341.4 -32 336 -26.6 336 -20V92C336 98.6 330.6 104 324 104H252C245.4 104 240 98.6 240 92V-20C240 -26.6 234.6 -32 228 -32H112C98.7 -32 88 -21.3 88 -8V135.3C88 138.9 89.6 142.3 92.4 144.6L280.4 299.4000000000001C284.8 303 291.2 303 295.7 299.4000000000001L483.7 144.6C486.4 142.3 488 138.9 488 135.3zM571.6 196.2L488 265.1V403.6C488 410.2 482.6 415.6 476 415.6H420C413.4 415.6 408 410.2 408 403.6V331L318.5 404.7C300.8 419.3 275.2 419.3 257.5 404.7L4.4 196.2C-0.7 192 -1.4 184.4 2.8 179.3L28.3 148.3C32.5 143.2 40.1 142.5 45.2 146.7L280.4 340.4C284.8 344 291.2 344 295.7 340.4L530.9 146.7C536 142.5 543.6 143.2 547.8 148.3L573.3 179.3C577.5 184.5 576.6999999999999 192 571.5999999999999 196.2z" />
+    <glyph glyph-name="hood-cloak"
+      unicode="&#xF6EF;"
+      horiz-adv-x="576" d=" M288.27 256C217.58 256 160.27 198.69 160.27 128V-64H416.27V128C416.27 198.69 358.97 256 288.27 256zM569.64 -12.84C511.97 64.13 511.97 128 511.97 128H512.03V192C512.03 276.03 465.66 315.05 410.85 374.7L450.6 414.45C462.99 426.83 454.22 448 436.71 448H287.6C192 448 64.03 338.55 64.03 192V128S64.03 64.13 6.36 -12.84C1.89 -18.8 -0.07 -25.48 0 -32C0.19 -48.52 13.46 -64 32.33 -64H128.27V128C128.27 216.22 200.05 288 288.27 288S448.27 216.22 448.27 128V-64H543.67C562.54 -64 575.81 -48.52 576 -32C576.07 -25.48 574.11 -18.8 569.64 -12.84z" />
+    <glyph glyph-name="horse-head"
+      unicode="&#xF7AB;"
+      horiz-adv-x="512" d=" M509.8 115.5L439.9 279.8C425 321 389.5 350.8 346.9 359C364.9 369.6 393.2 394.9000000000001 381.1 441.3C379.8 446.3 374 449.2 369.1 447.4000000000001L166.9 371.7C35.9 324.6 0 209.1 0 49.2V-32C0 -49.7 14.3 -64 32 -64H268.2C292 -64 307.5 -39 296.8 -17.7L256 64V64.7C210.4 68.2 171.4 95.4 151.7 134.3C150.1 137.4 150.8 141.1999999999999 153.3 143.6L165.4 155.7C169.3 159.6 176 158.4 178.3 153.3C193.1 119.6 226.5 95.9 265.7 95.9C282.9 95.9 298.7 101.0000000000001 312.5 109.1L358.5 45.2C364.5 36.8000000000001 374.2 31.9 384.5 31.9H434.8C443.3 31.9 451.4 35.3 457.4 41.3L502.7 81.1C511.6 90.2000000000001 514.4000000000001 103.7000000000001 509.8000000000001 115.5zM328 224C314.7 224 304 234.7 304 248S314.7 272 328 272S352 261.3 352 248S341.3 224 328 224z" />
+    <glyph glyph-name="horse"
+      unicode="&#xF6F0;"
+      horiz-adv-x="576" d=" M575.92 371.4C575.91 379.53 572.9 387.27 567.3399999999999 393.2C563.56 397.23 558.7599999999999 402.32 553.6499999999999 407.7C564.7099999999998 414.54 573.1499999999999 425.19 575.8299999999998 438.36C576.85 443.32 572.96 448 567.9 448H447.92C377.23 448 319.92 390.69 319.92 320H160C131.16 320 105.6 307.02 88 286.89V288C39.47 288 0 248.53 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.57 229.1 64 226.63 64 224C64 196.36 75.84 171.64 94.54 154.12L68.82 85.52A63.94500000000001 63.94500000000001 0 0 1 66.66 47.53L91.51 -51.88A15.982 15.982 0 0 1 107.02 -64H172.98C183.39 -64 191.03 -54.22 188.5 -44.12L162.19 61.14L186.03 124.73L320 102.4V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V129.78C435.74 149.97 448 177.53 448 208C448 208.22 447.93 208.42 447.92 208.64V311.11L463.92 304L482.82 266.3C490.27 251.43 507.87 244.75 523.31 250.93L555.8599999999999 263.9500000000001A31.997 31.997 0 0 1 575.9799999999999 293.6900000000001L575.92 371.4000000000001zM511.92 352C503.08 352 495.92 359.16 495.92 368S503.08 384 511.92 384S527.92 376.8400000000001 527.92 368S520.76 352 511.92 352z" />
+    <glyph glyph-name="hospital-alt"
+      unicode="&#xF47D;"
+      horiz-adv-x="576" d=" M544 352H416V416C416 433.7 401.7 448 384 448H192C174.3 448 160 433.7 160 416V352H32C14.3 352 0 337.7 0 320V-48C0 -56.8 7.2 -64 16 -64H560C568.8 -64 576 -56.8 576 -48V320C576 337.7 561.7 352 544 352zM160 12C160 5.4 154.6 0 148 0H108C101.4 0 96 5.4 96 12V52C96 58.6 101.4 64 108 64H148C154.6 64 160 58.6 160 52V12zM160 140C160 133.4 154.6 128 148 128H108C101.4 128 96 133.4 96 140V180C96 186.6 101.4 192 108 192H148C154.6 192 160 186.6 160 180V140zM320 12C320 5.4 314.6 0 308 0H268C261.4 0 256 5.4 256 12V52C256 58.6 261.4 64 268 64H308C314.6 64 320 58.6 320 52V12zM320 140C320 133.4 314.6 128 308 128H268C261.4 128 256 133.4 256 140V180C256 186.6 261.4 192 268 192H308C314.6 192 320 186.6 320 180V140zM336 310C336 306.7 333.3 304 330 304H304V278C304 274.7 301.3 272 298 272H278C274.7 272 272 274.7 272 278V304H246C242.7 304 240 306.7 240 310V330C240 333.3 242.7 336 246 336H272V362C272 365.3 274.7 368 278 368H298C301.3 368 304 365.3 304 362V336H330C333.3 336 336 333.3 336 330V310zM480 12C480 5.4 474.6 0 468 0H428C421.4 0 416 5.4 416 12V52C416 58.6 421.4 64 428 64H468C474.6 64 480 58.6 480 52V12zM480 140C480 133.4 474.6 128 468 128H428C421.4 128 416 133.4 416 140V180C416 186.6 421.4 192 428 192H468C474.6 192 480 186.6 480 180V140z" />
+    <glyph glyph-name="hospital-symbol"
+      unicode="&#xF47E;"
+      horiz-adv-x="512" d=" M256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM368 72C368 67.6 364.4 64 360 64H312C307.6 64 304 67.6 304 72V160H208V72C208 67.6 204.4 64 200 64H152C147.6 64 144 67.6 144 72V312C144 316.4 147.6 320 152 320H200C204.4 320 208 316.4 208 312V224H304V312C304 316.4 307.6 320 312 320H360C364.4 320 368 316.4 368 312V72z" />
+    <glyph glyph-name="hospital"
+      unicode="&#xF0F8;"
+      horiz-adv-x="448" d=" M448 -44V-64H0V-44C0 -37.373 5.373 -32 12 -32H32V328C32 341.255 42.745 352 56 352H144V424C144 437.255 154.745 448 168 448H280C293.255 448 304 437.255 304 424V352H392C405.255 352 416 341.255 416 328V-32H436C442.627 -32 448 -37.373 448 -44zM308 256H268C261.373 256 256 250.627 256 244V204C256 197.373 261.373 192 268 192H308C314.627 192 320 197.373 320 204V244C320 250.627 314.627 256 308 256zM140 192H180C186.627 192 192 197.373 192 204V244C192 250.627 186.627 256 180 256H140C133.373 256 128 250.627 128 244V204C128 197.373 133.373 192 140 192zM244 64H204C197.373 64 192 58.627 192 52V-32H256V52C256 58.627 250.627 64 244 64zM308 160H268C261.373 160 256 154.627 256 148V108C256 101.373 261.373 96 268 96H308C314.627 96 320 101.373 320 108V148C320 154.627 314.627 160 308 160zM192 148C192 154.627 186.627 160 180 160H140C133.373 160 128 154.627 128 148V108C128 101.373 133.373 96 140 96H180C186.627 96 192 101.373 192 108V148zM182 352H208V326A6 6 0 0 1 214 320H234A6 6 0 0 1 240 326V352H266A6 6 0 0 1 272 358V378A6 6 0 0 1 266 384H240V410A6 6 0 0 1 234 416H214A6 6 0 0 1 208 410V384H182A6 6 0 0 1 176 378V358A6 6 0 0 1 182 352z" />
+    <glyph glyph-name="hot-tub"
+      unicode="&#xF593;"
+      horiz-adv-x="512" d=" M414.21 270.35C415.23 262.14 421.96 256 429.96 256H446.08C455.59 256 463.16 264.57 462.08 274.35C457.74 313.46 439.68 348.88 411.95 371.51C394.58 385.68 383.13 408.26 379.97 433.66C378.96 441.86 372.2200000000001 448 364.23 448H348.11C338.6 448 331.0200000000001 439.43 332.11 429.65C336.45 390.54 354.51 355.12 382.24 332.49C399.6 318.3200000000001 411.06 295.74 414.2100000000001 270.35zM306.21 270.35C307.23 262.14 313.96 256 321.96 256H338.08C347.59 256 355.16 264.57 354.08 274.35C349.74 313.46 331.68 348.88 303.95 371.51C286.58 385.68 275.13 408.26 271.97 433.66C270.96 441.86 264.2200000000001 448 256.23 448H240.11C230.6 448 223.02 439.43 224.11 429.65C228.45 390.54 246.51 355.12 274.24 332.49C291.6 318.3200000000001 303.06 295.74 306.2100000000001 270.35zM480 192H256L145.07 275.2A63.99 63.99 0 0 1 106.67 288H64C28.65 288 0 259.35 0 224V0C0 -35.35 28.65 -64 64 -64H448C483.35 -64 512 -35.35 512 0V160C512 177.67 497.67 192 480 192zM128 8C128 3.58 124.42 0 120 0H104C99.58 0 96 3.58 96 8V120C96 124.42 99.58 128 104 128H120C124.42 128 128 124.42 128 120V8zM224 8C224 3.58 220.42 0 216 0H200C195.58 0 192 3.58 192 8V120C192 124.42 195.58 128 200 128H216C220.42 128 224 124.42 224 120V8zM320 8C320 3.58 316.42 0 312 0H296C291.58 0 288 3.58 288 8V120C288 124.42 291.58 128 296 128H312C316.42 128 320 124.42 320 120V8zM416 8C416 3.58 412.42 0 408 0H392C387.58 0 384 3.58 384 8V120C384 124.42 387.58 128 392 128H408C412.42 128 416 124.42 416 120V8zM64 320C99.35 320 128 348.65 128 384S99.35 448 64 448S0 419.35 0 384S28.65 320 64 320z" />
+    <glyph glyph-name="hotel"
+      unicode="&#xF594;"
+      horiz-adv-x="576" d=" M560 384C568.84 384 576 391.16 576 400V432C576 440.84 568.84 448 560 448H16C7.16 448 0 440.84 0 432V400C0 391.16 7.16 384 16 384H31.98V0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H256V16C256 24.8 263.2 32 272 32H304C312.8 32 320 24.8 320 16V-64H560C568.84 -64 576 -56.84 576 -48V-16C576 -7.16 568.84 0 560 0H544V384H560zM256 339.2C256 345.6 262.4 352 268.8 352H307.2C313.6 352 320 345.6 320 339.2V300.8C320 294.4 313.6 288 307.2 288H268.8C262.4000000000001 288 256 294.4 256 300.8V339.2000000000001zM256 243.2C256 249.6 262.4 256 268.8 256H307.2C313.6 256 320 249.6 320 243.2V204.8C320 198.4 313.6 192 307.2 192H268.8C262.4000000000001 192 256 198.4 256 204.8V243.2zM128 339.2C128 345.6 134.4 352 140.8 352H179.2C185.6 352 192 345.6 192 339.2V300.8C192 294.4 185.6 288 179.2 288H140.8C134.4 288 128 294.4 128 300.8V339.2zM179.2 192H140.8C134.4 192 128 198.4 128 204.8V243.2C128 249.6 134.4 256 140.8 256H179.2C185.6 256 192 249.6 192 243.2V204.8C192 198.4 185.6 192 179.2 192zM192 64C192 117.02 234.98 160 288 160S384 117.02 384 64H192zM448 204.8C448 198.4 441.6 192 435.2 192H396.8C390.4000000000001 192 384 198.4 384 204.8V243.2C384 249.6 390.4 256 396.8 256H435.2C441.6 256 448 249.6 448 243.2V204.8zM448 300.8C448 294.4 441.6 288 435.2 288H396.8C390.4000000000001 288 384 294.4 384 300.8V339.2000000000001C384 345.6 390.4 352 396.8 352H435.2C441.6 352 448 345.6 448 339.2000000000001V300.8z" />
+    <glyph glyph-name="hourglass-end"
+      unicode="&#xF253;"
+      horiz-adv-x="384" d=" M360 384C373.255 384 384 394.745 384 408V424C384 437.255 373.255 448 360 448H24C10.745 448 0 437.255 0 424V408C0 394.745 10.745 384 24 384C24 293.035 75.016 216.266 144.842 192C75.016 167.734 24 90.965 24 0C10.745 0 0 -10.745 0 -24V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V-24C384 -10.745 373.255 0 360 0C360 90.965 308.984 167.734 239.158 192C308.984 216.266 360 293.035 360 384zM192 240C134.213 240 88 306.5180000000001 88 384H296C296 306.055 249.49 240 192 240z" />
+    <glyph glyph-name="hourglass-half"
+      unicode="&#xF252;"
+      horiz-adv-x="384" d=" M360 448H24C10.745 448 0 437.255 0 424V408C0 394.745 10.745 384 24 384C24 293.035 75.016 216.266 144.842 192C75.016 167.734 24 90.965 24 0C10.745 0 0 -10.745 0 -24V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V-24C384 -10.745 373.255 0 360 0C360 90.965 308.984 167.734 239.158 192C308.984 216.266 360 293.035 360 384C373.255 384 384 394.745 384 408V424C384 437.255 373.255 448 360 448zM284.9220000000001 64H99.08C116.139 110.797 151.176 144 192 144C232.821 144 267.862 110.804 284.9220000000001 64zM284.9410000000001 320H99.078C91.988 339.452 88 361.252 88 384H296C296 361.195 292.013 339.413 284.941 320z" />
+    <glyph glyph-name="hourglass-start"
+      unicode="&#xF251;"
+      horiz-adv-x="384" d=" M360 448H24C10.745 448 0 437.255 0 424V408C0 394.745 10.745 384 24 384C24 293.035 75.016 216.266 144.842 192C75.016 167.734 24 90.965 24 0C10.745 0 0 -10.745 0 -24V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V-24C384 -10.745 373.255 0 360 0C360 90.965 308.984 167.734 239.158 192C308.984 216.266 360 293.035 360 384C373.255 384 384 394.745 384 408V424C384 437.255 373.255 448 360 448zM296 0H88C88 77.458 134.204 144 192 144C249.786 144 296 77.483 296 0z" />
+    <glyph glyph-name="hourglass"
+      unicode="&#xF254;"
+      horiz-adv-x="384" d=" M360 384C373.255 384 384 394.745 384 408V424C384 437.255 373.255 448 360 448H24C10.745 448 0 437.255 0 424V408C0 394.745 10.745 384 24 384C24 293.035 75.016 216.266 144.842 192C75.016 167.734 24 90.965 24 0C10.745 0 0 -10.745 0 -24V-40C0 -53.255 10.745 -64 24 -64H360C373.255 -64 384 -53.255 384 -40V-24C384 -10.745 373.255 0 360 0C360 90.965 308.984 167.734 239.158 192C308.984 216.266 360 293.035 360 384z" />
+    <glyph glyph-name="house-damage"
+      unicode="&#xF6F1;"
+      horiz-adv-x="576" d=" M288 333.04L69.47 140.29C67.85 138.8300000000001 65.78 138.15 64 136.94V-48C64 -56.84 71.16 -64 80 -64H229.23L192 8.81L296.11 72.81L235.95 192.03L384 55.25L279.89 -8.75L319.81 -64H496C504.84 -64 512 -56.84 512 -48V136.9C510.3 138.06 508.28 138.72 506.74 140.1L288 333.04zM570.69 211.72L512 263.55V400C512 408.8400000000001 504.84 416 496 416H432C423.1600000000001 416 416 408.8400000000001 416 400V348.31L314.75 437.69C307.12 444.55 297.56 447.99 288 448S268.9 444.59 261.3 437.73L5.31 211.72C-1.26 205.81 -1.81 195.7 4.1 189.12L25.5 165.3C31.4 158.73 41.52 158.18 48.1 164.09L277.42 366.37C283.4700000000001 371.7 292.54 371.7 298.5900000000001 366.37L527.91 164.1C534.48 158.2000000000001 544.6 158.74 550.51 165.31L571.91 189.13C577.81 195.7 577.27 205.82 570.6899999999999 211.72z" />
+    <glyph glyph-name="house-flood"
+      unicode="&#xF74F;"
+      horiz-adv-x="576" d=" M21.4 204C15.5 210.6 16.2 220.7 22.8 226.6L261.6 438C276.7000000000001 451.4 299.4000000000001 451.4 314.5 438L416 348.1V400C416 408.8 423.2 416 432 416H464C472.8 416 480 408.8 480 400V291.4L553.2 226.6C559.8000000000001 220.7 560.4000000000001 210.6 554.6 204L533.4 180C527.5 173.4 517.4 172.8 510.8 178.6L288 375.9L65.2 178.6C58.6 172.7000000000001 48.5 173.4 42.6 180L21.4 204zM562.1 0.1C540.6 2.5 520 10.6 504.2 23C490.1 34.1 470.0000000000001 34.3 456.0000000000001 23C418.1000000000001 -7.4 348.8000000000001 -7.4 310.3000000000001 24.5C296.8000000000001 35.7 277.3000000000001 33.6 263.6000000000001 22.7C225.6000000000001 -7.4 156.7000000000001 -7.3 118.4000000000001 24.4C104.9000000000001 35.6 85.1000000000001 33.3 71.3000000000001 22.4C55.8000000000001 10.2 35.3000000000001 2.3 13.6000000000001 0C5.7000000000001 -0.8 1e-13 -7.8 1e-13 -15.7V-47.9C1e-13 -57 7.6000000000001 -64.6999999999999 16.7000000000001 -63.9C45.5000000000001 -61.4 72.8000000000001 -52.5 96.1000000000001 -38C152.6000000000001 -72.6 233.1000000000001 -72.1 288.1000000000002 -38C344.6000000000002 -72.6 425.1000000000002 -72.1 480.1000000000001 -38C503.4000000000001 -52.2 531.0000000000001 -61.3 559.2000000000002 -63.8C568.3000000000002 -64.6 575.9000000000002 -56.9 575.9000000000002 -47.8V-16.2C576.0000000000002 -8.2 570.2000000000002 -0.8 562.1000000000003 0.1zM288 333.2L480 163.2V63.4H479.9C463.9 63.4 448.3 57.9 436 48C423.8 38.2 404.5 32.4 384.3 32.4C363.1 32.4 343.6 38.5 330.8 49.1C319.1 58.8 304.7 63.9 289.2 63.9C273 63.9 256.9 58.2 243.7 47.8C231.3 37.9999999999999 212.6 32.4 192.2 32.4C171 32.4 151.5 38.5 138.7 49.1C127.1 58.7 112.7 63.8 97.3 63.8C96.8 63.8 96.4 63.6999999999999 95.9 63.6999999999999V163.0999999999999L288 333.2zM320 224H256C247.2 224 240 216.8 240 208V144C240 135.2 247.2 128 256 128H320C328.8 128 336 135.2 336 144V208C336 216.8 328.8 224 320 224z" />
+    <glyph glyph-name="hryvnia"
+      unicode="&#xF6F2;"
+      horiz-adv-x="384" d=" M368 208C376.84 208 384 215.16 384 224V256C384 264.8400000000001 376.84 272 368 272H326.14C339.55 300.63 339.88 335.33 322.01 366.05C303.34 398.16 267.1 416 229.96 416H151.14C126.82 416 103.28 407.4700000000001 84.6 391.91L72.83 382.1C62.65 373.61 61.27 358.48 69.76 348.3L90.25 323.71C98.74 313.52 113.87 312.15 124.06 320.64L135.79 330.42C140.11 334.02 145.56 335.99 151.18 335.99H234.8C246.49 335.99 256 326.4700000000001 256 314.79C256 308.88 253.52 303.2100000000001 249.19 299.2100000000001L219.7 272H16C7.16 272 0 264.8400000000001 0 256V224C0 215.16 7.16 208 16 208H150.37L115.7 176H16C7.16 176 0 168.84 0 160V128C0 119.16 7.16 112 16 112H57.86C44.45 83.37 44.12 48.67 61.99 17.95C80.66 -14.15 116.9 -32 154.04 -32H232.86C257.18 -32 280.72 -23.47 299.4 -7.91L311.17 1.9C321.35 10.39 322.73 25.52 314.24 35.7L293.75 60.29C285.26 70.48 270.13 71.85 259.94 63.36L248.19 53.5599999999999A23.992 23.992 0 0 0 232.83 47.9999999999999H149.2C137.51 47.9999999999999 128 57.5199999999999 128 69.1999999999999C128 75.11 130.48 80.7799999999999 134.81 84.7799999999999L164.3 112H368C376.84 112 384 119.16 384 128V160C384 168.84 376.84 176 368 176H233.63L268.3 208H368z" />
+    <glyph glyph-name="humidity"
+      unicode="&#xF750;"
+      horiz-adv-x="384" d=" M223.9 425.9C215.2 454.7 170 456 160.1 425.9C109.1 268.2 0 225.3 0 114.1C0 15.7 85.9 -64 192 -64S384 15.7 384 114.1C384 225.8 275.1 267.4000000000001 223.9 425.9000000000001zM96 160C96 177.7 110.3 192 128 192S160 177.7 160 160S145.7 128 128 128S96 142.3 96 160zM145.5 28.2C142.7 24.7 137.7 24.2 134.3 27L121.8 37C118.4 39.8 117.8 44.8 120.6 48.2L238.6 195.7C241.4000000000001 199.1 246.4000000000001 199.7 249.8 196.9L262.3 186.9C265.8 184.1 266.3 179.1 263.5 175.7L145.5 28.2zM256 32C238.3 32 224 46.3 224 64S238.3 96 256 96S288 81.7 288 64S273.7 32 256 32z" />
+    <glyph glyph-name="hurricane"
+      unicode="&#xF751;"
+      horiz-adv-x="384" d=" M176 352L200.5 426.8C204.2 438 194.9 449.3 183.1 447.9C80 435.6 0 346.4 0 240C0 125.1 93.1 32 208 32L183.5 -42.8C179.8 -54 189.1 -65.2999999999999 200.9 -63.9C304 -51.6 384 37.6 384 144C384 258.9 290.9 352 176 352zM192 96C139 96 96 139 96 192S139 288 192 288S288 245 288 192S245 96 192 96zM192 224C174.3 224 160 209.7 160 192S174.3 160 192 160S224 174.3 224 192S209.7 224 192 224z" />
+    <glyph glyph-name="i-cursor"
+      unicode="&#xF246;"
+      horiz-adv-x="256" d=" M256 395.952V435.935C256 442.504 250.726 447.852 244.158 447.9340000000001C211.621 448.344 166.469 447.989 128 410.041C90.266 447.264 46.979 448.114 11.913 447.886C5.318 447.843 0 442.481 0 435.886V396.241C0 389.554 5.458 384.163 12.145 384.243C38.111 384.553 96 380.757 96 335.818V224H60C53.373 224 48 218.627 48 212V172C48 165.373 53.373 160 60 160H96V48C96 3.068 39.925 -0.031 12.05 0.041C5.404 0.058 0 -5.306 0 -11.952V-51.935C0 -58.504 5.274 -63.852 11.842 -63.934C44.379 -64.3430000000001 89.531 -63.988 128 -26.04C165.734 -63.263 209.021 -64.1130000000001 244.087 -63.885C250.682 -63.842 256 -58.48 256 -51.885V-12.24C256 -5.553 250.542 -0.162 243.855 -0.242C217.889 -0.553 160 3.061 160 48V160H196C202.627 160 208 165.373 208 172V212C208 218.627 202.627 224 196 224H160V335.818C160 380.75 216.075 384.031 243.95 383.9600000000001C250.596 383.942 256 389.3060000000001 256 395.952z" />
+    <glyph glyph-name="ice-skate"
+      unicode="&#xF7AC;"
+      horiz-adv-x="576" d=" M568 32H536C531.6 32 528 28.4 528 24V8C528 -5.3 517.3 -16 504 -16H432V32H384V-16H144V32H96V-16H8C3.6 -16 0 -19.6 0 -24V-56C0 -60.4 3.6 -64 8 -64H512C547.3 -64 576 -35.3 576 0V24C576 28.4 572.4 32 568 32zM64 64H480C497.7 64 512 78.3 512 96V133C512 177.1 482 215.4 439.3 226.1L320 256H264C259.6 256 256 259.6 256 264V280C256 284.4 259.6 288 264 288H320V320H264C259.6 320 256 323.6 256 328V344C256 348.4 259.6 352 264 352H320V432C320 440.8 312.8 448 304 448H272C263.2 448 256 440.8 256 432V416L78.4 365.3C50.9 357.4 32 332.3 32 303.8V96C32 78.3 46.3 64 64 64z" />
+    <glyph glyph-name="icicles"
+      unicode="&#xF7AD;"
+      horiz-adv-x="512" d=" M511.4 410.1C515.1 429.8 500 448 480 448H32C10.6 448 -4.8 427.3 1.4 406.8L88.5 133.4C91 126.2000000000001 101.2 126.2000000000001 103.6 133.4L140 257.5L184.2 70.2C186.1 61.9 197.9 61.9 199.8 70.2L246.3 267.1L280.4 133.7C282.7 126.1 293.4 126.1 295.7 133.7L341.5 306.2L408.2 -57.6C409.9 -66.2 422.2 -66.2 423.9 -57.6L511.4 410.1z" />
+    <glyph glyph-name="id-badge"
+      unicode="&#xF2C1;"
+      horiz-adv-x="384" d=" M336 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V400C384 426.5 362.5 448 336 448zM144 416H240C248.8 416 256 408.8 256 400S248.8 384 240 384H144C135.2 384 128 391.2 128 400S135.2 416 144 416zM192 288C227.3 288 256 259.3 256 224S227.3 160 192 160S128 188.7 128 224S156.7 288 192 288zM304 51.2C304 40.6 294 32 281.6 32H102.4C90 32 80 40.6 80 51.2V70.4C80 102.2 110.1 128 147.2 128H152.2C164.5 122.9 177.9 120 192 120S219.6 122.9 231.8 128H236.8C273.9000000000001 128 304 102.2 304 70.4V51.2z" />
+    <glyph glyph-name="id-card-alt"
+      unicode="&#xF47F;"
+      horiz-adv-x="576" d=" M528 384H384V288H192V384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V336C576 362.5 554.5 384 528 384zM288 224C323.3 224 352 195.3 352 160S323.3 96 288 96S224 124.7 224 160S252.7 224 288 224zM381.3 0H194.7C184.3 0 175.9 10 179.1 19.8C187.4 45.4 211.5 64 240 64H248.2C260.5 58.9 273.9 56 288 56S315.6 58.9 327.8 64H336C364.4 64 388.5 45.5 396.9 19.8C400.1 10 391.7 0 381.3 0zM352 416C352 433.7 337.7 448 320 448H256C238.3 448 224 433.7 224 416V320H352V416z" />
+    <glyph glyph-name="id-card"
+      unicode="&#xF2C2;"
+      horiz-adv-x="576" d=" M528 416H48C21.5 416 0 394.5 0 368V352H576V368C576 394.5 554.5 416 528 416zM0 16C0 -10.5 21.5 -32 48 -32H528C554.5 -32 576 -10.5 576 16V320H0V16zM352 248C352 252.4 355.6 256 360 256H504C508.4 256 512 252.4 512 248V232C512 227.6 508.4 224 504 224H360C355.6 224 352 227.6 352 232V248zM352 184C352 188.4 355.6 192 360 192H504C508.4 192 512 188.4 512 184V168C512 163.6 508.4 160 504 160H360C355.6 160 352 163.6 352 168V184zM352 120C352 124.4 355.6 128 360 128H504C508.4 128 512 124.4 512 120V104C512 99.6 508.4 96 504 96H360C355.6 96 352 99.6 352 104V120zM176 256C211.3 256 240 227.3 240 192S211.3 128 176 128S112 156.7 112 192S140.7 256 176 256zM67.1 51.8C75.5 77.5 99.6 96 128 96H136.2C148.5 90.9 161.9 88 176 88S203.6 90.9 215.8 96H224C252.4 96 276.5 77.5 284.9 51.8C288.1 41.9 279.7 32 269.3 32H82.7C72.3 32 63.9 42 67.1 51.8z" />
+    <glyph glyph-name="igloo"
+      unicode="&#xF7AE;"
+      horiz-adv-x="576" d=" M320 414.1C309.5 415.3 298.8 416 288 416C188.2 416 100.2 365.2 48.6 288H320V414.1zM96 256H30.3C11.1 217.4 0 174 0 128H96V256zM352 408.6V288H527.4C487.2 348.1 424.8 392.1 352 408.6zM480 128H576C576 174 564.9 217.4 545.7 256H480V128zM416 64V-32H544C561.7 -32 576 -17.7 576 0V96H411.5C414.1 85.7 416 75.1 416 64zM448 256H128V128H177.8C200 166.1 240.8 192 288 192S376 166.1 398.2 128H448V256zM0 0C0 -17.7 14.3 -32 32 -32H160V64C160 75.1 161.9 85.7 164.5 96H0V0zM288 160C235 160 192 117 192 64V-32H384V64C384 117 341 160 288 160z" />
+    <glyph glyph-name="image"
+      unicode="&#xF03E;"
+      horiz-adv-x="512" d=" M464 0H48C21.49 0 0 21.49 0 48V336C0 362.51 21.49 384 48 384H464C490.51 384 512 362.51 512 336V48C512 21.49 490.51 0 464 0zM112 328C81.072 328 56 302.928 56 272S81.072 216 112 216S168 241.072 168 272S142.928 328 112 328zM64 64H448V176L360.485 263.515C355.7990000000001 268.201 348.201 268.201 343.514 263.515L208 128L152.485 183.515C147.799 188.201 140.201 188.201 135.514 183.515L64 112V64z" />
+    <glyph glyph-name="images"
+      unicode="&#xF302;"
+      horiz-adv-x="576" d=" M480 32V16C480 -10.51 458.51 -32 432 -32H48C21.49 -32 0 -10.51 0 16V272C0 298.51 21.49 320 48 320H64V112C64 67.888 99.888 32 144 32H480zM576 112V368C576 394.51 554.51 416 528 416H144C117.49 416 96 394.51 96 368V112C96 85.49 117.49 64 144 64H528C554.51 64 576 85.49 576 112zM256 320C256 293.49 234.51 272 208 272S160 293.49 160 320S181.49 368 208 368S256 346.51 256 320zM160 176L215.515 231.515C220.201 236.201 227.799 236.201 232.486 231.515L272 192L407.515 327.515C412.201 332.201 419.799 332.201 424.486 327.515L512 240V128H160V176z" />
+    <glyph glyph-name="inbox-in"
+      unicode="&#xF310;"
+      horiz-adv-x="576" d=" M250.5 448H319.1C328.6 448 336.2000000000001 440.3 336.2000000000001 430.9V288H404.5000000000001C422.3000000000001 288 431.2000000000001 266.5 418.6000000000001 253.9L299.2000000000001 133.9C291.3000000000001 126 278.3000000000001 126.1 270.6 134.2L157 254.2C144.9 266.9 153.9 288 171.5 288H233.4V430.9C233.4 440.3 241.1 448 250.5 448zM565.5 109.1L470.9 227.3C466.4 232.9 457.9 233.3 452.9 228.2L424.8 199.3C420.6 195 420.3 188.2 424 183.4L468.3 128.0000000000001H376L344 64.0000000000001H232L200 128.0000000000001H107.6L151.4 182.7000000000001C155.1 187.4 154.9 194.1000000000001 150.8 198.4L123.2 227.9000000000001C118.2 233.2000000000001 109.6 232.9000000000001 105.1 227.2000000000001L10.7 109.2000000000001C3.7 100.6 0 90.1 0 79.2000000000001V-16C0 -42.5 21.5 -64 48 -64H528C554.5 -64 576 -42.5 576 -16V79.2C576 90.1 572.3 100.6 565.5 109.1z" />
+    <glyph glyph-name="inbox-out"
+      unicode="&#xF311;"
+      horiz-adv-x="576" d=" M576 79.2V-16C576 -42.5 554.5 -64 528 -64H48C21.5 -64 0 -42.5 0 -16V79.2C0 90.1 3.7 100.7 10.5 109.2L104.9 227.2C109.5 232.9 118 233.2 123 227.9L150.6 198.4C154.7 194 154.9 187.4 151.2 182.7L107.6 128H200L232 64H344L376 128H468.4L424.1 183.4C420.3 188.1 420.6 194.9 424.9 199.3L453 228.2C458 233.4 466.5 233 471 227.3L565.6 109.1C572.3000000000001 100.6 576 90.1 576 79.2zM342.6 145.1V288H404.5C422.1 288 431.1 309.1 419 321.8L305.3 441.8C297.6 449.9 284.6 450.1 276.7 442.1L157.3 322.1C144.7 309.5 153.6 288 171.4 288H239.7V145.1C239.7 135.6 247.4 128 256.8 128H325.4C334.9 128 342.6 135.7 342.6 145.1z" />
+    <glyph glyph-name="inbox"
+      unicode="&#xF01C;"
+      horiz-adv-x="576" d=" M567.938 204.092L462.25 362.626A48.003 48.003 0 0 1 422.311 384H153.689A48 48 0 0 1 113.751 362.626L8.062 204.092A47.994 47.994 0 0 1 0 177.467V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V177.467A47.994 47.994 0 0 1 567.938 204.092zM162.252 320H413.749L499.082 192H376L344 128H232L200 192H76.918L162.252 320z" />
+    <glyph glyph-name="indent"
+      unicode="&#xF03C;"
+      horiz-adv-x="448" d=" M0 364V404C0 412.837 7.163 420 16 420H432C440.837 420 448 412.837 448 404V364C448 355.163 440.837 348 432 348H16C7.163 348 0 355.163 0 364zM176 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H176C167.163 292 160 284.837 160 276V236C160 227.163 167.163 220 176 220zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM176 92H432C440.837 92 448 99.163 448 108V148C448 156.837 440.837 164 432 164H176C167.163 164 160 156.837 160 148V108C160 99.163 167.163 92 176 92zM123.313 203.313L27.313 299.297C17.266 309.348 0 302.224 0 287.9840000000001V96.009C0 81.68 17.325 74.705 27.313 84.696L123.313 180.6880000000001C129.562 186.9350000000001 129.562 197.0650000000001 123.313 203.3130000000001z" />
+    <glyph glyph-name="industry-alt"
+      unicode="&#xF3B3;"
+      horiz-adv-x="512" d=" M475.115 284.219L336 195.691V263.971C336 282.887 315.069 294.37 299.115 284.219L160 195.691V392C160 405.255 149.255 416 136 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H488C501.255 -32 512 -21.255 512 -8V263.971C512 282.8880000000001 491.069 294.37 475.115 284.219zM404 64H364C357.373 64 352 69.373 352 76V116C352 122.627 357.373 128 364 128H404C410.627 128 416 122.627 416 116V76C416 69.373 410.627 64 404 64zM276 64H236C229.373 64 224 69.373 224 76V116C224 122.627 229.373 128 236 128H276C282.627 128 288 122.627 288 116V76C288 69.373 282.627 64 276 64zM148 64H108C101.373 64 96 69.373 96 76V116C96 122.627 101.373 128 108 128H148C154.627 128 160 122.627 160 116V76C160 69.373 154.627 64 148 64z" />
+    <glyph glyph-name="industry"
+      unicode="&#xF275;"
+      horiz-adv-x="512" d=" M475.115 284.219L336 195.691V263.971C336 282.887 315.069 294.37 299.115 284.219L160 195.691V392C160 405.255 149.255 416 136 416H24C10.745 416 0 405.255 0 392V-8C0 -21.255 10.745 -32 24 -32H488C501.255 -32 512 -21.255 512 -8V263.971C512 282.8880000000001 491.069 294.37 475.115 284.219z" />
+    <glyph glyph-name="infinity"
+      unicode="&#xF534;"
+      horiz-adv-x="640" d=" M471.1 352C405 352 353.3 310.7 320 273.4C286.7 310.7 235 352 168.9 352C75.8 352 0 280.2 0 192S75.8 32 168.9 32C235 32 286.7 73.3 320 110.6C353.3 73.3 405 32 471.1 32C564.2 32 640 103.8 640 192S564.2 352 471.1 352zM168.9 128C128.7 128 96 156.7 96 192S128.7 256 168.9 256C207.1 256 242.3 219.9 262.9 192C242.5 164.4 207 128 168.9 128zM471.1 128C432.9000000000001 128 397.7000000000001 164.1 377.1 192C397.5 219.6 433 256 471.1 256C511.3 256 544 227.3 544 192S511.3 128 471.1 128z" />
+    <glyph glyph-name="info-circle"
+      unicode="&#xF05A;"
+      horiz-adv-x="512" d=" M256 440C119.043 440 8 328.9170000000001 8 192C8 55.003 119.043 -56 256 -56S504 55.003 504 192C504 328.9170000000001 392.957 440 256 440zM256 330C279.1960000000001 330 298 311.1960000000001 298 288S279.1960000000001 246 256 246S214 264.804 214 288S232.804 330 256 330zM312 76C312 69.373 306.627 64 300 64H212C205.373 64 200 69.373 200 76V100C200 106.627 205.373 112 212 112H224V176H212C205.373 176 200 181.373 200 188V212C200 218.627 205.373 224 212 224H276C282.627 224 288 218.627 288 212V112H300C306.627 112 312 106.627 312 100V76z" />
+    <glyph glyph-name="info-square"
+      unicode="&#xF30F;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM224 330C247.196 330 266 311.1960000000001 266 288S247.196 246 224 246S182 264.804 182 288S200.804 330 224 330zM280 76C280 69.373 274.627 64 268 64H180C173.373 64 168 69.373 168 76V100C168 106.627 173.373 112 180 112H192V176H180C173.373 176 168 181.373 168 188V212C168 218.627 173.373 224 180 224H244C250.627 224 256 218.627 256 212V112H268C274.627 112 280 106.627 280 100V76z" />
+    <glyph glyph-name="info"
+      unicode="&#xF129;"
+      horiz-adv-x="192" d=" M20 23.771H40V168.229H20C8.954 168.229 0 177.183 0 188.229V236C0 247.046 8.954 256 20 256H132C143.046 256 152 247.046 152 236V23.771H172C183.046 23.771 192 14.817 192 3.771V-44C192 -55.046 183.046 -64 172 -64H20C8.954 -64 0 -55.046 0 -44V3.771C0 14.817 8.954 23.771 20 23.771zM96 448C56.235 448 24 415.765 24 376S56.235 304 96 304S168 336.235 168 376S135.764 448 96 448z" />
+    <glyph glyph-name="inhaler"
+      unicode="&#xF5F9;"
+      horiz-adv-x="640" d=" M32 0C14.33 0 0 -14.33 0 -32S14.33 -64 32 -64S64 -49.67 64 -32S49.67 0 32 0zM32 192C14.33 192 0 177.67 0 160S14.33 128 32 128S64 142.33 64 160S49.67 192 32 192zM32 96C14.33 96 0 81.67 0 64S14.33 32 32 32S64 46.33 64 64S49.67 96 32 96zM128 144C110.33 144 96 129.67 96 112S110.33 80 128 80S160 94.33 160 112S145.67 144 128 144zM616.27 409.98L478.47 446.9C461.4 451.47 443.85 441.34 439.2800000000001 424.27L423.87 366.75L592.61 198.01L638.9 370.79C643.48 387.86 633.35 405.4 616.27 409.98zM409.19 336.18C400.45 344.92 385.5299999999999 340.88 382.3999999999999 328.92L346.49 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H519.31C533.8599999999999 -64 546.5699999999999 -54.19 550.26 -40.12L594.48 128.47C597.36 139.47 594.19 151.18 586.15 159.22L409.19 336.18zM128 48C110.33 48 96 33.67 96 16S110.33 -16 128 -16S160 -1.67 160 16S145.67 48 128 48z" />
+    <glyph glyph-name="integral"
+      unicode="&#xF667;"
+      horiz-adv-x="384" d=" M377.21 374.9700000000001L349.21 411.14C328.43 438.02 295.87 451.75 262.05 447.11C221.86 441.59 190.54 408 181.42 367.18L103.26 32.82L79.31 63.73C68.62 77.52 49.13 79.76 35.78 68.71L11.61 48.71C-1.74 37.66 -3.9 17.52 6.79 3.73L28.21 -23.92C44.19 -44.55 66.74 -59.7399999999999 92.1 -63.1299999999999C141.92 -69.7999999999999 186.5 -36.9499999999999 197.44 12.09L276.64 351.2000000000001L304.67 315.0000000000001C315.35 301.2000000000001 334.84 298.9600000000001 348.19 310.0000000000001L372.37 330.0000000000001C385.73 341.0300000000001 387.8999999999999 361.1700000000001 377.2099999999999 374.9700000000001z" />
+    <glyph glyph-name="intersection"
+      unicode="&#xF668;"
+      horiz-adv-x="384" d=" M166.74 414.38C69.96 401.96 0 314.89 0 217.32V-16C0 -24.84 7.16 -32 16 -32H80C88.84 -32 96 -24.84 96 -16V224C96 283.2 149.85 330.04 211.13 318.14C256.71 309.29 288 266.64 288 220.21V-16C288 -24.84 295.1600000000001 -32 304 -32H368C376.84 -32 384 -24.84 384 -16V224C384 338.18 283.83 429.4 166.74 414.38z" />
+    <glyph glyph-name="inventory"
+      unicode="&#xF480;"
+      horiz-adv-x="640" d=" M624 448H592C583.2 448 576 440.8 576 432V288H64V432C64 440.8 56.8 448 48 448H16C7.2 448 0 440.8 0 432V-64H64V-32H576V-64H640V432C640 440.8 632.8 448 624 448zM576 32H64V224H576V32zM368 320H464C472.8 320 480 327.2 480 336V432C480 440.8 472.8 448 464 448H368C359.2 448 352 440.8 352 432V336C352 327.2 359.2 320 368 320zM112 64H208C216.8 64 224 71.2 224 80V176C224 184.8 216.8 192 208 192H112C103.2 192 96 184.8 96 176V80C96 71.2 103.2 64 112 64zM272 64H368C376.8 64 384 71.2 384 80V176C384 184.8 376.8 192 368 192H272C263.2 192 256 184.8 256 176V80C256 71.2 263.2 64 272 64z" />
+    <glyph glyph-name="italic"
+      unicode="&#xF033;"
+      horiz-adv-x="320" d=" M204.758 32H170.909L233.0010000000001 352H273.7260000000001A16 16 0 0 1 289.4300000000001 364.937L295.6720000000001 396.937C297.599 406.8160000000001 290.034 416 279.968 416H120.235A16 16 0 0 1 104.531 403.063L98.289 371.063C96.362 361.184 103.927 352 113.993 352H147.839L85.749 32H46.278A16 16 0 0 1 30.574 19.065L24.329 -12.935C22.402 -22.815 29.967 -32 40.034 -32H198.513A16 16 0 0 1 214.217 -19.065L220.462 12.935C222.389 22.815 214.824 32 204.758 32z" />
+    <glyph glyph-name="jack-o-lantern"
+      unicode="&#xF30E;"
+      horiz-adv-x="576" d=" M352 341.4V412.19C352 418.25 348.58 423.79 343.1600000000001 426.5L303.56 446.3C295.19 450.49 285.02 446.62 281.55 437.93L245.49 347.78C258.62 350.42 272.65 352 288 352C312.28 352 333.23 348.01 352 341.4zM495.3 294.87C468.3 317.9600000000001 429.94 324.63 395.81 315.8C401.9 310.3 407.9700000000001 304.78 413 298C416.1 293.74 418.46 288.5800000000001 421.15 283.8300000000001C389.39 307.45 345.54 320 288 320S186.61 307.4600000000001 154.85 283.83C157.54 288.58 159.89 293.74 163 298C168.02 304.78 174.1 310.29 180.19 315.8C146.06 324.63 107.7 317.96 80.7 294.87C-26.9 202.86 -26.9 53.15 80.7 -38.87C119.33 -71.9 181.52 -72.21 220.82 -40.12C238.65 -55.51 260.7200000000001 -64 288 -64S337.35 -55.51 355.19 -40.12C394.49 -72.21 456.68 -71.9 495.31 -38.87C602.9 53.14 602.9 202.86 495.3 294.87zM320.85 170L362 236.67C364.33 241.24 370.6 241.09 374 236.67L415.15 170C416.81 166.75 416.05 160 409.15 160H326.86C319.96 160 319.16 166.69 320.85 170zM160.85 170L202 236.67C204.33 241.24 210.6 241.09 214 236.67L255.15 170C256.81 166.75 256.05 160 249.15 160H166.86C159.96 160 159.16 166.69 160.85 170zM469.8 102.4C463.84 85.36 457.05 73.78 451.1 65.44C441.7200000000001 52.5 429.7600000000001 41.64 415.9100000000001 32.45C415.6600000000001 41.07 408.68 48 400 48H384C375.1600000000001 48 368 40.84 368 32V10.52C344.54 3.64 317.8400000000001 0 288.02 0C258.17 0 231.46 3.65 208 10.51V32C208 40.84 200.84 48 192 48H176C167.3 48 160.29 41.03 160.08 32.37C146.37 41.45 134.55 52.16 125.33 64.88C119.21 73.47 112.31 85.19 106.29 102.34C101.42 116.23 116.85 128.49 129.53 121.01C162.47 101.57 199.92 88.27 240.0000000000001 82.17V64C240.0000000000001 55.16 247.1600000000001 48 256 48H272C280.84 48 288 55.16 288 64V78.26H288.02C346.4 78.26 400.74 94 446.56 121.05C459.22 128.53 474.6499999999999 116.28 469.8 102.4z" />
+    <glyph glyph-name="jedi"
+      unicode="&#xF669;"
+      horiz-adv-x="544" d=" M479.99 96L538.87 154.87C542.16 171.67 544 188.99 544 206.73C544 212.54 543.32 218.24 542.95 224H496L537.25 265.24C522.75 330.0300000000001 484.82 388.29 429.3400000000001 427.5100000000001C426.5700000000001 429.4700000000001 423.37 430.5000000000001 420.0900000000001 430.5000000000001C414.7200000000001 430.5000000000001 409.68 427.7900000000001 406.6 423.2600000000001C403.55 418.7700000000001 402.9600000000001 413.2700000000001 404.99 408.1700000000001C411.54 391.7100000000001 414.85 374.4400000000001 414.85 356.86C414.85 311.74 393.8200000000001 270.2900000000001 357.1600000000001 243.1300000000001C353.1400000000001 240.1500000000001 350.7000000000001 235.6300000000001 350.4600000000001 230.7300000000001C350.2200000000001 225.8100000000001 352.2200000000001 221.0700000000001 355.9500000000001 217.7000000000001C388.8800000000001 187.9500000000001 403.3000000000001 144.1900000000001 394.5200000000001 100.6300000000001C384.7800000000001 52.28 345.6800000000001 13.5300000000001 297.2100000000001 4.1300000000001L294.7100000000001 69.47L321.88 51C324.86 48.94 329.27 49.31 331.9 51.8A8.002 8.002 0 0 1 333.24 61.72L313.13 95.4500000000001L355.2 104.1700000000001C358.8999999999999 104.9200000000001 361.58 108.2200000000001 361.58 112.0000000000001C361.58 115.7700000000001 358.89 119.0600000000001 355.2 119.8300000000001L313.13 128.5600000000001L333.26 162.3300000000001C335.18 165.5600000000001 334.5999999999999 169.6400000000001 331.88 172.2400000000001C329.18 174.7900000000001 324.9099999999999 175.1300000000001 321.88 173.0400000000001L291.49 152.3700000000001L279.96 440.3A7.9639999999999995 7.9639999999999995 0 0 1 271.96 448C267.63 448 264.12 444.62 263.96 440.33L252.44 152.36L222.05 173.02C218.91 175.14 214.78 174.85 212.05 172.24C209.33 169.65 208.75 165.57 210.69 162.3L230.8 128.57L188.73 119.84C185.03 119.09 182.35 115.79 182.35 112.01S185.02 104.93 188.73 104.18L230.8 95.46L210.67 61.69C208.75 58.46 209.33 54.36 212.06 51.75C214.65 49.3 219.09 49 222.06 51L249.22 69.48L246.72 4.22C189.78 15.86 146.8299999999999 66.11 146.8299999999999 126.1400000000001C146.8299999999999 161.22 161.4499999999999 193.7400000000001 188 217.72C191.72 221.0800000000001 193.72 225.8300000000001 193.4799999999999 230.73C193.2399999999999 235.63 190.7999999999999 240.14 186.7899999999999 243.11C150.12 270.27 129.0799999999999 311.73 129.0799999999999 356.85C129.0799999999999 374.4100000000001 132.3899999999999 391.6600000000001 138.9199999999999 408.11C140.94 413.2 140.3499999999999 418.7 137.2999999999999 423.2C134.2199999999999 427.74 129.1699999999999 430.45 123.7899999999999 430.45C120.4899999999999 430.45 117.2899999999999 429.4100000000001 114.5199999999999 427.45C58.6499999999999 387.93 20.9199999999999 330.08 6.5499999999999 265.38L47.93 224H0.72C0.09 214.08 -0.25 204.09 0.22 194.01C0.84 180.58 2.76 167.48 5.33 154.6L63.93 96H24.02C65.27 5.77 155.15 -58.94 259.12 -63.71C263.42 -63.91 267.71 -64 271.9700000000001 -64C382.3100000000001 -64 477.3200000000001 1.83 519.95 96H479.9900000000001z" />
+    <glyph glyph-name="joint"
+      unicode="&#xF595;"
+      horiz-adv-x="640" d=" M444.34 266.9C466.72 251.22 480 225.74 480 198.31V168C480 163.58 483.58 160 488 160H536C540.42 160 544 163.58 544 168V198.31C544 241.55 522.99 281.7200000000001 487.66 306.37C463.85 322.98 448 348.66 448 377.69V440C448 444.42 444.42 448 440 448H392C387.58 448 384 444.42 384 440V373.6C384 329.91 408.56 291.9700000000001 444.3400000000001 266.9zM194.97 89.02C126.03 77.93 59.69 53.31 0 16C83.65 -36.28 180.3 -64 278.94 -64H367.51L254.79 67.51C240.05 84.71 217.34 92.62 194.97 89.02zM553.28 360.91C547.61 364.71 544 370.87 544 377.69V440C544 444.42 540.42 448 536 448H488C483.58 448 480 444.42 480 440V377.69C480 355.67 490.17 334.28 508.64 322.3C550.79 294.9600000000001 576 248.46 576 198.31V168C576 163.58 579.58 160 584 160H632C636.42 160 640 163.58 640 168V198.31C640 263.75 607.59 324.5 553.28 360.91zM360.89 95.95C326.49 95.89 274.08 95.8 272.68 95.78L390.48 -41.65A63.98700000000001 63.98700000000001 0 0 1 439.07 -64H527.52L409.57 73.6A63.95499999999999 63.95499999999999 0 0 1 360.89 95.9500000000001zM616 96H432L549.99 -41.65A63.98700000000001 63.98700000000001 0 0 1 598.58 -64H616C629.25 -64 640 -53.25 640 -40V72C640 85.26 629.25 96 616 96z" />
+    <glyph glyph-name="journal-whills"
+      unicode="&#xF66A;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM133.08 303.61L154.34 282.35C155.9 280.79 157.95 280.01 160 280.01S164.09 280.79 165.66 282.35C168.78 285.4700000000001 168.78 290.54 165.66 293.6600000000001L139.24 320.0800000000001C149.24 340.98 165.48 358.05 185.61 369.3400000000001C179.62 359.6 176 348.26 176 336C176 316.04 185.33 298.43 199.66 286.69C190.01 276.63 184 263.04 184 248C184 221.06 203.04 198.6 228.38 193.24L229.74 225.95L219.37 218.91C218.68 218.46 217.9 218.22 217.12 218.22C216.12 218.22 215.14 218.6 214.37 219.31A4.006 4.006 0 0 0 213.68 224.26L222.22 238.57L204.31 242.29C202.45 242.68 201.12 244.32 201.12 246.21S202.45 249.74 204.31 250.13L222.22 253.85L213.68 268.16C212.73 269.77 213.01 271.83 214.37 273.11C215.73 274.41 217.81 274.55 219.37 273.52L231.38 265.36L236 376.17C236.09 378.31 237.86 380 240 380S243.91 378.31 244 376.17L248.68 263.88L262.88 273.53A4.067 4.067 0 0 0 267.88 273.12A4.006 4.006 0 0 0 268.57 268.17L260.03 253.86L277.94 250.14C279.8 249.7500000000001 281.13 248.11 281.13 246.2200000000001S279.8 242.6900000000001 277.94 242.3000000000001L260.03 238.5800000000001L268.57 224.2700000000001C269.52 222.66 269.24 220.6000000000001 267.88 219.3200000000001C267.11 218.6000000000001 266.11 218.2300000000001 265.13 218.2300000000001C264.35 218.2300000000001 263.57 218.46 262.88 218.9200000000001L250.2 227.5400000000001L251.63 193.2600000000001C276.96 198.6 296 221.06 296 248C296 263.04 289.99 276.63 280.34 286.69C294.67 298.43 304 316.04 304 336C304 348.26 300.38 359.6 294.4 369.33C314.53 358.05 330.77 340.9700000000001 340.77 320.07L314.35 293.65C311.23 290.53 311.23 285.46 314.35 282.34C315.91 280.78 317.96 280 320.01 280S324.1 280.78 325.67 282.34L346.93 303.6C349.9000000000001 293.52 352 283.05 352 272C352 271.48 351.86 271.01 351.85 270.49L314.74 238.02A7.974999999999999 7.974999999999999 0 0 1 313.99 226.74A7.97 7.97 0 0 1 320.01 224.01C321.89 224.01 323.76 224.67 325.28 225.99L348.87 246.63C337.32 197.04 293.09 160 240 160S142.68 197.04 131.14 246.62L154.73 225.98A7.957 7.957 0 0 1 160 224C162.22 224 164.44 224.92 166.02 226.73C168.94 230.06 168.6 235.11 165.27 238.01L128.16 270.48C128.15 271 128.01 271.4700000000001 128.01 271.99C128 283.05 130.1 293.52 133.08 303.61zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="kaaba"
+      unicode="&#xF66B;"
+      horiz-adv-x="576" d=" M554.12 364.49L318.36 443.07A95.962 95.962 0 0 1 257.6500000000001 443.07L21.88 364.49A32.006 32.006 0 0 1 0 334.13V285.12L265.02 364.63C280.05 369.13 295.94 369.13 311 364.63L576 285.12V334.13C576 347.9 567.19 360.13 554.12 364.49zM274.2200000000001 333.9700000000001L0 251.7V23.32C0 8.32 10.42 -4.66 25.06 -7.92L267.18 -61.72A95.937 95.937 0 0 1 308.83 -61.72L550.95 -7.92C565.59 -4.67 576.01 8.32 576.01 23.32V251.71L301.81 333.9700000000001C292.77 336.69 283.2200000000001 336.69 274.2200000000001 333.9700000000001zM128 217.89C128 214.28 125.59 211.12 122.11 210.17L42.11 188.35C37.02 186.97 32 190.8 32 196.07V212.65C32 216.26 34.41 219.42 37.89 220.37L117.89 242.19C122.98 243.58 128 239.75 128 234.47V217.89zM272 257.17C272 253.56 269.59 250.4 266.11 249.45L170.11 223.27C165.02 221.88 160 225.71 160 230.99V247.57C160 251.18 162.41 254.34 165.89 255.29L261.89 281.4700000000001C266.98 282.86 272 279.03 272 273.75V257.17zM448 234.47C448 239.75 453.02 243.58 458.11 242.19L538.11 220.37C541.59 219.42 544 216.26 544 212.65V196.07C544 190.79 538.98 186.96 533.89 188.35L453.89 210.17A7.997 7.997 0 0 0 448 217.89V234.47zM304 273.74C304 279.02 309.02 282.85 314.11 281.4600000000001L410.11 255.28C413.5900000000001 254.33 416 251.17 416 247.56V230.98C416 225.7 410.98 221.87 405.89 223.26L309.89 249.4400000000001A7.997 7.997 0 0 0 304 257.1600000000001V273.74z" />
+    <glyph glyph-name="key-skeleton"
+      unicode="&#xF6F3;"
+      horiz-adv-x="512" d=" M448 448H320C284.65 448 256 419.35 256 384V230.4L4.69 -20.91C-1.56 -27.16 -1.56 -37.29 4.69 -43.54L20.46 -59.31C26.71 -65.5599999999999 36.84 -65.5599999999999 43.09 -59.31L79.34 -23.06L115.45 -59.17C121.7 -65.4200000000001 131.83 -65.4200000000001 138.08 -59.17L181.24 -16.01C187.49 -9.76 187.49 0.37 181.24 6.62L145.13 42.73L176 73.6L212.91 36.6900000000001C219.16 30.4400000000001 229.29 30.4400000000001 235.54 36.6900000000001L251.31 52.46C257.56 58.71 257.56 68.84 251.31 75.09L214.4 112L294.4 192H448C483.35 192 512 220.65 512 256V384C512 419.35 483.35 448 448 448zM374.63 265.37C362.13 252.87 341.87 252.87 329.37 265.37S316.87 298.13 329.37 310.62C341.87 323.12 362.13 323.12 374.63 310.62C387.12 298.13 387.12 277.87 374.63 265.37zM438.63 329.37C426.13 316.87 405.87 316.87 393.37 329.37S380.87 362.13 393.37 374.62C405.87 387.12 426.13 387.12 438.63 374.62C451.12 362.13 451.12 341.87 438.63 329.37z" />
+    <glyph glyph-name="key"
+      unicode="&#xF084;"
+      horiz-adv-x="512" d=" M512 271.999C512 174.797 433.202 96 336 96C324.78 96 313.81 97.062 303.173 99.069L279.161 72.055A23.999000000000002 23.999000000000002 0 0 0 261.223 64H224V24C224 10.745 213.255 0 200 0H160V-40C160 -53.255 149.255 -64 136 -64H24C10.745 -64 0 -53.255 0 -40V38.059C0 44.424 2.529 50.529 7.029 55.03L168.831 216.832C163.108 234.186 160 252.729 160 272C160 369.202 238.797 447.999 335.999 448C433.488 448.001 512 369.4890000000001 512 271.999zM336 320C336 293.49 357.49 272 384 272S432 293.49 432 320S410.51 368 384 368S336 346.51 336 320z" />
+    <glyph glyph-name="keyboard"
+      unicode="&#xF11C;"
+      horiz-adv-x="576" d=" M528 0H48C21.49 0 0 21.49 0 48V336C0 362.51 21.49 384 48 384H528C554.51 384 576 362.51 576 336V48C576 21.49 554.51 0 528 0zM128 268V308C128 314.627 122.627 320 116 320H76C69.373 320 64 314.627 64 308V268C64 261.373 69.373 256 76 256H116C122.627 256 128 261.373 128 268zM224 268V308C224 314.627 218.627 320 212 320H172C165.373 320 160 314.627 160 308V268C160 261.373 165.373 256 172 256H212C218.627 256 224 261.373 224 268zM320 268V308C320 314.627 314.627 320 308 320H268C261.373 320 256 314.627 256 308V268C256 261.373 261.373 256 268 256H308C314.627 256 320 261.373 320 268zM416 268V308C416 314.627 410.627 320 404 320H364C357.373 320 352 314.627 352 308V268C352 261.373 357.373 256 364 256H404C410.627 256 416 261.373 416 268zM512 268V308C512 314.627 506.627 320 500 320H460C453.373 320 448 314.627 448 308V268C448 261.373 453.373 256 460 256H500C506.627 256 512 261.373 512 268zM176 172V212C176 218.627 170.627 224 164 224H124C117.373 224 112 218.627 112 212V172C112 165.373 117.373 160 124 160H164C170.627 160 176 165.373 176 172zM272 172V212C272 218.627 266.627 224 260 224H220C213.373 224 208 218.627 208 212V172C208 165.373 213.373 160 220 160H260C266.627 160 272 165.373 272 172zM368 172V212C368 218.627 362.627 224 356 224H316C309.373 224 304 218.627 304 212V172C304 165.373 309.373 160 316 160H356C362.627 160 368 165.373 368 172zM464 172V212C464 218.627 458.627 224 452 224H412C405.373 224 400 218.627 400 212V172C400 165.373 405.373 160 412 160H452C458.627 160 464 165.373 464 172zM128 76V116C128 122.627 122.627 128 116 128H76C69.373 128 64 122.627 64 116V76C64 69.373 69.373 64 76 64H116C122.627 64 128 69.373 128 76zM416 76V116C416 122.627 410.627 128 404 128H172C165.373 128 160 122.627 160 116V76C160 69.373 165.373 64 172 64H404C410.627 64 416 69.373 416 76zM512 76V116C512 122.627 506.627 128 500 128H460C453.373 128 448 122.627 448 116V76C448 69.373 453.373 64 460 64H500C506.627 64 512 69.373 512 76z" />
+    <glyph glyph-name="keynote"
+      unicode="&#xF66C;"
+      horiz-adv-x="512" d=" M368 0H288V64H224V0H144C135.16 0 128 -7.16 128 -16V-48C128 -56.84 135.16 -64 144 -64H368C376.84 -64 384 -56.84 384 -48V-16C384 -7.16 376.84 0 368 0zM508.62 166.76L456.84 270.31A32 32 0 0 1 428.2200000000001 288H144C144 325.62 170.21 357.06 206.68 365.55C215.31 357.19 227.03 352 240 352H304C330.51 352 352 373.49 352 400S330.51 448 304 448H240C217.65 448 199.04 432.6600000000001 193.69 411.98C137.77 398.28 96 348.0900000000001 96 288H83.78A32 32 0 0 1 55.16 270.31L3.38 166.76A32.066 32.066 0 0 1 0 152.45V128C0 110.33 14.33 96 32 96H480C497.67 96 512 110.33 512 128V152.45C512 157.41 510.84 162.31 508.62 166.76z" />
+    <glyph glyph-name="khanda"
+      unicode="&#xF66D;"
+      horiz-adv-x="512" d=" M415.81 382C409.44 385.5 401.44 384.33 396.45 378.98A15.973999999999998 15.973999999999998 0 0 1 394.54 359.4600000000001C411.03 333.3 419.74 303.07 419.74 272.05C419.55 218.8 392.97 169.36 348.47 139.64L271.84 86.29V106.39L315.89 142.48C319.81 146.68 320.89 152.57 318.7 157.76L310.85 175C344.6900000000001 194.26 367.79 230.25 367.79 271.99C367.79 312.78 345.7700000000001 348.12 313.2000000000001 367.7L318.4200000000001 379.14C320.7600000000001 384.67 319.3500000000001 390.9700000000001 314.8500000000001 395.18L255.86 448L196.87 395.19C192.37 390.98 190.97 384.68 193.3 379.15L198.52 367.7100000000001C165.95 348.13 143.93 312.78 143.93 271.99C143.93 230.24 167.02 194.26 200.87 175L193.02 157.76C190.83 152.58 191.92 146.69 195.83 142.48L239.88 106.39V86.49L163.29 139.82C119.02 169.38 92.44 218.81 92.26 272C92.26 303.08 100.97 333.31 117.46 359.4700000000001C121.33 365.63 119.86 373.24 114.87 378.55C109.87 383.89 101.19 384.75 94.85 381.25C16.32 338.4 -22.3 242.7 13.36 152.01C20.43 134.02 31.25 117.63 43.82 102.95L99.79 37.59C104.66 31.9 112.83 30.35 119.44 33.87L198.79 76.1L228 55.77L180.92 22.99C179.25 23.36 177.69 24 175.91 24C162.66 24 151.92 13.26 151.92 0C151.92 -13.25 162.66 -24 175.91 -24C188.01 -24 197.6 -14.89 199.24 -3.24L239.87 25.04V-4.91C230.48 -10.48 223.88 -20.29 223.88 -32.01C223.88 -49.6800000000001 238.2 -64.01 255.86 -64.01S287.84 -49.68 287.84 -32.01C287.84 -20.3 281.23 -10.49 271.85 -4.91V25.24L312.76 -3.24C314.4100000000001 -14.89 324 -24 336.09 -24C349.34 -24 360.08 -13.25 360.08 0C360.08 13.26 349.34 24 336.09 24C334.31 24 332.75 23.36 331.08 22.99L284 55.77L313.21 76.11L392.56 33.8799999999999C399.17 30.36 407.3399999999999 31.9099999999999 412.2099999999999 37.5899999999999L464.7199999999999 98.8999999999999C483.5899999999999 120.9199999999999 498.7199999999999 146.3999999999999 505.9699999999999 174.4899999999999C527.5899999999999 258.1499999999999 489.5199999999999 341.7599999999999 415.81 381.9999999999999zM319.82 272C319.82 249.7 308.33 230.08 290.99 218.62L285.3400000000001 231.03C276.5900000000001 255.55 276.5900000000001 282.07 285.3400000000001 306.5900000000001L293.17 323.77C309.24 312.12 319.82 293.3200000000001 319.82 272zM191.89 272C191.89 293.32 202.47 312.12 218.55 323.76L226.38 306.58C235.13 282.06 235.13 255.55 226.38 231.02L220.73 218.61C203.39 230.07 191.89 249.7 191.89 272z" />
+    <glyph glyph-name="kidneys"
+      unicode="&#xF5FB;"
+      horiz-adv-x="640" d=" M231.6 415.93C196.27 455.49 135.56 458.92 95.98 423.62C36.08 370.15 2.39 298.04 0.13 224C-1.15 181.96 7.6 153.09 13.02 133.94C24.96 91.63 63.48 64.01 105.37 64.01C169.68 64.01 215.02 125.48 197.84 186.12C196.8 189.82 174.76 236.55 223.91 280.39C263.49 315.69 266.93 376.37 231.6 415.93zM303.87 180.23C303.87 201.54 292.0300000000001 220.73 272.9 230.32L237.06 248.24C228.49 238.12 220.51 223.29 225.4 205.98L227.22 199.49L251.43 187.38C254.15 186.01 255.87 183.29 255.87 180.22V-31.99L255.89 -48C255.89 -56.84 263.05 -64 271.89 -64H287.89C296.73 -64 303.89 -56.84 303.89 -48L303.87 0V180.23zM366.8400000000001 230.32C347.7500000000001 220.73 335.87 201.54 335.87 180.23L335.89 -31.98V-48C335.89 -56.84 343.05 -64 351.89 -64H367.89C376.73 -64 383.89 -56.84 383.89 -48L383.87 0V180.23C383.87 183.26 385.5900000000001 186.01 388.3400000000001 187.3900000000001L412.2100000000001 199.3300000000001L414.3400000000001 206.72C419.23 223.66 411.2600000000001 238.2800000000001 402.73 248.2800000000001L366.8400000000001 230.32zM543.89 423.7C504.34 458.92 443.56 455.45 408.3 415.8C373.0300000000001 376.21 376.57 315.53 416.2100000000001 280.28C465.8100000000001 236.16 442.7000000000001 189.13 441.9700000000001 186.57C424.49 126 469.62 64 534.29 64C576.03 64 614.42 91.37 626.55 133.46C632.0899999999999 152.73 641.0899999999999 181.54 639.9 224C637.81 298.03 604.0899999999999 370.16 543.89 423.7z" />
+    <glyph glyph-name="kiss-beam"
+      unicode="&#xF597;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM209 220.1L199.5 237.1C191.8 250.8 180.3 258.7 168 258.7S144.2 250.8 136.5 237.1L127 220.1C122.8 212.7 111.4 216.1 112.1 224.6C115.4 266.7 144.3 296 168.1 296S220.8 266.7 224.1 224.6C224.6 216.1 213.2 212.6 209 220.1zM304 52C304 32.8 275.3 10.5 232.5 8C224 7.2 220.4 19.8 228.9 23.4L245.9 30.6C258.9 36.1 266.7 44.1 266.7 52.1S258.9 68.1 245.9 73.6L228.9 80.8C222.9 83.3 222.8 92.9999999999999 228.9 95.6L245.9 102.8C258.9 108.3 266.7 116.3 266.7 124.3S258.9 140.3 245.9 145.8L228.9 153C220.3 156.6 224.1 169.5 232.5 168.3999999999999C275.3 165.8999999999999 304 143.5999999999999 304 124.3999999999999C304 111.3999999999999 290.6 97.0999999999999 268.8 88.3999999999999C290.6 79.3 304 65 304 52zM369 220.1L359.5 237.1C351.8 250.8 340.3 258.7 328 258.7S304.2 250.8 296.5 237.1L287 220.1C282.9 212.8 271.4 216.1 272.1 224.6C275.4000000000001 266.7 304.3 296 328.1 296S380.8 266.7 384.1 224.6C384.6 216.1 373.2000000000001 212.6 369 220.1z" />
+    <glyph glyph-name="kiss-wink-heart"
+      unicode="&#xF598;"
+      horiz-adv-x="504" d=" M501.1 45.5C493.1 66.3 469.6 77 448 71.4L439.6 69.2L437.3 77.6C431.4000000000001 98.9999999999999 410.3 114.1 388.3 110.6C363.1 106.6 347.7 81.9999999999999 354.3 57.9999999999999L377.2 -24.6C378.7 -29.9 384.2 -33.1 389.6 -31.7L472.6 -10.2C496.7 -3.9 510.3 21.6 501.1 45.4999999999999zM323.5 49.5C317.9 69.8 321.2 91.5 332.5 109.2C362.2 155.5 431.2 154.7 460.3 104.9C466.7 104.8 472.9 103.5 478.9 102C489.8 129.9 496.0000000000001 160.2 496.0000000000001 192C496 329 385 440 248 440S0 329 0 192S111 -56 248 -56C283.4 -56 316.9 -48.5 347.4 -35.1C347.1 -34.4 323.5 49.5 323.5 49.5zM168 208C150.3 208 136 222.3 136 240S150.3 272 168 272S200 257.7 200 240S185.7 208 168 208zM288 52C288 32.8 259.3 10.5 216.5 8C208 7.2 204.4 19.8 212.9 23.4L229.9 30.6C242.9 36.1 250.7 44.1 250.7 52.1S242.9 68.1 229.9 73.6L212.9 80.8C206.9 83.3 207.2 93.1 212.9 95.6L229.9 102.8C242.9 108.3 250.7 116.3 250.7 124.3S242.9 140.3 229.9 145.8L212.9 153C204.1 156.6999999999999 208.3 169.6 216.5 168.3999999999999C259.3 165.8999999999999 288 143.5999999999999 288 124.3999999999999C288 111.3999999999999 274.6 97.0999999999999 252.8 88.3999999999999C274.6 79.3 288 65 288 52zM304 231C295.7 223.6 282.4 230.6 284.2 241.8C288.2 267 318.4 283.9 344.1 283.9S400 267 404 241.8C405.7 230.7 392.7 223.5 384.2 231L374.7 239.5C359.9 252.7 328.5 252.7 313.7 239.5L304 231z" />
+    <glyph glyph-name="kiss"
+      unicode="&#xF596;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM168 208C150.3 208 136 222.3 136 240S150.3 272 168 272S200 257.7 200 240S185.7 208 168 208zM304 52C304 32.8 275.3 10.5 232.5 8C224 7.2 220.4 19.8 228.9 23.4L245.9 30.6C258.9 36.1 266.7 44.1 266.7 52.1S258.9 68.1 245.9 73.6L228.9 80.8C222.9 83.3 222.8 92.9999999999999 228.9 95.6L245.9 102.8C258.9 108.3 266.7 116.3 266.7 124.3S258.9 140.3 245.9 145.8L228.9 153C220.3 156.6 224.1 169.5 232.5 168.3999999999999C275.3 165.8999999999999 304 143.5999999999999 304 124.3999999999999C304 111.3999999999999 290.6 97.0999999999999 268.8 88.3999999999999C290.6 79.3 304 65 304 52zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208z" />
+    <glyph glyph-name="kite"
+      unicode="&#xF6F4;"
+      horiz-adv-x="640" d=" M113.75 132.17L167.13 96.59C177.76 89.5000000000001 192.01 97.1300000000001 192.01 109.9V178.11C192.01 190.89 177.77 198.51 167.13 191.42L120 160V224C120 272.6 80.6 312 32 312H16C7.16 312 0 304.8400000000001 0 296V280C0 271.16 7.16 264 16 264H32C54.09 264 72 246.09 72 224V160L24.88 191.42C14.24 198.51 0 190.88 0 178.11V109.9C0 97.1200000000001 14.24 89.5000000000001 24.88 96.59L78.26 132.17A32.004 32.004 0 0 0 113.75 132.17zM615.8 446.43C613.24 447.09 610.77 448 608 448H345.46C343.1 448 340.92 447.33 338.7 446.84L477.46 308.0800000000001L615.8 446.43zM331.31 116.69C328.19 113.57 323.12 113.57 320 116.69L308.69 128C305.57 131.12 305.57 136.19 308.69 139.31L454.83 285.45L315.11 425.18C314.9000000000001 424.48 314.45 423.92 314.2800000000001 423.2L235.5200000000001 81.89C235.1300000000001 80.2 235.0800000000001 78.55 234.9700000000001 76.9L146.6400000000001 -11.43C136.81 -21.26 120.0100000000001 -14.3 120.0100000000001 -0.4V89.55L96.0100000000001 105.55L72.0100000000001 89.55V4.6899999999999C72.0100000000001 -11.8600000000001 77.0600000000001 -28.3500000000001 87.7100000000001 -41.02C114.1900000000001 -72.5500000000001 156.6900000000001 -69.2800000000001 180.5800000000001 -45.36L268.8900000000001 42.95C270.5500000000001 43.07 272.2100000000001 43.14 273.9100000000001 43.53L615.22 122.29C615.94 122.46 616.51 122.91 617.21 123.12L477.46 262.8300000000001L331.31 116.69zM638.43 423.8L500.08 285.4600000000001L638.84 146.7C639.33 148.92 640 151.1 640 153.45V416C640 418.77 639.09 421.24 638.43 423.8z" />
+    <glyph glyph-name="kiwi-bird"
+      unicode="&#xF535;"
+      horiz-adv-x="576" d=" M575.81 230.02C572.64 290.5900000000001 518.28 336 457.63 336H448.26C395.44 336 344.01 352.25 300.52 382.24C258.53 411.2 204.48 423.86 147.31 410.94C129.3 406.88 -0.08 369.76 0 224C0.04 153.05 38.68 91.2 95.99 57.99V-16C95.99 -24.84 103.15 -32 111.99 -32H127.99C136.83 -32 143.99 -24.84 143.99 -16V38.26C159.35 34.3 175.39 32 191.99 32C197.43 32 202.67 32.73 207.99 33.18V-16C207.99 -24.84 215.15 -32 223.99 -32H239.99C248.83 -32 255.99 -24.84 255.99 -16V43.43C270.23 48.49 283.87 54.82 296.3300000000001 62.94C342.07 92.75 393.86 112 448.46 112C473.94 112 464.47 112.31 471.51 112.78L545.92 -23.66C548.78 -28.89 554.2199999999999 -32 559.9699999999999 -32C561.2799999999999 -32 562.6099999999999 -31.84 563.92 -31.5C571.01 -29.7 575.9699999999999 -23.31 575.9699999999999 -16C575.9699999999999 -16 576.1099999999999 224.24 575.81 230.02zM463.97 200C450.72 200 439.9700000000001 210.75 439.9700000000001 224C439.9700000000001 237.26 450.72 248 463.97 248S487.97 237.26 487.97 224C487.97 210.75 477.22 200 463.97 200zM543.97 46.75L504.11 119.83C519.23 125.66 532.84 134.43 543.97 145.81V46.75z" />
+    <glyph glyph-name="knife-kitchen"
+      unicode="&#xF6F5;"
+      horiz-adv-x="576" d=" M267.52 231.4L4.87 -21.83C-3.85 -30.24 -0.35 -44.56 11.36 -48.32C125.2 -84.91 250.7200000000001 -56.34 335.57 25.47L396.61 84.3200000000001C403.0900000000001 90.5700000000001 403.0900000000001 100.7000000000001 396.61 106.9500000000001L267.52 231.4zM566.28 404.69L531.07 438.63C518.11 451.13 497.09 451.13 484.1300000000001 438.63L291.8200000000001 253.23L403.9200000000001 145.15L438.2700000000001 172.86C444.4900000000001 178.86 447.9900000000001 187 447.9900000000001 195.49V240L566.28 359.43C579.24 371.93 579.24 392.19 566.28 404.69zM444.24 298.3400000000001C437.76 292.0900000000001 427.25 292.0900000000001 420.77 298.3400000000001S414.29 314.7200000000001 420.77 320.9700000000001S437.76 327.2200000000001 444.24 320.9700000000001S450.72 304.5900000000001 444.24 298.3400000000001zM504.76 356.69C498.28 350.44 487.77 350.44 481.29 356.69S474.8099999999999 373.07 481.29 379.32S498.28 385.57 504.76 379.32S511.24 362.93 504.76 356.69z" />
+    <glyph glyph-name="lambda"
+      unicode="&#xF66E;"
+      horiz-adv-x="448" d=" M424 64H380.5L197.6 399.32A32.018 32.018 0 0 1 169.5 416H24C10.75 416 0 405.26 0 392V344C0 330.75 10.75 320 24 320H131.5L136.13 311.51L3.25 1.45C-3.53 -14.38 8.08 -32 25.31 -32H77.54C87.14 -32 95.82 -26.28 99.6 -17.45L194.62 204.27L314.4 -15.32A32.018 32.018 0 0 1 342.5 -32H424C437.25 -32 448 -21.25 448 -8V40C448 53.26 437.25 64 424 64z" />
+    <glyph glyph-name="lamp"
+      unicode="&#xF4CA;"
+      horiz-adv-x="448" d=" M445.5 236.6L368 428.6C363.3 440.4 352.4 448 340.4 448H120.6C109.2 448 98.8 441.2 93.6 430.3L3.2 238.3C-6.8 217 7.8 192 30.2 192H417.9C439.5 192 454.1 215.5 445.5 236.6zM158.3 160C121 122.8 96 61.2 96 19.2C96 -9.2 107.5 -35.1 126.5 -55.1C132.2 -61.1 140.4 -64 148.7 -64H299.3C307.6 -64 315.8 -61.1 321.5 -55.1C340.5 -35 352 -9.2 352 19.2C352 61.2 327 122.8 289.7 160H158.3z" />
+    <glyph glyph-name="landmark-alt"
+      unicode="&#xF752;"
+      horiz-adv-x="512" d=" M48 192H464C472.8 192 480 199.2 480 208V240C480 248.8 472.8 256 464 256H445.1C431.6 336.3 368.3 399.6 288 413.1V432C288 440.8 280.8 448 272 448H240C231.2 448 224 440.8 224 432V413.1C143.7 399.6 80.4 336.3 66.9 256H48C39.2 256 32 248.8 32 240V208C32 199.2 39.2 192 48 192zM496 0H480V16C480 24.8 472.8 32 464 32H448V160H384V32H288V160H224V32H128V160H64V32H48C39.2 32 32 24.8 32 16V0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H496C504.8 -64 512 -56.8 512 -48V-16C512 -7.2 504.8 0 496 0z" />
+    <glyph glyph-name="landmark"
+      unicode="&#xF66F;"
+      horiz-adv-x="512" d=" M501.62 355.89L267.24 445.96A31.958 31.958 0 0 1 244.77 445.96L10.38 355.89A16.001 16.001 0 0 1 0 340.91V304C0 295.16 7.16 288 16 288H496C504.84 288 512 295.16 512 304V340.91C512 347.58 507.86 353.55 501.62 355.89zM64 256V96H48C39.16 96 32 88.84 32 80V32H480V80C480 88.84 472.84 96 464 96H448V256H384V96H288V256H224V96H128V256H64zM496 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-16C512 -7.16 504.84 0 496 0z" />
+    <glyph glyph-name="language"
+      unicode="&#xF1AB;"
+      horiz-adv-x="640" d=" M304 32H24C10.745 32 0 42.745 0 56V328C0 341.255 10.745 352 24 352H304V32zM183.324 104.622A12 12 0 0 1 194.839 96H217.702C225.922 96 231.709 104.078 229.064 111.861L171.61 280.915A12 12 0 0 1 160.248 289.054H127.759A12.001000000000001 12.001000000000001 0 0 1 116.397 280.915L58.942 111.861C56.297 104.078 62.084 96 70.304 96H93.109A12 12 0 0 1 104.644 104.693L113.762 136.5H173.973L183.324 104.622zM144.273 245.042S148.593 223.981 152.103 211.832L162.9030000000001 174.301H124.8330000000001L135.9030000000001 211.832C139.4130000000001 223.982 143.7330000000001 245.042 143.7330000000001 245.042H144.2730000000001zM616 32H336V352H616C629.255 352 640 341.255 640 328V56C640 42.745 629.255 32 616 32zM580 260H516V276C516 282.627 510.627 288 504 288H488C481.373 288 476 282.627 476 276V260H412C405.373 260 400 254.627 400 248V232C400 225.373 405.373 220 412 220H526.106C519.843 205.701 509.588 191.028 496.083 176.794C489.523 183.692 483.686 190.704 478.718 197.727C475.079 202.871 468.133 204.402 462.723 201.173L455.443 196.827L448.945 192.948C442.989 189.392 441.252 181.527 445.21 175.831C451.275 167.102 458.308 158.495 466.194 150.105C458.0719999999999 143.879 449.353 137.861 440.091 132.141C434.57 128.731 432.7099999999999 121.585 435.929 115.951L443.87 102.055C447.232 96.172 454.8049999999999 94.2289999999999 460.576 97.7789999999999C473.308 105.61 485.147 113.954 496.0189999999999 122.67C506.9359999999999 113.9089999999999 518.785 105.568 531.415 97.789C537.189 94.233 544.7679999999999 96.171 548.132 102.059L556.0759999999999 115.962C559.2889999999999 121.585 557.4459999999999 128.722 551.9409999999999 132.133A312.737 312.737 0 0 0 525.881 150.152C546.905 172.577 561.649 196.441 568.5939999999999 220.002H580C586.627 220.002 592 225.375 592 232.002V248.002C592 254.627 586.627 260 580 260z" />
+    <glyph glyph-name="laptop-code"
+      unicode="&#xF5FC;"
+      horiz-adv-x="640" d=" M255.03 186.35C261.28 180.1 271.4100000000001 180.1 277.6600000000001 186.35L288.9700000000001 197.66C295.2200000000001 203.91 295.2200000000001 214.04 288.9700000000001 220.29L253.25 256L288.96 291.7200000000001C295.21 297.9700000000001 295.21 308.1 288.96 314.35L277.65 325.66C271.4 331.91 261.27 331.91 255.02 325.66L196.68 267.32C190.43 261.07 190.43 250.94 196.68 244.69L255.03 186.35zM351.04 197.65L362.35 186.34C368.6 180.09 378.73 180.09 384.98 186.34L443.3200000000001 244.6800000000001C449.5700000000001 250.9300000000001 449.5700000000001 261.0600000000001 443.3200000000001 267.3100000000001L384.98 325.6500000000001C378.73 331.9000000000001 368.6 331.9000000000001 362.35 325.6500000000001L351.04 314.3400000000001C344.79 308.0900000000001 344.79 297.9600000000001 351.04 291.7100000000001L386.75 256L351.04 220.28C344.79 214.03 344.79 203.9 351.04 197.65zM624 32H381.54C380.8 12.19 366.8300000000001 0 348.8 0H288C269.31 0 254.98 17.47 255.23 32H16C7.2 32 0 24.8 0 16V0C0 -35.2 28.8 -64 64 -64H576C611.2 -64 640 -35.2 640 0V16C640 24.8 632.8 32 624 32zM576 400C576 426.4 554.4 448 528 448H112C85.6 448 64 426.4 64 400V64H576V400zM512 128H128V384H512V128z" />
+    <glyph glyph-name="laptop"
+      unicode="&#xF109;"
+      horiz-adv-x="640" d=" M624 32H381.54C380.8 12.19 366.8300000000001 0 348.8 0H288C269.31 0 254.98 17.47 255.23 32H16C7.2 32 0 24.8 0 16V0C0 -35.2 28.8 -64 64 -64H576C611.2 -64 640 -35.2 640 0V16C640 24.8 632.8 32 624 32zM576 400C576 426.4 554.4 448 528 448H112C85.6 448 64 426.4 64 400V64H576V400zM512 128H128V384H512V128z" />
+    <glyph glyph-name="laugh-beam"
+      unicode="&#xF59A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM272 240.6C275.3 282.7 304.2 312 328 312S380.7 282.7 384 240.6C384.7 232 373.2 228.7 369.1 236.1L359.6 253.1C351.9000000000001 266.8 340.4000000000001 274.7 328.1 274.7S304.3 266.8 296.6 253.1L287.1 236.1C282.9000000000001 228.7 271.3 232 272 240.6zM112 240.6C115.3 282.7 144.2 312 168 312S220.7 282.7 224 240.6C224.7 232 213.2 228.7 209.1 236.1L199.6 253.1C191.9 266.8 180.4 274.7 168.1 274.7S144.3 266.8 136.6 253.1L127.1 236.1C122.8 228.7 111.3 232.1 112 240.6zM398.9 142C390 71 329.4 16 256 16H240C166.6 16 106 71 97.1 142C95.9 151.5 103.4 160 113 160H383C392.6 160 400.1 151.6 398.9 142z" />
+    <glyph glyph-name="laugh-squint"
+      unicode="&#xF59B;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM281.8 278.3L361.8 326.3C373.4000000000001 333.2000000000001 385.8 318.6 377.2 308.3L343.6 268L377.2000000000001 227.7C385.9000000000001 217.3 373.3000000000001 202.9 361.8000000000001 209.7L281.8000000000001 257.7C274.1000000000001 262.4 274.1000000000001 273.6 281.8000000000001 278.3zM118.8 308.3C110.2 318.6 122.6 333.2000000000001 134.2 326.3L214.2 278.3C222 273.6 222 262.4 214.2 257.7000000000001L134.2 209.7C122.7 202.9 110.2 217.3 118.8 227.7L152.4 268L118.8 308.3zM398.9 142C390 71 329.4 16 256 16H240C166.6 16 106 71 97.1 142C95.9 151.5 103.4 160 113 160H383C392.6 160 400.1 151.6 398.9 142z" />
+    <glyph glyph-name="laugh-wink"
+      unicode="&#xF59C;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM268.1 241.9C272.1 267.1 302.3 284 328 284S383.9 267.1 387.9 241.9C389.6 230.8 376.5 223.6 368.1 231.1L358.6 239.6C343.8 252.8 312.4 252.8 297.6 239.6L288 231C279.6 223.6 266.4 230.7 268.1 241.9zM168 288C185.7 288 200 273.7 200 256S185.7 224 168 224S136 238.3 136 256S150.3 288 168 288zM398.9 142C390 71 329.4 16 256 16H240C166.6 16 106 71 97.1 142C95.9 151.5 103.4 160 113 160H383C392.6 160 400.1 151.6 398.9 142z" />
+    <glyph glyph-name="laugh"
+      unicode="&#xF599;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 288C345.7 288 360 273.7 360 256S345.7 224 328 224S296 238.3 296 256S310.3 288 328 288zM168 288C185.7 288 200 273.7 200 256S185.7 224 168 224S136 238.3 136 256S150.3 288 168 288zM256 16H240C166.6 16 106 71 97.1 142C95.9 151.5 103.4 160 113 160H383C392.6 160 400.1 151.6 398.9 142C390 71 329.4 16 256 16z" />
+    <glyph glyph-name="layer-group"
+      unicode="&#xF5FD;"
+      horiz-adv-x="512" d=" M12.41 299.98L245.35 194.31C252.15 191.22 259.84 191.22 266.64 194.31L499.58 299.98C516.13 307.49 516.13 332.5 499.58 340.01L266.65 445.69A25.606999999999996 25.606999999999996 0 0 1 245.36 445.69L12.41 340.02C-4.14 332.51 -4.14 307.49 12.41 299.98zM499.59 211.7L441.5 238.03L279.86 164.76C272.3 161.33 264.2700000000001 159.59 256 159.59S239.71 161.33 232.14 164.76L70.51 238.03L12.41 211.7C-4.14 204.2 -4.14 179.2 12.41 171.7L245.35 66.11C252.15 63.03 259.84 63.03 266.64 66.11L499.59 171.7C516.14 179.2 516.14 204.2 499.59 211.7zM499.59 83.9L441.7200000000001 110.13L279.86 36.76C272.3 33.33 264.2700000000001 31.59 256 31.59S239.71 33.33 232.14 36.76L70.29 110.13L12.41 83.9C-4.14 76.4 -4.14 51.4 12.41 43.9L245.35 -61.69C252.15 -64.7700000000001 259.84 -64.7700000000001 266.64 -61.69L499.59 43.9C516.14 51.4 516.14 76.4 499.59 83.9z" />
+    <glyph glyph-name="layer-minus"
+      unicode="&#xF5FE;"
+      horiz-adv-x="512" d=" M12.41 171.7L245.35 66.11C252.15 63.03 259.84 63.03 266.64 66.11L499.59 171.7C516.14 179.2 516.14 204.2 499.59 211.7L266.65 317.28A25.682 25.682 0 0 1 245.36 317.28L12.41 211.7C-4.14 204.2 -4.14 179.2 12.41 171.7zM304 384H496C504.84 384 512 391.16 512 400V432C512 440.84 504.84 448 496 448H304C295.1600000000001 448 288 440.84 288 432V400C288 391.16 295.1600000000001 384 304 384zM499.59 83.9L441.5 110.23L279.87 36.96C272.31 33.53 264.2800000000001 31.79 256.01 31.79S239.72 33.53 232.15 36.96L70.51 110.23L12.41 83.9C-4.14 76.4 -4.14 51.4 12.41 43.9L245.35 -61.6899999999999C252.15 -64.77 259.84 -64.77 266.64 -61.6899999999999L499.59 43.9C516.14 51.4 516.14 76.4 499.59 83.9z" />
+    <glyph glyph-name="layer-plus"
+      unicode="&#xF5FF;"
+      horiz-adv-x="512" d=" M304 304H368V240C368 231.16 375.1600000000001 224 384 224H416C424.84 224 432 231.16 432 240V304H496C504.84 304 512 311.16 512 320V352C512 360.8400000000001 504.84 368 496 368H432V432C432 440.84 424.84 448 416 448H384C375.1600000000001 448 368 440.84 368 432V368H304C295.1600000000001 368 288 360.8400000000001 288 352V320C288 311.16 295.1600000000001 304 304 304zM499.59 83.9L441.05 110.43L279.86 37.37C272.3 33.9399999999999 264.2700000000001 32.1999999999999 256 32.1999999999999S239.71 33.9399999999999 232.14 37.37L70.95 110.43L12.41 83.9C-4.14 76.4 -4.14 51.4 12.41 43.9L245.35 -61.69C252.15 -64.7700000000001 259.84 -64.7700000000001 266.64 -61.69L499.59 43.9C516.14 51.4 516.14 76.4 499.59 83.9zM12.41 172.1L245.35 66.51C252.15 63.43 259.84 63.43 266.64 66.51L448 148.72V167.3C432.68 162.92 416.73 160.01 400 160.01C311.99 160.01 239.28 224.68 226.28 309.05L12.41 212.1C-4.14 204.6 -4.14 179.6 12.41 172.1z" />
+    <glyph glyph-name="leaf-heart"
+      unicode="&#xF4CB;"
+      horiz-adv-x="576" d=" M546.2 438.3C540.6 450.8 524.6 451.3 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 140.8 98.9 122.3 104.1 104.9C31.6 48.5 4.3 -15.2 2.4 -20C-4.2 -36.3 3.6 -54.9 19.9 -61.6C36.3 -68.4 54.9 -60.5 61.7 -44.3C63.2 -40.7 82.6 3.6 133.6 46.3C166 2.4 227.6 -39.5000000000001 308.5 -30.9C465.5 -19.5 576 121.3 576 293.7C576 343.9 565.2 395.9 546.2 438.3zM430.6 153.6L345.9 68C340.4 62.5 331.6 62.5 326.1 68L241.4 153.6C216.8 178.5 218.2 219.7 245.7 242.7C269.7 262.7000000000001 305.3 259.1 327.3 236.9L335.9 228.2L344.5 236.9C366.5 259.1 402.2 262.7000000000001 426.1 242.7C453.7 219.8 455.2 178.5 430.6 153.6z" />
+    <glyph glyph-name="leaf-maple"
+      unicode="&#xF6F6;"
+      horiz-adv-x="512" d=" M503.58 281.95L466.34 304.29L476.2 393.07C477.43 404.11 468.1 413.44 457.06 412.21L368.28 402.35L345.95 439.58C339.32 450.63 323.38 450.84 316.46 439.97L226.86 299.18L243.44 364.02C246.24 376.6 234.82 387.7200000000001 222.32 384.6L196.6 370.78L151.3 422.11C144.36 430.78 131.17 430.78 124.23 422.11L78.93 370.78L53.2 384.5900000000001C40.7 387.71 29.28 376.5900000000001 32.08 364.01L65.12 203.82L28.03 187.93C14.02 181.93 14.02 162.07 28.03 156.06L130.78 112.02L9.37 -9.38C-3.13 -21.88 -3.13 -42.13 9.37 -54.63C15.62 -60.88 23.81 -64 32 -64S48.37 -60.88 54.62 -54.62L257 147.75L190.9 32.08L220.06 -35.97C226.07 -49.98 245.93 -49.98 251.93 -35.97L267.82 1.12L428.01 -31.92C440.59 -34.71 451.71 -23.3 448.59 -10.8L434.78 14.92L486.1 60.22C494.77 67.16 494.77 80.35 486.1 87.29L434.78 132.59L448.59 158.31C451.71 170.81 440.59 182.23 428.01 179.43L363.17 162.85L503.9599999999999 252.44C514.8399999999999 259.38 514.6299999999999 275.32 503.5799999999999 281.95z" />
+    <glyph glyph-name="leaf-oak"
+      unicode="&#xF6F7;"
+      horiz-adv-x="512" d=" M488.4 292.8400000000001C484.4299999999999 295.5800000000001 480.33 298.29 475.9299999999999 300.2000000000001C468.6 303.39 465.5799999999999 312.01 467.8699999999999 319.76C477.6299999999999 352.8400000000001 470.79 376.77 455.4399999999999 391.2700000000001L455.61 391.4400000000001C441.12 406.7800000000001 417.18 413.63 384.11 403.87C376.35 401.5800000000001 367.74 404.6 364.55 411.93C362.64 416.3200000000001 359.93 420.43 357.19 424.4000000000001C338.54 451.3800000000001 303.1499999999999 456.1 279.38 434.05C272.62 427.7800000000001 267.67 419.35 262.73 411.3900000000001C254.91 398.7600000000001 247.79 385.6900000000001 239.6 371.4600000000001C232.88 376.9700000000001 227.95 381.2100000000001 222.83 385.1900000000001C194.22 407.4200000000001 163.2 401.1500000000001 145.21 369.79C132.16 347.0500000000001 133.5699999999999 322.7200000000001 136.74 298.0300000000001C138.39 285.1900000000001 139.43 272.2700000000001 141.12 255.7200000000001C134.98 259.99 132.5399999999999 261.9600000000001 129.8499999999999 263.5C103.7499999999999 278.4400000000001 74.53 267.8000000000001 66.6799999999999 238.86C63.4799999999999 227.04 63.1099999999999 213.22 65.8199999999999 201.28C69.7499999999999 183.97 78.6899999999999 167.8200000000001 83.4299999999999 150.62C86.0299999999999 141.21 87.3399999999999 129.58 84.1499999999999 120.81C76.6099999999999 100.1 72.7499999999999 79.86 78.2399999999999 59.49L9.37 -9.38C-3.13 -21.88 -3.13 -42.13 9.37 -54.63C15.62 -60.88 23.81 -64 32 -64S48.37 -60.88 54.62 -54.62L238.33 129.09L173.92 16.3800000000001C177.54 17.47 181.15 18.4900000000001 184.79 19.8100000000001C193.56 23.0000000000001 205.19 21.6900000000001 214.6 19.09C231.8 14.34 247.95 5.41 265.26 1.47C277.2 -1.24 291.02 -0.88 302.84 2.33C331.78 10.1800000000001 342.42 39.4 327.48 65.5000000000001C325.94 68.1900000000001 323.96 70.6200000000001 319.7 76.77C336.25 75.08 349.16 74.05 362.01 72.39C386.7 69.22 411.02 67.8200000000001 433.77 80.8600000000001C465.14 98.8500000000001 471.4 129.8800000000001 449.17 158.4800000000001C445.19 163.6000000000001 440.96 168.5300000000001 435.44 175.2500000000001C449.68 183.4400000000001 462.7499999999999 190.5600000000001 475.3699999999999 198.3800000000001C483.3299999999999 203.3200000000001 491.7699999999999 208.2700000000001 498.03 215.0300000000001C520.0899999999999 238.8000000000001 515.38 274.1900000000001 488.4 292.8400000000001z" />
+    <glyph glyph-name="leaf"
+      unicode="&#xF06C;"
+      horiz-adv-x="576" d=" M546.2 438.3C540.6 450.8 524.6 451.3 517.9000000000001 439.5C486.9 385.6 431.4 352 368 352H288C182 352 96 266 96 160C96 153 96.8 146.3 97.5 139.5C161.3 185.2 253.4 224 384 224C392.8 224 400 216.8 400 208S392.8 192 384 192C132.6 192 26 37.9 2.4 -20C-4.2 -36.3 3.6 -54.9 19.9 -61.6C36.3 -68.4 54.9 -60.5 61.7 -44.3C63.2 -40.7 82.6 3.6 133.6 46.3C166 2.4 227.6 -39.5000000000001 308.5 -30.9C465.5 -19.5 576 121.3 576 293.7C576 343.9 565.2 395.9 546.2 438.3z" />
+    <glyph glyph-name="lemon"
+      unicode="&#xF094;"
+      horiz-adv-x="512" d=" M489.038 425.037C465.944 448.13 434.648 453.93 413.947 441.871C355.041 407.5590000000001 232.697 494.948 92.874 355.125S40.441 92.959 6.129 34.055C-5.93 13.353 -0.131 -17.944 22.962 -41.038C46.057 -64.133 77.354 -69.929 98.057 -57.87C156.958 -23.56 279.303 -110.9489999999999 419.125 28.873S471.56 291.04 505.871 349.944C517.93 370.646 512.132 401.943 489.038 425.0370000000001zM243.881 352.478C185.692 337.931 110.073 262.323 95.523 204.12C93.706 196.85 87.181 191.996 80.012 191.996C78.728 191.996 77.422 192.152 76.119 192.477C67.547 194.621 62.335 203.307 64.477 211.88C81.901 281.573 166.316 366.07 236.119 383.522C244.694 385.665 253.38 380.453 255.522 371.88S252.453 354.621 243.881 352.478z" />
+    <glyph glyph-name="less-than-equal"
+      unicode="&#xF537;"
+      horiz-adv-x="448" d=" M54.98 233.8L356.3900000000001 113.93C374.7800000000001 107.9 395.1 116.47 401.7700000000001 133.08L413.86 163.16C420.54 179.77 411.04 198.13 392.6500000000001 204.16L217.21 272.21L392.7700000000001 340.3C411.0600000000001 346.3 420.5100000000001 364.57 413.8700000000001 381.09L401.8400000000001 411.01C395.2000000000001 427.54 374.9800000000001 436.07 356.6900000000001 430.07L54.98 310.11C41.21 305.5900000000001 32 293.5 32 279.93V263.9700000000001C32 250.41 41.21 238.32 54.98 233.8zM424 48H24C10.75 48 0 37.26 0 24V-24C0 -37.25 10.75 -48 24 -48H424C437.25 -48 448 -37.25 448 -24V24C448 37.26 437.25 48 424 48z" />
+    <glyph glyph-name="less-than"
+      unicode="&#xF536;"
+      horiz-adv-x="384" d=" M365.46 90.26L147.04 192.11L365.51 293.99C381.53 301.4600000000001 388.46 320.5 380.99 336.52L367.4700000000001 365.52C360 381.54 340.96 388.4700000000001 324.94 381L18.48 238.09A32.014 32.014 0 0 1 0 209.09V174.85C0 162.41 7.21 151.1 18.48 145.85L324.79 3.02C340.85 -4.47 359.94 2.48 367.43 18.54L380.99 47.62C388.48 63.68 381.5300000000001 82.7699999999999 365.4600000000001 90.2599999999999z" />
+    <glyph glyph-name="level-down-alt"
+      unicode="&#xF3BE;"
+      horiz-adv-x="320" d=" M313.553 55.669L209.587 -56.334C200.102 -66.548 183.911 -66.563 174.413 -56.334L70.438 55.669C56.232 70.969 67.062 96 88.025 96H152V368H68.024A11.996 11.996 0 0 0 59.539 371.515L3.539 427.515C-4.021 435.074 1.333 448 12.024 448H208C221.255 448 232 437.255 232 424V96H295.966C316.844 96 327.817 71.031 313.553 55.669z" />
+    <glyph glyph-name="level-down"
+      unicode="&#xF149;"
+      horiz-adv-x="352" d=" M345.04 80L209.04 -56.901C199.652 -66.366 184.349 -66.366 174.961 -56.901L38.96 80C29.653 89.384 29.683 104.526 39.029 113.872L61.085 135.928C70.704 145.547 86.386 145.257 95.642 135.289L152 74.84V368H68.024A11.996 11.996 0 0 0 59.539 371.515L3.539 427.515C-4.021 435.074 1.333 448 12.024 448H208C221.255 448 232 437.255 232 424V74.84L288.357 135.288C297.613 145.256 313.295 145.5459999999999 322.914 135.927L344.97 113.871C354.316 104.526 354.347 89.384 345.04 80z" />
+    <glyph glyph-name="level-up-alt"
+      unicode="&#xF3BF;"
+      horiz-adv-x="320" d=" M313.553 328.331L209.587 440.334C200.102 450.548 183.911 450.563 174.413 440.334L70.438 328.331C56.232 313.031 67.062 288 88.025 288H152V16H68.024A11.996 11.996 0 0 1 59.539 12.485L3.539 -43.515C-4.021 -51.074 1.333 -64 12.024 -64H208C221.255 -64 232 -53.255 232 -40V288H295.966C316.844 288 327.817 312.969 313.553 328.331z" />
+    <glyph glyph-name="level-up"
+      unicode="&#xF148;"
+      horiz-adv-x="352" d=" M345.04 304L209.04 440.901C199.652 450.366 184.349 450.366 174.961 440.901L38.96 304C29.653 294.616 29.683 279.474 39.029 270.128L61.085 248.072C70.704 238.453 86.386 238.743 95.642 248.711L152 309.16V16H68.024A11.996 11.996 0 0 1 59.539 12.485L3.539 -43.515C-4.021 -51.074 1.333 -64 12.024 -64H208C221.255 -64 232 -53.255 232 -40V309.16L288.357 248.712C297.613 238.744 313.295 238.454 322.914 248.073L344.97 270.129C354.316 279.474 354.347 294.616 345.04 304z" />
+    <glyph glyph-name="life-ring"
+      unicode="&#xF1CD;"
+      horiz-adv-x="512" d=" M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM429.6960000000001 320.4410000000001L366.2970000000001 257.0420000000001C355.31 275.601 339.627 291.294 321.0420000000001 302.2970000000001L384.4410000000001 365.6960000000001A218.396 218.396 0 0 0 429.6960000000001 320.4410000000001zM256 96C202.981 96 160 138.981 160 192S202.981 288 256 288S352 245.019 352 192S309.019 96 256 96zM127.559 365.6960000000001L190.958 302.2970000000001C172.399 291.31 156.706 275.627 145.703 257.0420000000001L82.304 320.4410000000001A218.372 218.372 0 0 0 127.559 365.6960000000001zM82.304 63.559L145.703 126.958C156.69 108.399 172.373 92.706 190.958 81.703L127.559 18.304A218.396 218.396 0 0 0 82.304 63.559zM384.4410000000001 18.304L321.0420000000001 81.703C339.6010000000001 92.6900000000001 355.2940000000001 108.3730000000001 366.2970000000001 126.958L429.6960000000001 63.559A218.40299999999996 218.40299999999996 0 0 0 384.4410000000001 18.304z" />
+    <glyph glyph-name="lightbulb-dollar"
+      unicode="&#xF670;"
+      horiz-adv-x="352" d=" M96.06 -6.35C96.07 -12.64 97.93 -18.8 101.42 -24.04L118.51 -49.73A31.989999999999995 31.989999999999995 0 0 1 145.15 -64.01H206.86A31.989999999999995 31.989999999999995 0 0 1 233.5 -49.73L250.59 -24.04A31.989000000000004 31.989000000000004 0 0 1 255.95 -6.35L255.99 32H96.01L96.06 -6.35zM175.45 448C73.44 447.69 0 365.03 0 272C0 227.63 16.45 187.15 43.56 156.22C60.08 137.37 85.92 97.99 95.77 64.77C95.81 64.5100000000001 95.84 64.2500000000001 95.88 63.9900000000001H256.12C256.1600000000001 64.2500000000001 256.19 64.5000000000001 256.23 64.77C266.0800000000001 97.99 291.92 137.37 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.39 272.9100000000001 448.3 175.45 448zM192 192.12V176C192 171.58 188.42 168 184 168H168C163.58 168 160 171.58 160 176V192.29C148.71 192.87 137.73 196.81 128.63 203.64C124.73 206.57 124.53 212.41 128.06 215.78L139.81 226.99C142.58 229.63 146.7 229.75 149.94 227.72C153.81 225.3 158.2 224 162.76 224H190.87C197.37 224 202.67 229.92 202.67 237.19C202.67 243.14 199.06 248.38 193.9 249.92L148.9 263.42C130.31 269 117.32 286.84 117.32 306.81C117.32 331.33 136.37 351.25 159.99 351.88V368C159.99 372.42 163.57 376 167.99 376H183.99C188.41 376 191.99 372.42 191.99 368V351.7100000000001C203.28 351.13 214.26 347.2 223.36 340.36C227.26 337.43 227.46 331.5900000000001 223.93 328.2200000000001L212.18 317.01C209.41 314.37 205.29 314.25 202.05 316.2800000000001C198.18 318.7100000000001 193.79 320 189.23 320H161.12C154.62 320 149.32 314.0800000000001 149.32 306.8100000000001C149.32 300.86 152.93 295.62 158.09 294.0800000000001L203.09 280.5800000000001C221.68 275 234.67 257.1600000000001 234.67 237.1900000000001C234.67 212.6600000000001 215.62 192.7500000000001 192 192.1200000000001z" />
+    <glyph glyph-name="lightbulb-exclamation"
+      unicode="&#xF671;"
+      horiz-adv-x="352" d=" M96.06 -6.35C96.07 -12.64 97.93 -18.8 101.42 -24.04L118.51 -49.73A31.989999999999995 31.989999999999995 0 0 1 145.15 -64.01H206.86A31.989999999999995 31.989999999999995 0 0 1 233.5 -49.73L250.59 -24.04A31.989000000000004 31.989000000000004 0 0 1 255.95 -6.35L255.99 32H96.01L96.06 -6.35zM175.45 448C73.44 447.69 0 365.03 0 272C0 227.63 16.45 187.15 43.56 156.22C60.08 137.37 85.92 97.99 95.77 64.77C95.81 64.5100000000001 95.84 64.2500000000001 95.88 63.9900000000001H256.12C256.1600000000001 64.2500000000001 256.19 64.5000000000001 256.23 64.77C266.0800000000001 97.99 291.92 137.37 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.39 272.9100000000001 448.3 175.45 448zM176 128C158.33 128 144 142.33 144 160S158.33 192 176 192S208 177.67 208 160S193.67 128 176 128zM214.24 366.41L201.44 238.41C200.62 230.23 193.74 224 185.52 224H166.48C158.26 224 151.38 230.23 150.56 238.41L137.76 366.41C136.82 375.83 144.21 384 153.68 384H198.32C207.79 384 215.18 375.83 214.24 366.41z" />
+    <glyph glyph-name="lightbulb-on"
+      unicode="&#xF672;"
+      horiz-adv-x="640" d=" M40.73 380.29L121.61 333.6C127.94 354.31 137.4 373.74 149.73 391.26L72.73 435.7200000000001C65.08 440.14 55.29 437.52 50.87 429.86L34.87 402.15C30.45 394.49 33.08 384.7100000000001 40.73 380.29zM131.75 184.26L40.73 131.71C33.08 127.29 30.45 117.51 34.87 109.85L50.87 82.14C55.29 74.49 65.08 71.86 72.73 76.28L167.15 130.79C166.27 131.85 165.32 133.06 164.51 133.97C150.9 149.28 140.15 166.3 131.75 184.26zM599.27 380.29C606.92 384.7100000000001 609.55 394.5 605.13 402.15L589.13 429.86C584.71 437.51 574.92 440.13 567.27 435.7200000000001L490.19 391.2200000000001C502.43 373.8 512.18 354.51 518.65 333.75L599.27 380.29zM112.81 288H16C7.16 288 0 280.8400000000001 0 272V240C0 231.16 7.16 224 16 224H117.78C112.89 244.7 111.17 266.2100000000001 112.81 288zM624 288H527.19C528.3100000000001 273.45 529.37 256.3 521.6600000000001 224H624C632.84 224 640 231.16 640 240V272C640 280.8400000000001 632.84 288 624 288zM599.27 131.71L507.78 184.53C499.54 166.8800000000001 489.55 150.0100000000001 476.5 135.1300000000001C475.4 133.8700000000001 474.14 132.28 472.91 130.7600000000001L567.27 76.28C574.92 71.86 584.71 74.49 589.13 82.14L605.13 109.85C609.55 117.5100000000001 606.92 127.3 599.27 131.71zM319.45 448C217.44 447.69 144 365.03 144 272C144 227.63 160.45 187.15 187.56 156.22C204.08 137.37 229.92 97.99 239.77 64.77C239.81 64.5100000000001 239.84 64.2500000000001 239.88 63.9900000000001H400.12C400.1600000000001 64.2500000000001 400.19 64.5000000000001 400.23 64.77C410.0800000000001 97.99 435.92 137.37 452.44 156.22C479.55 187.15 496 227.63 496 272C496 369.39 416.9100000000001 448.3 319.45 448zM320 352C275.89 352 240 316.11 240 272C240 263.16 232.84 256 224 256S208 263.16 208 272C208 333.76 258.24 384 320 384C328.84 384 336 376.8400000000001 336 368S328.84 352 320 352zM240.06 -6.35C240.07 -12.64 241.93 -18.8 245.42 -24.04L262.51 -49.73A31.989999999999995 31.989999999999995 0 0 1 289.15 -64.01H350.86A31.989999999999995 31.989999999999995 0 0 1 377.5 -49.73L394.5899999999999 -24.04A31.989000000000004 31.989000000000004 0 0 1 399.95 -6.35L399.99 32H240.01L240.06 -6.35z" />
+    <glyph glyph-name="lightbulb-slash"
+      unicode="&#xF673;"
+      horiz-adv-x="640" d=" M633.82 -10.1L439.73 139.91C444.24 146.17 448.6 151.85 452.44 156.22C479.55 187.15 496 227.63 496 272C496 369.2 417.2 448 320 448C208.69 448 164.65 355.23 163.64 353.29L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM320 352C282.86 352 251.83 326.44 242.86 292.06L215.97 312.8400000000001C232.36 354.41 272.69 384 320 384C328.84 384 336 376.8400000000001 336 368S328.84 352 320 352zM240.01 32L240.05 -6.35C240.06 -12.64 241.92 -18.8 245.41 -24.04L262.5 -49.73A31.989999999999995 31.989999999999995 0 0 1 289.14 -64.01H350.85A31.989999999999995 31.989999999999995 0 0 1 377.49 -49.73L394.58 -24.04A31.989000000000004 31.989000000000004 0 0 1 399.94 -6.35L399.9599999999999 8.86L370.03 32H240.01zM163.73 191.44C170.3 178.75 178.22 166.87 187.56 156.22C204.08 137.37 229.92 97.99 239.77 64.77C239.81 64.5100000000001 239.84 64.2500000000001 239.88 63.9900000000001H328.62L163.73 191.44z" />
+    <glyph glyph-name="lightbulb"
+      unicode="&#xF0EB;"
+      horiz-adv-x="352" d=" M96.06 -6.35C96.07 -12.64 97.93 -18.8 101.42 -24.04L118.51 -49.73A31.989999999999995 31.989999999999995 0 0 1 145.15 -64.01H206.86A31.989999999999995 31.989999999999995 0 0 1 233.5 -49.73L250.59 -24.04A31.989000000000004 31.989000000000004 0 0 1 255.95 -6.35L255.99 32H96.01L96.06 -6.35zM0 272C0 227.63 16.45 187.15 43.56 156.22C60.08 137.37 85.92 97.99 95.77 64.77C95.81 64.5100000000001 95.84 64.2500000000001 95.88 63.9900000000001H256.12C256.1600000000001 64.2500000000001 256.19 64.5000000000001 256.23 64.77C266.0800000000001 97.99 291.92 137.37 308.44 156.22C335.55 187.15 352 227.63 352 272C352 369.39 272.9100000000001 448.3 175.45 448C73.44 447.69 0 365.03 0 272zM176 352C131.89 352 96 316.11 96 272C96 263.16 88.84 256 80 256S64 263.16 64 272C64 333.76 114.24 384 176 384C184.84 384 192 376.8400000000001 192 368S184.84 352 176 352z" />
+    <glyph glyph-name="lights-holiday"
+      unicode="&#xF7B2;"
+      horiz-adv-x="640" d=" M637.4 349.2L619.9 376.6C615.1999999999999 384 605.6999999999999 386.1 598.1 381.7C522 337.3 424 313 320 313S118 337.3 41.9 381.7C34.3 386.1 24.8 384 20.1 376.6L2.6 349.2C-2.3 341.4 -0.1 330.9 7.8 326.3C45.9 303.9 88.9 286.3 134.8 273.3L114.7 218C89.2 216.9 66.2 201.8 53.4 166.4C35.3 116.6 67.7 37.4 81.3 32.4C94.8 27.5 170.6 67.3 188.8 117.1C201.7 152.4 193.8 178.8 175 196.1L197.8 258.7C227.1 253.5 257.4000000000001 250.3 288.2000000000001 248.9V185.9C264.6 176.1 248.2000000000001 154.1 248.2000000000001 116.4C248.2000000000001 63.4 305.8000000000001 0 320.2000000000001 0S392.2000000000001 63.3 392.2000000000001 116.4C392.2000000000001 154 375.8000000000001 176.1 352.2000000000001 185.9V248.9C383.0000000000001 250.3 413.2000000000001 253.5 442.6 258.7L465.4 196.1C446.6 178.8 438.7000000000001 152.5 451.6 117.1C469.7 67.3 545.5 27.5 559.1 32.4C572.6 37.3 605.1 116.6 587 166.4C574.1 201.7000000000001 551.2 216.9 525.7 218L505.6 273.3C551.5 286.3 594.5 303.9 632.6 326.3C640.1 330.9 642.3000000000001 341.4 637.4 349.2000000000001zM145.6 139C140.8 125.9 119.2 101.9 103.1 92.5C96.8 110 95.7 142.2 100.4 155.4C104.5 166.7 118 172.2 130.4 167.7S149.7 150.3 145.6 139zM320 64C308.1 78.3 296 108.2 296 122.2C296 134.3 306.7 144 320 144S344 134.2 344 122.2C344 108.2 331.9 78.3 320 64zM509.5 167.7C522 172.2 535.4 166.7 539.5 155.4C544.3 142.3 543.2 110 536.8 92.5C520.6999999999999 101.8 499.1 125.8 494.3 139C490.3 150.3 497.1 163.2 509.4999999999999 167.7z" />
+    <glyph glyph-name="link"
+      unicode="&#xF0C1;"
+      horiz-adv-x="512" d=" M326.612 262.6090000000001C386.3590000000001 202.8 385.5390000000001 106.911 326.9720000000001 48.019C326.862 47.899 326.7320000000001 47.769 326.612 47.649L259.4120000000001 -19.551C200.142 -78.821 103.713 -78.813 44.452 -19.551C-14.818 39.709 -14.818 136.149 44.452 195.409L81.558 232.515C91.398 242.355 108.344 235.8150000000001 108.852 221.909C109.5 204.187 112.678 186.382 118.542 169.1880000000001C120.528 163.3660000000001 119.109 156.9260000000001 114.759 152.576L101.672 139.489C73.646 111.463 72.767 65.8290000000001 100.517 37.5290000000001C128.541 8.95 174.603 8.78 202.842 37.0190000000001L270.0420000000001 104.2090000000001C298.233 132.4 298.115 177.9660000000001 270.0420000000001 206.0390000000001C266.341 209.733 262.6130000000001 212.603 259.701 214.608A16.037 16.037 0 0 0 252.754 227.2140000000001C252.3580000000001 237.7810000000001 256.1020000000001 248.67 264.452 257.0200000000001L285.506 278.0750000000001C291.027 283.596 299.688 284.2740000000001 306.09 279.8060000000001A152.482 152.482 0 0 0 326.612 262.6090000000001zM467.547 403.551C408.286 462.813 311.8570000000001 462.821 252.587 403.551L185.387 336.351C185.267 336.231 185.137 336.101 185.027 335.981C126.461 277.089 125.64 181.2 185.387 121.391A152.454 152.454 0 0 1 205.908 104.1949999999999C212.31 99.7269999999999 220.972 100.406 226.492 105.9259999999999L247.546 126.981C255.896 135.331 259.6400000000001 146.2199999999999 259.2440000000001 156.7869999999999A16.037 16.037 0 0 1 252.2970000000001 169.3929999999999C249.385 171.3979999999999 245.6570000000001 174.2679999999999 241.956 177.9619999999999C213.883 206.035 213.765 251.601 241.956 279.7919999999999L309.156 346.9819999999999C337.395 375.2209999999999 383.456 375.051 411.481 346.4719999999999C439.231 318.1719999999999 438.353 272.5379999999999 410.326 244.5119999999999L397.2390000000001 231.425C392.889 227.075 391.4700000000001 220.6349999999999 393.456 214.8129999999999C399.32 197.619 402.498 179.8139999999999 403.146 162.0919999999999C403.6550000000001 148.1859999999999 420.6 141.6459999999999 430.44 151.4859999999999L467.546 188.5919999999999C526.817 247.851 526.817 344.291 467.547 403.551z" />
+    <glyph glyph-name="lips"
+      unicode="&#xF600;"
+      horiz-adv-x="640" d=" M631.14 252.32C579.47 338.01 466.31 416 417.7200000000001 416C417.7200000000001 416 385.1500000000001 416 320 366C254.85 416 222.28 416 222.28 416C173.69 416 60.53 338.01 8.86 252.32C-1.46 235.21 -2.77 214.33 4.97 195.94C32.95 129.49 117.59 -32 279.28 -32H360.71C522.4 -32 607.04 129.49 635.03 195.95C642.77 214.33 641.4599999999999 235.21 631.14 252.32zM320 128C149.34 128 64 224 64 224S128 256 224 256L259.38 247.16C278.2 242.45 298.95 240 320 240S361.8 242.45 380.62 247.16L416 256C512 256 576 224 576 224S490.66 128 320 128z" />
+    <glyph glyph-name="lira-sign"
+      unicode="&#xF195;"
+      horiz-adv-x="384" d=" M371.9940000000001 192H323.975C317.64 192 312 187.088 312 180.754C312 80 230.179 32 144 32V191.219L278.603 221.131A12 12 0 0 1 288 232.845V273.8210000000001C288 281.498 280.891 287.201 273.397 285.535L144 256.781V287.2200000000001L278.603 317.132A12 12 0 0 1 288 328.846V369.8210000000001C288 377.498 280.891 383.201 273.397 381.535L144 352.781V404C144 410.627 138.627 416 132 416H76C69.373 416 64 410.627 64 404V335.003L9.397 322.8690000000001A12 12 0 0 1 0 311.155V270.179C0 262.502 7.109 256.799 14.603 258.4650000000001L64 269.442V239.003L9.397 226.869A12 12 0 0 1 0 215.155V174.179C0 166.502 7.109 160.799 14.603 162.465L64 173.442V-20C64 -26.627 69.373 -32 76 -32H155.583C289.674 -32 378.838 45.834 383.991 179.592C384.252 186.374 378.78 192 371.994 192z" />
+    <glyph glyph-name="list-alt"
+      unicode="&#xF022;"
+      horiz-adv-x="512" d=" M464 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H464C490.51 416 512 394.51 512 368V16C512 -10.51 490.51 -32 464 -32zM128 328C105.909 328 88 310.091 88 288S105.909 248 128 248S168 265.909 168 288S150.091 328 128 328zM128 232C105.909 232 88 214.091 88 192S105.909 152 128 152S168 169.909 168 192S150.091 232 128 232zM128 136C105.909 136 88 118.091 88 96S105.909 56 128 56S168 73.909 168 96S150.091 136 128 136zM416 272V304C416 310.627 410.627 316 404 316H204C197.373 316 192 310.627 192 304V272C192 265.373 197.373 260 204 260H404C410.627 260 416 265.373 416 272zM416 176V208C416 214.627 410.627 220 404 220H204C197.373 220 192 214.627 192 208V176C192 169.373 197.373 164 204 164H404C410.627 164 416 169.373 416 176zM416 80V112C416 118.627 410.627 124 404 124H204C197.373 124 192 118.627 192 112V80C192 73.373 197.373 68 204 68H404C410.627 68 416 73.373 416 80z" />
+    <glyph glyph-name="list-ol"
+      unicode="&#xF0CB;"
+      horiz-adv-x="512" d=" M3.263 308.473C3.263 315.9500000000001 7.18 320.045 14.836 320.045H29.967V359.9220000000001C29.967 365.085 30.501 370.425 30.501 370.425H30.145S28.366 367.755 27.297 366.687C22.846 362.414 16.793 362.236 11.631 367.755L6.113 373.986C0.771 379.327 1.129 385.202 6.647 390.365L28.367 410.303C32.815 414.398 36.732 416 42.785 416H54.89C62.546 416 66.639 412.084 66.639 404.428V320.044H82.127C89.782 320.044 93.699 315.95 93.699 308.472V299.5710000000001C93.699 292.094 89.782 287.999 82.127 287.999H14.836C7.18 287.999 3.263 292.094 3.263 299.5710000000001V308.473zM2.211 143.409C2.211 190.687 53.166 199.792 53.166 212.574C53.166 219.754 47.212 221.329 43.886 221.329C40.733 221.329 37.407 220.278 34.431 217.477C29.352 212.574 23.924 210.473 18.32 215.026L9.741 221.855C3.962 226.408 2.561 231.6600000000001 6.938 237.264C13.592 246.019 26.025 256 47.387 256C66.824 256 91.863 245.494 91.863 216.427C91.863 178.08 45.11 170.025 43.184 159.518H82.233C89.762 159.518 93.79 155.491 93.79 148.136V139.381C93.79 132.027 89.762 127.999 82.233 127.999H14.293C7.288 127.999 2.21 132.027 2.21 139.381V143.409zM5.654 -6.61L11.257 2.67C15.11 9.324 20.362 9.674 26.841 5.8219999999999C31.744 3.7209999999999 36.471 2.67 41.2 2.67C51.355 2.67 55.558 6.172 55.558 10.9C55.558 17.554 49.954 20.006 39.624 20.006H34.896C28.942 20.006 25.616 22.107 22.638 27.886L21.588 29.812C19.137 34.54 20.362 39.6179999999999 24.389 44.696L29.993 51.7C36.822 60.105 42.25 65.183 42.25 65.183V65.533S38.047 64.482 29.642 64.482H16.685C9.155 64.482 5.302 68.5100000000001 5.302 75.864V84.619C5.302 92.149 9.155 96.001 16.685 96.001H75.169C82.698 96.001 86.551 91.9740000000001 86.551 84.619V81.292C86.551 75.514 85.15 71.4860000000001 81.472 67.109L63.963 46.972C83.574 41.8940000000001 92.679 26.485 92.679 12.1270000000001C92.679 -9.2359999999999 78.321 -31.9989999999999 44.176 -31.9989999999999C27.54 -31.9989999999999 15.984 -27.2709999999999 8.28 -22.5439999999999C2.501 -18.3419999999999 1.976 -12.7389999999999 5.654 -6.6099999999999zM144 316H496C504.837 316 512 323.163 512 332V372C512 380.837 504.837 388 496 388H144C135.163 388 128 380.837 128 372V332C128 323.163 135.163 316 144 316zM144 156H496C504.837 156 512 163.163 512 172V212C512 220.837 504.837 228 496 228H144C135.163 228 128 220.837 128 212V172C128 163.163 135.163 156 144 156zM144 -4H496C504.837 -4 512 3.163 512 12V52C512 60.837 504.837 68 496 68H144C135.163 68 128 60.837 128 52V12C128 3.163 135.163 -4 144 -4z" />
+    <glyph glyph-name="list-ul"
+      unicode="&#xF0CA;"
+      horiz-adv-x="512" d=" M96 352C96 325.49 74.51 304 48 304S0 325.49 0 352S21.49 400 48 400S96 378.51 96 352zM48 240C21.49 240 0 218.51 0 192S21.49 144 48 144S96 165.49 96 192S74.51 240 48 240zM48 80C21.49 80 0 58.51 0 32S21.49 -16 48 -16S96 5.49 96 32S74.51 80 48 80zM144 316H496C504.837 316 512 323.163 512 332V372C512 380.837 504.837 388 496 388H144C135.163 388 128 380.837 128 372V332C128 323.163 135.163 316 144 316zM144 156H496C504.837 156 512 163.163 512 172V212C512 220.837 504.837 228 496 228H144C135.163 228 128 220.837 128 212V172C128 163.163 135.163 156 144 156zM144 -4H496C504.837 -4 512 3.163 512 12V52C512 60.837 504.837 68 496 68H144C135.163 68 128 60.837 128 52V12C128 3.163 135.163 -4 144 -4z" />
+    <glyph glyph-name="list"
+      unicode="&#xF03A;"
+      horiz-adv-x="512" d=" M128 332V372C128 380.837 135.163 388 144 388H496C504.837 388 512 380.837 512 372V332C512 323.163 504.837 316 496 316H144C135.163 316 128 323.163 128 332zM144 156H496C504.837 156 512 163.163 512 172V212C512 220.837 504.837 228 496 228H144C135.163 228 128 220.837 128 212V172C128 163.163 135.163 156 144 156zM144 -4H496C504.837 -4 512 3.163 512 12V52C512 60.837 504.837 68 496 68H144C135.163 68 128 60.837 128 52V12C128 3.163 135.163 -4 144 -4zM16 304H80C88.837 304 96 311.163 96 320V384C96 392.837 88.837 400 80 400H16C7.163 400 0 392.837 0 384V320C0 311.163 7.163 304 16 304zM16 144H80C88.837 144 96 151.163 96 160V224C96 232.837 88.837 240 80 240H16C7.163 240 0 232.837 0 224V160C0 151.163 7.163 144 16 144zM16 -16H80C88.837 -16 96 -8.837 96 0V64C96 72.837 88.837 80 80 80H16C7.163 80 0 72.837 0 64V0C0 -8.837 7.163 -16 16 -16z" />
+    <glyph glyph-name="location-arrow"
+      unicode="&#xF124;"
+      horiz-adv-x="512" d=" M444.52 444.48L28.74 252.58C-19.23 230.19 -3.24 159.8300000000001 47.93 159.8300000000001H223.84V-16.0799999999999C223.84 -67.2499999999999 294.2 -83.2499999999999 316.5900000000001 -35.2699999999999L508.49 380.5100000000001C524.48 418.9000000000001 482.9 460.48 444.52 444.48z" />
+    <glyph glyph-name="location-circle"
+      unicode="&#xF602;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM358.24 270.26L262.29 62.37C251.0900000000001 38.38 215.91 46.38 215.91 71.96V159.92H127.95C102.36 159.92 94.37 195.1 118.36 206.3L326.25 302.25C345.45 310.24 366.24 289.45 358.24 270.26z" />
+    <glyph glyph-name="location-slash"
+      unicode="&#xF603;"
+      horiz-adv-x="640" d=" M633.82 -10.1L488.95 101.87C498.61 119.73 505.63 139.22 509.13 160H560C568.84 160 576 167.16 576 176V208C576 216.84 568.84 224 560 224H509.12C495.61 304.3400000000001 432.34 367.61 352 381.12V432C352 440.84 344.84 448 336 448H304C295.1600000000001 448 288 440.84 288 432V381.12C250.48 374.81 216.76 357.5800000000001 190.05 332.88L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM437.33 141.76L404.24 167.34C406.57 175.18 408 183.39 408 192C408 240.6 368.6 280 320 280C303.44 280 288.1600000000001 275.2 275.01 267.2200000000001L241.8 292.88C263.45 309.7200000000001 290.44 320 320 320C390.7 320 448 262.69 448 192C448 174.07 444.06 157.17 437.33 141.76zM320 64C257.63 64 205.82 108.65 194.45 167.7L121.61 224H80C71.16 224 64 216.84 64 208V176C64 167.16 71.16 160 80 160H130.88C144.39 79.66 207.66 16.39 288 2.88V-48C288 -56.84 295.1600000000001 -64 304 -64H336C344.84 -64 352 -56.84 352 -48V2.88C366.07 5.25 379.35 9.63 392.19 14.87L327.62 64.77C325.05 64.62 322.61 64 320 64z" />
+    <glyph glyph-name="location"
+      unicode="&#xF601;"
+      horiz-adv-x="512" d=" M496 224H445.12C431.61 304.3400000000001 368.34 367.61 288 381.12V432C288 440.84 280.84 448 272 448H240C231.16 448 224 440.84 224 432V381.12C143.66 367.61 80.39 304.3400000000001 66.88 224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H66.88C80.39 79.66 143.66 16.39 224 2.88V-48C224 -56.84 231.16 -64 240 -64H272C280.84 -64 288 -56.84 288 -48V2.88C368.3400000000001 16.39 431.61 79.66 445.12 160H496C504.84 160 512 167.16 512 176V208C512 216.84 504.84 224 496 224zM256 64C185.3 64 128 121.31 128 192S185.3 320 256 320S384 262.69 384 192S326.7 64 256 64zM256 280C207.4 280 168 240.6 168 192S207.4 104 256 104S344 143.4 344 192S304.6 280 256 280z" />
+    <glyph glyph-name="lock-alt"
+      unicode="&#xF30D;"
+      horiz-adv-x="448" d=" M400 224H376V296C376 379.8 307.8 448 224 448S72 379.8 72 296V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224zM264 56C264 33.9 246.1 16 224 16S184 33.9 184 56V104C184 126.1 201.9 144 224 144S264 126.1 264 104V56zM296 224H152V296C152 335.7 184.3 368 224 368S296 335.7 296 296V224z" />
+    <glyph glyph-name="lock-open-alt"
+      unicode="&#xF3C2;"
+      horiz-adv-x="576" d=" M423.5 448C339.5 447.7 272 378.5 272 294.5V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224H352V295.1C352 334.7 383.7 367.6 423.3 368C463.3 368.4 496 335.9 496 296V216C496 202.7 506.7 192 520 192H552C565.3 192 576 202.7 576 216V296C576 380 507.5 448.3 423.5 448zM264 56C264 33.9 246.1 16 224 16S184 33.9 184 56V104C184 126.1 201.9 144 224 144S264 126.1 264 104V56z" />
+    <glyph glyph-name="lock-open"
+      unicode="&#xF3C1;"
+      horiz-adv-x="576" d=" M423.5 448C339.5 447.7 272 378.5 272 294.5V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224H352V295.1C352 334.7 383.7 367.6 423.3 368C463.3 368.4 496 335.9 496 296V216C496 202.7 506.7 192 520 192H552C565.3 192 576 202.7 576 216V296C576 380 507.5 448.3 423.5 448z" />
+    <glyph glyph-name="lock"
+      unicode="&#xF023;"
+      horiz-adv-x="448" d=" M400 224H376V296C376 379.8 307.8 448 224 448S72 379.8 72 296V224H48C21.5 224 0 202.5 0 176V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V176C448 202.5 426.5 224 400 224zM296 224H152V296C152 335.7 184.3 368 224 368S296 335.7 296 296V224z" />
+    <glyph glyph-name="long-arrow-alt-down"
+      unicode="&#xF309;"
+      horiz-adv-x="256" d=" M168 102.059V404C168 410.627 162.627 416 156 416H100C93.373 416 88 410.627 88 404V102.059H41.941C20.559 102.059 9.851 76.208 24.97 61.088L111.029 -24.971C120.402 -34.344 135.598 -34.344 144.97 -24.971L231.029 61.088C246.148 76.207 235.44 102.059 214.058 102.059H168z" />
+    <glyph glyph-name="long-arrow-alt-left"
+      unicode="&#xF30A;"
+      horiz-adv-x="448" d=" M134.059 152H436C442.627 152 448 157.373 448 164V220C448 226.627 442.627 232 436 232H134.059V278.059C134.059 299.4410000000001 108.208 310.149 93.088 295.03L7.029 208.971C-2.344 199.598 -2.344 184.402 7.029 175.03L93.088 88.971C108.207 73.852 134.059 84.56 134.059 105.942V152z" />
+    <glyph glyph-name="long-arrow-alt-right"
+      unicode="&#xF30B;"
+      horiz-adv-x="448" d=" M313.941 232H12C5.373 232 0 226.627 0 220V164C0 157.373 5.373 152 12 152H313.941V105.941C313.941 84.559 339.792 73.851 354.912 88.97L440.971 175.029C450.344 184.402 450.344 199.598 440.971 208.97L354.9120000000001 295.029C339.793 310.148 313.9410000000001 299.44 313.9410000000001 278.058V232z" />
+    <glyph glyph-name="long-arrow-alt-up"
+      unicode="&#xF30C;"
+      horiz-adv-x="256" d=" M88 281.9410000000001V-20C88 -26.627 93.373 -32 100 -32H156C162.627 -32 168 -26.627 168 -20V281.9410000000001H214.059C235.441 281.9410000000001 246.149 307.7920000000001 231.03 322.9120000000001L144.971 408.971C135.598 418.344 120.402 418.344 111.03 408.971L24.971 322.9120000000001C9.852 307.793 20.56 281.9410000000001 41.942 281.9410000000001H88z" />
+    <glyph glyph-name="long-arrow-down"
+      unicode="&#xF175;"
+      horiz-adv-x="320" d=" M261.573 161.456L196 95.882V392C196 405.255 185.255 416 172 416H148C134.745 416 124 405.255 124 392V95.882L58.427 161.456C49.054 170.829 33.858 170.829 24.486 161.456L7.515 144.485C-1.858 135.112 -1.858 119.916 7.515 110.544L143.03 -24.97C152.403 -34.343 167.598 -34.343 176.971 -24.97L312.486 110.544C321.859 119.917 321.859 135.113 312.486 144.485L295.515 161.456C286.142 170.829 270.946 170.829 261.573 161.456z" />
+    <glyph glyph-name="long-arrow-left"
+      unicode="&#xF177;"
+      horiz-adv-x="448" d=" M193.456 90.427L127.882 156H424C437.255 156 448 166.745 448 180V204C448 217.255 437.255 228 424 228H127.882L193.456 293.573C202.829 302.946 202.829 318.142 193.456 327.514L176.485 344.485C167.112 353.858 151.916 353.858 142.544 344.485L7.029 208.971C-2.344 199.598 -2.344 184.403 7.029 175.03L142.544 39.515C151.917 30.142 167.113 30.142 176.485 39.515L193.456 56.486C202.829 65.858 202.829 81.054 193.456 90.427z" />
+    <glyph glyph-name="long-arrow-right"
+      unicode="&#xF178;"
+      horiz-adv-x="448" d=" M254.544 293.573L320.118 228H24C10.745 228 0 217.255 0 204V180C0 166.745 10.745 156 24 156H320.118L254.544 90.427C245.171 81.054 245.171 65.858 254.544 56.486L271.515 39.515C280.888 30.142 296.084 30.142 305.456 39.515L440.9700000000001 175.03C450.343 184.403 450.343 199.599 440.9700000000001 208.971L305.456 344.485C296.0830000000001 353.858 280.887 353.858 271.515 344.485L254.544 327.514C245.171 318.142 245.171 302.9460000000001 254.544 293.573z" />
+    <glyph glyph-name="long-arrow-up"
+      unicode="&#xF176;"
+      horiz-adv-x="320" d=" M58.427 222.544L124 288.118V-8C124 -21.255 134.745 -32 148 -32H172C185.255 -32 196 -21.255 196 -8V288.118L261.573 222.544C270.946 213.171 286.142 213.171 295.514 222.544L312.485 239.515C321.858 248.888 321.858 264.084 312.485 273.456L176.971 408.971C167.598 418.344 152.403 418.344 143.03 408.971L7.515 273.456C-1.858 264.083 -1.858 248.887 7.515 239.515L24.486 222.544C33.858 213.171 49.054 213.171 58.427 222.544z" />
+    <glyph glyph-name="loveseat"
+      unicode="&#xF4CC;"
+      horiz-adv-x="512" d=" M160 224V160H352V224C352 259.3 380.7 288 416 288H448C448 341 405 384 352 384H160C107 384 64 341 64 288H96C131.3 288 160 259.3 160 224zM448 256H416C398.3 256 384 241.7 384 224V128H128V224C128 241.7 113.7 256 96 256H64C28.7 256 0 227.3 0 192C0 168.4 13 148 32 136.9V16C32 7.2 39.2 0 48 0H112C120.8 0 128 7.2 128 16V32H384V16C384 7.2 391.2 0 400 0H464C472.8 0 480 7.2 480 16V136.9C499 148 512 168.4 512 192C512 227.3 483.3 256 448 256z" />
+    <glyph glyph-name="low-vision"
+      unicode="&#xF2A8;"
+      horiz-adv-x="576" d=" M569.344 216.369C512.96 312.051 407.81 376 288 376C259.532 376 231.898 372.381 205.549 365.591L152.778 437.76C145.177 448.618 130.214 451.26 119.355 443.6600000000001L106.241 434.482C95.381 426.881 92.739 411.916 100.341 401.056L143.472 342.661C89.449 316.27 40.228 273.317 6.682 216.419C6.672 216.402 6.659 216.386 6.648 216.369C-2.117 201.494 -2.316 182.841 6.648 167.63C45.148 102.298 106.39 51.768 179.507 26.281L55.316 203.698A272.194 272.194 0 0 0 83.61 239.61L203.01 69.03H203.02L243.65 10.99A330.055 330.055 0 0 1 322.59 9.8199999999999L132.61 281.2199999999999A277.628 277.628 0 0 0 171.387 302.7829999999999L423.223 -53.7610000000001C430.824 -64.619 445.7870000000001 -67.2600000000001 456.646 -59.6610000000001L469.76 -50.4830000000001C480.62 -42.8820000000001 483.262 -27.9160000000001 475.66 -17.0570000000001L432.54 41.3199999999999L432.533 41.329C489.694 69.307 537.3679999999999 113.369 569.343 167.63A47.937999999999995 47.937999999999995 0 0 1 569.3439999999999 216.369zM390.026 102.06L370.9600000000001 129.29C395.6420000000001 161.857 398.6710000000001 205.643 379.7600000000001 240.9700000000001V240.9400000000001C379.7600000000001 217.29 360.5900000000001 198.12 336.9400000000001 198.12C313.1120000000001 198.12 294.1200000000001 217.469 294.1200000000001 240.9400000000001C294.1200000000001 264.5900000000001 313.2900000000001 283.76 336.9400000000001 283.76H336.9700000000001C312.2200000000001 297.009 283.4480000000001 299.403 257.4600000000001 291.4400000000001L238.392 318.677C253.758 324.694 270.488 328 288 328C363.1620000000001 328 424 267.174 424 192C424 157.496 411.167 126.025 390.026 102.06z" />
+    <glyph glyph-name="luchador"
+      unicode="&#xF455;"
+      horiz-adv-x="448" d=" M190.2 192H144C117.5 192 96 215.9 96 245.3V256H144C170.5 256 192 232.1 192 202.7V194C191.4 193.3 190.8 192.7 190.2 192zM224 128H262.7C255.9 142.8 244.2 161.4 224 181.3C203.8 161.4 192.1 142.8 185.3 128H224zM160 96C142.4 96 128 81.6 128 64S142.4 32 160 32H288C305.6 32 320 46.4 320 64S305.6 96 288 96H160zM256 202.7V194C256.6 193.3 257.2 192.7 257.8 192H304C330.5 192 352 215.9 352 245.3V256H304C277.5 256 256 232.1 256 202.7zM448 224V96C448 7.6 376.4 -64 288 -64H160C71.6 -64 0 7.6 0 96V224C0 347.7 100.3 448 224 448S448 347.7 448 224zM384 276C384 282.6 378.6 288 372 288H304C266.1 288 234.7 259.7 226.5 221.8C225.6 222.5 222.3 222.5 221.4 221.8C213.3 259.7 182 288 144 288H76C69.4 288 64 282.6 64 276V245.3C64 198.2 99.8 160 144 160H166.4C159 147.8 153.9 136.5 150.6 127.1C119.7 122.5 96 96.1 96 64C96 28.5 125.4 0 160.9 0H287C322.5 0 351.9 28.5 351.9 64C351.9 96.1 328.2 122.5 297.3 127.1C294 136.6 288.9 147.8 281.5 160H304C348.2 160 384 198.2 384 245.3V276z" />
+    <glyph glyph-name="luggage-cart"
+      unicode="&#xF59D;"
+      horiz-adv-x="640" d=" M224 128H256V352H224C206.33 352 192 337.67 192 320V160C192 142.33 206.33 128 224 128zM576 160V320C576 337.67 561.67 352 544 352H512V128H544C561.67 128 576 142.33 576 160zM624 64H128V432C128 440.84 120.84 448 112 448H16C7.16 448 0 440.84 0 432V400C0 391.16 7.16 384 16 384H64V16C64 7.16 71.16 0 80 0H162.94C161.15 -5.03 160 -10.36 160 -16C160 -42.51 181.49 -64 208 -64S256 -42.51 256 -16C256 -10.36 254.85 -5.03 253.06 0H450.94C449.15 -5.03 448 -10.36 448 -16C448 -42.51 469.49 -64 496 -64S544 -42.51 544 -16C544 -10.36 542.85 -5.03 541.06 0H624C632.84 0 640 7.16 640 16V48C640 56.84 632.84 64 624 64zM480 352V400C480 426.51 458.51 448 432 448H336C309.49 448 288 426.51 288 400V128H480V352zM432 352H336V400H432V352z" />
+    <glyph glyph-name="lungs"
+      unicode="&#xF604;"
+      horiz-adv-x="640" d=" M636.11 57.85C614.44 139.15 580.07 217 534.1 288.87C511.98 323.44 498.03 352 454.05 352C415.36 352 384 322.58 384 286.29V226.18L351.12 248.1A15.995999999999999 15.995999999999999 0 0 0 344 261.4100000000001V432C344 440.84 336.84 448 328 448H312C303.1600000000001 448 296 440.84 296 432V261.41C296 256.06 293.33 251.07 288.88 248.1L256 226.18V286.29C256 322.58 224.64 352 185.95 352C141.97 352 128.02 323.44 105.9 288.87C59.93 217 25.56 139.15 3.89 57.85C1.3 48.16 0 38.21 0 28.22C0 -33.01 62.48 -77.22 125.24 -60.4L184.74 -44.45C226.92 -33.15 256 3.02 256 44.17V131.66L170.16 74.43A7.991999999999999 7.991999999999999 0 0 0 159.07 76.65L150.19 89.96A7.991999999999999 7.991999999999999 0 0 0 152.41 101.05L320 212.77L487.59 101.05A7.993999999999999 7.993999999999999 0 0 0 489.8100000000001 89.96L480.9300000000001 76.65A7.993999999999999 7.993999999999999 0 0 0 469.8400000000001 74.43L384 131.66V44.17C384 3.02 413.08 -33.14 455.26 -44.45L514.76 -60.4C577.52 -77.22 640 -33.01 640 28.22C640 38.21 638.7 48.16 636.11 57.85z" />
+    <glyph glyph-name="mace"
+      unicode="&#xF6F8;"
+      horiz-adv-x="512" d=" M170.65 151.91L4.69 -14.06C-1.56 -20.31 -1.56 -30.44 4.69 -36.69L27.32 -59.32C33.57 -65.5699999999999 43.7 -65.5699999999999 49.95 -59.32L215.92 106.65A161.122 161.122 0 0 0 170.65 151.91zM500.98 253.0300000000001L425.99 276.8000000000001C413.39 318.5300000000001 380.4 350.99 338.32 362.7500000000001L313.05 437.2C308.13 451.7 295.5900000000001 451.57 290.9700000000001 436.98L267.2000000000001 361.98C225.4700000000001 349.38 193.0100000000001 316.39 181.2400000000001 274.31L106.8000000000001 249.05C92.3000000000001 244.13 92.4300000000001 231.59 107.0200000000001 226.9700000000001L182.0100000000001 203.2C194.6100000000001 161.47 227.6000000000001 129.01 269.6800000000001 117.24L294.9400000000001 42.8C299.8600000000001 28.3 312.4000000000001 28.43 317.0200000000001 43.02L340.79 118.0100000000001C382.5200000000001 130.6100000000001 414.98 163.6 426.74 205.6800000000001L501.18 230.9400000000001C515.7 235.8700000000001 515.57 248.4100000000001 500.98 253.0300000000001zM304 208C286.33 208 272 222.33 272 240S286.33 272 304 272S336 257.67 336 240S321.67 208 304 208z" />
+    <glyph glyph-name="magic"
+      unicode="&#xF0D0;"
+      horiz-adv-x="512" d=" M224 352L240 384L272 400L240 416L224 448L208 416L176 400L208 384L224 352zM80 288L106.66 341.33L160 368L106.66 394.67L80 448L53.34 394.67L0 368L53.34 341.33L80 288zM432 160L405.34 106.67L352 80L405.3400000000001 53.33L432 0L458.66 53.33L512 80L458.66 106.67L432 160zM502.62 353.77L417.77 438.62C411.53 444.88 403.34 448 395.15 448C386.96 448 378.77 444.88 372.52 438.62L9.38 75.48C-3.12 62.98 -3.12 42.72 9.38 30.23L94.23 -54.62C100.48 -60.87 108.67 -63.99 116.85 -63.99C125.04 -63.99 133.23 -60.87 139.48 -54.62L502.62 308.53C515.12 321.01 515.12 341.28 502.62 353.77zM359.45 244.54L308.54 295.45L395.14 382.05L446.05 331.14L359.45 244.54z" />
+    <glyph glyph-name="magnet"
+      unicode="&#xF076;"
+      horiz-adv-x="512.1" d=" M164.1 288H12C5.4 288 0 293.4 0 300V380C0 399.9 16.1 416 36 416H140C159.9 416 176 399.9 176 380V300C176.1 293.4 170.7 288 164.1 288zM512.1 300V380.1C512.1 400 496 416.1 476.1 416.1H372.1C352.2000000000001 416.1 336.1 400 336.1 380.1V300.1C336.1 293.5 341.5 288.1 348.1 288.1H500.1C506.7 288 512.1 293.4 512.1 300zM348.1 256C341.5 256 336.1 250.6 336.1 244V192C336.1 63.9 176.1 64.1 176.1 192V244C176.1 250.6 170.7 256 164.1 256H12.1C5.4 256 0.1 250.6 0.1 243.9C0.2 222.5 0.7 203.6 0.1 190.6C0.1 40 136.3 -56 256.9 -56C377.5 -56 512 40 512 190.7C511.4 203.5 511.8 223.7 512 243.9C512 250.6 506.7 256 500 256H348.1z" />
+    <glyph glyph-name="mail-bulk"
+      unicode="&#xF674;"
+      horiz-adv-x="576" d=" M160 0C134.4 0 108.8 22.4 96 32C32 76.8 12.8 92.8 0 102.4V-32C0 -49.67 14.33 -64 32 -64H288C305.67 -64 320 -49.67 320 -32V102.4C307.2 92.8 288 76.8 224 32C211.2 22.4 185.6 0 160 0zM288 192H32C14.33 192 0 177.67 0 160V144C25.6 124.8 22.4 124.8 115.2 57.6C124.8 51.2 144 32 160 32S195.2 51.2 204.8 54.4C297.6 121.6 294.4 121.6 320 140.8V160C320 177.67 305.67 192 288 192zM544 288H224C206.33 288 192 273.67 192 256V224H288C321.21 224 348.5900000000001 198.58 351.71 166.18L352 166.4V32H544C561.67 32 576 46.33 576 64V256C576 273.67 561.67 288 544 288zM512 160H448V224H512V160zM160 256C160 291.29 188.71 320 224 320H448V416C448 433.67 433.67 448 416 448H96C78.33 448 64 433.67 64 416V224H160V256z" />
+    <glyph glyph-name="male"
+      unicode="&#xF183;"
+      horiz-adv-x="192" d=" M96 448C131.346 448 160 419.346 160 384S131.346 320 96 320S32 348.654 32 384S60.654 448 96 448M144 304H132.64C109.929 293.557 83.05 293.106 59.36 304H48C21.49 304 0 282.51 0 256V120C0 106.745 10.745 96 24 96H40V-40C40 -53.255 50.745 -64 64 -64H128C141.255 -64 152 -53.255 152 -40V96H168C181.255 96 192 106.745 192 120V256C192 282.51 170.51 304 144 304z" />
+    <glyph glyph-name="mandolin"
+      unicode="&#xF6F9;"
+      horiz-adv-x="512" d=" M502.63 393.37L457.37 438.63C444.87 451.13 424.61 451.13 412.11 438.63L344.23 370.75C331.73 358.25 331.73 337.99 344.23 325.49L270.7000000000001 251.96C202.71 263.3400000000001 136.71 249.56 85.9200000000001 212.7A509.687 509.687 0 0 1 24.87 160.6C-22.24 113.49 2.56 48.87 57.7100000000001 -6.29C112.8600000000001 -61.4399999999999 177.4900000000001 -86.24 224.6 -39.13A509.552 509.552 0 0 1 276.7000000000001 21.92C313.5600000000001 72.71 327.3400000000001 138.72 315.9600000000001 206.7L389.49 280.23C401.99 267.73 422.25 267.73 434.75 280.23L502.63 348.11C515.12 360.61 515.12 380.88 502.63 393.37zM176 64C149.49 64 128 85.49 128 112S149.49 160 176 160S224 138.51 224 112S202.51 64 176 64z" />
+    <glyph glyph-name="map-marked-alt"
+      unicode="&#xF5A0;"
+      horiz-adv-x="576" d=" M288 448C218.41 448 162 391.5900000000001 162 322C162 265.74 244.35 163.2 275.9 125.98C282.29 118.44 293.72 118.44 300.1 125.98C331.65 163.2 414 265.74 414 322C414 391.5900000000001 357.59 448 288 448zM288 280C264.8 280 246 298.8 246 322S264.8 364 288 364S330 345.2 330 322S311.2 280 288 280zM20.12 232.05A32.006 32.006 0 0 1 0 202.34V-47.98C0 -59.3 11.43 -67.04 21.94 -62.84L160 0V233.08C151.16 249.06 143.93 264.62 138.75 279.5L20.12 232.05zM288 88.33C273.93 88.33 260.62 94.51 251.49 105.29C231.83 128.49 210.92 154.91 192 182.01V0.01L384 -63.99V182C365.08 154.91 344.18 128.48 324.51 105.28C315.38 94.51 302.07 88.33 288 88.33zM554.06 286.84L416 224V-64L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 283.3 564.57 291.04 554.06 286.84z" />
+    <glyph glyph-name="map-marked"
+      unicode="&#xF59F;"
+      horiz-adv-x="576" d=" M288 448C218.41 448 162 391.5900000000001 162 322C162 265.74 244.35 163.2 275.9 125.98C282.29 118.44 293.72 118.44 300.1 125.98C331.65 163.2 414 265.74 414 322C414 391.5900000000001 357.59 448 288 448zM20.12 232.05A32.006 32.006 0 0 1 0 202.34V-47.98C0 -59.3 11.43 -67.04 21.94 -62.84L160 0V233.08C151.16 249.06 143.93 264.62 138.75 279.5L20.12 232.05zM288 88.33C273.93 88.33 260.62 94.51 251.49 105.29C231.83 128.49 210.92 154.91 192 182.01V0.01L384 -63.99V182C365.08 154.91 344.18 128.48 324.51 105.28C315.38 94.51 302.07 88.33 288 88.33zM554.06 286.84L416 224V-64L555.88 -8.05A31.996 31.996 0 0 1 576 21.66V271.98C576 283.3 564.57 291.04 554.06 286.84z" />
+    <glyph glyph-name="map-marker-alt-slash"
+      unicode="&#xF605;"
+      horiz-adv-x="640" d=" M300.8 -54.4C310.4000000000001 -67.1999999999999 329.6 -67.1999999999999 339.2 -54.4C357.8 -27.71 374.43 -4.08 389.34 17.0700000000001L131.47 216.38C142.18 163.83 181.62 116.6 300.8 -54.4zM633.8199999999999 -10.1L462.41 122.38C502.09 182.48 512 209.7 512 256C512 361.6 425.6 448 320 448C251.8 448 191.76 411.87 157.7 357.88L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.53 -60.63C601.51 -66.0599999999999 611.56 -64.7999999999999 616.99 -57.82L636.63 -32.55C642.05 -25.58 640.8 -15.53 633.82 -10.1zM370.12 193.71L247 288.87C259.34 316.8300000000001 287.01 336 320 336C364.8 336 400 300.8 400 256C400 230.43 388.29 208.26 370.12 193.71z" />
+    <glyph glyph-name="map-marker-alt"
+      unicode="&#xF3C5;"
+      horiz-adv-x="384" d=" M172.268 -53.67C26.97 156.969 0 178.587 0 256C0 362.039 85.961 448 192 448S384 362.039 384 256C384 178.587 357.03 156.969 211.732 -53.67C202.197 -67.444 181.802 -67.443 172.268 -53.67zM192 176C236.183 176 272 211.817 272 256S236.183 336 192 336S112 300.183 112 256S147.817 176 192 176z" />
+    <glyph glyph-name="map-marker-check"
+      unicode="&#xF606;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM306.08 284.17L175.04 154.18C170.73 149.9 163.76 149.93 159.49 154.24L83.77 230.57C79.49 234.88 79.52 241.85 83.83 246.13L109.86 271.95C114.17 276.23 121.14 276.2 125.42 271.89L167.57 229.4L264.77 325.82C269.08 330.1 276.05 330.07 280.32 325.76L306.14 299.73C310.42 295.41 310.39 288.45 306.08 284.17z" />
+    <glyph glyph-name="map-marker-edit"
+      unicode="&#xF607;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM148.83 164.85L106 160.05C100.22 159.43 95.43 164.32 96.05 170L100.85 212.83L186.39 298.37L234.37 250.39L148.83 164.85zM282.74 298.75L254.48 270.49L206.5 318.4700000000001L234.76 346.73C241.7800000000001 353.75 253.1500000000001 353.75 260.17 346.73L282.74 324.1600000000001C289.76 317.1500000000001 289.76 305.7700000000001 282.74 298.75z" />
+    <glyph glyph-name="map-marker-exclamation"
+      unicode="&#xF608;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 112C174.33 112 160 126.33 160 144S174.33 176 192 176S224 161.67 224 144S209.67 112 192 112zM217.44 222.41C216.62 214.23 209.74 208 201.52 208H182.48C174.26 208 167.38 214.23 166.56 222.41L153.76 350.41C152.82 359.83 160.21 368 169.68 368H214.32C223.79 368 231.18 359.83 230.24 350.41L217.44 222.41z" />
+    <glyph glyph-name="map-marker-minus"
+      unicode="&#xF609;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM304 248C304 239.16 296.84 232 288 232H96C87.16 232 80 239.16 80 248V264C80 272.8400000000001 87.16 280 96 280H288C296.84 280 304 272.8400000000001 304 264V248z" />
+    <glyph glyph-name="map-marker-plus"
+      unicode="&#xF60A;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM304 248C304 239.16 296.84 232 288 232H216V160C216 151.16 208.84 144 200 144H184C175.16 144 168 151.16 168 160V232H96C87.16 232 80 239.16 80 248V264C80 272.8400000000001 87.16 280 96 280H168V352C168 360.8400000000001 175.16 368 184 368H200C208.84 368 216 360.8400000000001 216 352V280H288C296.84 280 304 272.8400000000001 304 264V248z" />
+    <glyph glyph-name="map-marker-question"
+      unicode="&#xF60B;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM192 96C174.33 96 160 110.33 160 128S174.33 160 192 160S224 145.67 224 128S209.67 96 192 96zM218.67 209.27V207.84C218.67 199.09 211.58 192 202.83 192H186.51C177.76 192 170.67 199.09 170.67 207.84V224C170.67 233.1 175.86 241.43 184 245.5C214.61 260.81 234.67 272.04 234.67 288C234.67 307.39 220.65 328 194.67 328C176.74 328 161.54 316.16 156.47 299.88C154.32 292.98 148.36 288 141.14 288H124.3C114.06 288 106.58 297.56 108.86 307.55C117.77 346.7000000000001 152.86 376 194.67 376C249.75 376 282.67 331.25 282.67 288C282.67 247.05 249.92 225.53 218.67 209.27z" />
+    <glyph glyph-name="map-marker-slash"
+      unicode="&#xF60C;"
+      horiz-adv-x="640" d=" M633.82 -10.1L462.41 122.38C502.09 182.48 512 209.7 512 256C512 361.6 425.6 448 320 448C251.8 448 191.76 411.87 157.7 357.88L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.53 -60.63C601.51 -66.0599999999999 611.56 -64.7999999999999 616.99 -57.82L636.63 -32.55C642.05 -25.58 640.8 -15.53 633.82 -10.1zM300.8 -54.4C310.4000000000001 -67.1999999999999 329.6 -67.1999999999999 339.2 -54.4C357.8 -27.71 374.43 -4.08 389.34 17.0700000000001L131.47 216.38C142.18 163.83 181.62 116.6 300.8 -54.4z" />
+    <glyph glyph-name="map-marker-smile"
+      unicode="&#xF60D;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM256 330.8400000000001C270.82 330.8400000000001 282.84 318.82 282.84 304S270.82 277.16 256 277.16S229.16 289.18 229.16 304S241.18 330.8400000000001 256 330.8400000000001zM128 330.8400000000001C142.82 330.8400000000001 154.84 318.82 154.84 304S142.82 277.16 128 277.16S101.16 289.18 101.16 304S113.18 330.8400000000001 128 330.8400000000001zM292.17 189.87C267.3 160.72 230.78 144 192 144C153.25 144 116.73 160.72 91.84 189.86C86.09 196.58 86.89 206.67 93.61 212.41C100.3 218.14 110.42 217.38 116.16 210.64C134.98 188.62 162.62 176 192 176C221.41 176 249.03 188.63 267.83 210.66C273.61 217.39 283.69 218.19 290.39 212.44C297.11 206.7 297.91 196.59 292.17 189.87z" />
+    <glyph glyph-name="map-marker-times"
+      unicode="&#xF60E;"
+      horiz-adv-x="384" d=" M192 448C86.4 448 0 361.6 0 256C0 179.2 25.6 156.8 172.8 -54.4C182.4 -67.1999999999999 201.6 -67.1999999999999 211.2 -54.4C358.4 156.8 384 179.2 384 256C384 361.6 297.6 448 192 448zM276.85 205.09C283.1 198.84 283.1 188.71 276.85 182.46L265.54 171.15C259.29 164.9 249.1600000000001 164.9 242.9100000000001 171.15L192 222.06L141.09 171.15C134.84 164.9 124.71 164.9 118.46 171.15L107.15 182.46C100.9 188.71 100.9 198.84 107.15 205.09L158.06 256L107.15 306.91C100.9 313.16 100.9 323.29 107.15 329.54L118.46 340.85C124.71 347.1 134.84 347.1 141.09 340.85L192 289.94L242.91 340.85C249.16 347.1 259.29 347.1 265.54 340.85L276.85 329.54C283.1 323.29 283.1 313.16 276.85 306.91L225.94 256L276.85 205.09z" />
+    <glyph glyph-name="map-marker"
+      unicode="&#xF041;"
+      horiz-adv-x="384" d=" M172.268 -53.67C26.97 156.969 0 178.587 0 256C0 362.039 85.961 448 192 448S384 362.039 384 256C384 178.587 357.03 156.969 211.732 -53.67C202.197 -67.444 181.802 -67.443 172.268 -53.67z" />
+    <glyph glyph-name="map-pin"
+      unicode="&#xF276;"
+      horiz-adv-x="288" d=" M112 131.06V-25.63L134.02 -58.65C138.77 -65.77 149.24 -65.77 153.99 -58.65L176 -25.63V131.06C165.61 129.14 154.94 128 144 128S122.39 129.14 112 131.06zM144 448C64.47 448 0 383.53 0 304S64.47 160 144 160S288 224.47 288 304S223.53 448 144 448zM144 372C106.5 372 76 341.5 76 304C76 297.38 70.62 292 64 292S52 297.38 52 304C52 354.73 93.28 396 144 396C150.62 396 156 390.62 156 384S150.62 372 144 372z" />
+    <glyph glyph-name="map-signs"
+      unicode="&#xF277;"
+      horiz-adv-x="512" d=" M507.31 363.31L464 406.63C458 412.63 449.86 416 441.37 416H288V432C288 440.84 280.84 448 272 448H240C231.16 448 224 440.84 224 432V416H56C42.75 416 32 405.25 32 392V312C32 298.75 42.75 288 56 288H441.37C449.86 288 457.99 291.37 464 297.37L507.31 340.68C513.56 346.94 513.56 357.06 507.31 363.31zM224 -48C224 -56.84 231.16 -64 240 -64H272C280.84 -64 288 -56.84 288 -48V64H224V-48zM456 224H288V256H224V224H70.63C62.14 224 54.01 220.63 48 214.63L4.69 171.31C-1.56 165.06 -1.56 154.93 4.69 148.68L48 105.37C54 99.37 62.14 96 70.63 96H456C469.25 96 480 106.75 480 120V200C480 213.25 469.25 224 456 224z" />
+    <glyph glyph-name="map"
+      unicode="&#xF279;"
+      horiz-adv-x="576" d=" M0 330.3400000000001V-15.98C0 -27.3 11.43 -35.04 21.94 -30.84L160 32V416L20.12 360.05A32.006 32.006 0 0 1 0 330.3400000000001zM192 32L384 -32V352L192 416V32zM554.06 414.8400000000001L416 352V-32L555.88 23.95A31.996 31.996 0 0 1 576 53.66V399.98C576 411.3 564.57 419.04 554.06 414.84z" />
+    <glyph glyph-name="marker"
+      unicode="&#xF5A1;"
+      horiz-adv-x="512" d=" M93.95 157.97A327.038 327.038 0 0 1 0.17 -37.11L0.14 -37.34C-1.56 -52.62 11.35 -65.5400000000001 26.63 -63.85A327.02000000000004 327.02000000000004 0 0 1 221.97 29.95L297.37 105.35L169.35 233.3700000000001L93.95 157.97zM485.49 421.49C450.14 456.84 392.82 456.84 357.4700000000001 421.49L335.7100000000001 399.73L299.1500000000001 436.28C283.5300000000001 451.9 258.2000000000001 451.9 242.5900000000001 436.28L138.47 332.16C132.22 325.91 132.22 315.78 138.47 309.53L161.09 286.91C167.34 280.66 177.47 280.66 183.72 286.91L270.87 374.06L290.46 354.4700000000001L191.98 256L320 127.98L485.49 293.4700000000001C520.84 328.8200000000001 520.84 386.13 485.49 421.49z" />
+    <glyph glyph-name="mars-double"
+      unicode="&#xF227;"
+      horiz-adv-x="512" d=" M340 448H261C250.3 448 245 435.1 252.5 427.5L269.4 410.6L220.7 361.9C198.5 375.9 172.2 384 144 384C64.5 384 0 319.5 0 240S64.5 96 144 96S288 160.5 288 240C288 268.2 279.9 294.5 265.9 316.7L314.6 365.4L331.5 348.5C333.8999999999999 346.1 337 345 339.8999999999999 345C346.0999999999999 345 352 349.8 352 357V436C352 442.6 346.6 448 340 448zM144 160C99.9 160 64 195.9 64 240S99.9 320 144 320S224 284.1 224 240S188.1 160 144 160zM500 288.1H421C410.3 288.1 405 275.2 412.5 267.6L429.4 250.7L380.7 202C362.5 213.4 341.7 220.9 319.2 223.3C317.1 201.5 311 180 300.8 160C301.9000000000001 160 303 160.1 304 160.1C348.1 160.1 384 124.2000000000001 384 80.1S348.1 0.1 304 0.1S224 36 224 80.1C224 81.2000000000001 224 82.3 224.1 83.3C204.1 73.1 182.6 66.9 160.8 64.9C168.4 -7.6 229.6 -64 304 -64C383.5 -64 448 0.5 448 80C448 108.2 439.9 134.5 425.9 156.7L474.6 205.4L491.4999999999999 188.5C493.8999999999999 186.1 496.8999999999999 185 499.8999999999999 185C506.0999999999999 185 511.9999999999999 189.8 511.9999999999999 197V276C511.9999999999999 282.7 506.6 288.1 499.9999999999999 288.1z" />
+    <glyph glyph-name="mars-stroke-h"
+      unicode="&#xF22B;"
+      horiz-adv-x="480" d=" M476.2 200.5L420.3 256.4C412.7 264 399.8 258.6 399.8 247.9V224H376V244C376 250.6 370.6 256 364 256H324C317.4 256 312 250.6 312 244V224H284.4C278.6 249.6 265.7 273.9 245.8 293.8C189.6 350 98.4 350 42.2 293.8C-14 237.6 -14 146.4 42.2 90.2000000000001C98.4 34.0000000000001 189.6 34.0000000000001 245.8 90.2000000000001C265.7 110.1 278.6 134.4 284.4000000000001 160.0000000000001H312V140.0000000000001C312 133.4 317.4 128.0000000000001 324 128.0000000000001H364C370.6 128.0000000000001 376 133.4 376 140.0000000000001V160.0000000000001H399.9V136.1000000000001C399.9 125.4000000000001 412.8 120.1000000000001 420.4 127.6000000000001L476.3 183.5000000000001C480.9 188.2000000000001 480.9 195.8000000000001 476.1999999999999 200.5000000000001zM200.6 135.4C169.4 104.2 118.7 104.2 87.5 135.4C56.3 166.6 56.3 217.3 87.5 248.5C118.7 279.7 169.4 279.7 200.6 248.5C231.8 217.4 231.8 166.6 200.6 135.4z" />
+    <glyph glyph-name="mars-stroke-v"
+      unicode="&#xF22A;"
+      horiz-adv-x="288" d=" M245.8 213.8C225.9 233.7 201.6 246.6 176 252.4V277.8H196C202.6 277.8 208 283.2000000000001 208 289.8V329.8C208 336.4 202.6 341.8 196 341.8H176V366.6H199.9C210.6 366.6 215.9 379.5 208.4 387.1L152.5 442.9C147.8 447.6 140.2 447.6 135.5 442.9L79.6 387C72 379.4 77.4 366.5 88.1 366.5H112V341.8H92C85.4 341.8 80 336.4 80 329.8V289.8C80 283.2000000000001 85.4 277.8 92 277.8H112V252.4C86.4 246.6 62.1 233.7 42.2 213.8C-14 157.6 -14 66.4 42.2 10.2C98.4 -45.9999999999999 189.6 -45.9999999999999 245.8 10.2C302.1 66.4 302.1 157.6 245.8 213.8000000000001zM200.6 55.4C169.4 24.2 118.7 24.2 87.5 55.4C56.3 86.6 56.3 137.3 87.5 168.5C118.7 199.7 169.4 199.7 200.6 168.5C231.8 137.4 231.8 86.6 200.6 55.4z" />
+    <glyph glyph-name="mars-stroke"
+      unicode="&#xF229;"
+      horiz-adv-x="384" d=" M372 384H293C282.3 384 277 371.1 284.5 363.5L301.4 346.6L283.9 329.1L269.8 343.2C265.1 347.9 257.5 347.9 252.8 343.2L224.5 315C219.8 310.3 219.8 302.7 224.5 298L238.6 283.9L220.6 265.9C198.4 279.9 172.1 288 143.9 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 172.2 279.9 198.5 265.9 220.7L283.9 238.7L298 224.6C302.7 219.9 310.3 219.9 315 224.6L343.3 252.9C348 257.6 348 265.2000000000001 343.3 269.9L329.2 284L346.7 301.5L363.6 284.6C371.2 277 384.1 282.4 384.1 293.1V372C384 378.6 378.6 384 372 384zM144 64C99.9 64 64 99.9 64 144S99.9 224 144 224S224 188.1 224 144S188.1 64 144 64z" />
+    <glyph glyph-name="mars"
+      unicode="&#xF222;"
+      horiz-adv-x="384" d=" M372 384H293C282.3 384 277 371.1 284.5 363.5L301.4 346.6L220.7 265.9C198.5 279.9 172.2 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0S288 64.5 288 144C288 172.2 279.9 198.5 265.9 220.7L346.6 301.4L363.5 284.5C371.1 276.9 384 282.3 384 293V372C384 378.6 378.6 384 372 384zM144 64C99.9 64 64 99.9 64 144S99.9 224 144 224S224 188.1 224 144S188.1 64 144 64z" />
+    <glyph glyph-name="mask"
+      unicode="&#xF6FA;"
+      horiz-adv-x="640" d=" M320.67 384C-121.93 384 -36.9 0 162.21 0C202.11 0 239.68 20.69 263.63 55.86L289.36 93.65C305.0200000000001 116.6400000000001 336.3300000000001 116.6400000000001 351.99 93.65L377.7200000000001 55.86C401.6600000000001 20.69 439.23 0 479.13 0C668.99 0 769.76 384 320.67 384zM184 139.64C142.94 139.64 116.24 165.3 103.92 180.69C98.69 187.22 98.69 196.78 103.92 203.32C116.24 218.72 142.93 244.37 184 244.37S251.76 218.71 264.08 203.32C269.31 196.79 269.31 187.23 264.08 180.69C251.76 165.29 225.06 139.64 184 139.64zM456 139.64C414.94 139.64 388.24 165.3 375.92 180.69C370.69 187.22 370.69 196.78 375.92 203.32C388.24 218.72 414.93 244.37 456 244.37S523.76 218.71 536.08 203.32C541.3100000000001 196.79 541.3100000000001 187.23 536.08 180.69C523.76 165.29 497.0600000000001 139.64 456.0000000000001 139.64z" />
+    <glyph glyph-name="medal"
+      unicode="&#xF5A2;"
+      horiz-adv-x="512" d=" M223.75 317.25L154.62 432.46A31.997 31.997 0 0 1 127.18 448H16.03C3.08 448 -4.5 433.43 2.92 422.82L114.19 263.86C143.91 291.63 181.71 310.69 223.75 317.25zM495.97 448H384.82C373.58 448 363.16 442.1 357.38 432.46L288.25 317.25C330.29 310.69 368.0900000000001 291.63 397.81 263.87L509.08 422.82C516.5 433.43 508.92 448 495.97 448zM256 288C158.8 288 80 209.2 80 112S158.8 -64 256 -64S432 14.8 432 112S353.2 288 256 288zM348.52 130.74L310.59 93.78L319.56 41.5600000000001C321.1600000000001 32.2 311.3 25.0500000000001 302.9100000000001 29.4700000000001L256 54.12L209.1 29.47C200.7 25.02 190.85 32.21 192.45 41.56L201.42 93.78L163.49 130.74C156.67 137.38 160.44 148.97 169.84 150.3299999999999L222.27 157.9699999999999L245.7 205.4899999999999C247.81 209.7699999999999 251.89 211.8799999999999 255.98 211.8799999999999C260.09 211.8799999999999 264.2 209.7399999999999 266.31 205.4899999999999L289.74 157.9699999999999L342.17 150.3299999999999C351.57 148.9699999999999 355.3400000000001 137.38 348.5200000000001 130.74z" />
+    <glyph glyph-name="medkit"
+      unicode="&#xF0FA;"
+      horiz-adv-x="512" d=" M96 -32H416V320H384V368C384 394.51 362.51 416 336 416H176C149.49 416 128 394.51 128 368V320H96V-32zM192 352H320V320H192V352zM512 272V16C512 -10.51 490.51 -32 464 -32H448V320H464C490.51 320 512 298.51 512 272zM64 -32H48C21.49 -32 0 -10.51 0 16V272C0 298.51 21.49 320 48 320H64V-32zM352 176V144C352 135.163 344.837 128 336 128H288V80C288 71.163 280.837 64 272 64H240C231.163 64 224 71.163 224 80V128H176C167.163 128 160 135.163 160 144V176C160 184.837 167.163 192 176 192H224V240C224 248.837 231.163 256 240 256H272C280.837 256 288 248.837 288 240V192H336C344.837 192 352 184.837 352 176z" />
+    <glyph glyph-name="megaphone"
+      unicode="&#xF675;"
+      horiz-adv-x="576" d=" M32 272C14.33 272 0 257.67 0 240V144C0 126.33 14.33 112 32 112C43.38 112 52.9 118.28 58.57 127.22L165.56 94.92C162.21 85.16 160 74.88 160 64C160 11.06 203.06 -32 256 -32C300.49 -32 337.66 -1.43 348.5 39.7L480 0V384L58.57 256.78C52.9 265.7200000000001 43.38 272 32 272zM211.29 81.12L302.76 53.51C297.95 32.08 278.85 16 256 16C229.53 16 208 37.53 208 64C208 70.05 209.24 75.79 211.29 81.12zM560 416H528C519.16 416 512 408.8400000000001 512 400V-16C512 -24.84 519.16 -32 528 -32H560C568.84 -32 576 -24.84 576 -16V400C576 408.8400000000001 568.84 416 560 416z" />
+    <glyph glyph-name="meh-blank"
+      unicode="&#xF5A4;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM168 208C150.3 208 136 222.3 136 240S150.3 272 168 272S200 257.7 200 240S185.7 208 168 208zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208z" />
+    <glyph glyph-name="meh-rolling-eyes"
+      unicode="&#xF5A5;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM88 224C88 248.3 101.7 269.2 121.6 280C120.9 277.4 120 274.8 120 272C120 254.3 134.3 240 152 240S184 254.3 184 272C184 274.8 183.1 277.4 182.4 280C202.3 269.2 216 248.3 216 224C216 188.7 187.3 160 152 160S88 188.7 88 224zM312 48H184C162.8 48 162.8 80 184 80H312C333.2 80 333.2 48 312 48zM344 160C308.7 160 280 188.7 280 224C280 248.3 293.7 269.2 313.6 280C312.9000000000001 277.4 312 274.8 312 272C312 254.3 326.3 240 344 240S376 254.3 376 272C376 274.8 375.1 277.4 374.4 280C394.3 269.2 408 248.3 408 224C408 188.7 379.3 160 344 160z" />
+    <glyph glyph-name="meh"
+      unicode="&#xF11A;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM168 272C185.7 272 200 257.7 200 240S185.7 208 168 208S136 222.3 136 240S150.3 272 168 272zM344 80H152C130.8 80 130.8 112 152 112H344C365.2 112 365.2 80 344 80zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208z" />
+    <glyph glyph-name="memory"
+      unicode="&#xF538;"
+      horiz-adv-x="640" d=" M640 317.06V352C640 369.67 625.67 384 608 384H32C14.33 384 0 369.67 0 352V317.06C18.6 310.45 32 292.87 32 272S18.6 233.55 0 226.94V128H640V226.94C621.4 233.55 608 251.13 608 272S621.4 310.45 640 317.06zM224 192H160V320H224V192zM352 192H288V320H352V192zM480 192H416V320H480V192zM0 0H64V26.67C64 35.51 71.16 42.67 80 42.67S96 35.51 96 26.67V0H224V26.67C224 35.51 231.16 42.67 240 42.67S256 35.51 256 26.67V0H384V26.67C384 35.51 391.1600000000001 42.67 400 42.67S416 35.51 416 26.67V0H544V26.67C544 35.51 551.16 42.67 560 42.67S576 35.51 576 26.67V0H640V96H0V0z" />
+    <glyph glyph-name="menorah"
+      unicode="&#xF676;"
+      horiz-adv-x="640" d=" M144 320H112C103.16 320 96 312.8400000000001 96 304V160H160V304C160 312.8400000000001 152.84 320 144 320zM240 320H208C199.16 320 192 312.8400000000001 192 304V160H256V304C256 312.8400000000001 248.84 320 240 320zM432 320H400C391.1600000000001 320 384 312.8400000000001 384 304V160H448V304C448 312.8400000000001 440.84 320 432 320zM528 320H496C487.16 320 480 312.8400000000001 480 304V160H544V304C544 312.8400000000001 536.84 320 528 320zM608 352C625.67 352 640 366.33 640 384S608 448 608 448S576 401.67 576 384S590.33 352 608 352zM512 352C529.67 352 544 366.33 544 384S512 448 512 448S480 401.67 480 384S494.33 352 512 352zM416 352C433.67 352 448 366.33 448 384S416 448 416 448S384 401.67 384 384S398.33 352 416 352zM320 352C337.67 352 352 366.33 352 384S320 448 320 448S288 401.67 288 384S302.33 352 320 352zM224 352C241.67 352 256 366.33 256 384S224 448 224 448S192 401.67 192 384S206.33 352 224 352zM128 352C145.67 352 160 366.33 160 384S128 448 128 448S96 401.67 96 384S110.33 352 128 352zM32 352C49.67 352 64 366.33 64 384S32 448 32 448S0 401.67 0 384S14.33 352 32 352zM576 160C576 142.33 561.67 128 544 128H352V304C352 312.8400000000001 344.84 320 336 320H304C295.1600000000001 320 288 312.8400000000001 288 304V128H96C78.33 128 64 142.33 64 160V304C64 312.8400000000001 56.84 320 48 320H16C7.16 320 0 312.8400000000001 0 304V160C0 106.98 42.98 64 96 64H288V0H112C103.16 0 96 -7.16 96 -16V-48C96 -56.84 103.16 -64 112 -64H528C536.84 -64 544 -56.84 544 -48V-16C544 -7.16 536.84 0 528 0H352V64H544C597.02 64 640 106.98 640 160V304C640 312.8400000000001 632.84 320 624 320H592C583.16 320 576 312.8400000000001 576 304V160z" />
+    <glyph glyph-name="mercury"
+      unicode="&#xF223;"
+      horiz-adv-x="288" d=" M288 240C288 284.2 268.1 323.7 236.8 350.1C239.3 351.9 241.7 353.9 244 355.9C268.7 377.1 283.8 404.7 287.2 434.7C288.1 441.8 282.5 448 275.3 448H234.8C229 448 224.1 443.9 223 438.2C220.6 425.7 213.4 413.9 202.3 404.4C187 391.2 166.3 384 144 384S101 391.2 85.6 404.4C74.5 413.9 67.4 425.7 64.9 438.2C63.8 443.9 58.9 448 53.2 448H12.7C5.5 448 -0.1 441.8 0.8 434.7C4.2 404.6 19.2 377 44 355.8C46.3 353.8 48.7 351.9 51.2 350C19.9 323.7 0 284.2 0 240C0 171.5 47.9 114.1 112 99.6V48H76C69.4 48 64 42.6 64 36V-4C64 -10.6 69.4 -16 76 -16H112V-52C112 -58.6 117.4 -64 124 -64H164C170.6 -64 176 -58.6 176 -52V-16H212C218.6 -16 224 -10.6 224 -4V36C224 42.6 218.6 48 212 48H176V99.6C240.1 114.1 288 171.5 288 240.0000000000001zM64 240C64 284.1 99.9 320 144 320S224 284.1 224 240S188.1 160 144 160S64 195.9 64 240z" />
+    <glyph glyph-name="meteor"
+      unicode="&#xF753;"
+      horiz-adv-x="512" d=" M491.2 447.3C452.5 435.7 379.4 413 303.5 386C301.4 393 299.5 399.5 297.9 404.6C294.9 414.3 284 418.8 275 414.1C232.6 392 122.2 331.5 60.6 271.6C59.5 270.6 58.1 269.6 57.1 268.6C19 230.6 0 180.7 0 130.8C0 81 19 31.1 57 -7C95 -45 144.9 -64.1 194.8 -64C244.7 -64 294.6 -45 332.7000000000001 -6.9C333.7000000000001 -5.9 334.7000000000001 -4.5 335.7000000000001 -3.4C395.5000000000001 58.2000000000001 456.1 168.7000000000001 478.2 211C482.9 220 478.4 230.9000000000001 468.7 233.9000000000001C463.5000000000001 235.5000000000001 457.1 237.4000000000001 450.1 239.5000000000001C477.1 315.5 499.8 388.5 511.4 427.2000000000001C515 439.6 503.6 451 491.2 447.3zM192 0C121.3 0 64 57.3 64 128S121.3 256 192 256S320 198.7 320 128S262.7 0 192 0zM160 192C142.3 192 128 177.7 128 160S142.3 128 160 128S192 142.3 192 160S177.7 192 160 192zM208 96C199.2 96 192 88.8 192 80S199.2 64 208 64S224 71.2 224 80S216.8 96 208 96z" />
+    <glyph glyph-name="microchip"
+      unicode="&#xF2DB;"
+      horiz-adv-x="512" d=" M416 400V-16C416 -42.51 394.51 -64 368 -64H144C117.49 -64 96 -42.51 96 -16V400C96 426.51 117.49 448 144 448H368C394.51 448 416 426.51 416 400zM512 342V330A6 6 0 0 0 506 324H488V318A6 6 0 0 0 482 312H440V360H482A6 6 0 0 0 488 354V348H506A6 6 0 0 0 512 342zM512 246V234A6 6 0 0 0 506 228H488V222A6 6 0 0 0 482 216H440V264H482A6 6 0 0 0 488 258V252H506A6 6 0 0 0 512 246zM512 150V138A6 6 0 0 0 506 132H488V126A6 6 0 0 0 482 120H440V168H482A6 6 0 0 0 488 162V156H506A6 6 0 0 0 512 150zM512 54V42A6 6 0 0 0 506 36H488V30A6 6 0 0 0 482 24H440V72H482A6 6 0 0 0 488 66V60H506A6 6 0 0 0 512 54zM30 72H72V24H30A6 6 0 0 0 24 30V36H6A6 6 0 0 0 0 42V54A6 6 0 0 0 6 60H24V66A6 6 0 0 0 30 72zM30 168H72V120H30A6 6 0 0 0 24 126V132H6A6 6 0 0 0 0 138V150A6 6 0 0 0 6 156H24V162A6 6 0 0 0 30 168zM30 264H72V216H30A6 6 0 0 0 24 222V228H6A6 6 0 0 0 0 234V246A6 6 0 0 0 6 252H24V258A6 6 0 0 0 30 264zM30 360H72V312H30A6 6 0 0 0 24 318V324H6A6 6 0 0 0 0 330V342A6 6 0 0 0 6 348H24V354A6 6 0 0 0 30 360z" />
+    <glyph glyph-name="microphone-alt-slash"
+      unicode="&#xF539;"
+      horiz-adv-x="640" d=" M633.82 -10.1L476.26 111.67C488.74 135.79 496 163.02 496 192V240C496 248.84 488.84 256 480 256H464C455.16 256 448 248.84 448 240V192C448 174.08 444.04 157.2 437.28 141.8L410.73 162.32C413.83 171.72 416.01 181.54 416.01 191.99H372.3399999999999L330.94 223.99H416V255.99H330.67C324.7800000000001 255.99 320 259.5700000000001 320 263.99V279.99C320 284.41 324.78 287.99 330.67 287.99H416V319.99H330.67C324.7800000000001 319.99 320 323.57 320 327.99V343.99C320 348.4100000000001 324.78 351.99 330.67 351.99H416C416 405.01 373.02 447.99 320 447.99S224 405.01 224 351.99V306.63L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM400 -16H344V17.78C355.71 19.4 367.1 22.0599999999999 377.96 25.86L327.56 64.8199999999999C320.85 64.42 314.15 63.9499999999999 307.21 64.62C251.36 70.0699999999999 208.47 113.25 196.03 166.4699999999999L144 206.69V199.84C144 110.2 207.97 30.29 296 18.15V-16H240C231.16 -16 224 -23.16 224 -32V-48C224 -56.84 231.16 -64 240 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16z" />
+    <glyph glyph-name="microphone-alt"
+      unicode="&#xF3C9;"
+      horiz-adv-x="352" d=" M336 256H320C311.1600000000001 256 304 248.84 304 240V192C304 117.2 239.51 57.18 163.21 64.62C96.71 71.11 48 130.89 48 197.7V240C48 248.84 40.84 256 32 256H16C7.16 256 0 248.84 0 240V199.84C0 110.2 63.97 30.29 152 18.15V-16H96C87.16 -16 80 -23.16 80 -32V-48C80 -56.84 87.16 -64 96 -64H256C264.84 -64 272 -56.84 272 -48V-32C272 -23.16 264.84 -16 256 -16H200V17.77C285.71 29.53 352 103.1 352 192V240C352 248.84 344.84 256 336 256zM176 96C229.02 96 272 138.98 272 192H186.67C180.78 192 176 195.58 176 200V216C176 220.42 180.78 224 186.67 224H272V256H186.67C180.78 256 176 259.5800000000001 176 264V280C176 284.42 180.78 288 186.67 288H272V320H186.67C180.78 320 176 323.58 176 328V344C176 348.42 180.78 352 186.67 352H272C272 405.02 229.02 448 176 448S80 405.02 80 352V192C80 138.98 122.98 96 176 96z" />
+    <glyph glyph-name="microphone-slash"
+      unicode="&#xF131;"
+      horiz-adv-x="640" d=" M633.82 -10.1L476.02 111.86C488.61 135.87 496 162.99 496 192V240C496 248.84 488.84 256 480 256H464C455.16 256 448 248.84 448 240V192C448 174.08 444.04 157.2 437.28 141.8L410.73 162.32C413.83 171.72 416.01 181.54 416.01 191.99V352C416.01 405.02 373.0299999999999 448 320.01 448S224.0099999999999 405.02 224.0099999999999 352V306.64L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM400 -16H344V17.77C355.6600000000001 19.37 366.85 22.31 377.67 26.08L327.56 64.81C320.85 64.41 314.15 63.94 307.21 64.61C251.36 70.06 208.47 113.24 196.03 166.46L144 206.69V199.84C144 110.2 207.97 30.29 296 18.15V-16H240C231.16 -16 224 -23.16 224 -32V-48C224 -56.84 231.16 -64 240 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16z" />
+    <glyph glyph-name="microphone"
+      unicode="&#xF130;"
+      horiz-adv-x="352" d=" M176 96C229.02 96 272 138.98 272 192V352C272 405.02 229.02 448 176 448S80 405.02 80 352V192C80 138.98 122.98 96 176 96zM336 256H320C311.1600000000001 256 304 248.84 304 240V192C304 117.2 239.51 57.18 163.21 64.62C96.71 71.11 48 130.89 48 197.7V240C48 248.84 40.84 256 32 256H16C7.16 256 0 248.84 0 240V199.84C0 110.2 63.97 30.29 152 18.15V-16H96C87.16 -16 80 -23.16 80 -32V-48C80 -56.84 87.16 -64 96 -64H256C264.84 -64 272 -56.84 272 -48V-32C272 -23.16 264.84 -16 256 -16H200V17.77C285.71 29.53 352 103.1 352 192V240C352 248.84 344.84 256 336 256z" />
+    <glyph glyph-name="microscope"
+      unicode="&#xF610;"
+      horiz-adv-x="512" d=" M160 128H172V112C172 103.16 179.16 96 188 96H228C236.84 96 244 103.16 244 112V128H256C273.67 128 288 142.33 288 160V384C288 401.67 273.67 416 256 416V432C256 440.84 248.84 448 240 448H176C167.16 448 160 440.84 160 432V416C142.33 416 128 401.67 128 384V160C128 142.33 142.33 128 160 128zM464 0H462.71C493.24 34.01 512 78.8 512 128C512 233.88 425.88 320 320 320V256C390.58 256 448 198.58 448 128S390.58 0 320 0H48C21.49 0 0 -21.49 0 -48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48C512 -21.49 490.51 0 464 0zM104 32H312C316.42 32 320 35.58 320 40V56C320 60.42 316.42 64 312 64H104C99.58 64 96 60.42 96 56V40C96 35.58 99.58 32 104 32z" />
+    <glyph glyph-name="mind-share"
+      unicode="&#xF677;"
+      horiz-adv-x="640" d=" M410.42 174.89C417.43 175.92 423.7200000000001 176 429.06 176H480V191.2C480 211.24 491.98 228.46 509.04 235.97C511.85 243.71 513.88 251.8 513.88 260.51C513.88 291.85 494.55 318.63 467.14 329.85C468.1 334.1 468.7 338.48 468.7 343.01C468.7 376.15 441.73 403.01 408.47 403.01C407.76 403.01 407.11 402.83 406.4 402.8C399.76 428.73 376.35 448 348.23 448C314.9700000000001 448 288 421.14 288 388V318.56C288 294.1 304.93 273.68 327.71 267.9C330.96 267.07 333.17 264.06 333.17 260.7200000000001V245.55C333.17 240.8 328.77 237.2 324.09 238.15C310.56 240.91 298.26 246.98 287.99 255.39V64C300.64 121.14 352.04 166.33 410.42 174.89zM195.77 448C167.66 448 144.25 428.73 137.6 402.79C136.9 402.81 136.24 403 135.53 403C102.27 403 75.3 376.14 75.3 343C75.3 338.46 75.9 334.0900000000001 76.86 329.8400000000001C49.45 318.63 30.12 291.8400000000001 30.12 260.5C30.12 248.71 33.1 237.7 37.97 227.77C15.38 214.82 0 190.82 0 163C0 131.74 19.22 104.99 46.52 93.73C45.67 89.4500000000001 45.18 85.03 45.18 80.5C45.18 43.22 75.52 13 112.95 13C116.83 13 120.57 13.51 124.27 14.14C133.28 -12.6 158.36 -32 188.24 -32C225.67 -32 256.01 -1.78 256.01 35.5V255.39C245.74 246.98 233.44 240.91 219.91 238.15C215.23 237.2 210.83 240.79 210.83 245.55V260.72C210.83 264.07 213.04 267.08 216.29 267.9C239.07 273.67 256 294.1 256 318.56V388C256 421.14 229.03 448 195.77 448zM634.99 108.21L538.99 203.4C528.88 213.42 512 206.01 512 191.19V144H432.08C426.46 144.01 420.85 144.08 415.06 143.23C368 136.3300000000001 329.45 98.69 321.61 51.77C313.82 5.1 334.93 -38.6 369.9000000000001 -61.9C379.68 -68.42 391.49 -58.65 387.7200000000001 -47.52C378.73 -20.95 382.15 48 448 48H512V0.81C512 -14 528.87 -21.44 538.99 -11.4L634.99 83.79C641.67 90.42 641.67 101.59 634.99 108.21z" />
+    <glyph glyph-name="minus-circle"
+      unicode="&#xF056;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM124 152C117.4 152 112 157.4 112 164V220C112 226.6 117.4 232 124 232H388C394.6 232 400 226.6 400 220V164C400 157.4 394.6 152 388 152H124z" />
+    <glyph glyph-name="minus-hexagon"
+      unicode="&#xF307;"
+      horiz-adv-x="576" d=" M553.5 216.2C562.2 201.3 562.2 182.8 553.5 167.8L441.5 -24.2C432.9 -38.9 417.1 -48 400 -48H176C158.9 -48 143.1 -38.9 134.5 -24.2L22.5 167.8C13.8 182.7 13.8 201.2 22.5 216.2L134.5 408.2000000000001C143.1 422.9 158.9 432 176 432H400C417.1 432 432.9 422.9 441.5 408.2L553.5 216.2zM420 152C426.6 152 432 157.4 432 164V220C432 226.6 426.6 232 420 232H156C149.4 232 144 226.6 144 220V164C144 157.4 149.4 152 156 152H420z" />
+    <glyph glyph-name="minus-octagon"
+      unicode="&#xF308;"
+      horiz-adv-x="512" d=" M497.9 297.5C506.9 288.5 512 276.3 512 263.6V120.5C512 107.8 506.9 95.6 497.9 86.6L361.5 -49.9C352.5 -58.9 340.3 -64 327.6 -64H184.5C171.8 -64 159.6 -58.9 150.6 -49.9L14.1 86.5C5.1 95.5 0 107.7 0 120.4V263.5C0 276.2 5.1 288.4 14.1 297.4L150.5 433.9C159.5 442.9 171.7 448 184.4 448H327.5C340.2 448 352.4 442.9 361.4 433.9L497.9 297.5zM388 152C394.6 152 400 157.4 400 164V220C400 226.6 394.6 232 388 232H124C117.4 232 112 226.6 112 220V164C112 157.4 117.4 152 124 152H388z" />
+    <glyph glyph-name="minus-square"
+      unicode="&#xF146;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM92 152C85.4 152 80 157.4 80 164V220C80 226.6 85.4 232 92 232H356C362.6 232 368 226.6 368 220V164C368 157.4 362.6 152 356 152H92z" />
+    <glyph glyph-name="minus"
+      unicode="&#xF068;"
+      horiz-adv-x="448" d=" M416 240H32C14.33 240 0 225.67 0 208V176C0 158.33 14.33 144 32 144H416C433.67 144 448 158.33 448 176V208C448 225.67 433.67 240 416 240z" />
+    <glyph glyph-name="mistletoe"
+      unicode="&#xF7B4;"
+      horiz-adv-x="576" d=" M373.3 330.7C396.9000000000001 330.7 416 349.8 416 373.4S396.9 416 373.3 416S330.6 396.9 330.6 373.3S349.8 330.7 373.3 330.7zM542.1 186.6C516.1 212.6 452.5 225.2 411.2000000000001 230.8L312 330.9C303.6 343 298.7 357.5 298.7 373.3S303.7 403.6 312 415.7V432C312 440.8 304.8 448 296 448H280C271.2 448 264 440.8 264 432V329.9L164.9 230.8C123.6 225.2 60 212.6 34 186.6C-6 146.6 -11.4 87.2000000000001 21.9 53.9C55.2 20.6 114.7 26.0000000000001 154.6 66.0000000000001C166 77.4 174.7 96.2000000000001 181.5 117.0000000000001C188.3 104.7000000000001 201 96.1000000000001 216 96.1000000000001C238.1 96.1000000000001 256 114.0000000000001 256 136.1000000000001S238.1 176.1000000000001 216 176.1000000000001C207.8 176.1000000000001 200.6 173.0000000000001 194.3 168.8000000000001C196.1 178.8000000000001 197.7 188.4000000000001 198.8 197.0000000000001L264 262.2000000000001V189.4C278.6 176.2000000000001 288 157.3 288 136.1C288 96.4 255.7 64.1 216 64.1C209.8 64.1 203.9 65.1 198.2 66.6C194.5 56.7000000000001 192 47.1 192 38.5C192 -18.1 235 -63.9 288 -63.9S384 -18.1 384 38.5C384 76.6 340.4 133.1 312 165.8V262.1L377.2 196.9C382.8 155.6 395.4 92 421.4 66C461.4 26 520.8 20.6 554.0999999999999 53.9C587.4999999999999 87.2 582.0999999999999 146.6 542.0999999999999 186.6z" />
+    <glyph glyph-name="mitten"
+      unicode="&#xF7B5;"
+      horiz-adv-x="448" d=" M368 32H48C39.2 32 32 24.8 32 16V-48C32 -56.8 39.2 -64 48 -64H368C376.8 -64 384 -56.8 384 -48V16C384 24.8 376.8 32 368 32zM425 241.1C397.8 263.7 357.5 260.1 334.9 232.9L314 207.9L284.4 336.3C266.4 413.8 189 462.2 111.6 444.3C34.2 426.4 -14.2 349.1 3.7 271.6L51.6 64H360.6L433.1 151C455.8 178.2 452.1 218.5 425 241.1z" />
+    <glyph glyph-name="mobile-alt"
+      unicode="&#xF3CD;"
+      horiz-adv-x="320" d=" M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM160 -32C142.3 -32 128 -17.7 128 0S142.3 32 160 32S192 17.7 192 0S177.7 -32 160 -32zM272 76C272 69.4 266.6 64 260 64H60C53.4 64 48 69.4 48 76V388C48 394.6 53.4 400 60 400H260C266.6 400 272 394.6 272 388V76z" />
+    <glyph glyph-name="mobile-android-alt"
+      unicode="&#xF3CF;"
+      horiz-adv-x="320" d=" M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM208 -4C208 -10.6 202.6 -16 196 -16H124C117.4 -16 112 -10.6 112 -4V4C112 10.6 117.4 16 124 16H196C202.6 16 208 10.6 208 4V-4zM272 76C272 69.4 266.6 64 260 64H60C53.4 64 48 69.4 48 76V388C48 394.6 53.4 400 60 400H260C266.6 400 272 394.6 272 388V76z" />
+    <glyph glyph-name="mobile-android"
+      unicode="&#xF3CE;"
+      horiz-adv-x="320" d=" M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM208 -4C208 -10.6 202.6 -16 196 -16H124C117.4 -16 112 -10.6 112 -4V4C112 10.6 117.4 16 124 16H196C202.6 16 208 10.6 208 4V-4z" />
+    <glyph glyph-name="mobile"
+      unicode="&#xF10B;"
+      horiz-adv-x="320" d=" M272 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H272C298.5 -64 320 -42.5 320 -16V400C320 426.5 298.5 448 272 448zM160 -32C142.3 -32 128 -17.7 128 0S142.3 32 160 32S192 17.7 192 0S177.7 -32 160 -32z" />
+    <glyph glyph-name="money-bill-alt"
+      unicode="&#xF3D1;"
+      horiz-adv-x="640" d=" M352 160H336V248C336 252.42 332.42 256 328 256H314.42C309.68 256 305.05 254.6 301.11 251.97L285.7800000000001 241.75A7.993999999999999 7.993999999999999 0 0 1 283.56 230.66L292.44 217.35A7.993999999999999 7.993999999999999 0 0 1 303.53 215.13L304 215.44V160H288C283.58 160 280 156.42 280 152V136C280 131.58 283.58 128 288 128H352C356.42 128 360 131.58 360 136V152C360 156.42 356.42 160 352 160zM608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM48 48V112C83.35 112 112 83.35 112 48H48zM48 272V336H112C112 300.65 83.35 272 48 272zM320 80C266.98 80 224 130.15 224 192C224 253.86 266.98 304 320 304S416 253.86 416 192C416 130.13 373 80 320 80zM592 48H528C528 83.35 556.65 112 592 112V48zM592 272C556.65 272 528 300.65 528 336H592V272z" />
+    <glyph glyph-name="money-bill-wave-alt"
+      unicode="&#xF53B;"
+      horiz-adv-x="640" d=" M621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C104.36 353.66 73.49 357.58 42.6 367.38C39.13 368.48 35.65 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5900000000001 30.35 504.76 30.35C535.65 30.35 566.52 26.43 597.41 16.63C600.88 15.53 604.36 15.01 607.76 15.01C624.97 15.01 640.01 28.33 640.01 46.82V364.07C640 376.71 632.77 388.67 621.16 393.54zM320 96C275.81 96 240 138.99 240 192C240 245.02 275.82 288 320 288S400 245.02 400 192C400 138.97 364.17 96 320 96z" />
+    <glyph glyph-name="money-bill-wave"
+      unicode="&#xF53A;"
+      horiz-adv-x="640" d=" M621.16 393.54C582.37 409.81 543.55 416 504.75 416C381.58 416.01 258.42 353.66 135.25 353.66C104.36 353.66 73.49 357.58 42.6 367.38C39.13 368.48 35.65 369 32.25 369C15.04 369 0 355.68 0 337.19V19.93C0 7.3 7.23 -4.67 18.84 -9.53C57.63 -25.81 96.45 -32 135.25 -32C258.42 -32 381.5900000000001 30.35 504.76 30.35C535.65 30.35 566.52 26.43 597.41 16.63C600.88 15.53 604.36 15.01 607.76 15.01C624.97 15.01 640.01 28.33 640.01 46.82V364.07C640 376.71 632.77 388.67 621.16 393.54zM48 315.78C68.12 310.74 89.12 308.2100000000001 110.72 306.85C104.84 277.4600000000001 79 255.31 48 255.31V315.78zM48 30.78V78.56C82.37 78.56 110.18 51.29 111.71 17.16C89.18 18.97 68.12 23.47 48 30.78zM320 96C275.81 96 240 138.99 240 192C240 245.02 275.82 288 320 288S400 245.02 400 192C400 138.97 364.17 96 320 96zM592 68.22C574.48 72.61 556.29 75.0700000000001 537.68 76.66C543.55 102.74 565.18 122.54 592 125.9400000000001V68.22zM592 304.3300000000001C561.11 308.24 537.14 334.0300000000001 536.19 365.8800000000001C555.73 363.7100000000001 574.2800000000001 359.6500000000001 592 353.2200000000001V304.3300000000001z" />
+    <glyph glyph-name="money-bill"
+      unicode="&#xF0D6;"
+      horiz-adv-x="640" d=" M608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM48 48V112C83.35 112 112 83.35 112 48H48zM48 272V336H112C112 300.65 83.35 272 48 272zM320 96C275.81 96 240 138.99 240 192C240 245.02 275.82 288 320 288S400 245.02 400 192C400 138.97 364.17 96 320 96zM592 48H528C528 83.35 556.65 112 592 112V48zM592 272C556.65 272 528 300.65 528 336H592V272z" />
+    <glyph glyph-name="money-check-alt"
+      unicode="&#xF53D;"
+      horiz-adv-x="640" d=" M608 416H32C14.33 416 0 401.67 0 384V0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V384C640 401.67 625.67 416 608 416zM176 120.12V104C176 99.58 172.42 96 168 96H152C147.58 96 144 99.58 144 104V120.29C132.71 120.87 121.73 124.81 112.63 131.6400000000001C108.73 134.5700000000001 108.53 140.41 112.06 143.78L123.81 154.99C126.58 157.63 130.7 157.75 133.94 155.72C137.81 153.3 142.2 152 146.76 152H174.87C181.37 152 186.67 157.92 186.67 165.19C186.67 171.14 183.06 176.38 177.9 177.92L132.9 191.42C114.31 197 101.32 214.84 101.32 234.81C101.32 259.3300000000001 120.37 279.25 143.99 279.88V296C143.99 300.42 147.57 304 151.99 304H167.99C172.41 304 175.99 300.42 175.99 296V279.7100000000001C187.28 279.13 198.26 275.2000000000001 207.36 268.36C211.26 265.43 211.46 259.5900000000001 207.93 256.2200000000001L196.18 245.01C193.41 242.3700000000001 189.29 242.2500000000001 186.05 244.2800000000001C182.18 246.7100000000001 177.79 248.0000000000001 173.23 248.0000000000001H145.12C138.62 248.0000000000001 133.32 242.0800000000001 133.32 234.8100000000001C133.32 228.8600000000001 136.93 223.62 142.09 222.0800000000001L187.09 208.5800000000001C205.68 203 218.67 185.16 218.67 165.1900000000001C218.67 140.6600000000001 199.62 120.7500000000001 176 120.1200000000001zM416 136C416 131.58 412.42 128 408 128H296C291.58 128 288 131.58 288 136V152C288 156.42 291.58 160 296 160H408C412.42 160 416 156.42 416 152V136zM576 136C576 131.58 572.42 128 568 128H488C483.58 128 480 131.58 480 136V152C480 156.42 483.58 160 488 160H568C572.42 160 576 156.42 576 152V136zM576 232C576 227.58 572.42 224 568 224H296C291.58 224 288 227.58 288 232V248C288 252.42 291.58 256 296 256H568C572.42 256 576 252.42 576 248V232z" />
+    <glyph glyph-name="money-check"
+      unicode="&#xF53C;"
+      horiz-adv-x="640" d=" M0 0C0 -17.67 14.33 -32 32 -32H608C625.67 -32 640 -17.67 640 0V320H0V0zM448 208C448 216.84 455.16 224 464 224H560C568.84 224 576 216.84 576 208V176C576 167.16 568.84 160 560 160H464C455.16 160 448 167.16 448 176V208zM448 88C448 92.42 451.58 96 456 96H568C572.42 96 576 92.42 576 88V72C576 67.58 572.42 64 568 64H456C451.58 64 448 67.58 448 72V88zM64 184C64 188.42 67.58 192 72 192H376C380.42 192 384 188.42 384 184V168C384 163.58 380.42 160 376 160H72C67.58 160 64 163.58 64 168V184zM64 88C64 92.42 67.58 96 72 96H248C252.42 96 256 92.42 256 88V72C256 67.58 252.42 64 248 64H72C67.58 64 64 67.58 64 72V88zM624 416H16C7.16 416 0 408.8400000000001 0 400V352H640V400C640 408.8400000000001 632.84 416 624 416z" />
+    <glyph glyph-name="monitor-heart-rate"
+      unicode="&#xF611;"
+      horiz-adv-x="576" d=" M480 352H96V192H196.95C199.98 192 202.75 190.29 204.1 187.58L224 147.78L273.69 247.16C279.59 258.95 296.41 258.95 302.31 247.16L329.89 192H400C408.84 192 416 184.84 416 176S408.84 160 400 160H310.11L288 204.22L238.31 104.84C232.41 93.05 215.59 93.05 209.69 104.84L182.11 160H96V32H480V352zM528 448H48C21.49 448 0 426.51 0 400V-16C0 -42.51 21.49 -64 48 -64H528C554.51 -64 576 -42.51 576 -16V400C576 426.51 554.51 448 528 448zM512 0H64V384H512V0z" />
+    <glyph glyph-name="monkey"
+      unicode="&#xF6FB;"
+      horiz-adv-x="640" d=" M549.47 180.78C529.43 167.75 505.64 160 480 160C423.33 160 375.71 197.26 358.92 248.38C262.9100000000001 223.1 192 135.95 192 32V0C174.36 0 160 14.36 160 32V272C160 316.11 124.11 352 80 352S0 316.11 0 272V224C0 206.33 14.33 192 32 192S64 206.33 64 224V272C64 280.8300000000001 71.17 288 80 288S96 280.8300000000001 96 272V32C96 -20.94 139.06 -64 192 -64H432C440.84 -64 448 -56.84 448 -48V-32C448 -14.33 433.67 0 416 0H352L507.68 103.79L542.36 -0.23L544 -10.34V-48C544 -56.84 551.16 -64 560 -64H592C600.84 -64 608 -56.84 608 -48V-10.39C608 -0.05 606.33 10.22 603.06 20.03L549.4699999999999 180.78zM592 384H570.12C556.9 421.2 521.74 448 480 448S403.1 421.2 389.88 384H368C341.49 384 320 362.51 320 336S341.49 288 368 288H384C384 234.98 426.98 192 480 192S576 234.98 576 288H592C618.51 288 640 309.49 640 336S618.51 384 592 384zM440 328C431.1600000000001 328 424 335.16 424 344S431.1600000000001 360 440 360S456 352.8400000000001 456 344S448.84 328 440 328zM520 328C511.16 328 504 335.16 504 344S511.16 360 520 360S536 352.8400000000001 536 344S528.84 328 520 328z" />
+    <glyph glyph-name="monument"
+      unicode="&#xF5A6;"
+      horiz-adv-x="384" d=" M368 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H368C376.84 -64 384 -56.84 384 -48V-16C384 -7.16 376.84 0 368 0zM289.14 347.26A31.97 31.97 0 0 1 279.93 366.7L203.31 443.31C197.06 449.56 186.93 449.56 180.68 443.31L104.08 366.7A31.97 31.97 0 0 1 94.87 347.26L64 32H320L289.14 347.26zM240 140.8C240 134.4 233.6 128 227.2 128H156.8C150.4 128 144 134.4 144 140.8V179.2C144 185.6 150.4 192 156.8 192H227.2C233.6 192 240 185.6 240 179.2V140.8z" />
+    <glyph glyph-name="moon-cloud"
+      unicode="&#xF754;"
+      horiz-adv-x="576" d=" M256 192C244 192 232.9 188.5 223.3 182.8C219.8 223.8 185.9 256 144 256C105.2 256 72.9 228.4 65.6 191.8C65.1 191.8 64.6 192 64 192C28.7 192 0 163.3 0 128S28.7 64 64 64H256C291.3 64 320 92.7 320 128S291.3 192 256 192zM565.3 85.6C472.1999999999999 67.9 386.8 139.3 386.8 233.3C386.8 287.5 415.8 337.3 462.9 364.1C470.2 368.2000000000001 468.3 379.2000000000001 460.1 380.8C448.5 382.9000000000001 436.8 384 425.1 384C334.3 384 258.4 320.8 238.5 235.9000000000001C241 231.9000000000001 243.4 227.7000000000001 245.4 223.3000000000001C249 223.7000000000001 252.5 223.9 256.1 223.9C309 223.9 352.1 180.8 352.1 127.9C352.1 91.8 331.9 60.7000000000001 302.4 44.3000000000001C335.6 16.6000000000001 378.4 -0.0999999999999 425.1 -0.0999999999999C484.3 -0.0999999999999 538.3 26.8000000000001 574.0999999999999 71.0000000000001C579.3 77.6000000000001 573.4999999999999 87.2000000000001 565.3 85.6000000000001z" />
+    <glyph glyph-name="moon-stars"
+      unicode="&#xF755;"
+      horiz-adv-x="512" d=" M332.2 21.6C239.1 3.9 153.7 75.3 153.7 169.3C153.7 223.5 182.7 273.3 229.8 300.1C237.1 304.2000000000001 235.2 315.2000000000001 227 316.8C108.7 338.6 0 248 0 128C0 22 85.8 -64 191.8 -64C251 -64 305 -37.1 340.8 7.1C346.1 13.6 340.3 23.2 332.2 21.6zM304 352L320 384L352 400L320 416L304 448L288 416L256 400L288 384L304 352zM458.7 266.7L432 320L405.3 266.7L352 240L405.3 213.3L432 160L458.7 213.3L512 240L458.7 266.7z" />
+    <glyph glyph-name="moon"
+      unicode="&#xF186;"
+      horiz-adv-x="512" d=" M283.211 -64C362.173 -64 434.29 -28.075 482.068 30.792C489.136 39.5000000000001 481.429 52.222 470.506 50.1420000000001C346.303 26.4880000000001 232.244 121.7180000000001 232.244 247.0960000000001C232.244 319.3180000000001 270.906 385.7310000000001 333.742 421.4900000000001C343.428 427.0020000000001 340.992 441.6870000000001 329.986 443.7200000000001A258.156 258.156 0 0 1 283.211 448C141.902 448 27.211 333.4890000000001 27.211 192C27.211 50.691 141.722 -64 283.211 -64z" />
+    <glyph glyph-name="mortar-pestle"
+      unicode="&#xF5A7;"
+      horiz-adv-x="512" d=" M501.54 387.0900000000001C518.76 404.31 514.0500000000001 433.3400000000001 492.27 444.23A35.696 35.696 0 0 1 454.9 440.86L251.09 288H402.4600000000001L501.54 387.0900000000001zM496 256H16C7.16 256 0 248.84 0 240V208C0 199.16 7.16 192 16 192H32C32 111.02 82.2 41.89 153.13 13.68C140.37 -3.19 131.41 -23.12 128.18 -45.01C126.72 -54.93 134.22 -63.99 144.25 -63.99H367.75C377.78 -63.99 385.28 -54.93 383.82 -45.01C380.6 -23.12 371.64 -3.19 358.87 13.68C429.8 41.89 480 111.02 480 192H496C504.84 192 512 199.16 512 208V240C512 248.84 504.84 256 496 256z" />
+    <glyph glyph-name="mosque"
+      unicode="&#xF678;"
+      horiz-adv-x="640" d=" M0 -32C0 -49.67 14.33 -64 32 -64H96C113.67 -64 128 -49.67 128 -32V288H0V-32zM579.16 160C597.02 177.39 608 197.34 608 218.91C608 271.77 566.21 312.7 520.08 341.81C478.14 368.28 439.4500000000001 399.58 408.1200000000001 438.03L400 448L391.88 438.03C360.55 399.58 321.87 368.27 279.92 341.81C233.79 312.7 192 271.77 192 218.91C192 197.34 202.98 177.39 220.84 160H579.16zM608 128H192C174.33 128 160 113.67 160 96V-32C160 -49.67 174.33 -64 192 -64H224V0C224 17.67 238.33 32 256 32S288 17.67 288 0V-64H352V8C352 56 400 80 400 80S448 56 448 8V-64H512V0C512 17.67 526.33 32 544 32S576 17.67 576 0V-64H608C625.67 -64 640 -49.67 640 -32V96C640 113.67 625.67 128 608 128zM64 448S0 416 0 352V320H128V352C128 416 64 448 64 448z" />
+    <glyph glyph-name="motorcycle"
+      unicode="&#xF21C;"
+      horiz-adv-x="640" d=" M512.949 255.997C498.0869999999999 256.105 483.809 253.675 470.515 249.123L437.589 304H520C533.255 304 544 314.745 544 328V360C544 373.255 533.255 384 520 384H474.689A24 24 0 0 1 456.85 376.055L419.3540000000001 334.392L396.5800000000001 372.348A24 24 0 0 1 376 384H296C287.163 384 280 376.837 280 368V352C280 343.163 287.163 336 296 336H362.411L381.611 304H227.904C210.177 327.073 182.98 344 128 344H72.54C59.085 344 47.749 332.9890000000001 48.004 319.536C48.252 306.495 58.9 296 72 296H128C152.504 296 166.686 285.081 175.787 271.231L164.496 250.702C151.49 254.567 137.625 256.438 123.245 255.912C55.857 253.451 1.565 198.395 0.034 130.979C-1.603 58.924 56.317 0 128 0C187.642 0 237.744 40.794 251.953 96H336.189C349.862 96 360.778 107.421 360.165 121.077C358.0470000000001 168.197 377.687 214.742 416.35 246.103L428.8350000000001 225.295C401.189 201.641 383.7380000000001 166.415 384.004 127.116C384.4740000000001 57.56 441.207 0.664 510.762 0.006C582.391 -0.672 640.601 57.493 639.996 129.105C639.408 198.696 582.5409999999999 255.491 512.949 255.997zM128 48C83.888 48 48 83.888 48 128S83.888 208 128 208C132.242 208 136.405 207.659 140.469 207.018L98.97 131.566C90.187 115.593 101.762 96 120 96H201.297C188.927 67.775 160.737 48 128 48zM516.351 48.116C470.272 45.663 432 82.446 432 128C432 149.363 440.4340000000001 168.781 454.125 183.144L503.537 100.792C508.083 93.215 517.912 90.758 525.489 95.304L539.2090000000001 103.5360000000001C546.7860000000001 108.0820000000001 549.243 117.9110000000001 544.6970000000001 125.4880000000001L496.1410000000001 206.4150000000001A80.005 80.005 0 0 0 512 208C557.554 208 594.338 169.727 591.884 123.648C589.724 83.09 556.91 50.276 516.351 48.116z" />
+    <glyph glyph-name="mountain"
+      unicode="&#xF6FC;"
+      horiz-adv-x="640" d=" M634.92 -14.7L346.92 433.3C341.03 442.46 330.89 448 320 448S298.9700000000001 442.46 293.08 433.3L5.08 -14.7A32.001 32.001 0 0 1 3.91 -47.34A32.004 32.004 0 0 1 32 -64H608C619.71 -64 630.48 -57.61 636.09 -47.33A31.982999999999997 31.982999999999997 0 0 1 634.9200000000001 -14.7zM320 356.82L405.39 224H320L256 160L217.94 198.06L320 356.82z" />
+    <glyph glyph-name="mountains"
+      unicode="&#xF6FD;"
+      horiz-adv-x="640" d=" M635.73 41.09L441.6900000000001 338.69C430.1200000000001 356.44 401.8900000000001 356.44 390.3200000000001 338.69L357.48 288.32L425.1600000000001 182.64C427.54 178.92 426.4600000000001 173.97 422.74 171.59L409.2800000000001 162.97C405.56 160.59 400.61 161.67 398.23 165.39L338.3300000000001 258.93L267.5200000000001 369.48C255.1200000000001 388.8400000000001 224.8800000000001 388.8400000000001 212.4800000000001 369.48L4.58 44.82C-7.99 25.19 6.81 0 30.92 0H611.14C633.64 0 647.46 23.09 635.73 41.09z" />
+    <glyph glyph-name="mouse-pointer"
+      unicode="&#xF245;"
+      horiz-adv-x="320" d=" M302.189 118.874H196.105L251.936 -17.119C255.825 -26.547 251.381 -37.118 242.492 -41.118L193.327 -62.545C184.162 -66.5450000000001 173.884 -61.974 169.995 -52.831L116.942 76.305L30.278 -12.8330000000001C18.729 -24.71 0 -15.554 0 0.023V429.701C0 446.101 19.921 454.096 30.277 442.557L314.689 150.0150000000001C326.161 138.8360000000001 317.696 118.874 302.189 118.874z" />
+    <glyph glyph-name="mug-hot"
+      unicode="&#xF7B6;"
+      horiz-adv-x="512" d=" M127.1 301.5C128.4 293.8 135.1 288 143.1 288H159.6C169.4 288 177.2 296.5 175.9 306C172.1 334.2 159.5 360.2 139.3 380.7C124.9 395.4 115.7 414 112.9 434.2C111.8 442.1 105 448 96.8 448H80.4C70.6 448 63 439.5 64.1 430C68 398.1 82.1 368.7 104.7 345.6C116.7 333.4 124.4 318.1 127.1 301.5zM239.1 301.5C240.4 293.8 247.1 288 255.1 288H271.6C281.4000000000001 288 289.2000000000001 296.5 287.9000000000001 306C284.1 334.2 271.5000000000001 360.2 251.3000000000001 380.7C236.9000000000001 395.4 227.7000000000001 414 224.9 434.2C223.8 442.1 217 448 208.8 448H192.4C182.6 448 174.9 439.5 176.1 430C180 398.1 194.1 368.7 216.7 345.6C228.7 333.4 236.4 318.1 239.1 301.5zM400 256H32C14.3 256 0 241.7 0 224V32C0 -21 43 -64 96 -64H288C341 -64 384 -21 384 32H400C461.8 32 512 82.2 512 144S461.8 256 400 256zM400 96H384V192H400C426.5 192 448 170.5 448 144S426.5 96 400 96z" />
+    <glyph glyph-name="mug-marshmallows"
+      unicode="&#xF7B7;"
+      horiz-adv-x="512" d=" M178.5 380.8L200.9 403.2C195 410.5 186.4 415.6 176.3 415.6H64C46.3 415.6 32 401.3 32 383.6V319.7H162.1C156.6 340.8 161.9 364.3 178.5 380.8zM196.7 319.6H347.7C354.9 331.9 353.8 347.7 343.3 358.2L294.8 406.6C282.3 419.1 262 419.1 249.5 406.6L201 358.2C190.6 347.7 189.5 331.9 196.7 319.6zM400 287.7H160V224.2C160 206.5 145.7 192.2 128 192.2S96 206.5 96 224.2V287.7H32C14.3 287.7 0 273.4 0 255.7V63.9C0 10.9 43 -32 96 -32H288C341 -32 384 10.9 384 63.9H400C461.8 63.9 512 114.1 512 175.8S461.8 287.7 400 287.7zM400 127.8H384V223.7H400C426.5 223.7 448 202.2 448 175.8S426.5 127.8 400 127.8z" />
+    <glyph glyph-name="music"
+      unicode="&#xF001;"
+      horiz-adv-x="512" d=" M511.99 415.99C511.99 437.7 490.89 453 470.39 446.5L150.4 352C137.1 347.8 128 335.5 128 321.5V60.08C117.95 62.46 107.28 64 96 64C42.98 64 0 35.35 0 0S42.98 -64 96 -64S192 -35.35 192 0V233.69L448 308.71V124.08C437.95 126.46 427.28 128 416 128C362.98 128 320 99.35 320 64S362.98 0 416 0S512 28.65 512 64L511.99 415.99z" />
+    <glyph glyph-name="narwhal"
+      unicode="&#xF6FE;"
+      horiz-adv-x="640" d=" M600.83 236.95L639.73 403.12C640.77 407.58 638.79 412.37 634.59 414.69C629.52 417.49 623.14 415.65 620.34 410.58L535 256S535.41 255.83 536.12 255.54C299.61 250.6 227.97 32 163.88 32C144.1 32 128 48.09 128 67.87V165.86L177.75 196.37A32.007 32.007 0 0 1 192 223V303.98C192 316.76 177.76 324.38 167.12 317.29L96 269.87L24.88 317.29C14.24 324.37 0 316.75 0 303.9700000000001V223C0 212.3 5.35 202.31 14.25 196.38L64 165.86V67.87C64 12.8 108.8 -32 163.88 -32H576C611.35 -32 640 -3.35 640 32V160C640 191.6 624.46 219.45 600.83 236.95zM432 96C423.1600000000001 96 416 103.16 416 112S423.1600000000001 128 432 128S448 120.84 448 112S440.84 96 432 96z" />
+    <glyph glyph-name="network-wired"
+      unicode="&#xF6FF;"
+      horiz-adv-x="640" d=" M640 184V200C640 208.84 632.84 216 624 216H344V256H416C433.67 256 448 270.3300000000001 448 288V416C448 433.67 433.67 448 416 448H224C206.33 448 192 433.67 192 416V288C192 270.33 206.33 256 224 256H296V216H16C7.16 216 0 208.84 0 200V184C0 175.16 7.16 168 16 168H120V128H64C46.33 128 32 113.67 32 96V-32C32 -49.67 46.33 -64 64 -64H224C241.67 -64 256 -49.67 256 -32V96C256 113.67 241.67 128 224 128H168V168H472V128H416C398.33 128 384 113.67 384 96V-32C384 -49.67 398.33 -64 416 -64H576C593.67 -64 608 -49.67 608 -32V96C608 113.67 593.67 128 576 128H520V168H624C632.84 168 640 175.16 640 184zM256 320V384H384V320H256zM192 0H96V64H192V0zM544 0H448V64H544V0z" />
+    <glyph glyph-name="neuter"
+      unicode="&#xF22C;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 203.5 47.9 146.1 112 131.6V-20C112 -26.6 117.4 -32 124 -32H164C170.6 -32 176 -26.6 176 -20V131.6C240.1 146.1 288 203.5 288 272zM144 192C99.9 192 64 227.9 64 272S99.9 352 144 352S224 316.1 224 272S188.1 192 144 192z" />
+    <glyph glyph-name="newspaper"
+      unicode="&#xF1EA;"
+      horiz-adv-x="576" d=" M552 384H88C74.745 384 64 373.255 64 360V352H24C10.745 352 0 341.255 0 328V56C0 25.072 25.072 0 56 0H528C554.51 0 576 21.49 576 48V360C576 373.255 565.255 384 552 384zM56 48A8 8 0 0 0 48 56V304H64V56A8 8 0 0 0 56 48zM292 64H140C133.373 64 128 69.373 128 76V84C128 90.627 133.373 96 140 96H292C298.627 96 304 90.627 304 84V76C304 69.373 298.627 64 292 64zM500 64H348C341.373 64 336 69.373 336 76V84C336 90.627 341.373 96 348 96H500C506.627 96 512 90.627 512 84V76C512 69.373 506.627 64 500 64zM292 160H140C133.373 160 128 165.373 128 172V180C128 186.627 133.373 192 140 192H292C298.627 192 304 186.627 304 180V172C304 165.373 298.627 160 292 160zM500 160H348C341.373 160 336 165.373 336 172V180C336 186.627 341.373 192 348 192H500C506.627 192 512 186.627 512 180V172C512 165.373 506.627 160 500 160zM500 256H140C133.373 256 128 261.373 128 268V308C128 314.627 133.373 320 140 320H500C506.627 320 512 314.627 512 308V268C512 261.373 506.627 256 500 256z" />
+    <glyph glyph-name="not-equal"
+      unicode="&#xF53E;"
+      horiz-adv-x="448" d=" M416 240C433.67 240 448 254.33 448 272V304C448 321.67 433.67 336 416 336H392.12L443.99 402.81C449.36 409.83 448.0300000000001 419.87 441.02 425.24L415.61 444.7C408.5900000000001 450.08 398.55 448.74 393.17 441.73L311.09 336H32C14.33 336 0 321.67 0 304V272C0 254.33 14.33 240 32 240H236.56L162.03 144H32C14.33 144 0 129.67 0 112V80C0 62.33 14.33 48 32 48H87.49L35.62 -18.81C30.25 -25.82 31.58 -35.86 38.59 -41.24L64 -60.7C71.02 -66.08 81.06 -64.74 86.43 -57.73L168.52 48H416C433.67 48 448 62.33 448 80V112C448 129.67 433.67 144 416 144H243.05L317.5800000000001 240H416z" />
+    <glyph glyph-name="notes-medical"
+      unicode="&#xF481;"
+      horiz-adv-x="384" d=" M336 384H256C256 419.3 227.3 448 192 448S128 419.3 128 384H48C21.5 384 0 362.5 0 336V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V336C384 362.5 362.5 384 336 384zM192 408C205.3 408 216 397.3 216 384S205.3 360 192 360S168 370.7 168 384S178.7 408 192 408zM288 104C288 99.6 284.4 96 280 96H224V40C224 35.6 220.4 32 216 32H168C163.6 32 160 35.6 160 40V96H104C99.6 96 96 99.6 96 104V152C96 156.4 99.6 160 104 160H160V216C160 220.4 163.6 224 168 224H216C220.4 224 224 220.4 224 216V160H280C284.4 160 288 156.4 288 152V104zM288 296C288 291.6 284.4 288 280 288H104C99.6 288 96 291.6 96 296V312C96 316.4 99.6 320 104 320H280C284.4 320 288 316.4 288 312V296z" />
+    <glyph glyph-name="object-group"
+      unicode="&#xF247;"
+      horiz-adv-x="512" d=" M480 320V352H500C506.627 352 512 357.373 512 364V404C512 410.627 506.627 416 500 416H460C453.373 416 448 410.627 448 404V384H64V404C64 410.627 58.627 416 52 416H12C5.373 416 0 410.627 0 404V364C0 357.373 5.373 352 12 352H32V32H12C5.373 32 0 26.627 0 20V-20C0 -26.627 5.373 -32 12 -32H52C58.627 -32 64 -26.627 64 -20V0H448V-20C448 -26.627 453.373 -32 460 -32H500C506.627 -32 512 -26.627 512 -20V20C512 26.627 506.627 32 500 32H480V320zM96 172V308C96 314.627 101.373 320 108 320H276C282.627 320 288 314.627 288 308V172C288 165.373 282.627 160 276 160H108C101.373 160 96 165.373 96 172zM416 76C416 69.373 410.627 64 404 64H236C229.373 64 224 69.373 224 76V128H296C309.255 128 320 138.745 320 152V224H404C410.627 224 416 218.627 416 212V76z" />
+    <glyph glyph-name="object-ungroup"
+      unicode="&#xF248;"
+      horiz-adv-x="576" d=" M64 128V102A6 6 0 0 0 58 96H6A6 6 0 0 0 0 102V154A6 6 0 0 0 6 160H32V352H6A6 6 0 0 0 0 358V410A6 6 0 0 0 6 416H58A6 6 0 0 0 64 410V384H352V410A6 6 0 0 0 358 416H410A6 6 0 0 0 416 410V358A6 6 0 0 0 410 352H384V160H410A6 6 0 0 0 416 154V102A6 6 0 0 0 410 96H358A6 6 0 0 0 352 102V128H64zM544 192V224H570A6 6 0 0 1 576 230V282A6 6 0 0 1 570 288H518A6 6 0 0 1 512 282V256H408V184H416C429.255 184 440 173.255 440 160V96C440 82.745 429.255 72 416 72H352C338.745 72 328 82.745 328 96V104H192V32H166A6 6 0 0 1 160 26V-26A6 6 0 0 1 166 -32H218A6 6 0 0 1 224 -26V0H512V-26A6 6 0 0 1 518 -32H570A6 6 0 0 1 576 -26V26A6 6 0 0 1 570 32H544V192z" />
+    <glyph glyph-name="octagon"
+      unicode="&#xF306;"
+      horiz-adv-x="512" d=" M361.5 433.9C352.5 442.9 340.3 448 327.6 448H184.5C171.8 448 159.6 442.9 150.6 433.9L14.1 297.5C5.1 288.5 0 276.3 0 263.6V120.5C0 107.8 5.1 95.6 14.1 86.6L150.6 -49.9C159.6 -58.9 171.8 -64 184.5 -64H327.6C340.3 -64 352.5 -58.9 361.5 -49.9L498 86.6C507 95.6 512.1 107.8 512.1 120.5V263.5C512.1 276.2 507 288.4 498 297.4L361.5 433.9z" />
+    <glyph glyph-name="oil-can"
+      unicode="&#xF613;"
+      horiz-adv-x="640" d=" M629.8 287.69L416 224L365.51 249.24A64.07 64.07 0 0 1 336.89 256H280V304H336C344.84 304 352 311.16 352 320V336C352 344.8400000000001 344.84 352 336 352H176C167.16 352 160 344.8400000000001 160 336V320C160 311.16 167.16 304 176 304H232V256H176L37.72 281.14A31.899999999999995 31.899999999999995 0 0 1 31.93 281.67C14.67 281.67 0 267.64 0 249.66V154.71C0 139.25 11.06 125.99 26.28 123.23L96 110.54V64C96 46.33 110.33 32 128 32H402.63C411.18 32 419.38 35.42 425.39 41.51L637.65 256.26C639.15 257.76 639.99 259.8 639.99 261.92V280C640 285.31 634.91 289.15 629.8 287.69zM96 159.33L48 168.06V230.49L96 221.76V159.3300000000001zM549.3299999999999 74.67C549.3299999999999 51.11 568.43 31.9999999999999 591.9999999999999 31.9999999999999S634.6699999999998 51.1 634.6699999999998 74.67S592 160 592 160S549.33 98.23 549.33 74.67z" />
+    <glyph glyph-name="oil-temp"
+      unicode="&#xF614;"
+      horiz-adv-x="640" d=" M320 64C364.18 64 400 99.82 400 144C400 176.79 380.23 204.89 352 217.25V240H400C408.84 240 416 247.16 416 256V272C416 280.8400000000001 408.84 288 400 288H352V320H400C408.84 320 416 327.16 416 336V352C416 360.8400000000001 408.84 368 400 368H352V400H400C408.84 400 416 407.16 416 416V432C416 440.84 408.84 448 400 448H304C295.1600000000001 448 288 440.84 288 432V217.25C259.77 204.9 240 176.79 240 144C240 99.82 275.82 64 320 64zM16 64H32C70.62 64 104.72 76.19 128 95.84C151.28 76.18 185.38 64 224 64C229.67 64 235.01 64.79 240.46 65.3C223.75 82.19 212.81 104.47 209.5 129.16C190.71 131.6 176.16 138.3 167.91 145.9C159.01 154.11 148.25 160.0000000000001 136.14 160.0000000000001H119.84C107.73 160.0000000000001 96.97 154.1100000000001 88.07 145.9C77.8 136.42 58.04 128 32 128H16C7.16 128 0 120.84 0 112V80C0 71.16 7.16 64 16 64zM624 0H608C581.96 0 562.2 8.42 551.91 17.9C543.01 26.11 532.25 32 520.14 32H503.84C491.73 32 480.97 26.11 472.07 17.9C461.8 8.42 442.04 0 416 0S370.2 8.42 359.91 17.9C351.01 26.11 340.25 32 328.14 32H311.84C299.73 32 288.97 26.11 280.07 17.9C269.8 8.42 250.04 0 224 0S178.2 8.42 167.91 17.9C159.01 26.11 148.25 32 136.14 32H119.84C107.73 32 96.97 26.11 88.07 17.9C77.8 8.42 58.04 0 32 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H32C70.62 -64 104.72 -51.81 128 -32.16C151.28 -51.82 185.38 -64 224 -64S296.7200000000001 -51.81 320 -32.16C343.28 -51.82 377.38 -64 416 -64S488.72 -51.81 512 -32.16C535.28 -51.82 569.38 -64 608 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM624 128H608C581.96 128 562.2 136.42 551.91 145.9C543.01 154.11 532.25 160 520.14 160H503.84C491.73 160 480.97 154.11 472.07 145.9C463.83 138.3 449.27 131.6 430.48 129.16C427.1600000000001 104.47 416.23 82.1899999999999 399.5200000000001 65.3C404.98 64.79 410.3100000000001 63.9999999999999 415.98 63.9999999999999C454.6 63.9999999999999 488.7 76.1899999999999 511.98 95.8399999999999C535.26 76.1799999999999 569.36 63.9999999999999 607.98 63.9999999999999H623.98C632.82 63.9999999999999 639.98 71.16 639.98 79.9999999999999V111.9999999999999C640 120.8399999999999 632.84 128 624 128z" />
+    <glyph glyph-name="om"
+      unicode="&#xF679;"
+      horiz-adv-x="512" d=" M360.6 387.06A10.43 10.43 0 0 1 375.36 387.06L396.93 408.62A10.43 10.43 0 0 1 396.93 423.38L375.35 444.94C371.2700000000001 449.01 364.67 449.01 360.5900000000001 444.94L339.0200000000001 423.38A10.43 10.43 0 0 1 339.0200000000001 408.62L360.6 387.06zM412.11 256C385.42 256 360.3400000000001 245.61 341.4700000000001 226.75L317.2200000000001 202.5C310.4400000000001 195.73 301.4400000000001 192 291.8400000000001 192H245C255.54 214.1 259.17 240.11 252.73 267.23C242.63 309.7800000000001 206.37 343.3400000000001 163.21 350.42C127.06 356.35 92.31 345.38 67.2 321.64C59.84 314.68 60.23 302.79 68.32 296.7100000000001L94.47 277.0800000000001C100.19 272.78 108.13 272.76 113.67 277.29C122.12 284.1900000000001 132.69 288 143.94 288C170.41 288 191.95 266.4700000000001 191.95 240.0000000000001S170.41 192 143.94 192H112.04C100.08 192 92.3 179.42 97.65 168.72L113.74 136.55C116.27 131.49 121.34 128.45 126.91 128H159.94C195.24 128 223.95 99.3 223.95 64S195.24 0 159.94 0C63.92 0 37.59 54.02 14.79 92.03C10.26 99.58 0.02 95.61 0 86.81C-0.09 32 41.13 -64 159.94 -64C230.53 -64 287.9600000000001 -6.58 287.9600000000001 64C287.9600000000001 87.42 281.1800000000001 109.1 270.1500000000001 128H291.8400000000001C318.5300000000001 128 343.61 138.39 362.48 157.25L386.73 181.5C393.51 188.27 402.51 192 412.11 192C431.89 192 447.99 175.91 447.99 156.12V56C447.99 42.77 429.2200000000001 32 415.98 32C376.5800000000001 32 349.31 56.24 334.1600000000001 74.89C329.3900000000001 80.76 319.9600000000001 77.43 319.9600000000001 69.87V32S319.9600000000001 -32 415.98 -32C464.52 -32 512 7.47 512 56V156.12C512 211.2 467.2 256 412.11 256zM454.29 380.73C368.74 315.61 285.24 377.98 281.7100000000001 380.68C275.6900000000001 385.3 267.2700000000001 385.06 261.5700000000001 380.13C255.8300000000001 375.2100000000001 254.3000000000001 366.9600000000001 257.9100000000001 360.3300000000001C259.5200000000001 357.38 298.2800000000001 287.99 376.7100000000001 287.99C456.6300000000001 287.99 475.49 319.35 478.46 325.65C479.48 327.77 479.99 330.12 479.99 332.48V368C479.99 381.2200000000001 464.85 388.69 454.29 380.73z" />
+    <glyph glyph-name="omega"
+      unicode="&#xF67A;"
+      horiz-adv-x="512" d=" M488 32H455.39C498.28 85.17 520.4399999999999 155.68 509.03 231.4C492.12 343.64 399.19 433.15 286.45 446.23C131.74 464.18 0 343.18 0 192C0 131.41 21.27 75.82 56.61 32H24C10.75 32 0 21.25 0 8V-40C0 -53.25 10.75 -64 24 -64H160C177.67 -64 192 -49.67 192 -32V10.7C192 31.23 180.91 49.48 164.12 61.29C115.9 95.21 87.14 154.96 98.45 220.35C109.34 283.28 158.95 335.2 221.44 348.36C324.68 370.1 416 291.51 416 192C416 137.56 388.6 89.49 346.92 60.62C330.43 49.19 320 30.99 320 10.92V-32C320 -49.67 334.33 -64 352 -64H488C501.25 -64 512 -53.25 512 -40V8C512 21.25 501.25 32 488 32z" />
+    <glyph glyph-name="ornament"
+      unicode="&#xF7B8;"
+      horiz-adv-x="384" d=" M288 294.1V336C288 344.8 280.8 352 272 352H247.1C252.6 361.4 256 372.3 256 384C256 419.3 227.3 448 192 448S128 419.3 128 384C128 372.3 131.4 361.4 136.9 352H112C103.2 352 96 344.8 96 336V294.1C66.9 277.3 42.7 253 25.9 224H358.1C341.3 253 317.1 277.3 288 294.1zM192 368C183.2 368 176 375.2 176 384S183.2 400 192 400S208 392.8 208 384S200.8 368 192 368zM372.6 192H11.4C4.3 171.9 0 150.5 0 128S4.1 84 11.2 64H372.9C380 84 384.1 105.5 384.1 128C384 150.5 379.7 171.9 372.6 192zM192 -64C263 -64 324.9 -25.3 358.1 32H25.9C59.1 -25.3 121 -64 192 -64z" />
+    <glyph glyph-name="otter"
+      unicode="&#xF700;"
+      horiz-adv-x="640" d=" M608 416H576L562.75 429.25A63.97 63.97 0 0 1 517.49 448H497C485.86 448 474.92 445.09 465.25 439.57L312 352H256C149.96 352 64 266.04 64 160V158.39C64 125.64 48 96.25 24.44 73.5C6.25 55.92 -3.66 29.82 1.25 1.7C8.01 -37.1 44.15 -64 83.53 -64H192C209.67 -64 224 -49.67 224 -32S209.67 0 192 0H80C71.17 0 64 7.17 64 16S71.17 32 80 32H304C312.84 32 320 39.16 320 48V64C320 81.67 305.67 96 288 96H224L373.49 176.5L448 32H528C536.84 32 544 39.16 544 48V64C544 81.67 529.67 96 512 96H483.78L428.67 206.21L521.14 256H544C597.02 256 640 298.98 640 352V384C640 401.67 625.67 416 608 416zM512 400C520.84 400 528 392.8400000000001 528 384S520.84 368 512 368S496 375.16 496 384S503.16 400 512 400zM544 304H509.04L407.2 249.16L393.43 276.7100000000001L512 336H589.05C582.43 317.42 564.8299999999999 304 544 304z" />
+    <glyph glyph-name="outdent"
+      unicode="&#xF03B;"
+      horiz-adv-x="448" d=" M0 364V404C0 412.837 7.163 420 16 420H432C440.837 420 448 412.837 448 404V364C448 355.163 440.837 348 432 348H16C7.163 348 0 355.163 0 364zM208 220H432C440.837 220 448 227.163 448 236V276C448 284.837 440.837 292 432 292H208C199.163 292 192 284.837 192 276V236C192 227.163 199.163 220 208 220zM16 -36H432C440.837 -36 448 -28.837 448 -20V20C448 28.837 440.837 36 432 36H16C7.163 36 0 28.837 0 20V-20C0 -28.837 7.163 -36 16 -36zM208 92H432C440.837 92 448 99.163 448 108V148C448 156.837 440.837 164 432 164H208C199.163 164 192 156.837 192 148V108C192 99.163 199.163 92 208 92zM4.687 180.687L100.687 84.703C110.734 74.652 128 81.776 128 96.016V287.992C128 302.3210000000001 110.675 309.296 100.687 299.305L4.687 203.313C-1.562 197.065 -1.562 186.935 4.687 180.687z" />
+    <glyph glyph-name="paint-brush-alt"
+      unicode="&#xF5A9;"
+      horiz-adv-x="512" d=" M365.99 414.9L194.11 158.49L272.11 93.49L490.92 315.01C564.15 395.48 427.95 503.3 365.99 414.9zM167.87 138.71C127.42 136.3 90.64 121.18 69.84 66.36C67.49 60.15 61.84 56.38 55.25 56.38C44.14 56.38 9.79 84.05 0 90.73C0 8.38 37.93 -64 128 -64C203.86 -64 256 -20.23 256 56.19C256 59.58 255.32 62.83 254.94 66.15L167.87 138.71z" />
+    <glyph glyph-name="paint-brush"
+      unicode="&#xF1FC;"
+      horiz-adv-x="512" d=" M167.02 138.66C126.9 136.0800000000001 90.49 120.8 69.83 66.36C67.48 60.15 61.83 56.38 55.24 56.38C44.13 56.38 9.78 84.05 -0.01 90.73C0 8.38 37.93 -64 128 -64C203.86 -64 256 -20.23 256 56.19C256 59.3 255.35 62.27 255.03 65.32L167.02 138.66zM457.89 448C442.73 448 428.52 441.29 417.68 431.55C213.27 248.95 192 244.66 192 190.91C192 177.21 195.25 164.15 200.73 152.21L264.55 99.03C271.76 97.23 279.19 96.0000000000001 286.94 96.0000000000001C349.05 96.0000000000001 385.05 141.47 498.1 352.4600000000001C505.48 366.8100000000001 512 382.3100000000001 512 398.4500000000001C512 427.36 486 448 457.89 448z" />
+    <glyph glyph-name="paint-roller"
+      unicode="&#xF5AA;"
+      horiz-adv-x="512" d=" M416 320V416C416 433.67 401.67 448 384 448H32C14.33 448 0 433.67 0 416V320C0 302.33 14.33 288 32 288H384C401.67 288 416 302.3300000000001 416 320zM448 384V256C448 238.33 433.67 224 416 224H256C220.65 224 192 195.35 192 160V128C174.33 128 160 113.67 160 96V-32C160 -49.67 174.33 -64 192 -64H256C273.67 -64 288 -49.67 288 -32V96C288 113.67 273.67 128 256 128V160H416C469.02 160 512 202.98 512 256V320C512 355.35 483.35 384 448 384z" />
+    <glyph glyph-name="palette"
+      unicode="&#xF53F;"
+      horiz-adv-x="512" d=" M204.3 443C104.9 423.6 24.8 343.7 5.2 244.6C-31.8 57.6 136.9 -81.7999999999999 264 -62.1C305.2 -55.7 325.4 -7.5 306.5 29.6C283.4 74.9999999999999 316.4 128 367.4 128H447.1C482.9 128 511.9 157.6 512 193.3C511.5 350.9 368.1 474.9 204.3 443zM96 128C78.3 128 64 142.3 64 160S78.3 192 96 192S128 177.7 128 160S113.7 128 96 128zM128 256C110.3 256 96 270.3 96 288S110.3 320 128 320S160 305.7 160 288S145.7 256 128 256zM256 320C238.3 320 224 334.3 224 352S238.3 384 256 384S288 369.7 288 352S273.7 320 256 320zM384 256C366.3 256 352 270.3 352 288S366.3 320 384 320S416 305.7 416 288S401.7 256 384 256z" />
+    <glyph glyph-name="pallet-alt"
+      unicode="&#xF483;"
+      horiz-adv-x="640" d=" M80 192H304C312.8 192 320 199.2 320 208V432C320 440.8 312.8 448 304 448H80C71.2 448 64 440.8 64 432V208C64 199.2 71.2 192 80 192zM400 192H560C568.8 192 576 199.2 576 208V368C576 376.8 568.8 384 560 384H400C391.2 384 384 376.8 384 368V208C384 199.2 391.2 192 400 192zM624 64C632.8 64 640 71.2 640 80V112C640 120.8 632.8 128 624 128H16C7.2 128 0 120.8 0 112V80C0 71.2 7.2 64 16 64H64V0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-16C640 -7.2 632.8 0 624 0H576V64H624zM288 0H128V64H288V0zM512 0H352V64H512V0z" />
+    <glyph glyph-name="pallet"
+      unicode="&#xF482;"
+      horiz-adv-x="640" d=" M144 192H496C504.8 192 512 199.2 512 208V432C512 440.8 504.8 448 496 448H384V320L320 352L256 320V448H144C135.2 448 128 440.8 128 432V208C128 199.2 135.2 192 144 192zM624 64C632.8 64 640 71.2 640 80V112C640 120.8 632.8 128 624 128H16C7.2 128 0 120.8 0 112V80C0 71.2 7.2 64 16 64H64V0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-16C640 -7.2 632.8 0 624 0H576V64H624zM288 0H128V64H288V0zM512 0H352V64H512V0z" />
+    <glyph glyph-name="paper-plane"
+      unicode="&#xF1D8;"
+      horiz-adv-x="512" d=" M476 444.8L12.5 177.4C-5.6 167 -3.3 141.8 14.7 134.2L121 89.6L408.3 342.8C413.8 347.7000000000001 421.6 340.2000000000001 416.9000000000001 334.5L176 41V-39.5C176 -63.1 204.5 -72.4 218.5 -55.3L282 22L406.6 -30.2C420.8 -36.2 437 -27.3 439.6 -12L511.6 420C515 440.2 493.3 454.8 476 444.8z" />
+    <glyph glyph-name="paperclip"
+      unicode="&#xF0C6;"
+      horiz-adv-x="448" d=" M43.246 -18.142C-15.184 42.147 -14.095 139.369 44.632 199.439L254.392 414C298.708 459.332 370.743 459.336 415.063 414C458.953 369.106 459.006 296.671 415.063 251.724L232.214 64.872C202.359 34.335 153.581 34.761 124.232 65.87C95.957 95.84 96.864 143.343 125.684 172.823L269.427 319.658C275.6090000000001 325.972 285.7390000000001 326.08 292.053 319.899L314.914 297.52C321.229 291.338 321.336 281.208 315.155 274.894L171.427 128.073C166.495 123.028 166.191 114.645 170.779 109.781C175.151 105.1469999999999 182.024 105.0699999999999 186.467 109.6159999999999L369.316 296.467C388.929 316.529 388.929 349.1919999999999 369.305 369.265C350.116 388.892 319.348 388.902 300.151 369.265L90.39 154.705C55.627 119.145 55.091 61.585 89.199 26.392C123.209 -8.701 178.184 -8.745 212.257 26.106L384.317 202.105C390.4940000000001 208.424 400.624 208.538 406.943 202.361L429.82 179.997C436.139 173.82 436.254 163.69 430.076 157.3710000000001L258.016 -18.627C198.44 -79.5649999999999 102.073 -78.843 43.246 -18.1419999999999z" />
+    <glyph glyph-name="parachute-box"
+      unicode="&#xF4CD;"
+      horiz-adv-x="512" d=" M511.9 273C502.8 348.6 433.5 405.4 353.6 431.7C390 392.3 416 331.1 416 256H444.1L327.5 126.5C325 127.1 322.7 128 320 128H272V256H384C384 371.2 315.1 448 256 448S128 371.2 128 256H240V128H192C189.3 128 187 127.1 184.5 126.5L67.9 256H96C96 331.1 122 392.3 158.4 431.7C78.5 405.3 9.2 348.5 0.1 273C-1 263.9 6.9 256 16.1 256H24.8L161.5 104.1C160.8 101.5 159.9 98.9 159.9 96V-32C159.9 -49.7 174.2 -64 191.9 -64H319.9C337.6 -64 351.9 -49.7 351.9 -32V96C351.9 98.9 351 101.4 350.3 104.1L487.1 256H495.8C505.1 256 513 263.8 511.9 273z" />
+    <glyph glyph-name="paragraph"
+      unicode="&#xF1DD;"
+      horiz-adv-x="448" d=" M408 416H177.531C88.948 416 16.045 344.665 16 256.082C15.956 167.679 87.607 96 176 96V-8C176 -21.255 186.745 -32 200 -32H232C245.255 -32 256 -21.255 256 -8V336H288V-8C288 -21.255 298.745 -32 312 -32H344C357.255 -32 368 -21.255 368 -8V336H408C421.255 336 432 346.745 432 360V392C432 405.255 421.255 416 408 416z" />
+    <glyph glyph-name="parking-circle-slash"
+      unicode="&#xF616;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 8C146.54 8 64 90.54 64 192C64 222.83 71.71 251.86 85.17 277.41L371.56 56.06C338.86 26.31 295.58 8 248 8zM238.23 240H280C288.82 240 296 232.82 296 224S288.82 208 280 208H279.63L238.23 240zM410.83 106.59L334.41 165.65C350.07 180.26 360 200.9 360 224C360 268.18 324.18 304 280 304H184C177.09 304 171.33 299.57 169.1 293.43L124.44 327.94C157.14 357.69 200.42 376 248 376C349.46 376 432 293.46 432 192C432 161.17 424.29 132.14 410.83 106.59zM168 96C168 87.16 175.16 80 184 80H216C224.84 80 232 87.16 232 96V115.48L168 164.94V96z" />
+    <glyph glyph-name="parking-circle"
+      unicode="&#xF615;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 8C146.54 8 64 90.54 64 192S146.54 376 248 376S432 293.46 432 192S349.46 8 248 8zM280 304H184C175.16 304 168 296.8400000000001 168 288V96C168 87.16 175.16 80 184 80H216C224.84 80 232 87.16 232 96V144H280C324.18 144 360 179.82 360 224S324.18 304 280 304zM280 208H232V240H280C288.82 240 296 232.82 296 224S288.82 208 280 208z" />
+    <glyph glyph-name="parking-slash"
+      unicode="&#xF617;"
+      horiz-adv-x="640" d=" M288 80C288 71.16 280.84 64 272 64H240C231.16 64 224 71.16 224 80V144.86L96 243.79V16C96 -10.5 117.5 -32 144 -32H452.83L288 95.4V80zM633.8199999999999 -10.1L544 59.32V368C544 394.5 522.5 416 496 416H144C128.69 416 115.21 408.69 106.42 397.52L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.53 -60.63C601.51 -66.0599999999999 611.56 -64.7999999999999 616.99 -57.82L636.63 -32.55C642.05 -25.58 640.8 -15.53 633.82 -10.1zM409.69 163.13L359.16 202.18C364.56 207.91 368 215.52 368 224C368 241.64 353.64 256 336 256H289.5199999999999L224.4599999999999 306.29C225.61 314 231.98 320 240 320H336C388.94 320 432 276.94 432 224C432 200.76 423.51 179.65 409.69 163.13z" />
+    <glyph glyph-name="parking"
+      unicode="&#xF540;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM240 128H192V80C192 71.2 184.8 64 176 64H144C135.2 64 128 71.2 128 80V304C128 312.8 135.2 320 144 320H240C292.9 320 336 276.9 336 224S292.9 128 240 128zM240 256H192V192H240C257.6 192 272 206.4 272 224S257.6 256 240 256z" />
+    <glyph glyph-name="passport"
+      unicode="&#xF5AB;"
+      horiz-adv-x="448" d=" M129.62 272H168.71C170.2 299.03 175.25 323.35 182.92 342.41C155.21 329.17 134.9 303.2200000000001 129.62 272zM129.62 240C134.91 208.78 155.21 182.83 182.92 169.59C175.24 188.65 170.2 212.97 168.71 240.0000000000001H129.62zM224 161.31C231.69 168.76 244.77 195.73 247.43 240H200.56C203.23 195.74 216.31 168.76 224 161.31zM200.57 272H247.44C244.78 316.26 231.7 343.24 224.01 350.69C216.31 343.24 203.23 316.26 200.57 272zM265.08 169.59C292.79 182.8300000000001 313.1 208.78 318.38 240.0000000000001H279.29C277.8 212.97 272.76 188.65 265.08 169.59zM416 448H64C28.65 448 0 419.35 0 384V0C0 -35.35 28.65 -64 64 -64H416C433.67 -64 448 -49.67 448 -32V416C448 433.67 433.67 448 416 448zM336 32H112C103.2 32 96 39.2 96 48S103.2 64 112 64H336C344.8 64 352 56.8 352 48S344.8 32 336 32zM224 128C153.31 128 96 185.31 96 256S153.31 384 224 384S352 326.69 352 256S294.69 128 224 128zM265.08 342.41C272.76 323.35 277.8 299.03 279.29 272H318.38C313.1 303.2200000000001 292.79 329.17 265.08 342.41z" />
+    <glyph glyph-name="pastafarianism"
+      unicode="&#xF67B;"
+      horiz-adv-x="640" d=" M624.54 100.33C591.8399999999999 112.85 567.18 96.08 549.17 83.88C532.11 72.35 525.92 69.46 517.76 72.52C509.64 75.61 506.93 81.9 501.87 101.9C498.54 115.05 494.43 131.22 483.92 144.55C486.16 147.46 488.35 150.34 490.3 153.12C500.47 143.55 513.71 136 532 136C565.95 136 582.87 161.78 594.06 178.83C604.65 194.97 609.06 200 616 200C629.25 200 640 210.75 640 224S629.25 248 616 248C582.05 248 565.13 222.22 553.94 205.17C543.34 189.03 538.94 184 532 184C514.69 184 494.52 245.43 434.74 285.91L451.99 320.41C485.43 322.5 512 350.02 512 384C512 419.35 483.35 448 448 448S384 419.35 384 384C384 370.98 387.94 358.9 394.62 348.79L376.4700000000001 312.49C359.49 317.0900000000001 340.87 320 320.0100000000001 320S280.5200000000001 317.0900000000001 263.5500000000001 312.49L245.4000000000001 348.79C252.06 358.9 256 370.98 256 384C256 419.35 227.35 448 192 448S128 419.35 128 384C128 350.02 154.56 322.5 188.02 320.4L205.27 285.9C145.68 245.56 125.15 184 108 184C101.06 184 96.66 189.03 86.06 205.17C74.88 222.22 57.96 248 24 248C10.75 248 0 237.25 0 224S10.75 200 24 200C30.94 200 35.34 194.97 45.94 178.83C57.13 161.78 74.05 136 108 136C126.29 136 139.53 143.55 149.7 153.11C151.65 150.32 153.84 147.45 156.08 144.54C145.57 131.21 141.46 115.04 138.13 101.89C133.07 81.89 130.36 75.61 122.24 72.5100000000001C114.13 69.4500000000001 107.91 72.34 90.83 83.8700000000001C72.8 96.0700000000001 48.11 112.7900000000001 15.46 100.3200000000001C3.07 95.6 -3.13 81.7400000000001 1.59 69.35C6.31 56.94 20.2 50.74 32.56 55.47C40.72 58.56 46.9 55.66 63.95 44.11C77.5 34.95 94.78 23.25 116.37 23.27C123.54 23.27 131.2 24.55 139.34 27.66C172 40.1 179.32 68.99 184.67 90.1C186.88 98.8200000000001 188.66 104.59 190.62 108.97C207.24 95.36 227.57 83.09 252.26 74.8C242.3 37.8 220.08 -16 192 -16C178.75 -16 168 -26.75 168 -40S178.75 -64 192 -64C258.74 -64 289.05 24.63 299.42 65.14C306.11 64.54 312.8400000000001 64 320 64S333.89 64.54 340.58 65.14C350.95 24.63 381.26 -64 448 -64C461.25 -64 472 -53.25 472 -40S461.25 -16 448 -16C420.06 -16 397.79 37.81 387.78 74.81C412.47 83.1 432.78 95.37 449.4 108.97C451.36 104.59 453.14 98.8200000000001 455.35 90.1C460.6899999999999 68.99 468.02 40.1 500.6799999999999 27.66C508.8199999999999 24.55 516.4799999999999 23.27 523.65 23.27C545.24 23.27 562.52 34.96 576.0699999999999 44.11C593.1199999999999 55.66 599.3499999999999 58.56 607.4599999999999 55.47C619.8499999999999 50.72 633.7299999999999 56.9400000000001 638.43 69.35C643.14 81.75 636.9399999999999 95.61 624.54 100.33zM448 400C456.82 400 464 392.82 464 384S456.82 368 448 368S432 375.18 432 384S439.18 400 448 400zM192 400C200.82 400 208 392.82 208 384S200.82 368 192 368S176 375.18 176 384S183.18 400 192 400z" />
+    <glyph glyph-name="paste"
+      unicode="&#xF0EA;"
+      horiz-adv-x="448" d=" M128 264C128 294.879 153.122 320 184 320H320V392C320 405.255 309.255 416 296 416H215.39C204.306 435.11 183.637 448 160 448S115.694 435.11 104.61 416H24C10.745 416 0 405.255 0 392V56C0 42.745 10.745 32 24 32H128V264zM160 408C173.255 408 184 397.255 184 384S173.255 360 160 360S136 370.745 136 384S146.745 408 160 408zM344 160H448V-40C448 -53.255 437.255 -64 424 -64H184C170.745 -64 160 -53.255 160 -40V264C160 277.255 170.745 288 184 288H320V184C320 170.8 330.8 160 344 160zM448 198.059V192H352V288H358.0590000000001A24 24 0 0 0 375.029 280.971L440.9700000000001 215.03A24.002000000000002 24.002000000000002 0 0 0 448 198.059z" />
+    <glyph glyph-name="pause-circle"
+      unicode="&#xF28B;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM240 112C240 103.2 232.8 96 224 96H176C167.2 96 160 103.2 160 112V272C160 280.8 167.2 288 176 288H224C232.8 288 240 280.8 240 272V112zM352 112C352 103.2 344.8 96 336 96H288C279.2 96 272 103.2 272 112V272C272 280.8 279.2 288 288 288H336C344.8 288 352 280.8 352 272V112z" />
+    <glyph glyph-name="pause"
+      unicode="&#xF04C;"
+      horiz-adv-x="448" d=" M144 -31H48C21.5 -31 0 -9.5 0 17V369C0 395.5 21.5 417 48 417H144C170.5 417 192 395.5 192 369V17C192 -9.5 170.5 -31 144 -31zM448 17V369C448 395.5 426.5 417 400 417H304C277.5 417 256 395.5 256 369V17C256 -9.5 277.5 -31 304 -31H400C426.5 -31 448 -9.5 448 17z" />
+    <glyph glyph-name="paw-alt"
+      unicode="&#xF701;"
+      horiz-adv-x="448" d=" M144 320C170.51 320 192 341.49 192 368S170.51 416 144 416S96 394.51 96 368S117.49 320 144 320zM96 256C96 282.51 74.51 304 48 304S0 282.51 0 256S21.49 208 48 208S96 229.49 96 256zM304 320C330.51 320 352 341.49 352 368S330.51 416 304 416S256 394.51 256 368S277.49 320 304 320zM400 304C373.49 304 352 282.51 352 256S373.49 208 400 208S448 229.49 448 256S426.51 304 400 304zM367.31 147.22C341.02 162.06 320.17 208.63 300.14 245.05C284.4100000000001 273.69 254.21 288 224 288S163.59 273.69 147.85 245.05C127.56 208.09 107.73 162.49 80.68 147.22C51.63 130.82 32 99.82 32 64.05C32 11.04 74.98 -31.93 128 -31.93C179.71 -33.69 200.19 0.06 224 0.06S268.29 -33.69 320 -31.93C373.02 -31.93 416 11.04 416 64.05C416 99.82 396.37 130.82 367.31 147.22z" />
+    <glyph glyph-name="paw-claws"
+      unicode="&#xF702;"
+      horiz-adv-x="512" d=" M193.44 225.39C224.38 233.53 239.86 275.33 228.02 318.75C221.49 342.67 207.95 361.79 192 373.04V448L127.99 368.01C112.97 350.31 107.54 320.19 115.98 289.26C127.82 245.84 162.51 217.24 193.44 225.39zM318.56 225.39C349.5 217.25 384.18 245.84 396.02 289.26C404.46 320.2 399.03 350.31 384.01 368.01L320 448V373.04C304.05 361.78 290.51 342.67 283.98 318.75C272.1400000000001 275.33 287.62 233.53 318.56 225.39zM256 192C176.59 192 64 69.24 64 -8.25C64 -43.15 90.81 -64 135.74 -64C184.58 -64 216.83 -38.92 256 -38.92C295.51 -38.92 327.85 -64 376.26 -64C421.19 -64 448 -43.15 448 -8.25C448 69.24 335.4100000000001 192 256 192zM108.72 204.61C101.51 228.64 83.83 246.52 64 253.07V320L18.49 257.63A96.204 96.204 0 0 1 0 200.91C0.03 193.94 1.09 186.69 3.28 179.39C13.68 144.74 45.72 122.3 74.84 129.26C103.95 136.23 119.12 169.96 108.72 204.61zM493.51 257.63L448 320V253.06C428.17 246.51 410.49 228.63 403.28 204.6C392.88 169.95 408.05 136.22 437.17 129.26C466.29 122.3 498.3199999999999 144.74 508.73 179.39C510.92 186.68 511.98 193.93 512.01 200.91A96.283 96.283 0 0 1 493.51 257.63z" />
+    <glyph glyph-name="paw"
+      unicode="&#xF1B0;"
+      horiz-adv-x="512" d=" M256 224C176.59 224 64 101.24 64 23.75C64 -11.15 90.81 -32 135.74 -32C184.58 -32 216.83 -6.92 256 -6.92C295.51 -6.92 327.85 -32 376.26 -32C421.19 -32 448 -11.15 448 23.75C448 101.24 335.4100000000001 224 256 224zM108.72 236.61C98.32 271.26 66.28 293.7000000000001 37.16 286.74C8.04 279.78 -7.13 246.05 3.27 211.4C13.67 176.75 45.71 154.31 74.83 161.27C103.95 168.23 119.12 201.96 108.72 236.61zM193.44 257.39C224.38 265.5300000000001 239.86 307.3300000000001 228.02 350.75S181.5 422.76 150.56 414.62S104.14 364.68 115.98 321.26C127.82 277.8400000000001 162.51 249.24 193.44 257.39zM474.83 286.73C445.71 293.6900000000001 413.68 271.25 403.27 236.6C392.87 201.95 408.04 168.22 437.16 161.26C466.28 154.3 498.3099999999999 176.74 508.72 211.39C519.12 246.04 503.95 279.77 474.83 286.73zM318.56 257.39C349.5 249.25 384.18 277.8400000000001 396.0199999999999 321.26C407.8599999999999 364.68 392.38 406.4700000000001 361.44 414.62S295.82 394.17 283.98 350.75C272.14 307.3300000000001 287.62 265.5300000000001 318.56 257.3900000000001z" />
+    <glyph glyph-name="peace"
+      unicode="&#xF67C;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM432 192C432 160.07 423.8 130.03 409.43 103.83L280 207.37V373.03C366.23 357.82 432 282.53 432 192zM216 10.97C182.14 16.9400000000001 151.51 32.17 126.71 53.99L216 125.43V10.97zM280 125.43L369.29 54C344.49 32.18 313.86 16.95 280 10.98V125.43zM216 373.03V207.37L86.57 103.83C72.2 130.03 64 160.07 64 192C64 282.53 129.77 357.82 216 373.03z" />
+    <glyph glyph-name="pegasus"
+      unicode="&#xF703;"
+      horiz-adv-x="576" d=" M575.92 371.4C575.91 379.53 572.9 387.27 567.3399999999999 393.2C563.56 397.23 558.7599999999999 402.32 553.6499999999999 407.7C564.7099999999998 414.54 573.1499999999999 425.19 575.8299999999998 438.36C576.85 443.32 572.96 448 567.9 448H447.92C377.23 448 319.92 390.69 319.92 320C256 320 215.72 356.78 192.26 410.27C189.04 417.62 178.65 418.03 175.22 410.77C165.49 390.18 160 367.2 160 342.9C160 275.86 211.01 209.81 288 195.16V191.99C205.11 191.99 144.67 249.51 130.97 314.85C114.25 309.38 99.35 299.87 88 286.88V288C39.47 288 0 248.53 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.57 229.1 64 226.63 64 224C64 196.36 75.84 171.64 94.54 154.12L68.82 85.52A63.94500000000001 63.94500000000001 0 0 1 66.66 47.53L91.51 -51.88A15.982 15.982 0 0 1 107.02 -64H172.98C183.39 -64 191.03 -54.22 188.5 -44.12L162.19 61.14L186.03 124.73L320 102.4V-48C320 -56.84 327.1600000000001 -64 336 -64H400C408.84 -64 416 -56.84 416 -48V129.78C435.74 149.97 448 177.53 448 208C448 208.22 447.93 208.42 447.92 208.64V311.11L463.92 304L482.82 266.3C490.27 251.43 507.87 244.75 523.31 250.93L555.8599999999999 263.9500000000001A31.997 31.997 0 0 1 575.9799999999999 293.6900000000001L575.92 371.4000000000001zM511.92 352C503.08 352 495.92 359.16 495.92 368S503.08 384 511.92 384S527.92 376.8400000000001 527.92 368S520.76 352 511.92 352z" />
+    <glyph glyph-name="pen-alt"
+      unicode="&#xF305;"
+      horiz-adv-x="512" d=" M497.94 373.83L437.83 433.94C419.08 452.69 388.67 452.69 369.92 433.94L313.37 377.39L441.39 249.37L497.94 305.92C516.69 324.67 516.69 355.0700000000001 497.94 373.8300000000001zM251.14 394.36C235.52 409.98 210.2 409.98 194.58 394.36L75.8 275.57C69.55 269.32 69.55 259.19 75.8 252.95L98.43 230.32C104.68 224.07 114.81 224.07 121.06 230.32L222.88 332.14L245.51 309.52L93.95 157.97A327.038 327.038 0 0 1 0.17 -37.11L0.14 -37.34C-1.56 -52.62 11.35 -65.5400000000001 26.63 -63.85A327.02000000000004 327.02000000000004 0 0 1 221.97 29.95L418.76 226.74L335.99 309.51L251.14 394.36z" />
+    <glyph glyph-name="pen-fancy"
+      unicode="&#xF5AC;"
+      horiz-adv-x="512" d=" M79.18 165.06A32.005 32.005 0 0 1 58.94 144.82L0 -32L4.69 -36.69L97.58 56.2C96.92 58.76 96.01 61.23 96.01 64C96.01 81.67 110.34 96 128.01 96S160.01 81.67 160.01 64S145.68 32 128.01 32C125.24 32 122.77 32.91 120.21 33.57L27.32 -59.32L32 -64L208.82 -5.06A31.982999999999997 31.982999999999997 0 0 1 229.06 15.18L262.13 99.25L163.25 198.13L79.18 165.06zM369.25 419.68L186.14 220.19L283.99 122.34L483.48 305.4500000000001C568.4 380.52 443.73 503.94 369.25 419.68z" />
+    <glyph glyph-name="pen-nib"
+      unicode="&#xF5AD;"
+      horiz-adv-x="512" d=" M136.6 309.2100000000001A64.003 64.003 0 0 1 93.29 267.86L0 -12L14.69 -26.69L164.8 123.42C161.81 129.68 160 136.6 160 144C160 170.51 181.49 192 208 192S256 170.51 256 144S234.51 96 208 96C200.6 96 193.68 97.81 187.42 100.8L37.31 -49.31L52 -64L331.86 29.29A64.003 64.003 0 0 1 373.2100000000001 72.6L416 224L288 352L136.6 309.2100000000001zM497.9399999999999 373.8300000000001L437.83 433.94C419.08 452.69 388.67 452.69 369.92 433.94L313.37 377.39L441.39 249.37L497.94 305.92C516.69 324.67 516.69 355.0700000000001 497.94 373.8300000000001z" />
+    <glyph glyph-name="pen-square"
+      unicode="&#xF14B;"
+      horiz-adv-x="448" d=" M400 -32H48C21.5 -32 0 -10.5 0 16V368C0 394.5 21.5 416 48 416H400C426.5 416 448 394.5 448 368V16C448 -10.5 426.5 -32 400 -32zM238.1 270.1L102.4 134.4L96.1 77.3C95.3 69.6999999999999 101.7 63.1999999999999 109.4 63.9999999999999L166.5 70.3L302.2 206C304.5 208.3 304.5 212.1 302.2 214.5L246.7 270C244.2 272.4 240.4 272.4 238.1 270.1zM345 282.9L314.9 313C305.5 322.4 290.3 322.4 281 313L257.9 289.9C255.6 287.6 255.6 283.8 257.9 281.4L313.4 225.9C315.7 223.6 319.5 223.6 321.9 225.9L345 249C354.3 258.3 354.3 273.5 345 282.9z" />
+    <glyph glyph-name="pen"
+      unicode="&#xF304;"
+      horiz-adv-x="512" d=" M290.74 354.76L418.76 226.74L140.77 -51.25L26.63 -63.85C11.35 -65.54 -1.56 -52.62 0.14 -37.34L12.84 76.88L290.74 354.76zM497.94 373.82L437.83 433.93C419.08 452.68 388.67 452.68 369.92 433.93L313.37 377.38L441.39 249.36L497.94 305.9100000000001C516.69 324.67 516.69 355.0700000000001 497.94 373.8200000000001z" />
+    <glyph glyph-name="pencil-alt"
+      unicode="&#xF303;"
+      horiz-adv-x="512" d=" M497.9 305.9L451.8 259.8C447.1 255.1 439.5 255.1 434.8 259.8L323.8 370.8C319.1 375.5 319.1 383.1 323.8 387.8L369.9 433.9000000000001C388.6 452.6 419 452.6 437.8 433.9000000000001L497.9 373.8C516.6999999999999 355.1 516.6999999999999 324.7000000000001 497.9 305.9zM284.2 348.2L21.6 85.6L0.4 -35.9C-2.5 -52.3 11.8 -66.5 28.2 -63.7L149.7 -42.4L412.3 220.2000000000001C417 224.9 417 232.5000000000001 412.3 237.2000000000001L301.3 348.2000000000001C296.5 352.9000000000001 288.9000000000001 352.9000000000001 284.2 348.2000000000001zM124.1 108.1C118.6 113.6 118.6 122.4 124.1 127.9L278.1 281.9000000000001C283.6 287.4000000000001 292.4000000000001 287.4000000000001 297.9000000000001 281.9000000000001S303.4000000000001 267.6 297.9000000000001 262.1L143.9 108.1C138.4 102.6 129.6 102.6 124.1 108.1zM88 24H136V-12.3L71.5 -23.6L40.4 7.5L51.7 72H88V24z" />
+    <glyph glyph-name="pencil-paintbrush"
+      unicode="&#xF618;"
+      horiz-adv-x="512" d=" M316.08 365.29L19.08 68.33L0.32 -39.11C-2.21 -53.6 10.41 -66.22 24.91 -63.67L132.36 -44.83L429.28 252.1L316.08 365.29zM497.9299999999999 320.76C516.68 339.52 516.68 369.93 497.9299999999999 388.69L452.67 433.94C433.91 452.7 403.49 452.7 384.73 433.94L338.7 387.92L451.9 274.7200000000001L497.9299999999999 320.76zM456.7499999999999 56.38C450.16 56.38 444.51 60.15 442.16 66.36C424.03 114.14 393.76 131.74 359.51 137.07L257.83 35.39C266.64 -27.95 315.42 -64 384 -64C474.07 -64 512 8.38 512 90.73C502.21 84.05 467.86 56.38 456.75 56.38zM120.18 214.68L216 310.49L146.01 414.9C84.05 503.3 -52.15 395.48 21.08 315.01L120.18 214.68z" />
+    <glyph glyph-name="pencil-ruler"
+      unicode="&#xF5AE;"
+      horiz-adv-x="512" d=" M109.46 203.96L244.04 338.52L199.92 382.64L138.24 320.9600000000001A7.919 7.919 0 0 0 127.03 320.9600000000001L115.82 332.17C112.72 335.27 112.72 340.29 115.82 343.38L177.5 405.06L143.86 438.7100000000001C131.47 451.1 111.39 451.1 99 438.71L9.29 349C-3.09 336.61 -3.1 316.53 9.29 304.14L109.46 203.96zM497.93 320.76C516.69 339.52 516.6800000000001 369.93 497.93 388.69L452.68 433.94C433.92 452.7 403.5 452.7 384.73 433.94L338.7100000000001 387.93L451.91 274.73L497.93 320.76zM316.08 365.29L19.08 68.33L0.32 -39.11C-2.21 -53.6 10.41 -66.22 24.91 -63.67L132.36 -44.83L429.28 252.1L316.08 365.29zM502.71 79.86L469.07 113.5L407.39 51.82C404.29 48.72 399.27 48.72 396.18 51.82L384.9700000000001 63.03C381.8800000000001 66.13 381.8800000000001 71.15 384.9700000000001 74.24L446.6500000000001 135.92L402.5100000000001 180.06L267.93 45.5L368.14 -54.7C380.53 -67.09 400.61 -67.09 413 -54.7L502.71 35C515.1 47.39 515.1 67.47 502.71 79.86z" />
+    <glyph glyph-name="pencil"
+      unicode="&#xF040;"
+      horiz-adv-x="512" d=" M497.9 305.9L451.8 259.8C447.1 255.1 439.5 255.1 434.8 259.8L323.8 370.8C319.1 375.5 319.1 383.1 323.8 387.8L369.9 433.9000000000001C388.6 452.6 419 452.6 437.8 433.9000000000001L497.9 373.8C516.6999999999999 355.1 516.6999999999999 324.7000000000001 497.9 305.9zM284.2 348.2L21.6 85.6L0.4 -35.9C-2.5 -52.3 11.8 -66.5 28.2 -63.7L149.7 -42.4L412.3 220.2000000000001C417 224.9 417 232.5000000000001 412.3 237.2000000000001L301.3 348.2000000000001C296.5 352.9000000000001 288.9000000000001 352.9000000000001 284.2 348.2000000000001zM88 24H136V-12.3L71.5 -23.6L40.4 7.5L51.7 72H88V24z" />
+    <glyph glyph-name="pennant"
+      unicode="&#xF456;"
+      horiz-adv-x="576" d=" M571 219.5C492.9 131.3 391.2 110.7 386.9 109.9C252.1 83.8 233.6 102.4 149.8 72.4C139.2 68.6 128 76 128 87.2V335.5C128 344.5 135.3 351.9 144.3 351.5C187.5 349.5 239.6 338.3 299.5 309.1C440.1 240.6 523.2 246.2 552.4 251.9C570.4 255.7 583.6999999999999 233.8 571 219.5zM56 448C25.1 448 0 422.9 0 392C0 369.7 13.2 350.6 32 341.6V-56C32 -60.4 35.6 -64 40 -64H72C76.4 -64 80 -60.4 80 -56V341.6C98.8 350.6 112 369.7 112 392C112 422.9 86.9 448 56 448z" />
+    <glyph glyph-name="people-carry"
+      unicode="&#xF4CE;"
+      horiz-adv-x="640" d=" M128 352C154.5 352 176 373.5 176 400S154.5 448 128 448S80 426.5 80 400S101.5 352 128 352zM512 352C538.5 352 560 373.5 560 400S538.5 448 512 448S464 426.5 464 400S485.5 352 512 352zM637.7 -20.1L593.7 89.9L552.6 43.5L550.6 25.3L578.3000000000001 -43.9C583.3000000000001 -56.4 595.3000000000001 -64 608.0000000000001 -64C612.0000000000001 -64 616.0000000000001 -63.3 619.9000000000001 -61.7C636.3000000000001 -55.1 644.3000000000001 -36.5 637.7 -20.1zM603.5 189.7L585 269.9C580.4 289.9 566.4 306.7 547.5 314.8C529 322.8 508.5 321.5 491.4 311.5C468.7 298.1 451.7 277 443.3 252.1L432 218.2L416 208V304C416 312.8 408.8 320 400 320H240C231.2 320 224 312.8 224 304V208L207.9 218.2L196.6 252.1C188.3 277.1 171.2 298.1 148.5 311.5C131.3 321.5 110.9 322.8 92.4 314.8C73.5 306.7000000000001 59.5 289.9 54.9 269.9L36.5 189.7C31.9 169.7 37.2 148.5 50.9 133L118.1 57.1L128.2 -35.5C130 -51.8 143.8 -64 160 -64C161.2 -64 162.3 -63.9 163.5 -63.8C181.1 -61.9 193.7 -46.1 191.8 -28.5L181.7 64.3C180.2 77.3 174.8 89.4 166.1 99.3L122.8 148.3L140.4 218.6L147.2000000000001 198.2C151.3000000000001 185.7000000000001 159.1000000000001 174.8 171.7000000000001 165.6L222.8000000000001 133.1C227.4000000000001 130.2000000000001 234.9000000000001 128.5 240.0000000000001 128.1H400C405.1 128.5 412.6 130.2000000000001 417.2 133.1L468.3 165.6C480.9 174.8 488.7 185.6 492.8 198.2L499.6 218.6L517.2 148.3L473.9 99.3C465.2 89.4 459.8 77.3 458.3 64.3L448.2 -28.5C446.3 -46.1 459 -61.9 476.5 -63.8C477.7 -63.9 478.8 -64 480 -64C496.1 -64 510 -51.9 511.8 -35.5L521.9 57.1L589.1 133C602.7 148.5 608.1 169.7 603.5 189.7zM46.3 89.9L2.3 -20.1C-4.3 -36.5 3.7 -55.1 20.1 -61.7C36.9 -68.3000000000001 55.2 -60.0000000000001 61.7 -43.9L89.4 25.3L87.4 43.4999999999999L46.3 89.8999999999999z" />
+    <glyph glyph-name="percent"
+      unicode="&#xF295;"
+      horiz-adv-x="448" d=" M112 224C173.9 224 224 274.1 224 336S173.9 448 112 448S0 397.9 0 336S50.1 224 112 224zM112 384C138.5 384 160 362.5 160 336S138.5 288 112 288S64 309.5 64 336S85.5 384 112 384zM336 160C274.1 160 224 109.9 224 48S274.1 -64 336 -64S448 -13.9 448 48S397.9 160 336 160zM336 0C309.5 0 288 21.5 288 48S309.5 96 336 96S384 74.5 384 48S362.5 0 336 0zM392.3 447.8L423.9000000000001 447.9C443.3 448 454.8 426.1 443.6 410.1L77.4 -53.6A23.95 23.95 0 0 0 57.8 -63.8L24.4 -63.9C4.9 -63.9 -6.5 -42.0000000000001 4.7 -26.1L372.7 437.6C377.2 444 384.5 447.8 392.3 447.8z" />
+    <glyph glyph-name="percentage"
+      unicode="&#xF541;"
+      horiz-adv-x="384" d=" M109.25 274.75C134.24 299.74 134.24 340.27 109.25 365.26C84.26 390.25 43.73 390.25 18.74 365.26C-6.25 340.27 -6.25 299.74 18.74 274.75C43.74 249.75 84.26 249.75 109.25 274.75zM365.25 109.26C340.26 134.25 299.73 134.25 274.74 109.26C249.75 84.27 249.75 43.74 274.74 18.75C299.73 -6.24 340.26 -6.24 365.25 18.75C390.25 43.74 390.25 84.26 365.25 109.26zM363.31 340.69L340.69 363.31C328.19 375.81 307.93 375.81 295.44 363.31L20.69 88.56C8.19 76.06 8.19 55.8 20.69 43.31L43.31 20.69C55.81 8.19 76.07 8.19 88.56 20.69L363.31 295.44C375.81 307.93 375.81 328.19 363.31 340.69z" />
+    <glyph glyph-name="person-booth"
+      unicode="&#xF756;"
+      horiz-adv-x="576" d=" M192 -48C192 -56.8 199.2 -64 208 -64H240C248.8 -64 256 -56.8 256 -48V128H192V-48zM224 224H173.1L127.9 269.3C115.8 281.4 99.7 288 82.7 288H64C46.9 288 30.8 281.3 18.7 269.2C6.7 257.1 0 241 0 223.9L0.2 128L0 -32C0 -49.7 14.3 -64 31.9 -64C49.5 -64 63.9 -49.7 63.9 -32L64 68.7C64.9 68.2 65.6 67.4 66.5 67L95.6 24V-32C95.6 -49.7 109.9 -64 127.6 -64S159.6 -49.7 159.6 -32V24.5C159.6 34.4 157.3 44.3 152.9 53.1L111.7 114.4V195L132.6 174.1C141.7 165 153.7 160 166.5 160H224C241.7 160 256 174.3 256 192S241.7 224 224 224zM64 320C90.5 320 112 341.5 112 368S90.5 416 64 416S16 394.5 16 368S37.5 320 64 320zM288 416L319.5 192.9L288.6 38.3C284.3 16.7 301.6 0 320 0C335.2 0 348 9.1 352.3 30.4C353.2 13.5 366.9000000000001 0 384 0C401.7 0 416 14.3 416 32C416 14.3 430.3 0 448 0S480 14.3 480 32V448H288V416zM192 416V256H256V448H224C206.3 448 192 433.7 192 416zM544 448H512V-48C512 -56.8 519.2 -64 528 -64H560C568.8 -64 576 -56.8 576 -48V416C576 433.7 561.7 448 544 448z" />
+    <glyph glyph-name="person-carry"
+      unicode="&#xF4CF;"
+      horiz-adv-x="384" d=" M0 -31.9C0 -49.6 14.3 -63.9 32 -63.9S64 -49.6 64 -31.9V42.6C48 56.3 0.6 97.2 0 97.7V-31.9zM368 352H208C199.2 352 192 344.8 192 336V224H166.6L133.3 285.8C122.2 306.9 100.5 320 76.7 320H48C21.5 320 0 298.5 0 272V169C0 150.3 8.2 132.6 22.4 120.4L98.4 55.3L112.5 -37.2C113.5 -42.9 122.6 -67.9000000000001 149.3 -63.5000000000001C166.7 -60.6000000000001 178.5 -44.1000000000001 175.6 -26.7L161.5 65.8C159 80.6 151.4 94.1 140 103.9L96 141.6V219.9L128 160H368C376.8 160 384 167.2 384 176V336C384 344.9 376.8 352 368 352zM80 352C106.5 352 128 373.5 128 400S106.5 448 80 448S32 426.5 32 400S53.5 352 80 352z" />
+    <glyph glyph-name="person-dolly-empty"
+      unicode="&#xF4D1;"
+      horiz-adv-x="512" d=" M0 -31.9C0 -49.6 14.3 -63.9 32 -63.9S64 -49.6 64 -31.9V42.6C48 56.3 0.5 97.2 0 97.7V-31.9zM503.4 74.2000000000001C502.3 78.5000000000001 497.9 81.0000000000001 493.6 79.9L339.5 38.6C329.7 51.5 315.3 60.5 298.6 63.1L239.2 284.7000000000001C238.1 289 233.7 291.5 229.4 290.4L198.5 282.1C194.2 281 191.7 276.6 192.8 272.3L205.7 224.1H166.7L133.4 285.9C122.3000000000001 307 100.6 320.1 76.7 320.1H48C21.5 320.1 0 298.6 0 272.1V169.1C0 150.4 8.2 132.7 22.4 120.5L98.4 55.4L112.5 -37.1C113.5 -42.8 122.6 -67.8000000000001 149.3 -63.4C166.7 -60.5000000000001 178.5 -44.0000000000001 175.6 -26.6L161.5 65.9C159 80.7 151.4 94.2 140 104L96 141.7V220L128 160.1H222.8L251.7 52.3C235.3 40.7 224.5 21.7 224.5 0.1C224.5 -35.2 253.2 -63.9 288.5 -63.9C321.2 -63.9 347.8 -39.4 351.7 -7.8L505.9 33.5000000000001C510.2 34.6000000000001 512.6999999999999 39.0000000000001 511.6 43.3000000000001L503.4 74.2000000000001zM288.6 -15.9C279.8 -15.9 272.6 -8.7 272.6 0.1S279.8 16.1 288.6 16.1S304.6 8.9 304.6 0.1S297.5 -15.9 288.6 -15.9zM80 352C106.5 352 128 373.5 128 400S106.6 448 80 448S32 426.5 32 400S53.5 352 80 352z" />
+    <glyph glyph-name="person-dolly"
+      unicode="&#xF4D0;"
+      horiz-adv-x="512" d=" M331.1 87.5C333.4000000000001 79 342.2000000000001 73.9 350.7000000000001 76.2L467.7 107.5C476.2 109.8 481.3000000000001 118.6 479.0000000000001 127.1L447.6 244C445.3 252.5 436.5 257.6 428 255.3L311 224C302.5 221.7 297.4 212.9 299.7 204.4L331.1 87.5zM0 -31.9C0 -49.6 14.3 -63.9 32 -63.9S64 -49.6 64 -31.9V42.6C48 56.3 0.5 97.2 0 97.7V-31.9zM503.4 74.2000000000001C502.3 78.5000000000001 497.9 81.0000000000001 493.6 79.9L339.5 38.6C329.7 51.5 315.3 60.5 298.6 63.1L239.2 284.7000000000001C238.1 289 233.7 291.5 229.4 290.4L198.5 282.1C194.2 281 191.7 276.6 192.8 272.3L205.7 224.1H166.7L133.4 285.9C122.3000000000001 307 100.6 320.1 76.7 320.1H48C21.5 320.1 0 298.6 0 272.1V169.1C0 150.4 8.2 132.7 22.4 120.5L98.4 55.4L112.5 -37.1C113.5 -42.8 122.6 -67.8000000000001 149.3 -63.4C166.7 -60.5000000000001 178.5 -44.0000000000001 175.6 -26.6L161.5 65.9C159 80.7 151.4 94.2 140 104L96 141.7V220L128 160.1H222.8L251.7 52.3C235.3 40.7 224.5 21.7 224.5 0.1C224.5 -35.2 253.2 -63.9 288.5 -63.9C321.2 -63.9 347.8 -39.4 351.7 -7.8L505.9 33.5000000000001C510.2 34.6000000000001 512.6999999999999 39.0000000000001 511.6 43.3000000000001L503.4 74.2000000000001zM288.6 -15.9C279.8 -15.9 272.6 -8.7 272.6 0.1S279.8 16.1 288.6 16.1S304.6 8.9 304.6 0.1S297.5 -15.9 288.6 -15.9zM80 352C106.5 352 128 373.5 128 400S106.6 448 80 448S32 426.5 32 400S53.5 352 80 352z" />
+    <glyph glyph-name="person-sign"
+      unicode="&#xF757;"
+      horiz-adv-x="512" d=" M144 352C170.5 352 192 373.5 192 400S170.4 448 144 448S96 426.5 96 400S117.5 352 144 352zM501.5 381.4L433.8 406L439.3 421C442.3 429.3 438 438.5 429.7 441.5L414.7 447C406.4 450 397.2 445.7 394.2 437.4L388.7 422.4L321.1 447C312.8 450 303.6 445.7 300.6 437.4L256.8 317.1C253.8 308.8 258.1 299.6 266.4000000000001 296.6L334 272L321 236L273.2 252L223.9 301.3C211.8 313.4 195.8 320.1 178.7 320.1H115.8C91.4 320.1 69.5 306.5 58.6 284.7000000000001L3.4 174.3C-4.5 158.5 1.9 139.3 17.7 131.4C22.3 129.1 27.2 128.0000000000001 32 128.0000000000001C43.7 128.0000000000001 55 134.5000000000001 60.6 145.7000000000001L80 184.4V129.6L64.1 -28.8C62.4 -46.4 75.2 -62.1 92.7 -63.8C93.8 -63.9 94.9 -64 95.9 -64C112.1 -64 126 -51.7 127.7 -35.2L140.9 96H156.2L192 24.5V-32C192 -49.7 206.3 -64 224 -64S256 -49.7 256 -32V24.5C256 34.4 253.7 44.3 249.3 53.1L208.1 135.6V226.8L228.1 206.8C235.1 199.8 243.7 194.5 253.1 191.3L299.2000000000001 175.9L288.0000000000001 145.1C285.0000000000001 136.8 289.3000000000001 127.6 297.6000000000001 124.6L312.6000000000001 119.1C320.9000000000001 116.1 330.1000000000001 120.4 333.1000000000001 128.7000000000001L379.3000000000001 255.6000000000001L446.9000000000001 231.0000000000001C455.2000000000001 228.0000000000001 464.4000000000001 232.3000000000001 467.4000000000001 240.6000000000001L511 360.9C514.1 369.2 509.8 378.3 501.5 381.4z" />
+    <glyph glyph-name="phone-office"
+      unicode="&#xF67D;"
+      horiz-adv-x="576" d=" M128 32H192C209.67 32 224 46.33 224 64V416C224 433.67 209.67 448 192 448H128C110.33 448 96 433.67 96 416V64C96 46.33 110.33 32 128 32zM528 416H256V64C256 28.71 227.29 0 192 0H128C92.71 0 64 28.71 64 64V416H48C21.49 416 0 394.51 0 368V-16C0 -42.51 21.49 -64 48 -64H528C554.51 -64 576 -42.51 576 -16V368C576 394.51 554.51 416 528 416zM384 16C384 7.16 376.84 0 368 0H336C327.1600000000001 0 320 7.16 320 16V48C320 56.84 327.1600000000001 64 336 64H368C376.84 64 384 56.84 384 48V16zM384 144C384 135.16 376.84 128 368 128H336C327.1600000000001 128 320 135.16 320 144V176C320 184.84 327.1600000000001 192 336 192H368C376.84 192 384 184.84 384 176V144zM512 16C512 7.16 504.84 0 496 0H464C455.16 0 448 7.16 448 16V48C448 56.84 455.16 64 464 64H496C504.84 64 512 56.84 512 48V16zM512 144C512 135.16 504.84 128 496 128H464C455.16 128 448 135.16 448 144V176C448 184.84 455.16 192 464 192H496C504.84 192 512 184.84 512 176V144zM512 256H320V352H512V256z" />
+    <glyph glyph-name="phone-plus"
+      unicode="&#xF4D2;"
+      horiz-adv-x="512" d=" M493.4 423.4L389.4 447.4C378.1 450 366.5 444.1 361.9 433.5L313.9 321.5C309.7 311.7 312.5 300.2 320.8 293.5L381.4 243.9C345.4 167.2 282.5 103.4 204.2 66.7000000000001L154.6 127.3000000000001C147.8 135.6000000000001 136.4 138.4000000000001 126.6 134.2000000000001L14.6 86.2000000000001C3.9 81.5 -2 69.9 0.6 58.6L24.6 -45.4C27.1 -56.2 36.7 -64 48 -64C304.1 -64 512 143.5 512 400C512 411.2 504.3 420.9 493.4 423.4zM16 304H80V240C80 231.2 87.2 224 96 224H128C136.8 224 144 231.2 144 240V304H208C216.8 304 224 311.2 224 320V352C224 360.8 216.8 368 208 368H144V432C144 440.8 136.8 448 128 448H96C87.2 448 80 440.8 80 432V368H16C7.2 368 0 360.8 0 352V320C0 311.2 7.2 304 16 304z" />
+    <glyph glyph-name="phone-slash"
+      unicode="&#xF3DD;"
+      horiz-adv-x="640" d=" M268.2 66.6L218.6 127.2000000000001C211.8 135.5000000000001 200.4 138.3000000000001 190.6 134.1L78.6 86.1C67.9 81.5 62.1 70 64.7 58.6L88.7 -45.4C91.2 -56.2 100.8 -64 112.1 -64C212.8 -64 305.8 -31.6 381.8 22.9L301.8 84.7C290.9 78.2 279.7 72 268.2 66.6zM633.8 -10.1L475.1 112.5C537.9 191.6 576 291.1 576 400C576 411.2 568.3 420.9 557.4 423.4L453.4 447.4C442.1 450 430.5 444.1 425.9 433.5L377.9 321.5C373.7 311.7 376.5 300.2 384.8 293.5L445.4 243.9C433.2 217.8 417.5 193.6 399.4 171.1L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L594.6 -60.5C601.6 -65.9 611.6 -64.7 617.1 -57.7L636.7 -32.4C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1z" />
+    <glyph glyph-name="phone-square"
+      unicode="&#xF098;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM94 32C86.967 32 80.943 36.873 79.384 43.627L64.386 108.627A15 15 0 0 0 73.093 125.787L143.091 155.7860000000001A15 15 0 0 0 160.609 151.4970000000001L191.606 113.6120000000001C240.55 136.5750000000001 279.903 176.4700000000001 302.387 224.3920000000001L264.501 255.3890000000001A15.000999999999998 15.000999999999998 0 0 0 260.212 272.9070000000001L290.212 342.9050000000001A15 15 0 0 0 307.372 351.6120000000001L372.372 336.6140000000001A14.997000000000002 14.997000000000002 0 0 0 384 322C384 161.708 254.055 32 94 32z" />
+    <glyph glyph-name="phone-volume"
+      unicode="&#xF2A0;"
+      horiz-adv-x="384" d=" M97.333 -58.966C-32.541 70.908 -32.348 281.286 97.333 410.967C103.031 416.665 111.86 417.599 118.596 413.389L183.413 372.876A17.187 17.187 0 0 0 190.262 351.918L157.854 270.897A17.188 17.188 0 0 0 140.185 260.178L84.375 265.7580000000001C63.324 207.497 63.763 143.287 84.375 86.2430000000001L140.186 91.8240000000001A17.188 17.188 0 0 0 157.855 81.1050000000001L190.263 0.0830000000001A17.188 17.188 0 0 0 183.414 -20.8749999999999L118.597 -61.3879999999999A17.19 17.19 0 0 0 97.333 -58.9659999999998zM247.126 352.527C258.9580000000001 332.48 258.9580000000001 307.519 247.126 287.472C243.176 280.779 234.018 279.513 228.408 284.891L222.433 290.617C218.522 294.365 217.64 300.239 220.172 305.027A32.063 32.063 0 0 1 220.172 334.972C217.6390000000001 339.76 218.522 345.634 222.433 349.382L228.408 355.108C234.0180000000001 360.486 243.176 359.22 247.126 352.527zM338.913 443.714C399.053 372.11 399.005 267.832 338.913 196.286C334.439 190.959 326.3830000000001 190.54 321.361 195.353L315.563 200.91C311.003 205.281 310.586 212.439 314.633 217.289C364.32 276.827 364.279 363.222 314.633 422.711C310.586 427.561 311.002 434.719 315.563 439.09L321.361 444.647C326.383 449.46 334.439 449.041 338.913 443.714zM292.9410000000001 398.773C328.9910000000001 352.451 329.0490000000001 287.624 292.9410000000001 241.227C288.5510000000001 235.586 280.2440000000001 234.976 275.0850000000001 239.923L269.2670000000001 245.502C264.8670000000001 249.721 264.2690000000001 256.597 267.9820000000001 261.433C294.5180000000001 295.997 294.516 344.005 267.9820000000001 378.567C264.269 383.403 264.867 390.278 269.2670000000001 394.4980000000001L275.0850000000001 400.077C280.2440000000001 405.024 288.5510000000001 404.414 292.9410000000001 398.773z" />
+    <glyph glyph-name="phone"
+      unicode="&#xF095;"
+      horiz-adv-x="512" d=" M493.4 423.4L389.4 447.4C378.1 450 366.5 444.1 361.9 433.5L313.9 321.5C309.7 311.7 312.5 300.2 320.8 293.5L381.4 243.9C345.4 167.2 282.5 103.4 204.2 66.7000000000001L154.6 127.3000000000001C147.8 135.6000000000001 136.4 138.4000000000001 126.6 134.2000000000001L14.6 86.2000000000001C3.9 81.5 -2 69.9 0.6 58.6L24.6 -45.4C27.1 -56.2 36.7 -64 48 -64C304.1 -64 512 143.5 512 400C512 411.2 504.3 420.9 493.4 423.4z" />
+    <glyph glyph-name="pi"
+      unicode="&#xF67E;"
+      horiz-adv-x="512" d=" M488 288C501.25 288 512 298.75 512 312V360C512 373.26 501.25 384 488 384H99.91C82.94 384 66.66 377.26 54.66 365.26L4.72 315.31C-5.36 305.23 1.78 288 16.03 288H128V145.54C128 106.74 115.11 69.91 91.38 39.92C84.11 30.74 85.67 17.35 93.94 9.0699999999999L128.05 -25.0400000000001C138.3 -35.2900000000001 155 -33.9800000000001 164.17 -22.7600000000001C202.93 24.67 224 83.49 224 145.54V288H288V85.42C288 30.4399999999999 325.28 -19.9400000000001 379.32 -30.0000000000001C421.58 -37.8700000000001 462.96 -22.1300000000001 488.94 10.3399999999999L506.74 31.9999999999999C515.02 42.35 513.34 57.4499999999999 502.99 65.73L465.53 95.71C455.18 103.99 440.0800000000001 102.32 431.8 91.96L414 70.33A16.806 16.806 0 0 0 400.84 64C391.56 64 384 71.56 384 80.84V288H488z" />
+    <glyph glyph-name="pie"
+      unicode="&#xF705;"
+      horiz-adv-x="576" d=" M544 208C537.56 208 533.63 209.2 529.53 211.52C494.93 311.8300000000001 400.07 384 288 384C175.9 384 81.03 311.79 46.45 211.45C42.38 209.17 38.43 208 32 208C14.33 208 0 193.67 0 176S14.33 144 32 144C64.03 144 82.02 157.47 93.92 166.39C103 173.19 106.75 176 117.45 176C128.17 176 131.92 173.19 141 166.39C152.91 157.47 170.89 144 202.91 144C234.91 144 252.89 157.48 264.79 166.41C273.8400000000001 173.19 277.5900000000001 176 288.24 176C298.88 176 302.63 173.19 311.68 166.41C323.57 157.49 341.54 144 373.54 144S423.49 157.48 435.38 166.41C444.43 173.19 448.18 176 458.82 176C469.43 176 473.16 173.19 482.2 166.42C494.06 157.48 512.02 144 544 144C561.67 144 576 158.33 576 176S561.67 208 544 208zM206.31 296.8400000000001L190.31 264.8400000000001C180.87 246.01 152.14 260.05 161.69 279.15L177.69 311.15C187.22 330.04 215.78 315.78 206.31 296.8400000000001zM304 272C304 250.83 272 250.82 272 272V304C272 325.17 304 325.18 304 304V272zM385.69 264.8400000000001L369.69 296.8400000000001C360.21 315.79 388.82 330.03 398.31 311.15L414.31 279.15C423.84 260.1 395.14 245.99 385.69 264.8400000000001zM458.8 143.96H458.78C448.6600000000001 137.0200000000001 422.5900000000001 112.0000000000001 373.5300000000001 112.0000000000001C324.42 112.0000000000001 298.38 137.0400000000001 288.2700000000001 143.96H288.1900000000001C280.86 138.94 253 112 202.91 112C153.78 112 127.74 137.02 117.57 143.96H117.35C109.01 138.26 90.66 121.33 57.75 114.76L88.71 21.88A31.996 31.996 0 0 1 119.07 0H456.94C470.71 0 482.94 8.81 487.3 21.88L518.26 114.76C485.15 121.38 465.79 139.16 458.8 143.96z" />
+    <glyph glyph-name="pig"
+      unicode="&#xF706;"
+      horiz-adv-x="576" d=" M560 256H530.49C521.72 276.04 508.85 293.7100000000001 493.11 308.4600000000001L512 384H480C450.6 384 424.61 370.5 407 349.68C399.43 350.78 391.88 352 384 352H256C178.6 352 114.05 297.03 99.22 224H56C41.2 224 29.49 237.46 32.46 252.78C34.68 264.18 45.34 272 56.95 272H57.96C61.3 272 64 274.7100000000001 64 278.04V297.96C64 301.3 61.29 304 57.96 304C29.5 304 4.1 283.6 0.47 255.38C-3.91 221.23 22.7 192 56 192H96C96 139.82 121.35 93.93 160 64.72V-16C160 -24.84 167.16 -32 176 -32H240C248.84 -32 256 -24.84 256 -16V32H384V-16C384 -24.84 391.1600000000001 -32 400 -32H464C472.84 -32 480 -24.84 480 -16V64.72A160.09 160.09 0 0 1 511.28 96H560C568.84 96 576 103.16 576 112V240C576 248.84 568.84 256 560 256zM432 192C423.1600000000001 192 416 199.16 416 208S423.1600000000001 224 432 224S448 216.84 448 208S440.84 192 432 192z" />
+    <glyph glyph-name="piggy-bank"
+      unicode="&#xF4D3;"
+      horiz-adv-x="576" d=" M560 224H530.5C521.7 244 508.9 261.7 493.1 276.5L512 352H480C450.6 352 424.6 338.5 407 317.7C399.4 318.8 391.9 320 384 320H256C178.6 320 114.1 265 99.2 192H56C41.2 192 29.5 205.5 32.5 220.8C34.7 232.2 45.4 240 57 240H58C61.3 240 64 242.7 64 246V266C64 269.3 61.3 272 58 272C29.5 272 4.1 251.6 0.5 223.4C-3.9 189.2 22.7 160 56 160H96C96 107.8 121.4 61.9 160 32.7V-48C160 -56.8 167.2 -64 176 -64H240C248.8 -64 256 -56.8 256 -48V0H384V-48C384 -56.8 391.2 -64 400 -64H464C472.8 -64 480 -56.8 480 -48V32.7C491.8 41.6 502.3 52.1 511.3 64H560C568.8 64 576 71.2 576 80V208C576 216.8 568.8 224 560 224zM432 160C423.2 160 416 167.2 416 176S423.2 192 432 192S448 184.8 448 176S440.8 160 432 160zM256 352H384C389.4 352 394.7 351.6 399.9 351.2C399.9 351.5 400 351.7 400 352C400 405 357 448 304 448S208 405 208 352C208 349.9 208.5 347.9 208.6 345.8C223.8 349.7 239.6 352 256 352z" />
+    <glyph glyph-name="pills"
+      unicode="&#xF484;"
+      horiz-adv-x="576" d=" M112 416C50.1 416 0 365.9 0 304V80C0 18.1 50.1 -32 112 -32S224 18.1 224 80V304C224 365.9 173.9 416 112 416zM160 192H64V304C64 330.5 85.5 352 112 352S160 330.5 160 304V192zM299.7 221.7C296.2 225.2 290.3 224.8 287.4 220.9C242.1 158.4 247 70.8 303.3 14.5C359.6 -41.8 447.2 -46.7 509.6999999999999 -1.4C513.6999999999999 1.5 513.9999999999999 7.4 510.4999999999999 10.9L299.7 221.7zM529.5 240.7C473.2 297 385.6 301.9 323.1 256.6C319.1 253.7 318.8 247.8 322.3 244.3L533.1 33.5C536.6 30 542.5 30.4 545.4 34.3C590.6999999999999 96.9 585.9 184.4 529.5 240.7z" />
+    <glyph glyph-name="place-of-worship"
+      unicode="&#xF67F;"
+      horiz-adv-x="640" d=" M620.61 81.45L512 128V-64H624C632.84 -64 640 -56.84 640 -48V52.04A32 32 0 0 1 620.61 81.4500000000001zM0 52.04V-48C0 -56.84 7.16 -64 16 -64H128V128L19.39 81.45A32 32 0 0 1 0 52.04zM464.46 201.32L416 230.4V345.37C416 353.86 412.63 361.99 406.62 368L331.31 443.31C325.06 449.56 314.93 449.56 308.69 443.31L233.38 368C227.38 362 224 353.86 224 345.37V230.4L175.54 201.32A31.997 31.997 0 0 1 160 173.88V-64H256V32C256 67.35 284.6600000000001 96 320 96S384 67.35 384 32V-64H480V173.88C480 185.12 474.1 195.54 464.46 201.32z" />
+    <glyph glyph-name="plane-alt"
+      unicode="&#xF3DE;"
+      horiz-adv-x="576" d=" M472 248H347.713L309.0990000000001 320H324C330.627 320 336 325.373 336 332V372C336 378.627 330.627 384 324 384H274.775L243.514 442.289A12 12 0 0 1 233.294 448H175.507C167.657 448 161.921 440.587 163.891 432.988L197.197 247.597C164.566 246.624 134.088 243.9 107.315 239.807L67.495 306.173A12 12 0 0 1 57.205 311.999H14.638C7.065 311.999 1.386 305.0710000000001 2.871 297.646L19.432 214.841C6.949 207.865 0 200.135 0 191.999S6.949 176.1330000000001 19.431 169.1570000000001L2.871 86.354C1.386 78.928 7.065 72 14.638 72.001L57.206 72.003C61.421 72.003 65.327 74.215 67.495 77.829L107.314 144.191C134.087 140.098 164.566 137.374 197.197 136.401L163.891 -48.988C161.921 -56.587 167.657 -64 175.507 -64H233.294A12 12 0 0 1 243.514 -58.289L274.775 0H324C330.627 0 336 5.373 336 12V52C336 58.627 330.627 64 324 64H309.099L347.713 136H472C529.438 136 576 161.072 576 192S529.438 248 472 248z" />
+    <glyph glyph-name="plane-arrival"
+      unicode="&#xF5AF;"
+      horiz-adv-x="640" d=" M624 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM44.81 242.34L133.55 162.34A62.60699999999999 62.60699999999999 0 0 1 159.02 148.41L446.62 70.0600000000001C473.1 62.8500000000001 501.18 61.34 527.62 68.7000000000001C557.29 76.97 571.06 89.91 574.87 104.41C578.7 118.91 573.14 137.12 551.5 159.37C532.22 179.19 507.15 192.16 480.67 199.37L383.1600000000001 225.93L282.8 417.78C281.29 423.59 276.85 428.13 271.14 429.69L206.05 447.42C195.49 450.3 185.15 442.1 185.34 430.98L233.26 266.77L131.06 294.61L103.47 362.49C101.54 367.38 97.46 371.06 92.45 372.42L52.72 383.25C42.38 386.07 32.19 378.25 32 367.37L32.23 265.5900000000001C32.42 256.68 38.26 248.25 44.81 242.34z" />
+    <glyph glyph-name="plane-departure"
+      unicode="&#xF5B0;"
+      horiz-adv-x="640" d=" M624 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM80.55 106.73C86.83 99.89 95.65 96.01 104.88 96.02L235.42 96.2000000000001A65.62 65.62 0 0 1 265.06 103.3200000000001L556.02 250.9700000000001C582.76 264.5400000000001 606.73 283.9100000000001 623.04 309.2800000000001C641.3499999999999 337.7600000000001 643.3399999999999 358.3700000000001 636.11 372.9300000000001C628.9 387.5000000000001 611.37 398.2000000000001 577.86 400.3800000000001C548.01 402.3200000000001 518.32 394.4600000000001 491.58 380.9000000000001L393.0700000000001 330.9100000000001L174.3700000000001 412.9700000000001A17.799 17.799 0 0 1 156.3700000000001 414.0800000000001L90.62 380.71C79.95 375.3 77.37 361.06 85.45 352.18L241.67 254.08L138.46 201.7L66.11 238.17A17.804 17.804 0 0 1 50.04 238.15L9.91 217.78C-0.53 212.48 -3.28 198.66 4.34 189.7L80.55 106.73z" />
+    <glyph glyph-name="plane"
+      unicode="&#xF072;"
+      horiz-adv-x="576" d=" M480 256H365.71L260.61 439.94A16.014 16.014 0 0 1 246.71 448H181.21C170.58 448 162.91 437.83 165.83 427.61L214.86 256H112L68.8 313.6C65.78 317.63 61.03 320 56 320H16.01C5.6 320 -2.04 310.2200000000001 0.49 300.12L32 192L0.49 83.88C-2.04 73.78 5.6 64 16.01 64H56C61.04 64 65.78 66.37 68.8 70.4L112 128H214.86L165.83 -43.6C162.91 -53.82 170.58 -64 181.21 -64H246.71C252.45 -64 257.75 -60.92 260.6 -55.94L365.71 128H480C515.35 128 576 156.65 576 192S515.35 256 480 256z" />
+    <glyph glyph-name="play-circle"
+      unicode="&#xF144;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM371.7 168L195.7 67C179.9 58.2 160 69.5 160 88V296C160 314.4 179.8 325.8 195.7 317L371.7 210C388.1 200.8 388.1 177.1 371.7 168z" />
+    <glyph glyph-name="play"
+      unicode="&#xF04B;"
+      horiz-adv-x="448" d=" M424.4 233.3L72.4 441.4C43.8 458.3 0 441.9 0 400.1V-16C0 -53.5 40.7 -76.1 72.4 -57.3L424.4 150.7C455.8 169.2 455.9 214.8 424.4 233.3z" />
+    <glyph glyph-name="plug"
+      unicode="&#xF1E6;"
+      horiz-adv-x="384" d=" M256 304V416C256 433.673 270.327 448 288 448S320 433.673 320 416V304H256zM368 288H16C7.163 288 0 280.837 0 272V240C0 231.163 7.163 224 16 224H32V192C32 114.594 86.969 50.029 160 35.204V-64H224V35.204C297.031 50.029 352 114.594 352 192V224H368C376.837 224 384 231.163 384 240V272C384 280.837 376.837 288 368 288zM128 304V416C128 433.673 113.673 448 96 448S64 433.673 64 416V304H128z" />
+    <glyph glyph-name="plus-circle"
+      unicode="&#xF055;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM400 164C400 157.4 394.6 152 388 152H296V60C296 53.4 290.6 48 284 48H228C221.4 48 216 53.4 216 60V152H124C117.4 152 112 157.4 112 164V220C112 226.6 117.4 232 124 232H216V324C216 330.6 221.4 336 228 336H284C290.6 336 296 330.6 296 324V232H388C394.6 232 400 226.6 400 220V164z" />
+    <glyph glyph-name="plus-hexagon"
+      unicode="&#xF300;"
+      horiz-adv-x="576" d=" M553.5 216.2C562.2 201.3 562.2 182.8 553.5 167.8L441.5 -24.2C432.9 -38.9 417.1 -48 400 -48H176C158.9 -48 143.1 -38.9 134.5 -24.2L22.5 167.8C13.8 182.7 13.8 201.2 22.5 216.2L134.5 408.2000000000001C143.1 422.9 158.9 432 176 432H400C417.1 432 432.9 422.9 441.5 408.2L553.5 216.2zM432 220C432 226.6 426.6 232 420 232H328V324C328 330.6 322.6 336 316 336H260C253.4 336 248 330.6 248 324V232H156C149.4 232 144 226.6 144 220V164C144 157.4 149.4 152 156 152H248V60C248 53.4 253.4 48 260 48H316C322.6 48 328 53.4 328 60V152H420C426.6 152 432 157.4 432 164V220z" />
+    <glyph glyph-name="plus-octagon"
+      unicode="&#xF301;"
+      horiz-adv-x="512" d=" M497.9 297.5C506.9 288.5 512 276.3 512 263.6V120.5C512 107.8 506.9 95.6 497.9 86.6L361.5 -49.9C352.5 -58.9 340.3 -64 327.6 -64H184.5C171.8 -64 159.6 -58.9 150.6 -49.9L14.1 86.5C5.1 95.5 0 107.7 0 120.4V263.5C0 276.2 5.1 288.4 14.1 297.4L150.5 433.9C159.5 442.9 171.7 448 184.4 448H327.5C340.2 448 352.4 442.9 361.4 433.9L497.9 297.5zM400 220C400 226.6 394.6 232 388 232H296V324C296 330.6 290.6 336 284 336H228C221.4 336 216 330.6 216 324V232H124C117.4 232 112 226.6 112 220V164C112 157.4 117.4 152 124 152H216V60C216 53.4 221.4 48 228 48H284C290.6 48 296 53.4 296 60V152H388C394.6 152 400 157.4 400 164V220z" />
+    <glyph glyph-name="plus-square"
+      unicode="&#xF0FE;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM368 164C368 157.4 362.6 152 356 152H264V60C264 53.4 258.6 48 252 48H196C189.4 48 184 53.4 184 60V152H92C85.4 152 80 157.4 80 164V220C80 226.6 85.4 232 92 232H184V324C184 330.6 189.4 336 196 336H252C258.6 336 264 330.6 264 324V232H356C362.6 232 368 226.6 368 220V164z" />
+    <glyph glyph-name="plus"
+      unicode="&#xF067;"
+      horiz-adv-x="448" d=" M416 240H272V384C272 401.67 257.67 416 240 416H208C190.33 416 176 401.67 176 384V240H32C14.33 240 0 225.67 0 208V176C0 158.33 14.33 144 32 144H176V0C176 -17.67 190.33 -32 208 -32H240C257.67 -32 272 -17.67 272 0V144H416C433.67 144 448 158.33 448 176V208C448 225.67 433.67 240 416 240z" />
+    <glyph glyph-name="podcast"
+      unicode="&#xF2CE;"
+      horiz-adv-x="448" d=" M267.429 -40.563C262.286 -59.573 242.858 -64 224 -64C205.143 -64 185.714 -59.573 180.572 -40.563C172.927 -12.134 160 59.102 160 92.25C160 127.406 191.142 136 224 136S288 127.406 288 92.25C288 59.301 275.129 -11.929 267.429 -40.563zM156.867 159.446C138.174 177.754 126.909 203.619 128.083 232.045C130.137 281.769 170.478 322.0010000000001 220.207 323.9260000000001C274.862 326.0420000000001 320 282.193 320 228C320 201.173 308.936 176.884 291.134 159.448C288.459 156.828 288.733 152.462 291.762 150.261C301.074 143.496 308.222 134.918 312.996 124.898C314.737 121.244 319.493 120.238 322.445 123.007C351.271 150.05 368.998 188.79 367.956 231.572C366.101 307.778 304.361 369.78 228.163 371.9409999999999C146.869 374.247 80 308.785 80 228C80 186.639 97.532 149.3 125.55 123.011C128.503 120.24 133.261 121.241 135.003 124.898C139.777 134.919 146.926 143.496 156.238 150.261C159.267 152.461 159.542 156.827 156.867 159.446zM224 448C100.204 448 0 347.815 0 224C0 134.008 52.602 58.353 125.739 22.592C130.072 20.474 135.006 24.136 134.274 28.902C131.892 44.414 129.932 59.848 128.868 73.241C128.722 75.077 127.719 76.727 126.19 77.753C78.79 109.559 47.626 163.769 48.003 225.1C48.595 321.337 127.293 399.748 223.532 399.999C320.793 400.253 400 321.203 400 224C400 162.068 367.842 107.51 319.35 76.133C318.351 62.0960000000001 316.281 45.545 313.726 28.903C312.994 24.136 317.929 20.474 322.261 22.593C395.227 58.273 448 133.813 448 224C448 347.795 347.815 448 224 448zM224 288C188.654 288 160 259.346 160 224S188.654 160 224 160S288 188.654 288 224S259.346 288 224 288z" />
+    <glyph glyph-name="podium-star"
+      unicode="&#xF758;"
+      horiz-adv-x="448" d=" M432 304H111.4C117.7 334.9 142.1 359.3 174.1 366C182.8 357.3 194.8 352 208 352H272C298.5 352 320 373.5 320 400S298.5 448 272 448H208C185.9 448 167.6 433 161.9 412.8C109.8 401.2 70.1 357.8 63.3 304H16C7.2 304 0 296.8 0 288V272C0 263.2 7.2 256 16 256H432C440.8 256 448 263.2 448 272V288C448 296.8 440.8 304 432 304zM400 -16H361.8L384 224H64L86.2 -16H48C39.2 -16 32 -23.2 32 -32V-48C32 -56.8 39.2 -64 48 -64H400C408.8 -64 416 -56.8 416 -48V-32C416 -23.2 408.8 -16 400 -16zM304.5 121.3L271.5 89.1L279.3 43.6C280.7 35.4 272.1 29.3 264.8 33.1L224 54.6L183.2 33.1C176 29.3 167.3 35.4 168.7 43.6L176.5 89.1L143.5 121.3C137.6 127.1 140.8 137.2 149 138.4L194.6 145.1L215 186.5C218.7 194 229.3 193.9 232.9 186.5L253.3 145.1L298.9000000000001 138.4C307.1 137.2000000000001 310.4000000000001 127.1 304.5000000000001 121.3z" />
+    <glyph glyph-name="podium"
+      unicode="&#xF680;"
+      horiz-adv-x="448" d=" M432 304H111.36C117.69 334.9 142.08 359.29 174.07 366.05C182.76 357.37 194.75 352 208 352H272C298.51 352 320 373.49 320 400S298.51 448 272 448H208C185.94 448 167.55 433.03 161.93 412.76C109.85 401.15 70.16 357.71 63.35 304H16C7.16 304 0 296.8400000000001 0 288V272C0 263.16 7.16 256 16 256H432C440.84 256 448 263.16 448 272V288C448 296.8400000000001 440.84 304 432 304zM400 -16H361.78L384 224H64L86.22 -16H48C39.16 -16 32 -23.16 32 -32V-48C32 -56.84 39.16 -64 48 -64H400C408.84 -64 416 -56.84 416 -48V-32C416 -23.16 408.84 -16 400 -16z" />
+    <glyph glyph-name="poll-h"
+      unicode="&#xF682;"
+      horiz-adv-x="448" d=" M448 16V368C448 394.5 426.5 416 400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16zM112 256C103.16 256 96 263.16 96 272V304C96 312.8400000000001 103.16 320 112 320H240C248.84 320 256 312.8400000000001 256 304V272C256 263.16 248.84 256 240 256H112zM112 160C103.16 160 96 167.16 96 176V208C96 216.84 103.16 224 112 224H336C344.84 224 352 216.84 352 208V176C352 167.16 344.84 160 336 160H112zM112 64C103.16 64 96 71.16 96 80V112C96 120.84 103.16 128 112 128H176C184.84 128 192 120.84 192 112V80C192 71.16 184.84 64 176 64H112z" />
+    <glyph glyph-name="poll-people"
+      unicode="&#xF759;"
+      horiz-adv-x="640" d=" M80 352C106.5 352 128 373.5 128 400S106.5 448 80 448S32 426.5 32 400S53.5 352 80 352zM128 112C128 138.5 106.5 160 80 160S32 138.5 32 112S53.5 64 80 64S128 85.5 128 112zM96 32H64C28.7 32 0 3.3 0 -32V-48C0 -56.8 7.2 -64 16 -64H144C152.8 -64 160 -56.8 160 -48V-32C160 3.3 131.3 32 96 32zM616 416H248C234.7 416 224 405.3 224 392V280C224 266.7 234.7 256 248 256H616C629.3 256 640 266.7 640 280V392C640 405.3 629.3 416 616 416zM576 320H512V352H576V320zM96 320H64C28.7 320 0 291.3 0 256V240C0 231.2 7.2 224 16 224H144C152.8 224 160 231.2 160 240V256C160 291.3 131.3 320 96 320zM616 128H248C234.7 128 224 117.3 224 104V-8C224 -21.3 234.7 -32 248 -32H616C629.3 -32 640 -21.3 640 -8V104C640 117.3 629.3 128 616 128zM576 32H352V64H576V32z" />
+    <glyph glyph-name="poll"
+      unicode="&#xF681;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM160 80C160 71.16 152.84 64 144 64H112C103.16 64 96 71.16 96 80V208C96 216.84 103.16 224 112 224H144C152.84 224 160 216.84 160 208V80zM256 80C256 71.16 248.84 64 240 64H208C199.16 64 192 71.16 192 80V304C192 312.8400000000001 199.16 320 208 320H240C248.84 320 256 312.8400000000001 256 304V80zM352 80C352 71.16 344.84 64 336 64H304C295.1600000000001 64 288 71.16 288 80V144C288 152.84 295.1600000000001 160 304 160H336C344.84 160 352 152.84 352 144V80z" />
+    <glyph glyph-name="poo-storm"
+      unicode="&#xF75A;"
+      horiz-adv-x="448" d=" M308 112H250.3L267.6 176.9C269.6 184.5 263.9000000000001 192 256 192H188C182 192 176.9 187.5 176.1 181.6L160.1 61.6C159.1 54.4 164.7 48 172 48H231.3L208.3 -49.2C206.5 -56.8 212.3 -64 220 -64C224.2 -64 228.2 -61.8 230.4 -58L318.4 94C323 102 317.2 112 308 112zM374.4 223.3C380.3 232.9 384 243.9 384 256C384 291.3 355.3 320 320 320H314.1C317.7000000000001 330.1 320 340.7 320 352C320 405 277 448 224 448C218.8 448 213.8 447.3 208.9 446.5C218.3 433.4 224 417.4 224 400C224 355.8 188.2 320 144 320H128C92.7 320 64 291.3 64 256C64 243.9 67.7 232.9 73.6 223.3C32.6 220 0 185.8 0 144C0 100 36 64 80 64H128.3C128.4 64.6 128.3 65.2 128.3 65.8L144.3 185.8C147.3 207.6 166 224 188 224H256C269.8 224 282.5 217.7 290.9 206.8S302.1 182 298.5 168.7L291.9 144H307.9C323.6 144 338.2 135.6 346 122C353.8 108.4 353.8 91.5 346 78L337.9 64H367.9C411.9 64 447.9 100 447.9 144C448 185.8 415.4 220 374.4 223.3z" />
+    <glyph glyph-name="poo"
+      unicode="&#xF2FE;"
+      horiz-adv-x="512" d=" M451.4 78.9C468.7 92 480 112.6 480 136C480 175.8 447.8 208 408 208H393.9C407.3 219.7 416 236.8 416 256C416 291.3 387.3 320 352 320H346.1C349.7000000000001 330.1 352 340.7 352 352C352 405 309 448 256 448C250.8 448 245.8 447.3 240.9 446.5C250.3 433.4 256 417.4 256 400C256 355.8 220.2 320 176 320H160C124.7 320 96 291.3 96 256C96 236.8 104.7 219.7 118.1 208H104C64.2 208 32 175.8 32 136C32 112.6 43.3 92 60.6 78.9C26.3 73.4 0 43.9 0 8C0 -31.8 32.2 -64 72 -64H440C479.8 -64 512 -31.8 512 8C512 43.9 485.7 73.4 451.4 78.9zM192 192C209.7 192 224 177.7 224 160S209.7 128 192 128S160 142.3 160 160S174.3 192 192 192zM351.5 53C341 25.1 293 0 256 0S171 25.1 160.5 53C158.5 58.3 162.5 64 168.3 64H343.7000000000001C349.5000000000001 64 353.5000000000001 58.3 351.5000000000001 53zM320 128C302.3 128 288 142.3 288 160S302.3 192 320 192S352 177.7 352 160S337.7 128 320 128z" />
+    <glyph glyph-name="poop"
+      unicode="&#xF619;"
+      horiz-adv-x="512" d=" M451.36 78.86C468.66 92.01 480 112.59 480 136C480 175.77 447.76 208 408 208H393.93C407.35 219.73 416 236.78 416 256C416 291.35 387.35 320 352 320H346.12C349.69 330.05 352 340.7200000000001 352 352C352 405.02 309.02 448 256 448C250.83 448 245.85 447.26 240.89 446.48C250.31 433.36 256 417.38 256 400C256 355.82 220.18 320 176 320H160C124.65 320 96 291.35 96 256C96 236.78 104.65 219.73 118.07 208H104C64.24 208 32 175.77 32 136C32 112.59 43.34 92.01 60.64 78.86C26.31 73.38 0 43.88 0 8C0 -31.76 32.24 -64 72 -64H440C479.76 -64 512 -31.76 512 8C512 43.88 485.69 73.38 451.36 78.86z" />
+    <glyph glyph-name="portrait"
+      unicode="&#xF3E0;"
+      horiz-adv-x="384" d=" M336 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H336C362.5 -64 384 -42.5 384 -16V400C384 426.5 362.5 448 336 448zM192 320C227.3 320 256 291.3 256 256S227.3 192 192 192S128 220.7 128 256S156.7 320 192 320zM304 83.2C304 72.6 294 64 281.6 64H102.4C90 64 80 72.6 80 83.2V102.4C80 134.2 110.1 160 147.2 160H152.2C164.5 154.9 177.9 152 192 152S219.6 154.9 231.8 160H236.8C273.9000000000001 160 304 134.2 304 102.4V83.2z" />
+    <glyph glyph-name="pound-sign"
+      unicode="&#xF154;"
+      horiz-adv-x="320" d=" M308 96H262.505C255.878 96 250.505 90.627 250.505 84V33.152H128V160H212C218.627 160 224 165.373 224 172V212C224 218.627 218.627 224 212 224H128V287.556C128 319.822 152.562 344.642 189.792 344.642C213.45 344.642 235.67 333.137 247.444 325.793C252.5950000000001 322.58 259.332 323.742 263.132 328.478L291.625 363.991C295.858 369.267 294.904 376.996 289.506 381.072C273.124 393.44 236.576 416 187.931 416C106.026 416 48 363.258 48 290.039V224H20C13.373 224 8 218.627 8 212V172C8 165.373 13.373 160 20 160H48V32H12C5.373 32 0 26.627 0 20V-20C0 -26.627 5.373 -32 12 -32H308C314.627 -32 320 -26.627 320 -20V84C320 90.627 314.627 96 308 96z" />
+    <glyph glyph-name="power-off"
+      unicode="&#xF011;"
+      horiz-adv-x="512" d=" M400 393.9C463 348.9 504 275.3 504 192C504 55.2 393.2 -55.7 256.5 -56C120 -56.3 8.2 55 8 191.6C7.9 274.9 48.9 348.7 111.8 393.8C123.5 402.1 139.8 398.6 146.8 386.1L162.6 358C168.5 347.5 165.7 334.2 156 327C114.5 296.2 88 247.4 88 192.1C87.9 99.8 162.5 24 256 24C347.6 24 424.6 98.2 424 193.1C423.7 244.9 399.3 294.9 355.9 327.1C346.2 334.3 343.5 347.6 349.4 358L365.2 386.1C372.2 398.5 388.4 402.2 400 393.9zM296 184V424C296 437.3 285.3 448 272 448H240C226.7 448 216 437.3 216 424V184C216 170.7 226.7 160 240 160H272C285.3 160 296 170.7 296 184z" />
+    <glyph glyph-name="pray"
+      unicode="&#xF683;"
+      horiz-adv-x="384" d=" M256 320C291.35 320 320 348.65 320 384S291.35 448 256 448S192 419.35 192 384S220.65 320 256 320zM225.37 150.25C239.43 133.53 264.37 131.16 281.3400000000001 145.03L369.3400000000001 217.05C386.43 231.03 388.93 256.24 374.9600000000001 273.33C360.99 290.44 335.7700000000001 292.92 318.6500000000001 278.95L261.2100000000001 231.95L222.3000000000001 278.26C206.8600000000001 296.65 183.0800000000001 306.18 158.3000000000001 303.59C134.1100000000001 301.11 113.0500000000001 287.32 101.93 266.67L52.56 174.64C29.16 131 43.87 78.27 86.75 50.89L131.56 16H40C17.91 16 0 -1.91 0 -24S17.91 -64 40 -64H248C282.08 -64 301.77 -21.21 276.28 4.28L166.42 114.14L201.22 179.01L225.37 150.25z" />
+    <glyph glyph-name="praying-hands"
+      unicode="&#xF684;"
+      horiz-adv-x="640" d=" M272 256.0900000000001C254.4 256.0900000000001 240 241.69 240 224.09V144.09C240 135.2500000000001 232.84 128.09 224 128.09S208 135.2500000000001 208 144.09V220.6400000000001C208 238.0300000000001 212.72 255.1100000000001 221.69 270.0300000000001L299.44 399.62C308.53 414.7800000000001 303.63 434.4300000000001 288.47 443.5300000000001C274.02 452.2 255.75 447.8300000000001 246.17 434.3200000000001C245.97 434.0900000000001 245.55 434.11 245.38 433.8400000000001L128.12 257.9400000000001C117.56 242.1 112 223.69 112 204.71V124.48L21.88 94.44A31.974000000000004 31.974000000000004 0 0 1 0 64.09V-31.91C0 -42.73 8.52 -63.91 32 -63.91C34.69 -63.91 37.41 -63.57 40.06 -62.88L219.25 -16.26C269.1600000000001 -1.99 304 44.2 304 96.09V224.09C304 241.69 289.6 256.09 272 256.09zM618.12 94.36L528 124.4V204.63C528 223.61 522.44 242.02 511.88 257.86L394.62 433.75C394.44 434.02 394.0300000000001 433.99 393.83 434.23C384.25 447.74 365.98 452.11 351.53 443.44C336.37 434.35 331.47 414.69 340.56 399.53L418.31 269.94C427.28 255.02 432 237.94 432 220.55V144C432 135.16 424.8399999999999 128 416 128S400 135.16 400 144V224C400 241.6 385.6 256 368 256S336 241.6 336 224V96C336 44.11 370.8399999999999 -2.08 420.75 -16.34L599.9399999999999 -62.96C602.5999999999999 -63.65 605.3199999999999 -63.99 607.9999999999999 -63.99C631.4799999999999 -63.99 639.9999999999999 -42.81 639.9999999999999 -31.99V64.01C639.9999999999999 77.78 631.1899999999999 90 618.1199999999999 94.36z" />
+    <glyph glyph-name="prescription-bottle-alt"
+      unicode="&#xF486;"
+      horiz-adv-x="384" d=" M360 448H24C10.8 448 0 437.2 0 424V376C0 362.8 10.8 352 24 352H360C373.2 352 384 362.8 384 376V424C384 437.2 373.2 448 360 448zM32 -32C32 -49.6 46.4 -64 64 -64H320C337.6 -64 352 -49.6 352 -32V320H32V-32zM96 152C96 156.4 99.6 160 104 160H160V216C160 220.4 163.6 224 168 224H216C220.4 224 224 220.4 224 216V160H280C284.4 160 288 156.4 288 152V104C288 99.6 284.4 96 280 96H224V40C224 35.6 220.4 32 216 32H168C163.6 32 160 35.6 160 40V96H104C99.6 96 96 99.6 96 104V152z" />
+    <glyph glyph-name="prescription-bottle"
+      unicode="&#xF485;"
+      horiz-adv-x="384" d=" M32 256H152C156.4 256 160 252.4 160 248V232C160 227.6 156.4 224 152 224H32V160H152C156.4 160 160 156.4 160 152V136C160 131.6 156.4 128 152 128H32V64H152C156.4 64 160 60.4 160 56V40C160 35.6 156.4 32 152 32H32V-32C32 -49.6 46.4 -64 64 -64H320C337.6 -64 352 -49.6 352 -32V320H32V256zM360 448H24C10.8 448 0 437.2 0 424V376C0 362.8 10.8 352 24 352H360C373.2 352 384 362.8 384 376V424C384 437.2 373.2 448 360 448z" />
+    <glyph glyph-name="prescription"
+      unicode="&#xF5B1;"
+      horiz-adv-x="384" d=" M301.26 96L379.32 174.06C385.57 180.31 385.57 190.44 379.32 196.69L356.69 219.32C350.44 225.57 340.31 225.57 334.06 219.32L256 141.26L172.04 225.22C219.31 231.2 256 271.11 256 320C256 373.02 213.02 416 160 416H16C7.16 416 0 408.8400000000001 0 400V144C0 135.16 7.16 128 16 128H48C56.84 128 64 135.16 64 144V224H82.75L210.75 96L132.69 17.94C126.44 11.69 126.44 1.56 132.69 -4.69L155.32 -27.32C161.57 -33.57 171.7 -33.57 177.95 -27.32L256 50.75L334.06 -27.31C340.31 -33.56 350.44 -33.56 356.69 -27.31L379.32 -4.68C385.57 1.57 385.57 11.7 379.32 17.95L301.26 96zM64 352H160C177.64 352 192 337.64 192 320S177.64 288 160 288H64V352z" />
+    <glyph glyph-name="presentation"
+      unicode="&#xF685;"
+      horiz-adv-x="576" d=" M560 448H16C7.16 448 0 440.84 0 432V400C0 391.16 7.16 384 16 384H32V128C32 110.33 46.33 96 64 96H256V61.25L180.69 -14.06C174.44 -20.31 174.44 -30.44 180.69 -36.69L203.31 -59.31C209.56 -65.5599999999999 219.69 -65.5599999999999 225.94 -59.31L288 2.75L350.06 -59.31C356.31 -65.5599999999999 366.44 -65.5599999999999 372.69 -59.31L395.31 -36.69C401.56 -30.44 401.56 -20.31 395.31 -14.06L320 61.25V96H512C529.67 96 544 110.33 544 128V384H560C568.84 384 576 391.16 576 400V432C576 440.84 568.84 448 560 448zM480 160H96V384H480V160z" />
+    <glyph glyph-name="print-slash"
+      unicode="&#xF686;"
+      horiz-adv-x="640" d=" M192 0V96H287.2200000000001L93.47 245.75C75.78 234.36 64 214.6 64 192V80C64 71.16 71.16 64 80 64H128V-32C128 -49.67 142.33 -64 160 -64H480C484 -64 487.76 -63.07 491.29 -61.72L411.43 0H192zM633.8199999999999 -10.1L537.95 64H560C568.84 64 576 71.16 576 80V192C576 227.35 547.35 256 512 256V370.75C512 379.24 508.63 387.37 502.63 393.38L457.37 438.63C451.37 444.63 443.23 448 434.74 448H160C142.33 448 128 433.67 128 416V380.8400000000001L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM448 224H330.93L192 331.38V384H384V336C384 327.16 391.1600000000001 320 400 320H448V224zM496 152C482.75 152 472 162.75 472 176C472 189.26 482.75 200 496 200S520 189.26 520 176C520 162.75 509.25 152 496 152z" />
+    <glyph glyph-name="print"
+      unicode="&#xF02F;"
+      horiz-adv-x="512" d=" M448 256V370.75C448 379.24 444.63 387.37 438.63 393.38L393.37 438.63C387.37 444.63 379.23 448 370.74 448H96C78.33 448 64 433.67 64 416V256C28.65 256 0 227.35 0 192V80C0 71.16 7.16 64 16 64H64V-32C64 -49.67 78.33 -64 96 -64H416C433.67 -64 448 -49.67 448 -32V64H496C504.84 64 512 71.16 512 80V192C512 227.35 483.35 256 448 256zM384 0H128V96H384V0zM384 224H128V384H320V336C320 327.16 327.1600000000001 320 336 320H384V224zM432 152C418.75 152 408 162.75 408 176C408 189.26 418.75 200 432 200S456 189.26 456 176C456 162.75 445.25 152 432 152z" />
+    <glyph glyph-name="procedures"
+      unicode="&#xF487;"
+      horiz-adv-x="640" d=" M528 224H272C263.2 224 256 216.8 256 208V64H64V304C64 312.8 56.8 320 48 320H16C7.2 320 0 312.8 0 304V-48C0 -56.8 7.2 -64 16 -64H48C56.8 -64 64 -56.8 64 -48V0H576V-48C576 -56.8 583.2 -64 592 -64H624C632.8 -64 640 -56.8 640 -48V112C640 173.9 589.9 224 528 224zM136 352H262.1L289.7000000000001 296.8C295.6 285 312.4000000000001 285 318.3000000000001 296.8L368 396.2L390.1 352H512C520.8 352 528 359.2 528 368S520.8 384 512 384H409.9L382.3 439.2C376.4 451 359.6 451 353.7 439.2L304 339.8L284.1 379.6C282.7000000000001 382.3 280 384 276.9000000000001 384H136C131.6 384 128 380.4 128 376V360C128 355.6 131.6 352 136 352zM160 96C195.3 96 224 124.7 224 160S195.3 224 160 224S96 195.3 96 160S124.7 96 160 96z" />
+    <glyph glyph-name="project-diagram"
+      unicode="&#xF542;"
+      horiz-adv-x="640" d=" M384 128H256C238.33 128 224 113.67 224 96V-32C224 -49.67 238.33 -64 256 -64H384C401.67 -64 416 -49.67 416 -32V96C416 113.67 401.67 128 384 128zM192 416C192 433.67 177.67 448 160 448H32C14.33 448 0 433.67 0 416V288C0 270.33 14.33 256 32 256H127.72L200.88 127.96C211.98 147.02 232.4 160 256 160H256.28L192 272.49V320H416V384H192V416zM608 448H480C462.33 448 448 433.67 448 416V288C448 270.33 462.33 256 480 256H608C625.67 256 640 270.3300000000001 640 288V416C640 433.67 625.67 448 608 448z" />
+    <glyph glyph-name="pumpkin"
+      unicode="&#xF707;"
+      horiz-adv-x="576" d=" M352 334.79V412.19C352 418.25 348.58 423.79 343.1600000000001 426.5L303.56 446.3C295.19 450.49 285.02 446.62 281.55 437.93L244 344.07C257.27 348.8 271.57 352 288 352C313.1600000000001 352 334.23 345.88 352 334.79zM495.3 294.87C463.69 321.9 416.5 326.56 378.79 309.92C381.86 305.9500000000001 385.31 302.54 388 298C396.32 283.73 402.5 266.2200000000001 407.11 246.38C403.42 255.1900000000001 399.1500000000001 263.25 394.25 270.5C371.58 303.5 336.17 320 288 320S204.42 303.5 181.75 270.5C176.85 263.25 172.58 255.2 168.89 246.3900000000001C173.5 266.23 179.67 283.73 188 298.0000000000001C190.69 302.5400000000001 194.13 305.9500000000001 197.21 309.9200000000001C159.5 326.5600000000001 112.31 321.9000000000001 80.7 294.87C-26.9 202.86 -26.9 53.15 80.7 -38.87C119.33 -71.9 181.52 -72.21 220.82 -40.12C238.65 -55.51 260.7200000000001 -64 288 -64S337.35 -55.51 355.19 -40.12C394.49 -72.21 456.68 -71.9 495.31 -38.87C602.9 53.14 602.9 202.86 495.3 294.87z" />
+    <glyph glyph-name="puzzle-piece"
+      unicode="&#xF12E;"
+      horiz-adv-x="576" d=" M519.442 159.349C477.923 159.349 459.942 127.756 437.384 127.756C377.409 127.756 432 304 432 304S235.712 224 235.712 307.2970000000001C235.712 343.124 272 353.5470000000001 272 393.282C272 428.784 243.885 448 210.539 448C175.885 448 144.173 429.109 144.173 391.654C144.173 350.29 175.884 332.377 175.884 309.904C175.885 240.281 0 281.242 0 281.242V-51.995S178.635 -93.042 178.635 -23.333C178.635 -0.86 138.635 16.774 138.635 58.138C138.635 95.594 167.885 114.484 202.212 114.484C235.885 114.484 264 95.268 264 59.767C264 20.032 227.712 9.609 227.712 -26.218C227.712 -87.021 357.387 -51.948 408.942 -51.948C408.942 -51.948 374.217 68.153 434.769 68.153C470.731 68.153 481.192 32.001 521.077 32.001C556.712 32 576 60.01 576 93.557C576 127.756 557.038 159.3490000000001 519.442 159.3490000000001z" />
+    <glyph glyph-name="qrcode"
+      unicode="&#xF029;"
+      horiz-adv-x="448" d=" M0 224H192V416H0V224zM64 352H128V288H64V352zM256 416V224H448V416H256zM384 288H320V352H384V288zM0 -32H192V160H0V-32zM64 96H128V32H64V96zM416 160H448V32H352V64H320V-32H256V160H352V128H416V160zM416 0H448V-32H416V0zM352 0H384V-32H352V0z" />
+    <glyph glyph-name="question-circle"
+      unicode="&#xF059;"
+      horiz-adv-x="512" d=" M504 192C504 55.003 392.957 -56 256 -56S8 55.003 8 192C8 328.9170000000001 119.043 440 256 440S504 328.9170000000001 504 192zM262.655 358C208.158 358 173.4 335.043 146.106 294.242C142.57 288.956 143.753 281.827 148.821 277.984L183.52 251.674C188.725 247.727 196.141 248.666 200.185 253.796C218.049 276.454 230.298 289.593 257.488 289.593C277.9169999999999 289.593 303.1859999999999 276.445 303.1859999999999 256.635C303.1859999999999 241.659 290.8229999999999 233.968 270.652 222.659C247.128 209.472 216 193.059 216 152V148C216 141.373 221.373 136 228 136H284C290.627 136 296 141.373 296 148V149.333C296 177.795 379.1860000000001 178.98 379.1860000000001 256C379.1860000000001 314.0020000000001 319.021 358 262.6550000000001 358zM256 110C230.635 110 210 89.365 210 64C210 38.636 230.635 18 256 18S302 38.636 302 64C302 89.365 281.365 110 256 110z" />
+    <glyph glyph-name="question-square"
+      unicode="&#xF2FD;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM224 18C198.635 18 178 38.636 178 64C178 89.365 198.635 110 224 110S270 89.365 270 64C270 38.636 249.365 18 224 18zM264 149.333V148C264 141.373 258.627 136 252 136H196C189.373 136 184 141.373 184 148V152C184 193.059 215.128 209.472 238.652 222.66C258.823 233.969 271.186 241.66 271.186 256.636C271.186 276.4460000000001 245.917 289.594 225.488 289.594C198.298 289.594 186.05 276.455 168.185 253.797C164.14 248.667 156.725 247.728 151.52 251.675L116.821 277.985C111.753 281.828 110.57 288.957 114.106 294.2430000000001C141.4 335.043 176.158 358 230.655 358C287.021 358 347.1860000000001 314.002 347.1860000000001 256C347.1860000000001 178.98 264 177.795 264 149.333z" />
+    <glyph glyph-name="question"
+      unicode="&#xF128;"
+      horiz-adv-x="384" d=" M202.021 448C122.202 448 70.503 415.2970000000001 29.914 356.974C22.551 346.394 24.821 331.8880000000001 35.092 324.1L78.23 291.391C88.603 283.526 103.362 285.365 111.483 295.539C136.532 326.92 155.113 344.988 194.24 344.988C225.004 344.988 263.0560000000001 325.189 263.0560000000001 295.357C263.0560000000001 272.805 244.4390000000001 261.223 214.0630000000001 244.193C178.6400000000001 224.333 131.7640000000001 199.617 131.7640000000001 137.788V128C131.7640000000001 114.745 142.5090000000001 104 155.7640000000001 104H228.2350000000001C241.4900000000001 104 252.2350000000001 114.745 252.2350000000001 128V133.773C252.2350000000001 176.6330000000001 377.5030000000001 178.418 377.5030000000001 294.4000000000001C377.504 381.7440000000001 286.902 448 202.021 448zM192 74.541C153.804 74.541 122.729 43.466 122.729 5.27C122.729 -32.925 153.804 -64 192 -64S261.271 -32.925 261.271 5.271S230.1960000000001 74.541 192 74.541z" />
+    <glyph glyph-name="quidditch"
+      unicode="&#xF458;"
+      horiz-adv-x="640" d=" M256.5 231.2L343.2 122S326.6 19.6 266.6 -28.1C206.7 -75.7999999999999 0 -62.2 0 -62.2S3.8 -39.1 11 -6.8L105.6 105.4C109.6 110.1 104.7 117 99 114.9L38.6 92.8C53 134.5 71.3 172.8 93.2 190.3C153.1 238.1 256.5 231.2 256.5 231.2zM494.5 96.2C450.5 96.2 414.7 60.4 414.7 16.3C414.7 -27.8000000000001 450.4 -63.6 494.5 -63.6C538.6 -63.6 574.3 -27.8 574.3 16.3C574.3 60.4999999999999 538.5 96.1999999999999 494.4999999999999 96.1999999999999zM636.5 417L616.7 442C611.2 448.9 601.2 450 594.3000000000001 444.6L361.8 266.7L327.7 309.7C322.6 316.1 312.6 314.9 309.1 307.5L283.8 252.9L370.5 143.7L429.3 156.1C437.3 157.8 440.7 167.3 435.6 173.7L401.5 216.6L634 394.5C640.9 400 642 410.1 636.5 417z" />
+    <glyph glyph-name="quote-left"
+      unicode="&#xF10D;"
+      horiz-adv-x="512" d=" M464 192H384V256C384 291.3 412.7 320 448 320H456C469.3 320 480 330.7 480 344V392C480 405.3 469.3 416 456 416H448C359.6 416 288 344.4 288 256V16C288 -10.5 309.5 -32 336 -32H464C490.5 -32 512 -10.5 512 16V144C512 170.5 490.5 192 464 192zM176 192H96V256C96 291.3 124.7 320 160 320H168C181.3 320 192 330.7 192 344V392C192 405.3 181.3 416 168 416H160C71.6 416 0 344.4 0 256V16C0 -10.5 21.5 -32 48 -32H176C202.5 -32 224 -10.5 224 16V144C224 170.5 202.5 192 176 192z" />
+    <glyph glyph-name="quote-right"
+      unicode="&#xF10E;"
+      horiz-adv-x="512" d=" M464 416H336C309.5 416 288 394.5 288 368V240C288 213.5 309.5 192 336 192H416V128C416 92.7 387.3 64 352 64H344C330.7 64 320 53.3 320 40V-8C320 -21.3 330.7 -32 344 -32H352C440.4 -32 512 39.6 512 128V368C512 394.5 490.5 416 464 416zM176 416H48C21.5 416 0 394.5 0 368V240C0 213.5 21.5 192 48 192H128V128C128 92.7 99.3 64 64 64H56C42.7 64 32 53.3 32 40V-8C32 -21.3 42.7 -32 56 -32H64C152.4 -32 224 39.6 224 128V368C224 394.5 202.5 416 176 416z" />
+    <glyph glyph-name="quran"
+      unicode="&#xF687;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM301.08 302.18C301.68 303.39 302.84 304 304 304S306.32 303.39 306.92 302.18L318.1 279.53L343.1 275.9C345.7700000000001 275.51 346.8400000000001 272.23 344.9100000000001 270.3400000000001L326.8200000000001 252.71L331.0900000000001 227.82C331.4500000000001 225.71 329.7800000000001 224 327.8800000000001 224C327.3800000000001 224 326.8600000000001 224.12 326.3600000000001 224.38L304 236.13L281.64 224.38C281.14 224.12 280.62 224 280.12 224C278.2200000000001 224 276.55 225.71 276.9100000000001 227.82L281.18 252.71L263.0900000000001 270.34C261.1500000000001 272.23 262.2200000000001 275.51 264.9000000000001 275.9L289.8900000000001 279.53L301.0800000000001 302.18zM243.19 371.19C256.86 371.19 270.45 368.7000000000001 283.57 363.7800000000001A6.775 6.775 0 1 0 281.19 350.6600000000001C280.52 350.6600000000001 278.1 350.87 277.06 350.87C224.75 350.87 182.2 308.32 182.2 256.01C182.2 203.71 224.75 161.15 277.06 161.15C278.09 161.15 280.54 161.36 281.19 161.36C285.12 161.36 287.99 158.22 287.99 154.58C287.99 151.6 286.05 149.07 283.37 148.16C270.3 143.29 256.7800000000001 140.82 243.18 140.82C179.67 140.81 128 192.49 128 256C128 319.52 179.67 371.19 243.19 371.19zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="rabbit-fast"
+      unicode="&#xF709;"
+      horiz-adv-x="576" d=" M135.52 35.33A15.99 15.99 0 0 1 128 21.76V-15.98C128 -28.55 141.82 -36.21 152.48 -29.55L219.17 10.32L171.32 58.17L135.52 35.33zM552.28 230.75L495.86 265.37C495.8 279.32 493.58 296.14 488.79 314.04C477.47 356.28 456.8799999999999 387.47 442.8 383.7C428.72 379.93 426.48 342.62 437.8 300.38C438.45 297.94 439.24 295.68 439.95 293.32C435.06 299.4 429.7199999999999 305.55 423.64 311.64C392.7099999999999 342.56 359.29 359.28 348.9799999999999 348.97S355.3799999999999 305.24 386.3099999999999 274.31C398.9799999999999 261.64 411.9799999999999 251.54 423.7299999999999 244.53C420.5899999999999 238.77 418.0199999999999 232.47 416.8399999999999 225.21C416.3499999999999 222.18 416.13 219.06 416.0899999999999 215.9C364.55 252.89 261.59 320 192 320C139.92 320 106.79 291.76 87.28 265.91C85.51 268.61 84.32 271.57 81.95 273.94C63.2 292.69 32.81 292.69 14.07 273.94C-4.67 255.2 -4.67 224.8 14.07 206.06C30.47 189.67 55.36 188.49 73.99 200.77L265.39 9.37C271.39 3.37 279.53 0 288.02 0H432.02C440.86 0 448.02 7.16 448.02 16V32C448.02 49.67 433.69 64 416.02 64H320.02V119.59C320.02 155.12 296.16 186.75 262 196.5L219.62 208.61C211.12 211.05 206.2 219.91 208.62 228.39C211.06 236.9100000000001 220.03 241.7200000000001 228.4 239.39L270.7800000000001 227.2800000000001C318.59 213.62 352 169.34 352 119.59V96L416 128H519.35C550.64 128 576 153.36 576 184.65A56.65999999999999 56.65999999999999 0 0 1 552.28 230.75zM496 192C487.16 192 480 199.16 480 208S487.16 224 496 224S512 216.84 512 208S504.84 192 496 192z" />
+    <glyph glyph-name="rabbit"
+      unicode="&#xF708;"
+      horiz-adv-x="448" d=" M445.54 -39.52L352 110.15V176H359.35C390.6400000000001 176 416 201.36 416 232.65A56.65999999999999 56.65999999999999 0 0 1 392.28 278.75L343.63 313.5C342.53 314.04 341.36 314.24 340.25 314.7100000000001C348.05 327.2 355.46 344.4700000000001 360.79 364.37C372.11 406.61 369.87 443.92 355.79 447.69C341.7100000000001 451.46 321.12 420.28 309.8 378.03C307.08 367.88 305.19 358.06 304.01 348.88C302.83 358.06 300.94 367.88 298.22 378.03C286.89 420.28 266.3 451.46 252.22 447.69S235.9 406.61 247.22 364.37C254.16 338.4700000000001 264.59 316.8300000000001 274.86 304.75C265.75 296.82 258.96 286.25 256.83 273.2C256.2899999999999 269.88 256.01 266.48 256.01 263.01V192H243.2099999999999C160.0199999999999 192 90.2799999999999 135.23 70.0899999999999 58.39C63.44 61.85 56.01 64 48 64C21.49 64 0 42.51 0 16S21.49 -32 48 -32C55.93 -32 63.3 -29.89 69.89 -26.49C79.98 -48.58 102.13 -64 128 -64H272C280.84 -64 288 -56.84 288 -48V-32C288 -14.33 273.67 0 256 0H233.41L307.76 60.18L380.67 -56.48A15.99 15.99 0 0 1 394.24 -64H431.98C444.54 -64 452.1999999999999 -50.18 445.54 -39.52zM336 240C327.1600000000001 240 320 247.16 320 256S327.1600000000001 272 336 272S352 264.8400000000001 352 256S344.84 240 336 240z" />
+    <glyph glyph-name="racquet"
+      unicode="&#xF45A;"
+      horiz-adv-x="640" d=" M125.9 101.5L182.6 21.5L61.9 -61.1C54.7 -66.1 44.7 -64.4 39.7 -57.2L2.9 -5.4C-2.2 1.8 -0.5 11.7 6.6 16.9C6.7 16.8 125.9 101.5 125.9 101.5zM528.7 118.2C479.6 83.4 424.8000000000001 66.2 375.2000000000001 66.2C347.6 66.2 290.7000000000001 81.3 203.3000000000001 47.6L157.6 112.1C190.3 150.3 214.3 195.3 225.3 244.8C237.5 299.5 274.8 355.3 332.1 395.9C432.6 467.1 560.3 466.1 615.5 388.2C669.8 311.5 630.9 190.6 528.7 118.1999999999999zM257.5000000000001 112.3C245.8000000000001 124.6 245.5000000000001 124 236.3000000000001 142C228.4000000000001 127.9 220.0000000000001 114.1 210.1000000000001 101C225.8000000000001 105.9 241.6000000000001 109.5 257.5000000000001 112.3zM485.9 384C379.5 384 307.3 294 290.9 242.9C269.6 176.7 304.2 130.1 374.8 130.1C458.9 130.1 545.9 196.9 569.8 271.2000000000001C591.1 337.3 556.5 384 485.9 384z" />
+    <glyph glyph-name="radiation-alt"
+      unicode="&#xF7BA;"
+      horiz-adv-x="496" d=" M184 192H104.9C95.7 192 88 184.3 88.9 175.2C93.5 131.6 115.9 93.4 148.4 67.4C156 61.3 167.2 62.9 172.4 71.2L214.1 138C196.1 149.2 184 169.2 184 192zM281.8 246.1L323.6 313C328.5 320.8 326 331.4 317.8 335.5C296.7 345.9 273.1 352 248 352S199.3 345.9 178.1 335.5C169.9 331.4 167.5 320.8 172.3 313L214.1 246.1C223.9 252.3 235.5 256 247.9 256S272 252.3 281.8 246.1zM391.1 192H312C312 169.2 299.9 149.2 281.8 137.9L323.5 71.1C328.7 62.8 339.9 61.2 347.5 67.3C380.1 93.3 402.4 131.5 407 175.1C408.1 184.3 400.3 192 391.1 192zM248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 8C146.5 8 64 90.5 64 192S146.5 376 248 376S432 293.5 432 192S349.5 8 248 8zM248 224C230.3 224 216 209.7 216 192S230.3 160 248 160S280 174.3 280 192S265.7 224 248 224z" />
+    <glyph glyph-name="radiation"
+      unicode="&#xF7B9;"
+      horiz-adv-x="496" d=" M167.8 191.8H16.2C7.1 191.8 -0.6 184.1 0 175C5.1 99.2 44.4 32.8 102.5 -9.2C109.9 -14.5 120.4 -12.1 125.2 -4.4L205.6 124C183 138.3 167.8 163.2 167.8 191.8zM205.6 259.5C217.9 267.2 232.4000000000001 271.9 248.0000000000001 271.9S278 267.2000000000001 290.4000000000001 259.5L370.8 388C375.6 395.7 373.2 406.1 365.2 410.4C330.3 429.2 290.4 440 248 440S165.7 429.2 130.8 410.4C122.8 406.1 120.4 395.6 125.2 388L205.6 259.5zM248.0000000000001 239.8C221.5 239.8 200 218.3 200 191.8S221.5 143.8 248.0000000000001 143.8S296 165.3 296 191.8S274.5 239.8 248 239.8zM479.8000000000001 191.8H328.2C328.2 163.2 313 138.3 290.4 124.1L370.8 -4.3C375.6 -11.9999999999999 386.1 -14.4999999999999 393.5 -9.1C451.6 32.9 490.9 99.3000000000001 495.9999999999999 175.1C496.6 184.1 488.8999999999999 191.8 479.8 191.8z" />
+    <glyph glyph-name="rainbow"
+      unicode="&#xF75B;"
+      horiz-adv-x="576" d=" M268.3 415.3C115.4 405.1 0 271.1 0 117.8V-16C0 -24.8 7.2 -32 16 -32H48C56.8 -32 64 -24.8 64 -16V128C64 261.2 180.9 367.7 317.5 350.1C430.4 335.6 512 234 512 120.2V-16C512 -24.8 519.2 -32 528 -32H560C568.8 -32 576 -24.8 576 -16V128C576 293.3 436 426.6 268.3 415.3zM262.7 318.4C166 306 96 218.9 96 121.3V-16C96 -24.8 103.2 -32 112 -32H144C152.8 -32 160 -24.8 160 -16V128C160 202.8 224.5 262.8 300.8 255.4C367.3 248.9 416 189.2 416 122.3V-16C416 -24.8 423.2 -32 432 -32H464C472.8 -32 480 -24.8 480 -16V128C480 242.2 379.8 333.4 262.7 318.4zM268.9 222.1C223.3 213.2 192 170.6 192 124.1999999999999V-16C192 -24.8 199.2 -32 208 -32H240C248.8 -32 256 -24.8 256 -16V128C256 145.6 270.3 160 288 160S320 145.6 320 128V-16C320 -24.8 327.2 -32 336 -32H368C376.8 -32 384 -24.8 384 -16V128C384 187.2 330.2 234 268.9 222.1z" />
+    <glyph glyph-name="raindrops"
+      unicode="&#xF75C;"
+      horiz-adv-x="448" d=" M216 311.7C216 346.6 184.2 359.6 169.3 409.1C166.8 418.1 153.6 418.5 150.7 409.1C135.8 359.8 104 346.4 104 311.7C104 280.9 129 256 160 256S216 280.9 216 311.7zM46.7 217.1C31.8 167.8 0 154.4 0 119.7C0 88.9 25 64 56 64S112 88.9 112 119.7C112 154.6 80.2 167.6 65.3 217.1C62.8 226.1 49.6 226.5 46.7 217.1zM341.2 304.8C335.4 324.6 305.2 325.5 298.7 304.8C264.7 196.4 192 166.9 192 90.4C192 22.7 249.2 -32 320 -32S448 22.8 448 90.4C448 167.3 375.4 195.9 341.2 304.8z" />
+    <glyph glyph-name="ram"
+      unicode="&#xF70A;"
+      horiz-adv-x="640" d=" M622.25 342.04L576 364.78V384C576 401.67 561.67 416 544 416H471.03C453.45 435.5 428.26 448 400 448C347.06 448 304 404.94 304 352C304 304.54 338.7 265.28 384.02 257.62C378.79 256.74 373.49 256 368 256C316.46 256 274.74 296.7100000000001 272.44 347.68C266.54 350.31 260.15 352 253.11 352C240.64 352 229.11 347.2 220.8 339.2C212.16 347.2 200.64 352 188.16 352C175.04 352 163.19 346.56 154.55 338.25C143.36 347.53 128.32 352 112.96 348.48C95.37 344.64 81.93 331.53 77.12 315.2C60.48 318.08 42.89 312 31.68 297.92C20.16 283.84 18.24 265.28 24.65 249.61C9.93 241.61 0.01 225.61 0.01 207.69C0.01 189.46 10.24 173.77 24.96 165.77C18.55 150.08 20.8 131.54 32.01 117.46C43.53 103.37 61.12 97.29 77.76 100.49C81.84 86.61 92.4 75.42 106.23 69.91L100.09 53.53A63.97299999999999 63.97299999999999 0 0 1 97.93 15.53L114.78 -51.88A16.002 16.002 0 0 1 130.3 -64H196.26C206.67 -64 214.31 -54.22 211.78 -44.12L193.47 29.14L208.23 68.5C212.96 70.65 217.45 73.28 221.13 76.81C229.77 68.81 241.3 64 253.77 64C266.25 64 277.77 68.81 286.41 76.81C295.05 68.81 306.25 64 319.05 64C331.54 64 342.92 68.96 351.51 76.91C351.67 76.7600000000001 351.8499999999999 76.64 352.0199999999999 76.49V-48C352.0199999999999 -56.84 359.18 -64 368.0199999999999 -64H432.0199999999999C440.8599999999999 -64 448.0199999999999 -56.84 448.0199999999999 -48V117.33L483.5 141A64.009 64.009 0 0 1 512 194.25V256H599.66C608.92 256 617.42 260.9 622.03 268.94C629.62 282.2 640.01 302.39 640.01 313.53A31.798 31.798 0 0 1 622.25 342.04zM352 352C352 378.4700000000001 373.53 400 400 400S448 378.4700000000001 448 352S426.4700000000001 304 400 304S352 325.53 352 352zM512 336C503.16 336 496 343.16 496 352S503.16 368 512 368S528 360.8400000000001 528 352S520.84 336 512 336z" />
+    <glyph glyph-name="ramp-loading"
+      unicode="&#xF4D4;"
+      horiz-adv-x="384" d=" M292.4 119.2C289.7 124.6 284.2 128 278.1 128H105.9C99.8 128 94.3 124.6 91.6 119.2L11.6 -40.8C6.3 -51.5 14 -64 25.9 -64H358.1C370 -64 377.7 -51.5 372.4 -40.8L292.4 119.2zM352 448H32C14.3 448 0 433.7 0 416V96C0 79.5 12.6 66.5 28.6 64.7L63 133.5C63.3 134.1 63.7 134.5 64 135V384H320V135C320.3 134.5 320.8 134 321 133.5L355.4 64.7C371.4 66.5 384 79.6 384 96V416C384 433.7 369.7 448 352 448z" />
+    <glyph glyph-name="random"
+      unicode="&#xF074;"
+      horiz-adv-x="512" d=" M504.971 88.971C514.344 79.598 514.344 64.402 504.971 55.03L424.971 -24.954C409.961 -39.964 384 -29.444 384 -7.983V32H325.2150000000001A12.004 12.004 0 0 0 316.442 35.812L245.886 111.408L299.2190000000001 168.5510000000001L352 112H384V151.981C384 173.419 409.943 183.979 424.971 168.952L504.971 88.971zM12 272H96L148.781 215.449L202.114 272.592L131.558 348.188A11.999000000000002 11.999000000000002 0 0 1 122.785 352H12C5.373 352 0 346.627 0 340V284C0 277.373 5.373 272 12 272zM384 272V232.016C384 210.556 409.961 200.036 424.971 215.045L504.971 295.029C514.344 304.402 514.344 319.598 504.971 328.9700000000001L424.971 408.951C409.943 423.979 384 413.418 384 391.981V352H325.2150000000001A12.004 12.004 0 0 1 316.442 348.188L96 112H12C5.373 112 0 106.627 0 100V44C0 37.373 5.373 32 12 32H122.785C126.111 32 129.288 33.381 131.558 35.812L352 272H384z" />
+    <glyph glyph-name="receipt"
+      unicode="&#xF543;"
+      horiz-adv-x="384" d=" M358.4 444.8L320 400L265.6 444.8A15.9 15.9 0 0 1 246.4000000000001 444.8L192 400L137.6 444.8A15.9 15.9 0 0 1 118.4 444.8L64 400L25.6 444.8C15 452.7 0 445.2 0 432V-48C0 -61.2 15 -68.7 25.6 -60.8L64 -16L118.4 -60.8A15.9 15.9 0 0 1 137.6 -60.8L192 -16L246.4 -60.8A15.9 15.9 0 0 1 265.6 -60.8L320 -16L358.4 -60.8C368.9 -68.7 384 -61.2 384 -48V432C384 445.2 369 452.7 358.4 444.8zM320 88C320 83.6 316.4 80 312 80H72C67.6 80 64 83.6 64 88V104C64 108.4 67.6 112 72 112H312C316.4 112 320 108.4 320 104V88zM320 184C320 179.6 316.4 176 312 176H72C67.6 176 64 179.6 64 184V200C64 204.4 67.6 208 72 208H312C316.4 208 320 204.4 320 200V184zM320 280C320 275.6 316.4 272 312 272H72C67.6 272 64 275.6 64 280V296C64 300.4 67.6 304 72 304H312C316.4 304 320 300.4 320 296V280z" />
+    <glyph glyph-name="rectangle-landscape"
+      unicode="&#xF2FA;"
+      horiz-adv-x="512" d=" M464 0H48C21.5 0 0 21.5 0 48V336C0 362.5 21.5 384 48 384H464C490.5 384 512 362.5 512 336V48C512 21.5 490.5 0 464 0z" />
+    <glyph glyph-name="rectangle-portrait"
+      unicode="&#xF2FB;"
+      horiz-adv-x="384" d=" M0 -16V400C0 426.5 21.5 448 48 448H336C362.5 448 384 426.5 384 400V-16C384 -42.5 362.5 -64 336 -64H48C21.5 -64 0 -42.5 0 -16z" />
+    <glyph glyph-name="rectangle-wide"
+      unicode="&#xF2FC;"
+      horiz-adv-x="640" d=" M592 32H48C21.5 32 0 53.5 0 80V304C0 330.5 21.5 352 48 352H592C618.5 352 640 330.5 640 304V80C640 53.5 618.5 32 592 32z" />
+    <glyph glyph-name="recycle"
+      unicode="&#xF1B8;"
+      horiz-adv-x="512" d=" M184.561 186.097C187.793 172.1 172.438 161.462 160.493 168.929L119.757 194.384L68.89 112.982C55.606 91.727 70.96 64 96.012 64H148C154.627 64 160 58.627 160 52V12C160 5.373 154.627 0 148 0H96.115C20.781 0 -25.187 83.048 14.707 146.88L65.529 228.268L24.804 253.716C12.723 261.2630000000001 15.838 279.677 29.683 282.874L139.92 308.324C148.531 310.312 157.121 304.943 159.109 296.334L184.561 186.097zM283.122 369.012L324.411 302.936L283.671 277.479C271.62 269.951 274.671 251.526 288.55 248.321L398.7870000000001 222.871C407.4590000000001 220.872 416.002 226.309 417.9760000000001 234.861L443.4260000000001 345.098C446.6230000000001 358.942 431.4360000000001 369.817 419.3580000000001 362.266L378.6710000000001 336.842L337.4080000000001 402.924C299.8870000000001 462.957 212.1990000000001 463.095 174.5920000000001 402.924L156.6290000000001 374.158C153.1190000000001 368.538 154.8290000000001 361.137 160.4490000000001 357.625L194.3680000000001 336.43C199.9880000000001 332.918 207.3920000000001 334.627 210.9040000000001 340.247L228.8650000000001 368.99C241.5770000000001 389.331 270.8380000000001 388.666 283.1220000000001 369.012zM497.288 146.88L469.773 190.945C466.262 196.568 458.857 198.279 453.235 194.766L419.374 173.607C413.754 170.095 412.0440000000001 162.692 415.5560000000001 157.071L443.1200000000001 112.959C456.3770000000001 91.7479999999999 441.0630000000001 63.999 415.9840000000001 63.999H320V111.98C320 126.1930000000001 302.758 133.363 292.687 123.293L212.687 43.312C206.438 37.064 206.438 26.933 212.687 20.685L292.687 -59.304C302.689 -69.308 320 -62.3 320 -47.989V0H415.88C491.154 0 537.215 82.997 497.288 146.88z" />
+    <glyph glyph-name="redo-alt"
+      unicode="&#xF2F9;"
+      horiz-adv-x="512" d=" M256.455 440C322.724 439.881 382.892 413.767 427.314 371.315L463.029 407.03C478.149 422.149 504 411.4410000000001 504 390.059V256C504 242.745 493.255 232 480 232H345.941C324.559 232 313.851 257.851 328.97 272.971L370.72 314.721C339.856 343.62 299.919 359.628 257.49 359.9940000000001C165.092 360.7920000000001 87.207 286.017 88.0059999999999 190.552C88.764 99.991 162.184 24 256 24C297.127 24 335.997 38.678 366.629 65.556C371.372 69.717 378.5350000000001 69.464 382.997 65.003L422.659 25.341C427.531 20.469 427.29 12.526 422.177 7.908C378.202 -31.813 319.926 -56 256 -56C119.034 -56 8.001 55.033 8 191.998C7.999 328.807 119.646 440.245 256.455 440z" />
+    <glyph glyph-name="redo"
+      unicode="&#xF01E;"
+      horiz-adv-x="512.333" d=" M500.333 448H452.922C446.069 448 440.608 442.271 440.9360000000001 435.426L444.9020000000001 352.6670000000001C399.416 406.101 331.6720000000001 440 256.001 440C119.34 440 7.899 328.474 8 191.813C8.101 54.932 119.096 -56 256 -56C319.926 -56 378.202 -31.813 422.178 7.908C427.291 12.526 427.532 20.469 422.6600000000001 25.341L388.689 59.312C384.223 63.778 377.0490000000001 64.029 372.3090000000001 59.855C341.308 32.552 300.606 16 256 16C158.733 16 80 94.716 80 192C80 289.267 158.716 368 256 368C316.892 368 370.506 337.142 402.099 290.2L300.574 295.065C293.729 295.3930000000001 288 289.932 288 283.079V235.668C288 229.041 293.373 223.668 300 223.668H500.333C506.96 223.668 512.333 229.041 512.333 235.668V436C512.333 442.627 506.96 448 500.333 448z" />
+    <glyph glyph-name="registered"
+      unicode="&#xF25D;"
+      horiz-adv-x="512" d=" M285.363 240.525C285.363 221.925 275.532 212.094 256.932 212.094H227.056V268.234H250.4340000000001C279.1020000000001 268.234 285.3630000000001 259.461 285.3630000000001 240.525zM504 192C504 55.033 392.967 -56 256 -56S8 55.033 8 192S119.033 440 256 440S504 328.967 504 192zM363.411 87.586C316.682 172.411 320.112 166.222 318.709 168.566C342.141 183.7380000000001 356.654 211.545 356.654 243.052C356.654 297.2960000000001 325.154 332.3040000000001 251.156 332.3040000000001H180.489C167.234 332.3040000000001 156.489 321.5590000000001 156.489 308.3040000000001V76C156.489 62.745 167.234 52 180.489 52H203.056C216.311 52 227.056 62.745 227.056 76V147.663H252.612L296.7410000000001 64.726A24.001000000000005 24.001000000000005 0 0 1 317.9290000000001 51.999H342.3930000000001C360.6540000000001 52 372.2220000000001 71.59 363.4110000000001 87.586z" />
+    <glyph glyph-name="repeat-1-alt"
+      unicode="&#xF366;"
+      horiz-adv-x="512" d=" M493.544 266.5370000000001C505.5 243.932 512.199 218.137 511.996 190.787C511.339 102.635 438.56 32 350.404 32H192V-15.495C192 -37.97 165.823 -47.763 151.029 -32.97L71.029 47.03C61.657 56.403 61.657 71.599 71.029 80.971L151.029 160.971C166.138 176.08 192 165.314 192 144V96H350.875C403.687 96 447.45 138.182 447.995 190.992C448.15 206.037 444.825 220.304 438.777 233.038C434.415 242.223 436.356 253.162 443.577 260.322C448.322 265.028 452.218 268.877 455.453 272.108C466.821 283.4600000000001 486.032 280.7390000000001 493.544 266.5370000000001zM64.005 193.008C64.55 245.818 108.313 288 161.125 288H320V240.495C320 218.121 346.121 208.183 360.971 223.03L440.971 303.03C450.343 312.403 450.343 327.599 440.971 336.971L360.971 416.971C346.014 431.923 320 421.7440000000001 320 399.455V352H161.596C73.44 352 0.661 281.365 0.005 193.212C-0.199 165.862 6.5 140.067 18.457 117.462C25.969 103.26 45.18 100.539 56.548 111.892C59.783 115.123 63.678 118.972 68.424 123.678C75.644 130.838 77.586 141.776 73.224 150.962C67.175 163.697 63.85 177.963 64.005 193.008zM227.263 148.473C227.263 155.95 231.18 160.045 238.836 160.045H253.967V199.923C253.967 205.086 254.501 210.426 254.501 210.426H254.145S252.366 207.756 251.297 206.688C246.846 202.415 240.793 202.237 235.631 207.756L230.113 213.987C224.771 219.328 225.129 225.203 230.647 230.366L252.367 250.305C256.816 254.4 260.733 256.002 266.787 256.002H278.892C286.548 256.002 290.641 252.086 290.641 244.43V160.046H306.129C313.784 160.046 317.701 155.952 317.701 148.474V139.573C317.701 132.096 313.7840000000001 128.001 306.129 128.001H238.836C231.18 128.001 227.263 132.096 227.263 139.573V148.473z" />
+    <glyph glyph-name="repeat-1"
+      unicode="&#xF365;"
+      horiz-adv-x="512" d=" M512 192C512 103.776 440.225 32 352 32H170.067L204.579 -0.419C214.454 -9.695 214.698 -25.302 205.118 -34.883L194.343 -45.658C184.97 -55.03 169.775 -55.03 160.402 -45.658L67.716 47.028C58.343 56.401 58.343 71.596 67.716 80.9690000000001L147.985 161.239C157.358 170.612 172.553 170.612 181.926 161.239L192.701 150.4640000000001C202.282 140.8830000000001 202.038 125.2770000000001 192.162 116.0000000000001L170.067 96.0000000000001H352C404.935 96.0000000000001 448 139.0650000000001 448 192.0000000000001C448 205.9580000000001 445.004 219.2280000000001 439.624 231.2040000000001C435.5630000000001 240.2430000000001 437.3400000000001 250.8300000000001 444.3470000000001 257.8370000000001L456.53 270.0200000000001C468.0290000000001 281.5190000000001 487.495 278.5460000000001 494.842 264.0380000000001C505.814 242.376 512 217.897 512 192zM72.376 152.796C66.996 164.772 64 178.042 64 192C64 244.935 107.065 288 160 288H341.933L319.838 267.998C309.963 258.722 309.719 243.115 319.299 233.534L330.074 222.759C339.447 213.387 354.642 213.387 364.015 222.759L444.284 303.029C453.657 312.402 453.657 327.597 444.284 336.9700000000001L351.598 429.656C342.225 439.029 327.03 439.029 317.657 429.656L306.882 418.8810000000001C297.301 409.3 297.545 393.694 307.421 384.4170000000001L341.933 352H160C71.775 352 0 280.224 0 192C0 166.103 6.186 141.624 17.157 119.961C24.504 105.453 43.97 102.48 55.469 113.979L67.652 126.162C74.66 133.17 76.438 143.757 72.376 152.796zM227.263 148.473C227.263 155.95 231.18 160.045 238.836 160.045H253.967V199.923C253.967 205.086 254.501 210.426 254.501 210.426H254.145S252.366 207.756 251.297 206.688C246.846 202.415 240.793 202.237 235.631 207.756L230.113 213.987C224.771 219.328 225.129 225.203 230.647 230.366L252.367 250.305C256.816 254.4 260.733 256.002 266.787 256.002H278.892C286.548 256.002 290.641 252.086 290.641 244.43V160.046H306.129C313.784 160.046 317.701 155.952 317.701 148.474V139.573C317.701 132.096 313.7840000000001 128.001 306.129 128.001H238.836C231.18 128.001 227.263 132.096 227.263 139.573V148.473z" />
+    <glyph glyph-name="repeat-alt"
+      unicode="&#xF364;"
+      horiz-adv-x="512" d=" M493.544 266.5370000000001C505.5 243.932 512.199 218.137 511.996 190.787C511.339 102.635 438.56 32 350.404 32H192V-15.495C192 -37.97 165.823 -47.763 151.029 -32.97L71.029 47.03C61.657 56.403 61.657 71.599 71.029 80.971L151.029 160.971C166.138 176.08 192 165.314 192 144V96H350.875C403.687 96 447.45 138.182 447.995 190.992C448.15 206.037 444.825 220.304 438.777 233.038C434.415 242.223 436.356 253.162 443.577 260.322C448.322 265.028 452.218 268.877 455.453 272.108C466.821 283.4600000000001 486.032 280.7390000000001 493.544 266.5370000000001zM64.005 193.008C64.55 245.818 108.313 288 161.125 288H320V240.495C320 218.121 346.121 208.183 360.971 223.03L440.971 303.03C450.343 312.403 450.343 327.599 440.971 336.971L360.971 416.971C346.014 431.923 320 421.7440000000001 320 399.455V352H161.596C73.44 352 0.661 281.365 0.005 193.212C-0.199 165.862 6.5 140.067 18.457 117.462C25.969 103.26 45.18 100.539 56.548 111.892C59.783 115.123 63.678 118.972 68.424 123.678C75.644 130.838 77.586 141.776 73.224 150.962C67.175 163.697 63.85 177.963 64.005 193.008z" />
+    <glyph glyph-name="repeat"
+      unicode="&#xF363;"
+      horiz-adv-x="512" d=" M512 192C512 103.776 440.225 32 352 32H170.067L204.579 -0.419C214.454 -9.695 214.698 -25.302 205.118 -34.883L194.343 -45.658C184.97 -55.03 169.775 -55.03 160.402 -45.658L67.716 47.028C58.343 56.401 58.343 71.596 67.716 80.9690000000001L160.402 173.6550000000001C169.775 183.0280000000001 184.97 183.0280000000001 194.343 173.6550000000001L205.118 162.8800000000001C214.699 153.2990000000001 214.455 137.6930000000001 204.579 128.4160000000001L170.067 96H352C404.935 96 448 139.065 448 192C448 205.958 445.004 219.228 439.624 231.204C435.5630000000001 240.243 437.3400000000001 250.83 444.3470000000001 257.837L456.53 270.02C468.0290000000001 281.519 487.495 278.5460000000001 494.842 264.038C505.814 242.376 512 217.897 512 192zM72.376 152.796C66.996 164.772 64 178.042 64 192C64 244.935 107.065 288 160 288H341.933L307.421 255.581C297.546 246.305 297.302 230.698 306.882 221.117L317.657 210.342C327.03 200.97 342.225 200.97 351.598 210.342L444.284 303.028C453.657 312.401 453.657 327.596 444.284 336.9690000000001L351.598 429.6550000000001C342.225 439.028 327.03 439.028 317.657 429.6550000000001L306.882 418.88C297.301 409.299 297.545 393.693 307.421 384.416L341.933 352H160C71.775 352 0 280.224 0 192C0 166.103 6.186 141.624 17.157 119.961C24.504 105.453 43.97 102.48 55.469 113.979L67.652 126.162C74.66 133.17 76.438 143.757 72.376 152.796z" />
+    <glyph glyph-name="reply-all"
+      unicode="&#xF122;"
+      horiz-adv-x="576" d=" M136.309 258.164L312.313 410.149C327.7200000000001 423.454 352 412.652 352 391.985V309.222C481.182 298.991 576 257.01 576 125.674C576 64.233 536.418 3.365 492.667 -28.458C479.014 -38.389 459.556 -25.925 464.59 -9.827C503.102 113.335 460.668 159.655 352 172.188V88.013C352 67.312 327.7 56.56 312.313 69.849L136.309 221.836C125.238 231.397 125.223 248.589 136.309 258.164zM8.309 221.836L184.313 69.85C199.7 56.561 224 67.313 224 88.014V103.832L115.394 197.617A55.96 55.96 0 0 0 96 240.002A55.95300000000001 55.95300000000001 0 0 0 115.393 282.382L224 376.168V391.985C224 412.652 199.72 423.454 184.313 410.149L8.309 258.164C-2.777 248.589 -2.762 231.397 8.309 221.836z" />
+    <glyph glyph-name="reply"
+      unicode="&#xF3E5;"
+      horiz-adv-x="512" d=" M8.309 258.164L184.313 410.149C199.719 423.454 224 412.653 224 391.985V311.932C384.629 310.093 512 277.9000000000001 512 125.674C512 64.233 472.419 3.365 428.6670000000001 -28.458C415.014 -38.389 395.5560000000001 -25.925 400.5900000000001 -9.827C445.9340000000001 135.185 379.0830000000001 173.683 224 175.915V88C224 67.3 199.7 56.547 184.3130000000001 69.836L8.3090000000001 221.836C-2.7619999999999 231.398 -2.7769999999999 248.589 8.3090000000001 258.164z" />
+    <glyph glyph-name="republican"
+      unicode="&#xF75E;"
+      horiz-adv-x="640" d=" M544 256C544 344.4 472.4 416 384 416H160C71.6 416 0 344.4 0 256V192H544V256zM176.3 277.6L156.5 258.3L161.2 231C162 226.1 156.9 222.4 152.5 224.7L128 237.6L103.5 224.7C99.2 222.4 94 226.1 94.8 231L99.5 258.3L79.7 277.6C76.1 281.1 78.1 287.1 83 287.8L110.4 291.8L122.6 316.6C124.8 321.1 131.2 321 133.3 316.6L145.5 291.8L172.9 287.8C177.9 287.1 179.8 281.1 176.3 277.6zM320.3 277.6L300.5 258.3L305.2 231C306 226.1 300.9 222.4 296.5 224.7L272 237.6L247.5 224.7C243.2 222.4 238 226.1 238.8 231L243.5 258.3L223.7 277.6C220.1 281.1 222.1 287.1 227 287.8L254.4 291.8L266.6 316.6C268.8 321.1 275.2000000000001 321 277.3 316.6L289.5 291.8L316.9 287.8C321.9 287.1 323.8 281.1 320.3 277.6zM464.3 277.6L444.5 258.3L449.2 231C450 226.1 444.9 222.4 440.5 224.7L416 237.6L391.5 224.7C387.2 222.4 382 226.1 382.8 231L387.5 258.3L367.7 277.6C364.1 281.1 366.1 287.1 371 287.8L398.4 291.8L410.6 316.6C412.8 321.1 419.2 321 421.3 316.6L433.5 291.8L460.8999999999999 287.8C465.8999999999999 287.1 467.7999999999999 281.1 464.2999999999999 277.6zM624 128H592C583.2 128 576 120.8 576 112V48C576 39.2 568.8 32 560 32S544 39.2 544 48V160H0V-16C0 -24.8 7.2 -32 16 -32H112C120.8 -32 128 -24.8 128 -16V64H320V-16C320 -24.8 327.2 -32 336 -32H432C440.8 -32 448 -24.8 448 -16V96H480V52.7C480 10.9 510 -27.4 551.6 -31.6C599.4 -36.5 640 1.1 640 48V112C640 120.8 632.8 128 624 128z" />
+    <glyph glyph-name="restroom"
+      unicode="&#xF7BD;"
+      horiz-adv-x="640" d=" M128 320C163.3 320 192 348.7 192 384S163.3 448 128 448S64 419.3 64 384S92.7 320 128 320zM512 320C547.3 320 576 348.7 576 384S547.3 448 512 448S448 419.3 448 384S476.7 320 512 320zM639.3 93.5L593.6999999999999 279.3C590.4 292.8 578.1999999999999 302.3 563.9 303.5C548.9 293.8 531.1 288 511.9 288C492.7 288 474.9 293.8 459.9 303.5C445.6 302.3 433.4 292.8 430.1 279.3L384.5 93.5C381 78.4 393 64 409.2 64H464V-40C464 -53.3 474.7 -64 488 -64H536C549.3 -64 560 -53.3 560 -40V64H614.8C631 64 643 78.4 639.3 93.5zM336 448H304C295.2 448 288 440.8 288 432V-48C288 -56.8 295.2 -64 304 -64H336C344.8 -64 352 -56.8 352 -48V432C352 440.8 344.8 448 336 448zM180.1 303.6C165.1 293.8 147.2 288 128 288C108.8 288 90.9 293.8 75.9 303.6C51.3 301.5 32 281.1 32 256V120C32 106.7 42.7 96 56 96H64V-40C64 -53.3 74.7 -64 88 -64H168C181.3 -64 192 -53.3 192 -40V96H200C213.3 96 224 106.7 224 120V256C224 281.1 204.7 301.5 180.1 303.6z" />
+    <glyph glyph-name="retweet-alt"
+      unicode="&#xF361;"
+      horiz-adv-x="640" d=" M392.402 64.402C404.359 52.445 395.891 32 378.981 32H120C106.745 32 96 42.745 96 56V256H48C26.639 256 15.955 281.895 31.029 296.971L111.029 376.971C120.402 386.343 135.597 386.343 144.97 376.971L224.97 296.971C240.074 281.866 229.319 256 208 256H160V96H362.0560000000001C369.8760000000001 96 376.9300000000001 91.217 379.7310000000001 83.916A55.86500000000001 55.86500000000001 0 0 1 392.4020000000001 64.402zM592 128H544V328C544 341.255 533.255 352 520 352H261.019C244.109 352 235.641 331.555 247.598 319.598A55.86500000000001 55.86500000000001 0 0 0 260.269 300.084C263.07 292.7820000000001 270.124 288 277.944 288H480V128H432C410.687 128 399.92 102.139 415.029 87.029L495.029 7.029C504.403 -2.343 519.597 -2.343 528.97 7.029L608.97 87.029C624.041 102.1 613.368 128 592 128z" />
+    <glyph glyph-name="retweet"
+      unicode="&#xF079;"
+      horiz-adv-x="640" d=" M629.657 104.402L528.971 3.716C519.598 -5.656 504.403 -5.656 495.03 3.716L394.343 104.402C384.9700000000001 113.775 384.9700000000001 128.971 394.343 138.343L405.166 149.166C414.728 158.728 430.299 158.5059999999999 439.585 148.6739999999999L480 105.882V288H292.451A24.005 24.005 0 0 0 275.48 295.029L259.48 311.029C244.361 326.149 255.069 352 276.451 352H520C533.255 352 544 341.255 544 328V105.882L584.4159999999999 148.674C593.7009999999999 158.505 609.2719999999999 158.728 618.8349999999999 149.166L629.6579999999999 138.343C639.0299999999999 128.971 639.0299999999999 113.774 629.6569999999999 104.402zM364.5190000000001 88.971A23.999000000000002 23.999000000000002 0 0 1 347.548 96H160V278.1190000000001L200.416 235.327C209.702 225.496 225.272 225.273 234.835 234.836L245.657 245.658C255.03 255.031 255.03 270.227 245.657 279.599L144.971 380.284C135.598 389.657 120.402 389.657 111.03 380.284L10.343 279.598C0.97 270.225 0.97 255.029 10.343 245.657L21.165 234.835C30.727 225.273 46.298 225.495 55.584 235.326L96 278.1190000000001V56C96 42.745 106.745 32 120 32H363.549C384.931 32 395.639 57.851 380.52 72.971L364.519 88.971z" />
+    <glyph glyph-name="ribbon"
+      unicode="&#xF4D6;"
+      horiz-adv-x="448" d=" M6.1 3.7C-3.5 -7.1 -1.4 -23.9 10.6 -32L79.4 -59.9C89.3 -66.6 102.7 -64.9 110.7 -56.1L202.5 45.8000000000001L123.3 133.7000000000001L6.1 3.7zM441.9000000000001 3.7S149.9 328.3 146.5000000000001 333.8C161.9000000000001 342.2000000000001 186.7000000000001 351.7000000000001 224.0000000000001 351.7000000000001S286.1000000000001 342.2000000000001 301.5000000000001 333.8C298.2000000000001 328.2000000000001 245.5000000000001 269.2000000000001 245.5000000000001 269.2000000000001L324.6 181.5L358.8 219.5C387.5 251.4 392.1 298.1 370.2 335L326.5 408.5C322.2 415.7 316.6 421.8 309.7 426.5C269 454.1 182.3 456.2 138.3 426.5C131.4 421.8 125.8 415.7 121.5 408.5L77.9 335.3C76.4 332.8 40.8 273.1 89.4 219.3L337.5 -56C345.5 -64.9 358.9 -66.5 368.8 -59.8L437.6 -31.9C449.5 -23.9 451.6 -7.1 441.9000000000001 3.7z" />
+    <glyph glyph-name="ring"
+      unicode="&#xF70B;"
+      horiz-adv-x="512" d=" M256 384C110.06 384 0 322.0900000000001 0 240V141.87C0 63.52 114.62 0 256 0S512 63.52 512 141.87V240C512 322.0900000000001 401.94 384 256 384zM256 320C362.04 320 448 284.18 448 240C448 230.74 444.03 221.88 437.09 213.61C392.15 239.79 328.23 256 256 256S119.85 239.79 74.91 213.61C67.97 221.88 64 230.74 64 240C64 284.18 149.96 320 256 320zM120.43 183.36C155.04 198.07 201.64 208 256 208S356.96 198.07 391.57 183.36C356.84 168.93 308.93 160 256 160S155.16 168.93 120.43 183.36z" />
+    <glyph glyph-name="road"
+      unicode="&#xF018;"
+      horiz-adv-x="576" d=" M573.19 45.33L433.4000000000001 365.33C428.43 376.71 417.6 384 405.68 384H308.0900000000001L310.54 360.8400000000001C311.04 356.12 307.3300000000001 352 302.5800000000001 352H273.42C268.67 352 264.9600000000001 356.12 265.4600000000001 360.8400000000001L267.9100000000001 384H170.32C158.39 384 147.56 376.71 142.59 365.33L2.8 45.33C-6.45 24.14 8.31 0 30.54 0H227.38L237.69 97.68C238.55 105.82 245.41 112 253.6 112H322.4C330.59 112 337.45 105.82 338.31 97.68L348.62 0H545.46C567.69 0 582.45 24.14 573.19 45.33zM260.4 312.8400000000001A8 8 0 0 0 268.36 320H307.65C311.74 320 315.18 316.91 315.61 312.8400000000001L320.21 269.26C320.96 262.17 315.4 256 308.28 256H267.74C260.61 256 255.06 262.17 255.81 269.26L260.3999999999999 312.84zM315.64 144H260.35C250.85 144 243.44 152.23 244.44 161.68L249.51 209.68C250.37 217.82 257.23 224 265.42 224H310.57C318.76 224 325.62 217.82 326.48 209.68L331.55 161.68C332.55 152.23 325.14 144 315.64 144z" />
+    <glyph glyph-name="robot"
+      unicode="&#xF544;"
+      horiz-adv-x="640" d=" M0 192V64C0 46.3 14.3 32 32 32H64V224H32C14.3 224 0 209.7 0 192zM464 352H352V416C352 433.7 337.7 448 320 448S288 433.7 288 416V352H176C131.8 352 96 316.2 96 272V0C96 -35.3 124.7 -64 160 -64H480C515.3 -64 544 -35.3 544 0V272C544 316.2 508.2 352 464 352zM256 32H192V64H256V32zM224 152C201.9 152 184 169.9 184 192S201.9 232 224 232S264 214.1 264 192S246.1 152 224 152zM352 32H288V64H352V32zM448 32H384V64H448V32zM416 152C393.9 152 376 169.9 376 192S393.9 232 416 232S456 214.1 456 192S438.1 152 416 152zM608 224H576V32H608C625.7 32 640 46.3 640 64V192C640 209.7 625.7 224 608 224z" />
+    <glyph glyph-name="rocket"
+      unicode="&#xF135;"
+      horiz-adv-x="512" d=" M505.1 428.9C503.8 435 499 439.8 492.9 441.1C460.7 448 435.5 448 410.4 448C307.2 448 245.3 392.8 199.1 320H94.9C76.7 320 60.1 309.7 52 293.5L2.6 194.7C-5.4 178.7 6.2 160 24.1 160H119.2C113.3 147.2 107.3 134.5 101.2 122.3C98.1 116.1 99.3 108.7 104.2 103.8L167.8 40.2C172.7 35.3 180.1 34.1 186.3 37.2C198.5 43.3 211.2 49.2 224 55.1V-40C224 -57.8 242.8 -69.4 258.7 -61.5L357.4 -12.1C373.7 -4 383.9 12.7 383.9 30.8V135.2C456.5 181.5 511.9 243.6 511.9 346.3C512 371.5 512 396.7 505.1 428.9zM400 288C373.5 288 352 309.5 352 336S373.5 384 400 384S448 362.5 448 336S426.5 288 400 288z" />
+    <glyph glyph-name="route-highway"
+      unicode="&#xF61A;"
+      horiz-adv-x="448" d=" M428.4 178.79C397.92 224.21 416.6 283.26 441.4 334.1900000000001C445.36 342.3200000000001 444.74 351.9400000000001 439.53 359.3200000000001L398.35 417.68C393.29 424.86 382.59 430.7800000000001 370.86 426.29C355.49 420.4100000000001 338.19 417.4000000000001 320.6 417.4000000000001C291.09 417.4000000000001 260.79 425.87 237.44 443.51C233.48 446.5 228.74 448 224 448S214.52 446.5 210.56 443.51C187.21 425.87 156.9 417.4 127.39 417.4C109.8 417.4 92.5 420.41 77.14 426.29C65.32 430.81 54.65 424.77 49.65 417.68L8.47 359.31C3.26 351.93 2.64 342.32 6.6 334.18C31.4 283.26 50.07 224.21 19.6 178.78C-18.34 122.26 1.05 39.35 58.41 12.75L223.97 -64L389.5900000000001 12.76C446.9500000000001 39.36 466.34 122.27 428.4000000000001 178.79zM362.68 70.83L223.98 6.54L85.33 70.83C65.55 80.0000000000001 55.63 117.6300000000001 72.74 143.1300000000001C97.47 179.9900000000001 101.94 219.8700000000001 97.96 256.0000000000001H350.03C346.05 219.8700000000001 350.52 179.9800000000001 375.25 143.1200000000001C392.48 117.46 382.3 79.9200000000001 362.68 70.83z" />
+    <glyph glyph-name="route-interstate"
+      unicode="&#xF61B;"
+      horiz-adv-x="480" d=" M464.83 392.86C461.23 404.52 449.91 411.96 438.65 408.81C420.42 403.69 400.91 400.85 380.55 400.85C331.43 400.85 286.94 416.92 254.38 442.96C250.18 446.32 245.09 448 240 448S229.82 446.32 225.63 442.9700000000001C193.07 416.93 148.58 400.86 99.46 400.86C79.1 400.86 59.59 403.7 41.36 408.82C30.13 411.9700000000001 18.79 404.56 15.18 392.87C-21.83 272.89 -6.68 37.66 240 -64C486.68 37.66 501.84 272.89 464.83 392.86zM240 6.13C115.27 67.07 72.01 168.44 64.76 256H415.25C407.99 168.44 364.73 67.07 240 6.13z" />
+    <glyph glyph-name="route"
+      unicode="&#xF4D7;"
+      horiz-adv-x="512" d=" M416 128H320C302.4 128 288 142.4 288 160S302.4 192 320 192H416S512 299 512 352S469 448 416 448S320 405 320 352C320 326.5 342.2 288.6 365.3 256H320C267.1 256 224 212.9 224 160S267.1 64 320 64H416C433.6 64 448 49.6 448 32S433.6 0 416 0H185.5C169.5 -24.8 151.7 -47.7 138.2 -64H416C468.9 -64 512 -20.9 512 32S468.9 128 416 128zM416 384C433.7 384 448 369.7 448 352S433.7 320 416 320S384 334.3 384 352S398.3 384 416 384zM96 192C43 192 0 149 0 96S96 -64 96 -64S192 43 192 96S149 192 96 192zM96 64C78.3 64 64 78.3 64 96S78.3 128 96 128S128 113.7 128 96S113.7 64 96 64z" />
+    <glyph glyph-name="rss-square"
+      unicode="&#xF143;"
+      horiz-adv-x="448" d=" M400 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V368C448 394.51 426.51 416 400 416zM112 32C85.49 32 64 53.49 64 80S85.49 128 112 128S160 106.51 160 80S138.51 32 112 32zM269.533 32H235.198C229.187 32 224.147 36.636 223.756 42.634C218.542 122.684 154.513 186.554 74.633 191.757C68.636 192.147 64 197.188 64 203.198V237.533C64 244.068 69.468 249.31 75.994 248.9580000000001C186.54 242.9840000000001 274.9910000000001 154.422 280.9580000000001 43.994C281.31 37.468 276.0680000000001 32 269.533 32zM372.56 32H338.226C332.065 32 327.051 36.882 326.799 43.038C321.201 179.573 211.595 289.199 75.039 294.798C68.882 295.051 64 300.065 64 306.226V340.56C64 347.014 69.338 352.224 75.787 351.992C243.617 345.967 377.997 210.801 383.992 43.787C384.224 37.338 379.014 32.0000000000001 372.56 32.0000000000001z" />
+    <glyph glyph-name="rss"
+      unicode="&#xF09E;"
+      horiz-adv-x="448" d=" M128.081 32.041C128.081 -3.328 99.409 -32 64.04 -32S0 -3.328 0 32.041S28.672 96.082 64.041 96.082S128.081 67.409 128.081 32.041zM303.741 -15.209C295.387 139.391 171.556 263.378 16.791 271.741C7.656 272.235 0 264.895 0 255.747V207.678C0 199.263 6.49 192.206 14.887 191.66C126.719 184.376 216.36 94.958 223.659 -17.112C224.206 -25.509 231.263 -31.999 239.677 -31.999H287.746C296.895 -32 304.235 -24.344 303.741 -15.209zM447.99 -15.497C439.596 218.323 251.465 407.555 16.503 415.99C7.473 416.314 0 409.019 0 399.984V351.916C0 343.291 6.835 336.271 15.453 335.9170000000001C206.632 328.078 360.08 174.601 367.918 -16.548C368.271 -25.166 375.291 -32.001 383.917 -32.001H431.985C441.019 -32 448.314 -24.527 447.99 -15.497z" />
+    <glyph glyph-name="ruble-sign"
+      unicode="&#xF158;"
+      horiz-adv-x="384" d=" M239.36 128C324.48 128 384 187.458 384 272.929S324.48 416 239.36 416H76C69.373 416 64 410.627 64 404V197.368H12C5.373 197.368 0 191.995 0 185.368V140C0 133.373 5.373 128 12 128H64V96H12C5.373 96 0 90.627 0 84V44C0 37.373 5.373 32 12 32H64V-20C64 -26.627 69.373 -32 76 -32H134.56C141.187 -32 146.56 -26.627 146.56 -20V32H308C314.627 32 320 37.373 320 44V84C320 90.627 314.627 96 308 96H146.56V128H239.36zM146.56 347.252H225.28C272 347.252 300.16 318.142 300.16 272.9290000000001C300.16 227.0970000000001 272 197.368 224 197.368H146.56V347.252z" />
+    <glyph glyph-name="ruler-combined"
+      unicode="&#xF546;"
+      horiz-adv-x="512" d=" M160 160H104C99.58 160 96 163.58 96 168V184C96 188.42 99.58 192 104 192H160V256H104C99.58 256 96 259.5800000000001 96 264V280C96 284.42 99.58 288 104 288H160V352H104C99.58 352 96 355.58 96 360V376C96 380.42 99.58 384 104 384H160V416C160 433.67 145.67 448 128 448H32C14.33 448 0 433.67 0 416V-32C0 -34.77 0.91 -37.24 1.57 -39.8L160 118.62V160zM480 96H448V40C448 35.58 444.42 32 440 32H424C419.58 32 416 35.58 416 40V96H352V40C352 35.58 348.42 32 344 32H328C323.58 32 320 35.58 320 40V96H256V40C256 35.58 252.42 32 248 32H232C227.58 32 224 35.58 224 40V96H182.63L24.2 -62.43C26.76 -63.09 29.24 -64 32 -64H480C497.67 -64 512 -49.67 512 -32V64C512 81.67 497.67 96 480 96z" />
+    <glyph glyph-name="ruler-horizontal"
+      unicode="&#xF547;"
+      horiz-adv-x="576" d=" M544 320H496V232C496 227.58 492.42 224 488 224H472C467.58 224 464 227.58 464 232V320H400V232C400 227.58 396.42 224 392 224H376C371.58 224 368 227.58 368 232V320H304V232C304 227.58 300.42 224 296 224H280C275.58 224 272 227.58 272 232V320H208V232C208 227.58 204.42 224 200 224H184C179.58 224 176 227.58 176 232V320H112V232C112 227.58 108.42 224 104 224H88C83.58 224 80 227.58 80 232V320H32C14.33 320 0 305.67 0 288V96C0 78.33 14.33 64 32 64H544C561.67 64 576 78.33 576 96V288C576 305.67 561.67 320 544 320z" />
+    <glyph glyph-name="ruler-triangle"
+      unicode="&#xF61C;"
+      horiz-adv-x="512" d=" M501.65 -4.08L450.49 47.08L411.92 8.51C408.8 5.39 403.73 5.39 400.61 8.51L389.3 19.8200000000001C386.18 22.9400000000001 386.18 28.01 389.3 31.1300000000001L427.87 69.7000000000001L371.3 126.2700000000001L332.73 87.7000000000001C329.61 84.58 324.54 84.58 321.42 87.7000000000001L310.11 99.0100000000001C306.99 102.1300000000001 306.99 107.2000000000001 310.11 110.3200000000001L348.68 148.8900000000001L292.11 205.46L253.54 166.8900000000001C250.42 163.7700000000001 245.35 163.7700000000001 242.23 166.8900000000001L230.92 178.2000000000001C227.8 181.3200000000001 227.8 186.3900000000001 230.92 189.5100000000001L269.49 228.0800000000001L212.92 284.6500000000001L174.35 246.0800000000001C171.23 242.9600000000001 166.16 242.9600000000001 163.04 246.0800000000001L151.73 257.3900000000001C148.61 260.5100000000001 148.61 265.5800000000001 151.73 268.7000000000001L190.3 307.2700000000001L133.7 363.86L95.13 325.2900000000001C92.01 322.1700000000001 86.94 322.1700000000001 83.82 325.2900000000001L72.51 336.6C69.39 339.7200000000001 69.39 344.79 72.51 347.91L111.08 386.48L59.91 437.65C52.76 444.8 43.97 448 35.35 448C17.31 448 0 433.99 0 412.83V-28.9C0 -48.29 15.71 -64 35.1 -64H476.83C508.1 -64 523.76 -26.2 501.65 -4.08zM128 64V188.54L252.54 64H128z" />
+    <glyph glyph-name="ruler-vertical"
+      unicode="&#xF548;"
+      horiz-adv-x="256" d=" M168 32C163.58 32 160 35.58 160 40V56C160 60.42 163.58 64 168 64H256V128H168C163.58 128 160 131.58 160 136V152C160 156.42 163.58 160 168 160H256V224H168C163.58 224 160 227.58 160 232V248C160 252.42 163.58 256 168 256H256V320H168C163.58 320 160 323.58 160 328V344C160 348.42 163.58 352 168 352H256V416C256 433.67 241.67 448 224 448H32C14.33 448 0 433.67 0 416V-32C0 -49.67 14.33 -64 32 -64H224C241.67 -64 256 -49.67 256 -32V32H168z" />
+    <glyph glyph-name="ruler"
+      unicode="&#xF545;"
+      horiz-adv-x="640" d=" M635.7 280.8L556.1 416.3C547.3000000000001 431.3 527.8000000000001 436.4 512.6 427.8L443.6 388.7L503.3 287C505.5 283.2 504.2 278.5 500.4 276.3L486.6 268.5C482.8 266.3 477.9 267.6 475.7 271.4L416 373L360.8 341.7L388.7 294.3C390.9 290.5 389.6 285.8 385.8 283.6L372 275.8C368.2 273.6 363.3 274.9 361.1 278.7000000000001L333.2 326L278 294.7L337.8 193C340 189.3 338.7 184.5 334.9000000000001 182.3L321.1 174.5C317.3 172.3 312.4000000000001 173.6 310.2000000000001 177.4L250.5000000000001 279.1L195.3000000000001 247.8L223.2000000000001 200.4C225.4000000000001 196.5999999999999 224.1000000000001 191.9 220.3000000000001 189.6999999999999L206.5000000000001 181.8999999999999C202.7000000000001 179.6999999999999 197.8000000000001 181 195.6000000000001 184.7999999999999L167.7000000000001 232.2999999999999L112.5 200.9999999999999L172.2000000000001 99.2999999999999C174.4 95.5999999999999 173.1000000000001 90.7999999999999 169.3000000000001 88.5999999999999L155.5 80.7999999999999C151.7 78.5999999999999 146.8000000000001 79.8999999999999 144.6 83.6999999999999L84.9 185.1L15.9 146C0.7 137.3 -4.6 118.2 4.2 103.2L83.8 -32.4C92.6 -47.4 112.1 -52.5 127.3 -43.9L624.1 238C639.3000000000001 246.6 644.5 265.8 635.7 280.8z" />
+    <glyph glyph-name="running"
+      unicode="&#xF70C;"
+      horiz-adv-x="416" d=" M272 352C298.51 352 320 373.49 320 400S298.51 448 272 448S224 426.51 224 400S245.49 352 272 352zM113.69 130.53L98.89 96.01H32C14.33 96.01 0 81.68 0 64.01S14.33 32.01 32 32.01H109.45C128.7 32.01 146.03 43.45 153.56 61.1L162.35 81.62L151.68 87.92C134.36 98.15 121.62 113.29 113.69 130.53zM384 224.01H339.9700000000001L313.9100000000001 277.26C301.4100000000001 302.81 278.4600000000001 321.49 252.13 328.2L181.05 349.34C152.75 356.14 123.28 349.89 100.21 332.2L60.54 301.79C46.51 291.04 43.85 270.96 54.62 256.93S85.46 240.27 99.48 251.01L139.17 281.42C146.84 287.31 156.61 289.42 164.44 287.56L179.14 283.19L141.68 195.8C129.06 166.32 140.37 131.79 167.98 115.49L252.9600000000001 65.32L225.4900000000001 -22.41C220.21 -39.27 229.6000000000001 -57.22 246.4600000000001 -62.5C249.6500000000001 -63.5 252.8700000000001 -63.98 256.04 -63.98C269.6500000000001 -63.98 282.2700000000001 -55.21 286.56 -41.53L318.2 59.53C324.11 80.3 315.31 102.61 296.56 113.92L235.32 150.06L266.63 228.34L286.9 186.91C294.9 170.57 311.82 160.02 330.01 160.02H384C401.67 160.02 416 174.35 416 192.02S401.67 224.01 384 224.01z" />
+    <glyph glyph-name="rupee-sign"
+      unicode="&#xF156;"
+      horiz-adv-x="320" d=" M308 352C314.627 352 320 357.373 320 364V404C320 410.627 314.627 416 308 416H12C5.373 416 0 410.627 0 404V359.252C0 352.625 5.373 347.252 12 347.252H97.28C124.588 347.252 145.541 337.294 158.25 320H12C5.373 320 0 314.627 0 308V268C0 261.373 5.373 256 12 256H170.757C164.54 219.914 137.796 197.368 96 197.368H12C5.373 197.368 0 191.995 0 185.368V132.356C0 129.007 1.4 125.81 3.861 123.538L168.913 -28.818A12.001000000000001 12.001000000000001 0 0 1 177.052 -32H259.614C270.538 -32 275.78 -18.592 267.753 -11.182L116.871 128.094C193.37 130.434 248.015 181.489 255.189 256H308C314.627 256 320 261.373 320 268V308C320 314.627 314.627 320 308 320H249.31C245.824 331.541 241.03 342.246 235.058 352H308z" />
+    <glyph glyph-name="rv"
+      unicode="&#xF7BE;"
+      horiz-adv-x="640" d=" M621.3 178.7L563 237C551 249 534.6 255.8 517.6 255.8L416 256V16H416.2C416.3 -18.1 438.3 -50.3 471.1 -60.2C525.9 -76.7999999999999 576.0999999999999 -36.3 576.0999999999999 16V32H608.0999999999999C625.6999999999999 32 640.0999999999999 46.4 640.0999999999999 64V133.5C639.9999999999999 150.5 633.3 166.7 621.3 178.7zM496 -16C478.4 -16 464 -1.6 464 16S478.4 48 496 48S528 33.6 528 16S513.6 -16 496 -16zM480 160V208H517.5C521.8 208 525.8 206.3 528.8 203.3L572.0999999999999 160H480zM608 320.8C607.6 373.4 564.8 416 512 416H384V432C384 440.8 376.8 448 368 448H240C231.2 448 224 440.8 224 432V416H64C28.7 416 0 387.3 0 352V154.5C0 137.5 6.7 121.2 18.7 109.2L96 32V20.6C96 -21.2 126.1 -59.4 167.8 -63.5C215.7 -68.2999999999999 256 -30.8 256 16.1V32.1H384V288H576C593.9 288 608.1 302.8 608 320.8zM176 -16C158.4 -16 144 -1.6 144 16S158.4 48 176 48S208 33.6 208 16S193.6 -16 176 -16zM256 240C256 231.2 248.8 224 240 224H112C103.2 224 96 231.2 96 240V304C96 312.8 103.2 320 112 320H240C248.8 320 256 312.8 256 304V240z" />
+    <glyph glyph-name="sad-cry"
+      unicode="&#xF5B3;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192C0 101.9 48.2 23.3 120 -20.1V160C120 168.8 127.2 176 136 176S152 168.8 152 160V-36.7C181.5 -49.1 214 -56 248 -56S314.5 -49.1 344 -36.7V160C344 168.8 351.2 176 360 176S376 168.8 376 160V-20.1C447.8 23.3 496 102 496 192C496 329 385 440 248 440zM182.5 223.5C167.7 236.7 136.3 236.7 121.5 223.5L112 215C108.2 211.7 102.7 211 98.3 213.4C93.9 215.8 91.4 220.8 92.2 225.8C96.2 251 126.4 267.9 152.1 267.9S208 251 212 225.8C212.8 220.8 210.3 215.8 205.9 213.4C200.1 210.3 194.7 212.7 192.2 215L182.5 223.5zM248 32C221.5 32 200 60.7 200 96S221.5 160 248 160S296 131.3 296 96S274.5 32 248 32zM397.8 213.5C392 210.4 386.6 212.8 384.1 215.1L374.6 223.6C359.8 236.8 328.4000000000001 236.8 313.6 223.6L304 215C300.2 211.7 294.7 211 290.3 213.4C285.9000000000001 215.8 283.4000000000001 220.8 284.2 225.8C288.2 251 318.4 267.9 344.1 267.9S400 251 404 225.8C404.6 220.9 402.2 215.9 397.8 213.5z" />
+    <glyph glyph-name="sad-tear"
+      unicode="&#xF5B4;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 272C345.7 272 360 257.7 360 240S345.7 208 328 208S296 222.3 296 240S310.3 272 328 272zM152 32C125.5 32 104 53 104 79C104 99 132.5 139.4 145.6 156.8C148.8 161.1 155.2 161.1 158.4 156.8C171.5 139.4 200 99 200 79C200 53 178.5 32 152 32zM168 208C150.3 208 136 222.3 136 240S150.3 272 168 272S200 257.7 200 240S185.7 208 168 208zM338.2 53.8C315.8 80.6 282.9 96 248 96C226.8 96 226.8 128 248 128C292.4 128 334.3 108.4 362.7 74.2C376.5 57.8 351.5 37.7 338.2 53.8z" />
+    <glyph glyph-name="satellite-dish"
+      unicode="&#xF7C0;"
+      horiz-adv-x="512" d=" M188.8 102.1L216.2 129.5C218.8 128.8 221.2 127.9 224 127.9C241.7 127.9 256 142.2 256 159.9S241.7 191.9 224 191.9S192 177.6 192 159.9C192 157.1 192.9 154.7 193.6 152.1L166.2 124.7L49.4 241.5C42.1 248.8 29.3 247.6 24.4 238.5C-17.4 160.7 -5.5 61.8 60.1 -3.8C125.7 -69.4 224.7 -81.2999999999999 302.4000000000001 -39.5C311.6 -34.6 312.8 -21.8 305.4000000000001 -14.5L188.8 102.1zM209 448C199.8 448.5 192 441.2 192 432V400.4C192 391.9 198.6 384.9 207 384.5C336.4 377.5 440.4 272.5 447.9 143C448.4 134.6 455.4 128 463.8 128H495.9C505.1 128 512.4 135.8 511.9 145C503.4 308.2 372.2 439.4 209 448zM209.3 352C200 352.7 192 345.3 192 335.9V303.8C192 295.4 198.5 288.5 206.8 287.9C283.6 281.6 344.8 219.7 351.7000000000001 142.7000000000001C352.5000000000001 134.4 359.3000000000001 128.0000000000001 367.6 128.0000000000001H399.8C409.1 128.0000000000001 416.6 136.0000000000001 415.9000000000001 145.3000000000001C407.5000000000001 255.4000000000001 319.4000000000001 343.5000000000001 209.3000000000001 352.0000000000001z" />
+    <glyph glyph-name="satellite"
+      unicode="&#xF7BF;"
+      horiz-adv-x="512" d=" M502.7 183L422.4 263.4L470.2 311.3C483.3 324.4 483.3 345.7000000000001 470.2 358.8L422.7 406.3C409.6 419.4000000000001 388.3 419.4000000000001 375.2 406.3L327.4 358.4L247.1 438.7C240.8 444.9 232.7 448 224.5 448S208.2 444.9 202 438.7L105.3 342C92.9 329.6 92.9 309.4 105.3 296.9L185.6 216.5L175.8 206.7C122.1 231 59.6 229.4 7.3 201.3C-1.2 196.7 -2.3 184.9 4.5 178.1L112 70.6L94.2 52.8C91.6 53.5 89.2 54.4 86.4 54.4C68.7 54.4 54.4 40.1 54.4 22.4S68.7 -9.6 86.4 -9.6S118.4 4.7 118.4 22.4C118.4 25.2 117.5 27.6 116.8 30.2L134.6 48.0000000000001L242.1 -59.4999999999999C248.9000000000001 -66.2999999999999 260.8 -65.1999999999999 265.3 -56.6999999999999C293.4000000000001 -4.3999999999999 295 58.1000000000001 270.7 111.8000000000001L280.6 121.7000000000001L360.9 41.3000000000001C367.1 35.1000000000001 375.3 32.0000000000001 383.4 32.0000000000001S399.7 35.1000000000001 405.9 41.3000000000001L502.6 138.0000000000001C515.0999999999999 150.4 515.0999999999999 170.6000000000001 502.7 183.0000000000001zM150.7 319.5L224.5 393.3L293.4 324.4L219.6 250.6L150.7 319.5zM383.5 86.7L314.6 155.6L388.4000000000001 229.4000000000001L457.3000000000001 160.5L383.5000000000001 86.7z" />
+    <glyph glyph-name="save"
+      unicode="&#xF0C7;"
+      horiz-adv-x="448" d=" M433.941 318.059L350.059 401.9410000000001A48 48 0 0 1 316.118 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H400C426.51 -32 448 -10.51 448 16V284.118A48 48 0 0 1 433.941 318.059zM224 32C188.654 32 160 60.654 160 96C160 131.346 188.654 160 224 160S288 131.346 288 96C288 60.654 259.346 32 224 32zM320 336.52V236C320 229.373 314.627 224 308 224H76C69.373 224 64 229.373 64 236V340C64 346.627 69.373 352 76 352H304.52C307.703 352 310.755 350.736 313.005 348.485L316.485 345.005A11.996 11.996 0 0 0 320 336.52z" />
+    <glyph glyph-name="scalpel-path"
+      unicode="&#xF61E;"
+      horiz-adv-x="640" d=" M312 -32H232C227.58 -32 224 -35.58 224 -40V-56C224 -60.42 227.58 -64 232 -64H312C316.42 -64 320 -60.42 320 -56V-40C320 -35.58 316.42 -32 312 -32zM472 -32H392C387.58 -32 384 -35.58 384 -40V-56C384 -60.42 387.58 -64 392 -64H472C476.42 -64 480 -60.42 480 -56V-40C480 -35.58 476.42 -32 472 -32zM632 -32H552C547.58 -32 544 -35.58 544 -40V-56C544 -60.42 547.58 -64 552 -64H632C636.42 -64 640 -60.42 640 -56V-40C640 -35.58 636.42 -32 632 -32zM234.88 17.64C266.25 43.35 281.6 81.57 281.6 119.96V128H176L0 -64C87 -64.07 170.28 -34.82 234.29 17.16C234.49 17.32 234.68 17.48 234.88 17.64zM482.71 436.15C453.51 456.98 412.53 449.18 389.22 421.93L187.72 186.47C178.82 176.06 186.21 160.01 199.91 160.01H331.85C341.22 160.01 350.13 164.11 356.22 171.23L495.24 333.67C521.6 364.4600000000001 516.46 412.0700000000001 482.71 436.1500000000001z" />
+    <glyph glyph-name="scalpel"
+      unicode="&#xF61D;"
+      horiz-adv-x="512" d=" M482.7 436.15C453.5 456.98 412.52 449.18 389.21 421.93L187.71 186.47C178.81 176.06 186.2 160 199.9 160H331.84C341.21 160 350.12 164.1 356.21 171.22L495.23 333.6600000000001C521.6 364.4600000000001 516.46 412.0700000000001 482.7 436.1500000000001zM0 -64C87 -64.07 170.28 -34.82 234.29 17.16C234.49 17.32 234.68 17.48 234.88 17.64C266.25 43.35 281.6 81.57 281.6 119.96V128H176L0 -64z" />
+    <glyph glyph-name="scanner-keyboard"
+      unicode="&#xF489;"
+      horiz-adv-x="576" d=" M400 352H16C7.2 352 0 344.8 0 336V198.6C0 194.4 1.7 190.3 4.7 187.3L32 160V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V160L411.3 187.3C414.3 190.3 416 194.4 416 198.6V336C416 344.8 408.8 352 400 352zM192 8C192 3.6 188.4 0 184 0H104C99.6 0 96 3.6 96 8V56C96 60.4 99.6 64 104 64H184C188.4 64 192 60.4 192 56V8zM192 104C192 99.6 188.4 96 184 96H104C99.6 96 96 99.6 96 104V152C96 156.4 99.6 160 104 160H184C188.4 160 192 156.4 192 152V104zM320 8C320 3.6 316.4 0 312 0H232C227.6 0 224 3.6 224 8V56C224 60.4 227.6 64 232 64H312C316.4 64 320 60.4 320 56V8zM320 104C320 99.6 316.4 96 312 96H232C227.6 96 224 99.6 224 104V152C224 156.4 227.6 160 232 160H312C316.4 160 320 156.4 320 152V104zM352 232C352 227.6 348.4 224 344 224H72C67.6 224 64 227.6 64 232V280C64 284.4 67.6 288 72 288H344C348.4 288 352 284.4 352 280V232zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V384H256V440zM408 448H360C355.6 448 352 444.4 352 440V384H416V440C416 444.4 412.4 448 408 448zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V384H320V440zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448z" />
+    <glyph glyph-name="scanner-touchscreen"
+      unicode="&#xF48A;"
+      horiz-adv-x="576" d=" M400 352H16C7.2 352 0 344.8 0 336V198.6C0 194.4 1.7 190.3 4.7 187.3L32 160V-16C32 -42.5 53.5 -64 80 -64H336C362.5 -64 384 -42.5 384 -16V160L411.3 187.3C414.3 190.3 416 194.4 416 198.6V336C416 344.8 408.8 352 400 352zM320 16C320 7.2 312.8 0 304 0H112C103.2 0 96 7.2 96 16V272C96 280.8 103.2 288 112 288H304C312.8 288 320 280.8 320 272V16zM256 440C256 444.4 252.4 448 248 448H200C195.6 448 192 444.4 192 440V384H256V440zM320 440C320 444.4 316.4 448 312 448H296C291.6 448 288 444.4 288 440V384H320V440zM408 448H360C355.6 448 352 444.4 352 440V384H416V440C416 444.4 412.4 448 408 448zM568 448H520C515.6 448 512 444.4 512 440V168C512 163.6 515.6 160 520 160H568C572.4 160 576 163.6 576 168V440C576 444.4 572.4 448 568 448zM472 448H456C451.6 448 448 444.4 448 440V168C448 163.6 451.6 160 456 160H472C476.4 160 480 163.6 480 168V440C480 444.4 476.4 448 472 448z" />
+    <glyph glyph-name="scanner"
+      unicode="&#xF488;"
+      horiz-adv-x="640" d=" M368 384H96C43 384 0 341 0 288C0 235.6 42.1 193.1 94.3 192.2L6.4 40C-6.9 17 1 -12.3 24 -25.6L79.4 -57.6C102.4 -70.9 131.7 -63 145 -40L278.9 192H368C376.8 192 384 199.2 384 208V368C384 376.8 376.8 384 368 384zM256 0C273.7 0 288 14.3 288 32V143.7L205 0H256zM632 0H456C451.6 0 448 -3.6 448 -8V-56C448 -60.4 451.6 -64 456 -64H632C636.4 -64 640 -60.4 640 -56V-8C640 -3.6 636.4 0 632 0zM632 96H456C451.6 96 448 92.4 448 88V72C448 67.6 451.6 64 456 64H632C636.4 64 640 67.6 640 72V88C640 92.4 636.4 96 632 96zM632 384H456C451.6 384 448 380.4 448 376V328C448 323.6 451.6 320 456 320H632C636.4 320 640 323.6 640 328V376C640 380.4 636.4 384 632 384zM632 448H456C451.6 448 448 444.4 448 440V424C448 419.6 451.6 416 456 416H632C636.4 416 640 419.6 640 424V440C640 444.4 636.4 448 632 448zM632 160H456C451.6 160 448 156.4 448 152V136C448 131.6 451.6 128 456 128H632C636.4 128 640 131.6 640 136V152C640 156.4 636.4 160 632 160zM632 288H456C451.6 288 448 284.4 448 280V232C448 227.6 451.6 224 456 224H632C636.4 224 640 227.6 640 232V280C640 284.4 636.4 288 632 288z" />
+    <glyph glyph-name="scarecrow"
+      unicode="&#xF70D;"
+      horiz-adv-x="448" d=" M224 -0.1C216.28 -0.1 208.6 1.82 201.79 5.45L192 10.67V-48C192 -56.84 199.16 -64 208 -64H240C248.84 -64 256 -56.84 256 -48V10.67L246.21 5.45A47.382999999999996 47.382999999999996 0 0 0 224 -0.1zM445.66 261.66L419.31 288L437.65 306.3400000000001C442.69 311.38 439.12 320 431.99 320H314.12C317.69 330.05 320 340.7200000000001 320 352C320 405.02 277.02 448 224 448S128 405.02 128 352C128 340.7200000000001 130.3 330.05 133.88 320H16C8.87 320 5.3 311.38 10.34 306.3400000000001L28.69 288L2.34 261.66C-0.78 258.54 -0.78 253.47 2.34 250.35L28.69 224L10.35 205.66C5.3 200.62 8.87 192 16 192H122.13L96.23 50.66C94.08 37.76 107.47 27.8699999999999 119.17 33.72L151.88 57.97A16.022 16.022 0 0 0 168.94 59.24L216.85 33.6899999999999C221.32 31.3099999999999 226.69 31.3099999999999 231.16 33.6899999999999L279.07 59.24A15.982 15.982 0 0 0 296.13 57.97L328.84 33.72C340.54 27.8699999999999 353.93 37.76 351.78 50.66L325.87 192H432C439.13 192 442.7 200.62 437.6600000000001 205.66L419.31 224L445.65 250.34A8.006 8.006 0 0 1 445.66 261.66zM192 352C183.16 352 176 359.16 176 368S183.16 384 192 384S208 376.8400000000001 208 368S200.84 352 192 352zM256 336C247.16 336 240 343.16 240 352S247.16 368 256 368S272 360.8400000000001 272 352S264.84 336 256 336z" />
+    <glyph glyph-name="scarf"
+      unicode="&#xF7C1;"
+      horiz-adv-x="512" d=" M214.2 347.1C251.1 355.7 282.3 350.8 298.6 346.9L279.1 327.5L388.9000000000001 217.9C435.5000000000001 269.6 409.3 323.2 402.1 335.2L358.4000000000001 408.6C354.1 415.8 348.5000000000001 421.9000000000001 341.6 426.6C301 454.1 214.3 456.2 170.3 426.5C163.4 421.8 157.8 415.7 153.5 408.5L109.9 335.4C108.4 332.9 72.8 273.3 121.4 219.6L256.5 78.9L369.6 192L214.2 347.1zM166 124.3L47.6 6.1C44.5 3 44.5 -2.1 47.6 -5.2L58.9 -16.5C62 -19.6 67.1 -19.6 70.2 -16.5L188.6 101.7L166 124.3zM120.7 169.4L2.3 51.3C-0.8 48.2 -0.8 43.1 2.3 40L13.6 28.7C16.7 25.6 21.8 25.6 24.9 28.7L143.3 146.9L120.7 169.4zM92.9 -39.1C89.8 -42.2 89.8 -47.3 92.9 -50.4L104.2 -61.7C107.3 -64.8000000000001 112.4 -64.8000000000001 115.5 -61.7L233.9 56.4999999999999L211.3 79.1L92.9 -39.1zM301.8 79.1L279.2 56.4999999999999L396.6 -60.7C399.7000000000001 -63.8000000000001 404.8 -63.8000000000001 407.9000000000001 -60.7L419.2000000000001 -49.4C422.3000000000001 -46.3 422.3000000000001 -41.2 419.2000000000001 -38.1L301.8 79.1zM509.7 52.3L392.3 169.4L369.7 146.8L487 29.7C490.1 26.6 495.2 26.6 498.3 29.7L509.6 41C512.8000000000001 44.1 512.8000000000001 49.1 509.7 52.3zM347.0000000000001 124.3L324.4000000000001 101.6999999999999L441.8000000000001 -15.5000000000001C444.9000000000001 -18.6000000000001 450.0000000000001 -18.6000000000001 453.1000000000001 -15.5000000000001L464.4000000000001 -4.2C467.5000000000001 -1.1 467.5000000000001 3.9999999999999 464.4000000000001 7.1L347 124.3z" />
+    <glyph glyph-name="school"
+      unicode="&#xF549;"
+      horiz-adv-x="640" d=" M0 224V-48C0 -56.84 7.16 -64 16 -64H96V256H32C14.33 256 0 241.67 0 224zM360 272H336V312C336 316.42 332.42 320 328 320H312C307.58 320 304 316.42 304 312V248C304 243.58 307.58 240 312 240H360C364.42 240 368 243.58 368 248V264C368 268.42 364.42 272 360 272zM497.75 335.9600000000001L337.75 442.63A32.02 32.02 0 0 1 302.25 442.63L142.25 335.9600000000001A32.002 32.002 0 0 1 128 309.3400000000001V-64H256V80C256 88.84 263.1600000000001 96 272 96H368C376.84 96 384 88.84 384 80V-64H512V309.3300000000001C512 320.0300000000001 506.65 330.0300000000001 497.75 335.9600000000001zM320 192C275.82 192 240 227.82 240 272S275.82 352 320 352S400 316.18 400 272S364.18 192 320 192zM608 256H544V-64H624C632.84 -64 640 -56.84 640 -48V224C640 241.67 625.67 256 608 256z" />
+    <glyph glyph-name="screwdriver"
+      unicode="&#xF54A;"
+      horiz-adv-x="512" d=" M448 448L320 352V289.94L236.97 206.91C243.76 202.66 250.24 197.85 256.04 192.04C261.8400000000001 186.24 266.6600000000001 179.76 270.9100000000001 172.97L353.94 256H416L512 384L448 448zM128 169.41L10.92 52.33C-3.63 37.78 -3.63 14.18 10.92 -0.38L63.62 -53.08C78.18 -67.64 101.77 -67.64 116.33 -53.08L233.41 64C262.52 93.11 262.52 140.3 233.41 169.41S157.11 198.52 128 169.41z" />
+    <glyph glyph-name="scroll-old"
+      unicode="&#xF70F;"
+      horiz-adv-x="640" d=" M48 448C21.53 448 0 426.4700000000001 0 400V336C0 327.16 7.16 320 16 320H96V400C96 426.4700000000001 74.47 448 48 448zM256 35.43V96H544V153.37C544 157.61 542.31 161.68 539.31 164.68L512 192L539.31 219.31C542.31 222.31 544 226.38 544 230.62V281.37C544 285.61 542.31 289.68 539.31 292.68L512 320L538.86 346.86C542.13 350.13 544.07 354.7 543.72 359.31C539.98 408.85 498.48 448 448 448H111.59C121.74 434.59 128 418.08 128 400V262.63C128 258.39 129.69 254.32 132.69 251.32L160 224L132.69 196.69C129.69 193.69 128 189.62 128 185.38V32C128 -6.87 162.65 -37.65 202.75 -31.12C234.22 -26 256 3.54 256 35.43zM443.31 59.31L416 32L388.69 59.31C385.69 62.31 381.62 64 377.38 64H288V32C288 -20.93 244.94 -64 192 -64H528C589.86 -64 640 -13.86 640 48C640 56.84 632.84 64 624 64H454.63C450.38 64 446.31 62.31 443.31 59.31z" />
+    <glyph glyph-name="scroll"
+      unicode="&#xF70E;"
+      horiz-adv-x="640" d=" M48 448C21.53 448 0 426.4700000000001 0 400V336C0 327.16 7.16 320 16 320H96V400C96 426.4700000000001 74.47 448 48 448zM256 35.43V96H544V352C544 404.94 500.94 448 448 448H111.59C121.74 434.59 128 418.08 128 400V32C128 -6.87 162.65 -37.65 202.75 -31.12C234.22 -26 256 3.54 256 35.43zM288 64V32C288 -20.93 244.94 -64 192 -64H528C589.86 -64 640 -13.86 640 48C640 56.84 632.84 64 624 64H288z" />
+    <glyph glyph-name="scrubber"
+      unicode="&#xF2F8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 128C212.7 128 184 156.7 184 192S212.7 256 248 256S312 227.3 312 192S283.3 128 248 128z" />
+    <glyph glyph-name="scythe"
+      unicode="&#xF710;"
+      horiz-adv-x="512" d=" M129.94 139.31C123.69 145.56 113.56 145.56 107.31 139.31L84.69 116.69C78.44 110.44 78.44 100.31 84.69 94.06L87.43 91.31L4.69 8.57C-1.56 2.32 -1.56 -7.81 4.69 -14.06L49.95 -59.31C56.2 -65.5599999999999 66.33 -65.5599999999999 72.58 -59.31L155.33 23.44L158.07 20.7C164.32 14.45 174.45 14.45 180.7 20.7L203.32 43.32C209.57 49.57 209.57 59.7 203.32 65.95L129.94 139.31zM320.01 448C224 448 153.75 378.69 135.88 296.56C122.14 233.42 146.59 167.91 192.29 122.22L224.01 92.1300000000001L259.43 127.5500000000001C220.9 191.7500000000001 235.55 278.8200000000001 306.31 323.5500000000001C349.39 350.7900000000001 405.88 352.4500000000001 450.35 327.5500000000001C470.05 316.5200000000001 485.78 302.2900000000001 497.68 286.1300000000001C502.76 279.23 513.47 284.2000000000001 511.82 292.61C501.16 347.28 448 448 320.01 448z" />
+    <glyph glyph-name="sd-card"
+      unicode="&#xF7C2;"
+      horiz-adv-x="384" d=" M320 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM160 288H112V384H160V288zM240 288H192V384H240V288zM320 288H272V384H320V288z" />
+    <glyph glyph-name="search-dollar"
+      unicode="&#xF688;"
+      horiz-adv-x="512" d=" M505.04 5.34L405.3300000000001 105.03C400.8300000000001 109.53 394.73 112.03 388.3300000000001 112.03H372.0300000000001C399.6300000000001 147.33 416.0300000000001 191.72 416.0300000000001 240.02C416.03 354.91 322.92 448 208.02 448S0 354.91 0 240.02S93.11 32.04 208.02 32.04C256.32 32.04 300.73 48.44 336.03 76.04V59.74C336.03 53.34 338.53 47.24 343.03 42.74L442.74 -56.95C452.1399999999999 -66.35 467.34 -66.35 476.6399999999999 -56.95L504.9399999999999 -28.65C514.3399999999999 -19.25 514.3399999999999 -4.06 505.04 5.34zM208.0200000000001 96.04C128.48 96.04 64.02 160.38 64.02 240.02C64.02 319.55 128.37 384 208.0200000000001 384C287.5600000000001 384 352.0200000000001 319.66 352.0200000000001 240.02C352.0200000000001 160.49 287.6700000000001 96.04 208.0200000000001 96.04zM235.1300000000001 248.58L190.1200000000001 262.08C184.9600000000001 263.63 181.3500000000001 268.86 181.3500000000001 274.81C181.3500000000001 282.08 186.6500000000001 288 193.1500000000001 288H221.2600000000001C225.8200000000001 288 230.2200000000001 286.7099999999999 234.0800000000001 284.28C237.3200000000001 282.25 241.4400000000001 282.37 244.2100000000001 285.01L255.9600000000001 296.2199999999999C259.49 299.5899999999999 259.29 305.43 255.3900000000001 308.36C246.2900000000001 315.19 235.3100000000001 319.13 224.0200000000001 319.7099999999999V336C224.0200000000001 340.42 220.44 344 216.0200000000001 344H200.0200000000001C195.6000000000001 344 192.0200000000001 340.42 192.0200000000001 336V319.88C168.3900000000001 319.25 149.34 299.33 149.34 274.81C149.34 254.84 162.3300000000001 237 180.92 231.42L225.93 217.92C231.09 216.37 234.7 211.14 234.7 205.19C234.7 197.92 229.4 192 222.9 192H194.8C190.24 192 185.84 193.29 181.98 195.72C178.74 197.75 174.62 197.63 171.85 194.9900000000001L160.1 183.78C156.57 180.41 156.77 174.5700000000001 160.67 171.6400000000001C169.77 164.8100000000001 180.75 160.8700000000001 192.04 160.29V144C192.04 139.58 195.62 136 200.04 136H216.04C220.46 136 224.04 139.58 224.04 144V160.12C247.67 160.75 266.7200000000001 180.66 266.7200000000001 205.19C266.7200000000001 225.16 253.73 243 235.13 248.58z" />
+    <glyph glyph-name="search-location"
+      unicode="&#xF689;"
+      horiz-adv-x="512" d=" M505.04 5.34L405.3300000000001 105.03C400.8300000000001 109.53 394.73 112.03 388.3300000000001 112.03H372.0300000000001C399.6300000000001 147.33 416.0300000000001 191.72 416.0300000000001 240.02C416.03 354.91 322.92 448 208.02 448S0 354.91 0 240.02S93.11 32.04 208.02 32.04C256.32 32.04 300.73 48.44 336.03 76.04V59.74C336.03 53.34 338.53 47.24 343.03 42.74L442.74 -56.95C452.1399999999999 -66.35 467.34 -66.35 476.6399999999999 -56.95L504.9399999999999 -28.65C514.3399999999999 -19.25 514.3399999999999 -4.06 505.04 5.34zM208.0200000000001 96.04C128.48 96.04 64.02 160.38 64.02 240.02C64.02 319.55 128.37 384 208.0200000000001 384C287.5600000000001 384 352.0200000000001 319.66 352.0200000000001 240.02C352.0200000000001 160.49 287.6700000000001 96.04 208.0200000000001 96.04zM208.0400000000001 336C167.2600000000001 336 134.2000000000001 302.95 134.2000000000001 262.17C134.2000000000001 229.21 182.46 169.12 200.9500000000001 147.31A9.24 9.24 0 0 1 215.1300000000001 147.31C233.6200000000001 169.12 281.8800000000001 229.2 281.8800000000001 262.17C281.8800000000001 302.95 248.8200000000001 336 208.0400000000001 336zM208.0400000000001 240C194.7800000000001 240 184.0400000000001 250.75 184.0400000000001 264C184.0400000000001 277.26 194.7900000000001 288 208.0400000000001 288S232.0400000000001 277.26 232.0400000000001 264C232.0400000000001 250.75 221.2900000000001 240 208.0400000000001 240z" />
+    <glyph glyph-name="search-minus"
+      unicode="&#xF010;"
+      horiz-adv-x="512" d=" M304 256V224C304 217.4 298.6 212 292 212H124C117.4 212 112 217.4 112 224V256C112 262.6 117.4 268 124 268H292C298.6 268 304 262.6 304 256zM505 -28.7L476.7 -57C467.3 -66.4 452.1 -66.4 442.8 -57L343 42.7C338.5 47.2 336 53.3 336 59.7V76C300.7 48.4 256.3 32 208 32C93.1 32 0 125.1 0 240S93.1 448 208 448S416 354.9 416 240C416 191.7 399.6 147.3 372 112H388.3C394.7 112 400.8 109.5 405.3 105L505 5.3C514.3 -4.1 514.3 -19.3 505 -28.7zM344 240C344 315.2 283.2 376 208 376S72 315.2 72 240S132.8 104 208 104S344 164.8 344 240z" />
+    <glyph glyph-name="search-plus"
+      unicode="&#xF00E;"
+      horiz-adv-x="512" d=" M304 256V224C304 217.4 298.6 212 292 212H236V156C236 149.4 230.6 144 224 144H192C185.4 144 180 149.4 180 156V212H124C117.4 212 112 217.4 112 224V256C112 262.6 117.4 268 124 268H180V324C180 330.6 185.4 336 192 336H224C230.6 336 236 330.6 236 324V268H292C298.6 268 304 262.6 304 256zM505 -28.7L476.7 -57C467.3 -66.4 452.1 -66.4 442.8 -57L343 42.7C338.5 47.2 336 53.3 336 59.7V76C300.7 48.4 256.3 32 208 32C93.1 32 0 125.1 0 240S93.1 448 208 448S416 354.9 416 240C416 191.7 399.6 147.3 372 112H388.3C394.7 112 400.8 109.5 405.3 105L505 5.3C514.3 -4.1 514.3 -19.3 505 -28.7zM344 240C344 315.2 283.2 376 208 376S72 315.2 72 240S132.8 104 208 104S344 164.8 344 240z" />
+    <glyph glyph-name="search"
+      unicode="&#xF002;"
+      horiz-adv-x="512" d=" M505 5.3L405.3 105C400.8 109.5 394.7 112 388.3 112H372C399.6 147.3 416 191.7 416 240C416 354.9 322.9 448 208 448S0 354.9 0 240S93.1 32 208 32C256.3 32 300.7 48.4 336 76V59.7C336 53.3 338.5 47.2 343 42.7L442.7 -57C452.1 -66.4 467.3 -66.4 476.6 -57L504.9 -28.7C514.3 -19.3 514.3 -4.1 505 5.3zM208 112C137.3 112 80 169.2 80 240C80 310.7 137.2 368 208 368C278.7 368 336 310.8 336 240C336 169.3 278.8 112 208 112z" />
+    <glyph glyph-name="seedling"
+      unicode="&#xF4D8;"
+      horiz-adv-x="512" d=" M64 352H0C0 228.3 100.3 128 224 128V-16C224 -24.8 231.2 -32 240 -32H272C280.8 -32 288 -24.8 288 -16V128C288 251.7 187.7 352 64 352zM448 416C363.8 416 290.6 369.5 252.3 300.8C280 270.6 300.5 233.9 311.3 193.2C424 204.9 512 300.1 512 416H448z" />
+    <glyph glyph-name="server"
+      unicode="&#xF233;"
+      horiz-adv-x="512" d=" M480 288H32C14.327 288 0 302.327 0 320V384C0 401.673 14.327 416 32 416H480C497.673 416 512 401.673 512 384V320C512 302.327 497.673 288 480 288zM432 376C418.745 376 408 365.255 408 352S418.745 328 432 328S456 338.745 456 352S445.255 376 432 376zM368 376C354.745 376 344 365.255 344 352S354.745 328 368 328S392 338.745 392 352S381.255 376 368 376zM480 128H32C14.327 128 0 142.327 0 160V224C0 241.673 14.327 256 32 256H480C497.673 256 512 241.673 512 224V160C512 142.327 497.673 128 480 128zM432 216C418.745 216 408 205.255 408 192S418.745 168 432 168S456 178.745 456 192S445.255 216 432 216zM368 216C354.745 216 344 205.255 344 192S354.745 168 368 168S392 178.745 392 192S381.255 216 368 216zM480 -32H32C14.327 -32 0 -17.673 0 0V64C0 81.673 14.327 96 32 96H480C497.673 96 512 81.673 512 64V0C512 -17.673 497.673 -32 480 -32zM432 56C418.745 56 408 45.255 408 32S418.745 8 432 8S456 18.745 456 32S445.255 56 432 56zM368 56C354.745 56 344 45.255 344 32S354.745 8 368 8S392 18.745 392 32S381.255 56 368 56z" />
+    <glyph glyph-name="shapes"
+      unicode="&#xF61F;"
+      horiz-adv-x="512" d=" M512 128V-32C512 -49.67 497.67 -64 480 -64H320C302.33 -64 288 -49.67 288 -32V128C288 145.67 302.33 160 320 160H480C497.67 160 512 145.67 512 128zM128 192C57.31 192 0 134.69 0 64S57.31 -64 128 -64S256 -6.69 256 64S198.69 192 128 192zM479.03 224C504.3699999999999 224 520.2099999999999 250.67 507.54 272L412.51 432C399.84 453.33 368.16 453.33 355.49 432L260.4600000000001 272C247.7900000000001 250.67 263.6300000000001 224 288.9700000000001 224H479.03z" />
+    <glyph glyph-name="share-all"
+      unicode="&#xF367;"
+      horiz-adv-x="576" d=" M439.691 221.836L263.687 69.85C248.3 56.561 224 67.313 224 88.014V172.189C115.332 159.656 72.898 113.335 111.41 -9.826C116.444 -25.924 96.986 -38.388 83.333 -28.457C39.582 3.365 0 64.234 0 125.674C0 257.01 94.818 298.991 224 309.223V391.985C224 412.652 248.28 423.454 263.687 410.149L439.6910000000001 258.164C450.777 248.589 450.7620000000001 231.397 439.6910000000001 221.836zM567.691 258.164L391.687 410.149C376.28 423.454 352 412.652 352 391.985V376.1670000000001L460.607 282.381A55.949 55.949 0 0 0 480 240.002A55.96 55.96 0 0 0 460.606 197.617L352 103.832V88.014C352 67.313 376.3 56.561 391.687 69.85L567.691 221.836C578.7620000000001 231.397 578.777 248.589 567.691 258.164z" />
+    <glyph glyph-name="share-alt-square"
+      unicode="&#xF1E1;"
+      horiz-adv-x="448" d=" M448 368V16C448 -10.51 426.51 -32 400 -32H48C21.49 -32 0 -10.51 0 16V368C0 394.51 21.49 416 48 416H400C426.51 416 448 394.51 448 368zM304 152C289.438 152 276.177 146.439 266.217 137.329L198.259 178.104A56.33899999999999 56.33899999999999 0 0 1 198.259 205.897L266.217 246.672C276.177 237.561 289.438 232 304 232C334.928 232 360 257.072 360 288S334.928 344 304 344S248 318.928 248 288C248 283.203 248.605 278.5470000000001 249.74 274.103L181.782 233.328C171.823 242.439 158.562 248 144 248C113.072 248 88 222.928 88 192S113.072 136 144 136C158.562 136 171.823 141.561 181.783 150.671L249.741 109.896A56.08800000000001 56.08800000000001 0 0 1 248.001 95.999C248.001 65.071 273.073 39.999 304.001 39.999S360.001 65.071 360.001 95.999C360 126.928 334.928 152 304 152z" />
+    <glyph glyph-name="share-alt"
+      unicode="&#xF1E0;"
+      horiz-adv-x="448" d=" M352 128C329.392 128 308.613 120.181 292.21 107.105L189.724 171.159A96.551 96.551 0 0 1 189.724 212.842L292.21 276.896C308.613 263.819 329.392 256 352 256C405.019 256 448 298.981 448 352S405.019 448 352 448S256 405.019 256 352C256 344.842 256.79 337.87 258.276 331.159L155.79 267.105C139.387 280.1810000000001 118.608 288 96 288C42.981 288 0 245.019 0 192S42.981 96 96 96C118.608 96 139.387 103.819 155.79 116.895L258.276 52.841A96.301 96.301 0 0 1 256 32C256 -21.019 298.981 -64 352 -64S448 -21.019 448 32S405.019 128 352 128z" />
+    <glyph glyph-name="share-square"
+      unicode="&#xF14D;"
+      horiz-adv-x="576" d=" M568.482 270.552L424.479 134.567C409.3 120.232 384 130.86 384 152.015V223.978C239.425 223.008 178.434 188.865 219.225 52.625C223.708 37.652 206.379 26.058 194.219 35.295C155.252 64.895 120 121.512 120 178.661C120 322.598 237.599 351.161 384 351.973V423.988C384 445.162 409.317 455.756 424.479 441.436L568.482 305.448C578.502 295.985 578.51 280.023 568.482 270.552zM384 68.872V0H64V320H114.916A11.989999999999998 11.989999999999998 0 0 1 123.564 323.693C138.517 339.261 155.801 351.583 174.578 361.3690000000001C185.708 367.17 181.584 384 169.033 384H48C21.49 384 0 362.51 0 336V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V72.806C448 81.094 439.803 86.872 431.989 84.108A71.83 71.83 0 0 0 397.8 80.731C390.53 81.777 384 76.217 384 68.872z" />
+    <glyph glyph-name="share"
+      unicode="&#xF064;"
+      horiz-adv-x="512" d=" M503.691 258.164L327.687 410.149C312.281 423.454 288 412.653 288 391.985V311.932C127.371 310.093 0 277.9 0 125.674C0 64.233 39.581 3.365 83.333 -28.458C96.986 -38.389 116.444 -25.925 111.41 -9.827C66.066 135.186 132.917 173.684 288 175.915V88C288 67.3 312.3 56.547 327.687 69.836L503.691 221.836C514.7620000000001 231.398 514.777 248.589 503.691 258.164z" />
+    <glyph glyph-name="sheep"
+      unicode="&#xF711;"
+      horiz-adv-x="640" d=" M622.25 342.04L576 364.78V384C576 401.67 561.67 416 544 416H480C480 433.67 465.67 448 448 448S416 433.67 416 416V339.18C398.4700000000001 355.1 368.93 355.04 351.38 338.76C342.78 346.92 331.22 352 318.39 352C305.92 352 294.39 347.2 285.75 339.2C277.11 347.2 265.92 352 253.11 352C240.64 352 229.11 347.2 220.8 339.2C212.16 347.2 200.64 352 188.16 352C175.04 352 163.19 346.56 154.55 338.25C143.36 347.53 128.32 352 112.96 348.48C95.37 344.64 81.93 331.53 77.12 315.2C60.48 318.08 42.89 312 31.68 297.92C20.16 283.84 18.24 265.28 24.65 249.61C9.92 241.28 0 225.61 0 207.69C0 189.46 10.23 173.77 24.95 165.77C18.54 150.08 20.79 131.54 32 117.46C43.52 103.37 61.11 97.29 77.75 100.18C81.83 86.5699999999999 92.39 75.42 106.22 69.91L100.08 53.53A63.97299999999999 63.97299999999999 0 0 1 97.92 15.53L114.77 -51.88A16.002 16.002 0 0 1 130.29 -64H196.25C206.66 -64 214.3 -54.22 211.77 -44.12L193.46 29.14L208.22 68.5C212.95 70.65 217.44 73.28 221.12 76.81C229.76 68.81 241.29 64 253.76 64C266.24 64 277.76 68.81 286.4 76.81C295.04 68.81 306.24 64 319.04 64C331.56 64 342.91 68.98 351.43 76.97C351.6 76.81 351.83 76.7600000000001 352 76.6V-48C352 -56.84 359.16 -64 368 -64H432C440.8399999999999 -64 448 -56.84 448 -48V117.33L483.5 141A64.009 64.009 0 0 1 512 194.25V256H599.66C608.92 256 617.42 260.9 622.03 268.94C629.62 282.2 640.01 302.39 640.01 313.53A31.798 31.798 0 0 1 622.25 342.04zM512 336C503.16 336 496 343.16 496 352S503.16 368 512 368S528 360.8400000000001 528 352S520.84 336 512 336z" />
+    <glyph glyph-name="shekel-sign"
+      unicode="&#xF20B;"
+      horiz-adv-x="448" d=" M248 280V112C248 103.16 255.16 96 264 96H312C320.84 96 328 103.16 328 112V280C328 355.11 267.11 416 192 416H24C10.75 416 0 405.26 0 392V-16C0 -24.84 7.16 -32 16 -32H64C72.84 -32 80 -24.84 80 -16V336H192C222.93 336 248 310.93 248 280zM432 416H384C375.1600000000001 416 368 408.8400000000001 368 400V104C368 73.07 342.93 48 312 48H200V272C200 280.8400000000001 192.84 288 184 288H136C127.16 288 120 280.8400000000001 120 272V-8C120 -21.25 130.75 -32 144 -32H312C387.11 -32 448 28.89 448 104V400C448 408.8400000000001 440.84 416 432 416z" />
+    <glyph glyph-name="shield-alt"
+      unicode="&#xF3ED;"
+      horiz-adv-x="512" d=" M496 320C496 98.718 360.0660000000001 -24.645 274.461 -60.308A48 48 0 0 0 237.538 -60.308C130.495 -15.713 16 121.513 16 320A48 48 0 0 0 45.539 364.308L237.539 444.308A48 48 0 0 0 274.462 444.308L466.462 364.308A48 48 0 0 0 496 320zM256 1.687L256.066 1.653C349.801 48.342 428.563 157.961 431.883 309.382L256 382.6670000000001V1.687z" />
+    <glyph glyph-name="shield-check"
+      unicode="&#xF2F7;"
+      horiz-adv-x="512" d=" M496 320C496 98.718 360.0660000000001 -24.645 274.461 -60.308A48 48 0 0 0 237.538 -60.308C130.495 -15.713 16 121.513 16 320A48 48 0 0 0 45.539 364.308L237.539 444.308A48 48 0 0 0 274.462 444.308L466.462 364.308A48 48 0 0 0 496 320zM235.313 66.059L419.313 250.0590000000001C425.561 256.307 425.561 266.438 419.313 272.6860000000001L396.686 295.3130000000001C390.438 301.5610000000001 380.307 301.562 374.058 295.3130000000001L224 145.255L153.941 215.314C147.693 221.562 137.562 221.562 131.313 215.314L108.686 192.687C102.438 186.439 102.438 176.308 108.686 170.06L212.686 66.06C218.934 59.81 229.065 59.81 235.313 66.059z" />
+    <glyph glyph-name="shield-cross"
+      unicode="&#xF712;"
+      horiz-adv-x="448" d=" M420.43 364.31L241.23 444.31C230.2 449.23 217.8 449.23 206.77 444.31L27.57 364.31C10.88 356.86 0 339.38 0 320C0 121.51 106.86 -15.71 206.77 -60.31C217.8 -65.23 230.2 -65.23 241.23 -60.31C321.13 -24.64 448 98.72 448 320C448 339.38 437.12 356.86 420.43 364.31zM374.09 224H256V23.73C244.66 14.81 233.74 7.61 223.93 2.43C213.25 7.94 202.57 15.09 192 23.24V224H74.8C70.41 244.25 67.43 265.58 65.9 288H192V367.63L224 381.92L256 367.63V288H382.74C381.27 265.28 378.3400000000001 243.93 374.0900000000001 224z" />
+    <glyph glyph-name="shield"
+      unicode="&#xF132;"
+      horiz-adv-x="512" d=" M466.5 364.3L274.5 444.3A48.15 48.15 0 0 1 237.6 444.3L45.6 364.3C27.7 356.9 16 339.4 16 320C16 121.5 130.5 -15.7 237.5 -60.3C249.3 -65.2 262.6 -65.2 274.4 -60.3C360.1 -24.6 496 98.7 496 320C496 339.4 484.3 356.9 466.5 364.3z" />
+    <glyph glyph-name="ship"
+      unicode="&#xF21A;"
+      horiz-adv-x="640" d=" M496.616 75.361L566.6279999999999 145.373C583.5269999999999 162.273 576.5699999999999 191.144 553.7919999999999 198.465L512 211.898V352C512 369.673 497.673 384 480 384H416V424C416 437.255 405.255 448 392 448H248C234.745 448 224 437.255 224 424V384H160C142.327 384 128 369.673 128 352V211.898L86.208 198.465C63.455 191.152 56.454 162.292 73.372 145.373L143.384 75.361C125.828 31.713 85.587 0 24 0C10.745 0 0 -10.745 0 -24V-40C0 -53.255 10.745 -64 24 -64C85.023 -64 131.499 -43.39 167.258 -4.604C181.677 -39.432 216.021 -64 256 -64H384C423.979 -64 458.323 -39.432 472.742 -4.604C508.495 -43.384 554.968 -64 616 -64C629.255 -64 640 -53.255 640 -40V-24C640 -10.745 629.255 0 616 0C555.183 0 514.458 31.001 496.616 75.361zM192 320H448V232.469L329.7920000000001 270.464A31.995 31.995 0 0 1 310.2080000000001 270.464L192 232.469V320z" />
+    <glyph glyph-name="shipping-fast"
+      unicode="&#xF48B;"
+      horiz-adv-x="640" d=" M624 96H608V204.1C608 216.8 602.9 229 593.9 238L494 337.9C485 346.9 472.8 352 460.1 352H416V400C416 426.5 394.5 448 368 448H112C85.5 448 64 426.5 64 400V352H8C3.6 352 0 348.4 0 344V328C0 323.6 3.6 320 8 320H280C284.4 320 288 316.4 288 312V296C288 291.6 284.4 288 280 288H40C35.6 288 32 284.4 32 280V264C32 259.6 35.6 256 40 256H248C252.4 256 256 252.4 256 248V232C256 227.6 252.4 224 248 224H8C3.6 224 0 220.4 0 216V200C0 195.6 3.6 192 8 192H216C220.4 192 224 188.4 224 184V168C224 163.6 220.4 160 216 160H64V32C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V80C640 88.8 632.8 96 624 96zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 192H416V304H460.1L560 204.1V192z" />
+    <glyph glyph-name="shipping-timed"
+      unicode="&#xF48C;"
+      horiz-adv-x="640" d=" M248 288H224V344C224 348.4 220.4 352 216 352H200C195.6 352 192 348.4 192 344V264C192 259.6 195.6 256 200 256H248C252.4 256 256 259.6 256 264V280C256 284.4 252.4 288 248 288zM624 96H608V204.1C608 216.8 602.9 229 593.9 238L494 337.9C485 346.9 472.8 352 460.1 352H416V400C416 426.5 394.5 448 368 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V80C640 88.8 632.8 96 624 96zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM208 160C146.1 160 96 210.1 96 272S146.1 384 208 384S320 333.9 320 272S269.9 160 208 160zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 192H416V304H460.1L560 204.1V192z" />
+    <glyph glyph-name="shoe-prints"
+      unicode="&#xF54B;"
+      horiz-adv-x="640" d=" M192 288H224V416H192C156.65 416 128 387.35 128 352S156.65 288 192 288zM0 32C0 -3.35 28.65 -32 64 -32H96V96H64C28.65 96 0 67.35 0 32zM337.46 160C302.55 160 261.3 146.88 232.73 128C207.94 111.62 188.21 96 128 96V-32L185.53 -47.97C211.74 -55.25 238.54 -61.09 265.84 -63.02C298.53 -65.33 331.44 -63.69 363.42 -56.82C472.9 -33.3 512 18.78 512 64C512 128 427.82 160 337.4600000000001 160zM491.42 440.81C459.44 447.68 426.53 449.33 393.84 447.01C366.54 445.08 339.74 439.24 313.53 431.9700000000001L256 416V288C316.2 288 335.94 272.38 360.73 256C389.3 237.12 430.55 224 465.46 224C555.82 224 640 256 640 320C640 365.2200000000001 600.9 417.3 491.42 440.81z" />
+    <glyph glyph-name="shopping-bag"
+      unicode="&#xF290;"
+      horiz-adv-x="448" d=" M352 288V320C352 390.58 294.579 448 224 448C153.42 448 96 390.58 96 320V288H0V16C0 -28.183 35.817 -64 80 -64H368C412.183 -64 448 -28.183 448 16V288H352zM160 320C160 355.29 188.71 384 224 384S288 355.29 288 320V288H160V320zM320 200C306.745 200 296 210.745 296 224S306.745 248 320 248S344 237.255 344 224S333.255 200 320 200zM128 200C114.745 200 104 210.745 104 224S114.745 248 128 248S152 237.255 152 224S141.255 200 128 200z" />
+    <glyph glyph-name="shopping-basket"
+      unicode="&#xF291;"
+      horiz-adv-x="576" d=" M576 232V216C576 202.745 565.255 192 552 192H544L517.887 9.212C514.509 -14.435 494.257 -32 470.37 -32H105.63C81.743 -32 61.491 -14.435 58.112 9.212L32 192H24C10.745 192 0 202.745 0 216V232C0 245.255 10.745 256 24 256H91.341L198.121 402.8210000000001C208.516 417.113 228.528 420.274 242.822 409.879C257.115 399.484 260.275 379.471 249.88 365.178L170.477 256H405.523L326.12 365.179C315.725 379.471 318.886 399.485 333.1790000000001 409.88C347.4700000000001 420.275 367.485 417.115 377.8800000000001 402.822L484.659 256H552C565.255 256 576 245.255 576 232zM312 56V168C312 181.255 301.255 192 288 192S264 181.255 264 168V56C264 42.745 274.745 32 288 32S312 42.745 312 56zM424 56V168C424 181.255 413.255 192 400 192S376 181.255 376 168V56C376 42.745 386.745 32 400 32S424 42.745 424 56zM200 56V168C200 181.255 189.255 192 176 192S152 181.255 152 168V56C152 42.745 162.745 32 176 32S200 42.745 200 56z" />
+    <glyph glyph-name="shopping-cart"
+      unicode="&#xF07A;"
+      horiz-adv-x="576" d=" M528.12 146.681L575.393 354.681C578.806 369.699 567.391 384 551.99 384H159.208L150.042 428.81C147.758 439.979 137.93 448 126.529 448H24C10.745 448 0 437.255 0 424V408C0 394.745 10.745 384 24 384H93.883L164.131 40.565C147.325 30.9 136 12.778 136 -8C136 -38.928 161.072 -64 192 -64S248 -38.928 248 -8C248 7.674 241.553 21.835 231.176 32H440.823C430.447 21.835 424 7.674 424 -8C424 -38.928 449.072 -64 480 -64S536 -38.928 536 -8C536 14.172 523.112 33.332 504.421 42.405L509.938 66.681C513.351 81.699 501.936 96 486.535 96H218.117L211.572 128H504.717C515.923 128 525.637 135.754 528.12 146.681z" />
+    <glyph glyph-name="shovel-snow"
+      unicode="&#xF7C3;"
+      horiz-adv-x="512" d=" M503.2 375.7L439.7 439.2C428 450.9 409 450.9 397.3 439.2L372.8 414.7C358.6 400.5 350.9000000000001 381.5 350.9000000000001 361.8C350.9000000000001 356.9 351.4000000000001 352 352.4000000000001 347C353.7000000000001 340.5 356.0000000000001 334.4000000000001 358.8 328.6L259.5 229.3L210.2 278.6C198.9 289.9000000000001 180.9 291.1 168.3 281.3L12.4 161C-2.8 149.3 -4.2 126.9 9.4 113.4L177.4 -54.6C191 -68.2 213.3 -66.7 225 -51.6L345.4 104.2C355.2 116.9 354 134.8 342.7 146.1L293.4 195.4L392.7 294.7C398.5 291.9 404.6 289.6 411.1 288.3C435.7 283.4 460.9999999999999 291 478.6999999999999 308.8L503.1999999999999 333.3C514.9 345 514.9 364 503.1999999999999 375.7zM112 96C107.9 96 103.8 97.6 100.7 100.7C94.5 106.9 94.5 117.1 100.7 123.3L180.7 203.3C186.9 209.6 197.1 209.6 203.3 203.3C209.5 197.1 209.5 186.9 203.3 180.7L123.3 100.7C120.2 97.6 116.1 96 112 96zM267.3 116.7L187.3 36.7C184.2 33.6 180.1 32 176 32S167.8 33.6 164.7 36.7C158.5 42.9 158.5 53.1 164.7 59.3L244.7 139.3C250.9 145.5 261.1 145.5 267.3 139.3S273.6 122.9 267.3 116.7zM444.8 342.7C438.4000000000001 336.3 429.3 333.6 420.5 335.4C409.8 337.5 401.5 345.8 399.4 356.5C397.7 365.4 400.4 374.4 406.7 380.8L418.5 392.6L456.6 354.5L444.8 342.7z" />
+    <glyph glyph-name="shovel"
+      unicode="&#xF713;"
+      horiz-adv-x="512" d=" M500.3 351.62L415.62 436.3C400.0300000000001 451.89 374.65 451.89 359.06 436.3L326.39 403.63C307.45 384.69 297.14 359.32 297.14 333.08C297.14 326.55 297.78 319.95 299.09 313.39C300.83 304.7 303.84 296.55 307.62 288.86L197.36 178.61L152.1 223.87C139.6 236.37 119.34 236.37 106.85 223.87L38.97 155.99C-11.02 106 -6.29 -25.03 16.34 -47.66C38.97 -70.2900000000001 170 -75.02 219.99 -25.03L287.87 42.85C300.37 55.35 300.37 75.61 287.87 88.1L242.61 133.36L352.87 243.62C360.57 239.83 368.74 236.82 377.44 235.08C410.25 228.52 443.9700000000001 238.72 467.63 262.38L500.3 295.05C515.9 310.65 515.9 336.02 500.3 351.62zM422.38 307.63A35.87 35.87 0 0 0 389.96 297.83C375.73 300.69 364.69 311.74 361.83 326C359.5 337.83 363.14 349.91 371.63 358.38L387.33 374.08L438.08 323.33L422.38 307.63z" />
+    <glyph glyph-name="shower"
+      unicode="&#xF2CC;"
+      horiz-adv-x="512" d=" M389.6600000000001 312.4L231.6 154.34C222.23 144.97 207.03 144.97 197.66 154.34L186.34 165.66C176.97 175.03 176.97 190.23 186.34 199.6L186.45 199.71C152.42 239.92 151.29 298.65 183.06 340.09C171.09 347.64 156.92 352 141.7600000000001 352C98.88 352 64 317.12 64 274.24V-32H0V274.24C0 352.41 63.59 416 141.76 416C178.69 416 212.37 401.8 237.62 378.58C273.52 390.09 314.12 383.08 344.29 357.55L344.4000000000001 357.66C353.7700000000001 367.03 368.9700000000001 367.03 378.3400000000001 357.66L389.6600000000001 346.3400000000001C399.0300000000001 336.9700000000001 399.0300000000001 321.77 389.6600000000001 312.4zM384 240C384 231.163 376.837 224 368 224S352 231.163 352 240S359.163 256 368 256S384 248.837 384 240zM416 240C416 248.837 423.163 256 432 256S448 248.837 448 240S440.837 224 432 224S416 231.163 416 240zM512 240C512 231.163 504.837 224 496 224S480 231.163 480 240S487.163 256 496 256S512 248.837 512 240zM352 208C352 199.163 344.837 192 336 192S320 199.163 320 208S327.163 224 336 224S352 216.837 352 208zM400 224C408.837 224 416 216.837 416 208S408.837 192 400 192S384 199.163 384 208S391.163 224 400 224zM480 208C480 199.163 472.837 192 464 192S448 199.163 448 208S455.163 224 464 224S480 216.837 480 208zM320 176C320 167.163 312.837 160 304 160S288 167.163 288 176S295.163 192 304 192S320 184.837 320 176zM352 176C352 184.837 359.163 192 368 192S384 184.837 384 176S376.837 160 368 160S352 167.163 352 176zM448 176C448 167.163 440.837 160 432 160S416 167.163 416 176S423.163 192 432 192S448 184.837 448 176zM320 144C320 152.837 327.163 160 336 160S352 152.837 352 144S344.837 128 336 128S320 135.163 320 144zM416 144C416 135.163 408.837 128 400 128S384 135.163 384 144S391.163 160 400 160S416 152.837 416 144zM320 112C320 103.163 312.837 96 304 96S288 103.163 288 112S295.163 128 304 128S320 120.837 320 112zM384 112C384 103.163 376.837 96 368 96S352 103.163 352 112S359.163 128 368 128S384 120.837 384 112zM352 80C352 71.163 344.837 64 336 64S320 71.163 320 80S327.163 96 336 96S352 88.837 352 80zM320 48C320 39.163 312.837 32 304 32S288 39.163 288 48S295.163 64 304 64S320 56.837 320 48z" />
+    <glyph glyph-name="shredder"
+      unicode="&#xF68A;"
+      horiz-adv-x="512" d=" M232 -48C232 -56.84 239.16 -64 248 -64H264C272.84 -64 280 -56.84 280 -48V32H232V-48zM136 -48C136 -56.84 143.16 -64 152 -64H168C176.84 -64 184 -56.84 184 -48V32H136V-48zM40 -48C40 -56.84 47.16 -64 56 -64H72C80.84 -64 88 -56.84 88 -48V32H40V-48zM328 -48C328 -56.84 335.1600000000001 -64 344 -64H360C368.84 -64 376 -56.84 376 -48V32H328V-48zM448 256V370.75C448 379.24 444.63 387.37 438.63 393.38L393.37 438.63C387.37 444.63 379.23 448 370.74 448H96C78.33 448 64 433.67 64 416V256C28.65 256 0 227.35 0 192V80C0 71.16 7.16 64 16 64H496C504.84 64 512 71.16 512 80V192C512 227.35 483.35 256 448 256zM384 224H128V384H320V336C320 327.16 327.1600000000001 320 336 320H384V224zM432 152C418.75 152 408 162.75 408 176C408 189.26 418.75 200 432 200S456 189.26 456 176C456 162.75 445.25 152 432 152zM424 -48C424 -56.84 431.1600000000001 -64 440 -64H456C464.84 -64 472 -56.84 472 -48V32H424V-48z" />
+    <glyph glyph-name="shuttle-van"
+      unicode="&#xF5B6;"
+      horiz-adv-x="640" d=" M628.88 237.35L494.39 398.73A48.01 48.01 0 0 1 457.52 416H32C14.33 416 0 401.67 0 384V96C0 78.33 14.33 64 32 64H64C64 10.98 106.98 -32 160 -32S256 10.98 256 64H384C384 10.98 426.98 -32 480 -32S576 10.98 576 64H608C625.67 64 640 78.33 640 96V206.62C640 217.85 636.06 228.72 628.88 237.35zM64 256V352H160V256H64zM160 16C133.49 16 112 37.49 112 64S133.49 112 160 112S208 90.51 208 64S186.51 16 160 16zM320 256H224V352H320V256zM480 16C453.49 16 432 37.49 432 64S453.49 112 480 112S528 90.51 528 64S506.51 16 480 16zM384 256V352H450.02L530.02 256H384z" />
+    <glyph glyph-name="shuttlecock"
+      unicode="&#xF45B;"
+      horiz-adv-x="512" d=" M484 256H464C464 250 468.3 200.3 419.3 184.8L328.1 156L301.7000000000001 110.6L223.7000000000001 74.3L198.0000000000001 100.1L268.8000000000001 170.9L409.6000000000001 215.4C422.9000000000001 219.6 432.0000000000001 232.0000000000001 432.0000000000001 245.9000000000001V340C432.0000000000001 355.5 419.5000000000001 368 404.0000000000001 368H309.9000000000001C295.9000000000001 368 283.6000000000001 358.9 279.4000000000001 345.6L234.9000000000001 204.8L164.1000000000001 134L138.4000000000001 159.7L174.7000000000001 237.7L220.1000000000001 264.1L248.9000000000001 355.3C263.4 401.3 307.7 400 320 400V420C320 435.4 307.4 448 292 448H237.4C226.6 448 216.6 441.7 212 431.8L95.5 181.5L56.3 142.3L206.3 -7.7L245.5 31.5L495.8 148C505.6 152.6 512 162.5 512 173.4V228C512 243.4 499.4 256 484 256zM31.1 117C-10.3 75.6 -10.3 8.4 31.1 -33C72.5 -74.4 139.7 -74.4 181.1 -33L183.7 -30.4L33.7 119.6L31.1 117z" />
+    <glyph glyph-name="sigma"
+      unicode="&#xF68B;"
+      horiz-adv-x="384" d=" M352 416H52.03C32.37 416 14.59 405.11 5.68 387.56C-3.23 370.03 -1.57 349.25 9.99 333.4L132.66 192L10.03 50.64C-1.56 34.75 -3.22 13.97 5.69 -3.56C14.59 -21.11 32.37 -32 52.03 -32H352C369.67 -32 384 -17.67 384 0V72C384 85.25 373.25 96 360 96H312C298.75 96 288 85.25 288 72V64H142.25L251.34 192L142.25 320H288V312C288 298.75 298.75 288 312 288H360C373.25 288 384 298.75 384 312V384C384 401.67 369.67 416 352 416z" />
+    <glyph glyph-name="sign-in-alt"
+      unicode="&#xF2F6;"
+      horiz-adv-x="512" d=" M416 0H332C325.4 0 320 5.4 320 12V52C320 58.6 325.4 64 332 64H416C433.7 64 448 78.3 448 96V288C448 305.7 433.7 320 416 320H332C325.4 320 320 325.4 320 332V372C320 378.6 325.4 384 332 384H416C469 384 512 341 512 288V96C512 43 469 0 416 0zM369 201L201 369C186 384 160 373.5 160 352V256H24C10.7 256 0 245.3 0 232V136C0 122.7 10.7 112 24 112H160V16C160 -5.5 186 -16 201 -1L369 167C378.3 176.4 378.3 191.6 369 201z" />
+    <glyph glyph-name="sign-in"
+      unicode="&#xF090;"
+      horiz-adv-x="512" d=" M137.2 337.7L159.1 359.6C168.4 368.9 183.6 369 193 359.7L344.9 209C354.4 199.6 354.4 184.3 344.9 174.9L193 24.3C183.6 15 168.5 15 159.1 24.4L137.2 46.3C127.5 56 127.9 71.7 138 81L215.6 152.1H24C10.7 152.1 0 162.8 0 176.1V208.1C0 221.4 10.7 232.1 24 232.1H215.5L137.9 303.2000000000001C127.9 312.3 127.5 328.1 137.2 337.7000000000001zM512 96V288C512 341 469 384 416 384H332C325.4 384 320 378.6 320 372V332C320 325.4 325.4 320 332 320H416C433.7 320 448 305.7 448 288V96C448 78.3 433.7 64 416 64H332C325.4 64 320 58.6 320 52V12C320 5.4 325.4 0 332 0H416C469 0 512 43 512 96z" />
+    <glyph glyph-name="sign-language"
+      unicode="&#xF2A7;"
+      horiz-adv-x="448" d=" M91.434 -35.987C91.127 -19.969 104.543 -6.858 120.564 -6.858H182.857V-1.144H56.993C40.972 -1.144 27.556 11.967 27.863 27.985C28.16 43.509 40.835 56 56.428 56H182.857V61.714H29.136C13.115 61.714 -0.301 74.825 0.006 90.843C0.303 106.365 12.979 118.856 28.572 118.856H182.858V124.57H57.707C41.686 124.57 28.27 137.681 28.577 153.699C28.874 169.221 41.55 181.712 57.143 181.712H225.709L194.624 204.318C181.862 213.599 179.041 231.467 188.322 244.23C197.603 256.991 215.472 259.812 228.234 250.532L351.5950000000001 160.817A34.287 34.287 0 0 0 365.7150000000001 133.089V-8.047C365.7150000000001 -23.957 354.769 -37.777 339.2820000000001 -41.421L258.8110000000001 -60.3550000000001A137.16 137.16 0 0 0 227.4000000000001 -64.0010000000001H120C104.407 -64.0000000000001 91.731 -51.5090000000001 91.434 -35.9870000000001zM164.683 189.714H201.106L189.919 197.8499999999999C171.34 211.3609999999999 169.606 238.737 186.749 254.386L173.745 271.0859999999999C163.902 283.7269999999999 145.315 286.257 132.865 276.1739999999999C120.8 266.4029999999999 118.732 248.7269999999999 128.312 236.4239999999999L164.683 189.714zM447.981 191.817L442.978 344.269C442.4600000000001 360.04 429.2560000000001 372.405 413.485 371.8879999999999C397.712 371.37 385.348 358.166 385.866 342.395L387.128 303.98L283.565 436.981C273.985 449.284 256.342 451.611 243.912 442.3090000000001C231.085 432.71 228.983 414.069 238.826 401.428L315.715 302.683L311.206 299.1720000000001L216.416 420.906C206.8359999999999 433.209 189.1929999999999 435.536 176.763 426.234C163.936 416.635 161.834 397.994 171.6769999999999 385.353L266.12 264.065L261.611 260.554L183.9359999999999 360.308C174.3559999999999 372.611 156.7129999999999 374.938 144.2829999999999 365.636C131.4559999999999 356.0370000000001 129.3539999999999 337.396 139.1969999999999 324.755L191.2499999999999 257.906C203.7469999999999 266.163 220.3049999999999 266.1910000000001 232.9399999999999 257.002L356.2999999999999 167.288C367.2039999999999 159.358 373.7149999999999 146.573 373.7149999999999 133.09V116.091L434.779 163.64A34.285 34.285 0 0 1 447.981 191.817z" />
+    <glyph glyph-name="sign-out-alt"
+      unicode="&#xF2F5;"
+      horiz-adv-x="512" d=" M497 175L329 7C314 -8 288 2.5 288 24V120H152C138.7 120 128 130.7 128 144V240C128 253.3 138.7 264 152 264H288V360C288 381.4 313.9 392 329 377L497 209C506.3 199.6 506.3 184.4 497 175zM192 12V52C192 58.6 186.6 64 180 64H96C78.3 64 64 78.3 64 96V288C64 305.7 78.3 320 96 320H180C186.6 320 192 325.4 192 332V372C192 378.6 186.6 384 180 384H96C43 384 0 341 0 288V96C0 43 43 0 96 0H180C186.6 0 192 5.4 192 12z" />
+    <glyph glyph-name="sign-out"
+      unicode="&#xF08B;"
+      horiz-adv-x="512" d=" M180 0H96C43 0 0 43 0 96V288C0 341 43 384 96 384H180C186.6 384 192 378.6 192 372V332C192 325.4 186.6 320 180 320H96C78.3 320 64 305.7 64 288V96C64 78.3 78.3 64 96 64H180C186.6 64 192 58.6 192 52V12C192 5.4 186.6 0 180 0zM297.9 303.1L375.5 232.0000000000001H184C170.7 232.0000000000001 160 221.3000000000001 160 208V176C160 162.7 170.7 152 184 152H375.5L297.9 80.9C287.8 71.7 287.5 55.9 297.1 46.2L319 24.3C328.3 15 343.5 14.9 352.8999999999999 24.2L504.8999999999999 175C514.3999999999999 184.4 514.3999999999999 199.7 504.8999999999999 209.1L353 359.7C343.6 369 328.5 369 319.1 359.6L297.2000000000001 337.7000000000001C287.5000000000001 328.1 287.9000000000001 312.3 297.9000000000001 303.1z" />
+    <glyph glyph-name="sign"
+      unicode="&#xF4D9;"
+      horiz-adv-x="512" d=" M496 384H128V432C128 440.8 120.8 448 112 448H80C71.2 448 64 440.8 64 432V384H16C7.2 384 0 376.8 0 368V336C0 327.2 7.2 320 16 320H64V-48C64 -56.8 71.2 -64 80 -64H112C120.8 -64 128 -56.8 128 -48V320H496C504.8 320 512 327.2 512 336V368C512 376.8 504.8 384 496 384zM160 64H480V288H160V64z" />
+    <glyph glyph-name="signal-1"
+      unicode="&#xF68C;"
+      horiz-adv-x="640" d=" M88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64z" />
+    <glyph glyph-name="signal-2"
+      unicode="&#xF68D;"
+      horiz-adv-x="640" d=" M216 160H168C159.16 160 152 152.84 152 144V-48C152 -56.84 159.16 -64 168 -64H216C224.84 -64 232 -56.84 232 -48V144C232 152.84 224.84 160 216 160zM88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64z" />
+    <glyph glyph-name="signal-3"
+      unicode="&#xF68E;"
+      horiz-adv-x="640" d=" M216 160H168C159.16 160 152 152.84 152 144V-48C152 -56.84 159.16 -64 168 -64H216C224.84 -64 232 -56.84 232 -48V144C232 152.84 224.84 160 216 160zM88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64zM344 256H296C287.1600000000001 256 280 248.84 280 240V-48C280 -56.84 287.1600000000001 -64 296 -64H344C352.84 -64 360 -56.84 360 -48V240C360 248.84 352.84 256 344 256z" />
+    <glyph glyph-name="signal-4"
+      unicode="&#xF68F;"
+      horiz-adv-x="640" d=" M216 160H168C159.16 160 152 152.84 152 144V-48C152 -56.84 159.16 -64 168 -64H216C224.84 -64 232 -56.84 232 -48V144C232 152.84 224.84 160 216 160zM88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64zM344 256H296C287.1600000000001 256 280 248.84 280 240V-48C280 -56.84 287.1600000000001 -64 296 -64H344C352.84 -64 360 -56.84 360 -48V240C360 248.84 352.84 256 344 256zM472 352H424C415.1600000000001 352 408 344.8400000000001 408 336V-48C408 -56.84 415.1600000000001 -64 424 -64H472C480.84 -64 488 -56.84 488 -48V336C488 344.8400000000001 480.84 352 472 352z" />
+    <glyph glyph-name="signal-alt-1"
+      unicode="&#xF691;"
+      horiz-adv-x="640" d=" M96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64z" />
+    <glyph glyph-name="signal-alt-2"
+      unicode="&#xF692;"
+      horiz-adv-x="640" d=" M96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64zM256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192z" />
+    <glyph glyph-name="signal-alt-3"
+      unicode="&#xF693;"
+      horiz-adv-x="640" d=" M96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64zM256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192zM416 320H384C366.33 320 352 305.67 352 288V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V288C448 305.67 433.67 320 416 320z" />
+    <glyph glyph-name="signal-alt-slash"
+      unicode="&#xF694;"
+      horiz-adv-x="640" d=" M633.82 -10.1L608 9.86V416C608 433.67 593.67 448 576 448H544C526.33 448 512 433.67 512 416V84.05L448 133.51V288C448 305.67 433.67 320 416 320H384C366.33 320 352 305.67 352 288V207.71L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64zM192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V95.4L193.67 168.3C192.93 165.59 192 162.94 192 160zM352 -32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V-28.27L352 45.93V-32z" />
+    <glyph glyph-name="signal-alt"
+      unicode="&#xF690;"
+      horiz-adv-x="640" d=" M96 64H64C46.33 64 32 49.67 32 32V-32C32 -49.67 46.33 -64 64 -64H96C113.67 -64 128 -49.67 128 -32V32C128 49.67 113.67 64 96 64zM256 192H224C206.33 192 192 177.67 192 160V-32C192 -49.67 206.33 -64 224 -64H256C273.67 -64 288 -49.67 288 -32V160C288 177.67 273.67 192 256 192zM416 320H384C366.33 320 352 305.67 352 288V-32C352 -49.67 366.33 -64 384 -64H416C433.67 -64 448 -49.67 448 -32V288C448 305.67 433.67 320 416 320zM576 448H544C526.33 448 512 433.67 512 416V-32C512 -49.67 526.33 -64 544 -64H576C593.67 -64 608 -49.67 608 -32V416C608 433.67 593.67 448 576 448z" />
+    <glyph glyph-name="signal-slash"
+      unicode="&#xF695;"
+      horiz-adv-x="640" d=" M633.82 -10.1L616 3.67V432C616 440.84 608.84 448 600 448H552C543.16 448 536 440.84 536 432V65.5L488 102.6V336C488 344.8400000000001 480.84 352 472 352H424C415.1600000000001 352 408 344.8400000000001 408 336V164.43L360 201.53V240C360 248.84 352.84 256 344 256H296C294.18 256 292.5 255.52 290.87 254.96L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C595.76 -61.58 596.5799999999999 -62.81 597.4399999999999 -64H600C600.73 -64 601.35 -63.68 602.06 -63.58C607.5699999999999 -64.38 613.3299999999999 -62.53 616.9899999999999 -57.81L636.6299999999999 -32.54C642.0599999999998 -25.58 640.7999999999998 -15.53 633.8199999999999 -10.1zM88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64zM168 160C159.16 160 152 152.84 152 144V-48C152 -56.84 159.16 -64 168 -64H216C224.84 -64 232 -56.84 232 -48V138.68L204.41 160H168zM280 -48C280 -56.84 287.1600000000001 -64 296 -64H344C352.84 -64 360 -56.84 360 -48V39.75L280 101.58V-48zM408 -48C408 -56.84 415.1600000000001 -64 424 -64H472C477.49 -64 482.1 -61.06 484.98 -56.85L408 2.65V-48z" />
+    <glyph glyph-name="signal"
+      unicode="&#xF012;"
+      horiz-adv-x="640" d=" M216 160H168C159.16 160 152 152.84 152 144V-48C152 -56.84 159.16 -64 168 -64H216C224.84 -64 232 -56.84 232 -48V144C232 152.84 224.84 160 216 160zM88 64H40C31.16 64 24 56.84 24 48V-48C24 -56.84 31.16 -64 40 -64H88C96.84 -64 104 -56.84 104 -48V48C104 56.84 96.84 64 88 64zM344 256H296C287.1600000000001 256 280 248.84 280 240V-48C280 -56.84 287.1600000000001 -64 296 -64H344C352.84 -64 360 -56.84 360 -48V240C360 248.84 352.84 256 344 256zM472 352H424C415.1600000000001 352 408 344.8400000000001 408 336V-48C408 -56.84 415.1600000000001 -64 424 -64H472C480.84 -64 488 -56.84 488 -48V336C488 344.8400000000001 480.84 352 472 352zM600 448H552C543.16 448 536 440.84 536 432V-48C536 -56.84 543.16 -64 552 -64H600C608.84 -64 616 -56.84 616 -48V432C616 440.84 608.84 448 600 448z" />
+    <glyph glyph-name="signature"
+      unicode="&#xF5B7;"
+      horiz-adv-x="640" d=" M623.2 256C571.4000000000001 252.5 497.5000000000001 201.3 460.1 184.5C431 171.4 405.9000000000001 160.1 384 160.1C361.4 160.1 358 176.3 362.7 212C363.8 220 374.4 291.2000000000001 320 288.1C294.9 286.6 255.7 263.3 150.5 162.1L192 265.8C222.4 341.7000000000001 138.8 417.3 62.3 368.6L7.4 331.7C0 327 -2.2 317.1 2.5 309.6L19.7 282.6C24.4 275.1 34.3 272.9 41.8 277.7L99.8 316.6C118.2 328.3 140.5 309.4 132.5 289.5L34.3 43.9C27.5 27 37 0 64 0C72.3 0 80.5 3.2 86.6 9.4C128.8 51.6 241.3 160.1 297.8 205.2C295.6 176.7 295.7 146.3 318.4 121.4C333.7 104.6 355.7 96.1 383.9 96.1C419.5 96.1 451.9 110.7 486.2 126.1C519.2 140.9 585.2 188.7 624.6 191.9C633.1 192.6 639.8000000000001 199.2 639.8000000000001 207.7V239.8C640.0000000000001 248.9 632.3000000000001 256.6 623.2 256z" />
+    <glyph glyph-name="sim-card"
+      unicode="&#xF7C4;"
+      horiz-adv-x="384" d=" M320 448H128L0 320V0C0 -35.3 28.7 -64 64 -64H320C355.3 -64 384 -35.3 384 0V384C384 419.3 355.3 448 320 448zM160 256H224V192H160V256zM64 224C64 241.7 78.3 256 96 256H128V192H64V224zM128 0H96C78.3 0 64 14.3 64 32V64H128V0zM224 0H160V64H224V0zM320 32C320 14.3 305.7 0 288 0H256V64H320V32zM320 96H64V160H320V96zM320 192H256V256H288C305.7 256 320 241.7 320 224V192z" />
+    <glyph glyph-name="sitemap"
+      unicode="&#xF0E8;"
+      horiz-adv-x="640" d=" M128 96H32C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H128C145.67 -64 160 -49.67 160 -32V64C160 81.67 145.67 96 128 96zM104 176H296V128H344V176H536V128H584V185.59C584 206.7600000000001 566.77 224 545.59 224H344V288H384C401.67 288 416 302.3300000000001 416 320V416C416 433.67 401.67 448 384 448H256C238.33 448 224 433.67 224 416V320C224 302.33 238.33 288 256 288H296V224H94.41C73.23 224 56 206.77 56 185.59V128H104V176zM368 96H272C254.33 96 240 81.67 240 64V-32C240 -49.67 254.33 -64 272 -64H368C385.67 -64 400 -49.67 400 -32V64C400 81.67 385.67 96 368 96zM608 96H512C494.33 96 480 81.67 480 64V-32C480 -49.67 494.33 -64 512 -64H608C625.67 -64 640 -49.67 640 -32V64C640 81.67 625.67 96 608 96z" />
+    <glyph glyph-name="skating"
+      unicode="&#xF7C5;"
+      horiz-adv-x="448" d=" M400 448C373.5 448 352 426.5 352 400S373.5 352 400 352S448 373.5 448 400S426.5 448 400 448zM400 0C391.2 0 384 -7.2 384 -16S376.8 -32 368 -32H272C263.2 -32 256 -39.2 256 -48S263.2 -64 272 -64H368C394.5 -64 416 -42.5 416 -16C416 -7.2 408.8 0 400 0zM117.8 -8.6C111.6 -14.8 101.4 -14.9 95.2 -8.6L27.3 59.3C21.1 65.4999999999999 10.9 65.4999999999999 4.7 59.3S-1.5 42.9 4.7 36.6999999999999L72.6 -31.2C82 -40.6 94.3 -45.2 106.6 -45.2S131.2 -40.5000000000001 140.5 -31.2C146.7 -25.0000000000001 146.7 -14.8000000000001 140.5 -8.6S124.1 -2.3 117.8 -8.6zM173.9 171.2L80.2 77.5C67.7 65 67.7 44.7 80.2 32.3C86.4 26.1 94.6 22.9 102.8 22.9S119.2 26.0000000000001 125.4 32.3L217.3 124.2000000000001L187.1 154.4C182.1 159.4 177.7 165.1 173.9 171.2000000000001zM128 288H233.5L213.4 270.8C199.9 259.3 191.8 242.4 191.1 224.7C190.4 206.9 197.2 189.5 209.8 177L288 98.8V16C288 -1.7 302.3 -16 320 -16S352 -1.7 352 16V105.4C352 118 346.9 130.4 337.9 139.3L276.9 200.3C277.4 200.7 278.1 200.9 278.6 201.4L360.9 283.7C372.4 295.2 375.8 312.3 369.6 327.3C363.4 342.3 348.9 352 332.6 352H128C110.3 352 96 337.7 96 320S110.3 288 128 288z" />
+    <glyph glyph-name="skeleton"
+      unicode="&#xF620;"
+      horiz-adv-x="512" d=" M496 288H288V320H432C440.84 320 448 327.16 448 336V368C448 376.8400000000001 440.84 384 432 384H288V432C288 440.84 280.84 448 272 448H240C231.16 448 224 440.84 224 432V384H80C71.16 384 64 376.8400000000001 64 368V336C64 327.16 71.16 320 80 320H224V288H16C7.16 288 0 280.8400000000001 0 272V240C0 231.16 7.16 224 16 224H224V192H80C71.16 192 64 184.84 64 176V144C64 135.16 71.16 128 80 128H224V96H112C67.82 96 32 60.18 32 16S67.82 -64 112 -64S192 -28.18 192 16C192 21.48 191.44 26.83 190.39 32H321.62A80.321 80.321 0 0 1 320.01 16C320.01 -28.18 355.83 -64 400.01 -64S480.01 -28.18 480.01 16S444.19 96 400.01 96H288V128H432C440.84 128 448 135.16 448 144V176C448 184.84 440.84 192 432 192H288V224H496C504.84 224 512 231.16 512 240V272C512 280.8400000000001 504.84 288 496 288zM112 -16C94.36 -16 80 -1.64 80 16S94.36 48 112 48S144 33.64 144 16S129.64 -16 112 -16zM400 48C417.64 48 432 33.64 432 16S417.64 -16 400 -16S368 -1.64 368 16S382.36 48 400 48z" />
+    <glyph glyph-name="ski-jump"
+      unicode="&#xF7C7;"
+      horiz-adv-x="512" d=" M510.7 257.8C508.5 270.9 495.9 279.7000000000001 483 277.5C469.9 275.3 461.1 262.9 463.3 249.8C466.6 230.5 457.3 210.9 441.2 201.7L174 64.2L218.9 173.2L340.3 283.7C351.8 295.2 355.2 312.3 349 327.3C342.8 342.3 328.3 352 312 352H128C110.3 352 96 337.7 96 320S110.3 288 128 288H225.5L166.6 211.5C163.2 207.1 166.8 215.1 106.4 68.2C101.3 55.8 104.6 42 113.7 33.2L13 -18.7C1.2 -24.7 -3.4 -39.2 2.7 -51C7 -59.3 15.4 -64 24.1 -64C27.8 -64 31.6 -63.1 35.1 -61.3L464.3 159.6C498.6 179.3 517.3 218.8 510.6999999999999 257.8zM400 352C426.5 352 448 373.5 448 400S426.5 448 400 448S352 426.5 352 400S373.5 352 400 352z" />
+    <glyph glyph-name="ski-lift"
+      unicode="&#xF7C8;"
+      horiz-adv-x="512" d=" M112 320C138.5 320 160 341.5 160 368S138.5 416 112 416S64 394.5 64 368S85.5 320 112 320zM256 448H224V264L256 272V448zM488 160C474.8 160 464 149.2 464 136C464 122.1 455.2 109.5 442.2 104.7L320 59.5V200C320 209.9 315.5 219.2 307.7 225.2C299.9 231.3 289.8 233.5 280.2 231L211.9 214L187.8 267.7C176.9 291.9 148.5 302.7 124.3 291.8C100.1 280.9 89.3 252.5 100.2 228.3C100.2 228.3 127.1 162.4 128 160.2C135.9 141.1 150.7 132.6 167.8 136.9L256 159V35.8L111.7 -17.5C99.3 -22.1 92.9 -35.9 97.5 -48.3C101.1 -58 110.3 -64 120 -64C122.8 -64 125.6 -63.5 128.3 -62.5L458.8 59.6C490.6 71.4 511.9999999999999 102.1 511.9999999999999 136C511.9999999999999 149.2 501.3 160 487.9999999999999 160zM191.6 66.6C204.2 70.8 211 84.4 206.8 97C202.6 109.6 189.1 116.5 176.4 112.2L158 106C139 99.6 118 108.5 109.3 126.7L45.7 259.7C40 271.6 25.7 276.7 13.7 271C1.7 265.3 -3.3 251 2.4 239L66 106C81 74.8 112.4 56 145.5 56C158.1 56 162.5 56.9 191.6 66.6z" />
+    <glyph glyph-name="skiing-nordic"
+      unicode="&#xF7CA;"
+      horiz-adv-x="576" d=" M336 352C362.5 352 384 373.5 384 400S362.5 448 336 448S288 426.5 288 400S309.5 352 336 352zM552 32C538.8 32 528 21.3 528 8C528 -5.2 517.2 -16 504 -16H434.5L460 162.4C471.7 167.1 480.1 178.6 480.1 192C480.1 209.7 465.8 224 448.1 224H404.1L378 277.2C365.5 302.7 342.5 321.4 316.2 328.1L245 349.3C216.7 356.1 187.2 349.8 164.2 332.2L124.5 301.8C110.5 291.1 107.8 271 118.6 256.9C119.3 256 120.3 255.6 121 254.8L66.9 -16H24C10.8 -16 0 -26.7 0 -40S10.8 -64 24 -64H504C543.7 -64 576 -31.7 576 8C576 21.2 565.2 32 552 32zM291.5 -16H194.6L237.7 75L215.7 88C203.6 95.2 193.8 104.9 186.2 115.8L123.7 -16H99.5L151.8 245.4C155.9 246.4 159.9 248.3 163.5 251L203.2 281.4C210.9 287.3 220.6 289.4 228.5 287.5L243.2 283.1L205.7 195.7C193.1 166.1999999999999 204.4 131.6999999999999 232 115.4L317 65.2L291.5 -16zM402.1 -16H358.5L382.1 59.5C388 80.3 379.2000000000001 102.6 360.5 113.9L299.3 150L330.6 228.3L350.9000000000001 186.9C358.9000000000001 170.6 375.8 160.0000000000001 394.0000000000001 160.0000000000001H427.3000000000001L402.1000000000001 -15.9999999999999z" />
+    <glyph glyph-name="skiing"
+      unicode="&#xF7C9;"
+      horiz-adv-x="512" d=" M432 352C458.5 352 480 373.5 480 400S458.5 448 432 448S384 426.5 384 400S405.5 352 432 352zM505 -4.1C495.6 5.3 480.4 5.3 471.1 -4.1C459 -16.2 440.6 -19.5 426 -12.8L290.2 57.4L339.4 131.2C352.1 150.2 349.6 175.7 333.4 191.8L293 232.3L186 285.4C183.1 265.5 189.4 245.4 203.7 231L278.8 155.8L232.9 87L35 189.3C23.3 195.3 8.8 190.8 2.7 179C-3.4 167.2 1.2 152.7 13 146.7L404.9 -55.8C416.8 -61.3 429.4 -63.9 442 -63.9C465.2 -63.9 488 -54.9 505 -37.9C514.3 -28.6 514.3 -13.4 505 -4.1zM120 356.4L108.5 333.9C122.9 326.6 139.7 329 151.3 338.7L198.5 315.3C198.4 315.2000000000001 198.4 315.1 198.3 315L312.8 258.2L345.2 271.2L351.6 252.1C355.6 240 364.2 230.1 375.6 224.4L433.7 195.4C449.6 187.5 468.7 193.9 476.6 209.7C484.4999999999999 225.5000000000001 478.1 244.7 462.3 252.6L410.2 278.7000000000001L393.0999999999999 329.9000000000001C384.9999999999999 354.1 352.2 386.5 308.5999999999999 369.1L227.3999999999999 336.6L164.8999999999999 367.6C165.1999999999999 382.1 157.6999999999999 396.2000000000001 143.9999999999999 403.2000000000001L132.8999999999999 381.5H132.6999999999999L98.2999999999999 388.5C96.4999999999999 388.9000000000001 94.5999999999999 388.3 93.2999999999999 386.8C91.3999999999999 384.6 91.5999999999999 381.3 93.7999999999999 379.4000000000001L119.9999999999999 356.4000000000001z" />
+    <glyph glyph-name="skull-crossbones"
+      unicode="&#xF714;"
+      horiz-adv-x="448" d=" M439.15 -5.06L297.17 64L439.1600000000001 133.06C447.06 137.01 450.2700000000001 146.62 446.31 154.52L432 183.15C428.05 191.05 418.44 194.26 410.53 190.31L224 99.59L37.47 190.31C29.57 194.26 19.96 191.06 16 183.15L1.69 154.52C-2.26 146.62 0.94 137.01 8.84 133.06L150.83 64L8.85 -5.06C0.95 -9.01 -2.26 -18.62 1.7 -26.53L16.01 -55.16C19.96 -63.0599999999999 29.57 -66.27 37.48 -62.3099999999999L224 28.41L410.53 -62.3099999999999C418.43 -66.26 428.04 -63.0599999999999 432 -55.16L446.31 -26.53C450.26 -18.6199999999999 447.05 -9.01 439.15 -5.0599999999999zM150 210.72L144.52 184.85C141.85 172.23 149.94 160 160.97 160H287.05C298.08 160 306.17 172.23 303.5 184.85L298 210.72C339.78 233.13 368 273.4700000000001 368 320C368 390.69 303.53 448 224 448S80 390.69 80 320C80 273.4700000000001 108.22 233.13 150 210.72zM280 336C297.65 336 312 321.65 312 304S297.65 272 280 272S248 286.35 248 304S262.35 336 280 336zM168 336C185.65 336 200 321.65 200 304S185.65 272 168 272S136 286.35 136 304S150.35 336 168 336z" />
+    <glyph glyph-name="skull"
+      unicode="&#xF54C;"
+      horiz-adv-x="512" d=" M256 448C114.6 448 0 347.7 0 224C0 153.9 36.9 91.4 94.5 50.3C104.1 43.4 109.7 32.2 108 20.4L98.6 -45.8C97.2 -55.4 104.6 -63.9999999999999 114.3 -63.9999999999999H192V-7.9999999999999C192 -3.6 195.6 1e-13 200 1e-13H216C220.4 1e-13 224 -3.6 224 -7.9999999999999V-63.9999999999999H288V-7.9999999999999C288 -3.6 291.6 1e-13 296 1e-13H312C316.4 1e-13 320 -3.6 320 -7.9999999999999V-63.9999999999999H397.7C407.4 -63.9999999999999 414.8 -55.3999999999999 413.4 -45.8L404 20.4C402.3 32.1 407.8 43.4 417.5 50.3C475.1 91.4 512 153.9 512 224C512 347.7 397.4 448 256 448zM160 128C124.7 128 96 156.7 96 192S124.7 256 160 256S224 227.3 224 192S195.3 128 160 128zM352 128C316.7 128 288 156.7 288 192S316.7 256 352 256S416 227.3 416 192S387.3 128 352 128z" />
+    <glyph glyph-name="slash"
+      unicode="&#xF715;"
+      horiz-adv-x="640" d=" M594.53 -60.63L6.18 394.1C-0.79 399.52 -2.05 409.57 3.37 416.55L23.01 441.82C28.43 448.8 38.49 450.06 45.47 444.63L633.82 -10.1C640.7900000000001 -15.52 642.0500000000001 -25.57 636.63 -32.55L616.99 -57.82C611.57 -64.7999999999999 601.51 -66.0499999999999 594.53 -60.63z" />
+    <glyph glyph-name="sledding"
+      unicode="&#xF7CB;"
+      horiz-adv-x="512" d=" M505 27.9C495.6 37.3 480.4 37.3 471.1 27.9C459 15.8 440.6 12.5 426 19.2L376.9 44.6C381.1 49.9999999999999 384.1 56.4999999999999 384.1 63.9999999999999V160C384.1 177.6999999999999 369.8 192 352.1 192H301.3L347.4 238.1C361.2 251.9 365.3 272.3999999999999 357.8 290.3999999999999C350.3 308.3999999999999 332.9 319.9999999999999 313.5 319.9999999999999H160C142.3 319.9999999999999 128 305.7 128 287.9999999999999S142.3 255.9999999999999 160 255.9999999999999H242.8L169.4 182.5999999999999C166.4 179.6999999999999 164.1 176.0999999999999 162.5 172.1999999999999C160.4 167.0999999999999 160.1 161.6999999999999 160.7 156.3L35 221.4C23.3 227.4 8.7 222.9 2.7 211.1C-3.4 199.3 1.2 184.8 13 178.7L404.9 -23.9C416.8 -29.4 429.4 -32 442 -32C465.2 -32 488 -23 505 -6C514.3 3.4 514.3 18.6 505 27.9zM320 74L215.6 128H320V74zM400 320C426.5 320 448 341.5 448 368S426.5 416 400 416S352 394.5 352 368S373.5 320 400 320z" />
+    <glyph glyph-name="sleigh"
+      unicode="&#xF7CC;"
+      horiz-adv-x="640" d=" M612.7 97.3L603.4000000000001 104.7C596.5000000000001 110.2 586.4000000000001 109.1 580.9000000000001 102.2L570.9000000000001 89.7C565.4000000000001 82.8 566.5000000000001 72.7 573.4000000000001 67.2L582.7 59.8C588.6 55.1 591.9000000000001 48.1 591.9000000000001 40.6C591.9000000000001 27 580.9000000000001 16 567.3000000000001 16H48C39.2 16 32 8.8 32 0V-16C32 -24.8 39.2 -32 48 -32H564C603 -32 637.7 -2.7 639.9 36.3C641.3 60.1 631.1999999999999 82.6 612.6999999999999 97.3zM32 224C32 164.4 72.9 114.8 128 100.5V48H192V96H384V48H448V96C501 96 544 139 544 192V288C561.7 288 576 302.3 576 320S561.7 352 544 352H448V288C448 252.7 419.3 224 384 224H363.3C297.5 224 237.4 261.2 208 320C178.6 378.8 118.4 416 52.7 416H32C14.3 416 0 401.7 0 384S14.3 352 32 352V224z" />
+    <glyph glyph-name="sliders-h-square"
+      unicode="&#xF3F0;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM384 92C384 85.4 378.6 80 372 80H320V56C320 42.7 309.3 32 296 32H280C266.7 32 256 42.7 256 56V80H76C69.4 80 64 85.4 64 92V132C64 138.6 69.4 144 76 144H256V168C256 181.3 266.7 192 280 192H296C309.3 192 320 181.3 320 168V144H372C378.6 144 384 138.6 384 132V92zM384 252C384 245.4 378.6 240 372 240H192V216C192 202.7 181.3 192 168 192H152C138.7 192 128 202.7 128 216V240H76C69.4 240 64 245.4 64 252V292C64 298.6 69.4 304 76 304H128V328C128 341.3 138.7 352 152 352H168C181.3 352 192 341.3 192 328V304H372C378.6 304 384 298.6 384 292V252z" />
+    <glyph glyph-name="sliders-h"
+      unicode="&#xF1DE;"
+      horiz-adv-x="512" d=" M496 64H160V80C160 88.8 152.8 96 144 96H112C103.2 96 96 88.8 96 80V64H16C7.2 64 0 56.8 0 48V16C0 7.2 7.2 0 16 0H96V-16C96 -24.8 103.2 -32 112 -32H144C152.8 -32 160 -24.8 160 -16V0H496C504.8 0 512 7.2 512 16V48C512 56.8 504.8 64 496 64zM496 224H416V240C416 248.8 408.8 256 400 256H368C359.2 256 352 248.8 352 240V224H16C7.2 224 0 216.8 0 208V176C0 167.2 7.2 160 16 160H352V144C352 135.2 359.2 128 368 128H400C408.8 128 416 135.2 416 144V160H496C504.8 160 512 167.2 512 176V208C512 216.8 504.8 224 496 224zM496 384H288V400C288 408.8 280.8 416 272 416H240C231.2 416 224 408.8 224 400V384H16C7.2 384 0 376.8 0 368V336C0 327.2 7.2 320 16 320H224V304C224 295.2 231.2 288 240 288H272C280.8 288 288 295.2 288 304V320H496C504.8 320 512 327.2 512 336V368C512 376.8 504.8 384 496 384z" />
+    <glyph glyph-name="sliders-v-square"
+      unicode="&#xF3F2;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM200 224H176V44C176 37.4 170.6 32 164 32H124C117.4 32 112 37.4 112 44V224H88C74.7 224 64 234.7 64 248V264C64 277.3 74.7 288 88 288H112V340C112 346.6 117.4 352 124 352H164C170.6 352 176 346.6 176 340V288H200C213.3 288 224 277.3 224 264V248C224 234.7 213.3 224 200 224zM384 120C384 106.7 373.3 96 360 96H336V44C336 37.4 330.6 32 324 32H284C277.4 32 272 37.4 272 44V96H248C234.7 96 224 106.7 224 120V136C224 149.3 234.7 160 248 160H272V340C272 346.6 277.4 352 284 352H324C330.6 352 336 346.6 336 340V160H360C373.3 160 384 149.3 384 136V120z" />
+    <glyph glyph-name="sliders-v"
+      unicode="&#xF3F1;"
+      horiz-adv-x="448" d=" M112 352H96V432C96 440.8 88.8 448 80 448H48C39.2 448 32 440.8 32 432V352H16C7.2 352 0 344.8 0 336V304C0 295.2 7.2 288 16 288H32V-48C32 -56.8 39.2 -64 48 -64H80C88.8 -64 96 -56.8 96 -48V288H112C120.8 288 128 295.2 128 304V336C128 344.8 120.8 352 112 352zM432 224H416V432C416 440.8 408.8 448 400 448H368C359.2 448 352 440.8 352 432V224H336C327.2 224 320 216.8 320 208V176C320 167.2 327.2 160 336 160H352V-48C352 -56.8 359.2 -64 368 -64H400C408.8 -64 416 -56.8 416 -48V160H432C440.8 160 448 167.2 448 176V208C448 216.8 440.8 224 432 224zM272 96H256V432C256 440.8 248.8 448 240 448H208C199.2 448 192 440.8 192 432V96H176C167.2 96 160 88.8 160 80V48C160 39.2 167.2 32 176 32H192V-48C192 -56.8 199.2 -64 208 -64H240C248.8 -64 256 -56.8 256 -48V32H272C280.8 32 288 39.2 288 48V80C288 88.8 280.8 96 272 96z" />
+    <glyph glyph-name="smile-beam"
+      unicode="&#xF5B8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM112 224.6C115.3 266.7 144.2 296 168 296S220.7 266.7 224 224.6C224.7 216 213.2 212.7 209.1 220.1L199.6 237.1C191.9 250.8 180.4 258.7 168.1 258.7S144.3 250.8 136.6 237.1L127.1 220.1C122.8 212.7 111.3 216.1 112 224.6zM362.8 101.8C334.3 67.6 292.5 48 248 48S161.7 67.6 133.2 101.8C119.7 118.1 144.2 138.5 157.8 122.3C180.2 95.4 213 80.1 248 80.1S315.8 95.5 338.2 122.3C351.8 138.5 376.3 118 362.8 101.8zM369 220.1L359.5 237.1C351.8 250.8 340.3 258.7000000000001 328 258.7000000000001S304.2 250.8 296.5 237.1L287 220.1C282.9 212.8 271.4 216.1 272.1 224.6C275.4000000000001 266.7000000000001 304.3 296 328.1 296S380.8 266.7000000000001 384.1 224.6C384.7000000000001 216 373.1 212.7 369 220.1z" />
+    <glyph glyph-name="smile-plus"
+      unicode="&#xF5B9;"
+      horiz-adv-x="640" d=" M208 352C93.1 352 0 258.9 0 144S93.1 -64 208 -64S416 29.1 416 144S322.9 352 208 352zM272 218.8C286.8 218.8 298.8 206.8 298.8 192S286.8 165.2 272 165.2S245.2 177.2 245.2 192S257.2 218.8 272 218.8zM144 218.8C158.8 218.8 170.8 206.8 170.8 192S158.8 165.2 144 165.2S117.2 177.2 117.2 192S129.2 218.8 144 218.8zM308.2 77.9C283.3 48.7 246.8 32 208 32C169.2 32 132.7 48.7 107.8 77.9C102 84.6 102.8 94.7 109.6 100.4S126.4 105.4 132.1 98.6C150.9 76.6 178.6 63.9999999999999 207.9 63.9999999999999C237.3 63.9999999999999 264.9 76.6 283.7 98.6999999999999C289.5 105.4999999999999 299.6 106.1999999999999 306.3 100.4999999999999C313.1 94.6999999999999 313.9000000000001 84.6 308.2 77.8999999999999zM624 368H560V432C560 440.8 552.8 448 544 448H512C503.2 448 496 440.8 496 432V368H432C423.2 368 416 360.8 416 352V320C416 311.2 423.2 304 432 304H496V240C496 231.2 503.2 224 512 224H544C552.8 224 560 231.2 560 240V304H624C632.8 304 640 311.2 640 320V352C640 360.8 632.8 368 624 368z" />
+    <glyph glyph-name="smile-wink"
+      unicode="&#xF4DA;"
+      horiz-adv-x="496" d=" M0 192C0 55 111 -56 248 -56S496 55 496 192S385 440 248 440S0 329 0 192zM200 240C200 222.3 185.7 208 168 208S136 222.3 136 240S150.3 272 168 272S200 257.7 200 240zM358.5 223.5C343.7 236.7 312.3 236.7 297.5 223.5L288 215C279.7 207.6 266.4 214.6 268.2 225.8C272.2 251 302.4 267.9 328.1 267.9S384 251 388 225.8C389.7 214.7 376.6 207.5 368.2 215L358.5 223.5zM157.8 122.2C180.2 95.3 213 80 248 80S315.8 95.4 338.2 122.2C351.8 138.4 376.3 118 362.8 101.7C334.3 67.6 292.5 48 248 48S161.7 67.6 133.2 101.8C119.7 118.1 144.4 138.5 157.8 122.2z" />
+    <glyph glyph-name="smile"
+      unicode="&#xF118;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM328 272C345.7 272 360 257.7 360 240S345.7 208 328 208S296 222.3 296 240S310.3 272 328 272zM168 272C185.7 272 200 257.7 200 240S185.7 208 168 208S136 222.3 136 240S150.3 272 168 272zM362.8 101.8C334.3 67.6 292.5 48 248 48S161.7 67.6 133.2 101.8C119.6 118.1 144.2 138.5 157.8 122.3C180.2 95.4 213 80.1 248 80.1S315.8 95.5 338.2 122.3C351.6 138.5 376.3 118.1 362.8 101.8z" />
+    <glyph glyph-name="smog"
+      unicode="&#xF75F;"
+      horiz-adv-x="640" d=" M624 80H80C71.2 80 64 72.8 64 64V48C64 39.2 71.2 32 80 32H624C632.8 32 640 39.2 640 48V64C640 72.8 632.8 80 624 80zM144 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H144C152.8 -64 160 -56.8 160 -48V-32C160 -23.2 152.8 -16 144 -16zM560 -16H224C215.2 -16 208 -23.2 208 -32V-48C208 -56.8 215.2 -64 224 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM144 160H300.1C322.6 140.3 351.7000000000001 128 384 128S445.3 140.3 467.9 160H528C589.9 160 640 210.1 640 272S589.9 384 528 384C510 384 493.3 379.4 478.3 371.9C454 417 406.8 448 352 448C311 448 274.2 430.7 248 403.2C221.8 430.7 185 448 144 448C64.5 448 0 383.5 0 304S64.5 160 144 160z" />
+    <glyph glyph-name="smoke"
+      unicode="&#xF760;"
+      horiz-adv-x="640" d=" M528 160C510 160 493.3 155.4 478.3 147.9C454 193 406.8 224 352 224C311 224 274.2 206.7 248 179.2C221.8 206.7 185 224 144 224C64.5 224 0 159.5 0 80S64.5 -64 144 -64H528C589.9 -64 640 -13.9 640 48S589.9 160 528 160zM402.4 289.2C380.1 308.1 351.6 320 320 320C268.3 320 224.1 289.2 203.9 245.2C219.5 239.5 234.5 231.8 248 221.8C278 244 314 256 352 256C406.9 256 458 230.1 491 186.9C503.1 190.3 515.5 192 528 192C563.5 192 595.6 178.6 620.7 157.2C632.7 176.7 640 199.4 640 224C640 294.7 582.7 352 512 352C465.2 352 424.7 326.7 402.4 289.2zM144 256C153.9 256 163.5 255.1 173.1 253.5C197.2 311.2 253.7 352 320 352C346.2 352 372 345.3 395.1 332.8C404.4000000000001 343 415.3 351.2 426.7000000000001 358.6C403.8 393.1 364.6 416 320 416C288.4 416 259.9 404.1 237.6 385.2C215.3 422.7 174.8 448 128 448C57.3 448 0 390.7 0 320C0 281.8 17.1 247.9 43.7 224.4C72.2 244.3 106.7 256 144 256z" />
+    <glyph glyph-name="smoking-ban"
+      unicode="&#xF54D;"
+      horiz-adv-x="512" d=" M96 144C96 135.2 103.2 128 112 128H229.5L133.5 224H112C103.2 224 96 216.8 96 208V144zM256 448C114.6 448 0 333.4 0 192S114.6 -64 256 -64S512 50.6 512 192S397.4 448 256 448zM256 0C150.1 0 64 86.1 64 192C64 233.4 77.3 271.7 99.7 303.1L367.1 35.7C335.7 13.3 297.4 0 256 0zM301.2 192H384V160H333.2L301.2 192zM412.3 80.9L365.2 128H400C408.8 128 416 135.2 416 144V208C416 216.8 408.8 224 400 224H269.2L144.9 348.3C176.3 370.7 214.6 384 256 384C361.9 384 448 297.9 448 192C448 150.6 434.7 112.3 412.3 80.9zM320.6 320C305 320 292 331.2 289.2000000000001 345.9C288.5000000000001 349.5 285.2000000000001 352 281.5000000000001 352H265.3000000000001C260.3000000000001 352 256.6000000000001 347.5 257.3000000000001 342.6C261.9000000000001 311.7 288.5000000000001 288 320.6000000000001 288C336.2000000000001 288 349.2000000000001 276.8 352.0000000000001 262.1C352.7000000000001 258.5 356.0000000000001 256 359.7000000000001 256H375.9000000000001C380.9000000000001 256 384.6 260.5 383.9000000000001 265.4C379.3 296.3 352.7000000000001 320 320.6 320z" />
+    <glyph glyph-name="smoking"
+      unicode="&#xF48D;"
+      horiz-adv-x="640" d=" M632 96H584C579.6 96 576 92.4 576 88V-56C576 -60.4 579.6 -64 584 -64H632C636.4 -64 640 -60.4 640 -56V88C640 92.4 636.4 96 632 96zM553.3 360.9C547.5999999999999 364.7 544 370.9 544 377.7V440C544 444.4 540.4 448 536 448H488C483.6 448 480 444.4 480 440V377.7C480 355.7 490.2 334.3 508.6 322.3C550.8000000000001 295 576 248.5 576 198.3V168C576 163.6 579.6 160 584 160H632C636.4 160 640 163.6 640 168V198.3C640 263.8 607.6 324.5 553.3 360.9zM432 96H48C21.5 96 0 74.5 0 48V-16C0 -42.5 21.5 -64 48 -64H432C440.8 -64 448 -56.8 448 -48V80C448 88.8 440.8 96 432 96zM400 -16H224V48H400V-16zM487.7 306.4C463.8 323 448 348.7 448 377.7V440C448 444.4 444.4 448 440 448H392C387.6 448 384 444.4 384 440V373.6C384 329.9 408.6 292 444.3 266.9C466.7 251.2 480 225.7 480 198.3V168C480 163.6 483.6 160 488 160H536C540.4 160 544 163.6 544 168V198.3C544 241.6 523 281.7000000000001 487.7 306.4zM536 96H488C483.6 96 480 92.4 480 88V-56C480 -60.4 483.6 -64 488 -64H536C540.4 -64 544 -60.4 544 -56V88C544 92.4 540.4 96 536 96z" />
+    <glyph glyph-name="sms"
+      unicode="&#xF7CD;"
+      horiz-adv-x="512" d=" M256 416C114.6 416 0 322.9 0 208C0 158.4 21.4 113 57 77.3C44.5 26.9 2.7 -18 2.2 -18.5C0 -20.8 -0.6 -24.2 0.7 -27.2C2 -30.2 4.8 -32 8 -32C74.3 -32 124 -0.2 148.6 19.4C181.3 7.1 217.6 0 256 0C397.4 0 512 93.1 512 208S397.4 416 256 416zM128.2 144H116C111.6 144 108 147.6 108 152V168C108 172.4 111.6 176 116 176H128.3C134.3 176 138.7 179.5 138.7 182.6C138.7 183.9 137.9 185.3 136.6 186.4L114.7 205.2000000000001C106.2 212.4 101.4 222.7000000000001 101.4 233.3000000000001C101.4 254.6000000000001 120.4 271.9000000000001 143.8 271.9000000000001H156C160.4 271.9000000000001 164 268.3000000000001 164 263.9000000000001V247.9000000000001C164 243.5000000000001 160.4 239.9000000000001 156 239.9000000000001H143.7C137.7 239.9000000000001 133.3 236.4000000000001 133.3 233.3000000000001C133.3 232.0000000000001 134.1 230.6000000000001 135.4 229.5000000000001L157.3 210.7C165.8 203.5 170.6 193.2 170.6 182.6C170.7 161.3 151.6 144 128.2 144zM320 152C320 147.6 316.4 144 312 144H296C291.6 144 288 147.6 288 152V220.2L263.2 164.4C260.3 158.5 251.8 158.5 248.9 164.4L224 220.2V152C224 147.6 220.4 144 216 144H200C195.6 144 192 147.6 192 152V256C192 264.8 199.2 272 208 272H224C230.1 272 235.6 268.6 238.3 263.2L256 227.8L273.7 263.2C276.4 268.6 282 272 288 272H304C312.8 272 320 264.8 320 256V152zM368.3 144H356C351.6 144 348 147.6 348 152V168C348 172.4 351.6 176 356 176H368.3C374.3 176 378.7 179.5 378.7 182.6C378.7 183.9 377.9 185.3 376.6 186.4L354.7 205.2000000000001C346.2 212.4 341.4 222.7000000000001 341.4 233.3000000000001C341.4 254.6000000000001 360.4 271.9000000000001 383.8 271.9000000000001H396C400.4 271.9000000000001 404 268.3000000000001 404 263.9000000000001V247.9000000000001C404 243.5000000000001 400.4 239.9000000000001 396 239.9000000000001H383.7C377.7 239.9000000000001 373.3 236.4000000000001 373.3 233.3000000000001C373.3 232.0000000000001 374.1 230.6000000000001 375.4000000000001 229.5000000000001L397.3 210.7C405.8 203.5 410.6 193.2 410.6 182.6C410.7000000000001 161.3 391.7000000000001 144 368.3 144z" />
+    <glyph glyph-name="snake"
+      unicode="&#xF716;"
+      horiz-adv-x="640" d=" M617.4 267.91L530.81 294.54C497.42 304.81 464.1 286.28 452.5599999999999 256H448C377.31 256 320 198.69 320 128V64C320 46.36 305.64 32 288 32S256 46.36 256 64V314.3C256 381.11 207.29 440.89 140.79 447.37C64.49 454.82 0 394.8 0 320V128.47C0 66.29 11.18 4.61 33.02 -53.62C38.21 -67.46 57.79 -67.46 62.98 -53.62A518.514 518.514 0 0 1 96 128.47V320C96 337.64 110.36 352 128 352S160 337.64 160 320V69.7C160 2.89 208.71 -56.89 275.21 -63.38C351.51 -70.82 416 -10.8 416 64V128C416 145.67 430.33 160 448 160H452.2C463.3 129.38 496.58 110.37 530.16 120.31L617.0799999999999 146.03C630.67 150.05 639.9999999999999 162.54 639.9999999999999 176.71V237.32C639.9999999999999 251.37 630.8299999999999 263.78 617.3999999999999 267.91zM528 160C519.16 160 512 167.16 512 176S519.16 192 528 192S544 184.84 544 176S536.84 160 528 160zM528 224C519.16 224 512 231.16 512 240S519.16 256 528 256S544 248.84 544 240S536.84 224 528 224z" />
+    <glyph glyph-name="snow-blowing"
+      unicode="&#xF761;"
+      horiz-adv-x="640" d=" M540.2 128H361.7C355.4 128 349.2 126.1 343.9 122.6L299.9 93.3C286.7 84.5 292.9 64 308.8 64H542.0999999999999C557.9999999999999 64 572.8999999999999 53.1 575.4999999999999 37.4C578.7999999999998 17.4 563.3999999999999 0 543.8999999999999 0C529.7999999999998 0 517.7999999999998 9.2 513.4999999999999 21.9C511.3999999999999 28.2 504.8999999999999 32 498.2999999999999 32H465.4999999999999C455.4999999999999 32 447.7999999999999 22.7 449.7999999999999 12.9C458.6999999999999 -30.9 497.4999999999999 -64 543.8999999999999 -64C603.0999999999999 -64 649.8999999999999 -10.2 637.9999999999999 51.1C629.2999999999998 96.7000000000001 586.5999999999999 128 540.1999999999999 128zM400 160H544C603.7 160 650.8 214.8 637.8 276.7C630.1999999999999 312.9 600.9 342.2 564.6999999999999 349.8C509.3 361.4 459.5999999999999 324.9 449.8 274.3C447.9 264.7 455.9 256 465.6 256H498.4C505.1 256 511.5 259.8 513.6 266.1C517.8000000000001 278.8 529.9 288 544 288C563.4 288 578.9 270.6 575.6 250.6C573 234.9 558.2 224 542.2 224H400C391.2 224 384 216.8 384 208V176C384 167.2 391.2 160 400 160zM300.5 138.8L295 159.2L321.6 143.9C327.4000000000001 140.5 334.8 142.5 338.2000000000001 148.3L350.3000000000001 169.3C353.7000000000001 175.1 351.7000000000001 182.5 345.9000000000001 185.9L319.3000000000001 201.2L339.7000000000001 206.7C346.2000000000001 208.4 350.0000000000001 215.1 348.3000000000001 221.6L345.2000000000001 233.3C343.5000000000001 239.8 336.8000000000001 243.6 330.3000000000001 241.9L274.7 227L224.5 256L274.7 285L330.3 270.1C336.8 268.4 343.4000000000001 272.2 345.2 278.7L348.3 290.4C350 296.9 346.2 303.5 339.7 305.3L319.3 310.8L345.9000000000001 326.1C351.7000000000001 329.5 353.7000000000001 336.9 350.3 342.7L338.2 363.7C334.8 369.5 327.4 371.5 321.6 368.1L295 352.8L300.5 373.2C302.2 379.7 298.4 386.3 291.9 388.1L280.2 391.2C273.7 392.9 267.1 389.1 265.3 382.6L250.4 327L200 297.9V354.8L240.2 395C244.9 399.7 244.9 407.3 240.2 412L231.7 420.5C227 425.2 219.4 425.2 214.7 420.5L200 405.7V436C200 442.6 194.6 448 188 448H164C157.4 448 152 442.6 152 436V405.7L137.2 420.5C132.5 425.2 124.9 425.2 120.2 420.5L111.7 412C107 407.3 107 399.7 111.7 395L152 354.8V297.9L101.6 327L86.6 382.7C84.9 389.2 78.2 393 71.7 391.3L60 388.1C53.5 386.4 49.7 379.7 51.4 373.2L56.9 352.8L30.4 368.1C24.6 371.5 17.2 369.5 13.8 363.7L1.7 342.7C-1.7 336.9 0.3 329.5 6.1 326.1L32.7 310.8L12.3 305.3C5.8 303.6 2 296.9 3.7 290.4L6.8 278.7C8.5 272.2 15.2 268.4 21.7 270.1L77.3 285L127.5 256L77.3 227L21.6 242C15.1 243.7 8.5 239.9 6.7 233.4L3.6 221.7C1.9 215.2 5.7 208.6 12.2 206.8L32.6 201.3L6.1 185.9C0.3 182.5000000000001 -1.7 175.1 1.7 169.3L13.8 148.3C17.2 142.5 24.6 140.5 30.4 143.9L57 159.2L51.5 138.8C49.8 132.3 53.6 125.7 60.1 123.9L71.8 120.8C78.3 119.1 84.9 122.9 86.7 129.4L101.6 185.0000000000001L152 214.1000000000001V157.2000000000001L111.8 117C107.1 112.3 107.1 104.7 111.8 100L120.3 91.5C125 86.8 132.6 86.8 137.3 91.5L152.1 106.3V76C152.1 69.4 157.5 64 164.1 64H188.1C194.7 64 200.1 69.4 200.1 76V106.3L214.9 91.5C219.6 86.8 227.2000000000001 86.8 231.9000000000001 91.5L240.4000000000001 100C245.1 104.7 245.1 112.3 240.4000000000001 117L200 157.2V214.1L250.4 185L265.3 129.4C267 122.9 273.7 119.1 280.2 120.8L291.9 123.9C298.4 125.6 302.3 132.3 300.5 138.8z" />
+    <glyph glyph-name="snowboarding"
+      unicode="&#xF7CE;"
+      horiz-adv-x="512" d=" M432 352C458.5 352 480 373.5 480 400S458.5 448 432 448S384 426.5 384 400S405.5 352 432 352zM460.8 198.4C466.6 194.1 473.3 192 480 192C489.7 192 499.3 196.4 505.6 204.8C516.2 218.9 513.4 239 499.2 249.6L387.8000000000001 333.1C374.0000000000001 343.4000000000001 358.7000000000001 351.5 342.4000000000001 356.9000000000001L278.7000000000001 378.1L252.6000000000001 430.2000000000001C244.7 446 225.5 452.4 209.7 444.5C193.9 436.6 187.5 417.4 195.4 401.6L224.5 343.5C230.2 332.1 240.1 323.6 252.2 319.5L268.6 314L227.4 293.4C205.6 282.5 192 260.6 192 236.2V183.1L117.9 158.4C101.1 152.8 92.1 134.7 97.7 117.9C99.4 112.7 102.6 108.5 106.4 105L67.7 119.1C58 122.6 50.3 129.7000000000001 45.9 139.1C40.3 151.1 26 156.3 14 150.7000000000001S-3.2 130.8000000000001 2.4 118.8000000000001C12.2 97.8000000000001 29.5 81.9000000000001 51.3 74.0000000000001L416.1 -58.6999999999999C425.8 -62.1999999999999 435.8 -63.9999999999999 445.8 -63.9999999999999C458.3 -63.9999999999999 470.6999999999999 -61.2999999999999 482.3 -55.8C494.3 -50.1999999999999 499.4999999999999 -35.9 493.9 -23.9S474 -6.7 462 -12.3C452.7 -16.7 442.2 -17.1 432.5 -13.6L341.7 19.5C350.4 23.6 357.3 31.3 359.5 41.4L381.4 143.4C385.3 161.6 378.2 180.6 363.3 191.8L311.3 230.8L377.3 261.3L460.8 198.4zM316.4 146.7L296.7 54.7C295.2 47.6 296.6 40.8 299.5 34.7L130.1 96.3C132.8 96.5 135.5 96.7 138.1 97.6L223.1 126C242.7 132.5 255.9 150.8 255.9 171.5V192L316.4 146.7z" />
+    <glyph glyph-name="snowflake"
+      unicode="&#xF2DC;"
+      horiz-adv-x="448" d=" M440.3 102.8L406.5 122.3L432.5 129.3C440.7 131.5 445.6 140 443.4 148.2L439.4 163.1C437.2 171.3 428.7 176.2 420.5 174L349.7 155L285.8 192L349.6 228.9L420.4000000000001 209.9C428.6 207.7 437.1 212.5999999999999 439.3 220.8L443.3 235.7C445.5 243.9 440.6 252.4 432.4000000000001 254.6L406.4000000000001 261.6L440.2000000000001 281.1C447.6 285.4 450.1 294.8 445.9000000000001 302.2L430.4 329C426.1 336.4 416.7 338.9 409.3 334.7L375.5 315.2L382.5 341.2C384.7 349.4 379.8 357.9 371.6 360.1L356.7 364.1C348.5 366.3 340 361.4 337.8 353.2L318.8 282.4L256 246.2V323.7L309.7 377.4C315.9 383.6 315.9 393.8 309.7 400L298.4 411.3C292.2 417.5 282 417.5 275.8 411.3L256 391.6V432C256 440.8 248.8 448 240 448H208C199.2 448 192 440.8 192 432V391.6L172.3 411.3C166.1 417.5 155.9 417.5 149.7 411.3L138.3 400C132 393.8 132 383.6 138.3 377.4L192 323.7V246.2L129.2 282.4L110.2 353.2C108 361.4 99.5 366.3 91.3 364.1L76.4 360.1C68.2 357.9 63.3 349.4 65.5 341.2L72.5 315.2L38.7 334.7C31.3 339 21.9 336.4 17.6 329L2.1 302.3C-2.2 294.9 0.4 285.5 7.8 281.2000000000001L41.6 261.7000000000001L15.6 254.7C7.3 252.5000000000001 2.4 244.0000000000001 4.6 235.7L8.6 220.8C10.8 212.6 19.3 207.7 27.5 209.9L98.3 228.9L162.1 192L98.3 155.1L27.5 174.1C19.3 176.3 10.8 171.4 8.6 163.2000000000001L4.6 148.3000000000001C2.4 140.1000000000001 7.3 131.6000000000001 15.5 129.4000000000001L41.5 122.4000000000001L7.7 102.8000000000001C0.3 98.5000000000001 -2.2 89.1000000000001 2 81.7000000000001L17.5 54.9C21.8 47.5000000000001 31.2 45.0000000000001 38.6 49.2L72.4 68.7000000000001L65.4 42.7C63.2 34.5000000000001 68.1 26.0000000000001 76.3 23.8000000000001L91.2 19.8000000000001C99.4 17.6000000000001 107.9 22.5000000000001 110.1 30.7L129.1 101.5000000000001L191.9 137.7000000000001V60.2000000000001L138.2 6.5000000000001C131.9 0.3000000000001 131.9 -9.8999999999999 138.2 -16.1L149.5 -27.4C155.7 -33.6 165.9 -33.6 172.1 -27.4L191.8 -7.7V-48C191.8 -56.8 199 -64 207.8 -64H239.8C248.6 -64 255.8 -56.8 255.8 -48V-7.6L275.5 -27.3C281.7 -33.5 291.9 -33.5 298.1 -27.3L309.4000000000001 -16C315.6 -9.8 315.6 0.4 309.4000000000001 6.6L256 60.3V137.8L318.8 101.6L337.8 30.8C340 22.6 348.5 17.7 356.7 19.9L371.6 23.9C379.8 26.1 384.7 34.6 382.5 42.8L375.5 68.8L409.3 49.3C416.7 45 426.1 47.6 430.4 55L445.9 81.8C450.2 89.1 447.7 98.6 440.3 102.8z" />
+    <glyph glyph-name="snowflakes"
+      unicode="&#xF7CF;"
+      horiz-adv-x="640" d=" M608.1 192L636 208C639.8 210.2 641.1 215.1 638.9 218.9L630.9 232.8C628.6999999999999 236.6 623.8 237.9 620 235.7L592 219.6V248C592 252.4 588.4 256 584 256H568C563.6 256 560 252.4 560 248V219.6L532 235.7C528.2 237.9 523.3 236.6 521.1 232.8L513.1 218.9C510.9 215.1 512.2 210.2 516 208L543.9 192L516 176C512.2 173.8 510.9 168.9 513.1 165.1L521.1 151.2000000000001C523.3000000000001 147.4 528.2 146.1 532 148.3000000000001L560 164.4000000000001V136C560 131.6 563.6 128 568 128H584C588.4 128 592 131.6 592 136V164.4L620 148.3C623.8 146.1 628.7 147.4 630.9 151.1999999999999L638.9 165.0999999999999C641.1 168.8999999999999 639.8 173.7999999999999 636 175.9999999999999L608.1 191.9999999999999zM445.9 302.3L430.4 329.1C426.1 336.5 416.7 339 409.3 334.8L375.5 315.3L382.5 341.3C384.7 349.5 379.8 358 371.6 360.2000000000001L356.7 364.2000000000001C348.5 366.4000000000001 340 361.5 337.8 353.3L318.8 282.5L256 246.2V323.7L309.7 377.4C315.9 383.6 315.9 393.8 309.7 400L298.4 411.3C292.2 417.5 282 417.5 275.8 411.3L256 391.6V432C256 440.8 248.8 448 240 448H208C199.2 448 192 440.8 192 432V391.6L172.3 411.3C166.1 417.5 155.9 417.5 149.7 411.3L138.3 400C132.1 393.8 132.1 383.6 138.3 377.4L192 323.7V246.2L129.2 282.4L110.2 353.2C108 361.4 99.5 366.3 91.3 364.1L76.4 360.1C68.2 357.9 63.3 349.4 65.5 341.2L72.5 315.2L38.7 334.7C31.3 339 21.9 336.4 17.6 329L2.1 302.3C-2.2 294.9 0.4 285.5 7.8 281.2000000000001L41.6 261.7000000000001L15.6 254.7C7.3 252.5000000000001 2.4 244.0000000000001 4.6 235.7L8.6 220.8C10.8 212.6 19.3 207.7 27.5 209.9L98.3 228.9L162.1 192L98.3 155.1L27.5 174.1C19.3 176.3 10.8 171.4 8.6 163.2000000000001L4.6 148.3000000000001C2.4 140.1000000000001 7.3 131.6000000000001 15.5 129.4000000000001L41.5 122.4000000000001L7.7 102.8000000000001C0.3 98.5000000000001 -2.2 89.1000000000001 2 81.7000000000001L17.5 54.9C21.8 47.5000000000001 31.2 45.0000000000001 38.6 49.2L72.4 68.7000000000001L65.4 42.7C63.2 34.5000000000001 68.1 26.0000000000001 76.3 23.8000000000001L91.2 19.8000000000001C99.4 17.6000000000001 107.9 22.5000000000001 110.1 30.7L129.1 101.5000000000001L191.9 137.7000000000001V60.2000000000001L138.2 6.5000000000001C132 0.3000000000001 132 -9.8999999999999 138.2 -16.1L149.5 -27.4C155.7 -33.6 165.9 -33.6 172.1 -27.4L191.8 -7.7V-48C191.8 -56.8 199 -64 207.8 -64H239.8C248.6 -64 255.8 -56.8 255.8 -48V-7.6L275.5 -27.3C281.7 -33.5 291.9 -33.5 298.1 -27.3L309.4000000000001 -16C315.6 -9.8 315.6 0.4 309.4000000000001 6.6L256 60.3V137.8L318.8 101.6L337.8 30.8C340 22.6 348.5 17.7 356.7 19.9L371.6 23.9C379.8 26.1 384.7 34.6 382.5 42.8L375.5 68.8L409.3 49.3C416.7 45 426.1 47.6 430.4 55L445.9 81.8C450.2 89.2 447.6 98.6 440.2 102.9L406.4 122.4L432.4 129.4C440.6 131.6 445.5 140.1 443.3 148.3L439.3 163.2C437.1 171.4 428.6 176.3 420.4 174.1L349.6 155.1L285.8 192L349.6 228.9L420.4 209.9C428.6 207.7 437.1 212.5999999999999 439.3 220.8L443.3 235.7C445.5 243.9 440.6 252.4 432.4 254.6L406.4 261.6L440.2 281.1C447.7 285.4 450.2 294.9 445.9 302.3zM527.9 328C527.9 323.6 531.5 320 535.9 320H551.9C556.3 320 559.9 323.6 559.9 328V356.4L587.9 340.3C591.6999999999999 338.1 596.6 339.4 598.8 343.2000000000001L606.8 357.1C609 360.9000000000001 607.6999999999999 365.8 603.9 368L576 384L603.9 400C607.6999999999999 402.2 609 407.1 606.8 410.9L598.8 424.8C596.5999999999999 428.6 591.6999999999999 429.9 587.9 427.7L559.9 411.6V440C559.9 444.4 556.3 448 551.9 448H535.9C531.5 448 527.9 444.4 527.9 440V411.6L499.9 427.7C496.1 429.9 491.2 428.6 489 424.8L481 410.9C478.8 407.1 480.1 402.2 483.9 400L511.8 384L483.9 368C480.1 365.8 478.8 360.9 481 357.1L489 343.2C491.2 339.4 496.1 338.1 499.9 340.3L527.9 356.4V328z" />
+    <glyph glyph-name="snowman"
+      unicode="&#xF7D0;"
+      horiz-adv-x="512" d=" M510.9 295.7L505 310.2C501.7 318.2 492.4 322.1 484.2 318.9L456 307.4V336.4C456 345 448.8 352 440 352H424C415.2 352 408 345 408 336.4V289.5C408 289 408.3 288.5 408.3 288L351.9000000000001 265C346.0000000000001 275 338.6 283.9 329.9000000000001 291.6C343.5000000000001 308.2 351.9000000000001 329 351.9000000000001 352.1C351.9000000000001 405.1 308.9000000000001 448.1 255.9000000000001 448.1S159.9 405.1 159.9 352.1C159.9 329 168.4 308.2 181.9 291.6C173.2000000000001 283.9 165.9 275 159.9 265L103.5 288C103.6 288.5 103.8 289 103.8 289.5V336.4C104 345 96.8 352 88 352H72C63.2 352 56 345 56 336.4V307.4L27.9 318.9C19.7 322.1 10.4 318.2000000000001 7.1 310.2000000000001L1.2 295.7000000000001C-2.1 287.7000000000001 1.9 278.6 10.1 275.4L145.3 220.2C144.9 216.2 144.1 212.2 144.1 208C144.1 197.9 145.8 188.4 148.3 179.1C120.9 151.6 104 113.8 104 72C104 18 132.4 -28.9 174.8 -55.8C184.1 -61.7 195.1 -64 206.1 -64H305.3C318.6 -64 331.6 -59.9 342.5 -52.3C389 -20 416.9 37.1 405.4 100.3C399.9 130.5 384.9 157.9 363.8 179.3C366.3 188.5 368 198 368 208C368 212.1999999999999 367.2 216.0999999999999 366.8 220.1999999999999L502 275.4C510.1 278.5 514.1 287.6 510.9 295.7000000000001zM224 352C215.2 352 208 359.2 208 368S215.2 384 224 384S240 376.8 240 368S232.8 352 224 352zM256 80C247.2 80 240 87.2 240 96S247.2 112 256 112S272 104.8 272 96S264.8 80 256 80zM256 144C247.2 144 240 151.2 240 160S247.2 176 256 176S272 168.8 272 160S264.8 144 256 144zM256 208C247.2 208 240 215.2 240 224S247.2 240 256 240S272 232.8 272 224S264.8 208 256 208zM256 296S240 319.2 240 328S247.2 344 256 344S272 336.8 272 328S256 296 256 296zM288 352C279.2 352 272 359.2 272 368S279.2 384 288 384S304 376.8 304 368S296.8 352 288 352z" />
+    <glyph glyph-name="snowmobile"
+      unicode="&#xF7D1;"
+      horiz-adv-x="640" d=" M636.8 1.6L627.1999999999999 14.4C621.9 21.5000000000001 611.9 22.9 604.8 17.6L570.7 -8C563.8000000000001 -13.2 555.4000000000001 -16 546.7 -16H546L500 45.3L568.9 91.2C573.4 94.2 576 99.2 576 104.5V182C576 188.1 572.6 193.6 567.2 196.3L407.9 276L366.4 359.1C362.4 367 352.9 370.2 344.9 366.3C337 362.3 333.8 352.7 337.7 344.8L373.3 273.6L360 256H301.3L246 311.2C231.5 325.7 210.8 332.4 190.5 329.1C170.3 325.8 152.7 312.9 143.5 294.6L113.7 234.9C106.1 219.6 104.8 202.3 110.2 186C113.6 175.8 119.6 167.1 127.1 159.9H96C83.9 159.9 72.8 153.1 67.4 142.2L35.4 78.2C24.7 57 40.2 32 64 32H450L486 -16H432C423.2 -16 416 -23.2 416 -32V-48C416 -56.8 423.2 -64 432 -64H546.7C565.7 -64 584.3000000000001 -57.8 599.5 -46.4L633.6 -20.8C640.7 -15.4999999999999 642.1 -5.4999999999999 636.8000000000001 1.6zM288 160H263.6L196.6 193.5L222.2 244.6L256.1 210.7C268.2000000000001 198.6 284.3 191.9 301.3 191.9H312L288 160zM240 352C266.5 352 288 373.5 288 400S266.5 448 240 448S192 426.5 192 400S213.5 352 240 352zM288 0H32C14.3 0 0 -14.3 0 -32S14.3 -64 32 -64H288C305.7 -64 320 -49.7 320 -32S305.7 0 288 0z" />
+    <glyph glyph-name="snowplow"
+      unicode="&#xF7D2;"
+      horiz-adv-x="640" d=" M120 72C106.7 72 96 61.3 96 48S106.7 24 120 24S144 34.7 144 48S133.3 72 120 72zM200 72C186.7 72 176 61.3 176 48S186.7 24 200 24S224 34.7 224 48S213.3 72 200 72zM280 72C266.7 72 256 61.3 256 48S266.7 24 280 24S304 34.7 304 48S293.3 72 280 72zM360 72C346.7 72 336 61.3 336 48S346.7 24 360 24S384 34.7 384 48S373.3 72 360 72zM598.6 22.6C584.1 37.1 576 56.7000000000001 576 77.2000000000001V178.8C576 199.3 584.1 218.9 598.6 233.4L635.3000000000001 270.1C641.5000000000001 276.3 641.5000000000001 286.5 635.3000000000001 292.7000000000001L612.7 315.3C606.5 321.5 596.3000000000001 321.5 590.1 315.3L553.4 278.6C526.9 252.1 512 216.2 512 178.7000000000001V160H448V210.9C448 219.6 446.2 228.1 442.8 236.1L364.5 418.9C356.9 436.6 339.6 448 320.3 448H176C149.5 448 128 426.5 128 400V288H112C85.5 288 64 266.5 64 240V148.8C26.3 130.8 0 92.6 0 48C0 -13.9 50.1 -64 112 -64H368C429.9 -64 480 -13.9 480 48C480 65.3 475.8 81.4 468.8 96H512V77.3C512 39.8 526.9 3.9 553.4 -22.6L590.1 -59.3C596.3000000000001 -65.5 606.5 -65.5 612.7 -59.3L635.3000000000001 -36.7C641.5000000000001 -30.5 641.5000000000001 -20.3 635.3000000000001 -14.1L598.6 22.6zM192 384H309.8L378.4 224H256L192 288V384zM368 0H112C85.5 0 64 21.5 64 48S85.5 96 112 96H368C394.5 96 416 74.5 416 48S394.5 0 368 0z" />
+    <glyph glyph-name="socks"
+      unicode="&#xF696;"
+      horiz-adv-x="512" d=" M214.66 136.99L288 192V352H128V176L41.35 111.39C1.95 81.83 -12.51 26.97 12.14 -15.67C30.39 -47.25 63.27 -64 96.08 -64C116.11 -64 136.33 -57.75 153.6 -44.8L175.46 -28.41C145.61 26.97 161.92 97.43 214.66 136.99zM288 416C288 427.05 291.07 437.3 296.02 446.38C293.4 447.08 290.85 448 288 448H160C142.33 448 128 433.67 128 416V384H288V416zM480 448H352C334.33 448 320 433.67 320 416V384H512V416C512 433.67 497.67 448 480 448zM320 176L233.87 111.39C194.47 81.83 180.01 26.97 204.66 -15.67C222.91 -47.25 255.27 -64 288.08 -64C308.11 -64 328.33 -57.75 345.6 -44.8L460.8 41.6A127.99699999999999 127.99699999999999 0 0 1 512 144V352H320V176z" />
+    <glyph glyph-name="solar-panel"
+      unicode="&#xF5BA;"
+      horiz-adv-x="640" d=" M431.98 -0.01L384.01 -0.06V32H256.01V-0.21L208.03 -0.26C199.21 -0.27 192.06 -7.42 192.05 -16.25L192 -47.98C191.99 -56.83 199.17 -64.01 208.02 -64L431.98 -63.74C440.8 -63.73 447.9500000000001 -56.58 447.9600000000001 -47.76L448.0000000000001 -16.03C448.0100000000001 -7.1799999999999 440.8300000000001 0 431.9800000000001 -0.01zM585.2 421.26C582.58 436.69 568.99 448 553.06 448H86.93C71 448 57.41 436.69 54.79 421.26C-3.32 78.84 0.04 99.92 0.03 96C0 78.68 14.32 64 32.63 64H607.37C625.6 64 639.88 78.56 639.96 95.79C639.98 99.87 643.3100000000001 78.84 585.2 421.2600000000001zM259.83 384H380.16L389.93 288H250.06L259.83 384zM184.66 128H71.09L90.1 240H196.07L184.66 128zM200.95 288H98.24L114.53 384H210.72L200.95 288zM233.77 128L245.17 240H394.82L406.2199999999999 128H233.77zM429.27 384H525.46L541.75 288H439.04L429.2700000000001 384zM455.33 128L443.93 240H549.9L568.91 128H455.33z" />
+    <glyph glyph-name="sort-alpha-down"
+      unicode="&#xF15D;"
+      horiz-adv-x="448" d=" M187.298 52.686L107.314 -27.316C101.066 -33.563 90.931 -33.561 84.687 -27.316L4.705 52.686C-5.365 62.756 1.807 80 16.019 80H64V400C64 408.837 71.163 416 80 416H112C120.837 416 128 408.837 128 400V80H175.984C190.225 80 197.347 62.736 187.298 52.686zM306.373 232.693A12 12 0 0 0 294.838 224H259.1210000000001C250.9010000000001 224 245.1140000000001 232.078 247.7590000000001 239.861L304.855 407.861A12 12 0 0 0 316.217 416H355.783C360.9220000000001 416 365.4910000000001 412.727 367.1450000000001 407.861L424.2410000000001 239.861C426.886 232.078 421.1 224 412.879 224H377.144A12 12 0 0 0 365.629 232.622L357.3280000000001 260.9210000000001H314.4650000000001L306.3730000000001 232.693zM329.23 311.39H342.5970000000001L335.997 334.327L329.23 311.39zM341.805 24.067L409.256 119.765A12 12 0 0 1 411.448 126.678V148C411.448 154.627 406.075 160 399.448 160H274.522C267.895 160 262.522 154.627 262.522 148V119.07C262.522 112.443 267.895 107.07 274.522 107.07H330.991C330.252 106.079 329.494 105.034 328.721 103.937L261.5180000000001 8.732A12.001000000000001 12.001000000000001 0 0 1 259.322 1.812V-20C259.322 -26.627 264.695 -32 271.322 -32H400.677C407.3040000000001 -32 412.677 -26.627 412.677 -20V8.93C412.677 15.557 407.3040000000001 20.93 400.677 20.93H339.531C340.271 21.923 341.031 22.969 341.805 24.067z" />
+    <glyph glyph-name="sort-alpha-up"
+      unicode="&#xF15E;"
+      horiz-adv-x="448" d=" M4.702 331.314L84.686 411.316C90.934 417.563 101.069 417.561 107.313 411.316L187.294 331.314C197.364 321.2440000000001 190.193 304 175.98 304H128V-16C128 -24.837 120.837 -32 112 -32H80C71.163 -32 64 -24.837 64 -16V304H16.016C1.775 304 -5.347 321.264 4.702 331.314zM306.373 232.693A12 12 0 0 0 294.838 224H259.1210000000001C250.9010000000001 224 245.1140000000001 232.078 247.7590000000001 239.861L304.855 407.861A12 12 0 0 0 316.217 416H355.783C360.9220000000001 416 365.4910000000001 412.727 367.1450000000001 407.861L424.2410000000001 239.861C426.886 232.078 421.1 224 412.879 224H377.144A12 12 0 0 0 365.629 232.622L357.3280000000001 260.9210000000001H314.4650000000001L306.3730000000001 232.693zM329.23 311.39H342.5970000000001L335.997 334.327L329.23 311.39zM341.805 24.067L409.256 119.765A12 12 0 0 1 411.448 126.678V148C411.448 154.627 406.075 160 399.448 160H274.522C267.895 160 262.522 154.627 262.522 148V119.07C262.522 112.443 267.895 107.07 274.522 107.07H330.991C330.252 106.079 329.494 105.034 328.721 103.937L261.5180000000001 8.732A12.001000000000001 12.001000000000001 0 0 1 259.322 1.812V-20C259.322 -26.627 264.695 -32 271.322 -32H400.677C407.3040000000001 -32 412.677 -26.627 412.677 -20V8.93C412.677 15.557 407.3040000000001 20.93 400.677 20.93H339.531C340.271 21.923 341.031 22.969 341.805 24.067z" />
+    <glyph glyph-name="sort-amount-down"
+      unicode="&#xF160;"
+      horiz-adv-x="512" d=" M187.298 52.686L107.314 -27.316C101.066 -33.563 90.931 -33.561 84.687 -27.316L4.705 52.686C-5.365 62.756 1.807 80 16.019 80H64V400C64 408.837 71.163 416 80 416H112C120.837 416 128 408.837 128 400V80H175.984C190.225 80 197.347 62.736 187.298 52.686zM240 352H496C504.837 352 512 359.163 512 368V400C512 408.837 504.837 416 496 416H240C231.163 416 224 408.837 224 400V368C224 359.163 231.163 352 240 352zM224 240V272C224 280.837 231.163 288 240 288H432C440.837 288 448 280.837 448 272V240C448 231.163 440.837 224 432 224H240C231.163 224 224 231.163 224 240zM224 -16V16C224 24.837 231.163 32 240 32H304C312.837 32 320 24.837 320 16V-16C320 -24.837 312.837 -32 304 -32H240C231.163 -32 224 -24.837 224 -16zM224 112V144C224 152.837 231.163 160 240 160H368C376.837 160 384 152.837 384 144V112C384 103.163 376.837 96 368 96H240C231.163 96 224 103.163 224 112z" />
+    <glyph glyph-name="sort-amount-up"
+      unicode="&#xF161;"
+      horiz-adv-x="512" d=" M4.702 331.314L84.686 411.316C90.934 417.563 101.069 417.561 107.313 411.316L187.294 331.314C197.364 321.2440000000001 190.193 304 175.98 304H128V-16C128 -24.837 120.837 -32 112 -32H80C71.163 -32 64 -24.837 64 -16V304H16.016C1.775 304 -5.347 321.264 4.702 331.314zM240 352H496C504.837 352 512 359.163 512 368V400C512 408.837 504.837 416 496 416H240C231.163 416 224 408.837 224 400V368C224 359.163 231.163 352 240 352zM224 240V272C224 280.837 231.163 288 240 288H432C440.837 288 448 280.837 448 272V240C448 231.163 440.837 224 432 224H240C231.163 224 224 231.163 224 240zM224 -16V16C224 24.837 231.163 32 240 32H304C312.837 32 320 24.837 320 16V-16C320 -24.837 312.837 -32 304 -32H240C231.163 -32 224 -24.837 224 -16zM224 112V144C224 152.837 231.163 160 240 160H368C376.837 160 384 152.837 384 144V112C384 103.163 376.837 96 368 96H240C231.163 96 224 103.163 224 112z" />
+    <glyph glyph-name="sort-down"
+      unicode="&#xF0DD;"
+      horiz-adv-x="320" d=" M41 160H279C300.4 160 311.1 134.1 296 119L177 0C167.6 -9.4 152.4 -9.4 143.1 0L24 119C8.9 134.1 19.6 160 41 160z" />
+    <glyph glyph-name="sort-numeric-down"
+      unicode="&#xF162;"
+      horiz-adv-x="448" d=" M308.811 334.213L289.363 355.008C284.841 359.844 285.089 367.429 289.919 371.958L333.362 412.699A11.999000000000002 11.999000000000002 0 0 0 341.571 415.9460000000001H373.162C379.789 415.9460000000001 385.162 410.573 385.162 403.9460000000001V276.876H410.822C417.449 276.876 422.822 271.5030000000001 422.822 264.876V235.946C422.822 229.319 417.449 223.946 410.822 223.946H301.649C295.022 223.946 289.649 229.319 289.649 235.946V264.876C289.649 271.5030000000001 295.022 276.876 301.649 276.876H327.063V334.814C319.809 328.2340000000001 312.852 329.8930000000001 308.811 334.213zM278.241 95.644C278.241 128.297 302.106 163 346.335 163C384.588 163 425.759 134.139 425.759 70.772C425.759 19.496 393.522 -35 333.776 -35C315.94 -35 303.23 -31.443 295.228 -28.219C289.438 -25.886 286.439 -19.473 288.306 -13.516L297.543 15.964C299.5780000000001 22.46 306.592 25.947 313.01 23.68C326.039 19.078 340.888 18.405 351.113 27.818C312.371 22.746 278.241 53.178 278.241 95.644zM370.514 76.306C370.514 98.591 355.212 112.811 344.6790000000001 112.811C336.0370000000001 112.811 331.5150000000001 104.846 331.5150000000001 96.979C331.5150000000001 91.31 333.3300000000001 72.811 356.6830000000001 72.811C366.6560000000001 72.811 370.0600000000001 74.965 370.427 75.542C370.4480000000001 75.588 370.514 75.833 370.514 76.306zM175.984 80H128V400C128 408.837 120.837 416 112 416H80C71.163 416 64 408.837 64 400V80H16.019C1.807 80 -5.365 62.756 4.705 52.686L84.686 -27.316C90.931 -33.561 101.066 -33.563 107.313 -27.316L187.297 52.686C197.347 62.736 190.225 80 175.984 80z" />
+    <glyph glyph-name="sort-numeric-up"
+      unicode="&#xF163;"
+      horiz-adv-x="448" d=" M308.811 334.213L289.363 355.008C284.841 359.844 285.089 367.429 289.919 371.958L333.362 412.699A11.999000000000002 11.999000000000002 0 0 0 341.571 415.9460000000001H373.162C379.789 415.9460000000001 385.162 410.573 385.162 403.9460000000001V276.876H410.822C417.449 276.876 422.822 271.5030000000001 422.822 264.876V235.946C422.822 229.319 417.449 223.946 410.822 223.946H301.649C295.022 223.946 289.649 229.319 289.649 235.946V264.876C289.649 271.5030000000001 295.022 276.876 301.649 276.876H327.063V334.814C319.809 328.2340000000001 312.852 329.8930000000001 308.811 334.213zM278.241 95.644C278.241 128.297 302.106 163 346.335 163C384.588 163 425.759 134.139 425.759 70.772C425.759 19.496 393.522 -35 333.776 -35C315.94 -35 303.23 -31.443 295.228 -28.219C289.438 -25.886 286.439 -19.473 288.306 -13.516L297.543 15.964C299.5780000000001 22.46 306.592 25.947 313.01 23.68C326.039 19.078 340.888 18.405 351.113 27.818C312.371 22.746 278.241 53.178 278.241 95.644zM370.514 76.306C370.514 98.591 355.212 112.811 344.6790000000001 112.811C336.0370000000001 112.811 331.5150000000001 104.846 331.5150000000001 96.979C331.5150000000001 91.31 333.3300000000001 72.811 356.6830000000001 72.811C366.6560000000001 72.811 370.0600000000001 74.965 370.427 75.542C370.4480000000001 75.588 370.514 75.833 370.514 76.306zM16.016 304H64V-16C64 -24.837 71.163 -32 80 -32H112C120.837 -32 128 -24.837 128 -16V304H175.981C190.193 304 197.365 321.2440000000001 187.295 331.314L107.314 411.316C101.069 417.561 90.934 417.563 84.687 411.316L4.702 331.314C-5.347 321.264 1.775 304 16.016 304z" />
+    <glyph glyph-name="sort-up"
+      unicode="&#xF0DE;"
+      horiz-adv-x="320" d=" M279 224H41C19.6 224 8.9 249.9 24 265L143 384C152.4 393.4 167.6 393.4 176.9 384L295.9 265C311.1 249.9 300.4 224 279 224z" />
+    <glyph glyph-name="sort"
+      unicode="&#xF0DC;"
+      horiz-adv-x="320" d=" M41 160H279C300.4 160 311.1 134.1 296 119L177 0C167.6 -9.4 152.4 -9.4 143.1 0L24 119C8.9 134.1 19.6 160 41 160zM296 265L177 384C167.6 393.4 152.4 393.4 143.1 384L24 265C8.9 249.9 19.6 224 41 224H279C300.4 224 311.1 249.9 296 265z" />
+    <glyph glyph-name="spa"
+      unicode="&#xF5BB;"
+      horiz-adv-x="576" d=" M568.25 256C539.21 255.87 433.24 249.84 354.41 173C321.29 143.37 301.05 109.7 288 78.14C274.95 109.7 254.71 143.37 221.59 173C142.76 249.84 36.79 255.87 7.75 256C3.34 256.02 -0.04 252.6 0 248.18C0.23 220.26 7.14 122.04 88.77 48.88C172.79 -32.94 256 -32 288 -32S403.19 -32.95 487.23 48.88C568.87 122.05 575.77 220.26 576 248.18C576.04 252.6 572.66 256.02 568.25 256zM287.98 145.4C300.8 164.25 315.5800000000001 181.18 332.0700000000001 195.92C351.1600000000001 214.53 371.6500000000001 229.22 392.3300000000001 241.1C375.8900000000001 311.6 340.61 374.15 295.6 413.32C291.49 416.9 284.5800000000001 416.9 280.4600000000001 413.32C235.4700000000001 374.18 200.1900000000001 311.69 183.72 241.25C204.09 229.55 224.22 215.11 242.9400000000001 196.86A282.768 282.768 0 0 0 287.98 145.4z" />
+    <glyph glyph-name="space-shuttle"
+      unicode="&#xF197;"
+      horiz-adv-x="640" d=" M592.604 239.756C559.735 255.164 515.777 264 472 264H186.327C181.375 270.555 175.742 275.978 169.607 280H376C229.157 310.253 219.403 416 96.003 416H96V288H80V416C53.49 416 32 387.346 32 352V288C8.803 288 0 277.968 0 264V224C0 210.017 8.819 200 32 200V184C8.803 184 0 173.968 0 160V120C0 106.017 8.819 96 32 96V32C32 -3.346 53.49 -32 80 -32V96H96V-32H96.003C219.403 -32 229.157 73.747 376 104H169.606C175.741 108.022 181.374 113.445 186.326 120H472C515.777 120 559.735 128.836 592.604 144.244C622.282 158.155 640 176.008 640 192S622.282 225.845 592.604 239.756zM488 152A8 8 0 0 0 480 160V224A8 8 0 0 0 488 232C519.909 232 519.942 152 488 152z" />
+    <glyph glyph-name="spade"
+      unicode="&#xF2F4;"
+      horiz-adv-x="512" d=" M272.5 441.4C263.2 450.2 248.7 450.2 239.4 441.4C191.4 395.6 53.6 263 32 239.1C12.7 217.8 0 189.7 0 158.5C0 88 54.9 32.3 123.5 32C160.2 31.9 193.2 47.7 216 72.9C215.9 36.3 215.2 20.6 163.6 -2.5C149.5 -8.8 141.4 -24.1 144.9 -39.1C148.2 -53.6 161.2 -63.9 176.1 -63.9H335.5C351 -63.9 364.7 -53.1 367.6 -37.9C370.4000000000001 -23.3 362.8 -8.7 349.2000000000001 -2.7C297.6 20.3 296.4000000000001 35.4 296.2000000000001 72.9C319.6 47.1 353.7000000000001 31.1 391.5000000000001 32.1C459.0000000000001 33.8 512.2 88.6 512.2 156.1C512.2 188.3 500.0000000000001 217.3 480.2 239.2C458.4 263 320.6 395.6 272.5 441.4z" />
+    <glyph glyph-name="spider-black-widow"
+      unicode="&#xF718;"
+      horiz-adv-x="576" d=" M382.29 421.87C379.5 430.25 384.0200000000001 439.31 392.4100000000001 442.11L407.58 447.17C415.96 449.9700000000001 425.03 445.44 427.82 437.05L453.71 359.37A32.04 32.04 0 0 0 451.98 334.94L424.83 280.64L398.9 272H394.23L389.01 298.12C388.3 301.7000000000001 387.2099999999999 305.7000000000001 385.8 309.91L406.09 350.49L382.29 421.87zM151.17 280.65L177.1 272H181.77L186.99 298.12C187.71 301.7000000000001 188.79 305.7000000000001 190.2 309.91L169.91 350.49L193.71 421.88C196.5 430.26 191.98 439.32 183.59 442.12L168.42 447.18C160.04 449.98 150.97 445.45 148.18 437.06L122.29 359.38A32.04 32.04 0 0 1 124.02 334.95L151.17 280.65zM568.87 76.44L555.5600000000001 67.56C548.21 62.66 538.2700000000001 64.65 533.37 72L485.37 144H438.31L499.14 46.67A31.988 31.988 0 0 0 504 29.71V-48C504 -56.84 496.84 -64 488 -64H472C463.16 -64 456 -56.84 456 -48V25.11L381.92 143.64C382.93 129.59 384 115.53 384 101.43C384 48.36 343.24 0 288 0S192 48.36 192 101.43C192 115.53 193.08 129.59 194.08 143.64L120 25.11V-48C120 -56.84 112.84 -64 104 -64H88C79.16 -64 72 -56.84 72 -48V29.71C72 35.71 73.69 41.59 76.86 46.67L137.69 144H90.63L42.63 72C37.73 64.65 27.79 62.66 20.44 67.56L7.13 76.44C-0.22 81.34 -2.21 91.28 2.69 98.63L55.44 177.75A32.007 32.007 0 0 0 82.07 192H160L91.01 216.36A32.03 32.03 0 0 0 74.5 228.9700000000001L20.9 309.38C16 316.73 17.99 326.67 25.34 331.5700000000001L38.65 340.4500000000001C46 345.35 55.94 343.36 60.84 336.01L111.4 260.18L171.9 240H208L218.37 291.85C220.56 302.82 235.74 352 288 352C340.26 352 355.44 302.82 357.63 291.85L368 240H404.1L464.59 260.17L515.16 336C520.06 343.35 529.99 345.3400000000001 537.35 340.44L550.66 331.56C558.01 326.66 560 316.73 555.1 309.37L501.5 228.96A32.03 32.03 0 0 0 484.99 216.35L416 192H493.94C504.64 192 514.63 186.65 520.56 177.75L573.31 98.63C578.2099999999999 91.27 576.2299999999999 81.34 568.8699999999999 76.44zM300 128L326.4 163.2C330.36 168.47 326.59 176 320 176H256C249.41 176 245.64 168.47 249.6 163.2L276 128L249.6 92.8C245.64 87.53 249.41 80 256 80H320C326.59 80 330.36 87.53 326.4 92.8L300 128z" />
+    <glyph glyph-name="spider-web"
+      unicode="&#xF719;"
+      horiz-adv-x="576" d=" M567.16 214.14C510.6199999999999 273.46 469.24 345.78 446.6 424.85L446.58 424.91C441.86 441.39 425.08 451.17 408.58 447.05L408.51 447.03A497.663 497.663 0 0 0 167.48 447.03L167.41 447.05C150.91 451.17 134.13 441.39 129.41 424.91L129.39 424.85C106.76 345.78 65.38 273.4600000000001 8.84 214.14C-2.95 201.77 -2.95 182.22 8.84 169.85C65.38 110.53 106.76 38.21 129.4 -40.86L129.42 -40.92C134.14 -57.4 150.92 -67.1800000000001 167.42 -63.06L167.49 -63.04A497.663 497.663 0 0 0 408.52 -63.04L408.59 -63.06C425.09 -67.1799999999999 441.87 -57.4 446.59 -40.92L446.62 -40.8C469.2499999999999 38.24 510.61 110.52 567.1199999999999 169.82L567.1599999999999 169.86C578.9499999999998 182.22 578.9499999999998 201.78 567.1599999999999 214.14zM365.54 374.29L342.0200000000001 333.55A264.971 264.971 0 0 0 233.98 333.55L210.46 374.29A563.283 563.283 0 0 1 365.54 374.29zM288 239.99L264.57 280.57A313.24 313.24 0 0 1 311.43 280.57L288 239.99zM302.43 216H301.85L301.56 216.5L302.43 216zM288 144.01L311.44 103.42C303.64 103.9999999999999 295.82 104.41 288 104.41S272.37 103.9999999999999 264.56 103.42L288 144.01zM223 256.59L246.43 216H199.56C208.37 228.93 216.21 242.5 223 256.5900000000001zM169.61 34.9399999999999A574.3 574.3 0 0 1 93.29 168H138.4C162.62 140.89 181.06 108.96 192.41 74.44L169.61 34.94zM138.4 216H93.29A574.3 574.3 0 0 1 169.61 349.06L192.42 309.56A264.912 264.912 0 0 0 138.4 216zM246.43 168L223 127.41A314.825 314.825 0 0 1 199.56 168H246.43zM288 15.72C262.05 15.72 236.18 13.29 210.46 9.71L233.98 50.4400000000001C269.56 57.8600000000001 306.43 57.8600000000001 342.02 50.4400000000001L365.54 9.71C339.82 13.29 313.95 15.72 288 15.72zM353 127.41L329.57 168H376.44A314.825 314.825 0 0 1 353 127.41zM329.56 216L353 256.5900000000001A314.825 314.825 0 0 1 376.44 216H329.56zM406.39 34.94L383.58 74.44C394.93 108.96 413.38 140.89 437.6 168H482.71A574.3 574.3 0 0 1 406.39 34.94zM437.6 216A264.912 264.912 0 0 0 383.5800000000001 309.56L406.3900000000001 349.06A574.3 574.3 0 0 1 482.71 216H437.6z" />
+    <glyph glyph-name="spider"
+      unicode="&#xF717;"
+      horiz-adv-x="576" d=" M151.17 280.65L177.1 272H181.77L186.99 298.12C187.71 301.7000000000001 188.79 305.7000000000001 190.2 309.91L169.91 350.49L193.71 421.88C196.5 430.26 191.98 439.32 183.59 442.12L168.42 447.18C160.04 449.98 150.97 445.45 148.18 437.06L122.29 359.38A32.04 32.04 0 0 1 124.02 334.95L151.17 280.65zM573.31 98.62L520.56 177.74A32.002 32.002 0 0 1 493.9399999999999 191.99H416L484.99 216.35A32.03 32.03 0 0 1 501.5 228.9600000000001L555.1 309.37C560 316.7200000000001 558.01 326.6600000000001 550.66 331.5600000000001L537.35 340.4400000000001C530 345.3400000000001 520.0600000000001 343.35 515.16 336L464.6 260.17L404.1 240H368L357.63 291.85C355.44 302.82 340.26 352 288 352C235.74 352 220.56 302.82 218.37 291.85L208 240H171.9L111.41 260.17L60.84 336C55.94 343.35 46.01 345.3400000000001 38.65 340.44L25.34 331.56C17.99 326.66 16 316.73 20.9 309.37L74.5 228.96A32.03 32.03 0 0 1 91.01 216.35L160 192H82.06A32.02 32.02 0 0 1 55.43 177.75L2.69 98.62C-2.21 91.27 -0.23 81.33 7.13 76.43L20.44 67.55C27.79 62.65 37.73 64.64 42.63 71.99L90.63 143.99H137.69L76.86 46.66A31.988 31.988 0 0 1 72 29.7V-48C72 -56.84 79.16 -64 88 -64H104C112.84 -64 120 -56.84 120 -48V25.11L194.08 143.64C193.07 129.59 192 115.53 192 101.43C192 48.36 232.76 0 288 0S384 48.36 384 101.43C384 115.53 382.92 129.59 381.92 143.64L456 25.11V-48C456 -56.84 463.16 -64 472 -64H488C496.84 -64 504 -56.84 504 -48V29.71C504 35.71 502.31 41.59 499.14 46.67L438.31 144H485.37L533.37 72C538.27 64.65 548.21 62.66 555.5600000000001 67.56L568.87 76.44C576.23 81.34 578.21 91.27 573.3100000000001 98.62zM406.09 350.49L385.8 309.91C387.21 305.7 388.29 301.7 389.01 298.12L394.23 272H398.9L424.83 280.65L451.98 334.95A31.995 31.995 0 0 1 453.71 359.38L427.82 437.06C425.03 445.44 415.96 449.98 407.58 447.18L392.41 442.12C384.03 439.32 379.5 430.26 382.29 421.88L406.09 350.49z" />
+    <glyph glyph-name="spinner-third"
+      unicode="&#xF3F4;"
+      horiz-adv-x="512" d=" M456.433 76.28L428.643 92.325C421.451 96.477 418.591 105.461 422.156 112.961C447.976 167.289 445.7219999999999 231.563 415.388 283.991C385.123 336.52 330.586 370.612 270.628 375.415C262.35 376.078 256 383.0470000000001 256 391.351V423.44C256 432.75 263.916 440.049 273.204 439.4C354.999 433.683 429.616 387.498 470.815 315.992C512.116 244.607 514.805 156.896 478.857 83.2C474.775 74.831 464.496 71.625 456.433 76.28z" />
+    <glyph glyph-name="spinner"
+      unicode="&#xF110;"
+      horiz-adv-x="512" d=" M304 400C304 373.49 282.51 352 256 352S208 373.49 208 400S229.49 448 256 448S304 426.51 304 400zM256 32C229.49 32 208 10.51 208 -16S229.49 -64 256 -64S304 -42.51 304 -16S282.51 32 256 32zM464 240C437.49 240 416 218.51 416 192S437.49 144 464 144S512 165.49 512 192S490.51 240 464 240zM96 192C96 218.51 74.51 240 48 240S0 218.51 0 192S21.49 144 48 144S96 165.49 96 192zM108.922 92.922C82.412 92.922 60.922 71.432 60.922 44.922S82.412 -3.078 108.922 -3.078S156.922 18.412 156.922 44.922C156.922 71.431 135.431 92.922 108.922 92.922zM403.078 92.922C376.568 92.922 355.078 71.432 355.078 44.922S376.568 -3.078 403.078 -3.078S451.078 18.412 451.078 44.922C451.078 71.431 429.588 92.922 403.078 92.922zM108.922 387.078C82.412 387.078 60.922 365.588 60.922 339.078S82.412 291.078 108.922 291.078S156.922 312.568 156.922 339.078S135.431 387.078 108.922 387.078z" />
+    <glyph glyph-name="splotch"
+      unicode="&#xF5BC;"
+      horiz-adv-x="512" d=" M472.29 252.11L405.23 275.06C385.9500000000001 281.66 371.69 295.98 367.0900000000001 313.36L351.1 373.81C339.5200000000001 417.58 274.5300000000001 430.94 241.12 396.43L194.98 348.76C181.72 335.05 161.44 327.8300000000001 140.78 329.45L68.9 335.07C16.85 339.14 -18.03 290.19 9.87 252.24L48.41 199.82C59.49 184.75 61.23 165.96 53.05 149.58L24.62 92.6C4.03 51.35 47.46 7.73 98.11 18.79L168.07 34.07C188.18 38.46 209.52 34.07 225.14 22.34L279.46 -18.49C318.78 -48.05 380.5 -26.06 383.91 18.73L388.61 80.59C389.96 98.3800000000001 401.41 114.4500000000001 419.24 123.5800000000001L481.24 155.3200000000001C526.12 178.28 520.8299999999999 235.4900000000001 472.29 252.1100000000001z" />
+    <glyph glyph-name="spray-can"
+      unicode="&#xF5BD;"
+      horiz-adv-x="512" d=" M224 416C224 433.67 209.67 448 192 448H128C110.33 448 96 433.67 96 416V320H224V416zM480 320C462.33 320 448 305.67 448 288S462.33 256 480 256S512 270.3300000000001 512 288S497.67 320 480 320zM224 288H96C42.98 288 0 245.02 0 192V-32C0 -49.67 14.33 -64 32 -64H288C305.67 -64 320 -49.67 320 -32V192C320 245.02 277.02 288 224 288zM160 32C115.82 32 80 67.82 80 112S115.82 192 160 192S240 156.18 240 112S204.18 32 160 32zM480 352C497.67 352 512 366.33 512 384S497.67 416 480 416S448 401.67 448 384S462.33 352 480 352zM384 320C366.33 320 352 305.67 352 288S366.33 256 384 256S416 270.3300000000001 416 288S401.67 320 384 320zM288 416C270.33 416 256 401.67 256 384S270.33 352 288 352S320 366.33 320 384S305.67 416 288 416zM384 416C366.33 416 352 401.67 352 384S366.33 352 384 352S416 366.33 416 384S401.67 416 384 416zM480 224C462.33 224 448 209.67 448 192S462.33 160 480 160S512 174.33 512 192S497.67 224 480 224z" />
+    <glyph glyph-name="square-full"
+      unicode="&#xF45C;"
+      horiz-adv-x="512" d=" M512 -64H0V448H512V-64z" />
+    <glyph glyph-name="square-root-alt"
+      unicode="&#xF698;"
+      horiz-adv-x="576" d=" M571.31 196.69L548.6899999999999 219.31C542.4399999999999 225.56 532.31 225.56 526.06 219.31L480 173.25L433.94 219.31C427.69 225.56 417.56 225.56 411.31 219.31L388.69 196.69C382.44 190.44 382.44 180.31 388.69 174.06L434.75 128L388.69 81.94C382.44 75.69 382.44 65.56 388.69 59.31L411.31 36.69C417.56 30.44 427.69 30.44 433.94 36.69L480 82.75L526.06 36.69C532.31 30.44 542.4399999999999 30.44 548.6899999999999 36.69L571.31 59.31C577.56 65.56 577.56 75.69 571.31 81.94L525.25 128L571.31 174.06C577.56 180.31 577.56 190.44 571.31 196.69zM552 448H307.65C293.11 448 280.39 438.2 276.7 424.13L191.91 101.33L133.5 207.43A32.008 32.008 0 0 1 105.47 224H24C10.75 224 0 213.26 0 200V152C0 138.75 10.75 128 24 128H67.62L156.5 -35.73C168.99 -55.5 186.3 -64 204.94 -64C222.21 -64 249.38 -55 259.2200000000001 -22.52L357.03 352H552C565.25 352 576 362.75 576 376V424C576 437.26 565.25 448 552 448z" />
+    <glyph glyph-name="square-root"
+      unicode="&#xF697;"
+      horiz-adv-x="576" d=" M552 448H307.65C293.11 448 280.39 438.2 276.7 424.13L191.91 101.33L133.5 207.43A32.008 32.008 0 0 1 105.47 224H24C10.75 224 0 213.26 0 200V152C0 138.75 10.75 128 24 128H67.62L156.5 -35.73C168.99 -55.5 186.3 -64 204.94 -64C222.21 -64 249.38 -55 259.2200000000001 -22.52L357.03 352H552C565.25 352 576 362.75 576 376V424C576 437.26 565.25 448 552 448z" />
+    <glyph glyph-name="square"
+      unicode="&#xF0C8;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416z" />
+    <glyph glyph-name="squirrel"
+      unicode="&#xF71A;"
+      horiz-adv-x="512" d=" M479.85 0H448.92C467.11 18.4 479.85 42.12 479.85 64C479.85 90.55 457.77 116.81 432 125.09V224H479.85C500.25 224 515.5500000000001 242.91 511.28 262.87C500.84 311.5800000000001 466.72 352 415.87 352V384C367.86 384 341.65 321.27 326.4700000000001 275.71L261.13 79.1899999999999C259.74 74.9999999999999 255.21 72.73 251.02 74.12L235.83 79.17C231.64 80.56 229.37 85.09 230.76 89.29L265.29 193.14C312.5 335.11 214.16 448 127.96 448C57.29 448 0 390.69 0 320S57.29 192 127.96 192C128.23 192 128.48 192.08 128.75 192.08C107.82 164.41 95.19 130.12 96.01 92.54C97.94 4.12 175.85 -64 264.27 -64H495.85C504.68 -64 511.84 -56.84 511.84 -48V-32C511.84 -14.33 497.52 0 479.85 0zM431.87 304C440.7 304 447.86 296.8400000000001 447.86 288S440.7 272 431.87 272S415.87 279.16 415.87 288S423.04 304 431.87 304z" />
+    <glyph glyph-name="staff"
+      unicode="&#xF71B;"
+      horiz-adv-x="512" d=" M432 448H355.77C325.47 448 297.77 430.88 284.22 403.78L268.22 371.78C264.27 363.88 267.47 354.27 275.37 350.32L332.62 321.69C340.5199999999999 317.74 350.13 320.94 354.0899999999999 328.85L365.67 352H416V276.2L258.7100000000001 231.26A176.122 176.122 0 0 1 182.6 186.48L156.12 160H112C103.16 160 96 152.84 96 144V99.88L7.03 10.9C-2.34 1.53 -2.34 -13.67 7.03 -23.04L40.96 -56.97C50.33 -66.34 65.53 -66.34 74.9 -56.97L250.45 118.58A80.111 80.111 0 0 0 285.07 138.95L369.89 163.19L402.14 144.57C409.79 140.15 419.58 142.78 424 150.43L443.51 184.23L453.97 187.22C488.3099999999999 197.03 511.99 228.4300000000001 511.99 264.1400000000001V368C512 412.18 476.18 448 432 448z" />
+    <glyph glyph-name="stamp"
+      unicode="&#xF5BF;"
+      horiz-adv-x="512" d=" M32 -64H480V0H32V-64zM416 192H349.44C333.18 192 320 205.18 320 221.44V230.9C320 258.27 328.88 284.31 341.46 308.62C350.57 326.23 354.36 347.01 350.51 369.04C343.74 407.82 312.04 439.74 273.25 446.49C212.62 457.04 160 410.67 160 352C160 337.8400000000001 163.12 324.4600000000001 168.69 312.42C182.02 283.57 192 253.3 192 221.51V221.44C192 205.18 178.82 192 162.56 192H96C42.98 192 0 149.02 0 96V64C0 46.33 14.33 32 32 32H480C497.67 32 512 46.33 512 64V96C512 149.02 469.02 192 416 192z" />
+    <glyph glyph-name="star-and-crescent"
+      unicode="&#xF699;"
+      horiz-adv-x="512" d=" M340.4700000000001 -18.36C339.0200000000001 -18.36 333.5800000000001 -18.82 331.29 -18.82C215.04 -18.82 120.47 75.75 120.47 192S215.04 402.82 331.29 402.82C333.61 402.82 338.99 402.36 340.4700000000001 402.36C347.6 402.36 353.8 407.39 355.2200000000001 414.43C356.68 421.68 352.67 428.92 345.75 431.52C316.58 442.46 286.39 448 256 448C114.84 448 0 333.16 0 192S114.84 -64 256 -64C286.23 -64 316.28 -58.51 345.32 -47.68C351.28 -45.66 355.6 -40.04 355.6 -33.42C355.6 -25.33 349.21 -18.36 340.47 -18.36zM503.46 234.14L427.0800000000001 245.24L392.9200000000001 314.45C391.0900000000001 318.15 387.5400000000001 320 383.9900000000001 320S376.8900000000001 318.15 375.0600000000001 314.45L340.9000000000001 245.24L264.5200000000001 234.14C256.3500000000001 232.96 253.0900000000001 222.92 259.0000000000001 217.15L314.2700000000001 163.28L301.2200000000001 87.21C300.1100000000001 80.77 305.2300000000001 75.55 311.0300000000001 75.55C312.5600000000001 75.55 314.1400000000001 75.91 315.6700000000001 76.72L384 112.63L452.31 76.72C453.84 75.92 455.42 75.55 456.95 75.55C462.75 75.55 467.87 80.78 466.76 87.21L453.71 163.28L508.98 217.15C514.89 222.9200000000001 511.6299999999999 232.9600000000001 503.46 234.1400000000001z" />
+    <glyph glyph-name="star-christmas"
+      unicode="&#xF7D4;"
+      horiz-adv-x="512" d=" M505.3 200.6L312.8 248.7L264.6 441.3C262.4000000000001 450.3 249.6 450.3 247.4000000000001 441.3L199.3000000000001 248.7L6.7 200.6C-2.3 198.4 -2.3 185.6 6.7 183.4L199.2 135.3L247.3 -57.2C249.5 -66.2 262.3 -66.2 264.5 -57.2L312.6 135.3L505.2 183.4C514.2 185.6 514.2 198.4 505.3000000000001 200.6zM152.9 270.1L172.8000000000001 275.1L177.8000000000001 295L109 350.1C101.5 356.1 91.8 346.4 97.8 338.9L152.9 270.1zM359.1 113.9L339.2000000000001 108.9L334.2000000000001 89L403.0000000000001 33.9C410.5000000000001 27.9 420.2000000000001 37.6 414.2000000000001 45.1L359.1 113.9zM359.1 270.1L414.2000000000001 338.9C420.2000000000001 346.4 410.5000000000001 356.1 403.0000000000001 350.1L334.2000000000001 295.1L339.2000000000001 275.2L359.1 270.1zM152.9 113.9L97.9 45.1C91.9 37.6 101.6 27.9 109.1 33.9L177.9 89L172.9 108.9L152.9 113.9z" />
+    <glyph glyph-name="star-exclamation"
+      unicode="&#xF2F3;"
+      horiz-adv-x="576" d=" M259.3 430.2L194 297.8L47.9 276.6C21.7 272.8 11.2 240.5 30.2 222L135.9 119L110.9 -26.5C106.4 -52.6 133.9 -72.5 157.3 -60.2L288 8.4L418.7 -60.3C442 -72.6 469.6 -52.8 465.1 -26.6L440.1 118.9L545.8 221.9C564.8 240.4 554.3 272.7 528.0999999999999 276.5L382 297.8L316.7 430.2C305 453.9 271.1 454 259.3 430.2zM256.1 288H320.1C324.8 288 328.5 283.9 328.1 279.4L320.1 167.4C319.8 163.2 316.3 160 312.1 160H264.1C259.9000000000001 160 256.4000000000001 163.2 256.1 167.4L248.1 279.4C247.6 284.1 251.6 288 256.1 288zM288 56C265.9 56 248 73.9 248 96S265.9 136 288 136S328 118.1 328 96S310.1 56 288 56z" />
+    <glyph glyph-name="star-half-alt"
+      unicode="&#xF5C0;"
+      horiz-adv-x="536" d=" M508.55 276.49L362.18 297.8L296.77 430.19C290.89 442.02 279.42 448 267.95 448C256.55 448 245.16 442.1 239.26 430.19L173.83 297.81L27.45 276.52C1.2 272.7200000000001 -9.32 240.43 9.71 221.93L115.6 118.93L90.54 -26.55C86.98 -47.33 103.57 -64 122.15 -64C127.08 -64 132.15 -62.83 137.02 -60.25L267.9700000000001 8.43L398.9100000000001 -60.27C403.7700000000001 -62.82 408.8300000000001 -63.98 413.74 -63.98C432.3400000000001 -63.98 448.9600000000001 -47.3699999999999 445.4000000000001 -26.58L420.37 118.91L526.28 221.8900000000001C545.3199999999999 240.3900000000001 534.8 272.6900000000001 508.55 276.49zM386.81 153.29L368.69 135.67L372.97 110.79L392.49 -2.66L290.36 50.9300000000001L267.98 62.6700000000001L268.01 379.8600000000001L319.04 276.5700000000001L330.22 253.9400000000001L355.23 250.3000000000001L469.46 233.6700000000001L386.81 153.2900000000001z" />
+    <glyph glyph-name="star-half"
+      unicode="&#xF089;"
+      horiz-adv-x="576" d=" M288 448C276.6 448 265.2 442.1 259.3 430.2L194 297.8L47.9 276.6C21.7 272.8 11.2 240.5 30.2 222L135.9 119L110.9 -26.5C106.4 -52.6 133.9 -72.5 157.3 -60.2L288 8.4V448z" />
+    <glyph glyph-name="star-of-david"
+      unicode="&#xF69A;"
+      horiz-adv-x="464" d=" M405.68 192L458.89 281.39C473.3 305.6 455.48 336 426.88 336H319.96L264.01 429.98C256.86 441.99 244.43 448 232 448S207.14 441.99 199.99 429.98L144.04 336H37.11C8.51 336 -9.31 305.6 5.1 281.39L58.32 192L5.1 102.61C-9.31 78.4 8.51 48 37.11 48H144.04L199.99 -45.98C207.14 -57.99 219.57 -64 232 -64S256.86 -57.99 264.01 -45.98L319.96 48H426.89C455.49 48 473.31 78.4 458.9 102.61L405.68 192zM392.9000000000001 280L373.1 246.74L353.3 280H392.9000000000001zM340.5100000000001 192L288.1200000000001 104H175.88L123.49 192L175.87 280H288.12L340.51 192zM232 374.28L254.79 336H209.22L232 374.28zM71.1 280H110.7L90.9 246.74L71.1 280zM71.1 104L90.9 137.26L110.7 104H71.1zM232 9.72L209.21 48H254.78L232 9.72zM353.29 104L373.0900000000001 137.26L392.9 104H353.29z" />
+    <glyph glyph-name="star-of-life"
+      unicode="&#xF621;"
+      horiz-adv-x="480" d=" M471.99 113.57L336.06 192L471.99 270.43C479.65 274.85 482.27 284.63 477.85 292.29L445.8300000000001 347.7200000000001C441.4100000000001 355.37 431.6200000000001 358 423.9600000000001 353.5800000000001L288.0300000000001 275.1500000000001V432C288.0300000000001 440.84 280.86 448 272.0200000000001 448H207.98C199.14 448 191.97 440.84 191.97 432V275.14L56.04 353.57C48.38 357.99 38.59 355.36 34.17 347.71L2.15 292.29C-2.27 284.64 0.35 274.85 8.01 270.43L143.94 192L8.01 113.57C0.35 109.15 -2.27 99.36 2.15 91.71L34.17 36.28C38.59 28.63 48.38 26.01 56.04 30.42L191.97 108.85V-48C191.97 -56.84 199.14 -64 207.98 -64H272.0200000000001C280.86 -64 288.0300000000001 -56.84 288.0300000000001 -48V108.86L423.9600000000001 30.43C431.6200000000001 26.01 441.4100000000001 28.63 445.8300000000001 36.29L477.85 91.72C482.27 99.37 479.65 109.15 471.99 113.5700000000001z" />
+    <glyph glyph-name="star"
+      unicode="&#xF005;"
+      horiz-adv-x="576" d=" M259.3 430.2L194 297.8L47.9 276.5C21.7 272.7 11.2 240.4 30.2 221.9L135.9 118.9L110.9 -26.6C106.4 -52.9 134.1 -72.6 157.3 -60.3L288 8.4L418.7 -60.3C441.9 -72.5 469.6 -52.9 465.1 -26.6L440.1 118.9L545.8 221.9C564.8 240.4 554.3 272.7 528.0999999999999 276.5L382 297.8L316.7 430.2C305 453.8 271.1 454.1 259.3 430.2z" />
+    <glyph glyph-name="stars"
+      unicode="&#xF762;"
+      horiz-adv-x="512" d=" M336 288L362.7 341.3L416 368L362.7 394.7L336 448L309.3 394.7L256 368L309.3 341.3L336 288zM480 256L464 288L448 256L416 240L448 224L464 192L480 224L512 240L480 256zM364.3 180.7L259.5 196L212.6 291.2C204.2 308.2 179.9 308.4 171.4 291.2L124.5 196L19.7 180.7C0.9 178 -6.7 154.8 7 141.5L82.9 67.5L64.9 -37.1C61.7 -56 81.6 -70.2 98.2 -61.3L192 -11.9L285.8 -61.3C302.5 -70.1 322.3 -56 319.1 -37.1L301.2000000000001 67.5L377.1 141.5C390.7000000000001 154.8 383.1 178 364.3 180.7z" />
+    <glyph glyph-name="steering-wheel"
+      unicode="&#xF622;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 376C338.53 376 413.82 310.23 429.03 224H335.13C324.04 243.05 303.64 256 280.01 256H216.01C192.38 256 171.97 243.05 160.89 224H66.99C82.18 310.23 157.47 376 248 376zM66.97 160H168L216 96V10.97C140.19 24.35 80.35 84.19 66.97 160zM280 10.97V96L328 160H429.03C415.65 84.19 355.81 24.35 280 10.97z" />
+    <glyph glyph-name="step-backward"
+      unicode="&#xF048;"
+      horiz-adv-x="448" d=" M64 -20V404C64 410.6 69.4 416 76 416H124C130.6 416 136 410.6 136 404V227.6L331.5 408.6C352.1 425.7 384 411.4 384 384V0C384 -27.4 352.1 -41.7 331.5 -24.6L136 155.3V-20C136 -26.6 130.6 -32 124 -32H76C69.4 -32 64 -26.6 64 -20z" />
+    <glyph glyph-name="step-forward"
+      unicode="&#xF051;"
+      horiz-adv-x="448" d=" M384 404V-20C384 -26.6 378.6 -32 372 -32H324C317.4 -32 312 -26.6 312 -20V156.4L116.5 -24.6C95.9 -41.7 64 -27.4 64 0V384C64 411.4 95.9 425.7 116.5 408.6L312 228.7V404C312 410.6 317.4 416 324 416H372C378.6 416 384 410.6 384 404z" />
+    <glyph glyph-name="stethoscope"
+      unicode="&#xF0F1;"
+      horiz-adv-x="512" d=" M447.1 336C412.9000000000001 335.5 384.8 307.6 384.1 273.4C383.6 249.1 396.6 227.8 416.1 216.6V104C416.1 46.7 365.9000000000001 0 304.1 0C244.1 0 194.9 44.1 192.2 99.2C265 114.2 320 178.8 320 256V411.4C320 422.8 311.9 432.7 300.7 434.9L237.8 447.5C224.8 450.1 212.2 441.7 209.6 428.7L206.4 413C203.8 400 212.2 387.4 225.2 384.8L255.9 378.7V257.3C255.9 204.4 213.7 160.6 160.8 160.1C107.4 159.6 63.9 202.8 63.9 256.1V378.6L94.6 384.7C107.6 387.3 116 399.9 113.4 412.9L110.3 428.6C107.7 441.6 95.1 450 82.1 447.4L19.3 435C8.1 432.7 0 422.9 0 411.4V256C0 178.7 55.1 114 128.1 99.2C130.7 8.8 208.6 -64 304 -64C401 -64 480 11.4 480 104V216.6C499.1 227.7 512 248.3 512 272C512 307.7 482.8 336.5 447.1 336zM448 256C439.2 256 432 263.2 432 272S439.2 288 448 288S464 280.8 464 272S456.8 256 448 256z" />
+    <glyph glyph-name="sticky-note"
+      unicode="&#xF249;"
+      horiz-adv-x="448" d=" M312 128H448V392C448 405.3 437.3 416 424 416H24C10.7 416 0 405.3 0 392V-8C0 -21.3 10.7 -32 24 -32H288V104C288 117.2 298.8 128 312 128zM441 73L343 -25C338.5 -29.5 332.4 -32 326 -32H320V96H448V89.9C448 83.6 445.5 77.5 441 73z" />
+    <glyph glyph-name="stocking"
+      unicode="&#xF7D5;"
+      horiz-adv-x="384" d=" M368 448H80C71.2 448 64 440.8 64 432V368C64 359.2 71.2 352 80 352H368C376.8 352 384 359.2 384 368V432C384 440.8 376.8 448 368 448zM96 196.5L57 170.5C-1.8 131.3 -17.7 51.8 21.5 -7C46.2 -44 86.7 -64 128.1 -64C152.5 -64 177.2 -57 199 -42.5L280.7 12C325.3 41.7 351.9 91.5 351.9 145.1V320H96V196.5z" />
+    <glyph glyph-name="stomach"
+      unicode="&#xF623;"
+      horiz-adv-x="512" d=" M384 352C329.71 352 293.14 319.43 274.83 288H256C220.66 288 192 316.65 192 352V432C192 440.84 184.84 448 176 448H144C135.16 448 128 440.84 128 432V352C128 281.31 185.3 224 256 224H256.49C256.42 222.15 256 220.37 256 218.5V160C256 124.65 227.34 96 192 96H128C57.3 96 0 38.69 0 -32V-48C0 -56.84 7.16 -64 16 -64H48C56.84 -64 64 -56.84 64 -48V-32C64 5.63 97.96 19.21 117.92 19.21C135.03 19.21 147.51 12.5 158.99 1.01C226.21 -66.21 297.63 -64 308.36 -64C420.8400000000001 -64 512.01 27.17 512.01 139.65V224C512 294.69 454.7 352 384 352zM448 139.65C448 130.42 446.99 121.44 445.27 112.7C423.71 106.62 400.26 111.73 384 128C366.63 145.37 341.0900000000001 150.14 318.4 141.93C319.24 147.86 320 153.83 320 160V218.5C320 254.65 346.38 288 384 288C419.29 288 448 259.29 448 224V139.65z" />
+    <glyph glyph-name="stop-circle"
+      unicode="&#xF28D;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM352 112C352 103.2 344.8 96 336 96H176C167.2 96 160 103.2 160 112V272C160 280.8 167.2 288 176 288H336C344.8 288 352 280.8 352 272V112z" />
+    <glyph glyph-name="stop"
+      unicode="&#xF04D;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416z" />
+    <glyph glyph-name="stopwatch"
+      unicode="&#xF2F2;"
+      horiz-adv-x="448" d=" M432 144C432 29.1 338.9 -64 224 -64S16 29.1 16 144C16 248 92.3 334.2 192 349.5V384H164C157.4 384 152 389.4 152 396V436C152 442.6 157.4 448 164 448H284C290.6 448 296 442.6 296 436V396C296 389.4 290.6 384 284 384H256V349.5C293.5 343.7 327.7 327.9 355.7 304.9L383.2 332.4C387.9 337.1 395.5 337.1 400.2 332.4L428.5 304.1C433.2 299.4 433.2 291.8 428.5 287.1L399.1 257.7L398.5 257.1C419.7 224.7 432 185.8 432 144zM256 108V259.5C256 266.1 250.6 271.5 244 271.5H204C197.4 271.5 192 266.1 192 259.5V108C192 101.4 197.4 96 204 96H244C250.6 96 256 101.4 256 108z" />
+    <glyph glyph-name="store-alt"
+      unicode="&#xF54F;"
+      horiz-adv-x="640" d=" M320 64H128V224H64V-32C64 -49.7 78.3 -64 96 -64H352C369.7 -64 384 -49.7 384 -32V224H320V64zM634.6 305.8L549.3000000000001 433.8C543.3000000000001 442.7 533.3000000000001 448 522.6 448H117.4C106.7 448 96.7 442.7 90.8 433.8L5.5 305.8C-8.7 284.5 6.5 256 32.1 256H608C633.5 256 648.7 284.5 634.6 305.8zM512 -48C512 -56.8 519.2 -64 528 -64H560C568.8 -64 576 -56.8 576 -48V224H512V-48z" />
+    <glyph glyph-name="store"
+      unicode="&#xF54E;"
+      horiz-adv-x="616" d=" M602 329.4L537.1 433C531.3 442.3 521 448 510 448H106C95 448 84.7 442.3 78.9 433L14 329.4C-19.5 275.9 10.2 201.5 72.8 193C77.3 192.4 81.9 192.1 86.5 192.1C116.1 192.1 142.3 205.1 160.3 225.2C178.3 205.1 204.6 192.1 234.1 192.1C263.7000000000001 192.1 289.9000000000001 205.1 307.9000000000001 225.2C325.9000000000001 205.1 352.2000000000001 192.1 381.7000000000001 192.1C411.3000000000001 192.1 437.5000000000001 205.1 455.5000000000001 225.2C473.6000000000001 205.1 499.8000000000001 192.1 529.3000000000001 192.1C534.0000000000001 192.1 538.5000000000001 192.4 543.0000000000001 193C605.8000000000001 201.4 635.6000000000001 275.8 602.0000000000001 329.4zM529.5 160C519.5 160 509.6 161.5 500 163.8V64H116V163.8C106.4 161.6 96.5 160 86.5 160C80.5 160 74.4 160.4 68.5 161.2C62.9 162 57.4 163.3 52.1 164.8V-32C52.1 -49.7 66.4 -64 84.1 -64H532.1C549.8000000000001 -64 564.1 -49.7 564.1 -32V164.8C558.7 163.2 553.3000000000001 161.9 547.7 161.2C541.6 160.4 535.6 160 529.5 160z" />
+    <glyph glyph-name="stream"
+      unicode="&#xF550;"
+      horiz-adv-x="512" d=" M16 320H432C440.84 320 448 327.16 448 336V400C448 408.8400000000001 440.84 416 432 416H16C7.16 416 0 408.8400000000001 0 400V336C0 327.16 7.16 320 16 320zM496 240H80C71.16 240 64 232.84 64 224V160C64 151.16 71.16 144 80 144H496C504.84 144 512 151.16 512 160V224C512 232.84 504.84 240 496 240zM432 64H16C7.16 64 0 56.84 0 48V-16C0 -24.84 7.16 -32 16 -32H432C440.84 -32 448 -24.84 448 -16V48C448 56.84 440.84 64 432 64z" />
+    <glyph glyph-name="street-view"
+      unicode="&#xF21D;"
+      horiz-adv-x="512" d=" M367.9 118.24C363.28 112.94 358.12 108.14 352 104.59V81.65C418.52 72.3100000000001 464 53.6 464 32.0000000000001C464 1.0700000000001 370.88 -23.9999999999999 256 -23.9999999999999S48 1.07 48 32C48 53.6 93.48 72.3 160 81.65V104.59C153.88 108.14 148.72 112.94 144.1 118.24C58.87 102.66 0 69.95 0 32C0 -21.02 114.62 -64 256 -64S512 -21.02 512 32C512 69.95 453.13 102.66 367.9 118.24zM256 320C291.35 320 320 348.65 320 384S291.35 448 256 448S192 419.35 192 384S220.65 320 256 320zM192 128V32C192 14.33 206.33 0 224 0H288C305.67 0 320 14.33 320 32V128C337.67 128 352 142.33 352 160V256C352 282.51 330.51 304 304 304H292.2C281.13 298.9700000000001 268.94 296 256 296S230.87 298.9700000000001 219.8 304H208C181.49 304 160 282.51 160 256V160C160 142.33 174.33 128 192 128z" />
+    <glyph glyph-name="strikethrough"
+      unicode="&#xF0CC;"
+      horiz-adv-x="512" d=" M496 160H16C7.163 160 0 167.163 0 176V208C0 216.837 7.163 224 16 224H496C504.837 224 512 216.837 512 208V176C512 167.163 504.837 160 496 160zM281.334 144C308.592 131.063 327.858 115.317 327.858 87.757C327.858 54.649 298.8810000000001 34.081 252.237 34.081C219.912 34.081 175.363 46.161 175.363 78.352V80C175.363 88.837 168.1990000000001 96 159.363 96H113.75C104.914 96 97.75 88.837 97.75 80V60.796C97.75 -6.049 175.467 -41.024 252.237 -41.024C340.815 -41.024 414.25 4.414 414.25 93.4C414.25 113.215 410.632 129.817 404.107 144H281.334zM250.382 240C217.96 253.505 193.546 268.9460000000001 193.546 299.683C193.546 333.603 224.447 347.089 258.508 347.089C301.155 347.089 323.47 330.496 323.47 314.104V312C323.47 303.163 330.634 296 339.47 296H385.083C393.919 296 401.083 303.163 401.083 312V342.318C401.083 394.756 329.358 422.193 258.508 422.193C173.305 422.193 107.782 381.221 107.782 296.5470000000001C107.782 273.837 112.447 255.371 120.559 240H250.382z" />
+    <glyph glyph-name="stroopwafel"
+      unicode="&#xF551;"
+      horiz-adv-x="512" d=" M188.12 237.26L142.86 192L188.11 146.75L233.37 192L188.12 237.26zM301.25 259.88L256 305.14L210.75 259.89L256 214.63L301.25 259.88zM210.75 124.12L256 78.86L301.26 124.12L256 169.37L210.75 124.12zM256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM442.68 152.4L431.37 141.09C428.25 137.97 423.18 137.97 420.06 141.09L391.77 169.38L346.52 124.13L380.46 90.19L397.43 107.16C400.55 110.28 405.62 110.28 408.74 107.16L420.05 95.85C423.17 92.73 423.17 87.66 420.05 84.54L403.08 67.5699999999999L420.05 50.5999999999999C423.17 47.4799999999999 423.17 42.4099999999999 420.05 39.2899999999999L408.74 27.9799999999999C405.62 24.8599999999999 400.55 24.8599999999999 397.43 27.9799999999999L380.4599999999999 44.9499999999999L363.4899999999999 27.9799999999999C360.3699999999999 24.8599999999999 355.2999999999999 24.8599999999999 352.1799999999999 27.9799999999999L340.8699999999999 39.2899999999999C337.7499999999999 42.4099999999999 337.7499999999999 47.4799999999999 340.8699999999999 50.5999999999999L357.8399999999999 67.5699999999999L323.8999999999999 101.5099999999999L278.64 56.2499999999999L306.93 27.9599999999999C310.05 24.8399999999999 310.05 19.7699999999999 306.93 16.6499999999999L295.62 5.3399999999999C292.5 2.2199999999999 287.43 2.2199999999999 284.31 5.3399999999999L256 33.61L227.71 5.32C224.59 2.2 219.52 2.2 216.4 5.32L205.09 16.63C201.97 19.75 201.97 24.82 205.09 27.94L233.38 56.23L188.13 101.49L154.19 67.55L171.16 50.58C174.28 47.46 174.28 42.39 171.16 39.27L159.85 27.96C156.73 24.84 151.66 24.84 148.54 27.96L131.57 44.9300000000001L114.6 27.96C111.48 24.84 106.41 24.84 103.29 27.96L91.98 39.27C88.86 42.39 88.86 47.46 91.98 50.58L108.95 67.5500000000001L91.98 84.5200000000001C88.86 87.6400000000001 88.86 92.7100000000001 91.98 95.8300000000001L103.29 107.1400000000001C106.41 110.2600000000001 111.48 110.2600000000001 114.6 107.1400000000001L131.57 90.1700000000001L165.51 124.1100000000001L120.26 169.3600000000001L91.97 141.0700000000001C88.85 137.9500000000001 83.78 137.9500000000001 80.66 141.0700000000001L69.32 152.4C66.2 155.52 66.2 160.59 69.32 163.71L97.61 192L69.32 220.29C66.2 223.41 66.2 228.48 69.32 231.6L80.63 242.91C83.75 246.03 88.82 246.03 91.94 242.91L120.23 214.62L165.48 259.88L131.54 293.82L114.57 276.85C111.45 273.73 106.38 273.73 103.26 276.85L91.95 288.16C88.83 291.28 88.83 296.35 91.95 299.4700000000001L108.92 316.44L91.95 333.41C88.83 336.53 88.83 341.6 91.95 344.7200000000001L103.26 356.03C106.38 359.15 111.45 359.15 114.57 356.03L131.54 339.06L148.51 356.03C151.63 359.15 156.7 359.15 159.82 356.03L171.13 344.7200000000001C174.25 341.6 174.25 336.53 171.13 333.41L154.16 316.44L188.1 282.5L233.36 327.75L205.07 356.04C201.95 359.16 201.95 364.23 205.07 367.35L216.38 378.66C219.5 381.78 224.57 381.78 227.69 378.66L256 350.39L284.29 378.68C287.4100000000001 381.8 292.48 381.8 295.6 378.68L306.9100000000001 367.37C310.0300000000001 364.25 310.0300000000001 359.18 306.9100000000001 356.06L278.62 327.77L323.88 282.52L357.82 316.4600000000001L340.85 333.43C337.73 336.55 337.73 341.62 340.85 344.74L352.1600000000001 356.05C355.2800000000001 359.17 360.35 359.17 363.4700000000001 356.05L380.4400000000001 339.0800000000001L397.4100000000001 356.05C400.5300000000001 359.17 405.6000000000001 359.17 408.7200000000001 356.05L420.0300000000001 344.74C423.1500000000001 341.62 423.1500000000001 336.55 420.0300000000001 333.43L403.0600000000001 316.4600000000001L420.0300000000001 299.49C423.1500000000001 296.37 423.1500000000001 291.3 420.0300000000001 288.18L408.7200000000001 276.87C405.6000000000001 273.75 400.5300000000001 273.75 397.4100000000001 276.87L380.4400000000001 293.8400000000001L346.5000000000001 259.9L391.7500000000001 214.64L420.0400000000001 242.93C423.1600000000001 246.05 428.2300000000001 246.05 431.3500000000001 242.93L442.6600000000001 231.62C445.7800000000001 228.5 445.7800000000001 223.43 442.6600000000001 220.31L414.39 192L442.68 163.72A8.015 8.015 0 0 0 442.68 152.4zM278.63 192L323.89 146.75L369.14 192L323.89 237.26L278.63 192z" />
+    <glyph glyph-name="subscript"
+      unicode="&#xF12C;"
+      horiz-adv-x="512" d=" M395.198 32C398.659 42.526 413.994 53.28 431.463 64.425C448.088 75.03 466.9299999999999 87.051 481.804 103.287C499.2619999999999 122.341 507.748 143.4620000000001 507.748 167.8540000000001C507.748 228.4160000000001 457.046 256.0000000000001 409.938 256.0000000000001C367.447 256.0000000000001 333.56 233.9840000000001 315.506 205.5530000000001C310.852 198.2240000000001 312.914 188.5170000000001 320.129 183.6880000000001L350.457 163.3920000000001C357.4889999999999 158.686 366.9169999999999 160.3080000000001 372.087 167.006C380.1089999999999 177.4 390.9049999999999 185.2310000000001 403.7539999999999 185.2310000000001C423.1409999999999 185.2310000000001 430.0199999999999 172.3300000000001 430.0199999999999 161.2830000000001C430.0199999999999 125.1240000000001 310.5829999999999 104.2600000000001 310.5829999999999 1.2590000000001C310.5829999999999 -5.3949999999999 311.1439999999999 -11.7549999999999 311.998 -18.0719999999999C313.074 -26.0359999999999 319.832 -31.9999999999999 327.868 -31.9999999999999H496C504.837 -31.9999999999999 512 -24.8369999999999 512 -15.9999999999999V16.0000000000001C512 24.837 504.837 32.0000000000001 496 32.0000000000001H395.198zM272 192C280.837 192 288 184.837 288 176V144C288 135.163 280.837 128 272 128H209.601A16 16 0 0 0 196.06 135.478L150.359 208.093C148.062 211.445 145.937 215.062 144.164 218.302C142.514 215.058 140.517 211.365 138.29 207.72L93.578 135.573A15.999 15.999 0 0 0 79.978 128.001H16C7.163 128.001 0 135.1640000000001 0 144.001V176.001C0 184.838 7.163 192.001 16 192.001H42.325L98.877 274.7100000000001L46.111 352H16C7.163 352 0 359.163 0 368V400C0 408.837 7.163 416 16 416H84.806A16 16 0 0 0 98.451 408.356L138.333 343.23C140.405 339.707 142.386 336.059 144.06 332.86C145.837 336.104 147.98 339.814 150.297 343.397L190.629 408.432A15.999 15.999 0 0 0 204.226 416H272C280.837 416 288 408.837 288 400V368C288 359.163 280.837 352 272 352H244.021L191.331 276.329L249.974 192H272z" />
+    <glyph glyph-name="subway"
+      unicode="&#xF239;"
+      horiz-adv-x="448" d=" M448 352V96C448 44.185 386.376 0 317.978 0L380.9580000000001 -49.721C386.905 -54.417 383.562 -64 376 -64H72C64.422 -64 61.108 -54.406 67.043 -49.721L130.022 0C61.82 0 0 44.046 0 96V352C0 405.019 64 448 128 448H320C385 448 448 405.019 448 352zM200 216V328C200 341.255 189.255 352 176 352H72C58.745 352 48 341.255 48 328V216C48 202.745 58.745 192 72 192H176C189.255 192 200 202.745 200 216zM400 216V328C400 341.255 389.255 352 376 352H272C258.745 352 248 341.255 248 328V216C248 202.745 258.745 192 272 192H376C389.255 192 400 202.745 400 216zM352 160C325.49 160 304 138.51 304 112S325.49 64 352 64S400 85.49 400 112S378.51 160 352 160zM96 160C69.49 160 48 138.51 48 112S69.49 64 96 64S144 85.49 144 112S122.51 160 96 160z" />
+    <glyph glyph-name="suitcase-rolling"
+      unicode="&#xF5C1;"
+      horiz-adv-x="384" d=" M336 288H48C21.49 288 0 266.51 0 240V16C0 -10.51 21.49 -32 48 -32H64V-48C64 -56.84 71.16 -64 80 -64H112C120.84 -64 128 -56.84 128 -48V-32H256V-48C256 -56.84 263.1600000000001 -64 272 -64H304C312.84 -64 320 -56.84 320 -48V-32H336C362.51 -32 384 -10.51 384 16V240C384 266.51 362.51 288 336 288zM320 72C320 67.58 316.42 64 312 64H72C67.58 64 64 67.58 64 72V88C64 92.42 67.58 96 72 96H312C316.42 96 320 92.42 320 88V72zM320 168C320 163.58 316.42 160 312 160H72C67.58 160 64 163.58 64 168V184C64 188.42 67.58 192 72 192H312C316.42 192 320 188.42 320 184V168zM144 400H240V320H288V400C288 426.51 266.51 448 240 448H144C117.49 448 96 426.51 96 400V320H144V400z" />
+    <glyph glyph-name="suitcase"
+      unicode="&#xF0F2;"
+      horiz-adv-x="512" d=" M128 -32H384V368C384 394.5 362.5 416 336 416H176C149.5 416 128 394.5 128 368V-32zM192 352H320V320H192V352zM512 272V16C512 -10.5 490.5 -32 464 -32H416V320H464C490.5 320 512 298.5 512 272zM96 -32H48C21.5 -32 0 -10.5 0 16V272C0 298.5 21.5 320 48 320H96V-32z" />
+    <glyph glyph-name="sun-cloud"
+      unicode="&#xF763;"
+      horiz-adv-x="640" d=" M576 224C564 224 552.9 220.5 543.3 214.8C539.8 255.8 505.9 288 463.9999999999999 288C425.2 288 392.9 260.4 385.5999999999999 223.8C385.0999999999999 223.8 384.5999999999999 224 383.9999999999999 224C348.6999999999999 224 319.9999999999999 195.3 319.9999999999999 160S348.6999999999999 96 383.9999999999999 96H575.9999999999999C611.2999999999998 96 639.9999999999999 124.7 639.9999999999999 160S611.2999999999998 224 575.9999999999999 224zM429.4 64H384C361.8 64 341.6 71.9 325.4 84.5C275.8 52.5 208.9 58.1 165.5 101.4C115.6 151.3 115.6 232.5 165.5 282.4S296.6 332.3 346.5 282.4C353.7 275.2 359.5 267.3 364.6 259C377.8 284.5 400.2000000000001 304 427.2000000000001 313.5L441.1 355.2C445.6 368.8 432.7000000000001 381.7 419.2000000000001 377.1L318.8000000000001 343.6L271.5000000000001 438.4C265.1000000000001 451.2 246.9000000000001 451.2 240.5000000000001 438.4L193.2000000000001 343.7L92.7 377.2C79.1 381.7 66.2 368.8 70.8 355.3L104.3 254.9L9.6 207.5C-3.2 201.1 -3.2 182.9 9.6 176.5L104.3 129.2L70.8 28.7C66.3 15.1 79.2 2.2 92.7 6.8L193.1 40.3L240.4000000000001 -54.4C246.8000000000001 -67.1999999999999 265.0000000000001 -67.1999999999999 271.4000000000001 -54.4L318.7000000000001 40.3L419.1 6.8C432.7000000000001 2.3 445.6 15.2 441 28.7L429.4 64zM336.9 243.3C319.8 270.1 290 288 256 288C203.1 288 160 244.9 160 192S203.1 96 256 96C273.2 96 289.1 100.9 303.1 108.8C293.7000000000001 123.6 288 141.1 288 160C288 195.8 307.8 226.8 336.9 243.3z" />
+    <glyph glyph-name="sun-dust"
+      unicode="&#xF764;"
+      horiz-adv-x="512" d=" M256 288C203.1 288 160 244.9 160 192C160 165.5 170.8 141.5 188.1 124.2L323.8 259.9C306.5 277.2 282.5 288 256 288zM419.3 377.2L318.9 343.7L271.5 438.4C265.1 451.2 246.9 451.2 240.5 438.4L193.2 343.7L92.7 377.2C79.1 381.7 66.2 368.8 70.8 355.3L104.3 254.9L9.6 207.5C-3.2 201.1 -3.2 182.9 9.6 176.5L104.3 129.2L70.8 28.7C68.5 21.9 70.6 15.3 75 11L165.5 101.5C115.6 151.4 115.6 232.6 165.5 282.5S296.6 332.4 346.5 282.5L437 373C432.7 377.4 426.1 379.5 419.3 377.2zM160 0C142.3 0 128 -14.3 128 -32S142.3 -64 160 -64S192 -49.7 192 -32S177.7 0 160 0zM480 256C497.7 256 512 270.3 512 288S497.7 320 480 320S448 305.7 448 288S462.3 256 480 256zM384 160C384 177.7 369.7 192 352 192S320 177.7 320 160S334.3 128 352 128S384 142.3 384 160zM240 96C222.3 96 208 81.7 208 64S222.3 32 240 32S272 46.3 272 64S257.7 96 240 96zM400 96C382.3 96 368 81.7 368 64S382.3 32 400 32S432 46.3 432 64S417.7 96 400 96zM480 0C462.3 0 448 -14.3 448 -32S462.3 -64 480 -64S512 -49.7 512 -32S497.7 0 480 0zM480 192C462.3 192 448 177.7 448 160S462.3 128 480 128S512 142.3 512 160S497.7 192 480 192zM320 0C302.3 0 288 -14.3 288 -32S302.3 -64 320 -64S352 -49.7 352 -32S337.7 0 320 0z" />
+    <glyph glyph-name="sun-haze"
+      unicode="&#xF765;"
+      horiz-adv-x="640" d=" M193.6 208C197 235.2 208.6 261.6 229.5 282.5C279.4 332.4 360.6 332.4 410.5 282.5C431.4 261.6 443 235.2 446.4 208H565.4L471.7 254.9L505.2 355.3C509.7 368.9 496.8 381.8 483.3 377.2000000000001L382.9 343.7000000000001L335.5 438.4000000000001C329.1 451.2 310.9 451.2 304.5 438.4000000000001L257.2 343.7000000000001L156.7 377.2000000000001C143.1 381.7000000000001 130.2 368.8 134.8 355.3L168.3 254.9L74.6 208H193.6zM320 288C272.5 288 233.3 253.3 225.6 208H414.4C406.7 253.3 367.5 288 320 288zM80 112H416C424.8 112 432 119.2 432 128V144C432 152.8 424.8 160 416 160H80C71.2 160 64 152.8 64 144V128C64 119.2 71.2 112 80 112zM624 160H496C487.2 160 480 152.8 480 144V128C480 119.2 487.2 112 496 112H624C632.8 112 640 119.2 640 128V144C640 152.8 632.8 160 624 160zM208 -16H80C71.2 -16 64 -23.2 64 -32V-48C64 -56.8 71.2 -64 80 -64H208C216.8 -64 224 -56.8 224 -48V-32C224 -23.2 216.8 -16 208 -16zM624 -16H288C279.2 -16 272 -23.2 272 -32V-48C272 -56.8 279.2 -64 288 -64H624C632.8 -64 640 -56.8 640 -48V-32C640 -23.2 632.8 -16 624 -16zM576 40V56C576 64.8 568.8 72 560 72H16C7.2 72 0 64.8 0 56V40C0 31.2 7.2 24 16 24H560C568.8 24 576 31.2 576 40z" />
+    <glyph glyph-name="sun"
+      unicode="&#xF185;"
+      horiz-adv-x="512" d=" M256 288C203.1 288 160 244.9 160 192S203.1 96 256 96S352 139.1 352 192S308.9 288 256 288zM502.4 207.5L407.7 254.8L441.2 355.2000000000001C445.7 368.8 432.8 381.7000000000001 419.3 377.1L318.9 343.6L271.5 438.4000000000001C265.1 451.2 246.9 451.2 240.5 438.4000000000001L193.2 343.7000000000001L92.7 377.2C79.1 381.7 66.2 368.8 70.8 355.3L104.3 254.9L9.6 207.5C-3.2 201.1 -3.2 182.9 9.6 176.5L104.3 129.2L70.8 28.7C66.3 15.1 79.2 2.2 92.7 6.8L193.1 40.3L240.4000000000001 -54.4C246.8000000000001 -67.1999999999999 265.0000000000001 -67.1999999999999 271.4000000000001 -54.4L318.7000000000001 40.3L419.1 6.8C432.7000000000001 2.3 445.6 15.2 441 28.7L407.5 129.1L502.2 176.4C515.2 182.9 515.2 201.1 502.4 207.5zM346.5 101.5C296.6 51.6 215.4 51.6 165.5 101.5C115.6 151.4 115.6 232.6 165.5 282.5C215.4 332.4 296.6 332.4 346.5 282.5C396.4 232.6 396.4 151.4 346.5 101.5z" />
+    <glyph glyph-name="sunrise"
+      unicode="&#xF766;"
+      horiz-adv-x="576" d=" M250.9 73.5C230.3 65 214.6 50 204.3 32H371.5C347.7 73.6 296.4 92.3 250.9 73.5zM80.7 32H168.3C168.5 32.5 168.5 33 168.7 33.4C196 99.2 271.6 130.6 337.4 103.3C370.8 89.4999999999999 395.2 63.1 407.7 31.9999999999999H495.3L523.6999999999999 64.6999999999999C533.0999999999999 75.5999999999999 526.0999999999999 92.5999999999999 511.6999999999999 93.5999999999999L405.2 101.1999999999999L397.5999999999999 207.6999999999999C396.5999999999999 222.0999999999999 379.5999999999999 229.1 368.7 219.6999999999999L288 149.6999999999999L207.3 219.6999999999999C196.4 229.1 179.4 222.0999999999999 178.4 207.6999999999999L170.8 101.1999999999999L64.3 93.5999999999999C49.9 92.5999999999999 42.9 75.5999999999999 52.3 64.6999999999999L80.7 32zM560 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM190.8 320H256V240C256 231.2 263.2 224 272 224H304C312.8 224 320 231.2 320 240V320H385.2C399.5 320 406.6 337.3 396.4 347.4L300 443C293.4 449.6 282.6 449.6 276 443L179.6 347.3C169.4 337.3 176.6 320 190.8 320z" />
+    <glyph glyph-name="sunset"
+      unicode="&#xF767;"
+      horiz-adv-x="576" d=" M250.9 73.5C230.3 65 214.6 50 204.3 32H371.5C347.7 73.6 296.4 92.3 250.9 73.5zM80.7 32H168.3C168.5 32.5 168.5 33 168.7 33.4C196 99.2 271.6 130.6 337.4 103.3C370.8 89.4999999999999 395.2 63.1 407.7 31.9999999999999H495.3L523.6999999999999 64.6999999999999C533.0999999999999 75.5999999999999 526.0999999999999 92.5999999999999 511.6999999999999 93.5999999999999L405.2 101.1999999999999L397.5999999999999 207.6999999999999C396.5999999999999 222.0999999999999 379.5999999999999 229.1 368.7 219.6999999999999L288 149.6999999999999L207.3 219.6999999999999C196.4 229.1 179.4 222.0999999999999 178.4 207.6999999999999L170.8 101.1999999999999L64.3 93.5999999999999C49.9 92.5999999999999 42.9 75.5999999999999 52.3 64.6999999999999L80.7 32zM560 -16H16C7.2 -16 0 -23.2 0 -32V-48C0 -56.8 7.2 -64 16 -64H560C568.8 -64 576 -56.8 576 -48V-32C576 -23.2 568.8 -16 560 -16zM276 229C282.6 222.4 293.4 222.4 300 229L396.4 324.7C406.5 334.8 399.4 352.1 385.1 352.1H320V432C320 440.8 312.8 448 304 448H272C263.2 448 256 440.8 256 432V352H190.8C176.5 352 169.4 334.7 179.6 324.6L276 229z" />
+    <glyph glyph-name="superscript"
+      unicode="&#xF12B;"
+      horiz-adv-x="512" d=" M395.198 192C398.659 202.526 413.994 213.28 431.463 224.425C448.088 235.03 466.9299999999999 247.051 481.804 263.2870000000001C499.2619999999999 282.341 507.748 303.462 507.748 327.854C507.748 388.416 457.046 416 409.938 416C367.447 416 333.56 393.984 315.506 365.553C310.852 358.224 312.914 348.517 320.129 343.688L350.457 323.392C357.4889999999999 318.6860000000001 366.9169999999999 320.308 372.087 327.006C380.1089999999999 337.4 390.9049999999999 345.231 403.7539999999999 345.231C423.1409999999999 345.231 430.0199999999999 332.33 430.0199999999999 321.283C430.0199999999999 285.124 310.5829999999999 264.26 310.5829999999999 161.259C310.5829999999999 154.605 311.1439999999999 148.245 311.998 141.928C313.074 133.964 319.832 128 327.868 128H496C504.837 128 512 135.163 512 144V176C512 184.837 504.837 192 496 192H395.198zM272 32C280.837 32 288 24.837 288 16V-16C288 -24.837 280.837 -32 272 -32H209.601A16 16 0 0 0 196.06 -24.522L150.359 48.093C148.062 51.445 145.937 55.062 144.164 58.302C142.514 55.058 140.517 51.365 138.29 47.72L93.578 -24.427A15.999 15.999 0 0 0 79.978 -31.999H16C7.163 -31.999 0 -24.836 0 -15.999V16.001C0 24.838 7.163 32.001 16 32.001H42.325L98.877 114.71L46.111 192H16C7.163 192 0 199.163 0 208V240C0 248.837 7.163 256 16 256H84.806A16 16 0 0 0 98.451 248.356L138.333 183.23C140.405 179.707 142.386 176.059 144.06 172.86C145.837 176.1040000000001 147.98 179.814 150.297 183.397L190.629 248.432A16 16 0 0 0 204.227 255.999H272C280.837 255.999 288 248.836 288 239.999V207.999C288 199.162 280.837 191.999 272 191.999H244.021L191.331 116.328L249.974 32H272z" />
+    <glyph glyph-name="surprise"
+      unicode="&#xF5C2;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM136 240C136 257.7 150.3 272 168 272S200 257.7 200 240S185.7 208 168 208S136 222.3 136 240zM248 32C212.7 32 184 60.7 184 96S212.7 160 248 160S312 131.3 312 96S283.3 32 248 32zM328 208C310.3 208 296 222.3 296 240S310.3 272 328 272S360 257.7 360 240S345.7 208 328 208z" />
+    <glyph glyph-name="swatchbook"
+      unicode="&#xF5C3;"
+      horiz-adv-x="511" d=" M479.06 128H372.29L186.15 -58.51C184.09 -60.58 181.66 -62.09 179.48 -64H479.06C496.7 -64 511 -49.67 511 -32V96C511 113.67 496.7 128 479.06 128zM434.56 280.9L344.23 371.4100000000001C331.76 383.9100000000001 311.54 383.9100000000001 299.06 371.4100000000001L223.56 295.76V32C223.56 29.04 222.89 26.27 222.69 23.36L434.56 235.64C447.0300000000001 248.14 447.0300000000001 268.4100000000001 434.56 280.9zM191.62 416C191.62 433.67 177.32 448 159.68 448H31.94C14.3 448 0 433.67 0 416V32C0 -21.02 42.9 -64 95.81 -64S191.62 -21.02 191.62 32V416zM95.81 8C82.58 8 71.86 18.75 71.86 32C71.86 45.26 82.59 56 95.81 56S119.76 45.26 119.76 32C119.77 18.75 109.04 8 95.81 8zM127.75 192H63.88V256H127.76V192zM127.75 320H63.88V384H127.76V320z" />
+    <glyph glyph-name="swimmer"
+      unicode="&#xF5C4;"
+      horiz-adv-x="640" d=" M189.61 137.42C193.15 134.16 204.88 128 224 128S254.86 134.16 258.39 137.42C274.41 152.19 292.89 160 311.85 160H328.15C347.11 160 365.6 152.19 381.61 137.42C385.15 134.16 396.88 128 416 128S446.86 134.16 450.3899999999999 137.42C465.2499999999999 151.13 482.2699999999999 158.54 499.7799999999999 159.5800000000001L386.94 240.1800000000001L404.94 253.04C408.58 255.6200000000001 413.2199999999999 256.5600000000001 417.56 255.6500000000001L517.91 234.1200000000001C543.8199999999999 228.5900000000001 569.3499999999999 245.0900000000001 574.91 271C580.4599999999999 296.92 563.9599999999999 322.4400000000001 538.03 328L437.68 349.53C406.95 356.11 374.6600000000001 349.41 349.12 331.15L269.1 273.98C258.7200000000001 266.5900000000001 249.74 257.54 242.38 247.04L173.75 149C179.22 145.77 184.57 142.07 189.61 137.42zM624 96H608C581.96 96 562.2 104.42 551.91 113.9C543.01 122.11 532.25 128 520.14 128H503.84C491.73 128 480.97 122.11 472.07 113.9C461.8 104.42 442.04 96 416 96S370.2 104.42 359.91 113.9C351.01 122.11 340.25 128 328.14 128H311.84C299.73 128 288.97 122.11 280.07 113.9C269.8 104.42 250.04 96 224 96S178.2 104.42 167.91 113.9C159.01 122.11 148.25 128 136.14 128H119.84C107.73 128 96.97 122.11 88.07 113.9C77.8 104.42 58.04 96 32 96H16C7.16 96 0 88.84 0 80V48C0 39.16 7.16 32 16 32H32C70.62 32 104.72 44.19 128 63.84C151.28 44.18 185.38 32 224 32S296.7200000000001 44.19 320 63.84C343.28 44.18 377.38 32 416 32S488.72 44.19 512 63.84C535.28 44.18 569.38 32 608 32H624C632.84 32 640 39.16 640 48V80C640 88.84 632.84 96 624 96zM112 192C156.18 192 192 227.82 192 272S156.18 352 112 352S32 316.18 32 272S67.82 192 112 192z" />
+    <glyph glyph-name="swimming-pool"
+      unicode="&#xF5C5;"
+      horiz-adv-x="640" d=" M624 32H608C581.96 32 562.2 40.42 551.91 49.9C543.01 58.11 532.25 64 520.14 64H503.84C491.73 64 480.97 58.11 472.07 49.9C461.8 40.42 442.04 32 416 32S370.2 40.42 359.91 49.9C351.01 58.11 340.25 64 328.14 64H311.84C299.73 64 288.97 58.11 280.07 49.9C269.8 40.42 250.04 32 224 32S178.2 40.42 167.91 49.9C159.01 58.11 148.25 64 136.14 64H119.84C107.73 64 96.97 58.11 88.07 49.9C77.8 40.42 58.04 32 32 32H16C7.16 32 0 24.84 0 16V-16C0 -24.84 7.16 -32 16 -32H32C70.62 -32 104.72 -19.81 128 -0.16C151.28 -19.82 185.38 -32 224 -32S296.7200000000001 -19.81 320 -0.16C343.28 -19.82 377.38 -32 416 -32S488.72 -19.81 512 -0.16C535.28 -19.82 569.38 -32 608 -32H624C632.84 -32 640 -24.84 640 -16V16C640 24.84 632.84 32 624 32zM224 64V160H416V64C435.12 64 446.86 70.16 450.39 73.42C459.56 81.88 469.59 87.76 480 91.49V320C480 337.64 494.36 352 512 352S544 337.64 544 320V304C544 295.16 551.16 288 560 288H592C600.84 288 608 295.16 608 304V320C608 372.94 564.94 416 512 416S416 372.94 416 320V224H224V320C224 337.64 238.36 352 256 352S288 337.64 288 320V304C288 295.16 295.1600000000001 288 304 288H336C344.84 288 352 295.16 352 304V320C352 372.94 308.94 416 256 416S160 372.94 160 320V91.5C170.41 87.77 180.44 81.88 189.61 73.43C193.14 70.16 204.88 64 224 64z" />
+    <glyph glyph-name="sword"
+      unicode="&#xF71C;"
+      horiz-adv-x="512" d=" M110.11 220.41C103.86 226.66 93.73 226.66 87.48 220.41L68.69 201.61A16.005 16.005 0 0 1 66.69 181.42L120.08 101.3299999999999L66.65 47.8999999999999L37.39 62.5299999999999A13.901999999999997 13.901999999999997 0 0 1 21.35 59.9299999999999L4.07 42.64C-1.35 37.21 -1.35 28.42 4.07 23L87 -59.93C92.42 -65.35 101.22 -65.35 106.64 -59.93L123.93 -42.64A13.873000000000001 13.873000000000001 0 0 1 126.53 -26.61L111.9 2.65L165.33 56.08L245.42 2.69C251.77 -1.54 260.2200000000001 -0.7 265.61 4.69L284.4100000000001 23.48C290.6600000000001 29.73 290.6600000000001 39.86 284.4100000000001 46.11L110.11 220.41zM493.73 447.84L400 432L171.89 203.89L267.89 107.89L496 336L511.83 429.73C513.34 440.29 504.29 449.3400000000001 493.73 447.8400000000001z" />
+    <glyph glyph-name="swords"
+      unicode="&#xF71D;"
+      horiz-adv-x="512" d=" M309.37 58.62L389.37 138.62L93.33 434.67L15.22 447.86C6.42 449.12 -1.12 441.58 0.14 432.78L13.34 354.67L309.37 58.62zM507.31 -14.06L448 45.25L479.64 104.28C482.97 110.5 481.84 118.16 476.85 123.15L459.3099999999999 140.68C453.0599999999999 146.93 442.93 146.93 436.68 140.68L307.31 11.31C301.06 5.06 301.06 -5.07 307.31 -11.31L324.8400000000001 -28.85A16 16 0 0 1 343.7100000000001 -31.64L402.75 0L462.06 -59.31C468.31 -65.5599999999999 478.44 -65.5599999999999 484.69 -59.31L507.31 -36.69C513.56 -30.44 513.56 -20.31 507.31 -14.06zM498.67 354.67L511.87 432.7800000000001C513.13 441.5800000000001 505.58 449.12 496.79 447.86L418.68 434.6600000000001L278.63 294.63L358.63 214.63L498.67 354.67zM153.37 169.37L100 116L75.31 140.69C69.06 146.94 58.93 146.94 52.69 140.69L35.15 123.16A15.998 15.998 0 0 1 32.36 104.29L64 45.25L4.69 -14.06C-1.56 -20.31 -1.56 -30.44 4.69 -36.69L27.31 -59.31C33.56 -65.5599999999999 43.69 -65.5599999999999 49.94 -59.31L109.25 0L168.28 -31.64C174.5 -34.97 182.16 -33.84 187.15 -28.85L204.68 -11.3099999999999C210.93 -5.0599999999999 210.93 5.0700000000001 204.68 11.3100000000001L180 36L233.37 89.37L153.37 169.37z" />
+    <glyph glyph-name="synagogue"
+      unicode="&#xF69B;"
+      horiz-adv-x="640" d=" M70 251.49L6.67 179.71A26.643000000000004 26.643000000000004 0 0 1 0 162.07V-64H128V208.42L90 251.49C84.69 257.5 75.31 257.5 70 251.49zM633.33 179.71L570 251.49C564.69 257.51 555.31 257.51 550 251.49L512 208.42V-64H640V162.07C640 168.57 637.63 174.84 633.33 179.71zM339.99 440.99C328.3 450.34 311.7 450.34 300.01 440.99L172.01 338.59A32.005 32.005 0 0 1 160 313.6V-64H256V28.57C256 60.45 277.78 90 309.25 95.12C349.34 101.65 384 70.87 384 32V-64H480V313.6C480 323.32 475.58 332.52 467.99 338.59L339.99 440.99zM392.06 225.44C394.04 222.29 391.77 218.2 388.06 218.2H349.12L324 178.21C322.15 175.26 317.85 175.26 316 178.21L290.88 218.19H251.94C248.22 218.19 245.96 222.28 247.94 225.43L267.14 255.99L247.94 286.55C245.96 289.7 248.23 293.79 251.94 293.79H290.88L316 333.79C317.85 336.74 322.15 336.74 324 333.79L349.12 293.81H388.07C391.78 293.81 394.05 289.7200000000001 392.07 286.57L372.87 256L392.06 225.44z" />
+    <glyph glyph-name="sync-alt"
+      unicode="&#xF2F1;"
+      horiz-adv-x="512" d=" M370.7200000000001 314.7200000000001C339.4580000000001 343.992 298.888 360.038 255.848 360C178.39 359.932 111.52 306.822 93.057 233.15C91.713 227.787 86.935 224 81.406 224H24.103C16.605 224 10.909 230.807 12.296 238.176C33.933 353.076 134.813 440 256 440C322.448 440 382.791 413.8640000000001 427.315 371.315L463.03 407.03C478.149 422.149 504 411.4410000000001 504 390.059V256C504 242.745 493.255 232 480 232H345.941C324.559 232 313.851 257.851 328.97 272.971L370.72 314.7200000000001zM32 152H166.059C187.441 152 198.149 126.149 183.03 111.029L141.28 69.279C172.542 40.006 213.115 23.96 256.156 23.999C333.574 24.069 400.471 77.143 418.943 150.848C420.287 156.211 425.065 159.998 430.594 159.998H487.898C495.396 159.998 501.092 153.191 499.705 145.822C478.067 30.924 377.187 -56 256 -56C189.552 -56 129.209 -29.864 84.685 12.685L48.97 -23.03C33.851 -38.149 8 -27.441 8 -6.059V128C8 141.255 18.745 152 32 152z" />
+    <glyph glyph-name="sync"
+      unicode="&#xF021;"
+      horiz-adv-x="512.333" d=" M440.935 435.426L444.901 352.66C399.416 406.096 331.674 440 256 440C134.813 440 33.933 353.076 12.296 238.176C10.908 230.807 16.604 224 24.103 224H73.187C78.757 224 83.564 227.842 84.863 233.259C103.407 310.592 172.931 368 256 368C316.8930000000001 368 370.512 337.144 402.1040000000001 290.199L300.5740000000001 295.064C293.7290000000001 295.3920000000001 288.0000000000001 289.9310000000001 288.0000000000001 283.0780000000001V235.6670000000001C288.0000000000001 229.04 293.3730000000001 223.667 300.0000000000001 223.667H500.3330000000001C506.9600000000001 223.667 512.3330000000001 229.04 512.3330000000001 235.6670000000001V436C512.3330000000001 442.627 506.9600000000001 448 500.3330000000001 448H452.9220000000001C446.0690000000001 448 440.6070000000001 442.271 440.9350000000001 435.426zM256 16C195.105 16 141.483 46.858 109.891 93.805L211.759 88.934C218.604 88.607 224.332 94.068 224.332 100.92V148.332C224.332 154.959 218.959 160.332 212.332 160.332H12C5.373 160.332 0 154.959 0 148.332V-52C0 -58.627 5.373 -64 12 -64H59.385C66.248 -64 71.713 -58.255 71.37 -51.401L67.241 31.174C112.725 -22.166 180.405 -56 256 -56C377.187 -56 478.067 30.924 499.704 145.824C501.092 153.193 495.396 160 487.897 160H438.813C433.243 160 428.436 156.158 427.137 150.741C408.593 73.408 339.069 16 256 16z" />
+    <glyph glyph-name="syringe"
+      unicode="&#xF48E;"
+      horiz-adv-x="512" d=" M201.5 273.2L257.2 217.4C260.3 214.3 260.3 209.2 257.2 206.1L245.9 194.8C242.8 191.6999999999999 237.7 191.6999999999999 234.6 194.8L178.9 250.6L133.6 205.3L189.4 149.5C192.5 146.3999999999999 192.5 141.3 189.4 138.1999999999999L178.1 126.8999999999999C175 123.7999999999999 169.9 123.7999999999999 166.8 126.8999999999999L111 182.8L84.6 156.4C67.3 139.1 59 115.3 61.6 91L68.7 27.4L2.3 -39C-0.8 -42.1 -0.8 -47.2 2.3 -50.3L13.6 -61.6C16.7 -64.7 21.8 -64.7 24.9 -61.6L91.2 4.7L154.8 -2.4C178.7 -5.0000000000001 202.7 2.9999999999999 220.2 20.6L402.1 202.5L266.4000000000001 338.2L201.5 273.2zM509.7 366.5L430.5 445.7C427.4 448.8 422.3 448.8 419.2 445.7L407.9 434.4C404.8 431.3 404.8 426.2 407.9 423.1L436.2 394.8L390.9 349.5L334.3 406.1L317.3 423.1C314.2 426.2 309.1 426.2 306 423.1L272.1 389.2C269 386.1 269 381 272.1 377.9L289.1 360.9L424.8 225L441.8 208C444.9000000000001 204.9 450 204.9 453.1 208L487 242C490.1 245.1 490.1 250.2 487 253.3L413.5 326.8L458.8 372.1L487.1 343.8C490.2 340.7000000000001 495.3 340.7000000000001 498.4 343.8L509.7 355.1C512.8000000000001 358.3 512.8000000000001 363.3 509.7 366.5z" />
+    <glyph glyph-name="table-tennis"
+      unicode="&#xF45D;"
+      horiz-adv-x="512" d=" M496.2 151.5C527.7 229.3 512 321.8 449 384.9C365.1 469 229 469 145.1 384.9L89.1 328.8L300.6 117.3C346.7000000000001 179.4 432.1 194.7 496.2 151.5zM278.3 71.8L57.9 292.1C30.6 246.8 36.2 187.1 75.2 148L109.7 113.4L6.7 24C-1.9 16.5 -2.4 3.3 5.7 -4.8L59.1 -58.3C67.1 -66.4 80.3 -65.9 87.8 -57.3L177.1 46L212.8 10.3C232.5 -9.4 257.4000000000001 -20.2 283.1 -23C276 -6 272.1 12.6 272.1 32.1C272 45.9 274.6 59.1 278.3 71.8zM416 128C363 128 320 85 320 32S363 -64 416 -64S512 -21 512 32S469 128 416 128z" />
+    <glyph glyph-name="table"
+      unicode="&#xF0CE;"
+      horiz-adv-x="512" d=" M464 416H48C21.49 416 0 394.51 0 368V16C0 -10.51 21.49 -32 48 -32H464C490.51 -32 512 -10.51 512 16V368C512 394.51 490.51 416 464 416zM224 32H64V128H224V32zM224 192H64V288H224V192zM448 32H288V128H448V32zM448 192H288V288H448V192z" />
+    <glyph glyph-name="tablet-alt"
+      unicode="&#xF3FA;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM224 -32C206.3 -32 192 -17.7 192 0S206.3 32 224 32S256 17.7 256 0S241.7 -32 224 -32zM400 76C400 69.4 394.6 64 388 64H60C53.4 64 48 69.4 48 76V388C48 394.6 53.4 400 60 400H388C394.6 400 400 394.6 400 388V76z" />
+    <glyph glyph-name="tablet-android-alt"
+      unicode="&#xF3FC;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM288 -4C288 -10.6 282.6 -16 276 -16H172C165.4 -16 160 -10.6 160 -4V4C160 10.6 165.4 16 172 16H276C282.6 16 288 10.6 288 4V-4zM400 76C400 69.4 394.6 64 388 64H60C53.4 64 48 69.4 48 76V388C48 394.6 53.4 400 60 400H388C394.6 400 400 394.6 400 388V76z" />
+    <glyph glyph-name="tablet-android"
+      unicode="&#xF3FB;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM288 -4C288 -10.6 282.6 -16 276 -16H172C165.4 -16 160 -10.6 160 -4V4C160 10.6 165.4 16 172 16H276C282.6 16 288 10.6 288 4V-4z" />
+    <glyph glyph-name="tablet-rugged"
+      unicode="&#xF48F;"
+      horiz-adv-x="448" d=" M439.2 283.6C444.6 286.3 448 291.8 448 297.9V374.1C448 380.2 444.6 385.7 439.2 388.4L416 400C416 426.5 394.5 448 368 448H80C53.5 448 32 426.5 32 400L8.8 388.4C3.4 385.7 0 380.2 0 374.1V297.9C0 291.8 3.4 286.3 8.8 283.6L32 272V256L8.8 244.4C3.4 241.7 0 236.2 0 230.1V153.9C0 147.8 3.4 142.3 8.8 139.6L32 128V112L8.8 100.4C3.4 97.7 0 92.2 0 86.1V9.9C0 3.8 3.4 -1.7 8.8 -4.4L32 -16C32 -42.5 53.5 -64 80 -64H368C394.5 -64 416 -42.5 416 -16L439.2 -4.4C444.6 -1.7 448 3.8 448 9.9V86.1C448 92.2000000000001 444.6 97.7000000000001 439.2 100.4L416 112V128L439.2 139.6C444.6 142.3 448 147.8 448 153.9V230.1C448 236.2 444.6 241.7 439.2 244.4000000000001L416 256V272L439.2 283.6zM352 16C352 7.2 344.8 0 336 0H112C103.2 0 96 7.2 96 16V368C96 376.8 103.2 384 112 384H336C344.8 384 352 376.8 352 368V16z" />
+    <glyph glyph-name="tablet"
+      unicode="&#xF10A;"
+      horiz-adv-x="448" d=" M400 448H48C21.5 448 0 426.5 0 400V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V400C448 426.5 426.5 448 400 448zM224 -32C206.3 -32 192 -17.7 192 0S206.3 32 224 32S256 17.7 256 0S241.7 -32 224 -32z" />
+    <glyph glyph-name="tablets"
+      unicode="&#xF490;"
+      horiz-adv-x="640" d=" M160 256C78.9 256 12.5 197.5 0.1 121.3C-0.7 116.5 3.4 112 8.4 112H311.7C316.7 112 320.8 116.5 320 121.3C307.5 197.5 241.1 256 160 256zM311.6 80H8.4C3.4 80 -0.7 75.5 0.1 70.7C12.5 -5.5 78.9 -64 160 -64S307.5 -5.5 319.9 70.7C320.7 75.5 316.6 80 311.6 80zM593.4 401.4C536.9 457.9 449.2 462.8 386.5 417.4C382.5 414.5 382.2 408.5 385.7 405.1L597 193.7C600.5 190.2 606.5 190.5 609.3 194.5C654.8 257.2 649.9 344.9 593.4 401.4zM363 382.3C359.5 385.8 353.5 385.5 350.7 381.5C305.3 318.8 310.2 231.1 366.6 174.6C423.1 118.1 510.8 113.2000000000001 573.5 158.7000000000001C577.5 161.6 577.8 167.6 574.3 171.0000000000001L363 382.3z" />
+    <glyph glyph-name="tachometer-alt-average"
+      unicode="&#xF624;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM96 64C78.33 64 64 78.33 64 96S78.33 128 96 128S128 113.67 128 96S113.67 64 96 64zM144 224C126.33 224 112 238.33 112 256S126.33 288 144 288S176 273.67 176 256S161.67 224 144 224zM343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 90.85 240.56 113.75 264 123.25V320C264 333.25 274.75 344 288 344S312 333.25 312 320V123.25C335.44 113.75 352 90.84 352 64C352 52.28 348.62 41.45 343.12 32zM400 256C400 273.67 414.33 288 432 288S464 273.67 464 256S449.67 224 432 224S400 238.33 400 256zM480 64C462.33 64 448 78.33 448 96S462.33 128 480 128S512 113.67 512 96S497.67 64 480 64z" />
+    <glyph glyph-name="tachometer-alt-fast"
+      unicode="&#xF625;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM288 352C305.67 352 320 337.67 320 320S305.67 288 288 288S256 302.3300000000001 256 320S270.33 352 288 352zM96 64C78.33 64 64 78.33 64 96S78.33 128 96 128S128 113.67 128 96S113.67 64 96 64zM144 224C126.33 224 112 238.33 112 256S126.33 288 144 288S176 273.67 176 256S161.67 224 144 224zM343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 99.35 252.65 128 288 128C293.65 128 299.02 127.04 304.24 125.66L412.8 270.41C420.7800000000001 280.9700000000001 435.8 283.13 446.4100000000001 275.2100000000001C457 267.26 459.16 252.21 451.21 241.6L342.65 96.86C348.46 87.23 352 76.07 352 64C352 52.28 348.62 41.45 343.12 32zM480 64C462.33 64 448 78.33 448 96S462.33 128 480 128S512 113.67 512 96S497.67 64 480 64z" />
+    <glyph glyph-name="tachometer-alt-fastest"
+      unicode="&#xF626;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM432 288C449.67 288 464 273.67 464 256S449.67 224 432 224S400 238.33 400 256S414.33 288 432 288zM288 352C305.67 352 320 337.67 320 320S305.67 288 288 288S256 302.3300000000001 256 320S270.33 352 288 352zM96 64C78.33 64 64 78.33 64 96S78.33 128 96 128S128 113.67 128 96S113.67 64 96 64zM144 224C126.33 224 112 238.33 112 256S126.33 288 144 288S176 273.67 176 256S161.67 224 144 224zM483.95 72.33L350.02 50.0100000000001C348.51 43.64 346.33 37.53 343.12 32.0000000000001H232.88C227.38 41.45 224 52.2800000000001 224 64.0000000000001C224 99.3500000000001 252.65 128.0000000000001 288 128.0000000000001C311.06 128.0000000000001 331.1 115.6900000000001 342.37 97.39L476.05 119.6700000000001C489.14 121.8400000000001 501.5 113.0300000000001 503.67 99.9500000000001C505.86 86.8800000000001 497.02 74.5000000000001 483.95 72.33z" />
+    <glyph glyph-name="tachometer-alt-slow"
+      unicode="&#xF627;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM288 352C305.67 352 320 337.67 320 320S305.67 288 288 288S256 302.3300000000001 256 320S270.33 352 288 352zM96 64C78.33 64 64 78.33 64 96S78.33 128 96 128S128 113.67 128 96S113.67 64 96 64zM343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 76.07 227.54 87.23 233.35 96.86L124.8 241.59C116.85 252.2 119 267.25 129.6 275.2C140.24 283.12 155.26 280.9700000000001 163.21 270.4L271.77 125.66C276.98 127.03 282.36 128 288.01 128C323.36 128 352.01 99.35 352.01 63.9999999999999C352 52.2799999999999 348.62 41.4499999999999 343.12 31.9999999999999zM400 256C400 273.67 414.33 288 432 288S464 273.67 464 256S449.67 224 432 224S400 238.33 400 256zM480 64C462.33 64 448 78.33 448 96S462.33 128 480 128S512 113.67 512 96S497.67 64 480 64z" />
+    <glyph glyph-name="tachometer-alt-slowest"
+      unicode="&#xF628;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM288 352C305.67 352 320 337.67 320 320S305.67 288 288 288S256 302.3300000000001 256 320S270.33 352 288 352zM144 288C161.67 288 176 273.67 176 256S161.67 224 144 224S112 238.33 112 256S126.33 288 144 288zM343.12 32H232.88C229.67 37.52 227.49 43.63 225.98 50.01L92.05 72.33C78.99 74.5 70.14 86.88 72.33 99.95C74.5 113.03 86.86 121.84 99.95 119.67L233.63 97.39C244.9 115.69 264.94 128 288 128C323.35 128 352 99.35 352 64C352 52.28 348.62 41.45 343.12 32zM400 256C400 273.67 414.33 288 432 288S464 273.67 464 256S449.67 224 432 224S400 238.33 400 256zM480 64C462.33 64 448 78.33 448 96S462.33 128 480 128S512 113.67 512 96S497.67 64 480 64z" />
+    <glyph glyph-name="tachometer-alt"
+      unicode="&#xF3FD;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM288 352C302.71 352 314.58 341.87 318.32 328.35C317.21 326.09 315.68 324.12 314.87 321.68L305.65 294.01C300.52 290.52 294.68 288 288.01 288C270.34 288 256.01 302.3300000000001 256.01 320S270.33 352 288 352zM96 64C78.33 64 64 78.33 64 96S78.33 128 96 128S128 113.67 128 96S113.67 64 96 64zM144 224C126.33 224 112 238.33 112 256S126.33 288 144 288S176 273.67 176 256S161.67 224 144 224zM390.77 296.41L329.44 112.41C343.13 100.67 352 83.46 352 64C352 52.28 348.62 41.45 343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 97.94 250.5 125.43 283.9 127.59L345.24 311.6C349.4100000000001 324.1600000000001 362.9700000000001 331.05 375.6 326.7700000000001C388.17 322.5800000000001 394.9500000000001 308.98 390.7700000000001 296.4100000000001zM405.43 239.21L420.95 285.76C424.42 287.05 428.08 287.99 432 287.99C449.67 287.99 464 273.66 464 255.99S449.67 223.99 432 223.99C420.62 224 411.11 230.27 405.43 239.21zM480 64C462.33 64 448 78.33 448 96S462.33 128 480 128S512 113.67 512 96S497.67 64 480 64z" />
+    <glyph glyph-name="tachometer-average"
+      unicode="&#xF629;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 90.85 240.56 113.75 264 123.25V320C264 333.25 274.75 344 288 344S312 333.25 312 320V123.25C335.44 113.75 352 90.84 352 64C352 52.28 348.62 41.45 343.12 32z" />
+    <glyph glyph-name="tachometer-fast"
+      unicode="&#xF62A;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM451.2 241.59L342.65 96.86C348.46 87.23 352 76.07 352 64C352 52.28 348.62 41.45 343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 99.35 252.65 128 288 128C293.65 128 299.02 127.04 304.24 125.66L412.8 270.41C420.7800000000001 280.9700000000001 435.8 283.13 446.4100000000001 275.2100000000001C457 267.25 459.16 252.2 451.2 241.59z" />
+    <glyph glyph-name="tachometer-fastest"
+      unicode="&#xF62B;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM483.95 72.33L350.02 50.01C348.51 43.64 346.33 37.53 343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 99.35 252.65 128 288 128C311.06 128 331.1 115.69 342.37 97.39L476.05 119.67C489.14 121.84 501.5 113.03 503.67 99.9499999999999C505.86 86.8799999999999 497.02 74.4999999999999 483.95 72.3299999999999z" />
+    <glyph glyph-name="tachometer-slow"
+      unicode="&#xF62C;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 76.07 227.54 87.23 233.35 96.86L124.8 241.59C116.85 252.2 119 267.25 129.6 275.2C140.24 283.12 155.26 280.9700000000001 163.21 270.4L271.77 125.66C276.98 127.03 282.36 128 288.01 128C323.36 128 352.01 99.35 352.01 63.9999999999999C352 52.2799999999999 348.62 41.4499999999999 343.12 31.9999999999999z" />
+    <glyph glyph-name="tachometer-slowest"
+      unicode="&#xF62D;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM343.12 32H232.88C229.67 37.52 227.49 43.63 225.98 50.01L92.05 72.33C78.99 74.5 70.14 86.88 72.33 99.95C74.5 113.03 86.86 121.84 99.95 119.67L233.63 97.39C244.9 115.69 264.94 128 288 128C323.35 128 352 99.35 352 64C352 52.28 348.62 41.45 343.12 32z" />
+    <glyph glyph-name="tachometer"
+      unicode="&#xF0E4;"
+      horiz-adv-x="576" d=" M288 416C128.94 416 0 287.06 0 128C0 75.2 14.25 25.74 39.06 -16.8C44.67 -26.42 55.36 -32 66.5 -32H509.5C520.64 -32 531.33 -26.42 536.94 -16.8C561.75 25.74 576 75.2 576 128C576 287.06 447.06 416 288 416zM390.77 296.41L329.44 112.41C343.13 100.67 352 83.46 352 64C352 52.28 348.62 41.45 343.12 32H232.88C227.38 41.45 224 52.28 224 64C224 97.94 250.5 125.43 283.9 127.59L345.24 311.6C349.4100000000001 324.1600000000001 362.9700000000001 331.05 375.6 326.7700000000001C388.17 322.5800000000001 394.9500000000001 308.98 390.7700000000001 296.4100000000001z" />
+    <glyph glyph-name="tag"
+      unicode="&#xF02B;"
+      horiz-adv-x="512" d=" M0 195.882V400C0 426.51 21.49 448 48 448H252.118A48 48 0 0 0 286.059 433.941L497.941 222.059C516.6859999999999 203.314 516.6859999999999 172.922 497.941 154.177L293.823 -49.941C275.078 -68.6859999999999 244.686 -68.6859999999999 225.941 -49.941L14.059 161.941A48 48 0 0 0 0 195.882zM112 384C85.49 384 64 362.51 64 336S85.49 288 112 288S160 309.49 160 336S138.51 384 112 384z" />
+    <glyph glyph-name="tags"
+      unicode="&#xF02C;"
+      horiz-adv-x="640" d=" M497.941 222.059L286.0590000000001 433.941A48 48 0 0 1 252.118 448H48C21.49 448 0 426.51 0 400V195.882A48 48 0 0 1 14.059 161.941L225.941 -49.941C244.685 -68.6859999999999 275.077 -68.687 293.823 -49.941L497.941 154.177C516.6859999999999 172.922 516.6859999999999 203.314 497.941 222.059zM112 288C85.49 288 64 309.49 64 336S85.49 384 112 384S160 362.51 160 336S138.51 288 112 288zM625.941 154.177L421.823 -49.941C403.078 -68.6859999999999 372.686 -68.6859999999999 353.941 -49.941L353.581 -49.581L527.64 124.478C544.639 141.477 554 164.078 554 188.118S544.638 234.759 527.64 251.758L331.397 448H380.118A48 48 0 0 0 414.059 433.941L625.941 222.059C644.686 203.314 644.686 172.922 625.941 154.177z" />
+    <glyph glyph-name="tally"
+      unicode="&#xF69C;"
+      horiz-adv-x="640" d=" M639.21 278.51L629.32 308.94C626.59 317.3400000000001 617.57 321.94 609.1600000000001 319.2100000000001L544 298.12V400C544 408.8400000000001 536.84 416 528 416H496C487.16 416 480 408.8400000000001 480 400V277.41L416 256.7V400C416 408.8400000000001 408.84 416 400 416H368C359.1600000000001 416 352 408.8400000000001 352 400V235.99L288 215.28V400C288 408.8400000000001 280.84 416 272 416H240C231.16 416 224 408.8400000000001 224 400V194.57L160 173.86V400C160 408.8400000000001 152.84 416 144 416H112C103.16 416 96 408.8400000000001 96 400V153.14L11.06 125.65C2.65 122.92 -1.95 113.89 0.79 105.49L10.68 75.06C13.41 66.66 22.44 62.06 30.84 64.79L96 85.87V-16C96 -24.84 103.16 -32 112 -32H144C152.84 -32 160 -24.84 160 -16V106.59L224 127.3V-16C224 -24.84 231.16 -32 240 -32H272C280.84 -32 288 -24.84 288 -16V148.01L352 168.72V-16C352 -24.84 359.1600000000001 -32 368 -32H400C408.84 -32 416 -24.84 416 -16V189.43L480 210.14V-16C480 -24.84 487.16 -32 496 -32H528C536.84 -32 544 -24.84 544 -16V230.86L628.94 258.35C637.34 261.0800000000001 641.95 270.1 639.21 278.51z" />
+    <glyph glyph-name="tape"
+      unicode="&#xF4DB;"
+      horiz-adv-x="640" d=" M224 256C188.7 256 160 227.3 160 192S188.7 128 224 128S288 156.7 288 192S259.3 256 224 256zM624 32H380.6C422.1 72.7 448 129.3 448 192C448 315.7 347.7 416 224 416S0 315.7 0 192S100.3 -32 224 -32H624C632.8 -32 640 -24.8 640 -16V16C640 24.8 632.8 32 624 32zM224 96C171 96 128 139 128 192S171 288 224 288S320 245 320 192S277 96 224 96z" />
+    <glyph glyph-name="tasks"
+      unicode="&#xF0AE;"
+      horiz-adv-x="512" d=" M208 316H496C504.8 316 512 323.2 512 332V372C512 380.8 504.8 388 496 388H208C199.2 388 192 380.8 192 372V332C192 323.2 199.2 316 208 316zM208 156H496C504.8 156 512 163.2 512 172V212C512 220.8 504.8 228 496 228H208C199.2 228 192 220.8 192 212V172C192 163.2 199.2 156 208 156zM208 -4H496C504.8 -4 512 3.2 512 12V52C512 60.8 504.8 68 496 68H208C199.2 68 192 60.8 192 52V12C192 3.2 199.2 -4 208 -4zM64 80C37.5 80 15.4 58.5 15.4 32S37.5 -16 64 -16S112 5.5 112 32S90.5 80 64 80zM156.5 379L84.3 306.8L68.7 291.2000000000001C64 286.5 55.8 286.5 51.1 291.2000000000001L3.5 338.6C-1.2 343.3 -1.2 350.9 3.5 355.6L19.2 371.3C23.9 376 31.5 376 36.2 371.3L58.9 349.2L122.6 412.5C127.3 417.2 134.9 417.2 139.6 412.5L156.6 396C161.2 391.3 161.2 383.7 156.5 379zM156.5 219.4L84.3 147.2L68.6 131.5C63.9 126.8 55.7 126.8 51 131.5L3.5 179C-1.2 183.7 -1.2 191.3 3.5 196L19.2 211.7C23.9 216.4 31.5 216.4 36.2 211.7L58.9 189.6L122.6 253.3C127.3 258 134.9 258 139.6 253.3L156.6 236.3C161.2 231.7 161.2 224.1 156.5 219.4z" />
+    <glyph glyph-name="taxi"
+      unicode="&#xF1BA;"
+      horiz-adv-x="512" d=" M462 206.36L440 291.2000000000001C430.4 326.4000000000001 398.4 352 363.2 352H352V384C352 401.67 337.67 416 320 416H192C174.33 416 160 401.67 160 384V352H148.8C113.6 352 81.6 326.4 72 291.2L50 206.36C21.41 199.96 0 174.53 0 144V96C0 72.37 12.95 51.96 32 40.88V0C32 -17.67 46.33 -32 64 -32H96C113.67 -32 128 -17.67 128 0V32H384V0C384 -17.67 398.33 -32 416 -32H448C465.67 -32 480 -17.67 480 0V40.88C499.05 51.97 512 72.38 512 96V144C512 174.53 490.59 199.96 462 206.36zM96 96C78.33 96 64 110.33 64 128S78.33 160 96 160S128 145.67 128 128S113.67 96 96 96zM116.55 208L133.75 274.36C135.98 282.52 143.34 288 148.81 288H363.2100000000001C368.6800000000001 288 376.04 282.52 378.0600000000001 275.14L395.45 208H116.55zM416 96C398.33 96 384 110.33 384 128S398.33 160 416 160S448 145.67 448 128S433.67 96 416 96z" />
+    <glyph glyph-name="teeth-open"
+      unicode="&#xF62F;"
+      horiz-adv-x="640" d=" M544 448H96C42.98 448 0 405.02 0 352V288C0 252.65 28.66 224 64 224H576C611.34 224 640 252.65 640 288V352C640 405.02 597.02 448 544 448zM160 272C160 263.16 152.84 256 144 256H80C71.16 256 64 263.16 64 272V304C64 330.51 85.49 352 112 352S160 330.51 160 304V272zM304 272C304 263.16 296.84 256 288 256H208C199.16 256 192 263.16 192 272V328C192 358.93 217.07 384 248 384S304 358.93 304 328V272zM448 272C448 263.16 440.84 256 432 256H352C343.1600000000001 256 336 263.16 336 272V328C336 358.93 361.07 384 392 384S448 358.93 448 328V272zM576 272C576 263.16 568.84 256 560 256H496C487.16 256 480 263.16 480 272V304C480 330.51 501.49 352 528 352S576 330.51 576 304V272zM576 128H64C28.66 128 0 99.35 0 64V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V64C640 99.35 611.34 128 576 128zM160 48C160 21.49 138.51 0 112 0S64 21.49 64 48V80C64 88.84 71.16 96 80 96H144C152.84 96 160 88.84 160 80V48zM304 56C304 25.07 278.93 0 248 0S192 25.07 192 56V80C192 88.84 199.16 96 208 96H288C296.84 96 304 88.84 304 80V56zM448 56C448 25.07 422.93 0 392 0S336 25.07 336 56V80C336 88.84 343.1600000000001 96 352 96H432C440.84 96 448 88.84 448 80V56zM576 48C576 21.49 554.51 0 528 0S480 21.49 480 48V80C480 88.84 487.16 96 496 96H560C568.84 96 576 88.84 576 80V48z" />
+    <glyph glyph-name="teeth"
+      unicode="&#xF62E;"
+      horiz-adv-x="640" d=" M544 448H96C42.98 448 0 405.02 0 352V32C0 -21.02 42.98 -64 96 -64H544C597.02 -64 640 -21.02 640 32V352C640 405.02 597.02 448 544 448zM160 80C160 53.49 138.51 32 112 32S64 53.49 64 80V144C64 152.84 71.16 160 80 160H144C152.84 160 160 152.84 160 144V80zM160 208C160 199.16 152.84 192 144 192H80C71.16 192 64 199.16 64 208V272C64 298.51 85.49 320 112 320S160 298.51 160 272V208zM304 88C304 57.07 278.93 32 248 32S192 57.07 192 88V144C192 152.84 199.16 160 208 160H288C296.84 160 304 152.84 304 144V88zM304 208C304 199.16 296.84 192 288 192H208C199.16 192 192 199.16 192 208V296C192 326.93 217.07 352 248 352S304 326.93 304 296V208zM448 88C448 57.07 422.93 32 392 32S336 57.07 336 88V144C336 152.84 343.1600000000001 160 352 160H432C440.84 160 448 152.84 448 144V88zM448 208C448 199.16 440.84 192 432 192H352C343.1600000000001 192 336 199.16 336 208V296C336 326.93 361.07 352 392 352S448 326.93 448 296V208zM576 80C576 53.49 554.51 32 528 32S480 53.49 480 80V144C480 152.84 487.16 160 496 160H560C568.84 160 576 152.84 576 144V80zM576 208C576 199.16 568.84 192 560 192H496C487.16 192 480 199.16 480 208V272C480 298.51 501.49 320 528 320S576 298.51 576 272V208z" />
+    <glyph glyph-name="temperature-frigid"
+      unicode="&#xF768;"
+      horiz-adv-x="576" d=" M544 169.5V336C544 397.9 493.9 448 432 448S320 397.9 320 336V169.5C300.3 144.9 288 114 288 80C288 0.5 352.5 -64 432 -64S576 0.5 576 80C576 114 563.7 144.9 544 169.5zM432 0C387.9 0 352 35.9 352 80C352 105.5 364.2 128.9 384 143.8V336C384 362.5 405.5 384 432 384S480 362.5 480 336V143.8C499.8 129 512 105.5 512 80C512 35.9 476.1 0 432 0zM268.3 142.6C273.4000000000001 155.6 279.7 168.3 288 180.1V187.3L224.6 224L288 260.6V316.7L200 265.9V322.8L240.2 363C244.9 367.7 244.9 375.3 240.2 380L231.7 388.5C227 393.2 219.4 393.2 214.7 388.5L200 373.7V404C200 410.6 194.6 416 188 416H164C157.4 416 152 410.6 152 404V373.7L137.2 388.5C132.5 393.2 124.9 393.2 120.2 388.5L111.7 380C107 375.3 107 367.7 111.7 363L151.9 322.8V265.9L101.6 295L86.6 350.7C84.9 357.2 78.2 361 71.7 359.3L60 356.1C53.5 354.4 49.7 347.7 51.4 341.2L56.9 320.8L30.3 336.1C24.5 339.5 17.1 337.5 13.7 331.7L1.6 310.7C-1.8 304.9 0.2 297.5 6 294.1L32.6 278.8L12.2 273.3C5.7 271.6 1.9 264.9 3.6 258.4L6.7 246.7C8.4 240.2 15.1 236.4 21.6 238.1L77.3 253L127.5 224L77.3 195L21.6 210C15.1 211.7 8.5 207.9 6.7 201.4L3.6 189.7C1.9 183.2 5.7 176.6 12.2 174.8L32.6 169.3L6.1 153.9C0.3 150.5000000000001 -1.7 143.1 1.7 137.3L13.8 116.3C17.2 110.5 24.6 108.5 30.4 111.9L57 127.2L51.5 106.8C49.8 100.3 53.6 93.7 60.1 91.9L71.8 88.8C78.3 87.1 84.9 90.9 86.7 97.4L101.6 153.0000000000001L152 182.1000000000001V125.2000000000001L111.8 85C107.1 80.3 107.1 72.7 111.8 68L120.3 59.5C125 54.8 132.6 54.8 137.3 59.5L152.1 74.3V44C152.1 37.4 157.5 32 164.1 32H188.1C194.7 32 200.1 37.4 200.1 44V74.3L214.9 59.5C219.6 54.8 227.2000000000001 54.8 231.9000000000001 59.5L240.4000000000001 68C245.1 72.7 245.1 80.3 240.4000000000001 85L200 125.2V182.1L268.3 142.6zM448 125.1V144C448 152.8 440.8 160 432 160S416 152.8 416 144V125.1C397.4 118.5 384 100.9 384 80C384 53.5 405.5 32 432 32S480 53.5 480 80C480 100.9 466.6 118.5 448 125.1z" />
+    <glyph glyph-name="temperature-high"
+      unicode="&#xF769;"
+      horiz-adv-x="512" d=" M416 448C363.1 448 320 404.9 320 352S363.1 256 416 256S512 299.1 512 352S468.9 448 416 448zM416 320C398.3 320 384 334.3 384 352S398.3 384 416 384S448 369.7 448 352S433.7 320 416 320zM256 336C256 397.9 205.9 448 144 448S32 397.9 32 336V169.5C12.3 144.8 0 114 0 80C0 0.5 64.5 -64 144 -64S288 0.5 288 80C288 114 275.7 144.9 256 169.5V336zM144 0C99.9 0 64 35.9 64 80C64 105.5 76.2 128.9 96 143.8V336C96 362.5 117.5 384 144 384S192 362.5 192 336V143.8C211.8 129 224 105.5 224 80C224 35.9 188.1 0 144 0zM160 125.1V336C160 344.8 152.8 352 144 352S128 344.8 128 336V125.1C109.4 118.5 96 100.9 96 80C96 53.5 117.5 32 144 32S192 53.5 192 80C192 100.9 178.6 118.5 160 125.1z" />
+    <glyph glyph-name="temperature-hot"
+      unicode="&#xF76A;"
+      horiz-adv-x="640" d=" M352 180.1V336C352 352.9 355.5 369 360.9 384.1L279 356.8L237.6 439.6C232 450.8 216 450.8 210.4 439.6L169 356.8L81.1 386.1C69.3 390 58 378.7 61.9 366.9L91.2 279L8.4 237.6C-2.8 232 -2.8 216.1 8.4 210.5L91.2 169L61.9 81.1C57.9 69.2000000000001 69.2 58 81.1 61.9L169 91.2000000000001L210.4 8.4C216 -2.8 232 -2.8 237.5 8.4L278.9 91.3000000000001L320 77.6000000000001C320 78.4000000000001 319.9 79.2000000000001 319.9 80.1000000000001C320 115.9000000000001 331 150.3000000000001 352 180.1000000000001zM291.9 156.1C254.5 118.7000000000001 193.6 118.7000000000001 156.1 156.1S118.7 254.5000000000001 156.1 291.9000000000001C193.5 329.3000000000001 254.4 329.3000000000001 291.9 291.9000000000001C329.3 254.5000000000001 329.3 193.5 291.9 156.1zM224 288C188.7 288 160 259.3 160 224S188.7 160 224 160S288 188.7 288 224S259.3 288 224 288zM608 169.5V336C608 397.9 557.9 448 496 448S384 397.9 384 336V169.5C364.3 144.9 352 114 352 80C352 0.5 416.5 -64 496 -64S640 0.5 640 80C640 114 627.7 144.9 608 169.5zM496 0C451.9 0 416 35.9 416 80C416 105.5 428.2 128.9 448 143.8V336C448 362.5 469.5 384 496 384S544 362.5 544 336V143.8C563.8 129 576 105.5 576 80C576 35.9 540.1 0 496 0zM512 125.1V336C512 344.8 504.8 352 496 352S480 344.8 480 336V125.1C461.4 118.5 448 100.9 448 80C448 53.5 469.5 32 496 32S544 53.5 544 80C544 100.9 530.6 118.5 512 125.1z" />
+    <glyph glyph-name="temperature-low"
+      unicode="&#xF76B;"
+      horiz-adv-x="512" d=" M416 448C363.1 448 320 404.9 320 352S363.1 256 416 256S512 299.1 512 352S468.9 448 416 448zM416 320C398.3 320 384 334.3 384 352S398.3 384 416 384S448 369.7 448 352S433.7 320 416 320zM256 336C256 397.9 205.9 448 144 448S32 397.9 32 336V169.5C12.3 144.8 0 114 0 80C0 0.5 64.5 -64 144 -64S288 0.5 288 80C288 114 275.7 144.9 256 169.5V336zM144 0C99.9 0 64 35.9 64 80C64 105.5 76.2 128.9 96 143.8V336C96 362.5 117.5 384 144 384S192 362.5 192 336V143.8C211.8 129 224 105.5 224 80C224 35.9 188.1 0 144 0zM160 125.1V144C160 152.8 152.8 160 144 160S128 152.8 128 144V125.1C109.4 118.5 96 100.9 96 80C96 53.5 117.5 32 144 32S192 53.5 192 80C192 100.9 178.6 118.5 160 125.1z" />
+    <glyph glyph-name="tenge"
+      unicode="&#xF7D7;"
+      horiz-adv-x="384" d=" M372 288H12C5.4 288 0 282.6 0 276V220C0 213.4 5.4 208 12 208H152V-20C152 -26.6 157.4 -32 164 -32H220C226.6 -32 232 -26.6 232 -20V208H372C378.6 208 384 213.4 384 220V276C384 282.6 378.6 288 372 288zM372 416H12C5.4 416 0 410.6 0 404V348C0 341.4 5.4 336 12 336H372C378.6 336 384 341.4 384 348V404C384 410.6 378.6 416 372 416z" />
+    <glyph glyph-name="tennis-ball"
+      unicode="&#xF45E;"
+      horiz-adv-x="496" d=" M219 368.9C218.1 396.8 224.6 421.3 237.4 440C113.8 434.8 5.8 337.4 0 202.7C18.7 215.6 43.1 222.3 71.1 221.1C150 219.2 221.2 297.7 219 368.9zM426.4 211.1C445.8 210.7 491.2 214.2 485.1 265.9C473.4999999999999 303.1 453.1 338.2 423.6 367.7S359 417.6 321.8 429.2C270.1 435.2 266.4000000000001 390 267 370.5C268.5 323.4 245.4 268.9 208.3 231.8C171.2 194.5 117 171.2 69.6 173C50 173.5 4.7 169.9 10.9 118C22.5 80.8 42.8 45.8 72.3 16.3S136.8 -33.5 174 -45.1C225.8 -51.1 229.6 -5.9999999999999 229 13.6C227.5 60.7000000000001 250.6 115.2000000000001 287.7 152.3C324.9 189.5 379.6 213 426.4 211.1zM424.9 163C353.4 165.6 274.6 92.6 277 15.1C277.9 -12.8 271.4 -37.3 258.5 -56C379.5 -50.9 490.1 44.1 495.9 181.4C477.3 168.6 452.8 162.1 424.9 163z" />
+    <glyph glyph-name="terminal"
+      unicode="&#xF120;"
+      horiz-adv-x="640" d=" M257.981 175.029L63.638 -19.314C54.265 -28.687 39.069 -28.687 29.697 -19.314L7.029 3.353C-2.328 12.71 -2.346 27.875 6.989 37.254L161.011 192L6.99 346.745C-2.345 356.124 -2.327 371.289 7.03 380.646L29.697 403.313C39.07 412.6860000000001 54.266 412.6860000000001 63.638 403.313L257.981 208.97C267.354 199.598 267.354 184.402 257.981 175.029zM640 -8V24C640 37.255 629.255 48 616 48H312C298.745 48 288 37.255 288 24V-8C288 -21.255 298.745 -32 312 -32H616C629.255 -32 640 -21.255 640 -8z" />
+    <glyph glyph-name="text-height"
+      unicode="&#xF034;"
+      horiz-adv-x="576" d=" M16 416H304C312.837 416 320 408.837 320 400V304C320 295.163 312.837 288 304 288H268.504C259.6670000000001 288 252.504 295.163 252.504 304V352H197.743V32H232C240.837 32 248 24.837 248 16V-16C248 -24.837 240.837 -32 232 -32H88C79.163 -32 72 -24.837 72 -16V16C72 24.837 79.163 32 88 32H122.257V352H67.496V304C67.496 295.163 60.333 288 51.496 288H16C7.163 288 0 295.163 0 304V400C0 408.837 7.163 416 16 416zM491.308 411.315L571.303 331.314C581.309 321.307 574.297 304 559.99 304H512V80H560C575.639 80 580.635 62.009 571.313 52.686L491.318 -27.3150000000001C485.071 -33.5620000000001 474.937 -33.5600000000001 468.692 -27.3150000000001L388.697 52.6859999999999C378.691 62.693 385.703 80 400.01 80H448V304H400C384.361 304 379.365 321.991 388.687 331.314L468.682 411.315C474.929 417.563 485.063 417.56 491.308 411.315z" />
+    <glyph glyph-name="text-width"
+      unicode="&#xF035;"
+      horiz-adv-x="448" d=" M16 416H432C440.837 416 448 408.837 448 400V304C448 295.163 440.837 288 432 288H396.504C387.6670000000001 288 380.504 295.163 380.504 304V352H261.743V224H296C304.837 224 312 216.837 312 208V176C312 167.163 304.837 160 296 160H152C143.163 160 136 167.163 136 176V208C136 216.837 143.163 224 152 224H186.257V352H67.496V304C67.496 295.163 60.333 288 51.496 288H16C7.163 288 0 295.163 0 304V400C0 408.837 7.163 416 16 416zM443.315 75.318L363.314 155.313C353.991 164.635 336 159.638 336 144V96H112V143.99C112 158.297 94.693 165.309 84.686 155.303L4.685 75.308C-1.56 69.063 -1.562 58.929 4.685 52.682L84.686 -27.313C94.009 -36.635 112 -31.638 112 -16V32H336V-15.99C336 -30.297 353.307 -37.309 363.314 -27.303L443.3150000000001 52.692C449.5600000000001 58.937 449.5630000000001 69.071 443.3150000000001 75.318z" />
+    <glyph glyph-name="th-large"
+      unicode="&#xF009;"
+      horiz-adv-x="512" d=" M296 416H488C501.255 416 512 405.255 512 392V232C512 218.745 501.255 208 488 208H296C282.745 208 272 218.745 272 232V392C272 405.255 282.745 416 296 416zM216 416H24C10.745 416 0 405.255 0 392V232C0 218.745 10.745 208 24 208H216C229.255 208 240 218.745 240 232V392C240 405.255 229.255 416 216 416zM0 152V-8C0 -21.255 10.745 -32 24 -32H216C229.255 -32 240 -21.255 240 -8V152C240 165.255 229.255 176 216 176H24C10.745 176 0 165.255 0 152zM296 -32H488C501.255 -32 512 -21.255 512 -8V152C512 165.255 501.255 176 488 176H296C282.745 176 272 165.255 272 152V-8C272 -21.255 282.745 -32 296 -32z" />
+    <glyph glyph-name="th-list"
+      unicode="&#xF00B;"
+      horiz-adv-x="512" d=" M149.333 232V152C149.333 138.745 138.588 128 125.333 128H24C10.745 128 0 138.745 0 152V232C0 245.255 10.745 256 24 256H125.333C138.588 256 149.333 245.255 149.333 232zM0 72V-8C0 -21.255 10.745 -32 24 -32H125.333C138.588 -32 149.333 -21.255 149.333 -8V72C149.333 85.255 138.588 96 125.333 96H24C10.745 96 0 85.255 0 72zM125.333 416H24C10.745 416 0 405.255 0 392V312C0 298.745 10.745 288 24 288H125.333C138.588 288 149.333 298.745 149.333 312V392C149.333 405.255 138.588 416 125.333 416zM205.333 -32H488C501.255 -32 512 -21.255 512 -8V72C512 85.255 501.255 96 488 96H205.333C192.078 96 181.333 85.255 181.333 72V-8C181.333 -21.255 192.078 -32 205.333 -32zM181.333 392V312C181.333 298.745 192.078 288 205.333 288H488C501.255 288 512 298.745 512 312V392C512 405.255 501.255 416 488 416H205.333C192.078 416 181.333 405.255 181.333 392zM205.333 128H488C501.255 128 512 138.745 512 152V232C512 245.255 501.255 256 488 256H205.333C192.078 256 181.333 245.255 181.333 232V152C181.333 138.745 192.078 128 205.333 128z" />
+    <glyph glyph-name="th"
+      unicode="&#xF00A;"
+      horiz-adv-x="512" d=" M149.333 392V312C149.333 298.745 138.588 288 125.333 288H24C10.745 288 0 298.745 0 312V392C0 405.255 10.745 416 24 416H125.333C138.588 416 149.333 405.255 149.333 392zM330.6670000000001 152V232C330.6670000000001 245.255 319.9220000000001 256 306.6670000000001 256H205.333C192.078 256 181.333 245.255 181.333 232V152C181.333 138.745 192.078 128 205.333 128H306.666C319.9220000000001 128 330.667 138.745 330.667 152zM362.6670000000001 392V312C362.6670000000001 298.745 373.4120000000001 288 386.6670000000001 288H488C501.255 288 512 298.745 512 312V392C512 405.255 501.255 416 488 416H386.667C373.412 416 362.667 405.255 362.667 392zM330.6670000000001 312V392C330.6670000000001 405.255 319.9220000000001 416 306.6670000000001 416H205.333C192.078 416 181.333 405.255 181.333 392V312C181.333 298.745 192.078 288 205.333 288H306.666C319.9220000000001 288 330.667 298.745 330.667 312zM125.333 256H24C10.745 256 0 245.255 0 232V152C0 138.745 10.745 128 24 128H125.333C138.588 128 149.333 138.745 149.333 152V232C149.333 245.255 138.588 256 125.333 256zM0 72V-8C0 -21.255 10.745 -32 24 -32H125.333C138.588 -32 149.333 -21.255 149.333 -8V72C149.333 85.255 138.588 96 125.333 96H24C10.745 96 0 85.255 0 72zM386.667 128H488C501.255 128 512 138.745 512 152V232C512 245.255 501.255 256 488 256H386.667C373.412 256 362.667 245.255 362.667 232V152C362.667 138.745 373.412 128 386.667 128zM386.667 -32H488C501.255 -32 512 -21.255 512 -8V72C512 85.255 501.255 96 488 96H386.667C373.412 96 362.667 85.255 362.667 72V-8C362.667 -21.255 373.412 -32 386.667 -32zM181.333 72V-8C181.333 -21.255 192.078 -32 205.333 -32H306.666C319.921 -32 330.666 -21.255 330.666 -8V72C330.666 85.255 319.921 96 306.666 96H205.333C192.078 96 181.333 85.255 181.333 72z" />
+    <glyph glyph-name="theater-masks"
+      unicode="&#xF630;"
+      horiz-adv-x="640" d=" M206.86 202.85C170.98 192.4 146.91 161.65 149.33 128.75C160.73 141.47 178.14 152.45 199.23 159.67L206.86 202.85zM95.81 153L64.08 332.51C63.79 334.13 64.36 335.13 64.32 335.1600000000001C122.08 367.2200000000001 187.44 384.17 253.33 384.17C254.94 384.17 256.56 384 258.18 383.98C272.13 397.45 289.9100000000001 406.81 309.77 409.98C328.66 413 347.82 414.53 366.95 415.3C356.96 429.25 342.47 439.5300000000001 325.18 442.3C301.27 446.11 277.24 448 253.32 448C176.66 448 101.02 428.58 33.2 390.94C9.03 377.52 -3.92 349.52 1.05 321.42L32.78 141.91C47.01 61.39 169.11 -0.17 237.23 -0.17C240.82 -0.17 243.98 0.29 247.24 0.6300000000001C233.72 17.71 218.3 41.1100000000001 207.74 68.21C160.13 81.1900000000001 101.68 119.8300000000001 95.81 153.0000000000001zM193.36 290.4600000000001C192.63 294.5800000000001 191.13 298.3300000000001 189.29 301.86C181.04 292.9500000000001 168.62 286.11 153.97 283.54C139.32 280.9600000000001 125.3 283.14 114.4900000000001 288.7100000000001C113.9700000000001 284.77 113.85 280.73 114.5800000000001 276.61C118.4200000000001 254.9100000000001 139.16 240.42 160.9200000000001 244.24C182.6700000000001 248.06 197.2000000000001 268.76 193.3600000000001 290.4600000000001zM606.8 327.1C517.8199999999999 376.48 415.37 394.51 314.82 378.45C287.51 374.09 265.74 352.19 260.7799999999999 324.09L229.05 144.58C213.6599999999999 57.53 324.33 -51.6900000000001 387.3599999999999 -62.77C450.3899999999999 -73.86 591.8299999999999 -8.98 607.2199999999999 78.0700000000001L638.9499999999999 257.5800000000001C643.92 285.6900000000001 630.9699999999999 313.6900000000001 606.8 327.1zM333.56 230.3C337.3999999999999 252 358.14 266.49 379.9 262.6600000000001C401.66 258.8300000000001 416.18 238.14 412.35 216.44C411.62 212.32 410.12 208.57 408.28 205.04C400.03 213.95 387.61 220.79 372.96 223.36C358.31 225.9400000000001 344.29 223.76 333.48 218.19C332.95 222.14 332.83 226.1800000000001 333.56 230.3zM404.03 31.54C348.35 41.33 310.51 90.81 314.99 144.4400000000001C335.59 118.9 371.2 98.27 414.48 90.6600000000001C457.76 83.0500000000001 498.3 90.2900000000001 526.41 107.2600000000001C512.23 55.3200000000001 459.7 21.7500000000001 404.03 31.5400000000001zM534.3299999999999 182.88C526.0799999999999 191.79 513.65 198.63 498.9999999999999 201.2C484.35 203.78 470.3299999999999 201.6 459.5199999999999 196.03C458.9999999999999 199.97 458.8799999999999 204.01 459.6099999999999 208.13C463.4499999999999 229.83 484.1899999999999 244.32 505.9499999999999 240.5C527.6999999999999 236.67 542.2299999999999 215.98 538.4 194.28C537.67 190.15 536.17 186.4 534.3299999999999 182.88z" />
+    <glyph glyph-name="thermometer-empty"
+      unicode="&#xF2CB;"
+      horiz-adv-x="256" d=" M192 64C192 28.654 163.346 0 128 0S64 28.654 64 64C64 99.346 92.654 128 128 128S192 99.346 192 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.697 -64 128 -64C127.701 -64 127.391 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.245 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM208 64C208 98.339 188.63 116.19 176 130.502V352C176 378.467 154.467 400 128 400S80 378.467 80 352V130.502C67.268 116.074 48.175 98.402 48.001 64.422C47.777 20.5460000000001 83.564 -15.694 127.424 -15.998L128 -16C172.112 -16 208 19.888 208 64z" />
+    <glyph glyph-name="thermometer-full"
+      unicode="&#xF2C7;"
+      horiz-adv-x="256" d=" M224 352C224 405.019 181.019 448 128 448S32 405.019 32 352V148.653C12.225 126.244 0.166 96.864 0.002 64.667C-0.357 -5.636 56.789 -63.509 127.091 -63.997C127.39 -63.999 127.701 -64 128 -64C198.698 -64 256 -6.696 256 64C256 96.459 243.912 126.09 224 148.653V352zM128 -16L127.424 -15.998C83.564 -15.694 47.777 20.546 48.001 64.422C48.174 98.402 67.267 116.074 80 130.502V352C80 378.467 101.533 400 128 400S176 378.467 176 352V130.502C188.63 116.19 208 98.338 208 64C208 19.888 172.112 -16 128 -16zM192 64C192 28.654 163.346 0 128 0S64 28.654 64 64C64 87.685 76.876 108.349 96 119.417V352C96 369.673 110.327 384 128 384S160 369.673 160 352V119.417C179.124 108.3490000000001 192 87.6850000000001 192 64z" />
+    <glyph glyph-name="thermometer-half"
+      unicode="&#xF2C9;"
+      horiz-adv-x="256" d=" M192 64C192 28.654 163.346 0 128 0S64 28.654 64 64C64 87.685 76.876 108.349 96 119.417V224C96 241.673 110.327 256 128 256S160 241.673 160 224V119.417C179.124 108.3490000000001 192 87.6850000000001 192 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.697 -64 128 -64C127.701 -64 127.391 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.245 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM208 64C208 98.339 188.63 116.19 176 130.502V352C176 378.467 154.467 400 128 400S80 378.467 80 352V130.502C67.268 116.074 48.175 98.402 48.001 64.422C47.777 20.5460000000001 83.564 -15.694 127.424 -15.998L128 -16C172.112 -16 208 19.888 208 64z" />
+    <glyph glyph-name="thermometer-quarter"
+      unicode="&#xF2CA;"
+      horiz-adv-x="256" d=" M192 64C192 28.654 163.346 0 128 0S64 28.654 64 64C64 87.685 76.876 108.349 96 119.417V160C96 177.673 110.327 192 128 192S160 177.673 160 160V119.417C179.124 108.3490000000001 192 87.6850000000001 192 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.697 -64 128 -64C127.701 -64 127.391 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.245 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM208 64C208 98.339 188.63 116.19 176 130.502V352C176 378.467 154.467 400 128 400S80 378.467 80 352V130.502C67.268 116.074 48.175 98.402 48.001 64.422C47.777 20.5460000000001 83.564 -15.694 127.424 -15.998L128 -16C172.112 -16 208 19.888 208 64z" />
+    <glyph glyph-name="thermometer-three-quarters"
+      unicode="&#xF2C8;"
+      horiz-adv-x="256" d=" M192 64C192 28.654 163.346 0 128 0C92.654 0 64 28.654 64 64C64 87.685 76.876 108.349 96 119.417V288C96 305.673 110.327 320 128 320S160 305.673 160 288V119.417C179.124 108.3490000000001 192 87.6850000000001 192 64zM224 148.653C243.912 126.09 256 96.459 256 64C256 -6.696 198.697 -64 128 -64C127.701 -64 127.391 -63.999 127.091 -63.997C56.789 -63.509 -0.357 -5.636 0.002 64.667C0.166 96.865 12.225 126.245 32 148.653V352C32 405.019 74.981 448 128 448S224 405.019 224 352V148.653zM208 64C208 98.339 188.63 116.19 176 130.502V352C176 378.467 154.467 400 128 400S80 378.467 80 352V130.502C67.268 116.074 48.175 98.402 48.001 64.422C47.777 20.5460000000001 83.564 -15.694 127.424 -15.998L128 -16C172.112 -16 208 19.888 208 64z" />
+    <glyph glyph-name="thermometer"
+      unicode="&#xF491;"
+      horiz-adv-x="512" d=" M476.8 427.6C439.3 458.3 381.3 453.9 344.9 417.4L299.2 371.4L349.7 320.9C352.8 317.8 352.8 312.7000000000001 349.7 309.6L338.4 298.3C335.3 295.2 330.2 295.2 327.1 298.3L276.7 348.8L231.6 303.4L281.9 253C285 249.9 285 244.8 281.9 241.7L270.6 230.4C267.5 227.3 262.4 227.3 259.3 230.4L209 280.6L163.9 235.2L214 185C217.1 181.9 217.1 176.8 214 173.7L202.7 162.4C199.6 159.3 194.5 159.3 191.4 162.4L141.3 212.6L96 166.9V66L7 -23C-2.4 -32.4 -2.4 -47.6 7 -56.9C16.4 -66.2999999999999 31.6 -66.2999999999999 40.9 -56.9L129.9 32.1H229.8L484 285.4C518.9 320.3 526.2 386.9 476.8 427.6z" />
+    <glyph glyph-name="theta"
+      unicode="&#xF69E;"
+      horiz-adv-x="384" d=" M192 440C84.34 440 0 331.06 0 192S84.34 -56 192 -56S384 52.94 384 192S299.6600000000001 440 192 440zM192 344C233.44 344 269.35 299.5900000000001 282.43 240H101.57C114.65 299.5900000000001 150.56 344 192 344zM192 40C150.56 40 114.65 84.41 101.57 144H282.43C269.35 84.41 233.44 40 192 40z" />
+    <glyph glyph-name="thumbs-down"
+      unicode="&#xF165;"
+      horiz-adv-x="512" d=" M0 392V152C0 138.745 10.745 128 24 128H104C117.255 128 128 138.745 128 152V392C128 405.255 117.255 416 104 416H24C10.745 416 0 405.255 0 392zM40 192C40 205.255 50.745 216 64 216S88 205.255 88 192S77.255 168 64 168S40 178.745 40 192zM312 -64C291.817 -64 282.515 -24.707 278.069 -6.205C272.863 15.461 267.48 37.865 252.676 52.697C220.207 85.221 203.173 126.664 163.559 165.808A11.98 11.98 0 0 0 160.001 174.329V388.099C160.001 394.64 165.244 399.977 171.784 400.097C187.615 400.387 208.478 409.176 224.435 416.275C256.189 430.402 295.709 447.983 343.995 448H346.839C389.616 448 440.202 447.587 460.613 418.263C469.005 406.206 471.059 391.229 466.761 373.631C483.073 356.578 491.824 324.7680000000001 483.143 298.874C500.687 275.442 502.2860000000001 242.742 492.451 219.405L492.561 219.295C504.4540000000001 207.346 512.0840000000001 188.036 512 170.098C511.844 139.746 485.843 111.9999999999999 452.447 111.9999999999999H350.723C358.03 83.66 384 59.868 384 17.452C384 -56 336 -64 312 -64z" />
+    <glyph glyph-name="thumbs-up"
+      unicode="&#xF164;"
+      horiz-adv-x="512" d=" M104 224H24C10.745 224 0 213.255 0 200V-40C0 -53.255 10.745 -64 24 -64H104C117.255 -64 128 -53.255 128 -40V200C128 213.255 117.255 224 104 224zM64 -24C50.745 -24 40 -13.255 40 0S50.745 24 64 24S88 13.255 88 0S77.255 -24 64 -24zM384 366.548C384 324.132 358.03 300.3400000000001 350.723 272H452.446C485.843 272 511.843 244.254 511.999 213.902C512.083 195.964 504.453 176.653 492.56 164.705L492.45 164.595C502.286 141.258 500.687 108.558 483.142 85.126C491.823 59.231 483.073 27.422 466.76 10.369C471.058 -7.229 469.004 -22.206 460.612 -34.263C440.202 -63.587 389.616 -64 346.839 -64L343.994 -63.999C295.707 -63.982 256.188 -46.401 224.434 -32.274C208.477 -25.175 187.613 -16.387 171.783 -16.096C165.243 -15.976 160 -10.639 160 -4.098V209.672C160 212.872 161.282 215.943 163.558 218.193C203.172 257.337 220.206 298.78 252.675 331.304C267.479 346.136 272.863 368.54 278.068 390.206C282.515 408.707 291.817 448 312 448C336 448 384 440 384 366.548z" />
+    <glyph glyph-name="thumbtack"
+      unicode="&#xF08D;"
+      horiz-adv-x="384" d=" M298.028 233.733L285.793 352H328C341.255 352 352 362.745 352 376V424C352 437.255 341.255 448 328 448H56C42.745 448 32 437.255 32 424V376C32 362.745 42.745 352 56 352H98.207L85.972 233.733C37.465 211.18 0 170.739 0 120C0 106.745 10.745 96 24 96H160V-8.007C160 -9.249 160.289 -10.474 160.845 -11.585L184.845 -59.585C187.786 -65.467 196.209 -65.4779999999999 199.156 -59.585L223.156 -11.585A8.008 8.008 0 0 1 224.001 -8.007V96H360.001C373.256 96 384.001 106.745 384.001 120C384 171.183 346.018 211.42 298.028 233.733z" />
+    <glyph glyph-name="thunderstorm-moon"
+      unicode="&#xF76D;"
+      horiz-adv-x="576" d=" M567.9 224.2C497.5 210.9 432.9 264.5 432.9 335C432.9 375.6 454.8 413 490.4 433.1C495.9 436.2 494.5 444.5 488.3 445.6C479.6 447.2 470.7 448 461.8 448C383.9 448 320.7000000000001 386.8 317.4 310.1C344.1 298.2 365.6 276.3 376.3 248.4C413.4 234.1 440.3 201 446.5 161.6C451.6 161.1 456.4999999999999 160.1 461.6999999999999 160.1C506.3999999999999 160.1 547.3 180.3 574.3 213.4C578.5 218.2 574.0999999999999 225.4 567.9 224.2zM276 112H218.3L235.6 176.9C237.6 184.5 231.9000000000001 192 224 192H156C150 192 144.9 187.5 144.1 181.6L128.1 61.6C127.1 54.4 132.7 48 140 48H199.3L176.3 -49.2C174.5 -56.8 180.3 -64 188 -64C192.2 -64 196.2 -61.8 198.4 -58L286.4 94C291 102 285.2 112 276 112zM350.5 222.5C343.6 259.7 311.2 288 272 288C259.7 288 248.1 285 237.7 280C220.3 304.1 192.1 320 160 320C107 320 64 277 64 224C64 223.5 64.2 222.9 64.2 222.4C27.6 215.1 0 182.8 0 144C0 99.8 35.8 64 80 64H96.3C96.4 64.6 96.3 65.2 96.3 65.8L112.3 185.8C115.3 207.6 134 224 156 224H224C237.8 224 250.5 217.7 258.9 206.8C267.3 195.9 270.1 182 266.5 168.7L259.9 144H275.9C291.6 144 306.2 135.6 314 122C321.8 108.4 321.8 91.5 314 78L305.9 64H335.9C380.1 64 415.9 99.8 415.9 144C416 183.2 387.8 215.7 350.5 222.5z" />
+    <glyph glyph-name="thunderstorm-sun"
+      unicode="&#xF76E;"
+      horiz-adv-x="576" d=" M124.1 188.1C86.7 225.5000000000001 86.7 286.4000000000001 124.1 323.9000000000001C158.7 358.5 213.2 360.7000000000001 250.8 331.3000000000001C270.8 344.2000000000001 294.4000000000001 352.0000000000001 320 352.0000000000001C320.7 352.0000000000001 321.3 351.8000000000001 322 351.8000000000001L330.9 378.5000000000001C334.3 388.7000000000001 324.6 398.3000000000001 314.4 394.9000000000001L239.1 369.8000000000001L203.6 440.8000000000001C198.8 450.4 185.1 450.4 180.3 440.8000000000001L144.8 369.8000000000001L69.5 394.9000000000001C59.3 398.3000000000001 49.7 388.6 53.1 378.4000000000001L78.2 303.1L7.2 267.6C-2.4 262.8 -2.4 249.1 7.2 244.3L78.2 208.8L53.1 133.5C49.7 123.3 59.4 113.7 69.6 117L128.8 136.7C128.6 139.1 128.1 141.4 128.1 143.9C128.1 156.4 130.4 168.4 134.3 179.8C130.7 182.5 127.2 185 124.1 188.1zM193.9 246.1C198.2 270.6 209.7 292.5 225.8 310.1C216 316.3 204.4 320 192 320C156.7 320 128 291.3000000000001 128 256C128 237.3000000000001 136.2 220.6 149.1 208.9C160.4 224.8000000000001 175.7 237.8000000000001 193.9 246.1zM436 112H378.3L395.6 176.9C397.6 184.5 391.9000000000001 192 384 192H316C310 192 304.9 187.5 304.1 181.6L288.1 61.6C287.1 54.4 292.7000000000001 48 300 48H359.3L336.3 -49.2C334.5 -56.8 340.3 -64 348 -64C352.2 -64 356.2 -61.8 358.4 -58L446.4 94C451 102 445.2 112 436 112zM510.5 222.5C503.6 259.7 471.2 288 432 288C419.7 288 408.1 285 397.7 280C380.3 304.1 352.1 320 320 320C267 320 224 277 224 224C224 223.5 224.2 222.9 224.2 222.4C187.6 215 160 182.8 160 144C160 99.8 195.8 64 240 64H256.3C256.4000000000001 64.6 256.3 65.2 256.3 65.8L272.3 185.8C275.3 207.6 294 224 316 224H384C397.8 224 410.5 217.7 418.9 206.8C427.3 195.9 430.1 182 426.5 168.7L419.9 144H435.9C451.6 144 466.2 135.6 474 122C481.8 108.4 481.8 91.5 474 78L465.9 64H495.9C540.1 64 575.9 99.8 575.9 144C576 183.2 547.8 215.7 510.5 222.5z" />
+    <glyph glyph-name="thunderstorm"
+      unicode="&#xF76C;"
+      horiz-adv-x="512" d=" M337 160H264.9L287.5 237.1C290 246.6 282.9 256 273 256H191C183.5 256 177.1 250.4 176.1 243L160.1 113C158.9 104 165.9 96 175 96H256L224.4 -45.5C222.2 -55 229.4 -64 239 -64C244.2 -64 249.2 -61.3 252 -56.5L350 137.5C355.7 147.5 348.5 160 337 160zM416 320C415.4 320 414.9 319.8 414.4 319.8C415.5 325 416 330.4 416 336C416 380.2000000000001 380.2 416 336 416C311.4 416 289.7 404.7000000000001 275 387.2000000000001C256.4 423.2 219.3 448 176 448C114.1 448 64 397.9 64 336C64 328.7 64.8 321.7 66.1 314.8C27.8 302.2 0 266.5 0 224C0 171 43 128 96 128H128.5L144.4 247.2C147.5 270.5 167.5 288 191 288H276C290.7 288 304.3 281.3 313.3 269.6S325.2 243.1 321.4000000000001 228.9L310.5 188H341C357.7 188 373.3 179 381.7 164.5C388.1 153.3 389.5 140.1 386 128H416C469 128 512 171 512 224S469 320 416 320z" />
+    <glyph glyph-name="ticket-alt"
+      unicode="&#xF3FF;"
+      horiz-adv-x="576" d=" M128 288H448V96H128V288zM528 192C528 165.49 549.49 144 576 144V48C576 21.49 554.51 0 528 0H48C21.49 0 0 21.49 0 48V144C26.51 144 48 165.49 48 192S26.51 240 0 240V336C0 362.51 21.49 384 48 384H528C554.51 384 576 362.51 576 336V240C549.49 240 528 218.51 528 192zM480 296C480 309.255 469.255 320 456 320H120C106.745 320 96 309.255 96 296V88C96 74.745 106.745 64 120 64H456C469.255 64 480 74.745 480 88V296z" />
+    <glyph glyph-name="ticket"
+      unicode="&#xF145;"
+      horiz-adv-x="576" d=" M576 240V336C576 362.51 554.51 384 528 384H48C21.49 384 0 362.51 0 336V240C26.51 240 48 218.51 48 192S26.51 144 0 144V48C0 21.49 21.49 0 48 0H528C554.51 0 576 21.49 576 48V144C549.49 144 528 165.49 528 192S549.49 240 576 240z" />
+    <glyph glyph-name="tilde"
+      unicode="&#xF69F;"
+      horiz-adv-x="512" d=" M339.54 66.49C304.0200000000001 72.97 272.79 94.17 250.23 122.36L183.71 205.51C174.33 217.27 160.3 224 145.25 224C118.09 224 96 201.91 96 174.75V127C96 109.33 81.67 95 64 95H32C14.33 95 0 109.33 0 127V167.92C0 246.02 58.67 315.25 136.64 319.75C184.24 322.5 229.18 302.36 258.69 265.48L328.28 178.48C337.67 166.73 351.7 160 366.75 160C393.9100000000001 160 416 182.09 416 209.25V256C416 273.67 430.33 288 448 288H480C497.67 288 512 273.67 512 256V209.25C512 120.25 431.55 49.69 339.54 66.49z" />
+    <glyph glyph-name="times-circle"
+      unicode="&#xF057;"
+      horiz-adv-x="512" d=" M256 440C119 440 8 329 8 192S119 -56 256 -56S504 55 504 192S393 440 256 440zM377.6 126.9C382.3 122.2 382.3 114.6 377.6 109.9L338 70.4C333.3 65.7 325.7 65.7 321 70.4L256 136L190.9 70.4C186.2 65.7 178.6 65.7 173.9 70.4L134.4 110C129.7 114.7 129.7 122.3 134.4 127L200 192L134.4 257.1C129.7 261.8 129.7 269.4 134.4 274.1L174 313.7C178.7 318.4 186.3 318.4 191 313.7L256 248L321.1 313.6C325.8 318.3 333.4000000000001 318.3 338.1 313.6L377.7000000000001 274C382.4000000000001 269.3 382.4000000000001 261.7 377.7000000000001 257L312 192L377.6 126.9z" />
+    <glyph glyph-name="times-hexagon"
+      unicode="&#xF2EE;"
+      horiz-adv-x="576" d=" M553.5 216.2C562.2 201.3 562.2 182.8 553.5 167.8L441.5 -24.2C432.9 -38.9 417.1 -48 400 -48H176C158.9 -48 143.1 -38.9 134.5 -24.2L22.5 167.8C13.8 182.7 13.8 201.2 22.5 216.2L134.5 408.2000000000001C143.1 422.9 158.9 432 176 432H400C417.1 432 432.9 422.9 441.5 408.2L553.5 216.2zM409.6 110C414.3 114.7 414.3 122.3 409.6 127L344.6 192L409.7000000000001 257.1C414.4000000000001 261.8 414.4000000000001 269.4 409.7000000000001 274.1L370 313.6C365.3 318.3 357.7 318.3 353 313.6L288 248.6L222.9 313.7C218.2 318.4 210.6 318.4 205.9 313.7L166.4 274C161.7 269.3 161.7 261.7 166.4 257L231.5 191.9L166.4 126.8C161.7 122.1 161.7 114.5 166.4 109.8L206 70.1999999999999C210.7 65.4999999999999 218.3 65.4999999999999 223 70.1999999999999L288.1 135.3L353.2000000000001 70.1999999999999C357.9000000000001 65.4999999999999 365.5000000000001 65.4999999999999 370.2000000000001 70.1999999999999L409.6 109.9999999999999z" />
+    <glyph glyph-name="times-octagon"
+      unicode="&#xF2F0;"
+      horiz-adv-x="512" d=" M497.9 297.5C506.9 288.5 512 276.3 512 263.6V120.5C512 107.8 506.9 95.6 497.9 86.6L361.5 -49.9C352.5 -58.9 340.3 -64 327.6 -64H184.5C171.8 -64 159.6 -58.9 150.6 -49.9L14.1 86.5C5.1 95.5 0 107.7 0 120.4V263.5C0 276.2 5.1 288.4 14.1 297.4L150.5 433.9C159.5 442.9 171.7 448 184.4 448H327.5C340.2 448 352.4 442.9 361.4 433.9L497.9 297.5zM377.6 110C382.3 114.7 382.3 122.3 377.6 127L312.6 192L377.7000000000001 257.1C382.4000000000001 261.8 382.4000000000001 269.4 377.7000000000001 274.1L338 313.6C333.3 318.3 325.7 318.3 321 313.6L256 248.6L190.9 313.7C186.2 318.4 178.6 318.4 173.9 313.7L134.4 274C129.7 269.3 129.7 261.7 134.4 257L199.5 191.9L134.4 126.8C129.7 122.1 129.7 114.5 134.4 109.8L174 70.1999999999999C178.7 65.4999999999999 186.3 65.4999999999999 191 70.1999999999999L256.1 135.3L321.2000000000001 70.1999999999999C325.9000000000001 65.4999999999999 333.5000000000001 65.4999999999999 338.2000000000001 70.1999999999999L377.6 109.9999999999999z" />
+    <glyph glyph-name="times-square"
+      unicode="&#xF2D3;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM345.6 126.9C350.3 122.2 350.3 114.6 345.6 109.9L306 70.4C301.3 65.7 293.7 65.7 289 70.4L224 136L158.9 70.4C154.2 65.7 146.6 65.7 141.9 70.4L102.4 110C97.7 114.7 97.7 122.3 102.4 127L168 192L102.4 257.1C97.7 261.8 97.7 269.4 102.4 274.1L142 313.7C146.7 318.4 154.3 318.4 159 313.7L224 248L289.1 313.6C293.8 318.3 301.4000000000001 318.3 306.1 313.6L345.7000000000001 274C350.4000000000001 269.3 350.4000000000001 261.7 345.7000000000001 257L280 192L345.6 126.9z" />
+    <glyph glyph-name="times"
+      unicode="&#xF00D;"
+      horiz-adv-x="352" d=" M242.72 192L342.79 292.07C355.07 304.35 355.07 324.26 342.79 336.55L320.55 358.79C308.27 371.07 288.36 371.07 276.07 358.79L176 258.7200000000001L75.93 358.79C63.65 371.07 43.74 371.07 31.45 358.79L9.21 336.55C-3.07 324.27 -3.07 304.36 9.21 292.07L109.28 192L9.21 91.93C-3.07 79.65 -3.07 59.74 9.21 47.45L31.45 25.21C43.73 12.93 63.65 12.93 75.93 25.21L176 125.28L276.07 25.21C288.35 12.93 308.27 12.93 320.55 25.21L342.79 47.45C355.07 59.73 355.07 79.64 342.79 91.93L242.72 192z" />
+    <glyph glyph-name="tint-slash"
+      unicode="&#xF5C7;"
+      horiz-adv-x="640" d=" M633.82 -10.1L494.97 97.22C495.49 102.79 496 108.3800000000001 496 114.09C496 225.85 396.21 267.4300000000001 349.2200000000001 425.9100000000001C341.2800000000001 454.6900000000001 299.7800000000001 456.03 290.7800000000001 425.9100000000001C275.2600000000001 373.5700000000001 253.9100000000001 333.9500000000001 232.29 300.23L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM144 114.09C144 15.65 222.72 -64 320 -64C364.71 -64 405.37 -47.04 436.4 -19.3L162.72 192.22C151.31 168.72 144 143.87 144 114.09z" />
+    <glyph glyph-name="tint"
+      unicode="&#xF043;"
+      horiz-adv-x="352" d=" M205.22 425.9100000000001C197.28 454.69 155.78 456.03 146.78 425.9100000000001C100.01 268.15 0 225.28 0 114.09C0 15.65 78.72 -64 176 -64S352 15.65 352 114.09C352 225.8400000000001 252.21 267.4300000000001 205.22 425.9100000000001zM176 0C114.25 0 64 50.25 64 112C64 120.84 71.16 128 80 128S96 120.84 96 112C96 67.89 131.89 32 176 32C184.84 32 192 24.84 192 16S184.84 0 176 0z" />
+    <glyph glyph-name="tire-flat"
+      unicode="&#xF632;"
+      horiz-adv-x="512" d=" M256 288C229.49 288 204.86 280.94 182.85 269.52L230.78 203.55C238.75 206.21 247.13 208 256 208S273.25 206.21 281.2200000000001 203.55L329.1500000000001 269.52C307.14 280.94 282.51 288 256 288zM96 128C96 119.13 97.22 110.58 98.61 102.11L176.07 127.28C176.07 127.53 176 127.7600000000001 176 128.0100000000001C176 145.8300000000001 182.03 162.1300000000001 191.88 175.4200000000001L143.65 241.8000000000001C114.27 212.78 96 172.55 96 128zM320.12 175.41C329.9700000000001 162.12 336 145.82 336 128C336 127.75 335.93 127.52 335.93 127.27L413.39 102.1C414.78 110.58 416 119.12 416 127.99C416 172.54 397.73 212.77 368.35 241.78L320.12 175.41zM256 160C238.33 160 224 145.67 224 128S238.33 96 256 96S288 110.33 288 128S273.67 160 256 160zM480 0H477.39C499.3 37.64 512 81.29 512 128C512 269.38 397.38 384 256 384S0 269.38 0 128C0 81.29 12.7 37.64 34.61 0H32C14.33 0 0 -14.33 0 -32S14.33 -64 32 -64H480C497.67 -64 512 -49.67 512 -32S497.67 0 480 0zM398.7 0H350.91A160.175 160.175 0 0 1 398.42 56.49L321 81.64C311.04 67.7 296.69 57.35 280 52.07V0H232V52.07C215.31 57.35 200.96 67.71 191 81.64L113.58 56.49A160.175 160.175 0 0 1 161.09 0H113.3C82.76 34.01 64 78.8 64 128C64 233.87 150.13 320 256 320S448 233.87 448 128C448 78.8 429.24 34.01 398.7 0z" />
+    <glyph glyph-name="tire-pressure-warning"
+      unicode="&#xF633;"
+      horiz-adv-x="512" d=" M474.5 306.4600000000001C458.33 334.74 448 367.39 448 401.91V430.86C448 440.33 440.84 448 432 448H400C391.1600000000001 448 384 440.84 384 432V384C384 352 399.23 309.15 418.94 274.69C437.95 241.44 448 203.14 448 163.92C448 122.79 435.25 81.43 412.2 45.8C406.48 36.95 396.25 32.01 385.72 32.01H126.29C115.76 32.01 105.53 36.96 99.81 45.8C76.76 81.43 64.01 122.8 64.01 163.92C64.01 203.14 74.06 241.45 93.07 274.69C112.77 309.15 128 352 128 384V432C128 440.84 120.84 448 112 448H80C71.16 448 64 440.33 64 430.86V401.91C64 367.38 53.67 334.74 37.5 306.45C13.76 264.94 0 216.19 0 163.92C0 87.11 32.54 17.78 80 -32V-48C80 -56.84 87.16 -64 96 -64H128C136.84 -64 144 -56.84 144 -48V-32H176V-48C176 -56.84 183.16 -64 192 -64H224C232.84 -64 240 -56.84 240 -48V-32H272V-48C272 -56.84 279.1600000000001 -64 288 -64H320C328.84 -64 336 -56.84 336 -48V-32H368V-48C368 -56.84 375.1600000000001 -64 384 -64H416C424.84 -64 432 -56.84 432 -48V-32C479.46 17.78 512 87.11 512 163.92C512 216.19 498.24 264.94 474.5 306.4599999999999zM246.48 192H265.52C273.74 192 280.62 198.23 281.44 206.41L294.24 334.41C295.18 343.83 287.79 352 278.32 352H233.68C224.21 352 216.82 343.83 217.76 334.41L230.5600000000001 206.41C231.38 198.23 238.26 192 246.48 192zM256 160C238.33 160 224 145.67 224 128S238.33 96 256 96S288 110.33 288 128S273.67 160 256 160z" />
+    <glyph glyph-name="tire-rugged"
+      unicode="&#xF634;"
+      horiz-adv-x="512" d=" M480 256H470.6C466.17 270.88 460.33 285.15 453.0700000000001 298.56L459.65 305.14C472.15 317.64 472.15 337.9 459.65 350.4L414.4 395.65C401.9 408.15 381.64 408.15 369.14 395.65L362.56 389.07C349.15 396.3400000000001 334.88 402.17 320 406.6V416C320 433.67 305.67 448 288 448H224C206.33 448 192 433.67 192 416V406.6C177.12 402.17 162.85 396.33 149.44 389.07L142.86 395.65C130.36 408.15 110.1 408.15 97.6 395.65L52.35 350.39C39.85 337.89 39.85 317.63 52.35 305.13L58.93 298.55C51.66 285.14 45.83 270.87 41.4 255.99H32C14.33 255.99 0 241.66 0 223.99V159.99C0 142.32 14.33 127.99 32 127.99H41.4C45.83 113.11 51.67 98.84 58.93 85.43L52.35 78.85C39.85 66.35 39.85 46.09 52.35 33.6L97.6 -11.66C110.1 -24.16 130.36 -24.16 142.86 -11.66L149.44 -5.08C162.85 -12.35 177.12 -18.18 192 -22.61V-32.01C192 -49.68 206.33 -64.01 224 -64.01H288C305.67 -64.01 320 -49.68 320 -32.01V-22.61C334.88 -18.18 349.15 -12.34 362.56 -5.08L369.14 -11.66C381.64 -24.16 401.9 -24.16 414.4 -11.66L459.65 33.6C472.15 46.1 472.15 66.36 459.65 78.85L453.07 85.43C460.34 98.84 466.17 113.11 470.6 127.99H480C497.67 127.99 512 142.3199999999999 512 159.99V223.99C512 241.67 497.67 256 480 256zM256 64.02C185.31 64.02 128 121.33 128 192.02S185.31 320.02 256 320.02S384 262.71 384 192.02C384 121.32 326.69 64.02 256 64.02zM256 288C242.75 288 232 277.26 232 264C232 250.75 242.75 240 256 240S280 250.75 280 264C280 277.26 269.25 288 256 288zM256 144C242.75 144 232 133.26 232 120C232 106.75 242.75 96 256 96S280 106.75 280 120C280 133.26 269.25 144 256 144zM328 216C314.75 216 304 205.26 304 192C304 178.75 314.75 168 328 168S352 178.75 352 192C352 205.26 341.25 216 328 216zM184 216C170.75 216 160 205.26 160 192C160 178.75 170.75 168 184 168S208 178.75 208 192C208 205.26 197.25 216 184 216z" />
+    <glyph glyph-name="tire"
+      unicode="&#xF631;"
+      horiz-adv-x="512" d=" M256 448C114.62 448 0 333.38 0 192S114.62 -64 256 -64S512 50.62 512 192S397.38 448 256 448zM256 0C150.13 0 64 86.13 64 192S150.13 384 256 384S448 297.87 448 192S361.87 0 256 0zM176 192C176 209.82 182.03 226.12 191.88 239.41L143.65 305.79C114.27 276.78 96 236.55 96 192C96 183.13 97.22 174.58 98.61 166.11L176.07 191.28C176.07 191.5200000000001 176 191.7500000000001 176 192zM191 145.64L113.58 120.49C136.44 75.09 179.9 42.32 232 34.42V116.0700000000001C215.31 121.35 200.96 131.71 191 145.6400000000001zM256 272C264.87 272 273.25 270.2100000000001 281.2200000000001 267.55L329.1500000000001 333.52C307.14 344.94 282.51 352 256 352S204.86 344.94 182.85 333.52L230.78 267.55C238.75 270.2100000000001 247.13 272 256 272zM368.35 305.79L320.12 239.41C329.9700000000001 226.12 336 209.82 336 192C336 191.75 335.93 191.52 335.93 191.27L413.39 166.1C414.78 174.58 416 183.12 416 191.99C416 236.55 397.73 276.78 368.35 305.79zM280 116.07V34.42C332.1 42.3199999999999 375.55 75.09 398.42 120.49L321 145.64C311.04 131.71 296.69 121.35 280 116.07zM256 224C238.33 224 224 209.67 224 192S238.33 160 256 160S288 174.33 288 192S273.67 224 256 224z" />
+    <glyph glyph-name="tired"
+      unicode="&#xF5C8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM281.8 250.3L361.8 298.3C373.4000000000001 305.2000000000001 385.8 290.6 377.2 280.3L343.6 240L377.2000000000001 199.7C385.9000000000001 189.3 373.3000000000001 174.9 361.8000000000001 181.7L281.8000000000001 229.7C274.1000000000001 234.4 274.1000000000001 245.6 281.8000000000001 250.3zM118.8 280.3C110.2 290.6 122.6 305.2000000000001 134.2 298.3L214.2 250.3C222 245.6 222 234.4 214.2 229.7L134.2 181.7000000000001C122.7 174.9 110.2 189.3000000000001 118.8 199.7000000000001L152.4 240.0000000000001L118.8 280.3000000000001zM248 160C299.9 160 363.3 116.2 371.2 53.3C372.9 39.7 363.2 28.7 353.5 32.9C327.6 44.0000000000001 289.1 50.3 248 50.3S168.4 44 142.5 32.9C132.7 28.7 123.1 39.9 124.8 53.3C132.7 116.2 196.1 160 248 160z" />
+    <glyph glyph-name="toggle-off"
+      unicode="&#xF204;"
+      horiz-adv-x="576" d=" M384 384H192C85.961 384 0 298.039 0 192S85.961 0 192 0H384C490.039 0 576 85.961 576 192S490.039 384 384 384zM64 192C64 262.741 121.249 320 192 320C262.741 320 320 262.751 320 192C320 121.259 262.751 64 192 64C121.259 64 64 121.249 64 192zM384 64H335.0950000000001C400.312 136.858 400.331 247.12 335.0950000000001 320H384C454.741 320 512 262.751 512 192C512 121.26 454.751 64 384 64z" />
+    <glyph glyph-name="toggle-on"
+      unicode="&#xF205;"
+      horiz-adv-x="576" d=" M576 192C576 85.961 490.039 0 384 0H192C85.961 0 0 85.961 0 192S85.961 384 192 384H384C490.039 384 576 298.039 576 192zM384 320C313.259 320 256 262.751 256 192C256 121.259 313.249 64 384 64C454.741 64 512 121.249 512 192C512 262.741 454.751 320 384 320" />
+    <glyph glyph-name="toilet-paper-alt"
+      unicode="&#xF71F;"
+      horiz-adv-x="576" d=" M128 448C74.98 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H296.93C310.7 -64 322.93 -55.19 327.29 -42.12C340.12 -3.64 352 30.28 352 83.93V256C352 339.6 375.67 409.52 412.44 448H128zM480 448C426.98 448 384 362.04 384 256S426.98 64 480 64S576 149.96 576 256S533.02 448 480 448zM480 192C462.33 192 448 220.65 448 256S462.33 320 480 320S512 291.35 512 256S497.67 192 480 192z" />
+    <glyph glyph-name="toilet-paper"
+      unicode="&#xF71E;"
+      horiz-adv-x="576" d=" M128 448C74.98 448 32 362.04 32 256V83.93C32 42.81 22.2 21.16 0.83 -42.94C-2.62 -53.3 5.09 -64 16.01 -64H296.93C310.7 -64 322.93 -55.19 327.29 -42.12C340.12 -3.64 352 30.28 352 83.93V256C352 339.6 375.67 409.52 412.44 448H128zM96 224C87.16 224 80 231.16 80 240S87.16 256 96 256S112 248.84 112 240S104.84 224 96 224zM160 224C151.16 224 144 231.16 144 240S151.16 256 160 256S176 248.84 176 240S168.84 224 160 224zM224 224C215.16 224 208 231.16 208 240S215.16 256 224 256S240 248.84 240 240S232.84 224 224 224zM288 224C279.1600000000001 224 272 231.16 272 240S279.1600000000001 256 288 256S304 248.84 304 240S296.84 224 288 224zM480 448C426.98 448 384 362.04 384 256S426.98 64 480 64S576 149.96 576 256S533.02 448 480 448zM480 192C462.33 192 448 220.65 448 256S462.33 320 480 320S512 291.35 512 256S497.67 192 480 192z" />
+    <glyph glyph-name="toilet"
+      unicode="&#xF7D8;"
+      horiz-adv-x="384" d=" M368 400C376.8 400 384 407.2 384 416V432C384 440.8 376.8 448 368 448H16C7.2 448 0 440.8 0 432V416C0 407.2 7.2 400 16 400H32V243.3C11.8 233.2 0 221.1 0 208C0 140.8 34.6 81.8 86.8 47.5L65.4 -22.7C59.1 -43.2 74.5 -64 96 -64H288C309.5 -64 324.9 -43.2 318.6 -22.7L297.2000000000001 47.5C349.4 81.8 384 140.8 384 208C384 221.1 372.2 233.2 352 243.3V400H368zM80 376C80 380.4 83.6 384 88 384H136C140.4 384 144 380.4 144 376V360C144 355.6 140.4 352 136 352H88C83.6 352 80 355.6 80 360V376zM192 176C114.9 176 52.4 190.3 52.4 208S114.9 240 192 240S331.6 225.7 331.6 208S269.1 176 192 176z" />
+    <glyph glyph-name="tombstone-alt"
+      unicode="&#xF721;"
+      horiz-adv-x="512" d=" M496 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-16C512 -7.16 504.84 0 496 0zM448 256C448 362.04 362.04 448 256 448S64 362.04 64 256V32H448V256z" />
+    <glyph glyph-name="tombstone"
+      unicode="&#xF720;"
+      horiz-adv-x="512" d=" M496 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-16C512 -7.16 504.84 0 496 0zM448 256C448 362.04 362.04 448 256 448S64 362.04 64 256V32H448V256zM352 264C352 255.16 344.84 248 336 248H280V120C280 111.16 272.84 104 264 104H248C239.16 104 232 111.16 232 120V248H176C167.16 248 160 255.16 160 264V280C160 288.8400000000001 167.16 296 176 296H232V344C232 352.8400000000001 239.16 360 248 360H264C272.84 360 280 352.8400000000001 280 344V296H336C344.84 296 352 288.8400000000001 352 280V264z" />
+    <glyph glyph-name="toolbox"
+      unicode="&#xF552;"
+      horiz-adv-x="512" d=" M502.63 233.37L457.38 278.62C451.38 284.62 443.24 287.99 434.75 287.99H384V368C384 394.51 362.51 416 336 416H176C149.49 416 128 394.51 128 368V288H77.25C68.76 288 60.63 284.63 54.62 278.63L9.37 233.37C3.37 227.37 0 219.23 0 210.74V128H128V144C128 152.84 135.16 160 144 160H176C184.84 160 192 152.84 192 144V128H320V144C320 152.84 327.1600000000001 160 336 160H368C376.84 160 384 152.84 384 144V128H512V210.75C512 219.23 508.63 227.37 502.63 233.37zM320 288H192V352H320V288zM384 80C384 71.16 376.84 64 368 64H336C327.1600000000001 64 320 71.16 320 80V96H192V80C192 71.16 184.84 64 176 64H144C135.16 64 128 71.16 128 80V96H0V0C0 -17.67 14.33 -32 32 -32H480C497.67 -32 512 -17.67 512 0V96H384V80z" />
+    <glyph glyph-name="tools"
+      unicode="&#xF7D9;"
+      horiz-adv-x="512" d=" M501.1 52.3L384 169.4C360.9 192.5 326.4 197 298.6 183.3L192 289.9V352L64 448L0 384L96 256H158.1L264.7 149.4C251.1 121.6 255.5 87.1 278.6 64L395.7 -53.1C410.3 -67.7 433.8999999999999 -67.7 448.3999999999999 -53.1L501.0999999999999 -0.4C515.5999999999999 14.2 515.5999999999999 37.8 501.0999999999999 52.3zM331.7 223C360 223 386.6 212 406.6 192L426 172.6C441.8 179.5 456.8 189.1 469.8 202.1C506.9 239.2 519.5 291.4000000000001 507.7 338.8C505.5 347.8 494.2 350.9 487.6 344.3L413.2 269.9L345.3 281.2000000000001L334 349.1L408.4 423.5C415 430.1 411.8 441.4 402.7 443.7C355.3 455.4 303.1 442.8 266.1 405.8C237.6 377.3 224.2 339.7 224.9 302.2L307 220.1C315.1 222 323.5 223 331.7 223zM227.8 141L171.1 197.7L18.7 45.2C-6.3 20.2 -6.3 -20.3 18.7 -45.3S84.2 -70.2999999999999 109.2 -45.3L232.8 78.3C225.2 98.1999999999999 222.9 119.9 227.8 141zM64 -24C50.8 -24 40 -13.2 40 0C40 13.3 50.7 24 64 24S88 13.3 88 0C88 -13.2 77.3 -24 64 -24z" />
+    <glyph glyph-name="tooth"
+      unicode="&#xF5C9;"
+      horiz-adv-x="448" d=" M443.98 351.75C432.9700000000001 396.9700000000001 396.87 433.81 351.9700000000001 445.4700000000001C319.7800000000001 453.83 288.9700000000001 440.37 262.8300000000001 421.14C259.5800000000001 418.75 255.8700000000001 417.4100000000001 252.3300000000001 415.66L280.6500000000001 397.45C288.0700000000001 392.68 290.23 382.78 285.4500000000001 375.3400000000001C280.9900000000001 368.39 271.1800000000001 365.48 263.3400000000001 370.54L162.83 435.1600000000001C142.13 446.01 119.45 451.56 96.02 445.4700000000001C51.12 433.8 15.02 396.9700000000001 4.01 351.75C-6.12 310.13 3.59 270.94 25.51 241.32C48.87 209.75 58.19 172.66 61.8 133.97C66.2 86.8100000000001 72.13 39.8100000000001 82.74 -6.35L90.54 -40.3C93.73 -54.17 106.03 -63.9999999999999 120.21 -63.9999999999999C134.18 -63.9999999999999 146.36 -54.4499999999999 149.75 -40.8399999999999L184.22 97.58C188.78 115.9 205.18 128.7400000000001 223.98 128.7400000000001S259.18 115.8900000000001 263.74 97.58L298.2100000000001 -40.8399999999999C301.6 -54.4499999999999 313.7800000000001 -63.9999999999999 327.7500000000001 -63.9999999999999C341.9300000000001 -63.9999999999999 354.2300000000001 -54.17 357.4200000000001 -40.3L365.2200000000001 -6.35C375.8300000000001 39.8 381.7500000000001 86.8100000000001 386.1600000000001 133.97C389.7700000000001 172.67 399.0900000000001 209.75 422.4500000000001 241.32C444.4000000000001 270.93 454.1100000000001 310.12 443.9800000000002 351.75z" />
+    <glyph glyph-name="toothbrush"
+      unicode="&#xF635;"
+      horiz-adv-x="640" d=" M624 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H624C632.84 -64 640 -56.84 640 -48V-16C640 -7.16 632.84 0 624 0zM64 32V216C64 220.42 60.42 224 56 224H40C35.58 224 32 220.42 32 216V32H64zM128 32V216C128 220.42 124.42 224 120 224H104C99.58 224 96 220.42 96 216V32H128zM192 32V216C192 220.42 188.42 224 184 224H168C163.58 224 160 220.42 160 216V32H192zM256 32V216C256 220.42 252.42 224 248 224H232C227.58 224 224 220.42 224 216V32H256zM320 32V216C320 220.42 316.42 224 312 224H296C291.58 224 288 220.42 288 216V32H320zM384 32V216C384 220.42 380.42 224 376 224H360C355.58 224 352 220.42 352 216V32H384zM416 32H448V216C448 220.42 444.42 224 440 224H424C419.58 224 416 220.42 416 216V32zM64 256H416C451.35 256 480 284.65 480 320C480 390.69 422.69 448 352 448C375.62 424.38 358.89 384 325.49 384H64C28.65 384 0 355.35 0 320S28.65 256 64 256z" />
+    <glyph glyph-name="torah"
+      unicode="&#xF6A0;"
+      horiz-adv-x="448" d=" M448 89.6V422.4C448 438.4 438.4 448 422.4 448H96C41.6 448 0 406.4 0 352V32C0 -22.4 41.6 -64 96 -64H422.4C435.2 -64 448 -54.4 448 -38.4V-22.4C448 -16 444.8 -9.6 438.4 -3.2C435.2 12.8 435.2 57.6 438.4 70.4C444.8 73.6 448 80 448 89.6zM139.11 306.79C136.34 311.2 139.51 316.93 144.71 316.93H197.79C198.69 316.93 199.52 317.39 200 318.15L234.4000000000001 372.91C237.0000000000001 377.04 243.0100000000001 377.04 245.6100000000001 372.91L280.0100000000001 318.15A2.61 2.61 0 0 1 282.2200000000001 316.93H335.3C340.5 316.93 343.67 311.2000000000001 340.9000000000001 306.79L314.01 264L340.89 221.21C343.66 216.81 340.49 211.08 335.29 211.08H282.21C281.31 211.08 280.48 210.62 280 209.86L245.6 155.1C243 150.97 236.99 150.97 234.39 155.1L200 209.85A2.61 2.61 0 0 1 197.79 211.07H144.71C139.51 211.07 136.34 216.8 139.11 221.2L165.99 264L139.11 306.79zM380.8 0H96C76.8 0 64 12.8 64 32S80 64 96 64H380.8V0z" />
+    <glyph glyph-name="torii-gate"
+      unicode="&#xF6A1;"
+      horiz-adv-x="512" d=" M376.45 416H135.55A303.17 303.17 0 0 0 0 448V352C0 334.33 14.33 320 32 320H64V256H16C7.16 256 0 248.84 0 240V208C0 199.16 7.16 192 16 192H64V-48C64 -56.84 71.16 -64 80 -64H112C120.84 -64 128 -56.84 128 -48V192H384V-48C384 -56.84 391.1600000000001 -64 400 -64H432C440.84 -64 448 -56.84 448 -48V192H496C504.84 192 512 199.16 512 208V240C512 248.84 504.84 256 496 256H448V320H480C497.67 320 512 334.33 512 352V448A303.17 303.17 0 0 0 376.45 416zM128 320H224V256H128V320zM384 256H288V320H384V256z" />
+    <glyph glyph-name="tornado"
+      unicode="&#xF76F;"
+      horiz-adv-x="512" d=" M393.8 352H12.2C21.9 317.8 36.7 289.9 54.9 266.7H404.7000000000001C390.6 289.8 384.1 316.9 393.8000000000001 352zM429.2 422.8C436.6 433.4 429.2 448 416.3 448H16.1C7.1 448 -0.3 440.4 0 431.5C0.6 414.5 2.5 398.9 5.1 384H406.2000000000001C412.1 396.1 419.5000000000001 408.9 429.2000000000001 422.8zM299 117.3C332 96.8 353.4 71.5 352.3 32H477.8C502.9 66.4 512.5 94 511.9 117.3H299zM429.9 234.7H84.9C130 194.3 185.9 171.1 235 149.4H504.4C489.9 181.5000000000001 457 206.3000000000001 429.9 234.7000000000001zM331.8 -41.1C326.8 -51.7 334.5 -64 346.2 -64H373.5999999999999C381.4999999999999 -64 389.3999999999999 -61 395.2999999999999 -55.7C417.9999999999999 -35.4 436.2999999999999 -17.1 451.6999999999999 0H347.4C344 -12.5 339 -26.1 331.8 -41.1z" />
+    <glyph glyph-name="tractor"
+      unicode="&#xF722;"
+      horiz-adv-x="640" d=" M528 112C479.4 112 440 72.6 440 24S479.4 -64 528 -64S616 -24.6 616 24S576.6 112 528 112zM528 0C514.77 0 504 10.77 504 24S514.77 48 528 48S552 37.23 552 24S541.23 0 528 0zM608 288H544V328.2C544 342.32 548.7 355.9600000000001 557.15 367.04C561.5699999999999 372.8400000000001 560.6999999999999 381.1 555.8299999999999 386.53L534.2 410.7C527.5400000000001 418.15 515.88 417.62 509.5000000000001 409.92C490.58 387.1 480 358.19 480 328.2V288H377.67L321.58 418.86A47.914 47.914 0 0 1 277.45 448H144C117.53 448 96 426.4700000000001 96 400V253.48C87.37 260.21 75.04 259.94 67.11 252.01L36 220.9C27.41 212.31 27.41 198.38 36 189.79L41.06 184.73C36.07 175.47 32.1 165.91 29.15 156.01H22C9.85 156.01 0 146.16 0 134.01V90.01C0 77.86 9.85 68.01 22 68.01H29.14C32.1 58.1 36.06 48.55 41.05 39.28L35.99 34.22C27.4 25.63 27.4 11.7 35.99 3.11L67.1 -28C75.69 -36.59 89.62 -36.59 98.21 -28L103.27 -22.94C112.53 -27.93 122.09 -31.9 131.99 -34.85V-42C131.99 -54.15 141.84 -64 153.99 -64H197.99C210.14 -64 219.99 -54.15 219.99 -42V-34.86C229.89 -31.91 239.45 -27.94 248.71 -22.95L253.77 -28.01C262.36 -36.6 276.29 -36.6 284.88 -28.01L315.99 3.1C324.58 11.69 324.58 25.62 315.99 34.21L310.93 39.27C315.92 48.53 319.89 58.09 322.8400000000001 67.99H330C342.15 67.99 352 77.84 352 89.99V95.99H432.54C454.45 124.98 488.86 143.99 528 143.99C546.64 143.99 564.07 139.38 579.8 131.79L630.62 182.61C636.62 188.61 639.99 196.75 639.99 205.24V256C640 273.67 625.67 288 608 288zM176 32C131.82 32 96 67.82 96 112S131.82 192 176 192S256 156.18 256 112S220.18 32 176 32zM198 288H160V384H266.89L308.04 288H198z" />
+    <glyph glyph-name="trademark"
+      unicode="&#xF25C;"
+      horiz-adv-x="640" d=" M97.119 284.867H12C5.373 284.867 0 290.24 0 296.867V340C0 346.627 5.373 352 12 352H260.559C267.186 352 272.559 346.627 272.559 340V296.867C272.559 290.24 267.186 284.867 260.559 284.867H175.44V44C175.44 37.373 170.067 32 163.44 32H109.118C102.491 32 97.118 37.373 97.118 44V284.867zM329.825 352H395.25A12 12 0 0 0 406.596 343.907L450.355 216.839C457.516 196.251 466.466 164.027 466.466 164.027H467.362S476.312 196.251 483.473 216.839L527.231 343.907A12 12 0 0 0 538.577 352H603.987A12 12 0 0 0 615.948 340.9700000000001L639.96 44.97C640.527 37.983 635.009 32 627.999 32H573.898A12 12 0 0 0 561.926 43.182L552.844 176.112C551.0540000000001 200.28 552.844 229.8180000000001 552.844 229.8180000000001H551.9480000000001S541.2070000000001 196.2520000000001 534.046 176.112L503.3460000000001 91.381A12 12 0 0 0 492.0640000000001 83.4690000000001H441.7620000000001A12 12 0 0 0 430.4800000000001 91.381L399.7800000000001 176.112C392.6190000000001 196.252 381.8770000000001 229.8180000000001 381.8770000000001 229.8180000000001H380.9820000000001S382.7720000000001 200.28 380.9820000000001 176.112L371.9000000000001 43.182C371.4720000000001 36.887 366.2400000000001 32 359.9300000000001 32H305.4C298.383 32 292.864 37.994 293.441 44.987L317.866 340.987A11.999000000000002 11.999000000000002 0 0 0 329.825 352z" />
+    <glyph glyph-name="traffic-cone"
+      unicode="&#xF636;"
+      horiz-adv-x="512" d=" M362.12 256H149.88L111.67 160H400.32L362.12 256zM289.73 437.92A16.01 16.01 0 0 1 274.86 448H237.14A16.01 16.01 0 0 1 222.27 437.92L175.35 320H336.65L289.73 437.92zM496 0H464L425.79 96H86.21L48 0H16C7.16 0 0 -7.16 0 -16V-48C0 -56.84 7.16 -64 16 -64H496C504.84 -64 512 -56.84 512 -48V-16C512 -7.16 504.84 0 496 0z" />
+    <glyph glyph-name="traffic-light-go"
+      unicode="&#xF638;"
+      horiz-adv-x="384" d=" M192 240C174.36 240 160 225.64 160 208S174.36 176 192 176S224 190.36 224 208S209.64 240 192 240zM192 368C174.36 368 160 353.64 160 336S174.36 304 192 304S224 318.36 224 336S209.64 368 192 368zM384 256H320V293.88C357.2 307.1 384 342.26 384 384H320V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V384H0C0 342.26 26.8 307.1 64 293.88V256H0C0 214.26 26.8 179.1 64 165.88V128H0C0 85.16 28.25 49.31 66.99 36.95C79.42 -20.72 130.6 -64 192 -64S304.58 -20.72 317.01 36.95C355.75 49.31 384 85.16 384 128H320V165.88C357.2 179.1 384 214.26 384 256zM192 32C165.49 32 144 53.49 144 80S165.49 128 192 128S240 106.51 240 80S218.51 32 192 32zM192 160C165.49 160 144 181.49 144 208S165.49 256 192 256S240 234.51 240 208S218.51 160 192 160zM192 288C165.49 288 144 309.49 144 336S165.49 384 192 384S240 362.51 240 336S218.51 288 192 288z" />
+    <glyph glyph-name="traffic-light-slow"
+      unicode="&#xF639;"
+      horiz-adv-x="384" d=" M192 112C174.36 112 160 97.64 160 80S174.36 48 192 48S224 62.36 224 80S209.64 112 192 112zM384 256H320V293.88C357.2 307.1 384 342.26 384 384H320V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V384H0C0 342.26 26.8 307.1 64 293.88V256H0C0 214.26 26.8 179.1 64 165.88V128H0C0 85.16 28.25 49.31 66.99 36.95C79.42 -20.72 130.6 -64 192 -64S304.58 -20.72 317.01 36.95C355.75 49.31 384 85.16 384 128H320V165.88C357.2 179.1 384 214.26 384 256zM192 32C165.49 32 144 53.49 144 80S165.49 128 192 128S240 106.51 240 80S218.51 32 192 32zM192 160C165.49 160 144 181.49 144 208S165.49 256 192 256S240 234.51 240 208S218.51 160 192 160zM192 288C165.49 288 144 309.49 144 336S165.49 384 192 384S240 362.51 240 336S218.51 288 192 288zM192 368C174.36 368 160 353.64 160 336S174.36 304 192 304S224 318.36 224 336S209.64 368 192 368z" />
+    <glyph glyph-name="traffic-light-stop"
+      unicode="&#xF63A;"
+      horiz-adv-x="384" d=" M192 112C174.36 112 160 97.64 160 80S174.36 48 192 48S224 62.36 224 80S209.64 112 192 112zM192 240C174.36 240 160 225.64 160 208S174.36 176 192 176S224 190.36 224 208S209.64 240 192 240zM384 256H320V293.88C357.2 307.1 384 342.26 384 384H320V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V384H0C0 342.26 26.8 307.1 64 293.88V256H0C0 214.26 26.8 179.1 64 165.88V128H0C0 85.16 28.25 49.31 66.99 36.95C79.42 -20.72 130.6 -64 192 -64S304.58 -20.72 317.01 36.95C355.75 49.31 384 85.16 384 128H320V165.88C357.2 179.1 384 214.26 384 256zM192 32C165.49 32 144 53.49 144 80S165.49 128 192 128S240 106.51 240 80S218.51 32 192 32zM192 160C165.49 160 144 181.49 144 208S165.49 256 192 256S240 234.51 240 208S218.51 160 192 160zM192 288C165.49 288 144 309.49 144 336S165.49 384 192 384S240 362.51 240 336S218.51 288 192 288z" />
+    <glyph glyph-name="traffic-light"
+      unicode="&#xF637;"
+      horiz-adv-x="384" d=" M384 256H320V293.88C357.2 307.1 384 342.26 384 384H320V416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V384H0C0 342.26 26.8 307.1 64 293.88V256H0C0 214.26 26.8 179.1 64 165.88V128H0C0 85.16 28.25 49.31 66.99 36.95C79.42 -20.72 130.6 -64 192 -64S304.58 -20.72 317.01 36.95C355.75 49.31 384 85.16 384 128H320V165.88C357.2 179.1 384 214.26 384 256zM192 32C165.49 32 144 53.49 144 80S165.49 128 192 128S240 106.51 240 80S218.51 32 192 32zM192 160C165.49 160 144 181.49 144 208S165.49 256 192 256S240 234.51 240 208S218.51 160 192 160zM192 288C165.49 288 144 309.49 144 336S165.49 384 192 384S240 362.51 240 336S218.51 288 192 288z" />
+    <glyph glyph-name="train"
+      unicode="&#xF238;"
+      horiz-adv-x="448" d=" M448 352V96C448 44.185 386.376 0 317.978 0L380.9580000000001 -49.721C386.905 -54.417 383.562 -64 376 -64H72C64.422 -64 61.108 -54.406 67.043 -49.721L130.022 0C61.82 0 0 44.046 0 96V352C0 405.019 64 448 128 448H320C385 448 448 405.019 448 352zM400 216V328C400 341.255 389.255 352 376 352H72C58.745 352 48 341.255 48 328V216C48 202.745 58.745 192 72 192H376C389.255 192 400 202.745 400 216zM224 152C193.072 152 168 126.928 168 96S193.072 40 224 40S280 65.072 280 96S254.928 152 224 152z" />
+    <glyph glyph-name="tram"
+      unicode="&#xF7DA;"
+      horiz-adv-x="512" d=" M288 384C305.7 384 320 398.3 320 416S305.7 448 288 448S256 433.7 256 416S270.3 384 288 384zM511.5 396.1C509.2 404.7 500.5 409.7 491.9 407.4L11.9 279.4C3.4 277.1 -1.7 268.4 0.6 259.8C2.5 252.7 8.9 248 16 248C17.4 248 18.8 248.2 20.1 248.5L240 307.2V224H64C46.3 224 32 209.7 32 192V-32C32 -49.7 46.3 -64 64 -64H448C465.7 -64 480 -49.7 480 -32V192C480 209.7 465.7 224 448 224H272V315.7L500.1 376.5C508.7 378.8 513.7 387.6 511.5 396.1zM176 64H80V160H176V64zM336 160H432V64H336V160zM304 160V64H208V160H304zM192 352C209.7 352 224 366.3 224 384S209.7 416 192 416S160 401.7 160 384S174.3 352 192 352z" />
+    <glyph glyph-name="transgender-alt"
+      unicode="&#xF225;"
+      horiz-adv-x="480" d=" M468 448H389C378.3 448 373 435.1 380.5 427.5L397.4 410.6L316.7 329.9C294.5 343.9 268.2 352 240 352C211.8 352 185.5 343.9 163.3 329.9L146.8 346.4L166.6 366.2C171.3 370.9 171.3 378.5 166.6 383.2L138.3 411.5C133.6 416.2 126 416.2 121.3 411.5L101.5 391.7L82.5 410.7L99.4 427.6C107.1 435.1 101.7 448 91 448H12C5.4 448 0 442.6 0 436V357C0 346.3 12.9 341 20.5 348.5L37.4 365.4L56.4 346.4L36.6 326.6C31.9 321.9 31.9 314.3 36.6 309.6L64.9 281.3C69.6 276.6 77.2 276.6 81.9 281.3L101.7 301.1L118.2 284.6C104.1 262.5 96 236.2 96 208C96 139.5 143.9 82.1 208 67.6V40H172C165.4 40 160 34.6 160 28V-12C160 -18.6 165.4 -24 172 -24H208V-52C208 -58.6 213.4 -64 220 -64H260C266.6 -64 272 -58.6 272 -52V-24H308C314.6 -24 320 -18.6 320 -12V28C320 34.6 314.6 40 308 40H272V67.6C336.1 82.2000000000001 384 139.5 384 208C384 236.2 375.9 262.5 361.9 284.7000000000001L442.6 365.4000000000001L459.4999999999999 348.5000000000001C467.1 340.9000000000001 479.9999999999999 346.3000000000001 479.9999999999999 357.0000000000001V436C479.9999999999999 442.6 474.6 448 467.9999999999999 448zM240 128C195.9 128 160 163.9 160 208S195.9 288 240 288S320 252.1 320 208S284.1 128 240 128z" />
+    <glyph glyph-name="transgender"
+      unicode="&#xF224;"
+      horiz-adv-x="384" d=" M372 448H293C282.3 448 277 435.1 284.5 427.5L301.4 410.6L220.7 329.9C198.5 343.9 172.2 352 144 352C64.5 352 0 287.5 0 208C0 139.5 47.9 82.1 112 67.6V40H76C69.4 40 64 34.6 64 28V-12C64 -18.6 69.4 -24 76 -24H112V-52C112 -58.6 117.4 -64 124 -64H164C170.6 -64 176 -58.6 176 -52V-24H212C218.6 -24 224 -18.6 224 -12V28C224 34.6 218.6 40 212 40H176V67.6C240.1 82.2000000000001 288 139.5 288 208C288 236.2 279.9 262.5 265.9 284.7000000000001L346.6 365.4000000000001L363.5 348.5000000000001C371.1 340.9000000000001 384 346.3000000000001 384 357.0000000000001V436C384 442.6 378.6 448 372 448zM144 128C99.9 128 64 163.9 64 208S99.9 288 144 288S224 252.1 224 208S188.1 128 144 128z" />
+    <glyph glyph-name="trash-alt"
+      unicode="&#xF2ED;"
+      horiz-adv-x="448" d=" M0 364V392C0 405.3 10.7 416 24 416H136L145.4 434.7C149.4 442.9 157.7 448 166.8 448H281.1C290.2000000000001 448 298.5 442.9 302.6 434.7L312 416H424C437.3 416 448 405.3 448 392V364C448 357.4 442.6 352 436 352H12C5.4 352 0 357.4 0 364zM416 308V-16C416 -42.5 394.5 -64 368 -64H80C53.5 -64 32 -42.5 32 -16V308C32 314.6 37.4 320 44 320H404C410.6 320 416 314.6 416 308zM144 240C144 248.8 136.8 256 128 256S112 248.8 112 240V16C112 7.2 119.2 0 128 0S144 7.2 144 16V240zM240 240C240 248.8 232.8 256 224 256S208 248.8 208 240V16C208 7.2 215.2 0 224 0S240 7.2 240 16V240zM336 240C336 248.8 328.8 256 320 256S304 248.8 304 240V16C304 7.2 311.2 0 320 0S336 7.2 336 16V240z" />
+    <glyph glyph-name="trash"
+      unicode="&#xF1F8;"
+      horiz-adv-x="448" d=" M0 364V392C0 405.3 10.7 416 24 416H136L145.4 434.7C149.4 442.9 157.7 448 166.8 448H281.1C290.2000000000001 448 298.5 442.9 302.6 434.7L312 416H424C437.3 416 448 405.3 448 392V364C448 357.4 442.6 352 436 352H12C5.4 352 0 357.4 0 364zM415.2 307.3L394.8 -19C393.2 -44.3 372.2 -64 346.9000000000001 -64H101.1C75.8 -64 54.8 -44.3 53.2 -19L32.8 307.3C32.4 314.2000000000001 37.9 320 44.8 320H403.3C410.1 320 415.6 314.2000000000001 415.2 307.3z" />
+    <glyph glyph-name="treasure-chest"
+      unicode="&#xF723;"
+      horiz-adv-x="576" d=" M0 0C0 -17.67 14.33 -32 32 -32H96V160H0V0zM0 320V192H96V416C42.98 416 0 373.02 0 320zM352 112C352 103.16 344.84 96 336 96H240C231.16 96 224 103.16 224 112V160H128V-32H448V160H352V112zM480 -32H544C561.67 -32 576 -17.67 576 0V160H480V-32zM128 192H224V240C224 248.84 231.16 256 240 256H336C344.84 256 352 248.84 352 240V192H448V416H128V192zM480 416V192H576V320C576 373.02 533.02 416 480 416zM304 144V208C304 216.84 296.84 224 288 224S272 216.84 272 208V144C272 135.16 279.1600000000001 128 288 128S304 135.16 304 144z" />
+    <glyph glyph-name="tree-alt"
+      unicode="&#xF400;"
+      horiz-adv-x="512" d=" M496 213C485.33 229 471 240.67 453 248H454C462.67 264 465.83 280.5 463.5 297.5S454.33 329.17 443 341.5S417.83 362 401.5 366S368.67 368.33 352 361C349.33 385.67 338.83 406.33 320.5 423S280.67 448 256 448S209.83 439.67 191.5 423S162.67 385.67 160 361C143.33 368.33 126.83 370 110.5 366S80.33 353.83 69 341.5S50.83 314.5 48.5 297.5S49.67 264 59 248C41 240.67 26.67 229 16 213S0 179.33 0 160C0 133.33 9.33 110.67 28 92S69.33 64 96 64H224V7.55L193.71 -40.85C188.39 -51.4899999999999 196.13 -64.01 208.02 -64.01H303.98C315.87 -64.01 323.61 -51.49 318.29 -40.85L288 7.55V64H416C442.67 64 465.33 73.33 484 92S512 133.33 512 160C512 179.33 506.67 197 496 213z" />
+    <glyph glyph-name="tree-christmas"
+      unicode="&#xF7DB;"
+      horiz-adv-x="448" d=" M224 288L250.7 341.3L304 368L250.7 394.7L224 448L197.3 394.7L144 368L197.3 341.3L224 288zM439.6 -7.6L349.8 96H385.8C411.4000000000001 96 425.3 122.3 409 139.5L262.8 294L224 240L185.2 294L39 139.5C22.7 122.3 36.6 96 62.2 96H98.2L8.4 -7.6C-10.6 -29.5 4.6 -64 33.1 -64H414.8C443.4000000000001 -64 458.5 -29.4 439.6 -7.6zM160 136C146.7 136 136 146.7 136 160S146.7 184 160 184S184 173.3 184 160S173.3 136 160 136zM288 8C274.7 8 264 18.7 264 32S274.7 56 288 56S312 45.3 312 32S301.3 8 288 8z" />
+    <glyph glyph-name="tree-decorated"
+      unicode="&#xF7DC;"
+      horiz-adv-x="448" d=" M439.6 -7.6L349.8 96H385.8C411.4000000000001 96 425.3 125.2 409 144.5L314.1 256H358.9000000000001C380.2000000000001 256 391.8 278.5 378.2000000000001 293.3L243.3 439.8C233.3 450.7 214.7 450.7 204.7 439.8L69.9 293.3C56.3 278.5 67.9 256 89.2 256H134L39 144.5C22.7 125.2 36.6 96 62.2 96H98.2L8.4 -7.6C-10.6 -29.5 4.6 -64 33.1 -64H414.8C443.4000000000001 -64 458.5 -29.4 439.6 -7.6zM160 136C146.7 136 136 146.7 136 160S146.7 184 160 184S184 173.3 184 160S173.3 136 160 136zM232 288C232 301.3 242.7 312 256 312S280 301.3 280 288S269.3 264 256 264S232 274.7 232 288zM288 8C274.7 8 264 18.7 264 32S274.7 56 288 56S312 45.3 312 32S301.3 8 288 8z" />
+    <glyph glyph-name="tree-large"
+      unicode="&#xF7DD;"
+      horiz-adv-x="448" d=" M439.6 -7.6L349.8 96H385.8C411.4000000000001 96 425.3 125.2 409 144.5L314.1 256H358.9000000000001C380.2000000000001 256 391.8 278.5 378.2000000000001 293.3L243.3 439.8C233.3 450.7 214.7 450.7 204.7 439.8L69.9 293.3C56.3 278.5 67.9 256 89.2 256H134L39 144.5C22.7 125.2 36.6 96 62.2 96H98.2L8.4 -7.6C-10.6 -29.5 4.6 -64 33.1 -64H414.8C443.4000000000001 -64 458.5 -29.4 439.6 -7.6z" />
+    <glyph glyph-name="tree"
+      unicode="&#xF1BB;"
+      horiz-adv-x="384" d=" M378.31 69.51L298.42 160H329.05C338.06 160 346.0300000000001 165 349.8300000000001 173.06C353.6300000000001 181.1 352.3800000000001 190.32 346.5500000000001 197.11L268.42 288H297.31C306.4100000000001 288 314.61 293.35 318.17 301.61C321.69 309.74 320.0300000000001 319.2000000000001 313.93 325.69L203.66 443.17C197.63 449.62 186.38 449.62 180.34 443.17L70.06 325.69C63.96 319.2 62.31 309.74 65.82 301.61C69.38 293.35 77.59 288 86.69 288H115.58L37.44 197.09C31.63 190.31 30.38 181.1 34.17 173.05C37.97 165 45.93 160 54.95 160H85.58L5.69 69.51C-0.31 62.72 -1.67 53.42 2.13 45.25C5.88 37.2 14.13 32 23.14 32H160V7.55L129.71 -40.85C124.39 -51.4899999999999 132.13 -64.01 144.02 -64.01H239.98C251.87 -64.01 259.61 -51.49 254.29 -40.85L224 7.55V32H360.86C369.87 32 378.12 37.2 381.87 45.25C385.67 53.42 384.31 62.72 378.31 69.51z" />
+    <glyph glyph-name="trees"
+      unicode="&#xF724;"
+      horiz-adv-x="640" d=" M298.42 160H329.05C338.06 160 346.0300000000001 165 349.8300000000001 173.06C353.6300000000001 181.1 352.3800000000001 190.32 346.5500000000001 197.11L268.42 288H297.31C306.4100000000001 288 314.61 293.35 318.17 301.61C321.69 309.74 320.0300000000001 319.2000000000001 313.93 325.69L203.66 443.17C197.63 449.62 186.38 449.62 180.34 443.17L70.06 325.69C63.96 319.2 62.31 309.74 65.82 301.61C69.39 293.35 77.59 288 86.69 288H115.58L37.44 197.09C31.63 190.31 30.38 181.1 34.17 173.05C37.97 165 45.93 160 54.95 160H85.58L5.69 69.51C-0.31 62.72 -1.67 53.42 2.13 45.25C5.88 37.2 14.13 32 23.14 32H160V7.55L129.71 -40.85C124.39 -51.4899999999999 132.13 -64.01 144.02 -64.01H239.98C251.87 -64.01 259.61 -51.49 254.29 -40.85L224 7.55V32H360.87C369.88 32 378.13 37.2 381.88 45.25C385.68 53.42 384.32 62.72 378.32 69.51L298.42 160zM634.31 69.51L554.42 160H585.05C594.06 160 602.03 165 605.8299999999999 173.06C609.6299999999999 181.1 608.3799999999999 190.32 602.55 197.11L524.42 288H553.31C562.41 288 570.6099999999999 293.35 574.17 301.61C577.6899999999999 309.74 576.03 319.2000000000001 569.93 325.69L459.66 443.17C453.6300000000001 449.62 442.38 449.62 436.3400000000001 443.17L341.2800000000001 341.91C352.37 326.54 355.2500000000001 306.61 347.62 288.95C343.62 279.68 337.24 271.92 329.36 266.27L370.9000000000001 217.95C384.8300000000001 201.7 387.9400000000001 178.72 378.8400000000001 159.43C374.6500000000001 150.54 368.3800000000001 143.19 360.73 137.85L402.35 90.7000000000001C411 80.9 415.69 76.5500000000001 416 64.0100000000001V7.5600000000001L385.71 -40.8399999999999C380.39 -51.4799999999999 388.13 -63.9999999999999 400.02 -63.9999999999999H495.98C507.8699999999999 -63.9999999999999 515.61 -51.48 510.29 -40.8399999999999L480 7.55V32H616.87C625.88 32 634.13 37.2 637.88 45.25C641.67 53.42 640.31 62.72 634.31 69.51z" />
+    <glyph glyph-name="triangle"
+      unicode="&#xF2EC;"
+      horiz-adv-x="576" d=" M329.6 424C311.2000000000001 456 264.9000000000001 456 246.4000000000001 424L6.5 8C-11.9 -23.9 11.1 -64 48.1 -64H528C564.9 -64 588 -24 569.6 8L329.6 424z" />
+    <glyph glyph-name="trophy-alt"
+      unicode="&#xF2EB;"
+      horiz-adv-x="576" d=" M552 384H448V424C448 437.3 437.3 448 424 448H152C138.7 448 128 437.3 128 424V384H24C10.7 384 0 373.3 0 360V304C0 237.5 77.9 172.3 171.9 161.6C203.3 109.5 240 88 240 88V16H192C156.7 16 128 -4.7 128 -40V-52C128 -58.6 133.4 -64 140 -64H436C442.6 -64 448 -58.6 448 -52V-40C448 -4.7 419.3 16 384 16H336V88S372.7 109.5 404.1 161.6C498.4 172.4 576 237.7 576 304V360C576 373.3 565.3 384 552 384zM64 304V320H128.2C129.2 287.4 134 258.8 141 233.8C93.5 250.2 64 283.7000000000001 64 304zM512 304C512 283.8 482.6 250.2 435 233.8C442 258.8 446.8 287.4 447.8 320H512V304zM384.7 299.3L345.1 260.7000000000001L354.5 206.1C356.2 196.3 345.8 188.9 337.1 193.5L288.1 219.3000000000001L239.1 193.5C230.3 188.9 220 196.4 221.7 206.1L231.1 260.7000000000001L191.5 299.3C184.4 306.2000000000001 188.3 318.3 198.2 319.8L253 327.8L277.5 377.4C281.8999999999999 386.3 294.6 386.3 299 377.4L323.5 327.8L378.3 319.8C387.9 318.3 391.8 306.2000000000001 384.7 299.3z" />
+    <glyph glyph-name="trophy"
+      unicode="&#xF091;"
+      horiz-adv-x="576" d=" M552 384H448V424C448 437.3 437.3 448 424 448H152C138.7 448 128 437.3 128 424V384H24C10.7 384 0 373.3 0 360V304C0 268.3 22.5 231.6 61.9 203.3C93.4 180.6 131.7 166.2 171.9 161.6C203.3 109.5 240 88 240 88V16H192C156.7 16 128 -4.7 128 -40V-52C128 -58.6 133.4 -64 140 -64H436C442.6 -64 448 -58.6 448 -52V-40C448 -4.7 419.3 16 384 16H336V88S372.7 109.5 404.1 161.6C444.4000000000001 166.2000000000001 482.7 180.6 514.1 203.3C553.4 231.6 576 268.3 576 304V360C576 373.3 565.3 384 552 384zM99.3 255.2C74.9 272.8 64 292.4 64 304V320H128.2C129.2 287.4 134 258.8 141 233.8C125.9 239 111.8 246.2 99.3 255.2zM512 304C512 287.9 494.3 267.9 476.7 255.2C464.2 246.2 450 239 434.9 233.8C441.9 258.8 446.7 287.4 447.7 320H512V304z" />
+    <glyph glyph-name="truck-container"
+      unicode="&#xF4DC;"
+      horiz-adv-x="640" d=" M621.3 210.7L562.8 269.2C550.8 281.2 534.5 287.9 517.5 287.9H464C446.3 287.9 432 273.6 432 255.9V111.9H32C14.3 111.9 0 97.6 0 79.9V52.1C0 11.3 28.7 -26 69.1 -31.4C99.8 -35.5000000000001 127.4 -21.9 144 0.3C162.4 -24.4 194.4 -38.4 229.3 -29.4C254.5 -22.9 275.4000000000001 -3.2 283.7 21.4C288.6 36.2 289.1 50.6 286.5 63.8H449.7C447 50.6 447.5 36.1999999999999 452.5 21.4C460.9 -3.7 482.4 -23.5 508.1 -29.7C560.9 -42.5000000000001 608.1 -2.8000000000001 608.1 47.9C608.1 53.4 607.5 58.7 606.5 63.9H624C632.8 63.9 640 71.1 640 79.9V165.4C640 182.5 633.3 198.7 621.3 210.7zM80 16C62.4 16 48 30.4 48 48S62.4 80 80 80S112 65.6 112 48S97.6 16 80 16zM208 16C190.4 16 176 30.4 176 48S190.4 80 208 80S240 65.6 240 48S225.6 16 208 16zM528 16C510.4 16 496 30.4 496 48S510.4 80 528 80S560 65.6 560 48S545.6 16 528 16zM480 192V240H517.5C521.7 240 525.8 238.3 528.8 235.3L572.0999999999999 192H480zM32 144H368C385.7 144 400 158.3 400 176V384C400 401.7 385.7 416 368 416H32C14.3 416 0 401.7 0 384V176C0 158.3 14.3 144 32 144zM304 368H336V192H304V368zM224 368H256V192H224V368zM144 368H176V192H144V368zM64 368H96V192H64V368z" />
+    <glyph glyph-name="truck-couch"
+      unicode="&#xF4DD;"
+      horiz-adv-x="640" d=" M24.1 48L320 127.3V249.3C311.7 253.3 302 254.9 292.4 252.4C271.1 246.7 258.4 224.7 264.1 203.4L270.3 180.2L84.9 130.5L78.7 153.7C73 175 51 187.7 29.7 182C8.4 176.3 -4.3 154.3 1.4 133L24.1 48zM21.4 212.9C61 223.5 95.1 199.5 106.9 169.5L232 203C226.6 238.7 248.5 273.7 284.2 283.2C286.8 283.9 289.5 283.9 292.2 284.3C282.3 321.2 246.3 339.4 213.5 330.6L58.9 289.2C26.1 280.4 4.1 246.6 13.8 210.1C16.3 211.1 18.8 212.2 21.4 212.9zM384 448C366.3 448 352 433.7 352 416V92.4L5.9 -2C1.6 -3.2 -0.9 -7.6 0.3 -11.8L12.9 -58.1C14.1 -62.4 18.5 -64.9 22.7 -63.7L416.4 43.6999999999999C418.8 -16.1 467.6 -64 528 -64C589.9 -64 640 -13.9 640 48V448H384zM528 0C501.5 0 480 21.5 480 48S501.5 96 528 96S576 74.5 576 48S554.5 0 528 0z" />
+    <glyph glyph-name="truck-loading"
+      unicode="&#xF4DE;"
+      horiz-adv-x="640" d=" M50.2 72.4C52.5 63.9 61.3 58.8 69.8 61.1L286.2000000000001 119.1C294.7000000000001 121.4 299.8000000000001 130.2 297.5000000000001 138.7L247.8000000000001 324.2C245.5000000000001 332.7 236.7000000000001 337.8 228.2000000000001 335.5L151 314.7L175.8 222L114 205.5L89.2 298.2L11.9 277.5C3.4 275.2 -1.7 266.4 0.6 257.9L50.2 72.4zM384 448C366.3 448 352 433.7 352 416V92.4L5.9 -2C1.6 -3.2 -0.9 -7.6 0.3 -11.8L12.9 -58.1C14.1 -62.4 18.5 -64.9 22.7 -63.7L416.4 43.6999999999999C418.8 -16.1 467.6 -64 528 -64C589.9 -64 640 -13.9 640 48V448H384zM528 0C501.5 0 480 21.5 480 48S501.5 96 528 96S576 74.5 576 48S554.5 0 528 0z" />
+    <glyph glyph-name="truck-monster"
+      unicode="&#xF63B;"
+      horiz-adv-x="640" d=" M624 224H608V288C608 305.67 593.67 320 576 320H502.4L419.2200000000001 423.98A64.025 64.025 0 0 1 369.24 448H256C238.33 448 224 433.67 224 416V320H48C39.16 320 32 312.8400000000001 32 304V224H16C7.16 224 0 216.84 0 208V176C0 167.16 7.16 160 16 160H32.72C61.93 198.65 107.82 224 160 224S258.07 198.65 287.28 160H352.73C381.94 198.65 427.83 224 480.01 224S578.0799999999999 198.65 607.29 160H624C632.84 160 640 167.16 640 176V208C640 216.84 632.84 224 624 224zM288 320V384H369.24L420.44 320H288zM592 96H586.8C584.5999999999999 103.33 581.7299999999999 110.28 578.15 116.89L581.8199999999999 120.56C588.0699999999999 126.81 588.0699999999999 136.94 581.8199999999999 143.19L559.1899999999999 165.82C552.9399999999999 172.07 542.81 172.07 536.56 165.82L532.89 162.15A110.84999999999998 110.84999999999998 0 0 1 512 170.8V176C512 184.84 504.84 192 496 192H464C455.16 192 448 184.84 448 176V170.8C440.67 168.6 433.7200000000001 165.73 427.11 162.15L423.44 165.8200000000001C417.19 172.0700000000001 407.06 172.0700000000001 400.81 165.8200000000001L378.18 143.1900000000001C371.93 136.9400000000001 371.93 126.8100000000001 378.18 120.5600000000001L381.85 116.8900000000001A110.84999999999998 110.84999999999998 0 0 1 373.2 96H368C359.1600000000001 96 352 88.84 352 80V48C352 39.16 359.1600000000001 32 368 32H373.2C375.4 24.67 378.27 17.72 381.85 11.11L378.18 7.44C371.93 1.19 371.93 -8.94 378.18 -15.19L400.81 -37.82C407.06 -44.07 417.19 -44.07 423.44 -37.82L427.11 -34.15C433.72 -37.72 440.68 -40.6 448.01 -42.8V-47.9999999999999C448.01 -56.8399999999999 455.17 -63.9999999999999 464.0099999999999 -63.9999999999999H496.0099999999999C504.8499999999999 -63.9999999999999 512.01 -56.8399999999999 512.01 -47.9999999999999V-42.8C519.34 -40.6 526.29 -37.73 532.91 -34.15L536.5799999999999 -37.82C542.8299999999999 -44.07 552.9599999999999 -44.07 559.2099999999999 -37.82L581.8399999999999 -15.19C588.0899999999999 -8.94 588.0899999999999 1.19 581.8399999999999 7.44L578.17 11.11A110.84999999999998 110.84999999999998 0 0 1 586.8199999999999 32H592.02C600.86 32 608.02 39.16 608.02 48V80C608 88.84 600.84 96 592 96zM480 16C453.49 16 432 37.49 432 64S453.49 112 480 112S528 90.51 528 64S506.51 16 480 16zM272 96H266.8C264.6 103.33 261.73 110.28 258.1500000000001 116.89L261.8200000000001 120.56C268.0700000000001 126.81 268.0700000000001 136.94 261.8200000000001 143.19L239.1900000000001 165.82C232.9400000000001 172.07 222.8100000000001 172.07 216.5600000000001 165.82L212.8900000000001 162.15A110.84999999999998 110.84999999999998 0 0 1 192 170.8V176C192 184.84 184.84 192 176 192H144C135.16 192 128 184.84 128 176V170.8C120.67 168.6 113.72 165.73 107.11 162.15L103.44 165.8200000000001C97.19 172.0700000000001 87.06 172.0700000000001 80.81 165.8200000000001L58.18 143.2C51.93 136.95 51.93 126.82 58.18 120.57L61.85 116.9A110.84999999999998 110.84999999999998 0 0 1 53.2 96.01H48C39.16 96.01 32 88.85 32 80.01V48.01C32 39.17 39.16 32.01 48 32.01H53.2C55.4 24.68 58.27 17.73 61.85 11.12L58.18 7.45C51.93 1.2 51.93 -8.93 58.18 -15.18L80.81 -37.81C87.06 -44.06 97.19 -44.06 103.44 -37.81L107.11 -34.14C113.72 -37.71 120.68 -40.59 128.01 -42.79V-47.9899999999999C128.01 -56.8299999999999 135.17 -63.9899999999999 144.01 -63.9899999999999H176.01C184.85 -63.9899999999999 192.01 -56.8299999999999 192.01 -47.9899999999999V-42.79C199.34 -40.59 206.29 -37.72 212.91 -34.14L216.58 -37.81C222.83 -44.06 232.96 -44.06 239.21 -37.81L261.84 -15.18C268.09 -8.93 268.09 1.2 261.84 7.45L258.17 11.12A110.84999999999998 110.84999999999998 0 0 1 266.82 32.01H272.0199999999999C280.8599999999999 32.01 288.0199999999999 39.17 288.0199999999999 48.01V80.01C288 88.84 280.84 96 272 96zM160 16C133.49 16 112 37.49 112 64S133.49 112 160 112S208 90.51 208 64S186.51 16 160 16z" />
+    <glyph glyph-name="truck-moving"
+      unicode="&#xF4DF;"
+      horiz-adv-x="640" d=" M621.3 210.7L562.8 269.2C550.8 281.2 534.5 287.9 517.5 287.9H480V384C480 401.7 465.7 416 448 416H32C14.3 416 0 401.7 0 384V48C0 3.8 35.8 -32 80 -32C106.3 -32 129.4 -19.1 144 0.4C158.6 -19.2 181.7 -32 208 -32C252.2 -32 288 3.8 288 48C288 53.5 287.4 58.8 286.4 64H449.6C448.5 58.8 448 53.5 448 48C448 3.8 483.8 -32 528 -32S608 3.8 608 48C608 53.5 607.4 58.8 606.4 64H624C632.8 64 640 71.2 640 80V165.5C640 182.5 633.3 198.7 621.3 210.7zM80 16C62.4 16 48 30.4 48 48S62.4 80 80 80S112 65.6 112 48S97.6 16 80 16zM208 16C190.4 16 176 30.4 176 48S190.4 80 208 80S240 65.6 240 48S225.6 16 208 16zM480 240H517.5C521.8 240 525.8 238.3 528.8 235.3L572.0999999999999 192H480V240zM528 16C510.4 16 496 30.4 496 48S510.4 80 528 80S560 65.6 560 48S545.6 16 528 16z" />
+    <glyph glyph-name="truck-pickup"
+      unicode="&#xF63C;"
+      horiz-adv-x="640" d=" M624 160H608V224C608 241.67 593.67 256 576 256H528L419.2200000000001 391.98A64.025 64.025 0 0 1 369.24 416H256C238.33 416 224 401.67 224 384V256H64C46.33 256 32 241.67 32 224V160H16C7.16 160 0 152.84 0 144V112C0 103.16 7.16 96 16 96H65.61C64.85 90.73 64 85.48 64 80C64 18.14 114.14 -32 176 -32S288 18.14 288 80C288 85.48 287.15 90.73 286.39 96H353.62C352.86 90.73 352.01 85.48 352.01 80C352.01 18.14 402.15 -32 464.01 -32S576.01 18.14 576.01 80C576.01 85.48 575.16 90.73 574.4 96H624C632.84 96 640 103.16 640 112V144C640 152.84 632.84 160 624 160zM288 352H369.24L446.04 256H288V352zM176 32C149.53 32 128 53.53 128 80S149.53 128 176 128S224 106.47 224 80S202.47 32 176 32zM464 32C437.53 32 416 53.53 416 80S437.53 128 464 128S512 106.47 512 80S490.47 32 464 32z" />
+    <glyph glyph-name="truck-plow"
+      unicode="&#xF7DE;"
+      horiz-adv-x="640" d=" M598.6 54.6C584.1 69.1 576 88.7000000000001 576 109.2000000000001V210.8C576 231.3 584.1 250.9 598.6 265.4L635.3000000000001 302.1C641.5000000000001 308.3 641.5000000000001 318.5 635.3000000000001 324.7000000000001L612.7 347.3C606.5 353.5 596.3000000000001 353.5 590.1 347.3L553.4 310.6C526.9 284.1 512 248.2 512 210.7V160H480V224C480 241.7 465.7 256 448 256H402.1L320.1 392.7C311.5 407.1 295.7 416 278.9 416H168C145.9 416 128 398.1 128 376V256H32C14.3 256 0 241.7 0 224V128C0 110.3 14.3 96 32 96H37.9C34.3 85.9 32 75.3 32 64C32 11 75 -32 128 -32S224 11 224 64C224 75.3 221.7 85.9 218.1 96H293.9C290.3 85.9 288 75.3 288 64C288 11 331 -32 384 -32S480 11 480 64C480 75.3 477.7 85.9 474.1 96H513.3000000000001C516.4000000000001 63.4 530.0000000000001 32.7 553.4000000000001 9.4L590.1000000000001 -27.3C596.3000000000002 -33.5 606.5000000000001 -33.5 612.7000000000002 -27.3L635.3000000000002 -4.7C641.5000000000002 1.5 641.5000000000002 11.7 635.3000000000002 17.9L598.6000000000001 54.6zM192 352H269.9L327.5 256H192V352zM160 64C160 46.4 145.6 32 128 32S96 46.4 96 64S110.4 96 128 96S160 81.6 160 64zM384 32C366.4 32 352 46.4 352 64S366.4 96 384 96S416 81.6 416 64S401.6 32 384 32z" />
+    <glyph glyph-name="truck-ramp"
+      unicode="&#xF4E0;"
+      horiz-adv-x="640" d=" M384 448C366.3 448 352 433.7 352 416V92.4L5.9 -2C1.6 -3.2 -0.9 -7.6 0.3 -11.8L12.9 -58.1C14.1 -62.4 18.5 -64.9 22.7 -63.7L416.4 43.6999999999999C418.8 -16.1 467.6 -64 528 -64C589.9 -64 640 -13.9 640 48V448H384zM528 0C501.5 0 480 21.5 480 48S501.5 96 528 96S576 74.5 576 48S554.5 0 528 0z" />
+    <glyph glyph-name="truck"
+      unicode="&#xF0D1;"
+      horiz-adv-x="640" d=" M624 96H608V204.1C608 216.8 602.9 229 593.9 238L494 337.9C485 346.9 472.8 352 460.1 352H416V400C416 426.5 394.5 448 368 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H64C64 -21 107 -64 160 -64S256 -21 256 32H384C384 -21 427 -64 480 -64S576 -21 576 32H624C632.8 32 640 39.2 640 48V80C640 88.8 632.8 96 624 96zM160 -16C133.5 -16 112 5.5 112 32S133.5 80 160 80S208 58.5 208 32S186.5 -16 160 -16zM480 -16C453.5 -16 432 5.5 432 32S453.5 80 480 80S528 58.5 528 32S506.5 -16 480 -16zM560 192H416V304H460.1L560 204.1V192z" />
+    <glyph glyph-name="tshirt"
+      unicode="&#xF553;"
+      horiz-adv-x="640" d=" M631.2 351.5L436.5 448C416.4 420.2 371.9 400.8 320 400.8S223.6 420.2 203.5 448L8.8 351.5C0.9 347.5 -2.3 337.9 1.6 330L58.8 215.5C62.8 207.6 72.4 204.4 80.3 208.3L136.9 236C147.5 241.2 159.9 233.5 159.9 221.6V-32C159.9 -49.7 174.2 -64 191.9 -64H447.9C465.6 -64 479.9 -49.7 479.9 -32V221.7C479.9 233.5 492.3 241.3 502.9 236.1L559.5 208.4C567.4 204.4 577 207.6 581 215.6L638.3 330C642.3 337.9 639.0999999999999 347.6 631.1999999999999 351.5z" />
+    <glyph glyph-name="tty"
+      unicode="&#xF1E4;"
+      horiz-adv-x="512" d=" M5.37 344.178C143.902 482.71 368.306 482.504 506.632 344.178C512.71 338.1 513.706 328.682 509.215 321.497L466.001 252.359A18.332 18.332 0 0 0 443.6450000000001 245.054L357.2230000000001 279.623A18.335 18.335 0 0 0 345.7890000000001 298.469L351.741 358C289.596 380.454 221.105 379.986 160.258 358L166.211 298.468A18.331 18.331 0 0 0 154.777 279.622L68.354 245.0540000000001A18.334 18.334 0 0 0 45.998 252.3590000000001L2.787 321.498A18.333 18.333 0 0 0 5.37 344.178zM96 140V180C96 186.627 90.627 192 84 192H44C37.373 192 32 186.627 32 180V140C32 133.373 37.373 128 44 128H84C90.627 128 96 133.373 96 140zM192 140V180C192 186.627 186.627 192 180 192H140C133.373 192 128 186.627 128 180V140C128 133.373 133.373 128 140 128H180C186.627 128 192 133.373 192 140zM288 140V180C288 186.627 282.627 192 276 192H236C229.373 192 224 186.627 224 180V140C224 133.373 229.373 128 236 128H276C282.627 128 288 133.373 288 140zM384 140V180C384 186.627 378.627 192 372 192H332C325.373 192 320 186.627 320 180V140C320 133.373 325.373 128 332 128H372C378.627 128 384 133.373 384 140zM480 140V180C480 186.627 474.627 192 468 192H428C421.373 192 416 186.627 416 180V140C416 133.373 421.373 128 428 128H468C474.627 128 480 133.373 480 140zM144 44V84C144 90.627 138.627 96 132 96H92C85.373 96 80 90.627 80 84V44C80 37.373 85.373 32 92 32H132C138.627 32 144 37.373 144 44zM240 44V84C240 90.627 234.627 96 228 96H188C181.373 96 176 90.627 176 84V44C176 37.373 181.373 32 188 32H228C234.627 32 240 37.373 240 44zM336 44V84C336 90.627 330.627 96 324 96H284C277.373 96 272 90.627 272 84V44C272 37.373 277.373 32 284 32H324C330.627 32 336 37.373 336 44zM432 44V84C432 90.627 426.627 96 420 96H380C373.373 96 368 90.627 368 84V44C368 37.373 373.373 32 380 32H420C426.627 32 432 37.373 432 44zM96 -52V-12C96 -5.373 90.627 0 84 0H44C37.373 0 32 -5.373 32 -12V-52C32 -58.627 37.373 -64 44 -64H84C90.627 -64 96 -58.627 96 -52zM384 -52V-12C384 -5.373 378.627 0 372 0H140C133.373 0 128 -5.373 128 -12V-52C128 -58.627 133.373 -64 140 -64H372C378.627 -64 384 -58.627 384 -52zM480 -52V-12C480 -5.373 474.627 0 468 0H428C421.373 0 416 -5.373 416 -12V-52C416 -58.627 421.373 -64 428 -64H468C474.627 -64 480 -58.627 480 -52z" />
+    <glyph glyph-name="turkey"
+      unicode="&#xF725;"
+      horiz-adv-x="640" d=" M596.39 364.37C588.12 365.88 580.03 365.19 572.46 363.02C579.6700000000001 372.81 584.0600000000001 385 582.71 399.32C580.74 420.11 566.47 438.8 546.62 445.29C515.3 455.54 483.34 435.58 477.65 404.1600000000001C476.35 397 476.58 389.94 478.08 383.28C481.61 367.61 476.72 351.24 463.51 342.0900000000001C448.03 331.36 439.28 324.48 415.44 314.11C376.99 337.33 333.83 352 288 352C128.94 352 0 178.87 0 64S128.94 -64 288 -64S576 -50.88 576 64C576 113.99 551.46 174.94 510.76 227.91C473.09 196.35 457.45 161.16 449.76 137.71C430.71 79.57 381.64 38.38 324.75 32.78C319.44 32.26 314.21 32 309.05 32C259.69 32 215.24 54.96 187.11 95C175.26 111.87 167.27 130.82 163.24 150.58C162.24 155.46 166.2 160 171.18 160H187.61C191.35 160 194.46 157.36 195.32 153.72C207.22 103.54 251.64 64 309.05 64C313.18 64 317.36 64.2 321.61 64.62C367.4500000000001 69.13 404.94 103.68 419.35 147.67C440.0700000000001 210.93 482.42 248.89 509.99 268.0800000000001C524.75 278.35 543.46 276.43 558.6 266.73C567.12 261.27 577.4300000000001 258.1600000000001 588.86 258.4700000000001C609.76 259.04 628.98 272.85 636.38 292.4100000000001C648.6 324.7100000000001 628.52 358.5 596.39 364.37z" />
+    <glyph glyph-name="turtle"
+      unicode="&#xF726;"
+      horiz-adv-x="576" d=" M68.25 192H347.76C371.3 192 388.73 211.8 382.86 232.04C362.84 301.03 292.33 384 208.41 384H207.59C123.68 384 53.16 301.03 33.15 232.04C27.27 211.8 44.71 192 68.25 192zM552.28 310.75L503.63 345.5C468.46 362.92 423.14 343.93 416.82 305.19C416.28 301.87 416 298.4700000000001 416 295V223.78C415.9700000000001 209.9 411.4 196.6 402.73 185.34C390.31 169.23 371.48 160.0000000000001 351.05 160.0000000000001H18.6C8.33 160 0 151.67 0 141.4C0 133.4 5.12 126.29 12.71 123.76L111 101.66L66.17 24C60.01 13.33 67.71 0 80.03 0H116.98C122.69 0 127.98 3.05 130.84 8L171.14 77.8C197.13 69.28 216.69 64 256.01 64S314.9 69.28 340.88 77.8L381.18 8C384.04 3.05 389.32 0 395.04 0H431.99C444.31 0 452 13.33 445.85 24L398.6400000000001 105.76C419.8900000000001 114.18 439.0000000000001 127.54 453.45 146.29C467.53 164.5699999999999 475.9200000000001 185.69 478.7400000000001 207.99H519.36C550.65 207.99 576.01 233.35 576.01 264.64A56.7 56.7 0 0 1 552.28 310.75zM480 272C471.16 272 464 279.16 464 288S471.16 304 480 304S496 296.8400000000001 496 288S488.84 272 480 272z" />
+    <glyph glyph-name="tv-retro"
+      unicode="&#xF401;"
+      horiz-adv-x="512" d=" M464 352H338.8L374.5 393.4C387 405.9 387 426.2 374.5 438.7S341.7 451.2 329.2 438.7L256 353.8L182.8 438.6C170.3 451.1 150 451.1 137.5 438.6S125 405.8 137.5 393.3L173.2 352H48C21.5 352 0 330.5 0 304V16C0 -10.5 21.5 -32 48 -32H64V-64H112L133.3 -32H378.6L399.9000000000001 -64H447.9000000000001V-32H463.9C490.4 -32 511.9 -10.5 511.9 16V304C512 330.5 490.5000000000001 352 464.0000000000001 352zM392 40S392 32 224 32C72 32 72 40 72 40S64 40 64 160S72 280 72 280S72 288 224 288C392 288 392 280 392 280S400 280 400 160S392 40 392 40zM464 140C464 133.4 458.6 128 452 128H444C437.4 128 432 133.4 432 140V148C432 154.6 437.4 160 444 160H452C458.6 160 464 154.6 464 148V140zM464 204C464 197.4 458.6 192 452 192H444C437.4 192 432 197.4 432 204V212C432 218.6 437.4 224 444 224H452C458.6 224 464 218.6 464 212V204z" />
+    <glyph glyph-name="tv"
+      unicode="&#xF26C;"
+      horiz-adv-x="640" d=" M592 448H48C21.5 448 0 426.5 0 400V80C0 53.5 21.5 32 48 32H293.1V0H133.1C115.4 0 101.1 -14.3 101.1 -32S115.4 -64 133.1 -64H517.1C534.8000000000001 -64 549.1 -49.7 549.1 -32S534.8000000000001 0 517.1 0H357.1V32H592C618.5 32 640 53.5 640 80V400C640 426.5 618.5 448 592 448zM576 96H64V384H576V96z" />
+    <glyph glyph-name="umbrella-beach"
+      unicode="&#xF5CA;"
+      horiz-adv-x="640" d=" M115.38 311.1L217.49 273.92C252.68 355.46 303.7 418.21 356.49 447.62C260.61 452.51 167.71 410.66 107.96 335.82C101.27 327.42 105.3 314.77 115.38 311.1zM247.63 262.94L486.11 176.11C521.87 297.49 504.81 407.77 443.48 430.0900000000001C436.0800000000001 432.79 428.35 434.0900000000001 420.3900000000001 434.0900000000001C362.3700000000001 434.08 292.12 364.92 247.6300000000001 262.94zM521.48 387.5C527.7 371.2 532.3100000000001 352.9 534.6800000000001 332.31C540.4200000000001 282.42 533.2600000000001 224.08 515.73 165.3300000000001L618.35 127.97C628.44 124.3 639.66 131.4 639.9200000000001 142.1400000000001C642.2400000000001 237.8300000000001 598.0100000000001 329.5800000000001 521.48 387.5000000000001zM560 0.02H321.06L386 178.5L325.86 200.4L252.96 0.03H16C7.16 0.03 0 -7.1300000000001 0 -15.98V-47.99C0 -56.83 7.16 -64 16 -64H560C568.84 -64 576 -56.83 576 -47.99V-15.98C576 -7.14 568.84 0.02 560 0.02z" />
+    <glyph glyph-name="umbrella"
+      unicode="&#xF0E9;"
+      horiz-adv-x="576" d=" M575.7 167.2C547.1 303.5 437.3 385.4 320 398.1V416C320 433.7 305.7 448 288 448S256 433.7 256 416V398.1C138.3 385.4 29.5 303.5 0.3 167.2C-1.9 157.1 8.8 145.9 19 155.8C71 210.8 126.7 208.2 177.6 118.8C182.9 109.3 192.5 110.2 197.3 118.8C217.5 154.2 242.2 192 288 192C346.5 192 376.2 123.2 378.7 118.8C383.5 110.2 393.1 109.3 398.4 118.8C449.4 208.3 505.5 210.2 557 155.8C567.3 145.8 577.9 157.1 575.7 167.2zM256 146.3V16C256 7.2 248.8 0 240 0C232.2 0 226.8 5.3 224.9 10.7C219 27.4 200.8 36.1 184.1 30.2C167.4 24.3 158.7 6 164.6 -10.6C175.8 -42.5 206.2 -63.9 240.0000000000001 -63.9C284.1 -63.9 320 -28.0000000000001 320 16.1V146.4C310.9 154.3 300.2 160 288 160C275.7 159.9 265.6 155.2 256 146.3z" />
+    <glyph glyph-name="underline"
+      unicode="&#xF0CD;"
+      horiz-adv-x="448" d=" M224.264 59.76C132.595 59.76 67.661 110.925 67.661 211.152V384H39.37C30.533 384 23.37 391.163 23.37 400V432C23.37 440.837 30.533 448 39.37 448H176.76C185.597 448 192.76 440.837 192.76 432V400C192.76 391.163 185.597 384 176.76 384H147.947V211.152C147.947 157.453 176.261 131.708 224.264 131.708C271.23 131.708 300.06 157.142 300.06 211.673V384H271.769C262.932 384 255.769 391.163 255.769 400V432C255.769 440.837 262.932 448 271.769 448H408.637C417.474 448 424.637 440.837 424.637 432V400C424.637 391.163 417.474 384 408.637 384H380.346V211.152C380.346 111.747 315.4650000000001 59.76 224.264 59.76zM16 0H432C440.837 0 448 -7.163 448 -16V-48C448 -56.837 440.837 -64 432 -64H16C7.163 -64 0 -56.837 0 -48V-16C0 -7.163 7.163 0 16 0z" />
+    <glyph glyph-name="undo-alt"
+      unicode="&#xF2EA;"
+      horiz-adv-x="512" d=" M255.545 440C189.276 439.881 129.107 413.767 84.685 371.315L48.971 407.029C33.851 422.149 8 411.4410000000001 8 390.059V256C8 242.745 18.745 232 32 232H166.059C187.441 232 198.149 257.851 183.03 272.971L141.28 314.721C172.144 343.62 212.081 359.628 254.51 359.9940000000001C346.908 360.7920000000001 424.793 286.017 423.9940000000001 190.552C423.236 99.991 349.816 24 256 24C214.873 24 176.003 38.678 145.37 65.556C140.627 69.717 133.464 69.464 129.002 65.003L89.34 25.341C84.468 20.469 84.709 12.526 89.822 7.908C133.798 -31.813 192.074 -56 256 -56C392.966 -56 503.999 55.033 504 191.998C504.001 328.807 392.354 440.245 255.545 440z" />
+    <glyph glyph-name="undo"
+      unicode="&#xF0E2;"
+      horiz-adv-x="512" d=" M212.333 223.667H12C5.373 223.667 0 229.04 0 235.667V436C0 442.627 5.373 448 12 448H60C66.627 448 72 442.627 72 436V357.8880000000001C117.773 408.721 184.26 440.53 258.175 439.993C395.081 438.999 504.623 328.37 504.332 191.461C504.041 54.742 393.12 -56 256.3330000000001 -56C192.244 -56 133.8370000000001 -31.687 89.823 8.215C84.724 12.837 84.489 20.769 89.356 25.635L123.323 59.602C127.7970000000001 64.076 134.9850000000001 64.319 139.7240000000001 60.127C170.76 32.664 211.58 16 256.3330000000001 16C353.601 16 432.3330000000001 94.716 432.3330000000001 192C432.3330000000001 289.267 353.617 368 256.3330000000001 368C197.837 368 146.053 339.524 114.059 295.6670000000001H212.333C218.96 295.6670000000001 224.333 290.294 224.333 283.6670000000001V235.667C224.333 229.04 218.96 223.667 212.333 223.667z" />
+    <glyph glyph-name="unicorn"
+      unicode="&#xF727;"
+      horiz-adv-x="640" d=" M631.98 416H531.73C537.66 422.14 542.13 429.63 543.91 438.36C544.92 443.32 541.03 448 535.9699999999999 448H416C345.31 448 288 390.69 288 320H160C131.16 320 105.6 307.02 88 286.89V288C39.47 288 0 248.53 0 200V144C0 135.16 7.16 128 16 128H32C40.84 128 48 135.16 48 144V200C48 213.22 54.87 224.39 64.78 231.68C64.57 229.1 64 226.63 64 224C64 196.36 75.84 171.64 94.54 154.12L68.82 85.52A63.94500000000001 63.94500000000001 0 0 1 66.66 47.53L91.51 -51.88A15.982 15.982 0 0 1 107.02 -64H172.98C183.39 -64 191.03 -54.22 188.5 -44.12L162.19 61.14L186.03 124.73L288.07 102.4V-48C288.07 -56.84 295.23 -64 304.07 -64H368.07C376.91 -64 384.07 -56.84 384.07 -48V129.78C403.81 149.97 416.07 177.53 416.07 208C416.07 208.22 416 208.42 415.99 208.64V311.11L431.99 304L450.89 266.3C458.34 251.43 475.94 244.75 491.38 250.93L523.93 263.9500000000001A31.997 31.997 0 0 1 544.05 293.6900000000001L544 364.7L636.42 401.35C643.01 405.73 639.9 416 631.9799999999999 416zM480 352C471.16 352 464 359.16 464 368S471.16 384 480 384S496 376.8400000000001 496 368S488.84 352 480 352z" />
+    <glyph glyph-name="union"
+      unicode="&#xF6A2;"
+      horiz-adv-x="384" d=" M384 400C384 408.8400000000001 376.84 416 368 416H304C295.1600000000001 416 288 408.8400000000001 288 400V160C288 100.8 234.15 53.96 172.87 65.86C127.29 74.71 96 117.36 96 163.79V400C96 408.8400000000001 88.84 416 80 416H16C7.16 416 0 408.8400000000001 0 400V160C0 45.82 100.17 -45.4 217.26 -30.38C314.04 -17.96 384 69.11 384 166.68V400z" />
+    <glyph glyph-name="universal-access"
+      unicode="&#xF29A;"
+      horiz-adv-x="512" d=" M256 400C370.953 400 464 306.971 464 192C464 77.047 370.971 -16 256 -16C141.047 -16 48 77.029 48 192C48 306.953 141.029 400 256 400M256 440C119.033 440 8 328.967 8 192S119.033 -56 256 -56S504 55.033 504 192S392.967 440 256 440zM256 384C149.961 384 64 298.039 64 192S149.961 0 256 0S448 85.961 448 192S362.039 384 256 384zM256 340C275.882 340 292 323.882 292 304S275.882 268 256 268S220 284.118 220 304S236.118 340 256 340zM373.741 241.977C345.029 235.198 318.23 229.229 291.601 226.17C292.452 125.1470000000001 303.907 103.118 316.638 70.549C320.255 61.289 315.681 50.851 306.421 47.234C297.16 43.617 286.722 48.191 283.105 57.451C274.4000000000001 79.759 266.019 98.087 260.844 136H251.158C245.991 98.149 237.624 79.792 228.896 57.451C225.281 48.196 214.846 43.615 205.581 47.234C196.321 50.8510000000001 191.747 61.29 195.364 70.549C208.077 103.09 219.549 125.09 220.401 226.1700000000001C193.772 229.2280000000001 166.973 235.1970000000001 138.26 241.9770000000001C129.66 244.0080000000001 124.334 252.6250000000001 126.365 261.226S137.012 275.1520000000001 145.614 273.1210000000001C242.3 250.2920000000001 269.897 250.338 366.389 273.1210000000001C374.988 275.1510000000001 383.6070000000001 269.827 385.6380000000001 261.226C387.6670000000001 252.6250000000001 382.341 244.0070000000001 373.7410000000001 241.9770000000001z" />
+    <glyph glyph-name="university"
+      unicode="&#xF19C;"
+      horiz-adv-x="512" d=" M496 320V304A8 8 0 0 0 488 296H464V284C464 277.373 458.627 272 452 272H60C53.373 272 48 277.373 48 284V296H24A8 8 0 0 0 16 304V320A8 8 0 0 0 20.941 327.392L252.941 415.392A7.996000000000001 7.996000000000001 0 0 0 259.0590000000001 415.392L491.059 327.392A8 8 0 0 0 496 320zM472 16H40C26.745 16 16 5.255 16 -8V-24A8 8 0 0 1 24 -32H488A8 8 0 0 1 496 -24V-8C496 5.255 485.255 16 472 16zM96 256V64H60C53.373 64 48 58.627 48 52V32H464V52C464 58.627 458.627 64 452 64H416V256H352V64H288V256H224V64H160V256H96z" />
+    <glyph glyph-name="unlink"
+      unicode="&#xF127;"
+      horiz-adv-x="512" d=" M304.0830000000001 42.093C308.769 37.407 308.769 29.809 304.0830000000001 25.122L259.4090000000001 -19.552C200.1460000000001 -78.814 103.716 -78.818 44.448 -19.552C-14.816 39.713 -14.816 136.144 44.448 195.4080000000001L89.123 240.0830000000001C93.809 244.7690000000001 101.407 244.7690000000001 106.094 240.0830000000001L145.692 200.485C150.3780000000001 195.799 150.3780000000001 188.201 145.692 183.514L101.017 138.84C72.945 110.7670000000001 72.945 65.09 101.017 37.0170000000001C129.089 8.9450000000001 174.7670000000001 8.9440000000001 202.841 37.0170000000001L247.5150000000001 81.691C252.2010000000001 86.377 259.7990000000001 86.377 264.4860000000001 81.691L304.0830000000001 42.093zM247.5150000000001 302.3090000000001C252.2010000000001 297.6230000000001 259.7990000000001 297.6230000000001 264.4860000000001 302.3090000000001L309.1600000000001 346.9830000000001C337.2320000000001 375.0580000000001 382.9100000000001 375.0560000000001 410.9840000000001 346.9830000000001C439.0560000000001 318.9100000000001 439.0560000000001 273.2330000000001 410.9840000000001 245.1600000000001L366.3090000000001 200.486C361.6230000000001 195.8 361.6230000000001 188.202 366.3090000000001 183.5150000000001L405.9070000000001 143.917C410.593 139.2310000000001 418.1910000000001 139.2310000000001 422.8780000000001 143.917L467.5530000000001 188.5920000000001C526.8180000000001 247.8570000000001 526.8180000000001 344.2870000000001 467.5530000000001 403.552C408.2870000000001 462.816 311.8580000000001 462.816 252.5920000000001 403.552L207.918 358.8780000000001C203.232 354.192 203.232 346.5940000000001 207.918 341.9070000000001L247.5150000000001 302.3090000000001zM482.3430000000001 -56.9709999999999L504.9700000000001 -34.3439999999999C514.3430000000001 -24.9709999999999 514.3430000000001 -9.7749999999999 504.9700000000001 -0.4029999999999L63.598 440.971C54.225 450.344 39.029 450.344 29.657 440.971L7.029 418.343C-2.344 408.9700000000001 -2.344 393.774 7.029 384.402L448.402 -56.971C457.775 -66.343 472.971 -66.343 482.343 -56.971z" />
+    <glyph glyph-name="unlock-alt"
+      unicode="&#xF13E;"
+      horiz-adv-x="448" d=" M400 192H152V295.1C152 334.7 183.7 367.6 223.3 368C263.3 368.4 296 335.9 296 296V280C296 266.7 306.7 256 320 256H352C365.3 256 376 266.7 376 280V296C376 380 307.5 448.3 223.5 448C139.5 447.7 72 378.5 72 294.5V192H48C21.5 192 0 170.5 0 144V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V144C448 170.5 426.5 192 400 192zM264 40C264 17.9 246.1 0 224 0S184 17.9 184 40V88C184 110.1 201.9 128 224 128S264 110.1 264 88V40z" />
+    <glyph glyph-name="unlock"
+      unicode="&#xF09C;"
+      horiz-adv-x="448" d=" M400 192H152V295.1C152 334.7 183.7 367.6 223.3 368C263.3 368.4 296 335.9 296 296V280C296 266.7 306.7 256 320 256H352C365.3 256 376 266.7 376 280V296C376 380 307.5 448.3 223.5 448C139.5 447.7 72 378.5 72 294.5V192H48C21.5 192 0 170.5 0 144V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V144C448 170.5 426.5 192 400 192z" />
+    <glyph glyph-name="upload"
+      unicode="&#xF093;"
+      horiz-adv-x="512" d=" M296 64H216C202.7 64 192 74.7 192 88V256H104.3C86.5 256 77.6 277.5 90.2 290.1L242.3 442.3C249.8 449.8 262.1 449.8 269.6 442.3L421.8 290.1C434.4000000000001 277.5 425.5 256 407.7 256H320V88C320 74.7 309.3 64 296 64zM512 72V-40C512 -53.3 501.3 -64 488 -64H24C10.7 -64 0 -53.3 0 -40V72C0 85.3 10.7 96 24 96H160V88C160 57.1 185.1 32 216 32H296C326.9 32 352 57.1 352 88V96H488C501.3 96 512 85.3 512 72zM388 -16C388 -5 379 4 368 4S348 -5 348 -16S357 -36 368 -36S388 -27 388 -16zM452 -16C452 -5 443 4 432 4S412 -5 412 -16S421 -36 432 -36S452 -27 452 -16z" />
+    <glyph glyph-name="usd-circle"
+      unicode="&#xF2E8;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM272 64V48C272 39.2 264.8 32 256 32H240C231.2 32 224 39.2 224 48V64.2C207.5 64.8 191.4 70 177.6 79.3C168.9 85.2 167.6 97.4 175.3 104.5L187.3 115.8C192.7 120.9 200.6 121.2 207 117.4C213.1 113.8 219.9 112.0000000000001 226.9 112.0000000000001H271.9C283.2 112.0000000000001 292.4 122.5000000000001 292.4 135.4C292.4 146.0000000000001 286.1 155.3 277.2 158.1L205 180C176 188.8 155.8 217 155.8 248.6C155.8 287.9 186.4 319.9 224 320V336C224 344.8 231.2 352 240 352H256C264.8 352 272 344.8 272 336V319.8C288.5 319.2000000000001 304.6 314 318.4 304.7000000000001C327.1 298.8 328.4 286.6 320.7 279.5L308.7 268.2000000000001C303.3 263.1 295.4 262.8 289 266.6C282.9 270.2000000000001 276.1 272 269.1 272H224.1C212.8 272 203.6 261.5 203.6 248.6C203.6 238.0000000000001 209.9 228.7 218.8 225.9000000000001L290.8 204C319.8 195.2 340 167 340 135.4C340.2 96.1 309.6 64.2000000000001 272 64z" />
+    <glyph glyph-name="usd-square"
+      unicode="&#xF2E9;"
+      horiz-adv-x="448" d=" M400 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H400C426.5 -32 448 -10.5 448 16V368C448 394.5 426.5 416 400 416zM248 64V48C248 39.2 240.8 32 232 32H216C207.2 32 200 39.2 200 48V64.2C183.5 64.8 167.4 70 153.6 79.3C144.9 85.2 143.6 97.4 151.3 104.5L163.3 115.8C168.7 120.9 176.6 121.2 183 117.4C189.1 113.8 195.9 112.0000000000001 202.9 112.0000000000001H247.9C259.2 112.0000000000001 268.4 122.5000000000001 268.4 135.4C268.4 146.0000000000001 262.1 155.3 253.2 158.1L181 180C152 188.8 131.8 217 131.8 248.6C131.8 287.9 162.4 319.9 200 320V336C200 344.8 207.2 352 216 352H232C240.8 352 248 344.8 248 336V319.8C264.5 319.2000000000001 280.6 314 294.4 304.7000000000001C303.1 298.8 304.4 286.6 296.7 279.5L284.7 268.2000000000001C279.3 263.1 271.4 262.8 265 266.6C258.9 270.2000000000001 252.1 272 245.1 272H200.1C188.8 272 179.6 261.5 179.6 248.6C179.6 238.0000000000001 185.9 228.7 194.8 225.9000000000001L266.8 204C295.8 195.2 316 167 316 135.4C316.2 96.1 285.6 64.2000000000001 248 64z" />
+    <glyph glyph-name="user-alt-slash"
+      unicode="&#xF4FA;"
+      horiz-adv-x="640" d=" M633.8 -10.1L389.6 178.7C433.8 203.3 464 249.9 464 304C464 383.5 399.5 448 320 448C252.9 448 197 401.9 181 339.8L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L594.6 -60.5C601.6 -65.9 611.6 -64.7 617.1 -57.7L636.7 -32.4C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1zM198.4 128C124.2 128 64 67.8 64 -6.4V-16C64 -42.5 85.5 -64 112 -64H494.2L245.8 128H198.4z" />
+    <glyph glyph-name="user-alt"
+      unicode="&#xF406;"
+      horiz-adv-x="512" d=" M256 160C335.5 160 400 224.5 400 304S335.5 448 256 448S112 383.5 112 304S176.5 160 256 160zM384 128H328.9C306.7 117.8 282 112 256 112S205.4 117.8 183.1 128H128C57.3 128 0 70.7 0 0V-16C0 -42.5 21.5 -64 48 -64H464C490.5 -64 512 -42.5 512 -16V0C512 70.7 454.7 128 384 128z" />
+    <glyph glyph-name="user-astronaut"
+      unicode="&#xF4FB;"
+      horiz-adv-x="448" d=" M64 224H77.5C102.2 167.5 158.4 128 224 128S345.8 167.5 370.5 224H384C392.8 224 400 231.2 400 240V336C400 344.8 392.8 352 384 352H370.5C345.8 408.5 289.6 448 224 448S102.2 408.5 77.5 352H64C55.2 352 48 344.8 48 336V240C48 231.2 55.2 224 64 224zM104 312C104 334.1 125.5 352 152 352H296C322.5 352 344 334.1 344 312V288C344 235 301 192 248 192H200C147 192 104 235 104 288V312zM176 240L188 276L224 288L188 300L176 336L164 300L128 288L164 276L176 240zM327.6 126.6C297.7 107.3 262.2 96 224 96S150.3 107.3 120.4 126.6C52.9 119.5 0 63 0 -6.4V-16C0 -42.5 21.5 -64 48 -64H128V0C128 17.7 142.3 32 160 32H288C305.7 32 320 17.7 320 0V-64H400C426.5 -64 448 -42.5 448 -16V-6.4C448 63 395.1 119.5 327.6 126.6zM272 0C263.2 0 256 -7.2 256 -16S263.2 -32 272 -32S288 -24.8 288 -16S280.8 0 272 0zM176 0C167.2 0 160 -7.2 160 -16V-64H192V-16C192 -7.2 184.8 0 176 0z" />
+    <glyph glyph-name="user-chart"
+      unicode="&#xF6A3;"
+      horiz-adv-x="640" d=" M208 96H204.19C190.26 91.17 175.55 88 160 88S129.74 91.17 115.81 96H112C50.14 96 0 45.86 0 -16C0 -42.51 21.49 -64 48 -64H272C298.51 -64 320 -42.51 320 -16C320 45.86 269.86 96 208 96zM592 448H208C181.53 448 160 425.75 160 398.41V352C183.42 352 205.1 345.2200000000001 224 334.2V384H576V96H307.76C326.86 79.31 340.88 57.27 347.45 32H592C618.47 32 640 54.25 640 81.59V398.41C640 425.75 618.47 448 592 448zM160 128C213.02 128 256 170.98 256 224S213.02 320 160 320S64 277.02 64 224S106.98 128 160 128zM328.9700000000001 280.9700000000001C319.6 290.3400000000001 304.4000000000001 290.3400000000001 295.0300000000001 280.9700000000001L280.2800000000001 266.2200000000001C284.9600000000001 252.93 288.0000000000001 238.87 288.0000000000001 224.01C288.0000000000001 217.18 287.0200000000001 210.6 285.9800000000001 204.06L312.0000000000001 230.06L367.0300000000001 175.03C376.4000000000001 165.66 391.6000000000001 165.66 400.9700000000001 175.03L472.9700000000001 247.03L497.2700000000001 222.73C508.6100000000001 211.39 528.0000000000001 219.42 528.0000000000001 235.46V324C528.0000000000001 330.63 522.6300000000001 336 516.0000000000001 336H427.4600000000001C411.4200000000001 336 403.3900000000001 316.61 414.7300000000001 305.27L439.0300000000001 280.9700000000001L384 225.94L328.9700000000001 280.9700000000001z" />
+    <glyph glyph-name="user-check"
+      unicode="&#xF4FC;"
+      horiz-adv-x="640" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160zM636.6 288.4L608.8000000000001 316.5C604.2 321.2 596.7 321.2 592.0000000000001 316.6L487.2000000000001 212.6L441.7000000000001 258.4C437.1000000000001 263.1 429.6000000000001 263.1 424.9000000000001 258.5L396.8000000000001 230.6C392.1000000000001 226 392.1000000000001 218.5 396.7000000000001 213.8L478.4 131.5C483.0000000000001 126.8 490.5000000000001 126.8 495.2 131.3999999999999L636.5 271.5999999999999C641.1 276.2999999999999 641.2 283.7999999999999 636.6 288.3999999999999z" />
+    <glyph glyph-name="user-circle"
+      unicode="&#xF2BD;"
+      horiz-adv-x="496" d=" M248 440C111 440 0 329 0 192S111 -56 248 -56S496 55 496 192S385 440 248 440zM248 344C296.6 344 336 304.6 336 256S296.6 168 248 168S160 207.4 160 256S199.4 344 248 344zM248 0C189.3 0 136.7 26.6 101.5 68.2C120.3 103.6 157.1 128 200 128C202.4 128 204.8 127.6 207.1 126.9C220.1 122.7 233.7 120 248 120C262.3 120 276 122.7 288.9 126.9C291.2 127.6 293.6 128 296 128C338.9 128 375.7 103.6 394.5 68.2C359.3 26.6 306.7 0 248 0z" />
+    <glyph glyph-name="user-clock"
+      unicode="&#xF4FD;"
+      horiz-adv-x="640" d=" M496 224C416.4 224 352 159.6 352 80S416.4 -64 496 -64S640 0.4 640 80S575.6 224 496 224zM560 73.7C560 68.4 555.6 64 550.3 64H489.6999999999999C484.3999999999999 64 479.9999999999999 68.4 479.9999999999999 73.7V150.3C479.9999999999999 155.6 484.3999999999999 160 489.6999999999999 160H502.3C507.6 160 511.9999999999999 155.6 511.9999999999999 150.3V96H550.3C555.5999999999999 96 560 91.6 560 86.3V73.7zM320 80C320 107.8 326.7 134.1 338.2 157.5C330.2 159 322 160 313.6 160H296.9C274.7 149.8 250 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H395.1C349.8 -32.1 320 20.5 320 80zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192z" />
+    <glyph glyph-name="user-cog"
+      unicode="&#xF4FE;"
+      horiz-adv-x="640" d=" M610.5 74.7C613.1 88.8 613.1 103.2 610.5 117.3L636.3 132.2C639.3 133.9 640.5999999999999 137.4 639.5999999999999 140.7C632.8999999999999 162.3 621.3999999999999 181.9 606.3999999999999 198.1C604.0999999999999 200.6 600.3999999999999 201.2 597.3999999999999 199.5L571.5999999999999 184.6C560.6999999999999 193.9 548.1999999999999 201.1 534.6999999999999 205.9V235.7000000000001C534.6999999999999 239.1000000000001 532.3 242.1000000000001 528.9999999999999 242.8000000000001C506.6999999999999 247.8000000000001 483.9999999999999 247.6000000000001 462.7999999999999 242.8000000000001C459.4999999999999 242.1000000000001 457.0999999999999 239.1000000000001 457.0999999999999 235.7000000000001V205.9C443.5999999999999 201.1 431.0999999999999 193.9 420.2 184.6L394.3999999999999 199.5C391.5 201.2 387.7 200.6 385.3999999999999 198.1C370.3999999999999 181.9 358.8999999999999 162.3 352.2 140.7000000000001C351.2 137.4 352.5999999999999 133.9 355.5 132.2000000000001L381.3 117.3000000000001C378.7 103.2000000000001 378.7 88.8000000000001 381.3 74.7000000000001L355.5 59.8000000000001C352.5 58.1000000000001 351.2 54.6000000000001 352.2 51.3000000000001C358.8999999999999 29.7 370.3999999999999 10.2 385.3999999999999 -6.0999999999999C387.7 -8.5999999999999 391.3999999999999 -9.1999999999999 394.3999999999999 -7.4999999999999L420.2 7.4000000000001C431.0999999999999 -1.8999999999999 443.5999999999999 -9.0999999999999 457.0999999999999 -13.8999999999999V-43.6999999999999C457.0999999999999 -47.0999999999999 459.4999999999999 -50.0999999999999 462.7999999999999 -50.8C485.0999999999999 -55.8 507.7999999999999 -55.6 528.9999999999999 -50.8C532.2999999999998 -50.1 534.6999999999999 -47.1 534.6999999999999 -43.6999999999999V-13.8999999999999C548.1999999999999 -9.0999999999999 560.6999999999999 -1.8999999999999 571.5999999999999 7.4000000000001L597.3999999999999 -7.4999999999999C600.2999999999998 -9.1999999999999 604.0999999999999 -8.5999999999999 606.3999999999999 -6.0999999999999C621.3999999999999 10.1000000000001 632.8999999999999 29.7000000000001 639.5999999999999 51.3000000000001C640.5999999999999 54.6000000000001 639.1999999999999 58.1000000000001 636.3 59.8000000000001L610.5 74.7000000000001zM496 47.5C469.2 47.5 447.5 69.3 447.5 96S469.3 144.5 496 144.5S544.5 122.7 544.5 96S522.8 47.5 496 47.5zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM425.2 -34.5C422.9 -33.3 420.6 -31.9 418.4 -30.6L410.5 -35.2C404.5 -38.6 397.7 -40.5000000000001 390.9 -40.5000000000001C380 -40.5000000000001 369.5 -35.9 362 -27.9C343.7 -8.1 329.7 15.9999999999999 321.8 41.6999999999999C316.3 59.3999999999999 323.7 78.0999999999999 339.7 87.3999999999999L347.6 91.9999999999999C347.5 94.6 347.5 97.1999999999999 347.6 99.8L339.7 104.4C323.7 113.6 316.3 132.4 321.8 150.1C322.7 153 324 155.9 325 158.8C321.2 159.1 317.5 160 313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C410.1 -64 419.5 -60.8 427.2 -55.5C426 -51.7 425.2 -47.8 425.2 -43.7V-34.5z" />
+    <glyph glyph-name="user-crown"
+      unicode="&#xF6A4;"
+      horiz-adv-x="448" d=" M352 448L288 416L224 448L160 416L96 448V352H352V448zM313.6 144H296.8900000000001C274.6500000000001 133.82 250.0100000000001 128 224.0000000000001 128S173.3500000000001 133.82 151.1100000000001 144H134.4C60.17 144 0 83.83 0 9.6V-16C0 -42.51 21.49 -64 48 -64H400C426.51 -64 448 -42.51 448 -16V9.6C448 83.83 387.83 144 313.6 144zM224 176C294.69 176 352 233.31 352 304V320H96V304C96 233.31 153.31 176 224 176z" />
+    <glyph glyph-name="user-edit"
+      unicode="&#xF4FF;"
+      horiz-adv-x="640" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H322.9C320.5 -57.2 319.5 -50 320.3 -42.7L327.1 18.2L328.3 29.3L336.2 37.2L413.5 114.5C389 142.2 353.5 160 313.5999999999999 160zM358.9000000000001 14.7L352.1 -46.3C351 -56.5 359.6 -65.1 369.7000000000001 -63.9L430.6 -57.1L568.5 80.8L496.8 152.5L358.9 14.6999999999999zM633 179.1L595.1 217C585.8000000000001 226.3 570.6 226.3 561.3000000000001 217L523.5000000000001 179.2L519.4000000000001 175.1L591.2 103.4L633 145.2C642.3 154.6 642.3 169.7 633 179.1z" />
+    <glyph glyph-name="user-friends"
+      unicode="&#xF500;"
+      horiz-adv-x="640" d=" M192 192C253.9 192 304 242.1 304 304S253.9 416 192 416S80 365.9 80 304S130.1 192 192 192zM268.8 160H260.5C239.7 150 216.6 144 192 144S144.4 150 123.5 160H115.2C51.6 160 0 108.4 0 44.8V16C0 -10.5 21.5 -32 48 -32H336C362.5 -32 384 -10.5 384 16V44.8C384 108.4 332.4 160 268.8 160zM480 192C533 192 576 235 576 288S533 384 480 384S384 341 384 288S427 192 480 192zM528 160H524.2C510.3000000000001 155.2 495.6 152 480.0000000000001 152S449.7000000000001 155.2 435.8000000000001 160H432C411.6 160 392.8 154.1 376.3 144.6C400.7 118.3 416 83.4 416 44.8V6.4C416 4.2 415.5 2.1 415.4 1e-13H592C618.5 1e-13 640 21.5000000000001 640 48.0000000000001C640 109.9 589.9 160.0000000000001 528 160.0000000000001z" />
+    <glyph glyph-name="user-graduate"
+      unicode="&#xF501;"
+      horiz-adv-x="448" d=" M319.4 127.4L224 32L128.6 127.4C57.1 124.3 0 65.8 0 -6.4V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V-6.4C448 65.8 390.9 124.3 319.4 127.4zM13.6 368.2L20 366.7V308.3C13 304.1 8 296.8 8 288C8 279.6 12.6 272.6 19.1 268.3L3.5 206C1.8 199.1 5.6 192 11.1 192H52.9C58.4 192 62.2 199.1 60.5 206L44.9 268.3C51.4 272.6 56 279.6 56 288C56 296.8 51 304.1 44 308.3V360.9L110 345C101.4 327.8 96 308.6 96 288C96 217.3 153.3 160 224 160S352 217.3 352 288C352 308.6 346.7 327.8 338 345L434.3 368.2C452.5 372.6 452.5 395.3 434.3 399.7L243.9 445.7C230.9 448.8 217.2 448.8 204.2 445.7L13.6 399.8C-4.5 395.4 -4.5 372.6 13.6 368.2z" />
+    <glyph glyph-name="user-injured"
+      unicode="&#xF728;"
+      horiz-adv-x="448" d=" M277.37 436.02C261.08 443.53 243.11 448 224 448C170.31 448 124.5 414.87 105.49 368H186.68L277.37 436.02zM342.51 368C334.61 387.4700000000001 321.84 404.2 306.02 417.52L239.99 368H342.51zM224 192C294.69 192 352 249.31 352 320C352 325.48 351.05 330.7 350.39 336H97.61C96.94 330.7 96 325.48 96 320C96 249.31 153.31 192 224 192zM80 148.3V-64H208.26L109.81 157.52A132.835 132.835 0 0 1 80 148.3zM0 -16C0 -42.51 21.49 -64 48 -64V127.76C18.88 103.11 0 66.74 0 25.6V-16zM256 32H200.62L243.29 -64H256C282.4700000000001 -64 304 -42.47 304 -16S282.4700000000001 32 256 32zM313.6 160H296.8900000000001C274.6500000000001 149.82 250.0100000000001 144 224.0000000000001 144S173.3500000000001 149.82 151.1100000000001 160H143.7400000000001L186.4100000000001 64H256C300.11 64 336 28.11 336 -16C336 -34.08 329.74 -50.59 319.59 -64H400C426.51 -64 448 -42.51 448 -16V25.6C448 99.83 387.83 160 313.6 160z" />
+    <glyph glyph-name="user-lock"
+      unicode="&#xF502;"
+      horiz-adv-x="640" d=" M320 128C320 139.1 323.1 149.4 328.1 158.5C323.3 159 318.6 160 313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H328.9C323.4 -54.5 320 -43.7 320 -32V128zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM608 160H576V208C576 252.2 540.2 288 496 288S416 252.2 416 208V160H384C366.3 160 352 145.7 352 128V-32C352 -49.7 366.3 -64 384 -64H608C625.7 -64 640 -49.7 640 -32V128C640 145.7 625.7 160 608 160zM528 160H464V208C464 225.6 478.4 240 496 240S528 225.6 528 208V160z" />
+    <glyph glyph-name="user-md"
+      unicode="&#xF0F0;"
+      horiz-adv-x="448" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM104 24C104 10.7 114.7 0 128 0S152 10.7 152 24S141.3 48 128 48S104 37.3 104 24zM320 159.4V110.4C356.5 103 384 70.6 384 32V-9.7C384 -17.3 378.6 -23.9 371.1 -25.4L338.9000000000001 -31.8C334.6 -32.6999999999999 330.4000000000001 -29.9 329.5000000000001 -25.4999999999999L326.4000000000001 -9.8C325.5000000000001 -5.4999999999999 328.3 -1.1999999999999 332.7000000000001 -0.4L352.0000000000001 3.5V32C352.0000000000001 94.8 256.0000000000001 97.1 256.0000000000001 30.1V3.4L275.3000000000001 -0.4999999999999C279.6000000000001 -1.3999999999999 282.4000000000001 -5.6 281.6000000000001 -9.8999999999999L278.5000000000001 -25.5999999999999C277.6000000000001 -29.8999999999999 273.4000000000001 -32.6999999999999 269.1000000000001 -31.8999999999999L237.9000000000001 -27.6999999999999C230.0000000000001 -26.5999999999999 224.1000000000001 -19.8999999999999 224.1000000000001 -11.8V32C224.1000000000001 70.6 251.6000000000001 102.9 288.1000000000001 110.4V155.6C285.9000000000001 154.9 283.7000000000001 154.5 281.5000000000001 153.7C263.5000000000001 147.4 244.2000000000001 143.9 224.1000000000001 143.9S184.7000000000001 147.4 166.7000000000001 153.7C159.3000000000001 156.3 151.8000000000001 157.9 144.1000000000001 158.9V77.3C167.2000000000001 70.4 184.1000000000001 49.1999999999999 184.1000000000001 23.9C184.1000000000001 -7 159.0000000000001 -32.1 128.1000000000001 -32.1S72.1000000000001 -7 72.1000000000001 23.9C72.1000000000001 49.2 89.0000000000001 70.4 112.1000000000001 77.3V157.6999999999999C48.5 147 0 92.2 0 25.6V-19.2C0 -43.9 20.1 -64 44.8 -64H403.2C427.9 -64 448 -43.9 448 -19.2V25.6C448 97.6 391.2 155.9 320 159.4z" />
+    <glyph glyph-name="user-minus"
+      unicode="&#xF503;"
+      horiz-adv-x="640" d=" M624 240H432C423.2 240 416 232.8 416 224V192C416 183.2 423.2 176 432 176H624C632.8 176 640 183.2 640 192V224C640 232.8 632.8 240 624 240zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160z" />
+    <glyph glyph-name="user-ninja"
+      unicode="&#xF504;"
+      horiz-adv-x="448" d=" M325.4 158.8L224 57.4L122.6 158.8C54 152.7 0 95.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 95.8 394 152.7000000000001 325.4 158.8zM32 256C59.3 256 83.8 267.5 101.2 285.7C116.3 231.8 165.2 192 224 192C294.7 192 352 249.3 352 320S294.7 448 224 448C173.6 448 130.4 418.6 109.5 376.2C92.1 400.2 64 416 32 416C32 382.6 49.1 353.2 75.1 336C49.1 318.8 32 289.4 32 256zM176 352H272C289.7 352 304 337.7 304 320H144C144 337.7 158.3 352 176 352z" />
+    <glyph glyph-name="user-plus"
+      unicode="&#xF234;"
+      horiz-adv-x="640" d=" M624 240H560V304C560 312.8 552.8 320 544 320H512C503.2 320 496 312.8 496 304V240H432C423.2 240 416 232.8 416 224V192C416 183.2 423.2 176 432 176H496V112C496 103.2 503.2 96 512 96H544C552.8 96 560 103.2 560 112V176H624C632.8 176 640 183.2 640 192V224C640 232.8 632.8 240 624 240zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160z" />
+    <glyph glyph-name="user-secret"
+      unicode="&#xF21B;"
+      horiz-adv-x="448" d=" M383.9 139.7L407.8 202.3C411.8 212.8 404.1 224 392.8 224H334.3C345.3 242.9 352.1 264.6 352.1 288V288.3C391.3 296.1 416.1 307.4 416.1 320C416.1 333.3 388.8 345.1 346 353C336.8 385.8 319 418.8 305.4 435.8C295.9 447.7 279.5 451.4 265.9 444.6L238.3 430.8C229.3 426.3 218.7 426.3 209.7 430.8L182.1 444.6C168.5 451.4 152.1 447.7 142.6 435.8C129.1 418.8 111.2 385.8 102 353C59.3 345.1 32 333.3 32 320C32 307.4 56.8 296.1 96 288.3V288C96 264.6 102.8 242.9 113.8 224H56.3C44.8 224 37.1 212.3 41.6 201.7L67.4 141.5C27.3 118.2 0 75.3 0 25.6V-19.2C0 -43.9 20.1 -64 44.8 -64H403.2C427.9 -64 448 -43.9 448 -19.2V25.6C448 74 422.2 116 383.9 139.7000000000001zM176 -32L134.4 160L184 128L208 88L176 -32zM272 -32L240 88L264 128L313.6 160L272 -32zM313.7 266.5C309.8 254.6 306.7 241.9 297.2 233.1C287.1 223.8 249.2 210.7 233.2 258.1C230.4 266.5 217.8 266.5 214.9 258.1C197.9 207.9 158.9 225.7 150.9 233.1C141.4 241.9 138.2 254.6 134.4 266.5C133.6 269 128.1 272.2 128.1 272.3V283.1C156.4 279.5 189.1 277.3 224.1 277.3S291.8 279.4 320.1 283.1V272.3C320 272.2000000000001 314.5 269.1 313.7 266.5z" />
+    <glyph glyph-name="user-shield"
+      unicode="&#xF505;"
+      horiz-adv-x="640" d=" M622.3 176.9L507.1 221.9C502.9999999999999 223.5 494.4999999999999 225.6 484.9 221.9L369.7 176.9C359 172.7 352 162.9 352 152C352 40.4 420.7 -36.8 484.9 -61.9C494.5 -65.6 502.9 -63.5 507.1 -61.9C558.4 -41.9 640 27.5 640 152C640 162.9 633 172.7 622.3 176.9zM496 -14.4V174.7L591.5 137.4C585.9 50.3 530.6 2 496 -14.4zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM320 152C320 154.5 320.8 156.8 321.1 159.2C318.6 159.3 316.2000000000001 160 313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C406.8 -64 413.3 -62.5 419.2 -60C365.2 -17.1 320 56.7 320 152z" />
+    <glyph glyph-name="user-slash"
+      unicode="&#xF506;"
+      horiz-adv-x="640" d=" M633.8 -10.1L362.3 199.7C412.1 217.3 448 264.2 448 320C448 390.7 390.7 448 320 448C252.9 448 198.5 396.2 193.1 330.6L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L594.6 -60.5C601.6 -65.9 611.6 -64.7 617.1 -57.7L636.7 -32.4C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1zM96 25.6V-16C96 -42.5 117.5 -64 144 -64H494.2L207.4 157.7C144.2 146.7 96 92 96 25.6z" />
+    <glyph glyph-name="user-tag"
+      unicode="&#xF507;"
+      horiz-adv-x="640" d=" M630.6 83.1L540.3000000000001 173.3C528.3000000000001 185.3 512.0000000000001 192 495.0000000000001 192H415.7000000000001C398.0000000000001 192 383.7000000000001 177.7 383.7000000000001 160V80.8C383.7000000000001 63.8 390.4000000000001 47.6 402.4000000000001 35.6L492.7 -54.6C505.2 -67.0999999999999 525.5 -67.0999999999999 538 -54.6L630.5 37.9C643.1 50.4 643.1 70.6 630.6 83.1zM447.8 104.1C434.5 104.1 423.8 114.8 423.8 128.1S434.5 152.1 447.8 152.1S471.8 141.4 471.8 128.1C471.8 114.9 461.1 104.1 447.8 104.1zM224 192.1C294.7 192.1 352 249.4000000000001 352 320.1C352 390.7 294.7 448 224 448S96 390.7 96 320C96 249.4 153.3 192.1 224 192.1zM351.8 80.9V154C339.6 157.6 326.9000000000001 160.2 313.6 160.2H296.9000000000001C274.7000000000001 150 250.0000000000001 144.2 224 144.2S173.4 150 151.1 160.2H134.4C60.2 160.1 0 99.9 0 25.7V-15.9C0 -42.4 21.5 -63.9 48 -63.9H400C415.5 -63.9 429.1 -56.4 437.9 -45.0000000000001L379.9 12.9999999999999C361.8 31.1 351.8 55.1999999999999 351.8 80.9z" />
+    <glyph glyph-name="user-tie"
+      unicode="&#xF508;"
+      horiz-adv-x="448" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM319.8 159.4L272 -32L240 104L272 160H176L208 104L176 -32L128.2 159.4C56.9 156 0 97.7 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 97.7000000000001 391.1 156 319.8 159.4z" />
+    <glyph glyph-name="user-times"
+      unicode="&#xF235;"
+      horiz-adv-x="640" d=" M589.6 208L635.2 253.6C641.5 259.9 641.5 270.1 635.2 276.4L612.4000000000001 299.2000000000001C606.1000000000001 305.5 595.9000000000001 305.5 589.6000000000001 299.2000000000001L544 253.6L498.4 299.2C492.1 305.5 481.9 305.5 475.6 299.2L452.8 276.4C446.5 270.1 446.5 259.9 452.8 253.6L498.4 208L452.8 162.4C446.5 156.1 446.5 145.9 452.8 139.6L475.6 116.8C481.9 110.4999999999999 492.1 110.4999999999999 498.4 116.8L544 162.4L589.6 116.8C595.9 110.4999999999999 606.1 110.4999999999999 612.4 116.8L635.1999999999999 139.6C641.4999999999999 145.9 641.4999999999999 156.1 635.1999999999999 162.4L589.6 208zM224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160z" />
+    <glyph glyph-name="user"
+      unicode="&#xF007;"
+      horiz-adv-x="448" d=" M224 192C294.7 192 352 249.3 352 320S294.7 448 224 448S96 390.7 96 320S153.3 192 224 192zM313.6 160H296.9000000000001C274.7000000000001 149.8 250.0000000000001 144 224 144S173.4 149.8 151.1 160H134.4C60.2 160 0 99.8 0 25.6V-16C0 -42.5 21.5 -64 48 -64H400C426.5 -64 448 -42.5 448 -16V25.6C448 99.8 387.8 160 313.6 160z" />
+    <glyph glyph-name="users-class"
+      unicode="&#xF63D;"
+      horiz-adv-x="640" d=" M256 160C256 124.65 284.6600000000001 96 320 96C355.35 96 384 124.65 384 160S355.35 224 320 224C284.66 224 256 195.35 256 160zM480 160C480 124.65 508.66 96 544 96C579.35 96 608 124.65 608 160S579.35 224 544 224C508.66 224 480 195.35 480 160zM96 96C131.35 96 160 124.65 160 160S131.35 224 96 224C60.66 224 32 195.35 32 160S60.66 96 96 96zM576 64H512C476.66 64 448 35.35 448 0V-32C448 -49.67 462.33 -64 480 -64H608C625.67 -64 640 -49.67 640 -32V0C640 35.35 611.34 64 576 64zM352 64H288C252.66 64 224 35.35 224 0V-32C224 -49.67 238.33 -64 256 -64H384C401.67 -64 416 -49.67 416 -32V0C416 35.35 387.34 64 352 64zM128 64H64C28.66 64 0 35.35 0 0V-32C0 -49.67 14.33 -64 32 -64H160C177.67 -64 192 -49.67 192 -32V0C192 35.35 163.34 64 128 64zM96 384H544V256C568.68 256 590.98 246.38 608 231.03V398.41C608 425.75 586.47 448 560 448H80C53.53 448 32 425.75 32 398.41V231.03C49.02 246.38 71.33 256 96 256V384z" />
+    <glyph glyph-name="users-cog"
+      unicode="&#xF509;"
+      horiz-adv-x="640" d=" M610.5 106.7C613.1 120.8 613.1 135.2 610.5 149.3L636.3 164.2C639.3 165.9 640.5999999999999 169.4 639.5999999999999 172.7C632.8999999999999 194.3 621.3999999999999 213.9 606.3999999999999 230.1C604.0999999999999 232.6 600.3999999999999 233.2 597.3999999999999 231.5L571.5999999999999 216.6C560.6999999999999 225.9 548.1999999999999 233.1 534.6999999999999 237.9V267.7000000000001C534.6999999999999 271.1 532.3 274.1 528.9999999999999 274.8C506.6999999999999 279.8 483.9999999999999 279.6 462.7999999999999 274.8C459.4999999999999 274.1 457.0999999999999 271.1 457.0999999999999 267.7000000000001V237.9C443.5999999999999 233.1 431.0999999999999 225.9 420.2 216.6L394.3999999999999 231.5C391.5 233.2 387.7 232.6 385.3999999999999 230.1C370.3999999999999 213.9 358.8999999999999 194.3 352.2 172.7C351.2 169.4 352.5999999999999 165.9 355.5 164.2L381.3 149.3C378.7 135.2 378.7 120.8 381.3 106.7L355.5 91.8C352.5 90.1 351.2 86.6 352.2 83.3C358.8999999999999 61.7 370.3999999999999 42.2 385.3999999999999 25.9C387.7 23.4 391.3999999999999 22.8 394.3999999999999 24.5000000000001L420.2 39.4C431.0999999999999 30.1 443.5999999999999 22.9 457.0999999999999 18.1V-11.7C457.0999999999999 -15.1 459.4999999999999 -18.1 462.7999999999999 -18.8C485.0999999999999 -23.8 507.7999999999999 -23.6 528.9999999999999 -18.8C532.2999999999998 -18.1 534.6999999999999 -15.1 534.6999999999999 -11.7V18.1C548.1999999999999 22.9 560.6999999999999 30.1 571.5999999999999 39.4L597.3999999999999 24.5000000000001C600.2999999999998 22.8000000000001 604.0999999999999 23.4 606.3999999999999 25.9C621.3999999999999 42.1 632.8999999999999 61.7000000000001 639.5999999999999 83.3C640.5999999999999 86.6 639.1999999999999 90.1 636.3 91.8L610.5 106.7zM496 79.5C469.2 79.5 447.5 101.3 447.5 128S469.3 176.5 496 176.5S544.5 154.7 544.5 128S522.8 79.5 496 79.5zM96 224C131.3 224 160 252.7 160 288S131.3 352 96 352S32 323.3 32 288S60.7 224 96 224zM320 192C321.9 192 323.7 192.5 325.6 192.6C333.9000000000001 214.3 346.1 234.7 361.9000000000001 251.8C369.3 259.8 379.8 264.4 390.8 264.4C397.7 264.4 404.5 262.6 410.4000000000001 259.1L418.3 254.5C419.1 255 419.9000000000001 255.4 420.7 255.9C427.7 270.5 431.9 286.7000000000001 431.9 303.9C431.9 365.8 381.8 415.9 319.9 415.9S208 365.9 208 304C208 242.1 258.1 192 320 192zM425.2 -2.5C422.9 -1.3 420.6 0.1 418.4 1.4C410.2 -3.4 403.1 -8.4 390.9 -8.4C380 -8.4 369.5 -3.8 362 4.2C343.7 24 329.7 48.1 321.8 73.8C311.1 108.3 346.7 123.5 347.6 124.1C347.5 126.7 347.5 129.3 347.6 131.9L339.7000000000001 136.5C335.9000000000001 138.7 332.7000000000001 141.5 329.9000000000001 144.6C326.6 144.4 323.4000000000001 144 320.1 144C295.5 144 272.5 150 251.6 160H243.3C179.6 160 128 108.4 128 44.8V16C128 -10.5 149.5 -32 176 -32H431.4C427.7 -26 425.2 -19.2 425.2 -11.7V-2.5zM173.1 173.4C161.5 184.9 145.6 192 128 192H64C28.7 192 0 163.3 0 128V96C0 78.3 14.3 64 32 64H97.9C104.2 111.4 132.8 151.3 173.1 173.4z" />
+    <glyph glyph-name="users-crown"
+      unicode="&#xF6A5;"
+      horiz-adv-x="640" d=" M96 224C131.35 224 160 252.65 160 288S131.35 352 96 352S32 323.35 32 288S60.65 224 96 224zM320 192C373.02 192 416 234.98 416 288V304H224V288C224 234.98 266.98 192 320 192zM576 192H512C494.41 192 478.5 184.89 466.93 173.41C507.2 151.35 535.79 111.38 542.06 64H608C625.67 64 640 78.33 640 96V128C640 163.35 611.35 192 576 192zM173.07 173.41C161.5 184.89 145.59 192 128 192H64C28.65 192 0 163.35 0 128V96C0 78.33 14.33 64 32 64H97.94C104.21 111.38 132.79 151.34 173.07 173.41zM544 224C579.35 224 608 252.65 608 288S579.35 352 544 352S480 323.35 480 288S508.65 224 544 224zM396.8 160H388.49C367.6500000000001 150.04 344.6 144 320 144S272.36 150.04 251.51 160H243.2C179.58 160 128 108.42 128 44.8V16C128 -10.51 149.49 -32 176 -32H464C490.51 -32 512 -10.51 512 16V44.8C512 108.42 460.42 160 396.8 160zM416 416L368 392L320 416L272 392L224 416V336H416V416z" />
+    <glyph glyph-name="users"
+      unicode="&#xF0C0;"
+      horiz-adv-x="640" d=" M96 224C131.3 224 160 252.7 160 288S131.3 352 96 352S32 323.3 32 288S60.7 224 96 224zM544 224C579.3 224 608 252.7 608 288S579.3 352 544 352S480 323.3 480 288S508.7 224 544 224zM576 192H512C494.4 192 478.5 184.9 466.9 173.4C507.2 151.3 535.8 111.4 542 64H608C625.7 64 640 78.3 640 96V128C640 163.3 611.3 192 576 192zM320 192C381.9 192 432 242.1 432 304S381.9 416 320 416S208 365.9 208 304S258.1 192 320 192zM396.8 160H388.5C367.7 150 344.6 144 320 144S272.4 150 251.5 160H243.2C179.6 160 128 108.4 128 44.8V16C128 -10.5 149.5 -32 176 -32H464C490.5 -32 512 -10.5 512 16V44.8C512 108.4 460.4 160 396.8 160zM173.1 173.4C161.5 184.9 145.6 192 128 192H64C28.7 192 0 163.3 0 128V96C0 78.3 14.3 64 32 64H97.9C104.2 111.4 132.8 151.3 173.1 173.4z" />
+    <glyph glyph-name="utensil-fork"
+      unicode="&#xF2E3;"
+      horiz-adv-x="512" d=" M469.5 328.6L356.3 215.4C352.5 213.7 341.6 224.9 343.4000000000001 228.3C362.6 249.8 448.7000000000001 346.2000000000001 450.7 348.4C464.8000000000001 367.7 431.6 400.9 412.3000000000001 386.8C410.0000000000001 384.8 313.6000000000001 298.7000000000001 292.2000000000001 279.5C288.8000000000001 277.7 277.6 288.6 279.3000000000001 292.4L392.5 405.6C407.9 425 373.8 458.6 355 444.9C350.6 441.8 266.4 382.1 238.8 354.6C197 312.8 189.2 260.5 210.1 215.5L9 34.8C-2.6 24.3 -3.1 6.3 8 -4.7L59.3 -56C70.3 -67 88.4 -66.5 98.8 -54.9L279.3 146.3C324.3 125.4 376.5 133 418.4 175C446 202.6 505.7 286.8 508.8 291.2C522.5 309.9 488.9 343.9 469.4999999999999 328.6z" />
+    <glyph glyph-name="utensil-knife"
+      unicode="&#xF2E4;"
+      horiz-adv-x="512" d=" M424.9 439.3L20.8 35.2C9.3 23.7 9.3 4.9 20.8 -6.6L69.6 -55.4C81.8 -67.6 101.8 -66.8000000000001 113 -53.6L261.2 120.7C504.1 91 538.5 367.5 466.7 439.3C455.1 450.9 436.4 450.9 424.9 439.3z" />
+    <glyph glyph-name="utensil-spoon"
+      unicode="&#xF2E5;"
+      horiz-adv-x="512" d=" M480.1 416.1C425.1 471.2 315.2000000000001 450.6 252.3 387.6C203 338.3 197.2 277.6 223.5 227.2L9 34.8C-2.6 24.3 -3.1 6.3 8 -4.7L59.3 -56C70.3 -67 88.4 -66.5 98.8 -54.9L291.2 159.5C341.6 133.2 402.3 139 451.6 188.3C514.6 251.2 535.2 361.1 480.1 416.1z" />
+    <glyph glyph-name="utensils-alt"
+      unicode="&#xF2E6;"
+      horiz-adv-x="576" d=" M53.8 439.4L293 217.3C321.8 242.8 311 233.3 341.4 260.2000000000001C320 296.5 324.2 335.3 357.5 368.6C379.3 390.3 452.3 442 456.2 444.8C472.3 456.6 493.8 433.3 481 418.6L399.8 324.8C398.5 323.3 402.8 318.8 404.5 320.2000000000001L501.4 399C516.5 411.3 539.3 388.8 526.9 373.5L448.1 276.6C446.8 275 451.2 270.6 452.7 272L546.5 353.2C561.2 365.9 584.5 344.5 572.7 328.3C569.9000000000001 324.3 518.2 251.4 496.5000000000001 229.7C462.3000000000001 195.4 423.0000000000001 192.8 388.0000000000001 213.5C361.4000000000001 183.4 373.5000000000001 197.2 347.0000000000001 167.2000000000001L501.7 23.6C515 11.3 515.4000000000001 -9.7 502.5000000000001 -22.5L470.5000000000001 -54.5C457.7 -67.2999999999999 436.9000000000001 -66.9 424.5000000000001 -53.8C405.4 -31.2 223.9 182.7 216 192C56 192 0 282.1 0 415.9C0 443.8 33.3 458.4 53.8 439.4zM73.4 -22.6L105.4 -54.6C118.4 -67.6 139.8 -67 152 -53.2L269.5 79.4999999999999L212.9 146.3L74.8 24C61 11.7 60.3 -9.6 73.4 -22.6z" />
+    <glyph glyph-name="utensils"
+      unicode="&#xF2E7;"
+      horiz-adv-x="416" d=" M207.9 432.8C208.7 428.1 224 338.3 224 304C224 251.7 196.2 214.4 155.1 199.4L168 -38.7C168.7 -52.4 157.8 -64 144 -64H80C66.3 -64 55.3 -52.5 56 -38.7L68.9 199.4C27.7 214.4 0 251.8 0 304C0 338.4 15.3 428.1 16.1 432.8C19.3 453.1 61.4 453.4 64 431.7V290.5C65.3 287.1 79.1 287.3 80 290.5C81.4 315.8 87.9 429.7 88 432.3C91.3 453.1 132.7 453.1 135.9 432.3C136.1 429.6 142.5 315.8 143.9 290.5C144.8 287.3 158.7 287.1 159.9 290.5V431.7C162.5 453.3 204.7 453.1 207.9 432.8zM327.1 147.1L312.1 -38C310.9000000000001 -52 322 -64 336 -64H392C405.3 -64 416 -53.3 416 -40V424C416 437.2 405.3 448 392 448C309.5 448 170.6 269.5 327.1 147.1z" />
+    <glyph glyph-name="value-absolute"
+      unicode="&#xF6A6;"
+      horiz-adv-x="512" d=" M48 416H16C7.16 416 0 408.8400000000001 0 400V-16C0 -24.84 7.16 -32 16 -32H48C56.84 -32 64 -24.84 64 -16V400C64 408.8400000000001 56.84 416 48 416zM496 416H464C455.16 416 448 408.8400000000001 448 400V-16C448 -24.84 455.16 -32 464 -32H496C504.84 -32 512 -24.84 512 -16V400C512 408.8400000000001 504.84 416 496 416zM377.3 297.13L361.13 313.3C352.2 322.23 337.72 322.23 328.78 313.3L256 240.52L183.22 313.3C174.29 322.23 159.81 322.23 150.87 313.3L134.7 297.13C125.77 288.2 125.77 273.7200000000001 134.7 264.78L207.48 192L134.7 119.22C125.77 110.29 125.77 95.81 134.7 86.87L150.87 70.7C159.8 61.77 174.28 61.77 183.22 70.7L256 143.48L328.78 70.7000000000001C337.71 61.77 352.19 61.77 361.13 70.7000000000001L377.3 86.8700000000001C386.23 95.8000000000001 386.23 110.2800000000001 377.3 119.2200000000001L304.52 192L377.3 264.78C386.23 273.7100000000001 386.23 288.2 377.3 297.13z" />
+    <glyph glyph-name="vector-square"
+      unicode="&#xF5CB;"
+      horiz-adv-x="512" d=" M512 320V416C512 433.67 497.67 448 480 448H384C366.33 448 352 433.67 352 416H160C160 433.67 145.67 448 128 448H32C14.33 448 0 433.67 0 416V320C0 302.33 14.33 288 32 288V96C14.33 96 0 81.67 0 64V-32C0 -49.67 14.33 -64 32 -64H128C145.67 -64 160 -49.67 160 -32H352C352 -49.67 366.33 -64 384 -64H480C497.67 -64 512 -49.67 512 -32V64C512 81.67 497.67 96 480 96V288C497.67 288 512 302.3300000000001 512 320zM416 384H448V352H416V384zM64 384H96V352H64V384zM96 0H64V32H96V0zM448 0H416V32H448V0zM416 96H384C366.33 96 352 81.67 352 64V32H160V64C160 81.67 145.67 96 128 96H96V288H128C145.67 288 160 302.3300000000001 160 320V352H352V320C352 302.33 366.33 288 384 288H416V96z" />
+    <glyph glyph-name="venus-double"
+      unicode="&#xF226;"
+      horiz-adv-x="512" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 203.5 47.9 146.1 112 131.6V80H76C69.4 80 64 74.6 64 68V28C64 21.4 69.4 16 76 16H112V-20C112 -26.6 117.4 -32 124 -32H164C170.6 -32 176 -26.6 176 -20V16H212C218.6 16 224 21.4 224 28V68C224 74.6 218.6 80 212 80H176V131.6C240.1 146.1 288 203.5 288 272zM64 272C64 316.1 99.9 352 144 352S224 316.1 224 272S188.1 192 144 192S64 227.9 64 272zM400 131.6V80H436C442.6 80 448 74.6 448 68V28C448 21.4 442.6 16 436 16H400V-20C400 -26.6 394.6 -32 388 -32H348C341.4 -32 336 -26.6 336 -20V16H300C293.4 16 288 21.4 288 28V68C288 74.6 293.4 80 300 80H336V131.6C314.8 136.4 295.4 145.9 278.8 158.9C292.8 175.6 303.8 194.9 310.9000000000001 216C325.4000000000001 201.2 345.6 192 368.0000000000001 192C412.1000000000001 192 448.0000000000001 227.9000000000001 448.0000000000001 272S412.1000000000001 352 368.0000000000001 352C345.7000000000001 352 325.4000000000001 342.8 310.9000000000001 328C303.8 349.1 292.9000000000001 368.4000000000001 278.8 385.1C303.4 404.4 334.3 416 368 416C447.5 416 512 351.5 512 272C512 203.5 464.1 146.1 400 131.6z" />
+    <glyph glyph-name="venus-mars"
+      unicode="&#xF228;"
+      horiz-adv-x="576" d=" M564 448H485C474.3 448 469 435.1 476.5 427.5L493.4 410.6L444.7 361.9C422.5 375.9 396.2 384 368 384C334.3 384 303.4 372.4 278.8 353.1C292.8 336.4 303.8 317.1 310.9000000000001 296C325.4000000000001 310.8 345.6 320 368.0000000000001 320C412.1000000000001 320 448.0000000000001 284.1 448.0000000000001 240S412.1000000000001 160 368.0000000000001 160C345.7000000000001 160 325.4000000000001 169.2 310.9000000000001 184C303.8 162.9 292.9000000000001 143.6 278.8 126.9C303.3 107.5 334.3 96 368 96C447.5 96 512 160.5 512 240C512 268.2 503.9 294.5 489.9 316.7L538.6 365.4L555.5 348.5C557.9 346.1 560.9 345 563.9 345C570.1 345 576 349.8 576 357V436C576 442.6 570.6 448 564 448zM144 384C64.5 384 0 319.5 0 240C0 171.5 47.9 114.1 112 99.6V48H76C69.4 48 64 42.6 64 36V-4C64 -10.6 69.4 -16 76 -16H112V-52C112 -58.6 117.4 -64 124 -64H164C170.6 -64 176 -58.6 176 -52V-16H212C218.6 -16 224 -10.6 224 -4V36C224 42.6 218.6 48 212 48H176V99.6C240.1 114.2000000000001 288 171.5 288 240.0000000000001C288 319.5 223.5 384 144 384zM144 160C99.9 160 64 195.9 64 240S99.9 320 144 320S224 284.1 224 240S188.1 160 144 160z" />
+    <glyph glyph-name="venus"
+      unicode="&#xF221;"
+      horiz-adv-x="288" d=" M288 272C288 351.5 223.5 416 144 416S0 351.5 0 272C0 203.5 47.9 146.1 112 131.6V80H76C69.4 80 64 74.6 64 68V28C64 21.4 69.4 16 76 16H112V-20C112 -26.6 117.4 -32 124 -32H164C170.6 -32 176 -26.6 176 -20V16H212C218.6 16 224 21.4 224 28V68C224 74.6 218.6 80 212 80H176V131.6C240.1 146.1 288 203.5 288 272zM64 272C64 316.1 99.9 352 144 352S224 316.1 224 272S188.1 192 144 192S64 227.9 64 272z" />
+    <glyph glyph-name="vial"
+      unicode="&#xF492;"
+      horiz-adv-x="480" d=" M477.7 261.9L309.5 429.7C306.4 432.8 301.3 432.8 298.2 429.7L264.2 395.8C261.1 392.7 261.1 387.6 264.2 384.5L275.4 373.4L33 131.5C-5.8 92.8 -12.1 29.5 23.6 -12C44.2 -36 73.1 -48 102 -47.9C128.4 -47.9 154.8 -37.9 174.9 -17.8L421.2000000000001 227.9000000000001L432.4000000000001 216.8000000000001C435.5000000000001 213.7000000000001 440.6 213.7000000000001 443.7000000000001 216.8000000000001L477.7 250.7000000000001C480.8000000000001 253.7000000000001 480.8000000000001 258.8000000000001 477.7 261.9000000000001zM318 192H161L309 339.7L387.5 261.4L318 192z" />
+    <glyph glyph-name="vials"
+      unicode="&#xF493;"
+      horiz-adv-x="640" d=" M72 384H96V144C96 99.9 131.9 64 176 64S256 99.9 256 144V384H280C284.4 384 288 387.6 288 392V440C288 444.4 284.4 448 280 448H72C67.6 448 64 444.4 64 440V392C64 387.6 67.6 384 72 384zM144 384H208V288H144V384zM624 0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-16C640 -7.2 632.8 0 624 0zM360 384H384V144C384 99.9 419.9 64 464 64S544 99.9 544 144V384H568C572.4 384 576 387.6 576 392V440C576 444.4 572.4 448 568 448H360C355.6 448 352 444.4 352 440V392C352 387.6 355.6 384 360 384zM432 384H496V288H432V384z" />
+    <glyph glyph-name="video-plus"
+      unicode="&#xF4E1;"
+      horiz-adv-x="576" d=" M336.2 384H47.8C21.4 384 0 362.6 0 336.2V47.8C0 21.4 21.4 0 47.8 0H336.2C362.6 0 384 21.4 384 47.8V336.2C384 362.6 362.6 384 336.2 384zM304 184C304 175.2 296.8 168 288 168H216V96C216 87.2 208.8 80 200 80H184C175.2 80 168 87.2 168 96V168H96C87.2 168 80 175.2 80 184V200C80 208.8 87.2 216 96 216H168V288C168 296.8 175.2 304 184 304H200C208.8 304 216 296.8 216 288V216H288C296.8 216 304 208.8 304 200V184zM576 320.5V63.6C576 38.1 546.9 23.2 525.6 37.8L416 113.3V270.7L525.6 346.2C546.9 360.9 576 345.9 576 320.5z" />
+    <glyph glyph-name="video-slash"
+      unicode="&#xF4E2;"
+      horiz-adv-x="640" d=" M633.8 -10.1L578.8 32.4C594.1999999999999 33.8 608 46.1 608 63.5V320.5C608 346 578.9 360.9 557.6 346.3L448 270.7V133.5L416 158.2V336.2C416 362.6 394.6 384 368.2 384H123.9L45.5 444.6C38.5 450 28.5 448.8 23 441.8L3.4 416.6C-2 409.6 -0.8 399.6 6.2 394.2L42.7 366L416 77.4L594.5 -60.6C601.5 -66 611.5 -64.8000000000001 617 -57.8L636.6 -32.5C642.1 -25.6 640.8000000000001 -15.5 633.8000000000001 -10.1zM32 47.8C32 21.4 53.4 0 79.8 0H368.2C379.4 0 389.6 4 397.8 10.5L32 293.3V47.8z" />
+    <glyph glyph-name="video"
+      unicode="&#xF03D;"
+      horiz-adv-x="576" d=" M336.2 384H47.8C21.4 384 0 362.6 0 336.2V47.8C0 21.4 21.4 0 47.8 0H336.2C362.6 0 384 21.4 384 47.8V336.2C384 362.6 362.6 384 336.2 384zM525.6 346.3L416 270.7V113.3L525.6 37.8C546.8000000000001 23.1999999999999 576 38.1 576 63.6V320.5C576 345.9 546.9 360.9 525.6 346.3z" />
+    <glyph glyph-name="vihara"
+      unicode="&#xF6A7;"
+      horiz-adv-x="640" d=" M632.88 47.29L544 96V160L599.16 177.69C610.9499999999999 183.59 610.9499999999999 200.41 599.16 206.31L480 256V320L507.31 336.3C515.03 344.02 512.92 357.04 503.15 361.92L320 448L136.85 361.93C127.08 357.05 124.97 344.03 132.69 336.31L160 320V256L40.84 206.31C29.05 200.41 29.05 183.59 40.84 177.69L96 160V96L7.12 47.29C1.7 43.67 -0.58 37.66 0.12 32C0.74 26.99 3.69 22.25 8.84 19.67L64 0V-48C64 -56.84 71.16 -64 80 -64H112C120.84 -64 128 -56.84 128 -48V0H288V-48C288 -56.84 295.1600000000001 -64 304 -64H336C344.84 -64 352 -56.84 352 -48V0H512V-48C512 -56.84 519.16 -64 528 -64H560C568.84 -64 576 -56.84 576 -48V0L631.15 19.67C636.31 22.25 639.25 26.99 639.87 32C640.58 37.67 638.3 43.68 632.88 47.29zM224 320H416V256H224V320zM160 96V160H480V96H160z" />
+    <glyph glyph-name="volcano"
+      unicode="&#xF770;"
+      horiz-adv-x="512" d=" M160 304C172.9 304 184.8 307.9 194.8 314.4L224 256H288L317.2 314.4C327.2 307.9 339.1 304 352 304C387.3 304 416 332.7 416 368S387.3 432 352 432C336.2 432 322 426.1 310.8 416.6C299.6 435.3 279.4 448 256 448S212.4 435.3 201.2 416.6C190 426.1 175.8 432 160 432C124.7 432 96 403.3 96 368S124.7 304 160 304zM304.4 224H207.6C197.8 224 188.5 219.5 182.4 211.7L126.8 140.7L140 124.2C149.8 112 170.3 112 180.1 124.2C190.9 137.7 206.9 145.5 224.2 145.8C241.4 147.3 257.8 138.8 269 125.7L300.6 88.9C310.4 77.5 329.8 77.5 339.6 88.9L384.7 141.5L329.7 211.7C323.5 219.5 314.3 224 304.4 224zM505.5 -12.8L404.7 115.9L363.8 68.2C352.8 55.4 336.8 48 320 48S287.2 55.3 276.2 68.2L244.6 105C239.7 110.7 232.6 114 225.1 114H224.7C217 113.8 209.9 110.3 205.1 104.3C183 76.8 137 76.8 115 104.3L106.6 114.9L6.5 -12.8C-9.4 -33.9 5.7 -64 32.1 -64H480C506.3 -64 521.4 -33.9 505.5 -12.8z" />
+    <glyph glyph-name="volleyball-ball"
+      unicode="&#xF45F;"
+      horiz-adv-x="495.9" d=" M223.3 204.6C222.4 241.6 214.7 277.4 200.6 310.3C109.8 267.9 43.1 187.9 20.3 93.5C33.7 62.7 53.2 35.2 77.2 12.4C99.9 91.6 151.4 160.2 223.3 204.6zM186.4 339C171.4 365.4 151.9 389.1 129 409.7C38 359.9 -15.8 256.8 4 147.5C37.4 230.6 102.4 299.5 186.4 339zM374 173.9C382.6 273.7 346.7 371.4 276.5 438.3C261.8 440 224.9 443.8 177.6 429.8C234.9 370.5 268.6 291.6 271.1 207.1C303.6 189.4 338.4000000000001 178.1 374 173.9zM249.3 164.4C217.7 145.1 190.6 120.5 169.1 91.8C251.1 34.4999999999999 353.6 16.6999999999999 446.6 43.9999999999999C466.3 70.3999999999999 480.8 100.8 488.8 133.9C462.2 127.3 435.1 123.5 407.9 123.5C353.3 123.6 299 137.6 249.3 164.4zM151 64.7C135.8 38.7 125.3 10.3 118.9 -19.5C156.5 -42.5 200.6 -56 248 -56C309 -56 364.7 -33.9 407.9 2.6C295 -13.5 204.6 27.4 151 64.7zM331.3 425.3C386.6 354.9 413.8 264.1 405.9 171.7C436.2 171.5 466.4 176.5 495.6 185.9C495.6 187.9 495.9 189.9 495.9 191.9C495.9 299.7 427.2 391 331.3 425.3z" />
+    <glyph glyph-name="volume-down"
+      unicode="&#xF027;"
+      horiz-adv-x="384" d=" M215.03 375.96L126.06 287H24C10.74 287 0 276.26 0 263V119C0 105.75 10.74 95 24 95H126.06L215.03 6.05C230.06 -8.98 256 1.58 256 23.02V358.98C256 380.45 230.04 390.9600000000001 215.03 375.9600000000001zM338.23 267.88C326.6500000000001 274.2100000000001 312.04 270.04 305.62 258.43C299.23 246.82 303.46 232.23 315.07 225.82C327.98 218.72 336 205.38 336 191C336 176.62 327.98 163.28 315.08 156.19C303.47 149.78 299.24 135.19 305.63 123.58C312.06 111.92 326.68 107.78 338.24 114.13C366.4700000000001 129.68 384.01 159.13 384.01 191.01S366.47 252.33 338.23 267.88z" />
+    <glyph glyph-name="volume-mute"
+      unicode="&#xF6A9;"
+      horiz-adv-x="512" d=" M215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C230.06 -7.98 256 2.58 256 24.02V359.98C256 381.44 230.04 391.9600000000001 215.03 376.95zM461.64 192L507.28 237.64C513.5799999999999 243.94 513.5799999999999 254.16 507.28 260.46L484.46 283.28C478.16 289.58 467.94 289.58 461.64 283.28L416 237.64L370.36 283.28C364.06 289.58 353.8400000000001 289.58 347.54 283.28L324.7200000000001 260.46C318.42 254.16 318.42 243.94 324.7200000000001 237.64L370.36 192L324.73 146.37C318.43 140.07 318.43 129.85 324.73 123.55L347.55 100.73C353.85 94.43 364.07 94.43 370.37 100.73L416 146.36L461.64 100.72C467.94 94.42 478.16 94.42 484.46 100.72L507.28 123.54C513.5799999999999 129.84 513.5799999999999 140.06 507.28 146.36L461.64 192z" />
+    <glyph glyph-name="volume-off"
+      unicode="&#xF026;"
+      horiz-adv-x="257.33" d=" M216.36 376.96L127.39 288H25.33C12.07 288 1.33 277.26 1.33 264V120C1.33 106.75 12.07 96 25.33 96H127.39L216.36 7.05C231.39 -7.98 257.3300000000001 2.58 257.3300000000001 24.02V359.98C257.3300000000001 381.45 231.3700000000001 391.9600000000001 216.3600000000001 376.9600000000001z" />
+    <glyph glyph-name="volume-slash"
+      unicode="&#xF2E2;"
+      horiz-adv-x="640" d=" M633.82 -10.1L564.82 43.23C592.42 87.2 608 138.32 608 192C608 287.33 560.27 375.5800000000001 480.35 428.03C469.18 435.36 454.17 432.27 446.8400000000001 421.08C439.5000000000001 409.9100000000001 442.62 394.9 453.79 387.57C520.0600000000001 344.0800000000001 559.61 270.9700000000001 559.61 191.99C559.61 149.21 547.65 108.4 526.39 72.93L488.27 102.39C503.49 129.32 512 159.94 512 192C512 255.09 479.94 314.0900000000001 426.23 348.16C415.04 355.25 400.2000000000001 351.96 393.11 340.75C386.0200000000001 329.55 389.3300000000001 314.7200000000001 400.5200000000001 307.62C440.27 282.41 464 238.56 464 192C464 170.79 458.97 150.43 449.8 132.12L410.24 162.7C413.62 172.05 416 181.77 416 192C416 223.88 398.4700000000001 253.33 370.23 268.88C358.6500000000001 275.2100000000001 344.04 271.04 337.62 259.43C331.23 247.82 335.46 233.23 347.07 226.82C358.83 220.36 366.19 208.64 367.47 195.76L288 257.18V359.98C288 381.44 262.04 391.9600000000001 247.03 376.95L197.32 327.25L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.05 -25.58 640.8 -15.53 633.8199999999999 -10.1zM32 264V120C32 106.75 42.74 96 56 96H158.06L247.03 7.05C262.06 -7.98 288 2.58 288 24.02V95.4L43.76 284.16C36.86 279.95 32 272.68 32 264z" />
+    <glyph glyph-name="volume-up"
+      unicode="&#xF028;"
+      horiz-adv-x="576" d=" M215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C230.06 -7.98 256 2.58 256 24.02V359.98C256 381.44 230.04 391.9600000000001 215.03 376.95zM448.35 428.03C437.18 435.36 422.17 432.27 414.8400000000001 421.08C407.5000000000001 409.9100000000001 410.62 394.9 421.79 387.57C488.06 344.0800000000001 527.61 270.9700000000001 527.61 191.99C527.61 113.01 488.06 39.9 421.79 -3.59C410.62 -10.91 407.5 -25.93 414.8400000000001 -37.09C421.8800000000001 -47.8 436.7700000000001 -51.65 448.35 -44.04C528.27 8.42 576 96.67 576 192S528.27 375.57 448.35 428.03zM480 192C480 255.53 447.94 313.94 394.23 348.24C383.04 355.38 368.2000000000001 352.06 361.11 340.7800000000001S357.3300000000001 314.5700000000001 368.5200000000001 307.42C408.27 282.03 432 238.89 432 192S408.27 101.97 368.52 76.58C357.33 69.44 354.02 54.51 361.11 43.22C367.62 32.86 382.23 28.08 394.23 35.76C447.94 70.06 480 128.46 480 192zM338.23 268.87C326.6500000000001 275.2000000000001 312.04 271.03 305.62 259.42C299.23 247.81 303.46 233.2200000000001 315.07 226.81C327.98 219.72 336 206.37 336 192C336 177.62 327.98 164.28 315.08 157.19C303.47 150.78 299.24 136.19 305.63 124.58C312.06 112.92 326.68 108.78 338.24 115.13C366.4700000000001 130.68 384.01 160.13 384.01 192.01S366.47 253.33 338.23 268.87z" />
+    <glyph glyph-name="volume"
+      unicode="&#xF6A8;"
+      horiz-adv-x="480" d=" M215.03 376.95L126.06 288H24C10.74 288 0 277.26 0 264V120C0 106.75 10.74 96 24 96H126.06L215.03 7.05C230.06 -7.98 256 2.58 256 24.02V359.98C256 381.44 230.04 391.9600000000001 215.03 376.95zM480 192C480 255.53 447.94 313.94 394.23 348.24C383.04 355.38 368.2000000000001 352.06 361.11 340.7800000000001S357.3300000000001 314.5700000000001 368.5200000000001 307.42C408.27 282.03 432 238.89 432 192S408.27 101.97 368.52 76.58C357.33 69.44 354.02 54.51 361.11 43.22C367.62 32.86 382.23 28.08 394.23 35.76C447.94 70.06 480 128.47 480 192zM338.23 268.87C326.6500000000001 275.2000000000001 312.04 271.03 305.62 259.42C299.23 247.81 303.46 233.2200000000001 315.07 226.81C327.98 219.72 336 206.37 336 192C336 177.62 327.98 164.28 315.08 157.19C303.47 150.78 299.24 136.19 305.63 124.58C312.06 112.92 326.68 108.78 338.24 115.13C366.4700000000001 130.68 384.01 160.13 384.01 192.01S366.47 253.33 338.23 268.87z" />
+    <glyph glyph-name="vote-nay"
+      unicode="&#xF771;"
+      horiz-adv-x="640" d=" M608 128H544V64H566.4C571.6999999999999 64 576 60.4 576 56V40C576 35.6 571.7 32 566.4 32H73.6C68.3 32 64 35.6 64 40V56C64 60.4 68.3 64 73.6 64H96V128H32C14.3 128 0 113.7 0 96V0C0 -17.7 14.3 -32 32 -32H608C625.7 -32 640 -17.7 640 0V96C640 113.7 625.7 128 608 128zM512 64V383.7C512 401.6 497.5 416 479.7 416H160.4C142.5 416 128 401.5 128 383.7V64H512zM235.1 290.9C228.9 297.1 228.9 307.3 235.1 313.5L246.4 324.8C252.6 331 262.8 331 269 324.8L319.9 273.9L370.8 324.8C377 331 387.2 331 393.4 324.8L404.7 313.5C410.9 307.3 410.9 297.1 404.7 290.9L353.9 240L404.8 189.1C411 182.9 411 172.7000000000001 404.8 166.5L393.5 155.2C387.3 149 377.1 149 370.8999999999999 155.2L320 206.1L269.1 155.2C262.9000000000001 149 252.7 149 246.5000000000001 155.2L235.2 166.5C229.0000000000001 172.7 229.0000000000001 182.9 235.2 189.1L286.1 240.0000000000001L235.1 290.9000000000001z" />
+    <glyph glyph-name="vote-yea"
+      unicode="&#xF772;"
+      horiz-adv-x="640" d=" M608 128H544V64H566.4C571.6999999999999 64 576 60.4 576 56V40C576 35.6 571.7 32 566.4 32H73.6C68.3 32 64 35.6 64 40V56C64 60.4 68.3 64 73.6 64H96V128H32C14.3 128 0 113.7 0 96V0C0 -17.7 14.3 -32 32 -32H608C625.7 -32 640 -17.7 640 0V96C640 113.7 625.7 128 608 128zM512 64V383.7C512 401.6 497.5 416 479.7 416H160.4C142.5 416 128 401.5 128 383.7V64H512zM211.2 246L236.7 271.3C240.9 275.5 247.7 275.5 251.9 271.2000000000001L293.2 229.6L388.4 324C392.6 328.2000000000001 399.4 328.2000000000001 403.6 323.9000000000001L428.9 298.4000000000001C433.1 294.2000000000001 433.1 287.4000000000001 428.8 283.2000000000001L300.5 156C296.3 151.8 289.5 151.8 285.3 156.1L211.2 230.8C206.9 235 207 241.8 211.2 246z" />
+    <glyph glyph-name="vr-cardboard"
+      unicode="&#xF729;"
+      horiz-adv-x="640" d=" M608 384H32C14.33 384 0 369.67 0 352V32C0 14.33 14.33 0 32 0H192.22C217.41 0 240.25 14.77 250.58 37.74L278.32 99.38C286.21 116.92 302.35 128 320 128S353.79 116.92 361.68 99.38L389.42 37.74C399.75 14.77 422.6 0 447.78 0H608C625.67 0 640 14.33 640 32V352C640 369.67 625.67 384 608 384zM160 144C124.65 144 96 172.65 96 208S124.65 272 160 272S224 243.35 224 208S195.35 144 160 144zM480 144C444.65 144 416 172.65 416 208S444.65 272 480 272S544 243.35 544 208S515.35 144 480 144z" />
+    <glyph glyph-name="walking"
+      unicode="&#xF554;"
+      horiz-adv-x="320" d=" M208 352C234.5 352 256 373.5 256 400S234.5 448 208 448S160 426.5 160 400S181.5 352 208 352zM302.5 202.9L279.2 214.7L269.5 244.1C254.8 288.7000000000001 213.8 319.9000000000001 167.3 320C131.3 320.1 111.4 309.9000000000001 74 294.8000000000001C52.4 286.1 34.7 269.6 24.3 248.6L17.6 235C9.8 219.2 16.1 200 31.8 192.1C47.4 184.2 66.4 190.6 74.3 206.4L81 220C84.5 227 90.3 232.5 97.5 235.4L124.3 246.2L109.1 185.5C103.9 164.7 109.5 142.6 124 126.7L183.9 61.3C191.1 53.4 196.2 43.9 198.8 33.6L217.1 -39.7C221.4 -56.8000000000001 238.8 -67.3000000000001 255.9000000000001 -63.0000000000001C273.0000000000001 -58.7 283.5000000000001 -41.3000000000001 279.2000000000001 -24.2L257.0000000000001 64.8C254.4000000000001 75.1 249.3000000000001 84.6999999999999 242.1000000000001 92.4999999999999L196.6000000000001 142.1999999999999L213.8000000000001 210.8999999999999L219.3000000000001 194.3999999999999C224.6000000000001 178.2999999999999 236.0000000000001 165 251.0000000000001 157.3999999999999L274.3 145.5999999999999C289.9000000000001 137.6999999999999 308.9000000000001 144.0999999999999 316.8 159.8999999999999C324.5 175.5999999999999 318.2 194.9999999999999 302.5 202.8999999999999zM73.6 62.2C70.4 54.1 65.6 46.8 59.4 40.7L9.4 -9.4C-3.1 -21.9 -3.1 -42.2 9.4 -54.7S42.1 -67.2 54.6 -54.7L114 4.6999999999999C120.1 10.8 124.9 18.0999999999999 128.2 26.1999999999999L141.7 59.9999999999999C86.4 120.3 103 101.8 94.3 113.6999999999999L73.6 62.1999999999999z" />
+    <glyph glyph-name="wallet"
+      unicode="&#xF555;"
+      horiz-adv-x="512" d=" M461.2 320H80C71.16 320 64 327.16 64 336S71.16 352 80 352H464C472.84 352 480 359.16 480 368C480 394.51 458.51 416 432 416H64C28.65 416 0 387.35 0 352V32C0 -3.35 28.65 -32 64 -32H461.2C489.22 -32 512 -10.47 512 16V272C512 298.4700000000001 489.22 320 461.2 320zM416 112C398.33 112 384 126.33 384 144S398.33 176 416 176S448 161.67 448 144S433.67 112 416 112z" />
+    <glyph glyph-name="wand-magic"
+      unicode="&#xF72B;"
+      horiz-adv-x="512" d=" M80 288L106.66 341.33L160 368L106.66 394.67L80 448L53.34 394.66L0 368L53.34 341.33L80 288zM224 352L240 384L272 400L240 416L224 448L208 416L176 400L208 384L224 352zM458.66 106.67L432 160L405.34 106.67L352 80L405.3400000000001 53.33L432 0L458.66 53.33L512 80L458.66 106.67zM400 256C408.84 256 416 263.16 416 272V299.9600000000001L507.87 401.79C513.59 408.11 513.35 417.81 507.32 423.8400000000001L487.84 443.31C481.81 449.34 472.11 449.58 465.79 443.86L186.6 192H144C135.16 192 128 184.84 128 176V139.13L10.53 33.16C-3.04 20.8800000000001 -3.57 -0.26 9.37 -13.2L50.8 -54.63C63.74 -67.57 84.88 -67.04 97.16 -53.47L376.34 256H400z" />
+    <glyph glyph-name="wand"
+      unicode="&#xF72A;"
+      horiz-adv-x="512" d=" M400 256C408.84 256 416 263.16 416 272V299.9600000000001L507.87 401.79C513.59 408.11 513.35 417.81 507.32 423.8400000000001L487.84 443.31C481.81 449.34 472.11 449.58 465.79 443.86L186.6 192H144C135.16 192 128 184.84 128 176V139.13L10.53 33.16C-3.04 20.8800000000001 -3.57 -0.26 9.37 -13.2L50.8 -54.63C63.74 -67.57 84.88 -67.04 97.16 -53.47L376.34 256H400z" />
+    <glyph glyph-name="warehouse-alt"
+      unicode="&#xF495;"
+      horiz-adv-x="640" d=" M610.5 331L338.4 444.3A48.15 48.15 0 0 1 301.5 444.3L29.5 331C11.7 323.5 0 306.1 0 286.7V-56C0 -60.4 3.6 -64 8 -64H56C60.4 -64 64 -60.4 64 -56V240C64 248.8 71.2 256 80 256H560C568.8 256 576 248.8 576 240V-56C576 -60.4 579.6 -64 584 -64H632C636.4 -64 640 -60.4 640 -56V286.7C640 306.1 628.3 323.5 610.5 331zM304 32H144C135.2 32 128 24.8 128 16V-48C128 -56.8 135.2 -64 144 -64H304C312.8 -64 320 -56.8 320 -48V16C320 24.8 312.8 32 304 32zM496 32H368C359.2 32 352 24.8 352 16V-48C352 -56.8 359.2 -64 368 -64H496C504.8 -64 512 -56.8 512 -48V16C512 24.8 504.8 32 496 32zM304 160H144C135.2 160 128 152.8 128 144V80C128 71.2 135.2 64 144 64H304C312.8 64 320 71.2 320 80V144C320 152.8 312.8 160 304 160z" />
+    <glyph glyph-name="warehouse"
+      unicode="&#xF494;"
+      horiz-adv-x="640" d=" M504 96H136.4C132 96 128.4 92.4 128.4 88L128.3 40C128.3 35.6 131.9 32 136.3 32H504C508.4 32 512 35.6 512 40V88C512 92.4 508.4 96 504 96zM504 0H136.1C131.7 0 128.1 -3.6 128.1 -8L128 -56C128 -60.4 131.6 -64 136 -64H504C508.4 -64 512 -60.4 512 -56V-8C512 -3.6 508.4 0 504 0zM504 192H136.6C132.2 192 128.6 188.4 128.6 184L128.5 136C128.5 131.6 132.1 128 136.5 128H504C508.4 128 512 131.6 512 136V184C512 188.4 508.4 192 504 192zM610.5 331L338.4 444.3A48.15 48.15 0 0 1 301.5 444.3L29.5 331C11.7 323.5 0 306.1 0 286.7V-56C0 -60.4 3.6 -64 8 -64H88C92.4 -64 96 -60.4 96 -56V192C96 209.6 110.6 224 128.6 224H511.4C529.4 224 544 209.6 544 192V-56C544 -60.4 547.6 -64 552 -64H632C636.4 -64 640 -60.4 640 -56V286.7C640 306.1 628.3 323.5 610.5 331z" />
+    <glyph glyph-name="watch-fitness"
+      unicode="&#xF63E;"
+      horiz-adv-x="384" d=" M64 -32C64 -49.67 78.33 -64 96 -64H288C305.67 -64 320 -49.67 320 -32V-16H64V-32zM320 416C320 433.67 305.67 448 288 448H96C78.33 448 64 433.67 64 416V400H320V416zM320 368H64C28.65 368 0 339.35 0 304V80C0 44.65 28.65 16 64 16H320C355.35 16 384 44.65 384 80V304C384 339.35 355.35 368 320 368zM286.57 185.79L201.9 100.15A13.89 13.89 0 0 0 182.1 100.15L97.43 185.79C72.83 210.67 74.27 251.92 101.76 274.87C125.72 294.89 161.41 291.29 183.38 269.06L192 260.3399999999999L200.62 269.06C222.59 291.29 258.28 294.88 282.24 274.87C309.73 251.91 311.17 210.66 286.57 185.79z" />
+    <glyph glyph-name="watch"
+      unicode="&#xF2E1;"
+      horiz-adv-x="384" d=" M192 368C289.2 368 368 289.2 368 192S289.2 16 192 16S16 94.8 16 192S94.8 368 192 368M192 392C239.4 392 284.4 375.4 320 345.7V424C320 437.3 309.3 448 296 448H88C74.7 448 64 437.3 64 424V345.7C99.6 375.4 144.5 392 192 392zM192 -8C144.5 -8 99.6 8.7 64 38.3V-40C64 -53.3 74.7 -64 88 -64H296C309.3 -64 320 -53.3 320 -40V38.3C284.4 8.6 239.4 -8 192 -8zM245 122.3L263.8 148.2C267.7 153.6 266.5 161.1 261.2 165L220 195V288C220 294.6 214.6 300 208 300H176C169.4 300 164 294.6 164 288V172.6C164 168.8 165.8 165.2000000000001 168.9 162.9L228.2 119.7000000000001C233.6 115.7000000000001 241.1 116.9 245 122.3000000000001z" />
+    <glyph glyph-name="water-lower"
+      unicode="&#xF774;"
+      horiz-adv-x="576" d=" M562.1 0.1C540.6 2.5 520 10.6 504.2 23C490.1 34.1 470.0000000000001 34.3 456.0000000000001 23C418.1000000000001 -7.4 348.8000000000001 -7.4 310.3000000000001 24.5C296.8000000000001 35.7 277.3000000000001 33.6 263.6000000000001 22.7C225.6000000000001 -7.4 156.7000000000001 -7.3 118.4000000000001 24.4C104.9000000000001 35.6 85.1000000000001 33.3 71.3000000000001 22.4C55.8000000000001 10.2 35.3000000000001 2.3 13.6000000000001 0C5.7000000000001 -0.8 1e-13 -7.8 1e-13 -15.7V-47.9C1e-13 -57 7.6000000000001 -64.6999999999999 16.7000000000001 -63.9C45.5000000000001 -61.4 72.8000000000001 -52.5 96.1000000000001 -38C152.6000000000001 -72.6 233.1000000000001 -72.1 288.1000000000002 -38C344.6000000000002 -72.6 425.1000000000002 -72.1 480.1000000000001 -38C503.4000000000001 -52.2 531.0000000000001 -61.3 559.2000000000002 -63.8C568.3000000000002 -64.6 575.9000000000002 -56.9 575.9000000000002 -47.8V-16.2C576.0000000000002 -8.2 570.2000000000002 -0.8 562.1000000000003 0.1zM562.1 144.1C540.6 146.5 520 154.6 504.2 167C490.1 178.1 470.0000000000001 178.3 456.0000000000001 167C418.1000000000001 136.6 348.8000000000001 136.6 310.3000000000001 168.5C296.8000000000001 179.7 277.3000000000001 177.6 263.6000000000001 166.7C225.6000000000001 136.6 156.7000000000001 136.7 118.4000000000001 168.4C104.9000000000001 179.6 85.1000000000001 177.3 71.3000000000001 166.4C55.8000000000001 154.2 35.3000000000001 146.3 13.6000000000001 144C5.7000000000001 143.2 1e-13 136.2 1e-13 128.3V96.1C1e-13 87 7.6000000000001 79.3 16.7000000000001 80.1C45.5000000000001 82.6 72.8000000000001 91.5 96.1000000000001 106C152.6000000000001 71.4 233.1000000000001 71.9 288.1000000000002 106C344.6000000000002 71.4 425.1000000000002 71.9 480.1000000000001 106C503.4000000000001 91.8 531.0000000000001 82.7 559.2000000000002 80.2C568.3000000000002 79.4 575.9000000000002 87.1 575.9000000000002 96.2V127.8C576.0000000000002 135.8 570.2000000000002 143.2 562.1000000000003 144.1zM276 229C282.6 222.4 293.4 222.4 300 229L396.4 324.7C406.5 334.8 399.4 352.1 385.1 352.1H320V432C320 440.8 312.8 448 304 448H272C263.2 448 256 440.8 256 432V352H190.8C176.5 352 169.4 334.7 179.6 324.6L276 229z" />
+    <glyph glyph-name="water-rise"
+      unicode="&#xF775;"
+      horiz-adv-x="576" d=" M562.1 0.1C540.6 2.5 520 10.6 504.2 23C490.1 34.1 470.0000000000001 34.3 456.0000000000001 23C418.1000000000001 -7.4 348.8000000000001 -7.4 310.3000000000001 24.5C296.8000000000001 35.7 277.3000000000001 33.6 263.6000000000001 22.7C225.6000000000001 -7.4 156.7000000000001 -7.3 118.4000000000001 24.4C104.9000000000001 35.6 85.1000000000001 33.3 71.3000000000001 22.4C55.8000000000001 10.2 35.3000000000001 2.3 13.6000000000001 0C5.7000000000001 -0.8 1e-13 -7.8 1e-13 -15.7V-47.9C1e-13 -57 7.6000000000001 -64.6999999999999 16.7000000000001 -63.9C45.5000000000001 -61.4 72.8000000000001 -52.5 96.1000000000001 -38C152.6000000000001 -72.6 233.1000000000001 -72.1 288.1000000000002 -38C344.6000000000002 -72.6 425.1000000000002 -72.1 480.1000000000001 -38C503.4000000000001 -52.2 531.0000000000001 -61.3 559.2000000000002 -63.8C568.3000000000002 -64.6 575.9000000000002 -56.9 575.9000000000002 -47.8V-16.2C576.0000000000002 -8.2 570.2000000000002 -0.8 562.1000000000003 0.1zM562.1 144.1C540.6 146.5 520 154.6 504.2 167C490.1 178.1 470.0000000000001 178.3 456.0000000000001 167C418.1000000000001 136.6 348.8000000000001 136.6 310.3000000000001 168.5C296.8000000000001 179.7 277.3000000000001 177.6 263.6000000000001 166.7C225.6000000000001 136.6 156.7000000000001 136.7 118.4000000000001 168.4C104.9000000000001 179.6 85.1000000000001 177.3 71.3000000000001 166.4C55.8000000000001 154.2 35.3000000000001 146.3 13.6000000000001 144C5.7000000000001 143.2 1e-13 136.2 1e-13 128.3V96.1C1e-13 87 7.6000000000001 79.3 16.7000000000001 80.1C45.5000000000001 82.6 72.8000000000001 91.5 96.1000000000001 106C152.6000000000001 71.4 233.1000000000001 71.9 288.1000000000002 106C344.6000000000002 71.4 425.1000000000002 71.9 480.1000000000001 106C503.4000000000001 91.8 531.0000000000001 82.7 559.2000000000002 80.2C568.3000000000002 79.4 575.9000000000002 87.1 575.9000000000002 96.2V127.8C576.0000000000002 135.8 570.2000000000002 143.2 562.1000000000003 144.1zM190.8 320H256V240C256 231.2 263.2 224 272 224H304C312.8 224 320 231.2 320 240V320H385.2C399.5 320 406.6 337.3 396.4 347.4L300 443C293.4 449.6 282.6 449.6 276 443L179.6 347.3C169.4 337.3 176.6 320 190.8 320z" />
+    <glyph glyph-name="water"
+      unicode="&#xF773;"
+      horiz-adv-x="576" d=" M562.1 64.1C540.6 66.5 520 74.6 504.2 87C490.1 98.1 470.0000000000001 98.3 456.0000000000001 87C418.1000000000001 56.6 348.8000000000001 56.6 310.3000000000001 88.5C296.8000000000001 99.7 277.3000000000001 97.6 263.6000000000001 86.7C225.6000000000001 56.6 156.7000000000001 56.7 118.4000000000001 88.4C104.9000000000001 99.6 85.1000000000001 97.3 71.3000000000001 86.4C55.8000000000001 74.2 35.3000000000001 66.3 13.6000000000001 64C5.7000000000001 63.2 1e-13 56.2 1e-13 48.3V16.1C1e-13 7 7.6000000000001 -0.7 16.7000000000001 0.1C45.5000000000001 2.6 72.8000000000001 11.5 96.1000000000001 26C152.6000000000001 -8.6 233.1000000000001 -8.1 288.1000000000002 26C344.6000000000002 -8.6 425.1000000000002 -8.1 480.1000000000001 26C503.4000000000001 11.8 531.0000000000001 2.7 559.2000000000002 0.2C568.3000000000002 -0.6 575.9000000000002 7.1 575.9000000000002 16.2V47.8C576.0000000000002 55.8 570.2000000000002 63.2 562.1000000000003 64.1zM562.1 208.1C540.6 210.5 520 218.6 504.2 231.0000000000001C490.1 242.1 470.0000000000001 242.3000000000001 456.0000000000001 231.0000000000001C418.1000000000001 200.6 348.8000000000001 200.6 310.3000000000001 232.5000000000001C296.8000000000001 243.7 277.3000000000001 241.6 263.6000000000001 230.7C225.6000000000001 200.6 156.7000000000001 200.7 118.4000000000001 232.4C104.9000000000001 243.6 85.1000000000001 241.3 71.3000000000001 230.4C55.8000000000001 218.2 35.3000000000001 210.3 13.6000000000001 208C5.7000000000001 207.2 1e-13 200.2 1e-13 192.3V160.1C1e-13 151 7.6000000000001 143.3 16.7000000000001 144.1C45.5000000000001 146.6 72.8000000000001 155.5 96.1000000000001 170C152.6000000000001 135.4 233.1000000000001 135.9 288.1000000000002 170C344.6000000000002 135.4 425.1000000000002 135.9 480.1000000000001 170C503.4000000000001 155.8 531.0000000000001 146.7 559.2000000000002 144.2C568.3000000000002 143.4 575.9000000000002 151.1 575.9000000000002 160.2V191.8C576.0000000000002 199.8 570.2000000000002 207.2 562.1000000000003 208.1zM562.1 352.1C540.6 354.6 520 362.6 504.2 375C490.1 386.1 470 386.3 456 375C418.1 344.6 348.8 344.6 310.3 376.5C296.8 387.7 277.3 385.6 263.6 374.7C225.6 344.6 156.7 344.7 118.4 376.4C104.9 387.6 85.1 385.3 71.3 374.4C55.8 362.2 35.3 354.3 13.6 352C5.7 351.2 0 344.2 0 336.3V304.1C0 295 7.6 287.3 16.7 288.1C45.5 290.6 72.8 299.5 96.1000000000001 314C152.6000000000001 279.4 233.1000000000001 279.9 288.1 314C344.6 279.4 425.1 279.9 480.1 314C503.4 299.8 531 290.7 559.2 288.2C568.3000000000001 287.4 575.9000000000001 295.1 575.9000000000001 304.2V335.8C576.0000000000001 343.8 570.2 351.2 562.1000000000001 352.1z" />
+    <glyph glyph-name="weight-hanging"
+      unicode="&#xF5CD;"
+      horiz-adv-x="512" d=" M510.28 2.14L437.25 294.27C433.45 309.46 420.81 319.99 406.38 319.99H346.13C349.7 330.04 352.01 340.71 352.01 351.99C352.01 405.01 309.03 447.99 256.01 447.99S160.01 405.01 160.01 351.99C160.01 340.71 162.31 330.04 165.89 319.99H105.64C91.21 319.99 78.56 309.45 74.77 294.27L1.72 2.14C-6.61 -31.17 16.38 -64 48.03 -64H463.98C495.62 -64 518.61 -31.17 510.28 2.14zM256 320C238.36 320 224 334.36 224 352S238.36 384 256 384S288 369.64 288 352S273.64 320 256 320z" />
+    <glyph glyph-name="weight"
+      unicode="&#xF496;"
+      horiz-adv-x="512" d=" M448 384H422.02C438.44 355.7200000000001 448 322.99 448 288C448 182.13 361.87 96 256 96S64 182.13 64 288C64 322.99 73.56 355.7200000000001 89.98 384H64C28.71 384 0 355.29 0 320V0C0 -35.29 28.71 -64 64 -64H448C483.29 -64 512 -35.29 512 0V320C512 355.29 483.29 384 448 384zM256 128C344.37 128 416 199.63 416 288S344.37 448 256 448S96 376.37 96 288S167.63 128 256 128zM255.7 279.94L289.28 358.3C292.78 366.4700000000001 302.22 370.2200000000001 310.31 366.71C318.43 363.23 322.19 353.82 318.72 345.71L285.05 267.16C291.73 260 296 250.55 296 240C296 217.91 278.09 200 256 200S216 217.91 216 240C216 261.98 233.76 279.77 255.7 279.94z" />
+    <glyph glyph-name="whale"
+      unicode="&#xF72C;"
+      horiz-adv-x="640" d=" M544 288C300.95 288 228.71 64 163.88 64C144.1 64 128 80.09 128 99.87V197.86L177.75 228.37A32.007 32.007 0 0 1 192 255V335.98C192 348.76 177.76 356.38 167.12 349.29L96 301.87L24.88 349.29C14.24 356.37 0 348.75 0 335.9700000000001V255C0 244.3 5.35 234.31 14.25 228.38L64 197.86V99.87C64 44.8 108.8 0 163.88 0H576C611.35 0 640 28.65 640 64V192C640 244.94 596.94 288 544 288zM432 160C440.84 160 448 152.84 448 144S440.84 128 432 128S416 135.16 416 144S423.1600000000001 160 432 160z" />
+    <glyph glyph-name="wheat"
+      unicode="&#xF72D;"
+      horiz-adv-x="512" d=" M481.7 334.45C507.1 361.88 514.17 406.53 511.45 447.45C482.47 449.39 431.2 447.71 398.9 417.57C361.7 380.2200000000001 367.91 313.27 369.14 304.57C410.72 301.79 454.14 308.7200000000001 481.7 334.45zM438.19 278.45C422.09 274.58 404.95 272 386.01 272C379.67 272 373.32 272.2200000000001 367.01 272.64L341.11 274.37L337.4600000000001 300.07C337.1400000000001 302.36 332.48 337.4 342.11 375.95C329.25 407.88 301.12 431.38 296.32 434.98C268.44 410.6 245.51 378.95 244.35 345.46C245.44 316.98 263.01 289.06 285.28 266.53L243.8 225.05C245.39 231.02 246.6 237.11 246.82 243.44C246.73 290.3 200.74 328.48 194.5 333.17C166.62 308.79 143.69 277.14 142.53 243.65C143.63 215.17 161.19 187.25 183.46 164.72L141.98 123.24C143.57 129.21 144.78 135.3 145 141.63C144.91 188.49 98.92 226.67 92.68 231.36C64.8 206.98 41.87 175.3300000000001 40.72 141.84C41.81 113.36 59.38 85.4400000000001 81.65 62.91L9.38 -9.38C-3.12 -21.88 -3.12 -42.13 9.38 -54.63C15.63 -60.88 23.81 -64 32 -64S48.38 -60.88 54.63 -54.62L126.87 17.62C149.6 -5.15 177.23 -22.55 206.27 -23.55C239.48 -22.27 271.98 1.34 296 28.77C279 48.21 245.72 79.38 206.48 80.74C199.86 80.73 193.49 79.63 187.28 78.03L228.6900000000001 119.4400000000001C251.42 96.6700000000001 279.05 79.27 308.0900000000001 78.27C341.3 79.55 373.8 103.16 397.8200000000001 130.59C380.8200000000001 150.03 347.5400000000001 181.2000000000001 308.3000000000001 182.5600000000001C301.6800000000001 182.5500000000001 295.3100000000001 181.4500000000001 289.1000000000001 179.8500000000001L330.5100000000001 221.2600000000001C353.2400000000001 198.4900000000001 380.8700000000001 181.0900000000001 409.9100000000001 180.0900000000001C443.1200000000001 181.3700000000001 475.6200000000001 204.9800000000001 499.6400000000001 232.4100000000001C486.8800000000001 247.0100000000001 464.9400000000001 268.2100000000001 438.1900000000001 278.4500000000001z" />
+    <glyph glyph-name="wheelchair"
+      unicode="&#xF193;"
+      horiz-adv-x="512" d=" M496.101 62.331L510.328 33.668C514.257 25.753 511.025 16.152 503.11 12.223L437.645 -20.663C421.596 -28.63 402.089 -21.857 394.456 -5.608L331.679 128H192C176.075 128 162.574 139.71 160.321 155.475C126.433 392.692 128.38 377.956 128 384C128 420.358 158.318 449.635 195.052 447.929C228.3230000000001 446.384 255.1 419.024 255.9770000000001 385.728C256.8450000000001 352.795 232.8250000000001 325.305 201.369 320.689L206.039 287.999H336C344.837 287.999 352 280.836 352 271.999V239.999C352 231.162 344.837 223.999 336 223.999H215.182L219.754 191.999H352A32 32 0 0 0 380.962 173.607L438.477 51.2L474.655 69.549C482.57 73.478 492.172 70.246 496.101 62.331zM311.358 96H286.852C279.064 41.796 232.324 0 176 0C114.243 0 64 50.243 64 112C64 153.505 86.694 189.809 120.324 209.156C116.612 235.121 113.48 257.016 110.836 275.4890000000001C45.956 249.536 0 186.037 0 112C0 14.953 78.953 -64 176 -64C247.87 -64 309.8060000000001 -20.692 337.11 41.192L311.358 96z" />
+    <glyph glyph-name="whistle"
+      unicode="&#xF460;"
+      horiz-adv-x="640" d=" M232 192C232 178.8 221.2 168 208 168S184 178.8 184 192S194.8 216 208 216S232 205.2 232 192zM484 241.7L634 121.7C640.7 116.3 642 106.5 636.8 99.6L558.5999999999999 -4.7C553.8 -11.2 544.8999999999999 -13.0000000000001 537.8999999999999 -9.0000000000001L387.4999999999999 76.9999999999999C312.1 -36.4 150.8 -44.8 61 45C-4.5 110.5 -17.1 208.8 23 287C8.6 298.8 0 316.7 0 336C0 371.3 28.7 400 64 400C83.2 400 100.9 391.1 113 376.5C178.3 410.1 257.4 407.3 320 367.2L406.6 303.6C411.9000000000001 299.4 413.9000000000001 292.3 411.7000000000001 285.9L401.5000000000001 256.4C400.4000000000001 253.2 401.4000000000001 249.7 404.1000000000001 247.5L429.3000000000001 227.3C431.9000000000001 225.2 435.5000000000001 225 438.4000000000001 226.7L465.8000000000001 242.9C471.6000000000001 246.3 478.8000000000001 245.8 484.0000000000001 241.7zM85.5 359.7C79.7 365 72 368 64 368C46.3 368 32 353.7 32 336C32 327.9 35.3 320.6 40.4 314.8C55.6 335.4 67.7 346.7000000000001 85.5 359.7000000000001zM280 192C280 231.7 247.7 264 208 264S136 231.7 136 192S168.3 120 208 120S280 152.3 280 192z" />
+    <glyph glyph-name="wifi-1"
+      unicode="&#xF6AA;"
+      horiz-adv-x="640" d=" M384 32C384 -3.35 355.35 -32 320 -32S256 -3.35 256 32S284.65 96 320 96S384 67.35 384 32z" />
+    <glyph glyph-name="wifi-2"
+      unicode="&#xF6AB;"
+      horiz-adv-x="640" d=" M384 32C384 -3.35 355.35 -32 320 -32S256 -3.35 256 32S284.65 96 320 96S384 67.35 384 32zM523.24 156.44C529.79 162.9 529.57 173.5 522.67 179.59C407.41 281.52 232.46 281.41 117.33 179.59C110.43 173.49 110.21 162.9 116.76 156.44L151.2 122.45C157.2 116.53 166.86 116.13 173.25 121.65C257.2 194.22 382.99 194.06 466.74 121.65C473.13 116.13 482.79 116.52 488.79 122.45L523.24 156.44z" />
+    <glyph glyph-name="wifi-slash"
+      unicode="&#xF6AC;"
+      horiz-adv-x="640" d=" M5.09 293.13C-1.57 286.9700000000001 -1.7 276.54 4.74 270.16L38.98 236.2C45.12 230.11 55 229.97 61.38 235.82C68.37 242.22 75.69 248.04 83.03 253.83L18.07 304.04C13.77 300.33 9.28 297 5.09 293.13zM476.84 111.23L522.26 156.44C528.78 162.9 528.55 173.5 521.6899999999999 179.61C456.7499999999999 237.35 372.78 262.27 291.3499999999999 254.5900000000001L208.1899999999999 318.86C334.1299999999999 357.2200000000001 475.9399999999999 329.87 578.6199999999999 235.81C584.9999999999999 229.96 594.8799999999999 230.1 601.0199999999999 236.19L635.2599999999999 270.15C641.6999999999999 276.54 641.5599999999998 286.9700000000001 634.9099999999999 293.12C496.46 421.18 298.08 448.76 133.42 376.65L45.47 444.63C38.49 450.05 28.43 448.8 23.01 441.82L3.37 416.55C-2.05 409.58 -0.8 399.53 6.18 394.1L594.54 -60.63C601.52 -66.0599999999999 611.5699999999999 -64.7999999999999 617 -57.82L636.64 -32.55C642.06 -25.58 640.81 -15.52 633.83 -10.1L476.84 111.23zM118.31 179.61C111.45 173.51 111.23 162.91 117.74 156.44L152.02 122.43C157.99 116.5 167.61 116.11 173.96 121.63C187.31 133.23 201.97 142.29 217.11 150.18L148.75 203.01C138.27 195.86 128.01 188.23 118.31 179.61zM256 32C256 -3.35 284.65 -32 320 -32C351.9100000000001 -32 378.15 -8.58 382.99 21.98L294.29 90.54C271.77 80.63 256 58.18 256 32z" />
+    <glyph glyph-name="wifi"
+      unicode="&#xF1EB;"
+      horiz-adv-x="640" d=" M634.91 293.12C457.74 456.99 182.19 456.93 5.09 293.12C-1.57 286.9600000000001 -1.7 276.53 4.74 270.14L38.98 236.17C45.12 230.07 55 229.9400000000001 61.38 235.79C207.3 369.4700000000001 432.68 369.5 578.63 235.79C585.01 229.9400000000001 594.89 230.08 601.03 236.17L635.27 270.14C641.6999999999999 276.53 641.5699999999999 286.9600000000001 634.91 293.12zM320 96C284.65 96 256 67.35 256 32S284.65 -32 320 -32S384 -3.35 384 32S355.35 96 320 96zM522.67 179.59C407.41 281.5200000000001 232.46 281.4100000000001 117.33 179.59C110.43 173.49 110.21 162.9 116.76 156.4400000000001L151.2 122.4500000000001C157.2 116.53 166.86 116.1300000000001 173.25 121.65C257.2 194.22 382.99 194.06 466.74 121.65C473.13 116.1300000000001 482.79 116.5200000000001 488.79 122.4500000000001L523.23 156.4400000000001C529.79 162.9 529.5600000000001 173.5000000000001 522.6700000000001 179.59z" />
+    <glyph glyph-name="wind-warning"
+      unicode="&#xF776;"
+      horiz-adv-x="640" d=" M635.3 286.5C626.4 315.1 603.0999999999999 338.4 574.5999999999999 347.3C515.4999999999999 365.7 460.5999999999999 328.2 449.8999999999999 274.9C447.8999999999999 265.1 455.6999999999999 256 465.5999999999999 256H498.3999999999999C505.0999999999999 256 511.4999999999999 259.8 513.5999999999999 266.1C517.8 278.8 529.8999999999999 288 543.9999999999999 288C563.3999999999999 288 578.8999999999999 270.6 575.5999999999999 250.6C572.9999999999999 234.9 558.1999999999999 224 542.1999999999999 224H413.4C410.1 201.4 403.5 179.9 394 160H544C606.8 160 655.8 220.7 635.3 286.5zM638.0999999999999 51.1C629.1999999999999 96.7000000000001 586.5999999999999 128 540.1999999999999 128H375.6C357.6 102.2 334.2000000000001 80.6 307.3 64.3C307.9000000000001 64.2 308.3 64 308.9000000000001 64H542.2C558.1 64 573 53.1 575.6 37.4C578.9 17.4 563.5 0 544 0C529.9 0 517.9 9.2 513.6 21.9C511.5 28.2 505 32 498.4 32H465.6C455.6 32 447.9000000000001 22.7 449.9000000000001 12.9C458.8 -30.9 497.6 -64 544 -64C603.2 -64 650 -10.2 638.1 51.1zM384 256C384 362 298 448 192 448S0 362 0 256S86 64 192 64S384 150 384 256zM192 128C174.3 128 160 142.3 160 160S174.3 192 192 192S224 177.7 224 160S209.7 128 192 128zM217.4 238.4C216.6 230.2 209.7 224 201.5 224H182.5C174.3 224 167.4 230.2 166.6 238.4L153.8 366.4C152.9 375.8 160.2 384 169.7 384H214.3C223.8 384 231.2 375.8 230.2 366.4L217.4 238.4z" />
+    <glyph glyph-name="wind"
+      unicode="&#xF72E;"
+      horiz-adv-x="512" d=" M156.7 192H16C7.2 192 0 184.8 0 176V144C0 135.2 7.2 128 16 128H158.2C174.1 128 189 117.1 191.6 101.4C194.9 81.4 179.5 64 160 64C145.9 64 133.9 73.2 129.6 85.9C127.5 92.2 121 96 114.4 96H81.6C71.8 96 63.9 87.2 65.7 77.6C74.3 33.5 113.3 0 159.9 0C217 0 262.6 50.1 255.1 108.6C249 157 205.4 192 156.7 192zM16 224H352C411.7 224 458.8 278.8 445.8 340.7C438.2 376.9 408.9000000000001 406.2 372.7000000000001 413.8C317.3000000000001 425.4 267.6 388.9 257.8000000000001 338.3C255.9000000000001 328.7 263.9000000000001 320 273.6000000000001 320H306.4000000000001C313.1000000000001 320 319.5000000000001 323.8 321.6000000000001 330.1C325.9 342.8 337.9 352 352 352C371.4 352 386.9 334.6 383.6 314.6C381 298.9 366.2000000000001 288 350.2000000000001 288H16C7.2 288 0 280.8 0 272V240C0 231.2 7.2 224 16 224zM400 192H243.7C263 175.4 276.9 153.2 283.5 128H400C426.5 128 448 106.5 448 80S426.5 32 400 32C382.1 32 366.7 41.9 358.4 56.4C355.5 61.4 349.7 64 343.9 64H310.1C299.2 64 291.1 53.2 294.8 42.9C312.6 -7.7 365.3 -41.9 424.2 -29.4C465.3999999999999 -20.7 499.3 12.2 508.8999999999999 53.3C526 126.5 470.5 192 400 192z" />
+    <glyph glyph-name="window-alt"
+      unicode="&#xF40F;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM256 352C256 334.3 241.7 320 224 320S192 334.3 192 352S206.3 384 224 384S256 369.7 256 352zM352 352C352 334.3 337.7 320 320 320S288 334.3 288 352S302.3 384 320 384S352 369.7 352 352zM448 352C448 334.3 433.7 320 416 320S384 334.3 384 352S398.3 384 416 384S448 369.7 448 352z" />
+    <glyph glyph-name="window-close"
+      unicode="&#xF410;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM380.4 125.5C385.2 120.7 385.2 112.9 380.4 108.1L339.9 67.6C335.1 62.8 327.3 62.8 322.5 67.6L256 134.7L189.5 67.6C184.7 62.8 176.9 62.8 172.1 67.6L131.6 108.1C126.8 112.9 126.8 120.7000000000001 131.6 125.5L198.7 192L131.6 258.5C126.8 263.3 126.8 271.1 131.6 275.9L172.1 316.4C176.9 321.2 184.7 321.2 189.5 316.4L256 249.3L322.5 316.4C327.3 321.2 335.1 321.2 339.9 316.4L380.4 275.9C385.2 271.1 385.2 263.3 380.4 258.5L313.3 192L380.4 125.5z" />
+    <glyph glyph-name="window-maximize"
+      unicode="&#xF2D0;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM448 256H64V340C64 346.6 69.4 352 76 352H436C442.6 352 448 346.6 448 340V256z" />
+    <glyph glyph-name="window-minimize"
+      unicode="&#xF2D1;"
+      horiz-adv-x="512" d=" M464 96H48C21.5 96 0 74.5 0 48V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V48C512 74.5 490.5 96 464 96z" />
+    <glyph glyph-name="window-restore"
+      unicode="&#xF2D2;"
+      horiz-adv-x="512" d=" M512 400V112C512 85.5 490.5 64 464 64H416V272C416 316.1 380.1 352 336 352H128V400C128 426.5 149.5 448 176 448H464C490.5 448 512 426.5 512 400zM384 272V-16C384 -42.5 362.5 -64 336 -64H48C21.5 -64 0 -42.5 0 -16V272C0 298.5 21.5 320 48 320H336C362.5 320 384 298.5 384 272zM316 244C316 250.6 310.6 256 304 256H76C69.4 256 64 250.6 64 244V192H316V244z" />
+    <glyph glyph-name="window"
+      unicode="&#xF40E;"
+      horiz-adv-x="512" d=" M464 416H48C21.5 416 0 394.5 0 368V16C0 -10.5 21.5 -32 48 -32H464C490.5 -32 512 -10.5 512 16V368C512 394.5 490.5 416 464 416zM128 320C128 302.3 113.7 288 96 288S64 302.3 64 320S78.3 352 96 352S128 337.7 128 320zM224 320C224 302.3 209.7 288 192 288S160 302.3 160 320S174.3 352 192 352S224 337.7 224 320zM320 320C320 302.3 305.7 288 288 288S256 302.3 256 320S270.3 352 288 352S320 337.7 320 320z" />
+    <glyph glyph-name="windsock"
+      unicode="&#xF777;"
+      horiz-adv-x="512" d=" M256 67.4L352 81.1V286.9L256 300.6V67.4zM112 46.9L192 58.3V309.7L112 321.1V46.9zM498.3 266L416 277.7V90.3L498.3 102.1C506.2 103.2 512 109.9999999999999 512 117.9V250.1C512 258.1 506.1 264.8 498.3 266zM56 448C25.1 448 0 422.9 0 392C0 369.7 13.1 350.6 32 341.6V-48C32 -56.8 39.2 -64 48 -64H64C72.8 -64 80 -56.8 80 -48V341.6C98.9 350.6 112 369.7 112 392C112 422.9 86.9 448 56 448z" />
+    <glyph glyph-name="wine-bottle"
+      unicode="&#xF72F;"
+      horiz-adv-x="512" d=" M507.31 375.43L439.43 443.31C433.18 449.56 423.05 449.56 416.8 443.31L394.17 420.68C387.92 414.43 387.92 404.3 394.17 398.05L317.5 321.38C270.92 341.08 215.1 332.11 177.13 294.15L18.75 135.77C-6.24 110.78 -6.24 70.25 18.75 45.26L109.26 -45.25C134.25 -70.24 174.78 -70.24 199.77 -45.25L358.16 113.14C396.12 151.1 405.09 206.93 385.39 253.51L462.06 330.18C468.31 323.93 478.44 323.93 484.69 330.18L507.32 352.81C513.56 359.05 513.56 369.18 507.31 375.43zM179.22 24.71L88.71 115.22L210.75 237.26L301.26 146.75L179.22 24.71z" />
+    <glyph glyph-name="wine-glass-alt"
+      unicode="&#xF5CE;"
+      horiz-adv-x="288" d=" M216 -16H176V101.19C244.47 117.08 294.05 181.1 287.4 255.35L271.45 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.05 181.09 43.53 117.07 112 101.18V-16H72C49.91 -16 32 -33.91 32 -56C32 -60.42 35.58 -64 40 -64H248C252.42 -64 256 -60.42 256 -56C256 -33.91 238.09 -16 216 -16zM61.75 400H226.25L233.42 320H54.58L61.75 400z" />
+    <glyph glyph-name="wine-glass"
+      unicode="&#xF4E3;"
+      horiz-adv-x="288" d=" M216 -16H176V101.19C244.47 117.08 294.05 181.1 287.4 255.35L271.45 433.45C270.71 441.69 263.9 448 255.74 448H32.26C24.11 448 17.29 441.69 16.56 433.45L0.6 255.34C-6.05 181.09 43.53 117.07 112 101.18V-16H72C49.91 -16 32 -33.91 32 -56C32 -60.42 35.58 -64 40 -64H248C252.42 -64 256 -60.42 256 -56C256 -33.91 238.09 -16 216 -16z" />
+    <glyph glyph-name="won-sign"
+      unicode="&#xF159;"
+      horiz-adv-x="576" d=" M564 256C570.627 256 576 261.373 576 268V308C576 314.627 570.627 320 564 320H515.972L534.544 400.61C536.276 408.128 530.566 415.304 522.851 415.304H476.744A11.998 11.998 0 0 1 465.008 405.804L450.73 320H340.839L321.114 405.987A12 12 0 0 1 309.418 415.304H265.43A12 12 0 0 1 253.743 406.027L233.696 320H124.975L107.5 405.701A12 12 0 0 1 95.742 415.303H53.628C45.942 415.303 40.238 408.179 41.919 400.679L60 320H12C5.373 320 0 314.627 0 308V268C0 261.373 5.373 256 12 256H74.342L81.513 224H12C5.373 224 0 218.627 0 212V172C0 165.373 5.373 160 12 160H95.856L136.783 -22.624A12 12 0 0 1 148.492 -32H205.259C210.842 -32 215.687 -28.15 216.948 -22.712L259.335 160H314.421L356.807 -22.712A12 12 0 0 1 368.496 -32H425.322A12 12 0 0 1 437.016 -22.694L479.108 160H564C570.627 160 576 165.373 576 172V212C576 218.627 570.627 224 564 224H493.854L501.227 256H564zM138.024 256H218.781L211.324 224H144.548L138.024 256zM183.82 105.971C177.626 80.14 177.062 58.721 176.499 58.721H175.373S173.684 80.771 168.615 105.971L157.599 160H196.411L183.82 105.971zM274.182 224L276.178 232.602C278.034 240.564 279.635 248.57 280.981 256H292.775C294.122 248.57 295.722 240.564 297.578 232.602L299.574 224H274.182zM405.141 105.971C400.0730000000001 80.771 398.3830000000001 58.721 398.3830000000001 58.721H397.2570000000001C396.6940000000001 58.721 396.1310000000001 80.141 389.9360000000001 105.971L377.542 160H416.649L405.141 105.971zM430.281 224H362.861L355.521 256H437.098L430.281 224z" />
+    <glyph glyph-name="wreath"
+      unicode="&#xF7E2;"
+      horiz-adv-x="448" d=" M298.9 63.2L224 32L149.1 63.2C138.7 66.7 128 58.9 128 48V-48C128 -58.9 138.7 -66.6 149.1 -63.2L224 -32L298.9 -63.2C309.3 -66.7 320 -58.9 320 -48V48C320 58.9 309.3 66.6 298.9 63.2zM448 224C448 240.9 439.3 255.6 426.1 264.2C435 277.1 437.4000000000001 294.1 430.9000000000001 309.7C424.3 325.6 410.2000000000001 335.9 394.5000000000001 338.6C397.8000000000001 354 394.3000000000001 370.5 382.4000000000001 382.4C370.5000000000001 394.3 353.9000000000001 397.8 338.6 394.5C335.9000000000001 410.3 325.6 424.4 309.8 430.9C294.2 437.4 277.2 434.9 264.3 426.1C255.6 439.3 240.9 448 224 448S192.4 439.3 183.8 426.1C170.8 435 153.8 437.4 138.3 430.9C122.5 424.3 112.1 410.2 109.5 394.5C94.1 397.8 77.6 394.3 65.7 382.4C53.8 370.5 50.3 354 53.6 338.6C37.8 335.9 23.8 325.6 17.2 309.8C10.7 294.2 13.2 277.2 22 264.3C8.7 255.6 0 240.9 0 224S8.7 192.4 21.9 183.8C13 170.9 10.6 153.9 17.1 138.3C23.7 122.5 37.8 112.5 53.6 109.8C50.2 94.3 53.6 77.6 65.7 65.6C74.3 57 85.3 52.9 96.5 52.1C97.5 63.5 102.2 74.1 110.5 82.3C119.5 91.1 131.5 96 144 96C149.2 96 154.3 95.2 159.2 93.5L160.3 93.1L161.4 92.7000000000001L224.1 66.6L286.8 92.7000000000001L287.9 93.1L289 93.5C293.9 95.1 299 96 304.2 96C329.2 96 349.6 76.7 351.8 52.2C363 52.9 374 57.1 382.6 65.7C394.6 77.7 398.1 94.4 394.7000000000001 109.9C410.5000000000001 112.6 424.6 122.5 431.2000000000001 138.4C437.7000000000001 154 435.2000000000001 171 426.4000000000001 183.9C439.3 192.4 448.0000000000001 207.1 448.0000000000001 224zM301.5 197.8C298.7 188.9 300.4 177.6 295.2 170.2C290 162.7 279.1 160.9 271.9 155.4C264.8 150 259.8 139.8 251.2 136.9C243 134.1 233.1 139.2 224 139.2S205 134.1 196.8 136.9C188.3 139.8 183.2 150 176.1 155.4C168.9 160.8 158 162.7 152.8 170.2C147.6 177.6 149.3 188.9 146.5 197.8C143.8 206.4 136 214.5 136 224S143.8 241.6 146.5 250.2C149.3 259.1 147.6 270.4 152.8 277.8C158 285.3 168.9 287.1 176.1 292.6C183.2 298 188.2 308.2 196.8 311.1C205 313.9 214.9 308.8 224 308.8S243 313.9 251.2 311.1C259.7 308.2 264.8 298 271.9 292.6C279.1 287.2 290 285.3 295.2 277.8C300.4 270.4 298.7 259.1 301.5 250.2C304.2 241.6 312 233.5 312 224S304.2 206.4 301.5 197.8z" />
+    <glyph glyph-name="wrench"
+      unicode="&#xF0AD;"
+      horiz-adv-x="512" d=" M507.73 338.9C505.49 347.93 494.19 350.99 487.61 344.4100000000001L413.25 270.05L345.37 281.36L334.06 349.24L408.42 423.6C415.04 430.2200000000001 411.85 441.5 402.76 443.76C355.38 455.5 303.21 442.85 266.18 405.8300000000001C226.54 366.19 215.63 308.73 232.13 258.63L18.74 45.24C-6.25 20.25 -6.25 -20.27 18.74 -45.26C43.73 -70.25 84.25 -70.25 109.24 -45.26L322.45 167.9500000000001C372.57 151.2400000000001 429.92 162.2700000000001 469.82 202.1700000000001C506.89 239.2400000000001 519.52 291.49 507.73 338.9000000000001zM64 -24C50.75 -24 40 -13.25 40 0C40 13.26 50.75 24 64 24S88 13.26 88 0C88 -13.25 77.25 -24 64 -24z" />
+    <glyph glyph-name="x-ray"
+      unicode="&#xF497;"
+      horiz-adv-x="640" d=" M240 64C231.2 64 224 56.8 224 48S231.2 32 240 32S256 39.2 256 48S248.8 64 240 64zM400 32C408.8 32 416 39.2 416 48S408.8 64 400 64S384 56.8 384 48S391.2 32 400 32zM624 448H16C7.2 448 0 440.8 0 432V400C0 391.2 7.2 384 16 384H624C632.8 384 640 391.2 640 400V432C640 440.8 632.8 448 624 448zM624 0H576V352H64V0H16C7.2 0 0 -7.2 0 -16V-48C0 -56.8 7.2 -64 16 -64H624C632.8 -64 640 -56.8 640 -48V-16C640 -7.2 632.8 0 624 0zM480 200C480 195.6 476.4 192 472 192H336V160H440C444.4 160 448 156.4 448 152V136C448 131.6 444.4 128 440 128H336V96H400C426.5 96 448 74.5 448 48S426.5 0 400 0S352 21.5 352 48V64H288V48C288 21.5 266.5 0 240 0S192 21.5 192 48S213.5 96 240 96H304V128H200C195.6 128 192 131.6 192 136V152C192 156.4 195.6 160 200 160H304V192H168C163.6 192 160 195.6 160 200V216C160 220.4 163.6 224 168 224H304V256H200C195.6 256 192 259.6 192 264V280C192 284.4 195.6 288 200 288H304V312C304 316.4 307.6 320 312 320H328C332.4 320 336 316.4 336 312V288H440C444.4 288 448 284.4 448 280V264C448 259.6 444.4 256 440 256H336V224H472C476.4 224 480 220.4 480 216V200z" />
+    <glyph glyph-name="yen-sign"
+      unicode="&#xF157;"
+      horiz-adv-x="384" d=" M351.2080000000001 416H285.9310000000001A12 12 0 0 1 275.153 409.276L219.763 296.113C205.25 261.409 192.63 224.181 192.63 224.181H191.368S178.748 261.409 164.235 296.113L108.845 409.276A11.997 11.997 0 0 1 98.068 416H32.792C23.735 416 17.942 406.35 22.202 398.357L102.322 248H44C37.373 248 32 242.627 32 236V204C32 197.373 37.373 192 44 192H132.162L152 154.772V128H44C37.373 128 32 122.627 32 116V84C32 77.373 37.373 72 44 72H152V-20C152 -26.627 157.373 -32 164 -32H220C226.627 -32 232 -26.627 232 -20V72H340C346.627 72 352 77.373 352 84V116C352 122.627 346.627 128 340 128H232V154.772L251.838 192H340C346.627 192 352 197.373 352 204V236C352 242.627 346.627 248 340 248H281.678L361.798 398.357C366.058 406.35 360.266 416 351.2080000000001 416z" />
+    <glyph glyph-name="yin-yang"
+      unicode="&#xF6AD;"
+      horiz-adv-x="496" d=" M248 440C111.03 440 0 328.9700000000001 0 192S111.03 -56 248 -56S496 55.03 496 192S384.9700000000001 440 248 440zM248 64C230.33 64 216 78.33 216 96S230.33 128 248 128S280 113.67 280 96S265.67 64 248 64zM248 192C194.98 192 152 149.02 152 96S194.98 0 248 0C141.96 0 56 85.96 56 192S141.96 384 248 384C301.02 384 344 341.02 344 288S301.02 192 248 192zM248 320C230.33 320 216 305.67 216 288S230.33 256 248 256S280 270.3300000000001 280 288S265.67 320 248 320z" />
+  </font>
+</defs>
+</svg>
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.ttf b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..3c3540f4b8fd17d51965a80bdd2c13541b8bd3dc
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.ttf differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff
new file mode 100644
index 0000000000000000000000000000000000000000..c9e25db49795bde202ec50276b10add04347400f
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff differ
diff --git a/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff2 b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..5be06ffc105f4af25be7f102cd6ed24d6f78f96f
Binary files /dev/null and b/senat_campaign/static/senat_campaign/vendor/fontawesome/webfonts/fa-solid-900.woff2 differ
diff --git a/senat_campaign/static/senat_campaign/vendor/jquery/jquery-3.4.1.min.js b/senat_campaign/static/senat_campaign/vendor/jquery/jquery-3.4.1.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1c07fd803b5fc9c54f44e31123ae4fa11e134b0
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/jquery/jquery-3.4.1.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
diff --git a/senat_campaign/static/senat_campaign/vendor/lazysizes/lazysizes.min.js b/senat_campaign/static/senat_campaign/vendor/lazysizes/lazysizes.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..f3c3e25c4335ffe47163d52a2942bb5d6e6f945d
--- /dev/null
+++ b/senat_campaign/static/senat_campaign/vendor/lazysizes/lazysizes.min.js
@@ -0,0 +1,2 @@
+/*! lazysizes - v5.2.0 */
+!function(a,b){var c=b(a,a.document,Date);a.lazySizes=c,"object"==typeof module&&module.exports&&(module.exports=c)}("undefined"!=typeof window?window:{},function(a,b,c){"use strict";var d,e;if(function(){var b,c={lazyClass:"lazyload",loadedClass:"lazyloaded",loadingClass:"lazyloading",preloadClass:"lazypreload",errorClass:"lazyerror",autosizesClass:"lazyautosizes",srcAttr:"data-src",srcsetAttr:"data-srcset",sizesAttr:"data-sizes",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:0,throttleDelay:125};e=a.lazySizesConfig||a.lazysizesConfig||{};for(b in c)b in e||(e[b]=c[b])}(),!b||!b.getElementsByClassName)return{init:function(){},cfg:e,noSupport:!0};var f=b.documentElement,g=a.HTMLPictureElement,h="addEventListener",i="getAttribute",j=a[h].bind(a),k=a.setTimeout,l=a.requestAnimationFrame||k,m=a.requestIdleCallback,n=/^picture$/i,o=["load","error","lazyincluded","_lazyloaded"],p={},q=Array.prototype.forEach,r=function(a,b){return p[b]||(p[b]=new RegExp("(\\s|^)"+b+"(\\s|$)")),p[b].test(a[i]("class")||"")&&p[b]},s=function(a,b){r(a,b)||a.setAttribute("class",(a[i]("class")||"").trim()+" "+b)},t=function(a,b){var c;(c=r(a,b))&&a.setAttribute("class",(a[i]("class")||"").replace(c," "))},u=function(a,b,c){var d=c?h:"removeEventListener";c&&u(a,b),o.forEach(function(c){a[d](c,b)})},v=function(a,c,e,f,g){var h=b.createEvent("Event");return e||(e={}),e.instance=d,h.initEvent(c,!f,!g),h.detail=e,a.dispatchEvent(h),h},w=function(b,c){var d;!g&&(d=a.picturefill||e.pf)?(c&&c.src&&!b[i]("srcset")&&b.setAttribute("srcset",c.src),d({reevaluate:!0,elements:[b]})):c&&c.src&&(b.src=c.src)},x=function(a,b){return(getComputedStyle(a,null)||{})[b]},y=function(a,b,c){for(c=c||a.offsetWidth;c<e.minSize&&b&&!a._lazysizesWidth;)c=b.offsetWidth,b=b.parentNode;return c},z=function(){var a,c,d=[],e=[],f=d,g=function(){var b=f;for(f=d.length?e:d,a=!0,c=!1;b.length;)b.shift()();a=!1},h=function(d,e){a&&!e?d.apply(this,arguments):(f.push(d),c||(c=!0,(b.hidden?k:l)(g)))};return h._lsFlush=g,h}(),A=function(a,b){return b?function(){z(a)}:function(){var b=this,c=arguments;z(function(){a.apply(b,c)})}},B=function(a){var b,d=0,f=e.throttleDelay,g=e.ricTimeout,h=function(){b=!1,d=c.now(),a()},i=m&&g>49?function(){m(h,{timeout:g}),g!==e.ricTimeout&&(g=e.ricTimeout)}:A(function(){k(h)},!0);return function(a){var e;(a=!0===a)&&(g=33),b||(b=!0,e=f-(c.now()-d),e<0&&(e=0),a||e<9?i():k(i,e))}},C=function(a){var b,d,e=99,f=function(){b=null,a()},g=function(){var a=c.now()-d;a<e?k(g,e-a):(m||f)(f)};return function(){d=c.now(),b||(b=k(g,e))}},D=function(){var g,m,o,p,y,D,F,G,H,I,J,K,L=/^img$/i,M=/^iframe$/i,N="onscroll"in a&&!/(gle|ing)bot/.test(navigator.userAgent),O=0,P=0,Q=0,R=-1,S=function(a){Q--,(!a||Q<0||!a.target)&&(Q=0)},T=function(a){return null==K&&(K="hidden"==x(b.body,"visibility")),K||!("hidden"==x(a.parentNode,"visibility")&&"hidden"==x(a,"visibility"))},U=function(a,c){var d,e=a,g=T(a);for(G-=c,J+=c,H-=c,I+=c;g&&(e=e.offsetParent)&&e!=b.body&&e!=f;)(g=(x(e,"opacity")||1)>0)&&"visible"!=x(e,"overflow")&&(d=e.getBoundingClientRect(),g=I>d.left&&H<d.right&&J>d.top-1&&G<d.bottom+1);return g},V=function(){var a,c,h,j,k,l,n,o,q,r,s,t,u=d.elements;if((p=e.loadMode)&&Q<8&&(a=u.length)){for(c=0,R++;c<a;c++)if(u[c]&&!u[c]._lazyRace)if(!N||d.prematureUnveil&&d.prematureUnveil(u[c]))ba(u[c]);else if((o=u[c][i]("data-expand"))&&(l=1*o)||(l=P),r||(r=!e.expand||e.expand<1?f.clientHeight>500&&f.clientWidth>500?500:370:e.expand,d._defEx=r,s=r*e.expFactor,t=e.hFac,K=null,P<s&&Q<1&&R>2&&p>2&&!b.hidden?(P=s,R=0):P=p>1&&R>1&&Q<6?r:O),q!==l&&(D=innerWidth+l*t,F=innerHeight+l,n=-1*l,q=l),h=u[c].getBoundingClientRect(),(J=h.bottom)>=n&&(G=h.top)<=F&&(I=h.right)>=n*t&&(H=h.left)<=D&&(J||I||H||G)&&(e.loadHidden||T(u[c]))&&(m&&Q<3&&!o&&(p<3||R<4)||U(u[c],l))){if(ba(u[c]),k=!0,Q>9)break}else!k&&m&&!j&&Q<4&&R<4&&p>2&&(g[0]||e.preloadAfterLoad)&&(g[0]||!o&&(J||I||H||G||"auto"!=u[c][i](e.sizesAttr)))&&(j=g[0]||u[c]);j&&!k&&ba(j)}},W=B(V),X=function(a){var b=a.target;if(b._lazyCache)return void delete b._lazyCache;S(a),s(b,e.loadedClass),t(b,e.loadingClass),u(b,Z),v(b,"lazyloaded")},Y=A(X),Z=function(a){Y({target:a.target})},$=function(a,b){try{a.contentWindow.location.replace(b)}catch(c){a.src=b}},_=function(a){var b,c=a[i](e.srcsetAttr);(b=e.customMedia[a[i]("data-media")||a[i]("media")])&&a.setAttribute("media",b),c&&a.setAttribute("srcset",c)},aa=A(function(a,b,c,d,f){var g,h,j,l,m,p;(m=v(a,"lazybeforeunveil",b)).defaultPrevented||(d&&(c?s(a,e.autosizesClass):a.setAttribute("sizes",d)),h=a[i](e.srcsetAttr),g=a[i](e.srcAttr),f&&(j=a.parentNode,l=j&&n.test(j.nodeName||"")),p=b.firesLoad||"src"in a&&(h||g||l),m={target:a},s(a,e.loadingClass),p&&(clearTimeout(o),o=k(S,2500),u(a,Z,!0)),l&&q.call(j.getElementsByTagName("source"),_),h?a.setAttribute("srcset",h):g&&!l&&(M.test(a.nodeName)?$(a,g):a.src=g),f&&(h||l)&&w(a,{src:g})),a._lazyRace&&delete a._lazyRace,t(a,e.lazyClass),z(function(){var b=a.complete&&a.naturalWidth>1;p&&!b||(b&&s(a,"ls-is-cached"),X(m),a._lazyCache=!0,k(function(){"_lazyCache"in a&&delete a._lazyCache},9)),"lazy"==a.loading&&Q--},!0)}),ba=function(a){if(!a._lazyRace){var b,c=L.test(a.nodeName),d=c&&(a[i](e.sizesAttr)||a[i]("sizes")),f="auto"==d;(!f&&m||!c||!a[i]("src")&&!a.srcset||a.complete||r(a,e.errorClass)||!r(a,e.lazyClass))&&(b=v(a,"lazyunveilread").detail,f&&E.updateElem(a,!0,a.offsetWidth),a._lazyRace=!0,Q++,aa(a,b,f,d,c))}},ca=C(function(){e.loadMode=3,W()}),da=function(){3==e.loadMode&&(e.loadMode=2),ca()},ea=function(){if(!m){if(c.now()-y<999)return void k(ea,999);m=!0,e.loadMode=3,W(),j("scroll",da,!0)}};return{_:function(){y=c.now(),d.elements=b.getElementsByClassName(e.lazyClass),g=b.getElementsByClassName(e.lazyClass+" "+e.preloadClass),j("scroll",W,!0),j("resize",W,!0),j("pageshow",function(a){if(a.persisted){var c=b.querySelectorAll("."+e.loadingClass);c.length&&c.forEach&&l(function(){c.forEach(function(a){a.complete&&ba(a)})})}}),a.MutationObserver?new MutationObserver(W).observe(f,{childList:!0,subtree:!0,attributes:!0}):(f[h]("DOMNodeInserted",W,!0),f[h]("DOMAttrModified",W,!0),setInterval(W,999)),j("hashchange",W,!0),["focus","mouseover","click","load","transitionend","animationend"].forEach(function(a){b[h](a,W,!0)}),/d$|^c/.test(b.readyState)?ea():(j("load",ea),b[h]("DOMContentLoaded",W),k(ea,2e4)),d.elements.length?(V(),z._lsFlush()):W()},checkElems:W,unveil:ba,_aLSL:da}}(),E=function(){var a,c=A(function(a,b,c,d){var e,f,g;if(a._lazysizesWidth=d,d+="px",a.setAttribute("sizes",d),n.test(b.nodeName||""))for(e=b.getElementsByTagName("source"),f=0,g=e.length;f<g;f++)e[f].setAttribute("sizes",d);c.detail.dataAttr||w(a,c.detail)}),d=function(a,b,d){var e,f=a.parentNode;f&&(d=y(a,f,d),e=v(a,"lazybeforesizes",{width:d,dataAttr:!!b}),e.defaultPrevented||(d=e.detail.width)&&d!==a._lazysizesWidth&&c(a,f,e,d))},f=function(){var b,c=a.length;if(c)for(b=0;b<c;b++)d(a[b])},g=C(f);return{_:function(){a=b.getElementsByClassName(e.autosizesClass),j("resize",g)},checkElems:g,updateElem:d}}(),F=function(){!F.i&&b.getElementsByClassName&&(F.i=!0,E._(),D._())};return k(function(){e.init&&F()}),d={cfg:e,autoSizer:E,loader:D,init:F,uP:w,aC:s,rC:t,hC:r,fire:v,gW:y,rAF:z}});
diff --git a/senat_campaign/templates/senat_campaign/base.html b/senat_campaign/templates/senat_campaign/base.html
new file mode 100644
index 0000000000000000000000000000000000000000..abbd43fb4d6c2e9071febd8cb3c9cc3d8fa80ef1
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/base.html
@@ -0,0 +1,229 @@
+{% load static wagtailuserbar wagtailcore_tags wagtailsettings_tags wagtailimages_tags %}
+{% with web_settings=settings.senat_campaign.SenatCampaignWebSettings %}
+<!doctype html>
+<html lang="cs">
+<head>
+
+  <!-- Font loader -->
+  <script type="text/javascript">
+    WebFontConfig = {
+      google: { families: ['Roboto+Condensed:300,300i,400,400i,700,700i:latin-ext', 'Bebas+Neue'] }
+    };
+    (function () {
+      var wf = document.createElement('script');
+      wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
+      wf.type = 'text/javascript';
+      wf.async = 'true';
+      var s = document.getElementsByTagName('script')[0];
+      s.parentNode.insertBefore(wf, s);
+    })();
+  </script>
+
+  <!-- Meta -->
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+  <meta name="description" content="{{ page.search_description }}">
+  <meta name="author" content="Piráti">
+  <title>{% firstof page.seo_title page.title web_settings.full_name %}</title>
+
+  <!-- OpenGraph info -->
+  <meta property="og:title" content="{% firstof page.seo_title page.title web_settings.full_name %}" />
+  <meta property="og:type" content="website" />
+  <meta property="og:locale" content="cs_CZ" />
+  <meta property="og:url" content="{{ page.full_url }}" />
+  {# TODO #}
+  <meta property="og:image" content="https://danielhlavacek.cz/pirati/img/og_image.jpg" />
+  <meta property="og:description" content="{{ page.search_description }}" />
+
+  <!-- Bootstrap CSS -->
+  <link rel="stylesheet" href="{% static "senat_campaign/vendor/bootstrap-4.4.1/css/bootstrap.min.css" %}">
+  <link rel="stylesheet" href="{% static "senat_campaign/vendor/fontawesome/css/all.css" %}">
+  <link rel="stylesheet" href="{% static "senat_campaign/vendor/fancybox/jquery.fancybox.min.css" %}">
+
+  <!-- Styles -->
+  <link href="{% static "senat_campaign/css/style.css" %}" rel="stylesheet">
+</head>
+
+<body id="top" data-spy="scroll" data-offset="120" data-target="#mainNavigation">
+
+  {% wagtailuserbar %}
+
+  <!-- HEADER -->
+  <div class="pre-navbar d-none d-xl-flex" style="background:black;">
+    <div class="container">
+      <div class="row align-items-center">
+        <div class="col-md-6">
+          <div class="header__socials header__socials--desktop">
+            {% include "senat_campaign/socials_snippet.html" %}
+          </div>
+        </div>
+        <div class="col-md-6 text-right">
+          {% if web_settings.has_donations %}
+          {# TODO #}
+          <a href="#" class="btn btn-success support_buton btn-sm">Přispěj!<i class="fal fa-heart ml-2" title="Ikona srdce"></i></a>
+          {% endif %}
+        </div>
+      </div>
+    </div>
+  </div>
+
+  <nav class="navbar navbar-expand-xl navbar-dark sticky-top">
+    <div class="container">
+
+      <!-- Candidate name -->
+      <div class="brand-wrapper">
+        <a class="navbar-brand navbar-brand--primary" href="/">{{ web_settings.first_name }} <strong>{{ web_settings.last_name }}</strong></a>
+        <a class="navbar-brand navbar-brand--alt" href="/">{{ web_settings.first_name|first }}. <strong>{{ web_settings.last_name }}</strong></a>
+      </div>
+
+      <!-- Mobile menu toggler -->
+      <button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#mainNavigation" aria-controls="mainNavigation" aria-expanded="false" aria-label="Otevřít menu">
+        <span></span>
+        <span></span>
+        <span></span>
+      </button>
+
+      <!-- Navigation -->
+      <div class="collapse navbar-collapse" id="mainNavigation">
+        <ul class="navbar-nav ml-auto">
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#top">Úvod</a>
+            {% else %}
+            <a class="nav-link" href="/#top">Úvod</a>
+            {% endif %}
+          </li>
+          {% if web_settings.has_program %}
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#priority">Priority</a>
+            {% else %}
+            <a class="nav-link" href="/#priority">Priority</a>
+            {% endif %}
+          </li>
+          {% endif %}
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#kdojsem">Kdo jsem</a>
+            {% else %}
+            <a class="nav-link" href="/#kdojsem">Kdo jsem</a>
+            {% endif %}
+          </li>
+          {% if web_settings.has_news %}
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#aktuality">Aktuality</a>
+            {% else %}
+            <a class="nav-link" href="/#aktuality">Aktuality</a>
+            {% endif %}
+          </li>
+          {% endif %}
+          {% if web_settings.has_callendar %}
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#kalendar">Kalendář</a>
+            {% else %}
+            <a class="nav-link" href="/#kalendar">Kalendář</a>
+            {% endif %}
+          </li>
+          {% endif %}
+          <li class="nav-item">
+            {% if page.is_home %}
+            <a class="nav-link js-scroll-anchor" href="#financovani">Financování</a>
+            {% else %}
+            <a class="nav-link" href="/#financovani">Financování</a>
+            {% endif %}
+          </li>
+          <li class="nav-item">
+            <a class="nav-link js-scroll-anchor" href="#kontakt">Kontakt</a>
+          </li>
+        </ul>
+        <div class="header__socials header__socials--mobile d-xl-none mb-2">
+          {% include "senat_campaign/socials_snippet.html" %}
+        </div>
+        {% if web_settings.has_donations %}
+        {# TODO #}
+        <a href="#" class="btn btn-success support_buton btn-sm d-xl-none mb-3">Přispěj!<i class="fal fa-heart ml-2" title="Ikona srdce"></i></a>
+        {% endif %}
+      </div><!-- /navigation -->
+    </div><!-- /container -->
+  </nav>
+  <!-- /HEADER -->
+
+  {% block content %}{% endblock %}
+
+  <!-- FOOTER -->
+  <footer id="kontakt">
+
+    <div class="footer__top">
+      <div class="container">
+
+        <div class="row">
+          <div class="col-12 col-md-6">
+            <h2 class="lead page-subheading mb-5">Kontakt</h2>
+          </div><!-- /column -->
+          <div class="col-12 col-md-6">
+            <div class="socials mb-5">
+              {% include "senat_campaign/socials_snippet.html" %}
+            </div>
+          </div><!-- /column -->
+        </div> <!-- /row -->
+
+        <div class="row">
+
+          {% for contact in web_settings.contacts %}
+          <div class="col-12 col-md-6 col-xl-4 mb-4 mb-xl-0">
+            <div class="person">
+              <div class="person__photo">
+                <div class="person__photo-inner">
+                  {% image contact.value.photo fill-100x100 as img %}
+                  <img data-src="{{ img.url }}" class="lazyload img-fluid" alt="{{ contact.value.name }}">
+                </div>
+              </div>
+              <div class="person__content">
+                <h6>{{ contact.value.name }}</h6>
+                {% if contact.value.job %}
+                <span>{{ contact.value.job }}</span>
+                {% endif %}
+                {% if contact.value.email %}
+                <a href="mailto:{{ contact.value.email }}">{{ contact.value.email }}</a>
+                {% endif %}
+                {% if contact.value.phone %}
+                <a href="tel:{{ contact.value.phone }}">{{ contact.value.phone }}</a>
+                {% endif %}
+              </div>
+            </div>
+          </div><!-- /column -->
+          {% endfor %}
+
+        </div> <!-- /row -->
+
+      </div><!-- /container -->
+    </div><!-- /footer_top -->
+
+    <div class="footer__bottom">
+      <div class="container">
+        <div class="row">
+          <div class="col-12 col-md-6 mb-3 mb-md-0">
+            <p class="mb-0">{% now "Y" %} | Zadavatel: {{ web_settings.full_name }} | Zpracovatel: Česká pirátská strana</p>
+          </div><!-- /column -->
+          <div class="col-12 col-md-6 text-md-right">
+            <p class="mb-0">Tento web využívá soubory cookies - <a href="{{ web_settings.cookies_page_url }}">více informací</a></p>
+          </div><!-- /column -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+    </div><!-- /footer_bottom -->
+
+  </footer>
+  <!-- /FOOTER -->
+
+  <!-- JavaScript libraries -->
+  <script src="{% static "senat_campaign/vendor/jquery/jquery-3.4.1.min.js" %}"></script>
+  <script src="{% static "senat_campaign/vendor/bootstrap-4.4.1/js/bootstrap.min.js" %}"></script>
+  <script src="{% static "senat_campaign/vendor/lazysizes/lazysizes.min.js" %}"></script>
+  <script src="{% static "senat_campaign/vendor/fancybox/jquery.fancybox.min.js" %}"></script>
+  <script src="{% static "senat_campaign/js/scripts.js" %}"></script>
+
+</body>
+</html>
+{% endwith %}
diff --git a/senat_campaign/templates/senat_campaign/senat_campaign_cookies_page.html b/senat_campaign/templates/senat_campaign/senat_campaign_cookies_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..3882dd17b3ed8a0d5f80a4004985d0d1c38aec51
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/senat_campaign_cookies_page.html
@@ -0,0 +1,25 @@
+{% extends "senat_campaign/base.html" %}
+{% load wagtailcore_tags %}
+
+{% block content %}
+
+<!-- CONTENT -->
+<main role="main">
+
+  <section class="section--alternate">
+    <div class="container">
+      <h1 class="lead page-subheading mb-4">{{ page.title }}</h1>
+
+      <div class="row mb-4">
+        <div class="col-12">
+          {{ page.body|richtext }}
+        </div>
+      </div><!-- /row -->
+
+    </div> <!-- /container -->
+  </section>
+
+</main>
+<!-- /CONTENT -->
+
+{% endblock %}
diff --git a/senat_campaign/templates/senat_campaign/senat_campaign_home_page.html b/senat_campaign/templates/senat_campaign/senat_campaign_home_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..2670108b40be52280ed6f8853f920c0cf1ba241b
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/senat_campaign_home_page.html
@@ -0,0 +1,491 @@
+{% extends "senat_campaign/base.html" %}
+{% load static wagtailimages_tags wagtailcore_tags %}
+
+{% block content %}
+
+<!-- CONTENT -->
+<main role="main">
+
+  <section class="section--alternate section--lead" id="uvod">
+    <div class="container">
+      <div class="row align-items-center">
+
+        <div class="col-12 col-md-7 col-lg-7 mb-5 mb-md-0 py-4 text-center text-md-left">
+          <h1 class="lead homepage-heading">{{ web_settings.full_name }}</h1>
+          <p class="lead mb-5">{{ page.headline }}</p>
+
+            <div class="row align-items-center">
+              {% if web_settings.has_program %}
+              <div class="col-12 col-lg-auto mb-4 mb-lg-0">
+                <a href="#priority" class="btn btn-dark btn-lg js-scroll-anchor">Moje priority <i class="fal fa-chevron-right ml-2"></i></a>
+              </div><!-- /column -->
+              {% endif %}
+              <div class="col-12 col-lg-auto">
+                <div class="uvod__image-wrapper">
+                  <a href="https://www.pirati.cz" target="_blank"><img data-src="{% static "senat_campaign/img/logo_napis.png" %}" class="lazyload img-fluid" alt="Logo pirátské strany"></a>
+                </div><!-- /uvod__image-wrapper -->
+              </div><!-- /column -->
+            </div> <!-- /row -->
+
+        </div><!-- /column -->
+
+        <div class="col-12 col-md-5 offset-lg-1 col-lg-4 text-center">
+          {% if page.top_photo %}
+          {% image page.top_photo original as top_photo %}
+          <img data-src="{{ top_photo.url }}" class="lazyload img-fluid mb-4" alt="{{ web_settings.full_name }}">
+          {% endif %}
+          <h3 class="lead mb-5">{% if page.claim %}„{{ page.claim }}“{% endif %}</h3>
+        </div><!-- /column -->
+
+      </div> <!-- /row -->
+    </div> <!-- /container -->
+  </section>
+
+
+  {% if web_settings.has_program %}
+  <section class="section--primary" id="priority">
+    <div class="container">
+      <div class="row">
+
+        <div class="col-12 col-lg-4 mb-5 mb-lg-0">
+          <h2 class="lead page-subheading mb-5">Moje priority</h2>
+          <div class="card priorities__box mb-1 mb-lg-5">
+            <div class="card-body">
+              <h5 class="card-title">Kam mířím?</h5>
+              <p>V Senátu se chci zapojit do činnosti následujících výborů a komisí.</p>
+              <ul class="priorities__list">
+                {% for item in program_page.committee_preference %}
+                <li>
+                  <span class="bullet"><i class="fal fa-check"></i></span>
+                  <span class="text">{% include_block item %}</span>
+                </li>
+                {% endfor %}
+              </ul>
+            </div>
+          </div><!-- /priorities__box -->
+
+          <a href="{% pageurl program_page %}" class="btn btn-dark btn-block btn-lg priorities__button d-none d-lg-block">Podrobný
+            program <i class="fal fa-chevron-right ml-2"></i></a>
+
+        </div><!-- /column -->
+        <div class="col-12 col-lg-7 offset-lg-1">
+
+          <div class="row">
+
+            {% for item in program_page.content %}
+            <div class="col-12 col-sm-6 priority mb-4">
+              <a href="{% pageurl program_page %}">
+                <div class="priority__icon">
+                  {% image item.value.image fill-160x160 as img %}
+                  <img data-src="{{ img.url }}" class="lazyload img-fluid" alt="{{ img.alt }}">
+                </div>
+                <div class="priority__content">
+                  <h5 class="priority__heading">{{ item.value.title }}</h5>
+                  <p class="priority__text">{{ item.value.perex }}</p>
+                </div>
+              </a>
+            </div><!-- /column -->
+            {% endfor %}
+
+          </div><!-- /row -->
+
+        </div><!-- /column -->
+
+        <div class="col-12 d-lg-none">
+          <a href="{% pageurl program_page %}" class="btn btn-dark btn-block btn-lg priorities__button mt-4 ">Podrobný program <i
+              class="fal fa-chevron-right ml-2"></i></a>
+        </div>
+
+      </div> <!-- /row -->
+    </div> <!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if page.about_left or page.about_right %}
+  <section class="section--alternate" id="kdojsem">
+    <div class="container">
+      <h2 class="lead page-subheading mb-4">Kdo jsem</h2>
+
+      <div class="row mb-4">
+        <div class="col-12 col-lg-6">
+          {{ page.about_left|richtext }}
+        </div><!-- /column -->
+        <div class="col-12 col-lg-6">
+          {{ page.about_right|richtext }}
+        </div><!-- /column -->
+      </div><!-- /row -->
+
+      {% if page.about_gallery %}
+      <div class="row about-images mb-4">
+        {% for block in page.about_gallery %}
+          {% image block.value width-2000 as img %}
+          {% image block.value fill-300x200 as thumb %}
+          <div class="col-6 col-md-3 mb-4 mb-md-0">
+            <a data-fancybox="gallery" href="{{ img.url }}"><img data-src="{{ thumb.url }}" class="lazyload img-fluid" alt="{{ thumb.alt }}"></a>
+          </div><!-- /column -->
+        {% endfor %}
+      </div><!-- /row -->
+      {% endif %}
+
+    </div> <!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if web_settings.has_donations %}
+  <section class="section--black">
+    <div class="container">
+      <div class="row align-items-center">
+        <div class="col-md-7 col-lg-8 mb-4 mb-md-0">
+        <h2 class="lead mb-4">Líbí se vám hodnoty, které zastávám?</h2>
+        <p class="mb-0">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque penatibus et magnis, nascetur ridiculus mus. Mauris dolor felis, sagittis at, luctus sed, aliquam non, tellus. Pellentesque pretium lectus id turpis.</p>
+        </div>
+        <div class="col-md-5 col-lg-4 text-md-center">
+          <a href="#" class="btn btn-success support_buton btn-lg">Podpořte mě<i class="fal fa-heart ml-2" title="Ikona srdce"></i></a>
+        </div>
+      </div><!-- /row -->
+    </div> <!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if web_settings.has_news %}
+  <section class="section--primary section--no-bottom-padding" id="aktuality">
+    <div class="container">
+
+      <h2 class="lead page-subheading mb-4">Aktuality</h2>
+
+      <div class="row news mb-4">
+
+        {% for article in articles %}
+        <div class="col-12 col-md-4 mb-4 mb-md-0">
+          <a class="card news__item" href="{% pageurl article %}">
+            {% image article.specific.photo fill-400x230 as img %}
+            <img data-src="{{ img.url }}" class="lazyload img-fluid card-img-top" alt="{{ article.title }}">
+            <div class="card-body">
+              <h5>{{ article.title }}</h5>
+              <p>{{ article.specific.perex }}</p>
+            </div>
+            <div class="card-footer">
+              <span>přidáno {{ article.specific.date }}</span>
+            </div>
+          </a>
+        </div><!-- /column -->
+        {% endfor %}
+
+      </div> <!-- /row -->
+
+      <a href="{{ news_url }}" class="btn btn-dark btn-lg my-2">Všechny aktuality <i
+          class="fal fa-chevron-right ml-2"></i></a>
+
+    </div> <!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if web_settings.has_callendar %}
+  <section class="section--primary" id="kalendar">
+    <div class="container">
+
+      <div class="calendar">
+        <div class="calendar__left">
+          <div class="calendar__icon">
+            <i class="fal fa-calendar"></i>
+          </div><!-- /calendar__icon -->
+          <div class="calendar__left-content">
+            <h3 class="lead mb-3">Kalendář akcí</h3>
+            <button class="btn btn-light btn-lg" data-toggle="modal" data-target="#calendarModal">Všechny akce <i
+                class="fal fa-chevron-right ml-2"></i></button>
+          </div><!-- /calendar__left-content -->
+        </div><!-- /calendar__left -->
+        <div class="calendar__right">
+
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>18.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>18.4.2020</h6>
+              <p>celý den</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Rozdávání novin na vlakovém nádraží Beroun</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat volutpat.
+              </p>
+            </div>
+          </div><!-- /calendar__row -->
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>17.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>17.4.2020</h6>
+              <p>13:00 - 17:00</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Stánkování Náměstí Republiky</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. </p>
+            </div>
+          </div><!-- /calendar__row -->
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>16.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>16.4.2020</h6>
+              <p>20:00 - 22:00</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Posezení se senátorem</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat volutpat.
+                Maecenas sollicitudin. Aliquam erat volutpat.</p>
+            </div>
+          </div><!-- /calendar__row -->
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>15.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>15.4.2020</h6>
+              <p>celý den</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Pivobraní Mikulovice náměstí</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat volutpat.
+              </p>
+            </div>
+          </div><!-- /calendar__row -->
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>14.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>14.4.2020</h6>
+              <p>celý den</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Vinobraní na náměstí Chrudim</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat volutpat.
+              </p>
+            </div>
+          </div><!-- /calendar__row -->
+
+          <div class="calendar__row">
+            <div class="calendar__row__date1">
+              <h3>13.</h3>
+            </div>
+            <div class="calendar__row__date2">
+              <h6>13.4.2020</h6>
+              <p>celý den</p>
+            </div>
+            <div class="calendar__row__content">
+              <h6>Stánkování na farmářských trzích Bohnice</h6>
+              <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat volutpat.
+              </p>
+            </div>
+          </div><!-- /calendar__row -->
+
+        </div><!-- /calendar__right -->
+
+      </div><!-- /calendar -->
+
+    </div><!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if page.financials %}
+  <section class="section--alternate" id="financovani">
+    <div class="container">
+
+      <h2 class="lead page-subheading mb-4">Transparentní financování</h2>
+
+      {% for item in page.financials %}
+      {% if item.block_type == "link" %}
+      <a class="finance__item" href="{{ item.value.url }}" target="_blank">
+      {% else %}
+      <a class="finance__item" href="{{ item.value.doc.url }}" target="_blank">
+      {% endif %}
+        <div class="finance__icon">
+          <i class="fal fa-external-link"></i>
+        </div>
+        <div class="finance__content">
+          <h6>{{ item.value.label }}</h6>
+        </div>
+        <div class="finance__action">
+          <span class="btn btn-dark">Zobrazit</span>
+        </div>
+      </a><!-- /finance__item -->
+      {% endfor %}
+
+    </div><!-- /container -->
+  </section>
+  {% endif %}
+
+
+  {% if web_settings.has_callendar %}
+  <!-- Calendar modal -->
+  <div class="modal fade calendar__modal" id="calendarModal" tabindex="-1" role="dialog"
+    aria-labelledby="calendarModalTitle" aria-hidden="true">
+    <div class="modal-dialog modal-lg" role="document">
+      <div class="modal-content">
+        <div class="modal-header">
+          <h3 class="modal-title lead" id="calendarModalTitle">Kalendář</h3>
+          <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+            <span aria-hidden="true">&times;</span>
+          </button>
+        </div><!-- /modal-header -->
+        <div class="modal-body">
+          <ul class="nav nav-pills" id="myTab" role="tablist">
+            <li class="nav-item">
+              <a class="nav-link active" id="upcomingEvents-tab" data-toggle="tab" href="#upcomingEvents" role="tab"
+                aria-controls="upcomingEvents" aria-selected="true">Nadcházející akce</a>
+            </li>
+            <li class="nav-item">
+              <a class="nav-link" id="pastEvents-tab" data-toggle="tab" href="#pastEvents" role="tab"
+                aria-controls="pastEvents" aria-selected="false">Uplynulé akce</a>
+            </li>
+          </ul>
+        </div><!-- /modal-body -->
+
+        <div class="tab-content">
+          <div class="tab-pane fade show active" id="upcomingEvents" role="tabpanel"
+            aria-labelledby="upcomingEvents-tab">
+
+            <div class="calendar__right">
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>18.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>18.4.2020</h6>
+                  <p>celý den</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Rozdávání novin na vlakovém nádraží Beroun</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                  </p>
+                </div>
+              </div><!-- /calendar__row -->
+
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>17.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>17.4.2020</h6>
+                  <p>13:00 - 17:00</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Stánkování Náměstí Republiky</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. </p>
+                </div>
+              </div><!-- /calendar__row -->
+
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>16.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>16.4.2020</h6>
+                  <p>20:00 - 22:00</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Posezení se senátorem</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                    Maecenas sollicitudin. Aliquam erat volutpat.</p>
+                </div>
+              </div><!-- /calendar__row -->
+
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>15.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>15.4.2020</h6>
+                  <p>celý den</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Pivobraní Mikulovice náměstí</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                  </p>
+                </div>
+              </div><!-- /calendar__row -->
+
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>14.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>14.4.2020</h6>
+                  <p>celý den</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Vinobraní na náměstí Chrudim</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                  </p>
+                </div>
+              </div><!-- /calendar__row -->
+
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>13.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>13.4.2020</h6>
+                  <p>celý den</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Stánkování na farmářských trzích Bohnice</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                  </p>
+                </div>
+              </div><!-- /calendar__row -->
+            </div><!-- /calendar__right -->
+
+
+          </div><!-- /tab-pane -->
+          <div class="tab-pane fade" id="pastEvents" role="tabpanel" aria-labelledby="pastEvents-tab">
+
+
+            <div class="calendar__right">
+              <div class="calendar__row">
+                <div class="calendar__row__date1">
+                  <h3>18.</h3>
+                </div>
+                <div class="calendar__row__date2">
+                  <h6>18.4.2020</h6>
+                  <p>celý den</p>
+                </div>
+                <div class="calendar__row__content">
+                  <h6>Rozdávání novin na vlakovém nádraží Beroun</h6>
+                  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sollicitudin. Aliquam erat
+                    volutpat.
+                  </p>
+                </div>
+              </div><!-- /calendar__row -->
+            </div><!-- /calendar__right -->
+
+          </div><!-- /tab-pane -->
+        </div><!-- /tab-content -->
+
+      </div><!-- /modal-content -->
+    </div><!-- /modal-dialog -->
+  </div><!-- /calendar__modal -->
+  {% endif %}
+
+</main>
+<!-- /CONTENT -->
+
+{% endblock %}
diff --git a/senat_campaign/templates/senat_campaign/senat_campaign_news_index_page.html b/senat_campaign/templates/senat_campaign/senat_campaign_news_index_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..23cadb36fcb2c1cf83bf030a0c67211ad3b1a5ee
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/senat_campaign_news_index_page.html
@@ -0,0 +1,71 @@
+{% extends "senat_campaign/base.html" %}
+{% load wagtailimages_tags wagtailcore_tags %}
+
+{% block content %}
+
+<!-- CONTENT -->
+<main role="main">
+
+  <section class="section--primary">
+    <div class="container">
+
+      <h1 class="lead homepage-heading mb-4">{{ page.title }}</h1>
+
+      <div class="row">
+      <div class="col-12 col-lg-8 col-xl-7 mb-4 mb-lg-0">
+
+      <div class="row news mb-4">
+
+        {% for article in articles %}
+        <div class="col-12 col-md-6 mb-4">
+          <a class="card news__item" href="{% pageurl article %}">
+            {% image article.specific.photo fill-400x230 as img %}
+            <img data-src="{{ img.url }}" class="lazyload img-fluid card-img-top" alt="{{ article.title }}">
+            <div class="card-body">
+              <h5>{{ article.title }}</h5>
+              <p>{{ article.specific.perex }}</p>
+            </div>
+            <div class="card-footer">
+              <span>přidáno {{ article.specific.date }}</span>
+            </div>
+          </a>
+        </div><!-- /column -->
+        {% endfor %}
+
+      </div> <!-- /row -->
+
+      {% comment %}{# TODO #}
+      <nav aria-label="Stránkování aktualit">
+        <ul class="pagination justify-content-center">
+          <li class="page-item active">
+            <a class="page-link" href="#">1 <span class="sr-only">(current)</span></a>
+          </li>
+          <li class="page-item"><a class="page-link" href="#">2</a></li>
+          <li class="page-item"><a class="page-link" href="#">3</a></li>
+          <li class="page-item">
+            <a class="page-link" href="#">Další</a>
+          </li>
+        </ul>
+      </nav>
+      {% endcomment %}
+
+    </div><!-- /column -->
+
+    {% if web_settings.facebook %}
+    <div class="col-12 col-lg-4 offset-xl-1 text-center">
+
+    <h3 class="lead mb-3">Z mého facebooku</h3>
+    <iframe src="https://www.facebook.com/plugins/page.php?href={{ web_settings.facebook }}&tabs=timeline&width=290&height=500&small_header=true&adapt_container_width=true&hide_cover=true&show_facepile=false&appId=410144066050191" width="290" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allow="encrypted-media"></iframe>
+
+    </div><!-- /column -->
+    {% endif %}
+
+    </div> <!-- /row -->
+
+    </div> <!-- /container -->
+  </section>
+
+</main>
+<!-- /CONTENT -->
+
+{% endblock %}
diff --git a/senat_campaign/templates/senat_campaign/senat_campaign_news_page.html b/senat_campaign/templates/senat_campaign/senat_campaign_news_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..321100afc3719030891af8b0651197b509f364d9
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/senat_campaign_news_page.html
@@ -0,0 +1,96 @@
+{% extends "senat_campaign/base.html" %}
+{% load static wagtailimages_tags wagtailcore_tags %}
+
+{% block content %}
+
+<!-- CONTENT -->
+<main role="main">
+
+  <section class="section--alternate article__header">
+    <div class="container">
+
+      <h1 class="lead heading">{{ page.title }}</h1>
+
+      <div class="row align-items-center">
+        <div class="col-12 col-md-6 mb-3 mb-md-0">
+          <p class="article__date">publikováno {{ page.date }}</p>
+        </div><!-- /column -->
+        <div class="col-12 col-md-6 text-md-right">
+          {% comment %} {# TODO #}
+          <div class="article__tags">
+            <span href="#" class="badge badge-light">Senátní obvod</span>
+            <span href="#" class="badge badge-light">Evropská unie</span>
+            <span href="#" class="badge badge-light">Podvody</span>
+          </div>
+          {% endcomment %}
+        </div><!-- /column -->
+      </div><!-- /row -->
+    </div> <!-- /container -->
+  </section>
+
+  <section class="section--primary">
+    <div class="container">
+      <div class="row">
+
+        <div class="col-12 col-lg-8 col-xl-7 mb-4 mb-lg-0">
+          <article class="article__content">
+            {{ page.body|richtext }}
+          </article>
+        </div><!-- /column -->
+
+        <div class="col-12 col-lg-4 offset-xl-1">
+          <div class="article__sharing-box">
+            <div class="card-body">
+              <div class="sharing-box__content">
+                <div class="icon"><i class="fas fa-heart"></i></div>
+                <div class="text"><h3 class="lead">Sdílení je aktem lásky</h3></div>
+              </div>
+              <div class="sharing-buttons">
+                {# TODO #}
+                <a href="#" class="btn btn-facebook"><i class="fab fa-facebook-f"></i></a>
+                <a href="#" class="btn btn-twitter"><i class="fab fa-twitter"></i></a>
+                <a href="#" class="btn btn-linkedin"><i class="fab fa-linkedin"></i></a>
+              </div>
+            </div>
+            <div class="image"><img data-src="{% static "senat_campaign/img/vlajka.jpg" %}" class="img-fluid lazyload" alt="Vlajka pirátů"></div>
+          </div><!-- /article__sharing-box -->
+        </div><!-- /column -->
+
+      </div> <!-- /row -->
+    </div> <!-- /container -->
+  </section>
+
+  <section class="section--alternate article__related">
+    <div class="container">
+
+      <h2 class="lead page-subheading mb-4">Mohlo by vás zajímat</h2>
+
+      <div class="row news mb-4">
+
+        {% for article in related_articles %}
+        <div class="col-12 col-md-4 mb-4">
+          <a class="card news__item" href="{% pageurl article %}">
+            {% image article.specific.photo fill-400x230 as img %}
+            <img data-src="{{ img.url }}" class="lazyload img-fluid card-img-top" alt="{{ article.title }}">
+            <div class="card-body">
+              <h5>{{ article.title }}</h5>
+              <p>{{ article.specific.perex }}</p>
+            </div>
+            <div class="card-footer">
+              <span>přidáno {{ article.specific.date }}</span>
+            </div>
+          </a>
+        </div><!-- /column -->
+        {% endfor %}
+
+      </div><!-- /row -->
+
+      <a href="{% pageurl page.get_parent %}" class="btn btn-dark btn-lg uvod__button my-2"><i class="fal fa-chevron-left mr-2"></i> Aktuality</a>
+
+    </div><!-- /container -->
+  </section>
+
+</main>
+<!-- /CONTENT -->
+
+{% endblock %}
diff --git a/senat_campaign/templates/senat_campaign/senat_campaign_program_page.html b/senat_campaign/templates/senat_campaign/senat_campaign_program_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..21ff1802324811ff6405edf632f46177d747b662
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/senat_campaign_program_page.html
@@ -0,0 +1,54 @@
+{% extends "senat_campaign/base.html" %}
+{% load static wagtailimages_tags wagtailcore_tags %}
+
+{% block content %}
+
+<!-- CONTENT -->
+<main role="main">
+
+  <section class="section--primary" id="priority">
+    <div class="container">
+      <h1 class="lead homepage-heading mb-4">{{ page.title }}</h1>
+      <div class="row">
+        <div class="col-12 col-lg-8 col-xl-7 mb-4 mb-lg-0">
+
+          {% for item in page.content %}
+          <div class="priority-alt mb-4">
+            <div class="priority-alt__content">
+              <div class="priority-alt__icon">
+                {% image item.value.image fill-160x160 as img %}
+                <img data-src="{{ img.url }}" class="lazyload img-fluid" alt="{{ img.alt }}">
+              </div>
+              <h3 class="lead page-subheading">{{ item.value.title }}</h3>
+            </div>
+            {{ item.value.body|richtext }}
+          </div><!-- /priority-alt -->
+          {% endfor %}
+
+        </div><!-- /column -->
+        <div class="col-12 col-lg-4 offset-xl-1"><!-- /column -->
+
+          <div class="article__sharing-box">
+            <div class="card-body">
+              <div class="sharing-box__content">
+                <div class="icon"><i class="fas fa-heart"></i></div>
+                <div class="text"><h3 class="lead">Sdílení je aktem lásky</h3></div>
+              </div>
+              <div class="sharing-buttons">
+                {# TODO #}
+                <a href="#" class="btn btn-facebook"><i class="fab fa-facebook-f"></i></a>
+                <a href="#" class="btn btn-twitter"><i class="fab fa-twitter"></i></a>
+                <a href="#" class="btn btn-linkedin"><i class="fab fa-linkedin"></i></a>
+              </div>
+            </div>
+            <div class="image"><img data-src="{% static "senat_campaign/img/vlajka.jpg" %}" class="img-fluid lazyload" alt="Vlajka pirátů"></div>
+          </div><!-- /article__sharing-box -->
+
+        </div><!-- /column -->
+      </div> <!-- /row -->
+    </div> <!-- /container -->
+  </section>
+
+</main>
+<!-- /CONTENT -->
+{% endblock %}
diff --git a/senat_campaign/templates/senat_campaign/socials_snippet.html b/senat_campaign/templates/senat_campaign/socials_snippet.html
new file mode 100644
index 0000000000000000000000000000000000000000..2c58a30e4d6f262e6e7441f78a329b5a3fc2c4c8
--- /dev/null
+++ b/senat_campaign/templates/senat_campaign/socials_snippet.html
@@ -0,0 +1,12 @@
+{% if web_settings.facebook %}
+<a href="{{ web_settings.facebook }}" target="_blank"><i class="fab fa-facebook-f" title="Facebooková stránka"></i></a>
+{% endif %}
+{% if web_settings.twitter %}
+<a href="{{ web_settings.twitter }}" target="_blank"><i class="fab fa-twitter" title="Profil na Twitteru"></i></a>
+{% endif %}
+{% if web_settings.instagram %}
+<a href="{{ web_settings.instagram }}" target="_blank"><i class="fab fa-instagram" title="Profil na Instagramu"></i></a>
+{% endif %}
+{% if web_settings.linkedin %}
+<a href="{{ web_settings.linkedin }}" target="_blank"><i class="fab fa-linkedin" title="Profil na LinkedIn"></i></a>
+{% endif %}